path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
Resources/html/cpsmidi.html | belangeo/cecilia4csound | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>cpsmidi</title>
<link rel="stylesheet" type="text/css" href="csound.css" />
<link rel="stylesheet" type="text/css" href="syntax-highlighting.css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1" />
<link rel="home" href="index.html" title="The Canonical Csound Reference Manual" />
<link rel="up" href="OpcodesTop.html" title="Orchestra Opcodes and Operators" />
<link rel="prev" href="cps2pch.html" title="cps2pch" />
<link rel="next" href="cpsmidib.html" title="cpsmidib" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">cpsmidi</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="cps2pch.html">Prev</a> </td>
<th width="60%" align="center">Orchestra Opcodes and Operators</th>
<td width="20%" align="right"> <a accesskey="n" href="cpsmidib.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="refentry">
<a id="cpsmidi"></a>
<div class="titlepage"></div>
<a id="IndexCpsmidi" class="indexterm"></a>
<div class="refnamediv">
<h2>
<span class="refentrytitle">cpsmidi</span>
</h2>
<p>cpsmidi —
Get the note number of the current MIDI event, expressed in cycles-per-second.
</p>
</div>
<div class="refsect1">
<a id="idm431506705488"></a>
<h2>Description</h2>
<p>
Get the note number of the current MIDI event, expressed in cycles-per-second.
</p>
</div>
<div class="refsect1">
<a id="idm431506704224"></a>
<h2>Syntax</h2>
<pre class="synopsis">icps <span class="command"><strong>cpsmidi</strong></span></pre>
</div>
<div class="refsect1">
<a id="idm431506702288"></a>
<h2>Performance</h2>
<p>
Get the note number of the current MIDI event, expressed in cycles-per-second units, for local processing.
</p>
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note: cpsmidi vs. cpsmidinn">
<tr>
<td rowspan="2" align="center" valign="top" width="25">
<img alt="[Note]" src="images/note.png" />
</td>
<th align="left">cpsmidi vs. cpsmidinn</th>
</tr>
<tr>
<td align="left" valign="top">
<p>
The <span class="emphasis"><em>cpsmidi</em></span> opcode only produces meaningful results in a Midi-activated note (either real-time or from a Midi score with the -F flag). With <span class="emphasis"><em>cpsmidi</em></span>, the Midi note number value is taken from the Midi event that is internally associated with the instrument instance. On the other hand, the <span class="emphasis"><em>cpsmidinn</em></span> opcode may be used in any Csound instrument instance whether it is activated from a Midi event, score event, line event, or from another instrument. The input value for <span class="emphasis"><em>cpsmidinn</em></span> might for example come from a p-field in a textual score or it may have been retrieved from the real-time Midi event that activated the current note using the <span class="emphasis"><em>notnum</em></span> opcode.
</p>
</td>
</tr>
</table>
</div>
</div>
<div class="refsect1">
<a id="idm431506697136"></a>
<h2>Examples</h2>
<p>
Here is an example of the cpsmidi opcode. It uses the file <a class="ulink" href="examples/cpsmidi.csd" target="_top"><em class="citetitle">cpsmidi.csd</em></a>.
</p>
<div class="example">
<a id="idm431506695344"></a>
<p class="title">
<strong>Example 162. Example of the cpsmidi opcode.</strong>
</p>
<div class="example-contents">
<p>See the sections <a class="link" href="UsingRealTime.html" title="Real-Time Audio"><em class="citetitle">Real-time Audio</em></a> and <a class="link" href="CommandFlags.html" title="Csound command line"><em class="citetitle">Command Line Flags</em></a> for more information on using command line flags.</p>
<div class="refsect1">
<a id="idm431883953488"></a>
<pre class="programlisting">
<span class="nt"><CsoundSynthesizer></span>
<span class="nt"><CsOptions></span>
<span class="c1">; Select audio/midi flags here according to platform</span>
-odac -M0 <span class="c1">;;;RT audio I/O with MIDI in</span>
<span class="c1">;-iadc ;;;uncomment -iadc if RT audio input is needed too</span>
<span class="c1">; For Non-realtime ouput leave only the line below:</span>
<span class="c1">; -o cpsmidi.wav -W ;;; for file output any platform</span>
<span class="nt"></CsOptions></span>
<span class="nt"><CsInstruments></span>
<span class="vg">sr</span> <span class="o">=</span> <span class="mi">44100</span>
<span class="vg">ksmps</span> <span class="o">=</span> <span class="mi">32</span>
<span class="vg">nchnls</span> <span class="o">=</span> <span class="mi">2</span>
<span class="vg">0dbfs</span> <span class="o">=</span> <span class="mi">1</span>
<span class="kd">instr</span> <span class="nf">1</span>
i<span class="n">cps</span> <span class="nb">cpsmidi</span>
a<span class="n">sig</span> <span class="nb">oscil</span> <span class="mf">0.6</span><span class="p">,</span> i<span class="n">cps</span><span class="p">,</span> <span class="mi">1</span>
<span class="nb">print</span> i<span class="n">cps</span>
<span class="nb">outs</span> a<span class="n">sig</span><span class="p">,</span> a<span class="n">sig</span>
<span class="kd">endin</span>
<span class="nt"></CsInstruments></span>
<span class="nt"><CsScore></span>
<span class="nb">f</span><span class="mi">0</span> <span class="mi">20</span>
<span class="c1">;sine wave.</span>
<span class="nb">f</span> <span class="mi">1</span> <span class="mi">0</span> <span class="mi">16384</span> <span class="mi">10</span> <span class="mi">1</span>
<span class="nb">e</span>
<span class="nt"></CsScore></span>
<span class="nt"></CsoundSynthesizer></span>
</pre>
</div>
</div>
</div>
<p><br class="example-break" />
</p>
</div>
<div class="refsect1">
<a id="idm431506691360"></a>
<h2>See Also</h2>
<p>
<a class="link" href="aftouch.html" title="aftouch"><em class="citetitle">aftouch</em></a>,
<a class="link" href="ampmidi.html" title="ampmidi"><em class="citetitle">ampmidi</em></a>,
<a class="link" href="cpsmidib.html" title="cpsmidib"><em class="citetitle">cpsmidib</em></a>,
<a class="link" href="cpstmid.html" title="cpstmid"><em class="citetitle">cpstmid</em></a>,
<a class="link" href="midictrl.html" title="midictrl"><em class="citetitle">midictrl</em></a>,
<a class="link" href="notnum.html" title="notnum"><em class="citetitle">notnum</em></a>,
<a class="link" href="octmidi.html" title="octmidi"><em class="citetitle">octmidi</em></a>,
<a class="link" href="octmidib.html" title="octmidib"><em class="citetitle">octmidib</em></a>,
<a class="link" href="pchbend.html" title="pchbend"><em class="citetitle">pchbend</em></a>,
<a class="link" href="pchmidi.html" title="pchmidi"><em class="citetitle">pchmidi</em></a>,
<a class="link" href="pchmidib.html" title="pchmidib"><em class="citetitle">pchmidib</em></a>,
<a class="link" href="veloc.html" title="veloc"><em class="citetitle">veloc</em></a>,
<a class="link" href="cpsmidinn.html" title="cpsmidinn"><em class="citetitle">cpsmidinn</em></a>,
<a class="link" href="octmidinn.html" title="octmidinn"><em class="citetitle">octmidinn</em></a>,
<a class="link" href="pchmidinn.html" title="pchmidinn"><em class="citetitle">pchmidinn</em></a>
</p>
</div>
<div class="refsect1">
<a id="idm431506677008"></a>
<h2>Credits</h2>
<p>
</p>
<table border="0" summary="Simple list" class="simplelist">
<tr>
<td>Author: Barry L. Vercoe - Mike Berry</td>
</tr>
<tr>
<td>MIT - Mills</td>
</tr>
<tr>
<td>May 1997</td>
</tr>
</table>
<p>
</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="cps2pch.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="OpcodesTop.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="cpsmidib.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">cps2pch </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> cpsmidib</td>
</tr>
</table>
</div>
</body>
</html>
|
documentation/html/de/d98/levelview_8hpp.html | splacentino/Starlight | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>Starlight: Référence du fichier view/windows/levelview.hpp</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../jquery.js"></script>
<script type="text/javascript" src="../../dynsections.js"></script>
<link href="../../search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../search/searchdata.js"></script>
<script type="text/javascript" src="../../search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="../../customdoxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Starlight
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Généré par Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "../../search",false,'Recherche');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="../../index.html"><span>Page principale</span></a></li>
<li><a href="../../namespaces.html"><span>Espaces de nommage</span></a></li>
<li><a href="../../annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="../../files.html"><span>Fichiers</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="../../search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Recherche" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="../../files.html"><span>Liste des fichiers</span></a></li>
<li><a href="../../globals.html"><span>Membres de fichier</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="../../dir_b2f003339c516cc00c8cadcafbe82f13.html">view</a></li><li class="navelem"><a class="el" href="../../dir_6de3d2c9bd3c015889c579b92651726f.html">windows</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> </div>
<div class="headertitle">
<div class="title">Référence du fichier levelview.hpp</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <QGraphicsView></code><br />
<code>#include <QWidget></code><br />
<code>#include <QGraphicsLineItem></code><br />
<code>#include <QGraphicsScene></code><br />
<code>#include <QString></code><br />
<code>#include <string></code><br />
<code>#include <vector></code><br />
</div><div class="textblock"><div class="dynheader">
Graphe des dépendances par inclusion de levelview.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="../../d8/d20/levelview_8hpp__incl.png" border="0" usemap="#view_2windows_2levelview_8hpp" alt=""/></div>
</div>
</div><div class="textblock"><div class="dynheader">
Ce graphe montre quels fichiers incluent directement ou indirectement ce fichier :</div>
<div class="dyncontent">
<div class="center"><img src="../../dc/d3c/levelview_8hpp__dep__incl.png" border="0" usemap="#view_2windows_2levelview_8hppdep" alt=""/></div>
<map name="view_2windows_2levelview_8hppdep" id="view_2windows_2levelview_8hppdep">
<area shape="rect" id="node3" href="../../d5/d37/level_8hpp.html" title="model/elements/level.hpp" alt="" coords="8,83,195,112"/>
</map>
</div>
</div>
<p><a href="../../de/d98/levelview_8hpp_source.html">Aller au code source de ce fichier.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/da8/classLevelView.html">LevelView</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Cette classe représente le niveau qui va être joué lors d'une partie. <a href="../../d5/da8/classLevelView.html#details">Plus de détails...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Généré le Vendredi 24 Avril 2015 23:43:23 pour Starlight par  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
htmldoc/ffw/problems/elasticity/Elasticity_Square_exact.html | project-openffw/openffw | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of Elasticity_Square_exact</title>
<meta name="keywords" content="Elasticity_Square_exact">
<meta name="description" content="Copyright 2007 Jan Reininghaus, David Guenther">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="m2html © 2003 Guillaume Flandin">
<meta name="robots" content="index, follow">
<link type="text/css" rel="stylesheet" href="../../../m2html.css">
</head>
<body>
<a name="_top"></a>
<!-- ../../menu.html ffw -->
<!-- ../menu.html problems -->
<!-- menu.html elasticity -->
<h1>Elasticity_Square_exact
</h1>
<h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="box"><strong>function p = Elasticity_Square_exact(p) </strong></div>
<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="fragment"><pre class="comment"> Copyright 2007 Jan Reininghaus, David Guenther
This file is part of FFW.
FFW is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
FFW is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.</pre></div>
<h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
This function calls:
<ul style="list-style-image:url(../../../matlabicon.gif)">
<li><a href="../../../ffw/helpers/Matlab4Maple.html" class="code" title="function funcString = Matlab4Maple(func)">Matlab4Maple</a> Matlab4Maple</li>
<li><a href="../../../ffw/helpers/matMul.html" class="code" title="function val = matMul(A,B)">matMul</a> For given 3-dimensional matrices A ( dim(A) = [n m k] ) and</li>
</ul>
<hr><address>Generated on Thu 27-Sep-2007 10:19:02 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/" target="_parent">m2html</a></strong> © 2003</address>
</body>
</html> |
docs/html/a00173.html | m0tive/chain | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Chain: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.8 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>chain::EventDispatcher Member List</h1>This is the complete list of members for <a class="el" href="a00009.html">chain::EventDispatcher</a>, including all inherited members.<p><table>
<tr class="memlist"><td><a class="el" href="a00009.html#434e64ede037df57e8600d632f103812">AddEventListener</a>(const int type, Script *script)</td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="a00009.html#3aecbd5fbb13eb258f6df5f1803b1ab9">DispatchEvent</a>(const Event &event)</td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="a00009.html#9ed8d61b0716e2c1bb455cf5de4d6e60">EventDispatcher</a>()</td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td><code> [inline, protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00009.html#262a9ae8665fb4850b59cf5874e04548">GetEventListeners</a>(const int type)</td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#992f67d724cab79a23a0cee41d4b9f92">GetType</a>()</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [inline, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#3e7b5552e3406769b0e3ccac86015bde">GetTypeName</a>()</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [inline, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#429e6dbc1f436332e56b3b52cc5074b0">IsType</a>(const COb::eType &_type)</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [inline, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#17beff095d04b7ca614c6b669a091dc4">LoadIntoLua</a>(lua_State *L)</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00009.html#b629f8f3309c92260576e236f992206d">m_eventListeners</a></td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#454b49200a6f23e077a0c4ed3299250f">Object</a>()</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00009.html#df2a41132ba2e4050a6425597dec4d5a">~EventDispatcher</a>()</td><td><a class="el" href="a00009.html">chain::EventDispatcher</a></td><td><code> [inline, protected, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="a00021.html#fe9c966c5afacf8ec21f47ea1bccd7da">~Object</a>()</td><td><a class="el" href="a00021.html">chain::Object</a></td><td><code> [inline, protected, virtual]</code></td></tr>
</table></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Dec 9 16:52:27 2009 for Chain by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
</body>
</html>
|
html/shooterSearch.html | speedyhoon/EventBucket | {{define "shooterSearch"}}
{{range.Page.Data.Shooters}}
<option value={{.ID}}>{{.FirstName}} {{.Surname}}, {{.Club}}
{{end}}
{{end}} |
src/main/package.html | amuller/obsearch | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<!--
OBSearch: a distributed similarity search engine
This project is to similarity search what 'bit-torrent' is to downloads.
Copyright (C) 2007 Arnoldo Jose Muller Molina
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
</head>
<body bgcolor="white">
##### THIS IS THE TEMPLATE FOR THE PACKAGE DOC COMMENTS. #####
##### TYPE YOUR PACKAGE COMMENTS HERE. BEGIN WITH A #####
##### ONE-SENTENCE SUMMARY STARTING WITH A VERB LIKE: #####
This document is the API specification for OBSearch.
<h2>Package Specification</h2>
##### FILL IN ANY SPECS NEEDED BY JAVA COMPATIBILITY KIT #####
<ul>
<li><a href="">##### REFER TO ANY FRAMEMAKER SPECIFICATION HERE #####</a>
</ul>
<h2>Related Documentation</h2>
For overviews, tutorials, examples, guides, and tool documentation, please see:
<ul>
<li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
</ul>
<!-- Put @see and @since tags down here. -->
</body>
</html>
|
dependencies/boost-1.46.0/doc/html/boost/units/abstract/solid_angle_unit_tag.html | gorkinovich/DefendersOfMankind | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct solid_angle_unit_tag</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp" title="Header <boost/units/systems/abstract.hpp>">
<link rel="prev" href="plane_angle_unit_tag.html" title="Struct plane_angle_unit_tag">
<link rel="next" href="../base_unit_info_abstract_id1486686.html" title="Struct base_unit_info<abstract::length_unit_tag>">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="plane_angle_unit_tag.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../base_unit_info_abstract_id1486686.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.units.abstract.solid_angle_unit_tag"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct solid_angle_unit_tag</span></h2>
<p>boost::units::abstract::solid_angle_unit_tag</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp" title="Header <boost/units/systems/abstract.hpp>">boost/units/systems/abstract.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="solid_angle_unit_tag.html" title="Struct solid_angle_unit_tag">solid_angle_unit_tag</a> <span class="special">{</span>
<span class="special">}</span><span class="special">;</span></pre></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003 -2008 Matthias Christian Schabel, 2007-2010 Steven
Watanabe<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="plane_angle_unit_tag.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../base_unit_info_abstract_id1486686.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
gtk-2.24.10/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html | zombihello/lifeRadiant | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GtkFontSelectionDialog</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
<link rel="up" href="SelectorWidgets.html" title="Selectors (File/Font/Color/Input Devices)">
<link rel="prev" href="GtkFontSelection.html" title="GtkFontSelection">
<link rel="next" href="GtkInputDialog.html" title="GtkInputDialog">
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="GtkFontSelection.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="SelectorWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
<td><a accesskey="n" href="GtkInputDialog.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#GtkFontSelectionDialog.synopsis" class="shortcut">Top</a>
|
<a href="#GtkFontSelectionDialog.description" class="shortcut">Description</a>
|
<a href="#GtkFontSelectionDialog.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
<a href="#GtkFontSelectionDialog.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
</td></tr>
</table>
<div class="refentry">
<a name="GtkFontSelectionDialog"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GtkFontSelectionDialog.top_of_page"></a>GtkFontSelectionDialog</span></h2>
<p>GtkFontSelectionDialog — A dialog box for selecting fonts</p>
</td>
<td valign="top" align="right"><img src="fontsel.png"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="GtkFontSelectionDialog.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include <gtk/gtk.h>
struct <a class="link" href="GtkFontSelectionDialog.html#GtkFontSelectionDialog-struct" title="struct GtkFontSelectionDialog">GtkFontSelectionDialog</a>;
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-new" title="gtk_font_selection_dialog_new ()">gtk_font_selection_dialog_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);
<a href="../gdk/gdk-Fonts.html#GdkFont"><span class="returnvalue">GdkFont</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font" title="gtk_font_selection_dialog_get_font ()">gtk_font_selection_dialog_get_font</a> (<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-name" title="gtk_font_selection_dialog_get_font_name ()">gtk_font_selection_dialog_get_font_name</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-set-font-name" title="gtk_font_selection_dialog_set_font_name ()">gtk_font_selection_dialog_set_font_name</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fontname</code></em>);
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-preview-text" title="gtk_font_selection_dialog_get_preview_text ()">gtk_font_selection_dialog_get_preview_text</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-set-preview-text" title="gtk_font_selection_dialog_set_preview_text ()">gtk_font_selection_dialog_set_preview_text</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-apply-button" title="gtk_font_selection_dialog_get_apply_button ()">gtk_font_selection_dialog_get_apply_button</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-cancel-button" title="gtk_font_selection_dialog_get_cancel_button ()">gtk_font_selection_dialog_get_cancel_button</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-ok-button" title="gtk_font_selection_dialog_get_ok_button ()">gtk_font_selection_dialog_get_ok_button</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-selection" title="gtk_font_selection_dialog_get_font_selection ()">gtk_font_selection_dialog_get_font_selection</a>
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);
</pre>
</div>
<div class="refsect1">
<a name="GtkFontSelectionDialog.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
+----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
+----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
+----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
+----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
+----<a class="link" href="GtkWindow.html" title="GtkWindow">GtkWindow</a>
+----<a class="link" href="GtkDialog.html" title="GtkDialog">GtkDialog</a>
+----GtkFontSelectionDialog
</pre>
</div>
<div class="refsect1">
<a name="GtkFontSelectionDialog.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
GtkFontSelectionDialog implements
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
</div>
<div class="refsect1">
<a name="GtkFontSelectionDialog.description"></a><h2>Description</h2>
<p>
The <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> widget is a dialog box for selecting a font.
</p>
<p>
To set the font which is initially selected, use
<a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-set-font-name" title="gtk_font_selection_dialog_set_font_name ()"><code class="function">gtk_font_selection_dialog_set_font_name()</code></a>.
</p>
<p>
To get the selected font use <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-name" title="gtk_font_selection_dialog_get_font_name ()"><code class="function">gtk_font_selection_dialog_get_font_name()</code></a>.
</p>
<p>
To change the text which is shown in the preview area, use
<a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-set-preview-text" title="gtk_font_selection_dialog_set_preview_text ()"><code class="function">gtk_font_selection_dialog_set_preview_text()</code></a>.
</p>
<div class="refsect2">
<a name="GtkFontSelectionDialog-BUILDER-UI"></a><h3>GtkFontSelectionDialog as GtkBuildable</h3>
<p>
The GtkFontSelectionDialog implementation of the GtkBuildable interface
exposes the embedded <a class="link" href="GtkFontSelection.html" title="GtkFontSelection"><span class="type">GtkFontSelection</span></a> as internal child with the
name "font_selection". It also exposes the buttons with the names
"ok_button", "cancel_button" and "apply_button".
</p>
</div>
</div>
<div class="refsect1">
<a name="GtkFontSelectionDialog.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="GtkFontSelectionDialog-struct"></a><h3>struct GtkFontSelectionDialog</h3>
<pre class="programlisting">struct GtkFontSelectionDialog {
GtkWidget *GSEAL (ok_button);
GtkWidget *GSEAL (apply_button);
GtkWidget *GSEAL (cancel_button);
};
</pre>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-new"></a><h3>gtk_font_selection_dialog_new ()</h3>
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_font_selection_dialog_new (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);</pre>
<p>
Creates a new <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
<td>the title of the dialog window</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a new <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-font"></a><h3>gtk_font_selection_dialog_get_font ()</h3>
<pre class="programlisting"><a href="../gdk/gdk-Fonts.html#GdkFont"><span class="returnvalue">GdkFont</span></a> * gtk_font_selection_dialog_get_font (<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">gtk_font_selection_dialog_get_font</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-name" title="gtk_font_selection_dialog_get_font_name ()"><code class="function">gtk_font_selection_dialog_get_font_name()</code></a> instead.</p>
</div>
<p>
Gets the currently-selected font.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the <a href="../gdk/gdk-Fonts.html#GdkFont"><span class="type">GdkFont</span></a> from the <a class="link" href="GtkFontSelection.html" title="GtkFontSelection"><span class="type">GtkFontSelection</span></a> for the
currently selected font in the dialog, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no font is selected</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-font-name"></a><h3>gtk_font_selection_dialog_get_font_name ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_font_selection_dialog_get_font_name
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<p>
Gets the currently-selected font name.
</p>
<p>
Note that this can be a different string than what you set with
<a class="link" href="GtkFontSelectionDialog.html#gtk-font-selection-dialog-set-font-name" title="gtk_font_selection_dialog_set_font_name ()"><code class="function">gtk_font_selection_dialog_set_font_name()</code></a>, as the font selection widget
may normalize font names and thus return a string with a different
structure. For example, "Helvetica Italic Bold 12" could be normalized
to "Helvetica Bold Italic 12". Use <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#pango-font-description-equal"><code class="function">pango_font_description_equal()</code></a>
if you want to compare two font descriptions.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A string with the name of the current font, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
font is selected. You must free this string with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-set-font-name"></a><h3>gtk_font_selection_dialog_set_font_name ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_font_selection_dialog_set_font_name
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fontname</code></em>);</pre>
<p>
Sets the currently selected font.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>fontname</code></em> :</span></p></td>
<td>a font name like "Helvetica 12" or "Times Bold 18"</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the font selected in <em class="parameter"><code>fsd</code></em> is now the
<em class="parameter"><code>fontname</code></em> specified, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-preview-text"></a><h3>gtk_font_selection_dialog_get_preview_text ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_font_selection_dialog_get_preview_text
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<p>
Gets the text displayed in the preview area.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the text displayed in the preview area.
This string is owned by the widget and should not be
modified or freed</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-set-preview-text"></a><h3>gtk_font_selection_dialog_set_preview_text ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_font_selection_dialog_set_preview_text
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
<p>
Sets the text displayed in the preview area.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
<td>the text to display in the preview area</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-apply-button"></a><h3>gtk_font_selection_dialog_get_apply_button ()</h3>
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_font_selection_dialog_get_apply_button
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">gtk_font_selection_dialog_get_apply_button</code> has been deprecated since version 2.16 and should not be used in newly-written code. Don't use this function.</p>
</div>
<p>
Obtains a button. The button doesn't have any function.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.14</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-cancel-button"></a><h3>gtk_font_selection_dialog_get_cancel_button ()</h3>
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_font_selection_dialog_get_cancel_button
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<p>
Gets the 'Cancel' button.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> used in the dialog
for the 'Cancel' button. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.14</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-ok-button"></a><h3>gtk_font_selection_dialog_get_ok_button ()</h3>
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_font_selection_dialog_get_ok_button
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<p>
Gets the 'OK' button.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> used in the dialog
for the 'OK' button. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.14</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-font-selection-dialog-get-font-selection"></a><h3>gtk_font_selection_dialog_get_font_selection ()</h3>
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_font_selection_dialog_get_font_selection
(<em class="parameter"><code><a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a> *fsd</code></em>);</pre>
<p>
Retrieves the <a class="link" href="GtkFontSelection.html" title="GtkFontSelection"><span class="type">GtkFontSelection</span></a> widget embedded in the dialog.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>fsd</code></em> :</span></p></td>
<td>a <a class="link" href="GtkFontSelectionDialog.html" title="GtkFontSelectionDialog"><span class="type">GtkFontSelectionDialog</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the embedded <a class="link" href="GtkFontSelection.html" title="GtkFontSelection"><span class="type">GtkFontSelection</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.22</p>
</div>
</div>
<div class="refsect1">
<a name="GtkFontSelectionDialog.see-also"></a><h2>See Also</h2>
<p>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><a class="link" href="GtkFontSelection.html" title="GtkFontSelection"><span class="type">GtkFontSelection</span></a>, </span><span class="term"><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a></span></p></td>
<td>
<p>the underlying widget for selecting
fonts.</p>
<p>the parent class of GtkFontSelectionDialog</p>
</td>
</tr></tbody>
</table></div>
<p>
</p>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.18</div>
</body>
</html> |
html/about.html | BRsmover/Webcam | {% extends "index.html" %}
{% block content %}
<h1>Über uns</h1>
<p>Diese Website wurde im Rahmen eines Kompetenznachweises im Modul 152 an der GIBM erstellt.</p>
<p>Weitere Informationen:</p>
<ul>
<li>Lehrperson: D. Brodbeck</li>
<li>Schüler: B. Jenni</li>
<li>Datum: 18.04.2016</li>
</ul>
<a href="http://www.gibm.ch" target="_blank">www.gibm.ch</a>
{% endblock %} |
iot-2-webapp/hello.html | jgome043/iot-workshop | <html> <!-- start html document -->
<body> <!-- start document body -->
<p>Hello World!</p> <!-- new paragraph -->
</body> <!-- end document body -->
</html> <!-- end html document -->
|
templates/changelog.html | bklang/GO2 | {% extends 'go2base.html' %}
{% block title %}{% trans %}Changelog!{% endtrans %}{% endblock title %}
{% block content %}
<div class="row">
<div class="page-header col-md-8 col-md-offset-2"><h2>{% trans %}Change Log{% endtrans %}</h1></div>
</div>
<div class="row">
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<ul>
<li>2017-04-22 - Added RSS feed for confirmed public gigs</li>
<li>2017-03-12 - Added member list download and gig reminders snooze.</li>
<li>2016-10-06 - Added setlist to the calendar feed.</li>
<li>2016-06-06 - Added 'hide from agenda' option for bands, in case you're occasional and don't want to see gigs for the band.</li>
<li>2016-03-05 - Added 'click here if you can make it' links to gig announcement emails.</li>
<li>2015-06-28 - Added per-band email preferences.</li>
<li>2015-06-01 - Added color highlighting for bands on schedule and calendar pages, selectable from member's profile page.</li>
<li>2015-03-22 - Added ability to change section name; many internal stability improvements
<li>2015-01-23 - Added ability to only announce gigs to non-occasional members.
<li>2014-10-18 - Added archive page, accessible from every band's info page.
<li>2014-10-17 - Nicer "Band Navigator" page
<li>2014-10-11 - Added German translation
<li>2014-10-10 - Added ability to create a sequence of gigs
<li>2014-09-25 - Added 'reply-to' address to new gig emails, so replies go to the gig contact
<li>2014-07-22 - Added 'gig changed' emails, so everyone is notified of status or date changes
<li>2014-05-28 - Added simple yes/maybe/no menu option, and second feeback menu, for bands.
<li>2014-05-17 - Added toggle for 'brief' view of plans on gig info page
<li>2014-04-27 - Made the display of comments in the discussion system a little nicer.
<li>2014-04-27 - Added ability to set default main view, for people who prefer the calendar or grid views.
<li>2014-04-20 - Added button for duplicating a gig - this copies everything about the old gig and opens the 'edit' page so the date, etc can be tweaked.</li>
<li>2014-04-06 - Added ability to subscribe to personal calendar through Google Cal, Apple Cal, Outlook, etc.; Added calendar options to control
what is displayed on internal & subscription calendars</li>
<li>2014-04-04 - Rationalized the status for gigs to just three: Unconfirmed, Confirmed, Canceled</li>
<li>2014-03-28 - Added ability for admins to designate band members as "occasional" so they only show up on gigs if they've actually weighed in.</li>
<li>2014-03-12 - Only show confirmed gigs on public page; allow bands to hide individual gigs via checkbox.</li>
<li>2014-03-08 - Added ability to show images of the band right on the band's info page.</li>
<li>2014-03-05 - Added public access to band into at gigomatic.appspot.com/band/[band name without spaces].</li>
<li>2014-02-28 - Added ability for bands to declare that only admins can edit gigs.</li>
<li>2014-02-24 - Added call, set, and end times to new gig emails.</li>
<li>2014-02-23 - Added 'invite' feature so admins can bring members in without the whole signup-confirmation loop.</li>
<li>2014-02-23 - Added change log!</li>
</ul>
</div>
</div>
{% endblock content %}
{% block localscripts %}
{% endblock localscripts %}
|
RossFamilyTree/ppl/9/4/d15f601e9d864b671c401317c49.html | RossGammon/the-gammons.net | <!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - HEARN, May C</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mobile-web-app-capable" content="yes" />
<meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" />
<meta name="author" content="" />
<link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" />
<link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" />
<link href="../../../css/ancestortree.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1 id="SiteTitle">Ross Gammon’s Family Tree</h1>
</div>
<div class="wrapper" id="nav" role="navigation">
<div class="container">
<ul class="menu" id="dropmenu">
<li class = "CurrentSection"><a href="../../../individuals.html" title="Individuals">Individuals</a></li>
<li><a href="../../../index.html" title="Surnames">Surnames</a></li>
<li><a href="../../../families.html" title="Families">Families</a></li>
<li><a href="../../../events.html" title="Events">Events</a></li>
<li><a href="../../../places.html" title="Places">Places</a></li>
<li><a href="../../../sources.html" title="Sources">Sources</a></li>
<li><a href="../../../repositories.html" title="Repositories">Repositories</a></li>
<li><a href="../../../media.html" title="Media">Media</a></li>
<li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li>
</ul>
</div>
</div>
<div class="content" id="IndividualDetail">
<h3>HEARN, May C<sup><small></small></sup></h3>
<div id="summaryarea">
<table class="infolist">
<tr>
<td class="ColumnAttribute">Birth Name</td>
<td class="ColumnValue">
HEARN, May C <a href="#sref1a">1a</a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnValue">I8488</td>
</tr>
<tr>
<td class="ColumnAttribute">Gender</td>
<td class="ColumnValue">female</td>
</tr>
</table>
</div>
<div class="subsection" id="families">
<h4>Families</h4>
<table class="infolist">
<tr class="BeginFamily">
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"><a href="../../../fam/7/e/d15f601e9c3573eb0647d3463e7.html" title="Family of LUCAS, George B and HEARN, May C">Family of LUCAS, George B and HEARN, May C<span class="grampsid"> [F2725]</span></a></td>
</tr>
<tr class="BeginFamily">
<td class="ColumnType">Married</td>
<td class="ColumnAttribute">Husband</td>
<td class="ColumnValue">
<a href="../../../ppl/8/8/d15f601e9a15d1569edcc7ffc88.html">LUCAS, George B<span class="grampsid"> [I8487]</span></a>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue">
<table class="infolist eventlist">
<thead>
<tr>
<th class="ColumnEvent">Event</th>
<th class="ColumnDate">Date</th>
<th class="ColumnPlace">Place</th>
<th class="ColumnDescription">Description</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/9/f/d15f60ceac766f70d9307bc15f9.html" title="Marriage">
Marriage
<span class="grampsid"> [E24196]</span>
</a>
</td>
<td class="ColumnDate">1912</td>
<td class="ColumnPlace">
<a href="../../../plc/b/0/d15f601bdde780abee78c2cda0b.html" title="">
</a>
</td>
<td class="ColumnDescription"> </td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
</td>
</tr>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/2/2/d15f60cead53b12168c51c0222.html" title="Family (Primary)">
Family (Primary)
<span class="grampsid"> [E24197]</span>
</a>
</td>
<td class="ColumnDate"> </td>
<td class="ColumnPlace"> </td>
<td class="ColumnDescription"> </td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
<a href="#sref1b">1b</a>
</td>
</tr>
</tbody>
</table>
</td>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Attributes</td>
<td class="ColumnValue">
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">B2018C172AE4D54A96A6E153C9C097E3F646</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tr>
</table>
</div>
<div class="subsection" id="attributes">
<h4>Attributes</h4>
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">A4E99E42815E1E4AA3460626CFFE6EBDC174</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</div>
<div class="subsection" id="pedigree">
<h4>Pedigree</h4>
<ol class="pedigreegen">
<li>
<ol>
<li class="thisperson">
HEARN, May C
<ol class="spouselist">
<li class="spouse">
<a href="../../../ppl/8/8/d15f601e9a15d1569edcc7ffc88.html">LUCAS, George B<span class="grampsid"> [I8487]</span></a>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
<div class="subsection" id="sourcerefs">
<h4>Source References</h4>
<ol>
<li>
<a href="../../../src/c/8/d15f60113322279b33b3d17668c.html" title="Frank Lee: GEDCOM File : JohnLUCAS.ged" name ="sref1">
Frank Lee: GEDCOM File : JohnLUCAS.ged
<span class="grampsid"> [S0297]</span>
</a>
<ol>
<li id="sref1a">
<ul>
<li>
Confidence: Low
</li>
</ul>
</li>
<li id="sref1b">
<ul>
<li>
Confidence: Low
</li>
</ul>
</li>
</ol>
</li>
</ol>
</div>
</div>
<div class="fullclear"></div>
<div id="footer">
<p id="createdate">
Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:39<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
datos/2011-ugr.html | oslugr/matriculas-andalucia |
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 11">
<link rel=File-List href="05-Matriculados%20por%20edad_archivos/filelist.xml">
<link rel=Edit-Time-Data
href="05-Matriculados%20por%20edad_archivos/editdata.mso">
<link rel=OLE-Object-Data
href="05-Matriculados%20por%20edad_archivos/oledata.mso">
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:LastAuthor>vtoro</o:LastAuthor>
<o:LastPrinted>2011-10-21T09:48:12Z</o:LastPrinted>
<o:Created>2011-10-03T09:40:28Z</o:Created>
<o:LastSaved>2012-06-01T06:29:36Z</o:LastSaved>
<o:Version>11.9999</o:Version>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:RelyOnVML/>
<o:AllowPNG/>
<o:TargetScreenSize>1920x1200</o:TargetScreenSize>
<o:Colors>
<o:Color>
<o:Index>39</o:Index>
<o:RGB>#E3E3E3</o:RGB>
</o:Color>
</o:Colors>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<style>
<!--table
{mso-displayed-decimal-separator:"\,";
mso-displayed-thousand-separator:"\.";}
@page
{margin:.19in .39in .42in .28in;
mso-header-margin:0in;
mso-footer-margin:.24in;
mso-page-orientation:landscape;}
tr
{mso-height-source:auto;}
col
{mso-width-source:auto;}
br
{mso-data-placement:same-cell;}
.style0
{mso-number-format:General;
text-align:general;
vertical-align:bottom;
white-space:nowrap;
mso-rotate:0;
mso-background-source:auto;
mso-pattern:auto;
color:black;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Tahoma;
mso-generic-font-family:auto;
mso-font-charset:0;
border:none;
mso-protection:locked visible;
mso-style-name:Normal;
mso-style-id:0;}
td
{mso-style-parent:style0;
padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:black;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Tahoma;
mso-generic-font-family:auto;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
border:none;
mso-background-source:auto;
mso-pattern:auto;
mso-protection:locked visible;
white-space:nowrap;
mso-rotate:0;}
.xl24
{mso-style-parent:style0;
vertical-align:top;}
.xl25
{mso-style-parent:style0;
color:red;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;}
.xl26
{mso-style-parent:style0;
color:red;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:right;}
.xl27
{mso-style-parent:style0;
color:red;
font-size:14.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;}
.xl28
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;}
.xl29
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl30
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;}
.xl31
{mso-style-parent:style0;
color:#3366FF;
vertical-align:top;}
.xl32
{mso-style-parent:style0;
color:windowtext;
vertical-align:top;}
.xl33
{mso-style-parent:style0;
color:red;
font-size:12.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;}
.xl34
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
vertical-align:top;
background:#FFCC00;
mso-pattern:auto none;}
.xl35
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#FFCC00;
mso-pattern:auto none;}
.xl36
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
vertical-align:top;
background:#CC99FF;
mso-pattern:auto none;}
.xl37
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CC99FF;
mso-pattern:auto none;}
.xl38
{mso-style-parent:style0;
color:#3366FF;}
.xl39
{mso-style-parent:style0;
color:#3366FF;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl40
{mso-style-parent:style0;
color:red;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;}
.xl41
{mso-style-parent:style0;
text-align:center;}
.xl42
{mso-style-parent:style0;
color:red;
font-size:8.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;}
.xl43
{mso-style-parent:style0;
color:red;
font-size:12.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;}
.xl44
{mso-style-parent:style0;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl45
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
mso-number-format:"\#\,\#\#0";
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl46
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl47
{mso-style-parent:style0;
color:red;
font-size:14.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl48
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
background:#99CCFF;
mso-pattern:auto none;}
.xl49
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl50
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";
text-align:center;}
.xl51
{mso-style-parent:style0;
color:windowtext;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
background:#99CCFF;
mso-pattern:auto none;}
.xl52
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
background:#99CCFF;
mso-pattern:auto none;}
.xl53
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl54
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";}
.xl55
{mso-style-parent:style0;
color:red;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl56
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl57
{mso-style-parent:style0;
color:windowtext;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl58
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:"\#\,\#\#0";
text-align:center;
background:#99CCFF;
mso-pattern:auto none;}
.xl59
{mso-style-parent:style0;
mso-number-format:"\#\,\#\#0";
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl60
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:"\#\,\#\#0";
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl61
{mso-style-parent:style0;
text-align:center;
vertical-align:middle;
background:silver;
mso-pattern:auto none;
white-space:normal;}
.xl62
{mso-style-parent:style0;
text-align:center;
vertical-align:middle;
background:silver;
mso-pattern:auto none;
white-space:normal;}
.xl63
{mso-style-parent:style0;
color:red;
font-size:11.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:left;}
.xl64
{mso-style-parent:style0;
color:red;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;}
.xl65
{mso-style-parent:style0;
color:red;
font-size:14.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;}
.xl66
{mso-style-parent:style0;
color:red;
font-size:14.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;
background:#CCFFFF;
mso-pattern:auto none;}
.xl67
{mso-style-parent:style0;
text-align:center;
background:#CCFFFF;
mso-pattern:auto none;}
.xl68
{mso-style-parent:style0;
color:windowtext;
mso-number-format:0;
text-align:center;
vertical-align:top;
background:#CCFFFF;
mso-pattern:auto none;}
.xl69
{mso-style-parent:style0;
color:windowtext;
mso-number-format:0;
text-align:center;
vertical-align:top;}
.xl70
{mso-style-parent:style0;
mso-number-format:0;
text-align:center;
vertical-align:top;
background:#CCFFFF;
mso-pattern:auto none;}
.xl71
{mso-style-parent:style0;
mso-number-format:0;
text-align:center;
vertical-align:top;}
.xl72
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:0;
text-align:center;
vertical-align:top;
background:#CCFFFF;
mso-pattern:auto none;}
.xl73
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:0;
text-align:center;
vertical-align:top;}
.xl74
{mso-style-parent:style0;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CCFFFF;
mso-pattern:auto none;}
.xl75
{mso-style-parent:style0;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl76
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CCFFFF;
mso-pattern:auto none;}
.xl77
{mso-style-parent:style0;
color:#3366FF;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl78
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
background:#FFCC00;
mso-pattern:auto none;}
.xl79
{mso-style-parent:style0;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#FFCC00;
mso-pattern:auto none;}
.xl80
{mso-style-parent:style0;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl81
{mso-style-parent:style0;
color:#99CCFF;
mso-number-format:"\#\,\#\#0";
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl82
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;}
.xl83
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl84
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;
background:#CCFFFF;
mso-pattern:auto none;}
.xl85
{mso-style-parent:style0;
color:red;
font-family:Tahoma, sans-serif;
mso-font-charset:0;
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CCFFFF;
mso-pattern:auto none;}
.xl86
{mso-style-parent:style0;
color:windowtext;
mso-number-format:"\#\,\#\#0";
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl87
{mso-style-parent:style0;
color:windowtext;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl88
{mso-style-parent:style0;
color:windowtext;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CCFFFF;
mso-pattern:auto none;}
.xl89
{mso-style-parent:style0;
color:windowtext;
mso-number-format:0;
text-align:center;
vertical-align:top;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
.xl90
{mso-style-parent:style0;
color:windowtext;
mso-number-format:"\#\,\#\#0";
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#99CCFF;
mso-pattern:auto none;}
.xl91
{mso-style-parent:style0;
color:windowtext;
text-align:center;
background:#CCFFFF;
mso-pattern:auto none;}
.xl92
{mso-style-parent:style0;
color:windowtext;
text-align:center;}
.xl93
{mso-style-parent:style0;
color:windowtext;
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;
background:#CCFFFF;
mso-pattern:auto none;}
.xl94
{mso-style-parent:style0;
color:windowtext;
text-align:center;
border-top:none;
border-right:none;
border-bottom:.5pt solid windowtext;
border-left:none;}
-->
</style>
<!--[if gte mso 9]><xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Sheet1 (2)</x:Name>
<x:WorksheetOptions>
<x:DefaultColWidth>10</x:DefaultColWidth>
<x:Print>
<x:ValidPrinterInfo/>
<x:PaperSizeIndex>9</x:PaperSizeIndex>
<x:Scale>65</x:Scale>
<x:HorizontalResolution>-13742</x:HorizontalResolution>
<x:VerticalResolution>18</x:VerticalResolution>
</x:Print>
<x:Zoom>80</x:Zoom>
<x:Selected/>
<x:ProtectContents>False</x:ProtectContents>
<x:ProtectObjects>False</x:ProtectObjects>
<x:ProtectScenarios>False</x:ProtectScenarios>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
<x:WindowHeight>10920</x:WindowHeight>
<x:WindowWidth>19320</x:WindowWidth>
<x:WindowTopX>-60</x:WindowTopX>
<x:WindowTopY>-15</x:WindowTopY>
<x:AcceptLabelsInFormulas/>
<x:ProtectStructure>False</x:ProtectStructure>
<x:ProtectWindows>False</x:ProtectWindows>
</x:ExcelWorkbook>
<x:ExcelName>
<x:Name>_FilterDatabase</x:Name>
<x:Hidden/>
<x:SheetIndex>1</x:SheetIndex>
<x:Formula>='Sheet1 (2)'!$E$11:$U$386</x:Formula>
</x:ExcelName>
</xml><![endif]-->
</head>
<body link=blue vlink=purple>
<table x:str border=0 cellpadding=0 cellspacing=0 width=1806 style='border-collapse:
collapse;table-layout:fixed;width:1359pt'>
<col width=231 style='mso-width-source:userset;mso-width-alt:8448;width:173pt'>
<col class=xl41 width=60 style='mso-width-source:userset;mso-width-alt:2194;
width:45pt'>
<col width=465 style='mso-width-source:userset;mso-width-alt:17005;width:349pt'>
<col width=61 style='mso-width-source:userset;mso-width-alt:2230;width:46pt'>
<col width=58 style='mso-width-source:userset;mso-width-alt:2121;width:44pt'>
<col class=xl41 width=41 span=15 style='mso-width-source:userset;mso-width-alt:
1499;width:31pt'>
<col width=60 style='mso-width-source:userset;mso-width-alt:2194;width:45pt'>
<col width=64 span=235 style='mso-width-source:userset;mso-width-alt:2340;
width:48pt'>
<tr height=27 style='mso-height-source:userset;height:20.25pt'>
<td height=27 class=xl63 width=231 style='height:20.25pt;width:173pt'>Sección
de Estadística</td>
<td class=xl42 width=60 style='width:45pt'></td>
<td class=xl25 width=465 style='width:349pt'></td>
<td class=xl25 width=61 style='width:46pt'></td>
<td class=xl25 width=58 style='width:44pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl64 width=41 style='width:31pt'></td>
<td class=xl25 width=60 style='width:45pt'></td>
<td class=xl25 width=64 style='width:48pt'></td>
<td class=xl25 width=64 style='width:48pt'></td>
<td class=xl25 width=64 style='width:48pt'></td>
<td class=xl25 width=64 style='width:48pt'></td>
</tr>
<tr height=27 style='mso-height-source:userset;height:20.25pt'>
<td height=27 class=xl40 style='height:20.25pt'>Universidad de Granada</td>
<td class=xl42></td>
<td colspan=3 class=xl26 style='mso-ignore:colspan'></td>
<td class=xl42></td>
<td colspan=14 class=xl64 style='mso-ignore:colspan'></td>
<td colspan=5 class=xl26 style='mso-ignore:colspan'></td>
</tr>
<tr height=27 style='mso-height-source:userset;height:20.25pt'>
<td height=27 class=xl40 style='height:20.25pt'>Curso Académico 2011/2012</td>
<td class=xl42></td>
<td colspan=3 class=xl26 style='mso-ignore:colspan'></td>
<td class=xl42></td>
<td colspan=14 class=xl64 style='mso-ignore:colspan'></td>
<td colspan=5 class=xl26 style='mso-ignore:colspan'></td>
</tr>
<tr height=28 style='mso-height-source:userset;height:21.0pt'>
<td height=28 class=xl33 colspan=3 style='height:21.0pt;mso-ignore:colspan'>Grado.
Alumnado matriculado: distribución por edad.</td>
<td class=xl33></td>
<td class=xl27></td>
<td colspan=9 class=xl65 style='mso-ignore:colspan'></td>
<td colspan=6 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td colspan=3 style='mso-ignore:colspan'></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td colspan=3 style='mso-ignore:colspan'></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=34 style='height:25.5pt'>
<td height=34 class=xl61 width=231 style='height:25.5pt;width:173pt'>CENTRO</td>
<td class=xl61 width=60 style='width:45pt'>TOTAL CENTRO</td>
<td class=xl61 width=465 style='width:349pt'>TITULACIÓN</td>
<td class=xl62 width=61 style='width:46pt'>TOTAL TITULAC</td>
<td class=xl61 width=58 style='width:44pt'>SEXO</td>
<td class=xl61 width=41 style='width:31pt'><=18</td>
<td class=xl61 width=41 style='width:31pt'>19</td>
<td class=xl61 width=41 style='width:31pt'>20</td>
<td class=xl61 width=41 style='width:31pt'>21</td>
<td class=xl61 width=41 style='width:31pt'>22</td>
<td class=xl61 width=41 style='width:31pt'>23</td>
<td class=xl61 width=41 style='width:31pt'>24</td>
<td class=xl61 width=41 style='width:31pt'>25</td>
<td class=xl61 width=41 style='width:31pt'>26</td>
<td class=xl61 width=41 style='width:31pt'>27</td>
<td class=xl61 width=41 style='width:31pt'>28</td>
<td class=xl61 width=41 style='width:31pt'>29</td>
<td class=xl61 width=41 style='width:31pt'>30-34</td>
<td class=xl61 width=41 style='width:31pt'>35-39</td>
<td class=xl61 width=41 style='width:31pt'>>=40</td>
<td class=xl61 width=60 style='width:45pt'>TOTAL SEXO</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr class=xl28 height=17 style='height:12.75pt'>
<td height=17 class=xl40 style='height:12.75pt'>Universidad de Granada</td>
<td class=xl46 x:num="56813" x:fmla="=U8+U9">56.813</td>
<td class=xl40></td>
<td class=xl55> </td>
<td class=xl30>Hombre</td>
<td class=xl84 x:num>2100</td>
<td class=xl82 x:num>2594</td>
<td class=xl84 x:num>3030</td>
<td class=xl82 x:num>3389</td>
<td class=xl84 x:num>3030</td>
<td class=xl82 x:num>2543</td>
<td class=xl84 x:num>1964</td>
<td class=xl82 x:num>1488</td>
<td class=xl84 x:num>1110</td>
<td class=xl82 x:num>790</td>
<td class=xl84 x:num>596</td>
<td class=xl82 x:num>507</td>
<td class=xl84 x:num>1422</td>
<td class=xl82 x:num>581</td>
<td class=xl84 x:num>724</td>
<td class=xl46 x:num="25868"
x:fmla="=F8+G8+H8+I8+K8+J8+L8+M8+N8+O8+P8+Q8+R8+S8+T8">25.868</td>
<td colspan=4 class=xl28 style='mso-ignore:colspan'></td>
</tr>
<tr class=xl28 height=17 style='height:12.75pt'>
<td height=17 class=xl29 style='height:12.75pt'> </td>
<td class=xl45> </td>
<td class=xl29> </td>
<td class=xl45> </td>
<td class=xl29>Mujer</td>
<td class=xl85 x:num>3288</td>
<td class=xl83 x:num>3720</td>
<td class=xl85 x:num>4004</td>
<td class=xl83 x:num>3795</td>
<td class=xl85 x:num>3660</td>
<td class=xl83 x:num>2888</td>
<td class=xl85 x:num>2095</td>
<td class=xl83 x:num>1504</td>
<td class=xl85 x:num>1216</td>
<td class=xl83 x:num>839</td>
<td class=xl85 x:num>627</td>
<td class=xl83 x:num>495</td>
<td class=xl85 x:num>1429</td>
<td class=xl83 x:num>586</td>
<td class=xl85 x:num>799</td>
<td class=xl45 x:num="30945"
x:fmla="=F9+G9+H9+I9+J9+K9+L9+M9+N9+O9+P9+Q9+R9+S9+T9">30.945</td>
<td colspan=4 class=xl28 style='mso-ignore:colspan'></td>
</tr>
<tr height=24 style='height:18.0pt'>
<td height=24 class=xl30 style='height:18.0pt'></td>
<td class=xl47> </td>
<td class=xl27></td>
<td class=xl47> </td>
<td class=xl27></td>
<td class=xl66> </td>
<td class=xl65></td>
<td class=xl66> </td>
<td class=xl65></td>
<td class=xl66> </td>
<td class=xl65></td>
<td class=xl66> </td>
<td class=xl65></td>
<td class=xl66> </td>
<td class=xl41></td>
<td class=xl67> </td>
<td class=xl41></td>
<td class=xl67> </td>
<td class=xl41></td>
<td class=xl67> </td>
<td class=xl56> </td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. BELLAS ARTES</td>
<td class=xl48 x:num="1402">1.402</td>
<td class=xl32>GRADO EN BELLAS ARTES</td>
<td class=xl51 x:num x:fmla="=U11+U12">465</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>20</td>
<td class=xl69 x:num>32</td>
<td class=xl68 x:num>21</td>
<td class=xl69 x:num>20</td>
<td class=xl68 x:num>19</td>
<td class=xl69 x:num>11</td>
<td class=xl68 x:num>11</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>13</td>
<td class=xl57 x:num
x:fmla="=F11+G11+H11+I11+J11+K11+L11+M11+N11+O11+P11+Q11+R11+S11+T11">175</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN BELLAS ARTES</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>62</td>
<td class=xl71 x:num>78</td>
<td class=xl70 x:num>42</td>
<td class=xl71 x:num>22</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>22</td>
<td class=xl56 x:num
x:fmla="=F12+G12+H12+I12+J12+K12+L12+M12+N12+O12+P12+Q12+R12+S12+T12">290</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CONSERVACIÓN Y RESTAURACIÓN DE BIENES CULTURALES</td>
<td class=xl52 x:num x:fmla="=U13+U14">100</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F13+G13+H13+I13+J13+K13+L13+M13+N13+O13+P13+Q13+R13+S13+T13">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CONSERVACIÓN Y RESTAURACIÓN DE BIENES CULTURALES</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F14+G14+H14+I14+J14+K14+L14+M14+N14+O14+P14+Q14+R14+S14+T14">76</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN BELLAS ARTES</td>
<td class=xl48 x:num x:fmla="=U15+U16">837</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>25</td>
<td class=xl71 x:num>58</td>
<td class=xl70 x:num>46</td>
<td class=xl71 x:num>50</td>
<td class=xl70 x:num>45</td>
<td class=xl71 x:num>22</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>14</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>36</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>18</td>
<td class=xl56 x:num
x:fmla="=F15+G15+H15+I15+J15+K15+L15+M15+N15+O15+P15+Q15+R15+S15+T15">356</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>LICENCIADO EN BELLAS ARTES</td>
<td class=xl53> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>68</td>
<td class=xl75 x:num>83</td>
<td class=xl74 x:num>77</td>
<td class=xl75 x:num>58</td>
<td class=xl74 x:num>52</td>
<td class=xl75 x:num>29</td>
<td class=xl74 x:num>25</td>
<td class=xl75 x:num>12</td>
<td class=xl74 x:num>10</td>
<td class=xl75 x:num>7</td>
<td class=xl74 x:num>22</td>
<td class=xl75 x:num>7</td>
<td class=xl74 x:num>30</td>
<td class=xl59 x:num
x:fmla="=F16+G16+H16+I16+J16+K16+L16+M16+N16+O16+P16+Q16+R16+S16+T16">481</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. CIENCIAS</td>
<td class=xl48 x:num="5528"
x:fmla="=D17+D19+D21+D23+D25+D27+D29+D31+D33+D35+D37+D39+D41+D43+D45+D47+D49+D51+D53+D55+D57+D59+D61">5.528</td>
<td class=xl31>DIPLOMADO EN ESTADÍSTICA</td>
<td class=xl52 x:num x:fmla="=U17+U18">51</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F17+G17+H17+I17+J17+K17+L17+M17+N17+O17+P17+Q17+R17+S17+T17">23</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN ESTADÍSTICA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F18+G18+H18+I18+J18+K18+L18+M18+N18+O18+P18+Q18+R18+S18+T18">28</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN ÓPTICA Y OPTOMETRÍA</td>
<td class=xl51 x:num x:fmla="=U19+U20">249</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F19+G19+H19+I19+J19+K19+L19+M19+N19+O19+P19+Q19+R19+S19+T19">82</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN ÓPTICA Y OPTOMETRÍA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>42</td>
<td class=xl71 x:num>46</td>
<td class=xl70 x:num>24</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F20+G20+H20+I20+J20+K20+L20+M20+N20+O20+P20+Q20+R20+S20+T20">167</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN BIOLOGÍA</td>
<td class=xl52 x:num x:fmla="=U21+U22">510</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>71</td>
<td class=xl73 x:num>77</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F21+G21+H21+I21+J21+K21+L21+M21+N21+O21+P21+Q21+R21+S21+T21">242</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN BIOLOGÍA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>101</td>
<td class=xl73 x:num>89</td>
<td class=xl72 x:num>40</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F22+G22+H22+I22+J22+K22+L22+M22+N22+O22+P22+Q22+R22+S22+T22">268</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN BIOQUÍMICA</td>
<td class=xl51 x:num x:fmla="=U23+U24">89</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F23+G23+H23+I23+J23+K23+L23+M23+N23+O23+P23+Q23+R23+S23+T23">32</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN BIOQUÍMICA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>31</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F24+G24+H24+I24+J24+K24+L24+M24+N24+O24+P24+Q24+R24+S24+T24">57</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CIENCIAS AMBIENTALES</td>
<td class=xl52 x:num x:fmla="=U25+U26">268</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>37</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F25+G25+H25+I25+J25+K25+L25+M25+N25+O25+P25+Q25+R25+S25+T25">163</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CIENCIAS AMBIENTALES</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>36</td>
<td class=xl73 x:num>30</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F26+G26+H26+I26+J26+K26+L26+M26+N26+O26+P26+Q26+R26+S26+T26">105</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ESTADÍSTICA</td>
<td class=xl48 x:num x:fmla="=U27+U28">85</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>22</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F27+G27+H27+I27+J27+K27+L27+M27+N27+O27+P27+Q27+R27+S27+T27">57</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ESTADÍSTICA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F28+G28+H28+I28+J28+K28+L28+M28+N28+O28+P28+Q28+R28+S28+T28">28</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FÍSICA</td>
<td class=xl52 x:num x:fmla="=U29+U30">184</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>47</td>
<td class=xl73 x:num>45</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F29+G29+H29+I29+J29+K29+L29+M29+N29+O29+P29+Q29+R29+S29+T29">139</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FÍSICA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>21</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F30+G30+H30+I30+J30+K30+L30+M30+N30+O30+P30+Q30+R30+S30+T30">45</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN GEOLOGÍA</td>
<td class=xl51 x:num x:fmla="=U31+U32">112</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>23</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F31+G31+H31+I31+J31+K31+L31+M31+N31+O31+P31+Q31+R31+S31+T31">73</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN GEOLOGÍA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F32+G32+H32+I32+J32+K32+L32+M32+N32+O32+P32+Q32+R32+S32+T32">39</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN INGENIERÍA ELECTRÓNICA INDUSTRIAL</td>
<td class=xl52 x:num x:fmla="=U33+U34">68</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F33+G33+H33+I33+J33+K33+L33+M33+N33+O33+P33+Q33+R33+S33+T33">58</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN INGENIERÍA ELECTRÓNICA INDUSTRIAL</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F34+G34+H34+I34+J34+K34+L34+M34+N34+O34+P34+Q34+R34+S34+T34">10</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN INGENIERÍA QUÍMICA</td>
<td class=xl51 x:num x:fmla="=U35+U36">212</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>54</td>
<td class=xl69 x:num>42</td>
<td class=xl68 x:num>12</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F35+G35+H35+I35+J35+K35+L35+M35+N35+O35+P35+Q35+R35+S35+T35">126</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN INGENIERÍA QUÍMICA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>40</td>
<td class=xl69 x:num>32</td>
<td class=xl68 x:num>9</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F36+G36+H36+I36+J36+K36+L36+M36+N36+O36+P36+Q36+R36+S36+T36">86</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MATEMÁTICAS</td>
<td class=xl52 x:num x:fmla="=U37+U38">197</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>41</td>
<td class=xl73 x:num>42</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F37+G37+H37+I37+J37+K37+L37+M37+N37+O37+P37+Q37+R37+S37+T37">102</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MATEMÁTICAS</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>46</td>
<td class=xl73 x:num>36</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F38+G38+H38+I38+J38+K38+L38+M38+N38+O38+P38+Q38+R38+S38+T38">95</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN QUÍMICA</td>
<td class=xl51 x:num x:fmla="=U39+U40">176</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>28</td>
<td class=xl69 x:num>33</td>
<td class=xl68 x:num>11</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F39+G39+H39+I39+J39+K39+L39+M39+N39+O39+P39+Q39+R39+S39+T39">88</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN QUÍMICA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>30</td>
<td class=xl69 x:num>30</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F40+G40+H40+I40+J40+K40+L40+M40+N40+O40+P40+Q40+R40+S40+T40">88</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ÓPTICA Y OPTOMETRÍA</td>
<td class=xl52 x:num x:fmla="=U41+U42">249</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F41+G41+H41+I41+J41+K41+L41+M41+N41+O41+P41+Q41+R41+S41+T41">79</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ÓPTICA Y OPTOMETRÍA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>49</td>
<td class=xl73 x:num>59</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F42+G42+H42+I42+J42+K42+L42+M42+N42+O42+P42+Q42+R42+S42+T42">170</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>INGENIERO EN ELECTRÓNICA</td>
<td class=xl51 x:num x:fmla="=U43+U44">109</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>8</td>
<td class=xl69 x:num>9</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>14</td>
<td class=xl68 x:num>13</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>16</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>11</td>
<td class=xl57 x:num
x:fmla="=F43+G43+H43+I43+J43+K43+L43+M43+N43+O43+P43+Q43+R43+S43+T43">96</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>INGENIERO EN ELECTRÓNICA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F44+G44+H44+I44+J44+K44+L44+M44+N44+O44+P44+Q44+R44+S44+T44">13</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO QUÍMICO</td>
<td class=xl52 x:num x:fmla="=U45+U46">436</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>30</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>34</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F45+G45+H45+I45+J45+K45+L45+M45+N45+O45+P45+Q45+R45+S45+T45">234</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO QUÍMICO</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>27</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>20</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F46+G46+H46+I46+J46+K46+L46+M46+N46+O46+P46+Q46+R46+S46+T46">202</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN BIOLOGÍA</td>
<td class=xl51 x:num x:fmla="=U47+U48">837</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>38</td>
<td class=xl69 x:num>54</td>
<td class=xl68 x:num>39</td>
<td class=xl69 x:num>40</td>
<td class=xl68 x:num>35</td>
<td class=xl69 x:num>26</td>
<td class=xl68 x:num>20</td>
<td class=xl69 x:num>18</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>10</td>
<td class=xl68 x:num>23</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>4</td>
<td class=xl57 x:num
x:fmla="=F47+G47+H47+I47+J47+K47+L47+M47+N47+O47+P47+Q47+R47+S47+T47">326</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN BIOLOGÍA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>58</td>
<td class=xl69 x:num>74</td>
<td class=xl68 x:num>83</td>
<td class=xl69 x:num>73</td>
<td class=xl68 x:num>57</td>
<td class=xl69 x:num>39</td>
<td class=xl68 x:num>21</td>
<td class=xl69 x:num>24</td>
<td class=xl68 x:num>18</td>
<td class=xl69 x:num>11</td>
<td class=xl68 x:num>44</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>4</td>
<td class=xl57 x:num
x:fmla="=F48+G48+H48+I48+J48+K48+L48+M48+N48+O48+P48+Q48+R48+S48+T48">511</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN BIOQUÍMICA</td>
<td class=xl52 x:num x:fmla="=U49+U50">81</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F49+G49+H49+I49+J49+K49+L49+M49+N49+O49+P49+Q49+R49+S49+T49">35</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN BIOQUÍMICA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F50+G50+H50+I50+J50+K50+L50+M50+N50+O50+P50+Q50+R50+S50+T50">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN CIENCIAS AMBIENTALES</td>
<td class=xl51 x:num x:fmla="=U51+U52">583</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>28</td>
<td class=xl69 x:num>49</td>
<td class=xl68 x:num>46</td>
<td class=xl69 x:num>40</td>
<td class=xl68 x:num>35</td>
<td class=xl69 x:num>37</td>
<td class=xl68 x:num>20</td>
<td class=xl69 x:num>14</td>
<td class=xl68 x:num>19</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>12</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>9</td>
<td class=xl57 x:num
x:fmla="=F51+G51+H51+I51+J51+K51+L51+M51+N51+O51+P51+Q51+R51+S51+T51">319</td>
<td class=xl38></td>
<td colspan=3 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN CIENCIAS AMBIENTALES</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>23</td>
<td class=xl69 x:num>32</td>
<td class=xl68 x:num>55</td>
<td class=xl69 x:num>33</td>
<td class=xl68 x:num>26</td>
<td class=xl69 x:num>29</td>
<td class=xl68 x:num>23</td>
<td class=xl69 x:num>18</td>
<td class=xl68 x:num>9</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>12</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F52+G52+H52+I52+J52+K52+L52+M52+N52+O52+P52+Q52+R52+S52+T52">264</td>
<td class=xl38></td>
<td colspan=3 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS Y TÉCNICAS ESTADÍSTICAS</td>
<td class=xl52 x:num x:fmla="=U53+U54">47</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F53+G53+H53+I53+J53+K53+L53+M53+N53+O53+P53+Q53+R53+S53+T53">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS Y TÉCNICAS ESTADÍSTICAS</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F54+G54+H54+I54+J54+K54+L54+M54+N54+O54+P54+Q54+R54+S54+T54">23</td>
<td class=xl38></td>
<td colspan=3 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN FÍSICA</td>
<td class=xl51 x:num x:fmla="=U55+U56">321</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>23</td>
<td class=xl69 x:num>21</td>
<td class=xl68 x:num>35</td>
<td class=xl69 x:num>31</td>
<td class=xl68 x:num>20</td>
<td class=xl69 x:num>19</td>
<td class=xl68 x:num>15</td>
<td class=xl69 x:num>10</td>
<td class=xl68 x:num>14</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>27</td>
<td class=xl69 x:num>12</td>
<td class=xl68 x:num>4</td>
<td class=xl57 x:num
x:fmla="=F55+G55+H55+I55+J55+K55+L55+M55+N55+O55+P55+Q55+R55+S55+T55">236</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN FÍSICA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>15</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>15</td>
<td class=xl69 x:num>16</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>9</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F56+G56+H56+I56+J56+K56+L56+M56+N56+O56+P56+Q56+R56+S56+T56">85</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN GEOLOGÍA</td>
<td class=xl52 x:num x:fmla="=U57+U58">139</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F57+G57+H57+I57+J57+K57+L57+M57+N57+O57+P57+Q57+R57+S57+T57">94</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN GEOLOGÍA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F58+G58+H58+I58+J58+K58+L58+M58+N58+O58+P58+Q58+R58+S58+T58">45</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN MATEMÁTICAS</td>
<td class=xl51 x:num x:fmla="=U59+U60">243</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>17</td>
<td class=xl69 x:num>30</td>
<td class=xl68 x:num>31</td>
<td class=xl69 x:num>19</td>
<td class=xl68 x:num>8</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>11</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>5</td>
<td class=xl57 x:num
x:fmla="=F59+G59+H59+I59+J59+K59+L59+M59+N59+O59+P59+Q59+R59+S59+T59">152</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN MATEMÁTICAS</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>17</td>
<td class=xl69 x:num>19</td>
<td class=xl68 x:num>16</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F60+G60+H60+I60+J60+K60+L60+M60+N60+O60+P60+Q60+R60+S60+T60">91</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN QUÍMICA</td>
<td class=xl52 x:num x:fmla="=U61+U62">282</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>19</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>21</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F61+G61+H61+I61+J61+K61+L61+M61+N61+O61+P61+Q61+R61+S61+T61">133</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN QUÍMICA</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>20</td>
<td class=xl76 x:num>13</td>
<td class=xl77 x:num>11</td>
<td class=xl76 x:num>14</td>
<td class=xl77 x:num>9</td>
<td class=xl76 x:num>12</td>
<td class=xl77 x:num>11</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>8</td>
<td class=xl76 x:num>24</td>
<td class=xl77 x:num>10</td>
<td class=xl76 x:num>1</td>
<td class=xl60 x:num
x:fmla="=F62+G62+H62+I62+J62+K62+L62+M62+N62+O62+P62+Q62+R62+S62+T62">149</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. CC. ACTV.FISICA Y
DEPORTE</td>
<td class=xl48 x:num="1378" x:fmla="=D63+D65">1.378</td>
<td class=xl32>GRADO EN CIENCIAS DE LA ACTIVIDAD FÍSICA Y DEL DEPORTE</td>
<td class=xl51 x:num x:fmla="=U63+U64">361</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>81</td>
<td class=xl69 x:num>87</td>
<td class=xl68 x:num>25</td>
<td class=xl69 x:num>25</td>
<td class=xl68 x:num>32</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>3</td>
<td class=xl57 x:num
x:fmla="=F63+G63+H63+I63+J63+K63+L63+M63+N63+O63+P63+Q63+R63+S63+T63">285</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN CIENCIAS DE LA ACTIVIDAD FÍSICA Y DEL DEPORTE</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>27</td>
<td class=xl69 x:num>28</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F64+G64+H64+I64+J64+K64+L64+M64+N64+O64+P64+Q64+R64+S64+T64">76</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS DE LA ACTIVIDAD FÍSICA Y DEL DEPORTE</td>
<td class=xl52 x:num="1017" x:fmla="=U65+U66">1.017</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>114</td>
<td class=xl73 x:num>171</td>
<td class=xl72 x:num>177</td>
<td class=xl73 x:num>119</td>
<td class=xl72 x:num>78</td>
<td class=xl73 x:num>38</td>
<td class=xl72 x:num>38</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>19</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F65+G65+H65+I65+J65+K65+L65+M65+N65+O65+P65+Q65+R65+S65+T65">847</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN CIENCIAS DE LA ACTIVIDAD FÍSICA Y DEL DEPORTE</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>34</td>
<td class=xl77 x:num>38</td>
<td class=xl76 x:num>27</td>
<td class=xl77 x:num>20</td>
<td class=xl76 x:num>16</td>
<td class=xl77 x:num>10</td>
<td class=xl76 x:num>6</td>
<td class=xl77 x:num>7</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>3</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>3</td>
<td class=xl76 x:num>0</td>
<td class=xl60 x:num
x:fmla="=F66+G66+H66+I66+J66+K66+L66+M66+N66+O66+P66+Q66+R66+S66+T66">170</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. CC. EDUCACION</td>
<td class=xl48 x:num="5512"
x:fmla="=D67+D69+D71+D73+D75+D77+D79+D81+D83+D85+D87+D89+D91+D93+D95">5.512</td>
<td class=xl32>DIPLOMADO EN EDUCACIÓN SOCIAL</td>
<td class=xl51 x:num x:fmla="=U67+U68">106</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F67+G67+H67+I67+J67+K67+L67+M67+N67+O67+P67+Q67+R67+S67+T67">20</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>DIPLOMADO EN EDUCACIÓN SOCIAL</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>24</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>15</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>9</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>4</td>
<td class=xl57 x:num
x:fmla="=F68+G68+H68+I68+J68+K68+L68+M68+N68+O68+P68+Q68+R68+S68+T68">86</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN EDUCACIÓN SOCIAL</td>
<td class=xl52 x:num x:fmla="=U69+U70">243</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F69+G69+H69+I69+J69+K69+L69+M69+N69+O69+P69+Q69+R69+S69+T69">41</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN EDUCACIÓN SOCIAL</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>25</td>
<td class=xl73 x:num>41</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>32</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F70+G70+H70+I70+J70+K70+L70+M70+N70+O70+P70+Q70+R70+S70+T70">202</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL</td>
<td class=xl51 x:num x:fmla="=U71+U72">579</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F71+G71+H71+I71+J71+K71+L71+M71+N71+O71+P71+Q71+R71+S71+T71">26</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>84</td>
<td class=xl69 x:num>136</td>
<td class=xl68 x:num>83</td>
<td class=xl69 x:num>53</td>
<td class=xl68 x:num>65</td>
<td class=xl69 x:num>43</td>
<td class=xl68 x:num>15</td>
<td class=xl69 x:num>15</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>9</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>20</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>5</td>
<td class=xl57 x:num
x:fmla="=F72+G72+H72+I72+J72+K72+L72+M72+N72+O72+P72+Q72+R72+S72+T72">553</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO DE EDUCACIÓN PRIMARIA (BILINGÜE)</td>
<td class=xl52 x:num x:fmla="=U73+U74">67</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F73+G73+H73+I73+J73+K73+L73+M73+N73+O73+P73+Q73+R73+S73+T73">14</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO DE EDUCACIÓN PRIMARIA (BILINGÜE)</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F74+G74+H74+I74+J74+K74+L74+M74+N74+O74+P74+Q74+R74+S74+T74">53</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA</td>
<td class=xl48 x:num="1295" x:fmla="=U75+U76">1.295</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>93</td>
<td class=xl71 x:num>177</td>
<td class=xl70 x:num>90</td>
<td class=xl71 x:num>56</td>
<td class=xl70 x:num>39</td>
<td class=xl71 x:num>29</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F75+G75+H75+I75+J75+K75+L75+M75+N75+O75+P75+Q75+R75+S75+T75">558</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>163</td>
<td class=xl71 x:num>254</td>
<td class=xl70 x:num>92</td>
<td class=xl71 x:num>58</td>
<td class=xl70 x:num>52</td>
<td class=xl71 x:num>32</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F76+G76+H76+I76+J76+K76+L76+M76+N76+O76+P76+Q76+R76+S76+T76">737</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN PEDAGOGÍA</td>
<td class=xl52 x:num x:fmla="=U77+U78">216</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F77+G77+H77+I77+J77+K77+L77+M77+N77+O77+P77+Q77+R77+S77+T77">39</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN PEDAGOGÍA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>62</td>
<td class=xl72 x:num>39</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F78+G78+H78+I78+J78+K78+L78+M78+N78+O78+P78+Q78+R78+S78+T78">177</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN PEDAGOGÍA</td>
<td class=xl51 x:num x:fmla="=U79+U80">733</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>23</td>
<td class=xl70 x:num>31</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F79+G79+H79+I79+J79+K79+L79+M79+N79+O79+P79+Q79+R79+S79+T79">152</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN PEDAGOGÍA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>50</td>
<td class=xl71 x:num>107</td>
<td class=xl70 x:num>111</td>
<td class=xl71 x:num>99</td>
<td class=xl70 x:num>61</td>
<td class=xl71 x:num>48</td>
<td class=xl70 x:num>28</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>8</td>
<td class=xl56 x:num
x:fmla="=F80+G80+H80+I80+J80+K80+L80+M80+N80+O80+P80+Q80+R80+S80+T80">581</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN PSICOPEDAGOGÍA</td>
<td class=xl52 x:num x:fmla="=U81+U82">579</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>25</td>
<td class=xl73 x:num>28</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F81+G81+H81+I81+J81+K81+L81+M81+N81+O81+P81+Q81+R81+S81+T81">148</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN PSICOPEDAGOGÍA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>56</td>
<td class=xl72 x:num>81</td>
<td class=xl73 x:num>67</td>
<td class=xl72 x:num>43</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>43</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>15</td>
<td class=xl58 x:num
x:fmla="=F82+G82+H82+I82+J82+K82+L82+M82+N82+O82+P82+Q82+R82+S82+T82">431</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE</td>
<td class=xl51 x:num x:fmla="=U83+U84">121</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F83+G83+H83+I83+J83+K83+L83+M83+N83+O83+P83+Q83+R83+S83+T83">14</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F84+G84+H84+I84+J84+K84+L84+M84+N84+O84+P84+Q84+R84+S84+T84">107</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL</td>
<td class=xl52 x:num x:fmla="=U85+U86">124</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F85+G85+H85+I85+J85+K85+L85+M85+N85+O85+P85+Q85+R85+S85+T85">23</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F86+G86+H86+I86+J86+K86+L86+M86+N86+O86+P86+Q86+R86+S86+T86">101</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA</td>
<td class=xl48 x:num x:fmla="=U87+U88">235</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>38</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F87+G87+H87+I87+J87+K87+L87+M87+N87+O87+P87+Q87+R87+S87+T87">166</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F88+G88+H88+I88+J88+K88+L88+M88+N88+O88+P88+Q88+R88+S88+T88">69</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL</td>
<td class=xl52 x:num x:fmla="=U89+U90">263</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F89+G89+H89+I89+J89+K89+L89+M89+N89+O89+P89+Q89+R89+S89+T89">12</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>74</td>
<td class=xl73 x:num>27</td>
<td class=xl72 x:num>26</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>20</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>9</td>
<td class=xl58 x:num
x:fmla="=F90+G90+H90+I90+J90+K90+L90+M90+N90+O90+P90+Q90+R90+S90+T90">251</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL</td>
<td class=xl51 x:num x:fmla="=U91+U92">190</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>17</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F91+G91+H91+I91+J91+K91+L91+M91+N91+O91+P91+Q91+R91+S91+T91">97</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F92+G92+H92+I92+J92+K92+L92+M92+N92+O92+P92+Q92+R92+S92+T92">93</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA</td>
<td class=xl52 x:num x:fmla="=U93+U94">458</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>21</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F93+G93+H93+I93+J93+K93+L93+M93+N93+O93+P93+Q93+R93+S93+T93">126</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>88</td>
<td class=xl73 x:num>44</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>25</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>26</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl58 x:num
x:fmla="=F94+G94+H94+I94+J94+K94+L94+M94+N94+O94+P94+Q94+R94+S94+T94">332</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA</td>
<td class=xl51 x:num x:fmla="=U95+U96">303</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F95+G95+H95+I95+J95+K95+L95+M95+N95+O95+P95+Q95+R95+S95+T95">81</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA</td>
<td class=xl49> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>40</td>
<td class=xl75 x:num>30</td>
<td class=xl74 x:num>34</td>
<td class=xl75 x:num>23</td>
<td class=xl74 x:num>19</td>
<td class=xl75 x:num>10</td>
<td class=xl74 x:num>8</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>9</td>
<td class=xl75 x:num>4</td>
<td class=xl74 x:num>17</td>
<td class=xl75 x:num>11</td>
<td class=xl74 x:num>10</td>
<td class=xl59 x:num
x:fmla="=F96+G96+H96+I96+J96+K96+L96+M96+N96+O96+P96+Q96+R96+S96+T96">222</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. CC. ECONOMICAS EMPRESAR.</td>
<td class=xl48 x:num="6354"
x:fmla="=D97+D99+D101+D103+D105+D107+D109+D111+D113+D115">6.354</td>
<td class=xl31>DIPLOMADO EN CIENCIAS EMPRESARIALES</td>
<td class=xl52 x:num="1007" x:fmla="=U97+U98">1.007</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>35</td>
<td class=xl73 x:num>66</td>
<td class=xl72 x:num>58</td>
<td class=xl73 x:num>52</td>
<td class=xl72 x:num>42</td>
<td class=xl73 x:num>50</td>
<td class=xl72 x:num>35</td>
<td class=xl73 x:num>38</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>46</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F97+G97+H97+I97+J97+K97+L97+M97+N97+O97+P97+Q97+R97+S97+T97">489</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN CIENCIAS EMPRESARIALES</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>52</td>
<td class=xl73 x:num>82</td>
<td class=xl72 x:num>61</td>
<td class=xl73 x:num>54</td>
<td class=xl72 x:num>48</td>
<td class=xl73 x:num>41</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>27</td>
<td class=xl72 x:num>21</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>46</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>15</td>
<td class=xl58 x:num
x:fmla="=F98+G98+H98+I98+J98+K98+L98+M98+N98+O98+P98+Q98+R98+S98+T98">518</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN TURISMO</td>
<td class=xl48 x:num x:fmla="=U99+U100">413</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>29</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F99+G99+H99+I99+J99+K99+L99+M99+N99+O99+P99+Q99+R99+S99+T99">119</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN TURISMO</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>36</td>
<td class=xl71 x:num>65</td>
<td class=xl70 x:num>52</td>
<td class=xl71 x:num>31</td>
<td class=xl70 x:num>28</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F100+G100+H100+I100+J100+K100+L100+M100+N100+O100+P100+Q100+R100+S100+T100">294</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS</td>
<td class=xl52 x:num x:fmla="=U101+U102">620</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>88</td>
<td class=xl73 x:num>70</td>
<td class=xl72 x:num>50</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F101+G101+H101+I101+J101+K101+L101+M101+N101+O101+P101+Q101+R101+S101+T101">287</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>113</td>
<td class=xl73 x:num>138</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F102+G102+H102+I102+J102+K102+L102+M102+N102+O102+P102+Q102+R102+S102+T102">333</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ECONOMÍA</td>
<td class=xl51 x:num x:fmla="=U103+U104">521</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>37</td>
<td class=xl71 x:num>96</td>
<td class=xl70 x:num>59</td>
<td class=xl71 x:num>26</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F103+G103+H103+I103+J103+K103+L103+M103+N103+O103+P103+Q103+R103+S103+T103">264</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ECONOMÍA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>86</td>
<td class=xl71 x:num>93</td>
<td class=xl70 x:num>33</td>
<td class=xl71 x:num>20</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F104+G104+H104+I104+J104+K104+L104+M104+N104+O104+P104+Q104+R104+S104+T104">257</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FINANZAS Y CONTABILIDAD</td>
<td class=xl52 x:num x:fmla="=U105+U106">263</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F105+G105+H105+I105+J105+K105+L105+M105+N105+O105+P105+Q105+R105+S105+T105">110</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FINANZAS Y CONTABILIDAD</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>39</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F106+G106+H106+I106+J106+K106+L106+M106+N106+O106+P106+Q106+R106+S106+T106">153</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MARKETING E INVESTIGACIÓN DE MERCADOS</td>
<td class=xl51 x:num x:fmla="=U107+U108">255</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>47</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F107+G107+H107+I107+J107+K107+L107+M107+N107+O107+P107+Q107+R107+S107+T107">127</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MARKETING E INVESTIGACIÓN DE MERCADOS</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>42</td>
<td class=xl71 x:num>45</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F108+G108+H108+I108+J108+K108+L108+M108+N108+O108+P108+Q108+R108+S108+T108">128</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN TURISMO</td>
<td class=xl52 x:num x:fmla="=U109+U110">286</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F109+G109+H109+I109+J109+K109+L109+M109+N109+O109+P109+Q109+R109+S109+T109">102</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN TURISMO</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>39</td>
<td class=xl73 x:num>62</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F110+G110+H110+I110+J110+K110+L110+M110+N110+O110+P110+Q110+R110+S110+T110">184</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS</td>
<td class=xl48 x:num="1694" x:fmla="=U111+U112">1.694</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>74</td>
<td class=xl71 x:num>138</td>
<td class=xl70 x:num>142</td>
<td class=xl71 x:num>106</td>
<td class=xl70 x:num>84</td>
<td class=xl71 x:num>64</td>
<td class=xl70 x:num>41</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>46</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>9</td>
<td class=xl56 x:num
x:fmla="=F111+G111+H111+I111+J111+K111+L111+M111+N111+O111+P111+Q111+R111+S111+T111">764</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>125</td>
<td class=xl71 x:num>161</td>
<td class=xl70 x:num>173</td>
<td class=xl71 x:num>151</td>
<td class=xl70 x:num>99</td>
<td class=xl71 x:num>63</td>
<td class=xl70 x:num>35</td>
<td class=xl71 x:num>24</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>44</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>15</td>
<td class=xl56 x:num
x:fmla="=F112+G112+H112+I112+J112+K112+L112+M112+N112+O112+P112+Q112+R112+S112+T112">930</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN ECONOMÍA</td>
<td class=xl52 x:num="1143" x:fmla="=U113+U114">1.143</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>38</td>
<td class=xl73 x:num>74</td>
<td class=xl72 x:num>88</td>
<td class=xl73 x:num>85</td>
<td class=xl72 x:num>79</td>
<td class=xl73 x:num>74</td>
<td class=xl72 x:num>35</td>
<td class=xl73 x:num>34</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>20</td>
<td class=xl72 x:num>40</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F113+G113+H113+I113+J113+K113+L113+M113+N113+O113+P113+Q113+R113+S113+T113">601</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN ECONOMÍA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>55</td>
<td class=xl73 x:num>85</td>
<td class=xl72 x:num>88</td>
<td class=xl73 x:num>80</td>
<td class=xl72 x:num>61</td>
<td class=xl73 x:num>46</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>31</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F114+G114+H114+I114+J114+K114+L114+M114+N114+O114+P114+Q114+R114+S114+T114">542</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN INVESTIGACIÓN Y TÉCNICAS DE MERCADO</td>
<td class=xl51 x:num x:fmla="=U115+U116">152</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F115+G115+H115+I115+J115+K115+L115+M115+N115+O115+P115+Q115+R115+S115+T115">86</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>LICENCIADO EN INVESTIGACIÓN Y TÉCNICAS DE MERCADO</td>
<td class=xl86> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>11</td>
<td class=xl74 x:num>13</td>
<td class=xl75 x:num>12</td>
<td class=xl74 x:num>7</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>4</td>
<td class=xl75 x:num>4</td>
<td class=xl74 x:num>6</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>0</td>
<td class=xl59 x:num
x:fmla="=F116+G116+H116+I116+J116+K116+L116+M116+N116+O116+P116+Q116+R116+S116+T116">66</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. CC. POLÍTICAS SOCIOLOGÍA</td>
<td class=xl48 x:num="1418" x:fmla="=D117+D119+D121+D123">1.418</td>
<td class=xl31>GRADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN</td>
<td class=xl52 x:num x:fmla="=U117+U118">303</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>32</td>
<td class=xl73 x:num>35</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>21</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F117+G117+H117+I117+J117+K117+L117+M117+N117+O117+P117+Q117+R117+S117+T117">194</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>47</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>6</td>
<td class=xl58 x:num
x:fmla="=F118+G118+H118+I118+J118+K118+L118+M118+N118+O118+P118+Q118+R118+S118+T118">109</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN SOCIOLOGÍA</td>
<td class=xl51 x:num x:fmla="=U119+U120">255</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>24</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F119+G119+H119+I119+J119+K119+L119+M119+N119+O119+P119+Q119+R119+S119+T119">101</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN SOCIOLOGÍA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>34</td>
<td class=xl71 x:num>50</td>
<td class=xl70 x:num>31</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>6</td>
<td class=xl56 x:num
x:fmla="=F120+G120+H120+I120+J120+K120+L120+M120+N120+O120+P120+Q120+R120+S120+T120">154</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN</td>
<td class=xl52 x:num x:fmla="=U121+U122">479</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>47</td>
<td class=xl73 x:num>58</td>
<td class=xl72 x:num>66</td>
<td class=xl73 x:num>45</td>
<td class=xl72 x:num>26</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>11</td>
<td class=xl58 x:num
x:fmla="=F121+G121+H121+I121+J121+K121+L121+M121+N121+O121+P121+Q121+R121+S121+T121">338</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>25</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>6</td>
<td class=xl58 x:num
x:fmla="=F122+G122+H122+I122+J122+K122+L122+M122+N122+O122+P122+Q122+R122+S122+T122">141</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN SOCIOLOGÍA</td>
<td class=xl48 x:num x:fmla="=U123+U124">381</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>23</td>
<td class=xl71 x:num>34</td>
<td class=xl70 x:num>25</td>
<td class=xl71 x:num>24</td>
<td class=xl70 x:num>24</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F123+G123+H123+I123+J123+K123+L123+M123+N123+O123+P123+Q123+R123+S123+T123">193</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>LICENCIADO EN SOCIOLOGÍA</td>
<td class=xl53> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>17</td>
<td class=xl75 x:num>15</td>
<td class=xl74 x:num>33</td>
<td class=xl75 x:num>26</td>
<td class=xl74 x:num>16</td>
<td class=xl75 x:num>25</td>
<td class=xl74 x:num>16</td>
<td class=xl75 x:num>10</td>
<td class=xl74 x:num>5</td>
<td class=xl75 x:num>4</td>
<td class=xl74 x:num>9</td>
<td class=xl75 x:num>7</td>
<td class=xl74 x:num>5</td>
<td class=xl59 x:num
x:fmla="=F124+G124+H124+I124+J124+K124+L124+M124+N124+O124+P124+Q124+R124+S124+T124">188</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. DERECHO</td>
<td class=xl48 x:num="3344" x:fmla="=D125+D127+D129">3.344</td>
<td class=xl31>GRADO EN DERECHO</td>
<td class=xl52 x:num="1044" x:fmla="=U125+U126">1.044</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>107</td>
<td class=xl73 x:num>172</td>
<td class=xl72 x:num>53</td>
<td class=xl73 x:num>43</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>22</td>
<td class=xl58 x:num
x:fmla="=F125+G125+H125+I125+J125+K125+L125+M125+N125+O125+P125+Q125+R125+S125+T125">474</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN DERECHO</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>185</td>
<td class=xl73 x:num>234</td>
<td class=xl72 x:num>68</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>11</td>
<td class=xl58 x:num
x:fmla="=F126+G126+H126+I126+J126+K126+L126+M126+N126+O126+P126+Q126+R126+S126+T126">570</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN DERECHO</td>
<td class=xl51 x:num="2299" x:fmla="=U127+U128">2.299</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>111</td>
<td class=xl71 x:num>153</td>
<td class=xl70 x:num>196</td>
<td class=xl71 x:num>144</td>
<td class=xl70 x:num>109</td>
<td class=xl71 x:num>58</td>
<td class=xl70 x:num>54</td>
<td class=xl71 x:num>33</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>64</td>
<td class=xl71 x:num>36</td>
<td class=xl70 x:num>77</td>
<td class=xl56 x:num="1069"
x:fmla="=F127+G127+H127+I127+J127+K127+L127+M127+N127+O127+P127+Q127+R127+S127+T127">1.069</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN DERECHO</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>177</td>
<td class=xl71 x:num>182</td>
<td class=xl70 x:num>211</td>
<td class=xl71 x:num>145</td>
<td class=xl70 x:num>102</td>
<td class=xl71 x:num>67</td>
<td class=xl70 x:num>62</td>
<td class=xl71 x:num>33</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>24</td>
<td class=xl70 x:num>63</td>
<td class=xl71 x:num>49</td>
<td class=xl70 x:num>86</td>
<td class=xl56 x:num="1230"
x:fmla="=F128+G128+H128+I128+J128+K128+L128+M128+N128+O128+P128+Q128+R128+S128+T128">1.230</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIATURA EN DERECHO</td>
<td class=xl52 x:num x:fmla="=U129+U130">1</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F129+G129+H129+I129+J129+K129+L129+M129+N129+O129+P129+Q129+R129+S129+T129">0</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIATURA EN DERECHO</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl60 x:num
x:fmla="=F130+G130+H130+I130+J130+K130+L130+M130+N130+O130+P130+Q130+R130+S130+T130">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. FARMACIA</td>
<td class=xl48 x:num="3250" x:fmla="=D131+D133+D135+D137+D139+D141">3.250</td>
<td class=xl24>DIPLOMADO EN NUTRICIÓN HUMANA Y DIETÉTICA</td>
<td class=xl51 x:num x:fmla="=U131+U132">180</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F131+G131+H131+I131+J131+K131+L131+M131+N131+O131+P131+Q131+R131+S131+T131">45</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN NUTRICIÓN HUMANA Y DIETÉTICA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>26</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>17</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl56 x:num
x:fmla="=F132+G132+H132+I132+J132+K132+L132+M132+N132+O132+P132+Q132+R132+S132+T132">135</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CIENCIA Y TECNOLOGÍA DE LOS ALIMENTOS</td>
<td class=xl52 x:num x:fmla="=U133+U134">63</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F133+G133+H133+I133+J133+K133+L133+M133+N133+O133+P133+Q133+R133+S133+T133">20</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN CIENCIA Y TECNOLOGÍA DE LOS ALIMENTOS</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F134+G134+H134+I134+J134+K134+L134+M134+N134+O134+P134+Q134+R134+S134+T134">43</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN FARMACIA</td>
<td class=xl51 x:num x:fmla="=U135+U136">683</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>67</td>
<td class=xl69 x:num>59</td>
<td class=xl68 x:num>22</td>
<td class=xl69 x:num>11</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>5</td>
<td class=xl57 x:num
x:fmla="=F135+G135+H135+I135+J135+K135+L135+M135+N135+O135+P135+Q135+R135+S135+T135">195</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN FARMACIA</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>180</td>
<td class=xl69 x:num>175</td>
<td class=xl68 x:num>56</td>
<td class=xl69 x:num>25</td>
<td class=xl68 x:num>13</td>
<td class=xl69 x:num>12</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>3</td>
<td class=xl57 x:num
x:fmla="=F136+G136+H136+I136+J136+K136+L136+M136+N136+O136+P136+Q136+R136+S136+T136">488</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN NUTRICIÓN HUMANA Y DIETÉTICA</td>
<td class=xl52 x:num x:fmla="=U137+U138">195</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F137+G137+H137+I137+J137+K137+L137+M137+N137+O137+P137+Q137+R137+S137+T137">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN NUTRICIÓN HUMANA Y DIETÉTICA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>51</td>
<td class=xl73 x:num>46</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F138+G138+H138+I138+J138+K138+L138+M138+N138+O138+P138+Q138+R138+S138+T138">149</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN CIENCIA Y TECNOLOGÍA DE LOS ALIMENTOS</td>
<td class=xl51 x:num x:fmla="=U139+U140">222</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>3</td>
<td class=xl57 x:num
x:fmla="=F139+G139+H139+I139+J139+K139+L139+M139+N139+O139+P139+Q139+R139+S139+T139">48</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>LICENCIADO EN CIENCIA Y TECNOLOGÍA DE LOS ALIMENTOS</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>22</td>
<td class=xl68 x:num>32</td>
<td class=xl69 x:num>27</td>
<td class=xl68 x:num>26</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>8</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>23</td>
<td class=xl69 x:num>9</td>
<td class=xl68 x:num>6</td>
<td class=xl57 x:num
x:fmla="=F140+G140+H140+I140+J140+K140+L140+M140+N140+O140+P140+Q140+R140+S140+T140">174</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FARMACIA</td>
<td class=xl52 x:num="1907" x:fmla="=U141+U142">1.907</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>49</td>
<td class=xl73 x:num>86</td>
<td class=xl72 x:num>94</td>
<td class=xl73 x:num>67</td>
<td class=xl72 x:num>71</td>
<td class=xl73 x:num>47</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>27</td>
<td class=xl72 x:num>20</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>67</td>
<td class=xl73 x:num>31</td>
<td class=xl72 x:num>25</td>
<td class=xl58 x:num
x:fmla="=F141+G141+H141+I141+J141+K141+L141+M141+N141+O141+P141+Q141+R141+S141+T141">640</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN FARMACIA</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>135</td>
<td class=xl77 x:num>148</td>
<td class=xl76 x:num>176</td>
<td class=xl77 x:num>168</td>
<td class=xl76 x:num>139</td>
<td class=xl77 x:num>94</td>
<td class=xl76 x:num>75</td>
<td class=xl77 x:num>65</td>
<td class=xl76 x:num>44</td>
<td class=xl77 x:num>44</td>
<td class=xl76 x:num>106</td>
<td class=xl77 x:num>37</td>
<td class=xl76 x:num>35</td>
<td class=xl60 x:num="1267"
x:fmla="=F142+G142+H142+I142+J142+K142+L142+M142+N142+O142+P142+Q142+R142+S142+T142">1.267</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. FILOSOFIA Y LETRAS</td>
<td class=xl48 x:num="4944"
x:fmla="=D143+D145+D147+D149+D151+D153+D155+D157+D159+D161+D163+D165+D167+D169+D171+D173+D175+D177+D179+D181+D183+D185+D187+D189+D191+D193+D195+D197+D199+D201">4.944</td>
<td class=xl32>GRADO EN ANTROPOLOGÍA SOCIAL Y CULTURAL</td>
<td class=xl51 x:num x:fmla="=U143+U144">70</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl57 x:num
x:fmla="=F143+G143+H143+I143+J143+K143+L143+M143+N143+O143+P143+Q143+R143+S143+T143">36</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN ANTROPOLOGÍA SOCIAL Y CULTURAL</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>5</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F144+G144+H144+I144+J144+K144+L144+M144+N144+O144+P144+Q144+R144+S144+T144">34</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ESTUDIOS FRANCESES</td>
<td class=xl52 x:num x:fmla="=U145+U146">131</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F145+G145+H145+I145+J145+K145+L145+M145+N145+O145+P145+Q145+R145+S145+T145">30</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ESTUDIOS FRANCESES</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>40</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F146+G146+H146+I146+J146+K146+L146+M146+N146+O146+P146+Q146+R146+S146+T146">101</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ESTUDIOS INGLESES</td>
<td class=xl48 x:num x:fmla="=U147+U148">287</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>43</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F147+G147+H147+I147+J147+K147+L147+M147+N147+O147+P147+Q147+R147+S147+T147">95</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ESTUDIOS INGLESES</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>66</td>
<td class=xl71 x:num>71</td>
<td class=xl70 x:num>24</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F148+G148+H148+I148+J148+K148+L148+M148+N148+O148+P148+Q148+R148+S148+T148">192</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ESTUDIOS ÁRABES E ISLÁMICOS</td>
<td class=xl52 x:num x:fmla="=U149+U150">65</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F149+G149+H149+I149+J149+K149+L149+M149+N149+O149+P149+Q149+R149+S149+T149">27</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ESTUDIOS ÁRABES E ISLÁMICOS</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F150+G150+H150+I150+J150+K150+L150+M150+N150+O150+P150+Q150+R150+S150+T150">38</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN FILOLOGÍA CLÁSICA</td>
<td class=xl51 x:num x:fmla="=U151+U152">69</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F151+G151+H151+I151+J151+K151+L151+M151+N151+O151+P151+Q151+R151+S151+T151">25</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN FILOLOGÍA CLÁSICA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F152+G152+H152+I152+J152+K152+L152+M152+N152+O152+P152+Q152+R152+S152+T152">44</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FILOLOGÍA HISPÁNICA</td>
<td class=xl52 x:num x:fmla="=U153+U154">181</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F153+G153+H153+I153+J153+K153+L153+M153+N153+O153+P153+Q153+R153+S153+T153">86</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FILOLOGÍA HISPÁNICA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F154+G154+H154+I154+J154+K154+L154+M154+N154+O154+P154+Q154+R154+S154+T154">95</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN FILOSOFÍA</td>
<td class=xl51 x:num x:fmla="=U155+U156">135</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>19</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F155+G155+H155+I155+J155+K155+L155+M155+N155+O155+P155+Q155+R155+S155+T155">85</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN FILOSOFÍA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>17</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F156+G156+H156+I156+J156+K156+L156+M156+N156+O156+P156+Q156+R156+S156+T156">50</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN GEOGRAFÍA Y GESTIÓN DEL TERRITORIO</td>
<td class=xl52 x:num x:fmla="=U157+U158">100</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>29</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F157+G157+H157+I157+J157+K157+L157+M157+N157+O157+P157+Q157+R157+S157+T157">73</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN GEOGRAFÍA Y GESTIÓN DEL TERRITORIO</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F158+G158+H158+I158+J158+K158+L158+M158+N158+O158+P158+Q158+R158+S158+T158">27</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN HISTORIA</td>
<td class=xl48 x:num x:fmla="=U159+U160">285</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>52</td>
<td class=xl71 x:num>56</td>
<td class=xl70 x:num>33</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>10</td>
<td class=xl56 x:num
x:fmla="=F159+G159+H159+I159+J159+K159+L159+M159+N159+O159+P159+Q159+R159+S159+T159">204</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN HISTORIA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl56 x:num
x:fmla="=F160+G160+H160+I160+J160+K160+L160+M160+N160+O160+P160+Q160+R160+S160+T160">81</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN HISTORIA DEL ARTE</td>
<td class=xl52 x:num x:fmla="=U161+U162">254</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl58 x:num
x:fmla="=F161+G161+H161+I161+J161+K161+L161+M161+N161+O161+P161+Q161+R161+S161+T161">83</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN HISTORIA DEL ARTE</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>40</td>
<td class=xl73 x:num>52</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F162+G162+H162+I162+J162+K162+L162+M162+N162+O162+P162+Q162+R162+S162+T162">171</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN HISTORIA Y CIENCIAS DE LA MÚSICA</td>
<td class=xl51 x:num x:fmla="=U163+U164">128</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F163+G163+H163+I163+J163+K163+L163+M163+N163+O163+P163+Q163+R163+S163+T163">69</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN HISTORIA Y CIENCIAS DE LA MÚSICA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>22</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F164+G164+H164+I164+J164+K164+L164+M164+N164+O164+P164+Q164+R164+S164+T164">59</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN LENGUAS MODERNAS Y SUS LITERATURAS</td>
<td class=xl52 x:num x:fmla="=U165+U166">152</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F165+G165+H165+I165+J165+K165+L165+M165+N165+O165+P165+Q165+R165+S165+T165">57</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN LENGUAS MODERNAS Y SUS LITERATURAS</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>32</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F166+G166+H166+I166+J166+K166+L166+M166+N166+O166+P166+Q166+R166+S166+T166">95</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN LITERATURAS COMPARADAS</td>
<td class=xl51 x:num x:fmla="=U167+U168">58</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F167+G167+H167+I167+J167+K167+L167+M167+N167+O167+P167+Q167+R167+S167+T167">22</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN LITERATURAS COMPARADAS</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F168+G168+H168+I168+J168+K168+L168+M168+N168+O168+P168+Q168+R168+S168+T168">36</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN ANTROPOLOGÍA SOCIAL Y CULTURAL</td>
<td class=xl52 x:num x:fmla="=U169+U170">328</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>10</td>
<td class=xl58 x:num
x:fmla="=F169+G169+H169+I169+J169+K169+L169+M169+N169+O169+P169+Q169+R169+S169+T169">133</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN ANTROPOLOGÍA SOCIAL Y CULTURAL</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>20</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>20</td>
<td class=xl58 x:num
x:fmla="=F170+G170+H170+I170+J170+K170+L170+M170+N170+O170+P170+Q170+R170+S170+T170">195</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA CLÁSICA</td>
<td class=xl48 x:num x:fmla="=U171+U172">55</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F171+G171+H171+I171+J171+K171+L171+M171+N171+O171+P171+Q171+R171+S171+T171">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA CLÁSICA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F172+G172+H172+I172+J172+K172+L172+M172+N172+O172+P172+Q172+R172+S172+T172">31</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA ESLAVA</td>
<td class=xl52 x:num x:fmla="=U173+U174">33</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F173+G173+H173+I173+J173+K173+L173+M173+N173+O173+P173+Q173+R173+S173+T173">19</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA ESLAVA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F174+G174+H174+I174+J174+K174+L174+M174+N174+O174+P174+Q174+R174+S174+T174">14</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA FRANCESA</td>
<td class=xl51 x:num x:fmla="=U175+U176">100</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F175+G175+H175+I175+J175+K175+L175+M175+N175+O175+P175+Q175+R175+S175+T175">33</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA FRANCESA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F176+G176+H176+I176+J176+K176+L176+M176+N176+O176+P176+Q176+R176+S176+T176">67</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA HEBREA</td>
<td class=xl52 x:num x:fmla="=U177+U178">16</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F177+G177+H177+I177+J177+K177+L177+M177+N177+O177+P177+Q177+R177+S177+T177">16</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA HEBREA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F178+G178+H178+I178+J178+K178+L178+M178+N178+O178+P178+Q178+R178+S178+T178">0</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA HISPÁNICA</td>
<td class=xl51 x:num x:fmla="=U179+U180">533</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>76</td>
<td class=xl71 x:num>84</td>
<td class=xl70 x:num>75</td>
<td class=xl71 x:num>34</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F179+G179+H179+I179+J179+K179+L179+M179+N179+O179+P179+Q179+R179+S179+T179">343</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA HISPÁNICA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>39</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F180+G180+H180+I180+J180+K180+L180+M180+N180+O180+P180+Q180+R180+S180+T180">190</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA INGLESA</td>
<td class=xl52 x:num x:fmla="=U181+U182">477</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>36</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F181+G181+H181+I181+J181+K181+L181+M181+N181+O181+P181+Q181+R181+S181+T181">165</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA INGLESA</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>49</td>
<td class=xl73 x:num>64</td>
<td class=xl72 x:num>58</td>
<td class=xl73 x:num>29</td>
<td class=xl72 x:num>35</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>8</td>
<td class=xl58 x:num
x:fmla="=F182+G182+H182+I182+J182+K182+L182+M182+N182+O182+P182+Q182+R182+S182+T182">312</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA ITALIANA</td>
<td class=xl48 x:num x:fmla="=U183+U184">10</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F183+G183+H183+I183+J183+K183+L183+M183+N183+O183+P183+Q183+R183+S183+T183">4</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA ITALIANA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F184+G184+H184+I184+J184+K184+L184+M184+N184+O184+P184+Q184+R184+S184+T184">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA PORTUGUESA</td>
<td class=xl52 x:num x:fmla="=U185+U186">1</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F185+G185+H185+I185+J185+K185+L185+M185+N185+O185+P185+Q185+R185+S185+T185">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA PORTUGUESA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F186+G186+H186+I186+J186+K186+L186+M186+N186+O186+P186+Q186+R186+S186+T186">0</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA ROMÁNICA</td>
<td class=xl51 x:num x:fmla="=U187+U188">12</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F187+G187+H187+I187+J187+K187+L187+M187+N187+O187+P187+Q187+R187+S187+T187">5</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOLOGÍA ROMÁNICA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F188+G188+H188+I188+J188+K188+L188+M188+N188+O188+P188+Q188+R188+S188+T188">7</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA ÁRABE</td>
<td class=xl52 x:num x:fmla="=U189+U190">70</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F189+G189+H189+I189+J189+K189+L189+M189+N189+O189+P189+Q189+R189+S189+T189">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN FILOLOGÍA ÁRABE</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F190+G190+H190+I190+J190+K190+L190+M190+N190+O190+P190+Q190+R190+S190+T190">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOSOFÍA</td>
<td class=xl51 x:num x:fmla="=U191+U192">213</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>25</td>
<td class=xl70 x:num>23</td>
<td class=xl71 x:num>28</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>7</td>
<td class=xl56 x:num
x:fmla="=F191+G191+H191+I191+J191+K191+L191+M191+N191+O191+P191+Q191+R191+S191+T191">150</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN FILOSOFÍA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl56 x:num
x:fmla="=F192+G192+H192+I192+J192+K192+L192+M192+N192+O192+P192+Q192+R192+S192+T192">63</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN GEOGRAFÍA</td>
<td class=xl52 x:num x:fmla="=U193+U194">108</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F193+G193+H193+I193+J193+K193+L193+M193+N193+O193+P193+Q193+R193+S193+T193">79</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN GEOGRAFÍA</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F194+G194+H194+I194+J194+K194+L194+M194+N194+O194+P194+Q194+R194+S194+T194">29</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN HISTORIA</td>
<td class=xl48 x:num x:fmla="=U195+U196">513</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>57</td>
<td class=xl71 x:num>65</td>
<td class=xl70 x:num>74</td>
<td class=xl71 x:num>43</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>15</td>
<td class=xl56 x:num
x:fmla="=F195+G195+H195+I195+J195+K195+L195+M195+N195+O195+P195+Q195+R195+S195+T195">357</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN HISTORIA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>29</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>16</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>18</td>
<td class=xl56 x:num
x:fmla="=F196+G196+H196+I196+J196+K196+L196+M196+N196+O196+P196+Q196+R196+S196+T196">156</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN HISTORIA DEL ARTE</td>
<td class=xl52 x:num x:fmla="=U197+U198">374</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>29</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F197+G197+H197+I197+J197+K197+L197+M197+N197+O197+P197+Q197+R197+S197+T197">154</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN HISTORIA DEL ARTE</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>20</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>26</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>26</td>
<td class=xl58 x:num
x:fmla="=F198+G198+H198+I198+J198+K198+L198+M198+N198+O198+P198+Q198+R198+S198+T198">220</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN HISTORIA Y CIENCIAS DE LA MUSICA</td>
<td class=xl51 x:num x:fmla="=U199+U200">96</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F199+G199+H199+I199+J199+K199+L199+M199+N199+O199+P199+Q199+R199+S199+T199">47</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN HISTORIA Y CIENCIAS DE LA MUSICA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F200+G200+H200+I200+J200+K200+L200+M200+N200+O200+P200+Q200+R200+S200+T200">49</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN TEORÍA DE LA LITERATURA Y LITERATURA COMPARADA</td>
<td class=xl52 x:num x:fmla="=U201+U202">90</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F201+G201+H201+I201+J201+K201+L201+M201+N201+O201+P201+Q201+R201+S201+T201">40</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN TEORÍA DE LA LITERATURA Y LITERATURA COMPARADA</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>7</td>
<td class=xl76 x:num>6</td>
<td class=xl77 x:num>8</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>15</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>7</td>
<td class=xl60 x:num
x:fmla="=F202+G202+H202+I202+J202+K202+L202+M202+N202+O202+P202+Q202+R202+S202+T202">50</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. MEDICINA</td>
<td class=xl48 x:num="1732" x:fmla="=D203+D205">1.732</td>
<td class=xl24>GRADO EN MEDICINA</td>
<td class=xl51 x:num x:fmla="=U203+U204">507</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>66</td>
<td class=xl71 x:num>79</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F203+G203+H203+I203+J203+K203+L203+M203+N203+O203+P203+Q203+R203+S203+T203">172</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MEDICINA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>135</td>
<td class=xl71 x:num>142</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>8</td>
<td class=xl56 x:num
x:fmla="=F204+G204+H204+I204+J204+K204+L204+M204+N204+O204+P204+Q204+R204+S204+T204">335</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN MEDICINA</td>
<td class=xl52 x:num="1225" x:fmla="=U205+U206">1.225</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>91</td>
<td class=xl73 x:num>94</td>
<td class=xl72 x:num>83</td>
<td class=xl73 x:num>73</td>
<td class=xl72 x:num>28</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>28</td>
<td class=xl58 x:num
x:fmla="=F205+G205+H205+I205+J205+K205+L205+M205+N205+O205+P205+Q205+R205+S205+T205">475</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN MEDICINA</td>
<td class=xl86> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>136</td>
<td class=xl77 x:num>149</td>
<td class=xl76 x:num>162</td>
<td class=xl77 x:num>177</td>
<td class=xl76 x:num>33</td>
<td class=xl77 x:num>22</td>
<td class=xl76 x:num>9</td>
<td class=xl77 x:num>8</td>
<td class=xl76 x:num>6</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>21</td>
<td class=xl77 x:num>13</td>
<td class=xl76 x:num>10</td>
<td class=xl60 x:num
x:fmla="=F206+G206+H206+I206+J206+K206+L206+M206+N206+O206+P206+Q206+R206+S206+T206">750</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. ODONTOLOGÍA</td>
<td class=xl48 x:num x:fmla="=D207+D209">480</td>
<td class=xl24>GRADO EN ODONTOLOGÍA</td>
<td class=xl48 x:num x:fmla="=U207+U208">162</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F207+G207+H207+I207+J207+K207+L207+M207+N207+O207+P207+Q207+R207+S207+T207">63</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ODONTOLOGÍA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>35</td>
<td class=xl71 x:num>27</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F208+G208+H208+I208+J208+K208+L208+M208+N208+O208+P208+Q208+R208+S208+T208">99</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN ODONTOLOGÍA</td>
<td class=xl52 x:num x:fmla="=U209+U210">318</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>19</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>20</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F209+G209+H209+I209+J209+K209+L209+M209+N209+O209+P209+Q209+R209+S209+T209">105</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN ODONTOLOGÍA</td>
<td class=xl49> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>47</td>
<td class=xl77 x:num>52</td>
<td class=xl76 x:num>59</td>
<td class=xl77 x:num>24</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>5</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>5</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>6</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>2</td>
<td class=xl60 x:num
x:fmla="=F210+G210+H210+I210+J210+K210+L210+M210+N210+O210+P210+Q210+R210+S210+T210">213</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. PSICOLOGIA</td>
<td class=xl48 x:num="2140" x:fmla="=D211+D213+D215+D217">2.140</td>
<td class=xl24>DIPLOMADO EN LOGOPEDIA</td>
<td class=xl51 x:num x:fmla="=U211+U212">110</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F211+G211+H211+I211+J211+K211+L211+M211+N211+O211+P211+Q211+R211+S211+T211">8</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN LOGOPEDIA</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>26</td>
<td class=xl71 x:num>14</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F212+G212+H212+I212+J212+K212+L212+M212+N212+O212+P212+Q212+R212+S212+T212">102</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN LOGOPEDIA</td>
<td class=xl52 x:num x:fmla="=U213+U214">117</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F213+G213+H213+I213+J213+K213+L213+M213+N213+O213+P213+Q213+R213+S213+T213">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN LOGOPEDIA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F214+G214+H214+I214+J214+K214+L214+M214+N214+O214+P214+Q214+R214+S214+T214">111</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN PSICOLOGÍA</td>
<td class=xl51 x:num x:fmla="=U215+U216">641</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>39</td>
<td class=xl71 x:num>39</td>
<td class=xl70 x:num>34</td>
<td class=xl71 x:num>14</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl56 x:num
x:fmla="=F215+G215+H215+I215+J215+K215+L215+M215+N215+O215+P215+Q215+R215+S215+T215">170</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN PSICOLOGÍA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>158</td>
<td class=xl71 x:num>174</td>
<td class=xl70 x:num>40</td>
<td class=xl71 x:num>22</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>11</td>
<td class=xl56 x:num
x:fmla="=F216+G216+H216+I216+J216+K216+L216+M216+N216+O216+P216+Q216+R216+S216+T216">471</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN PSICOLOGÍA</td>
<td class=xl52 x:num="1272" x:fmla="=U217+U218">1.272</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>37</td>
<td class=xl73 x:num>75</td>
<td class=xl72 x:num>77</td>
<td class=xl73 x:num>39</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>25</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F217+G217+H217+I217+J217+K217+L217+M217+N217+O217+P217+Q217+R217+S217+T217">367</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN PSICOLOGÍA</td>
<td class=xl86> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>152</td>
<td class=xl77 x:num>170</td>
<td class=xl76 x:num>177</td>
<td class=xl77 x:num>115</td>
<td class=xl76 x:num>81</td>
<td class=xl77 x:num>36</td>
<td class=xl76 x:num>38</td>
<td class=xl77 x:num>36</td>
<td class=xl76 x:num>14</td>
<td class=xl77 x:num>15</td>
<td class=xl76 x:num>27</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>24</td>
<td class=xl60 x:num
x:fmla="=F218+G218+H218+I218+J218+K218+L218+M218+N218+O218+P218+Q218+R218+S218+T218">905</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. TRADUCCIÓN
INTERPRETACION</td>
<td class=xl48 x:num="1700" x:fmla="=D219+D221">1.700</td>
<td class=xl24>GRADO EN TRADUCCIÓN E INTERPRETACIÓN</td>
<td class=xl48 x:num x:fmla="=U219+U220">585</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>40</td>
<td class=xl71 x:num>57</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>19</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>7</td>
<td class=xl56 x:num
x:fmla="=F219+G219+H219+I219+J219+K219+L219+M219+N219+O219+P219+Q219+R219+S219+T219">181</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN TRADUCCIÓN E INTERPRETACIÓN</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>163</td>
<td class=xl71 x:num>148</td>
<td class=xl70 x:num>28</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>4</td>
<td class=xl56 x:num
x:fmla="=F220+G220+H220+I220+J220+K220+L220+M220+N220+O220+P220+Q220+R220+S220+T220">404</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN TRADUCCIÓN E INTERPRETACIÓN</td>
<td class=xl52 x:num="1115" x:fmla="=U221+U222">1.115</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>98</td>
<td class=xl73 x:num>104</td>
<td class=xl72 x:num>61</td>
<td class=xl73 x:num>38</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F221+G221+H221+I221+J221+K221+L221+M221+N221+O221+P221+Q221+R221+S221+T221">434</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN TRADUCCIÓN E INTERPRETACIÓN</td>
<td class=xl49> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>130</td>
<td class=xl77 x:num>148</td>
<td class=xl76 x:num>121</td>
<td class=xl77 x:num>74</td>
<td class=xl76 x:num>47</td>
<td class=xl77 x:num>26</td>
<td class=xl76 x:num>36</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>9</td>
<td class=xl77 x:num>6</td>
<td class=xl76 x:num>29</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>15</td>
<td class=xl60 x:num
x:fmla="=F222+G222+H222+I222+J222+K222+L222+M222+N222+O222+P222+Q222+R222+S222+T222">681</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>E.T.S. ARQUITECTURA</td>
<td class=xl48 x:num="1754" x:fmla="=D223+D225">1.754</td>
<td class=xl24>ARQUITECTO</td>
<td class=xl51 x:num="1420" x:fmla="=U223+U224">1.420</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>53</td>
<td class=xl71 x:num>77</td>
<td class=xl70 x:num>80</td>
<td class=xl71 x:num>80</td>
<td class=xl70 x:num>87</td>
<td class=xl71 x:num>77</td>
<td class=xl70 x:num>61</td>
<td class=xl71 x:num>46</td>
<td class=xl70 x:num>41</td>
<td class=xl71 x:num>38</td>
<td class=xl70 x:num>95</td>
<td class=xl71 x:num>33</td>
<td class=xl70 x:num>12</td>
<td class=xl56 x:num
x:fmla="=F223+G223+H223+I223+J223+K223+L223+M223+N223+O223+P223+Q223+R223+S223+T223">780</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>ARQUITECTO</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>43</td>
<td class=xl71 x:num>68</td>
<td class=xl70 x:num>81</td>
<td class=xl71 x:num>86</td>
<td class=xl70 x:num>92</td>
<td class=xl71 x:num>66</td>
<td class=xl70 x:num>60</td>
<td class=xl71 x:num>42</td>
<td class=xl70 x:num>32</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>41</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F224+G224+H224+I224+J224+K224+L224+M224+N224+O224+P224+Q224+R224+S224+T224">640</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ARQUITECTURA</td>
<td class=xl52 x:num x:fmla="=U225+U226">334</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>71</td>
<td class=xl73 x:num>57</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F225+G225+H225+I225+J225+K225+L225+M225+N225+O225+P225+Q225+R225+S225+T225">183</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>GRADO EN ARQUITECTURA</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>60</td>
<td class=xl77 x:num>52</td>
<td class=xl76 x:num>17</td>
<td class=xl77 x:num>9</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>3</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>1</td>
<td class=xl60 x:num
x:fmla="=F226+G226+H226+I226+J226+K226+L226+M226+N226+O226+P226+Q226+R226+S226+T226">151</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>ETS INFORMÁTICA Y TELECOMUNI.</td>
<td class=xl48 x:num="2375" x:fmla="=D227+D229+D231+D233+D235+D237">2.375</td>
<td class=xl24>GRADO EN INGENIERÍA DE TECNOLOGÍAS DE TELECOMUNICACIÓN</td>
<td class=xl51 x:num x:fmla="=U227+U228">245</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>69</td>
<td class=xl71 x:num>58</td>
<td class=xl70 x:num>37</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F227+G227+H227+I227+J227+K227+L227+M227+N227+O227+P227+Q227+R227+S227+T227">184</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INGENIERÍA DE TECNOLOGÍAS DE TELECOMUNICACIÓN</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F228+G228+H228+I228+J228+K228+L228+M228+N228+O228+P228+Q228+R228+S228+T228">61</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN INGENIERÍA INFORMÁTICA</td>
<td class=xl52 x:num x:fmla="=U229+U230">746</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>110</td>
<td class=xl73 x:num>145</td>
<td class=xl72 x:num>90</td>
<td class=xl73 x:num>81</td>
<td class=xl72 x:num>56</td>
<td class=xl73 x:num>37</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F229+G229+H229+I229+J229+K229+L229+M229+N229+O229+P229+Q229+R229+S229+T229">610</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN INGENIERÍA INFORMÁTICA</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>32</td>
<td class=xl73 x:num>28</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F230+G230+H230+I230+J230+K230+L230+M230+N230+O230+P230+Q230+R230+S230+T230">136</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>INGENIERO DE TELECOMUNICACIÓN</td>
<td class=xl48 x:num x:fmla="=U231+U232">398</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>27</td>
<td class=xl71 x:num>57</td>
<td class=xl70 x:num>60</td>
<td class=xl71 x:num>68</td>
<td class=xl70 x:num>40</td>
<td class=xl71 x:num>28</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F231+G231+H231+I231+J231+K231+L231+M231+N231+O231+P231+Q231+R231+S231+T231">314</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>INGENIERO DE TELECOMUNICACIÓN</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F232+G232+H232+I232+J232+K232+L232+M232+N232+O232+P232+Q232+R232+S232+T232">84</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO EN INFORMÁTICA</td>
<td class=xl52 x:num x:fmla="=U233+U234">510</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>53</td>
<td class=xl72 x:num>51</td>
<td class=xl73 x:num>80</td>
<td class=xl72 x:num>73</td>
<td class=xl73 x:num>48</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>30</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F233+G233+H233+I233+J233+K233+L233+M233+N233+O233+P233+Q233+R233+S233+T233">447</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO EN INFORMÁTICA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F234+G234+H234+I234+J234+K234+L234+M234+N234+O234+P234+Q234+R234+S234+T234">63</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>INGENIERO TÉCNICO EN INFORMÁTICA DE GESTIÓN</td>
<td class=xl51 x:num x:fmla="=U235+U236">246</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>23</td>
<td class=xl70 x:num>26</td>
<td class=xl71 x:num>20</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>19</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F235+G235+H235+I235+J235+K235+L235+M235+N235+O235+P235+Q235+R235+S235+T235">200</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>INGENIERO TÉCNICO EN INFORMÁTICA DE GESTIÓN</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F236+G236+H236+I236+J236+K236+L236+M236+N236+O236+P236+Q236+R236+S236+T236">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO TÉCNICO EN INFORMÁTICA DE SISTEMAS</td>
<td class=xl52 x:num x:fmla="=U237+U238">230</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>23</td>
<td class=xl72 x:num>35</td>
<td class=xl73 x:num>19</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F237+G237+H237+I237+J237+K237+L237+M237+N237+O237+P237+Q237+R237+S237+T237">198</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>INGENIERO TÉCNICO EN INFORMÁTICA DE SISTEMAS</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>4</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>10</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>5</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>0</td>
<td class=xl60 x:num
x:fmla="=F238+G238+H238+I238+J238+K238+L238+M238+N238+O238+P238+Q238+R238+S238+T238">32</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>ETS CAMINOS CANALES Y PUERTOS</td>
<td class=xl48 x:num="1652" x:fmla="=D239+D241+D243">1.652</td>
<td class=xl24>GRADO EN INGENIERÍA CIVIL</td>
<td class=xl51 x:num x:fmla="=U239+U240">512</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>120</td>
<td class=xl71 x:num>119</td>
<td class=xl70 x:num>58</td>
<td class=xl71 x:num>27</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F239+G239+H239+I239+J239+K239+L239+M239+N239+O239+P239+Q239+R239+S239+T239">373</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INGENIERÍA CIVIL</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>50</td>
<td class=xl71 x:num>44</td>
<td class=xl70 x:num>22</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F240+G240+H240+I240+J240+K240+L240+M240+N240+O240+P240+Q240+R240+S240+T240">139</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO/A DE CAMINOS, CANALES Y PUERTOS</td>
<td class=xl52 x:num="1139" x:fmla="=U241+U242">1.139</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>74</td>
<td class=xl73 x:num>129</td>
<td class=xl72 x:num>122</td>
<td class=xl73 x:num>124</td>
<td class=xl72 x:num>110</td>
<td class=xl73 x:num>68</td>
<td class=xl72 x:num>62</td>
<td class=xl73 x:num>25</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>22</td>
<td class=xl72 x:num>11</td>
<td class=xl58 x:num
x:fmla="=F241+G241+H241+I241+J241+K241+L241+M241+N241+O241+P241+Q241+R241+S241+T241">824</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>INGENIERO/A DE CAMINOS, CANALES Y PUERTOS</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>30</td>
<td class=xl73 x:num>41</td>
<td class=xl72 x:num>51</td>
<td class=xl73 x:num>50</td>
<td class=xl72 x:num>38</td>
<td class=xl73 x:num>36</td>
<td class=xl72 x:num>31</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F242+G242+H242+I242+J242+K242+L242+M242+N242+O242+P242+Q242+R242+S242+T242">315</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>INGENIERÍA SUPERIOR DE CAMINOS, CANALES Y PUERTOS</td>
<td class=xl51 x:num x:fmla="=U243+U244">1</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F243+G243+H243+I243+J243+K243+L243+M243+N243+O243+P243+Q243+R243+S243+T243">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl87>INGENIERÍA SUPERIOR DE CAMINOS, CANALES Y PUERTOS</td>
<td class=xl86> </td>
<td class=xl87>Mujer</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl90 x:num
x:fmla="=F244+G244+H244+I244+J244+K244+L244+M244+N244+O244+P244+Q244+R244+S244+T244">0</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>E.T.S.I. DE EDIFICACIÓN</td>
<td class=xl48 x:num="2240" x:fmla="=D245+D247+D249">2.240</td>
<td class=xl31>ARQUITECTURA TÉCNICA</td>
<td class=xl52 x:num="1405" x:fmla="=U245+U246">1.405</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>84</td>
<td class=xl73 x:num>107</td>
<td class=xl72 x:num>82</td>
<td class=xl73 x:num>80</td>
<td class=xl72 x:num>81</td>
<td class=xl73 x:num>89</td>
<td class=xl72 x:num>78</td>
<td class=xl73 x:num>39</td>
<td class=xl72 x:num>47</td>
<td class=xl73 x:num>47</td>
<td class=xl72 x:num>129</td>
<td class=xl73 x:num>42</td>
<td class=xl72 x:num>36</td>
<td class=xl58 x:num
x:fmla="=F245+G245+H245+I245+J245+K245+L245+M245+N245+O245+P245+Q245+R245+S245+T245">941</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>ARQUITECTURA TÉCNICA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>47</td>
<td class=xl73 x:num>76</td>
<td class=xl72 x:num>77</td>
<td class=xl73 x:num>52</td>
<td class=xl72 x:num>41</td>
<td class=xl73 x:num>40</td>
<td class=xl72 x:num>32</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>33</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>5</td>
<td class=xl58 x:num
x:fmla="=F246+G246+H246+I246+J246+K246+L246+M246+N246+O246+P246+Q246+R246+S246+T246">464</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INGENIERIA EN EDIFICACIÓN (CURSO PUENTE)</td>
<td class=xl51 x:num x:fmla="=U247+U248">58</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F247+G247+H247+I247+J247+K247+L247+M247+N247+O247+P247+Q247+R247+S247+T247">29</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INGENIERIA EN EDIFICACIÓN (CURSO PUENTE)</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F248+G248+H248+I248+J248+K248+L248+M248+N248+O248+P248+Q248+R248+S248+T248">29</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN INGENIERÍA DE EDIFICACIÓN</td>
<td class=xl52 x:num x:fmla="=U249+U250">777</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>81</td>
<td class=xl73 x:num>109</td>
<td class=xl72 x:num>74</td>
<td class=xl73 x:num>57</td>
<td class=xl72 x:num>53</td>
<td class=xl73 x:num>25</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>19</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>16</td>
<td class=xl58 x:num
x:fmla="=F249+G249+H249+I249+J249+K249+L249+M249+N249+O249+P249+Q249+R249+S249+T249">500</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>GRADO EN INGENIERÍA DE EDIFICACIÓN</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>46</td>
<td class=xl77 x:num>67</td>
<td class=xl76 x:num>32</td>
<td class=xl77 x:num>31</td>
<td class=xl76 x:num>39</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>9</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>5</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>7</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>1</td>
<td class=xl60 x:num
x:fmla="=F250+G250+H250+I250+J250+K250+L250+M250+N250+O250+P250+Q250+R250+S250+T250">277</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. COMUNICACIÓN Y
DOCUMENTA.</td>
<td class=xl48 x:num x:fmla="=D251+D253+D255+D257+D259">609</td>
<td class=xl24>DIPLOMADO EN BIBLIOTECONOMÍA Y DOCUMENTACIÓN</td>
<td class=xl51 x:num x:fmla="=U251+U252">83</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F251+G251+H251+I251+J251+K251+L251+M251+N251+O251+P251+Q251+R251+S251+T251">39</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN BIBLIOTECONOMÍA Y DOCUMENTACIÓN</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F252+G252+H252+I252+J252+K252+L252+M252+N252+O252+P252+Q252+R252+S252+T252">44</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN COMUNICACIÓN AUDIOVISUAL</td>
<td class=xl52 x:num x:fmla="=U253+U254">130</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>18</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F253+G253+H253+I253+J253+K253+L253+M253+N253+O253+P253+Q253+R253+S253+T253">63</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN COMUNICACIÓN AUDIOVISUAL</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F254+G254+H254+I254+J254+K254+L254+M254+N254+O254+P254+Q254+R254+S254+T254">67</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INFORMACIÓN Y DOCUMENTACIÓN</td>
<td class=xl48 x:num x:fmla="=U255+U256">148</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F255+G255+H255+I255+J255+K255+L255+M255+N255+O255+P255+Q255+R255+S255+T255">58</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN INFORMACIÓN Y DOCUMENTACIÓN</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F256+G256+H256+I256+J256+K256+L256+M256+N256+O256+P256+Q256+R256+S256+T256">90</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN COMUNICACIÓN AUDIOVISUAL</td>
<td class=xl52 x:num x:fmla="=U257+U258">115</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>7</td>
<td class=xl58 x:num
x:fmla="=F257+G257+H257+I257+J257+K257+L257+M257+N257+O257+P257+Q257+R257+S257+T257">73</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN COMUNICACIÓN AUDIOVISUAL</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F258+G258+H258+I258+J258+K258+L258+M258+N258+O258+P258+Q258+R258+S258+T258">42</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN DOCUMENTACIÓN</td>
<td class=xl51 x:num x:fmla="=U259+U260">133</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F259+G259+H259+I259+J259+K259+L259+M259+N259+O259+P259+Q259+R259+S259+T259">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>LICENCIADO EN DOCUMENTACIÓN</td>
<td class=xl86> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>12</td>
<td class=xl74 x:num>13</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>6</td>
<td class=xl75 x:num>5</td>
<td class=xl74 x:num>9</td>
<td class=xl75 x:num>7</td>
<td class=xl74 x:num>3</td>
<td class=xl75 x:num>4</td>
<td class=xl74 x:num>5</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>15</td>
<td class=xl59 x:num
x:fmla="=F260+G260+H260+I260+J260+K260+L260+M260+N260+O260+P260+Q260+R260+S260+T260">87</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>F. DE CIENCIAS DE LA SALUD</td>
<td class=xl48 x:num x:fmla="=D261+D263+D265+D267+D269+D271">934</td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA</td>
<td class=xl52 x:num x:fmla="=U261+U262">239</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F261+G261+H261+I261+J261+K261+L261+M261+N261+O261+P261+Q261+R261+S261+T261">60</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>49</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>20</td>
<td class=xl73 x:num>15</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>16</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>14</td>
<td class=xl58 x:num
x:fmla="=F262+G262+H262+I262+J262+K262+L262+M262+N262+O262+P262+Q262+R262+S262+T262">179</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN FISIOTERAPIA</td>
<td class=xl51 x:num x:fmla="=U263+U264">108</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F263+G263+H263+I263+J263+K263+L263+M263+N263+O263+P263+Q263+R263+S263+T263">53</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN FISIOTERAPIA</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>18</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F264+G264+H264+I264+J264+K264+L264+M264+N264+O264+P264+Q264+R264+S264+T264">55</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN TERAPIA OCUPACIONAL</td>
<td class=xl52 x:num x:fmla="=U265+U266">87</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F265+G265+H265+I265+J265+K265+L265+M265+N265+O265+P265+Q265+R265+S265+T265">16</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN TERAPIA OCUPACIONAL</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>27</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F266+G266+H266+I266+J266+K266+L266+M266+N266+O266+P266+Q266+R266+S266+T266">71</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ENFERMERÍA</td>
<td class=xl48 x:num x:fmla="=U267+U268">274</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>29</td>
<td class=xl71 x:num>20</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F267+G267+H267+I267+J267+K267+L267+M267+N267+O267+P267+Q267+R267+S267+T267">69</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ENFERMERÍA</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>67</td>
<td class=xl71 x:num>49</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>17</td>
<td class=xl56 x:num
x:fmla="=F268+G268+H268+I268+J268+K268+L268+M268+N268+O268+P268+Q268+R268+S268+T268">205</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FISIOTERAPIA</td>
<td class=xl52 x:num x:fmla="=U269+U270">110</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>15</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F269+G269+H269+I269+J269+K269+L269+M269+N269+O269+P269+Q269+R269+S269+T269">50</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN FISIOTERAPIA</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F270+G270+H270+I270+J270+K270+L270+M270+N270+O270+P270+Q270+R270+S270+T270">60</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN TERAPIA OCUPACIONAL</td>
<td class=xl51 x:num x:fmla="=U271+U272">116</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F271+G271+H271+I271+J271+K271+L271+M271+N271+O271+P271+Q271+R271+S271+T271">22</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>GRADO EN TERAPIA OCUPACIONAL</td>
<td class=xl86> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>23</td>
<td class=xl75 x:num>17</td>
<td class=xl74 x:num>6</td>
<td class=xl75 x:num>12</td>
<td class=xl74 x:num>13</td>
<td class=xl75 x:num>3</td>
<td class=xl74 x:num>2</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>3</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>4</td>
<td class=xl59 x:num
x:fmla="=F272+G272+H272+I272+J272+K272+L272+M272+N272+O272+P272+Q272+R272+S272+T272">94</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. CIENCIAS DEL TRABAJO</td>
<td class=xl48 x:num="2082" x:fmla="=D273+D275+D277">2.082</td>
<td class=xl31>DIPLOMADO EN RELACIONES LABORALES</td>
<td class=xl52 x:num="1011" x:fmla="=U273+U274">1.011</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>25</td>
<td class=xl73 x:num>37</td>
<td class=xl72 x:num>40</td>
<td class=xl73 x:num>54</td>
<td class=xl72 x:num>54</td>
<td class=xl73 x:num>32</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>23</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>29</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>14</td>
<td class=xl58 x:num
x:fmla="=F273+G273+H273+I273+J273+K273+L273+M273+N273+O273+P273+Q273+R273+S273+T273">366</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN RELACIONES LABORALES</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>43</td>
<td class=xl73 x:num>84</td>
<td class=xl72 x:num>96</td>
<td class=xl73 x:num>79</td>
<td class=xl72 x:num>79</td>
<td class=xl73 x:num>47</td>
<td class=xl72 x:num>39</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>73</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>16</td>
<td class=xl58 x:num
x:fmla="=F274+G274+H274+I274+J274+K274+L274+M274+N274+O274+P274+Q274+R274+S274+T274">645</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN RELACIONES LABORALES Y RECURSOS HUMANOS</td>
<td class=xl51 x:num x:fmla="=U275+U276">712</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>41</td>
<td class=xl71 x:num>66</td>
<td class=xl70 x:num>47</td>
<td class=xl71 x:num>40</td>
<td class=xl70 x:num>21</td>
<td class=xl71 x:num>24</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>15</td>
<td class=xl56 x:num
x:fmla="=F275+G275+H275+I275+J275+K275+L275+M275+N275+O275+P275+Q275+R275+S275+T275">292</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN RELACIONES LABORALES Y RECURSOS HUMANOS</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>65</td>
<td class=xl71 x:num>136</td>
<td class=xl70 x:num>69</td>
<td class=xl71 x:num>45</td>
<td class=xl70 x:num>27</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>14</td>
<td class=xl56 x:num
x:fmla="=F276+G276+H276+I276+J276+K276+L276+M276+N276+O276+P276+Q276+R276+S276+T276">420</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS DEL TRABAJO</td>
<td class=xl52 x:num x:fmla="=U277+U278">359</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>18</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>16</td>
<td class=xl58 x:num
x:fmla="=F277+G277+H277+I277+J277+K277+L277+M277+N277+O277+P277+Q277+R277+S277+T277">112</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN CIENCIAS DEL TRABAJO</td>
<td class=xl86> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>17</td>
<td class=xl76 x:num>44</td>
<td class=xl77 x:num>40</td>
<td class=xl76 x:num>38</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>18</td>
<td class=xl77 x:num>12</td>
<td class=xl76 x:num>5</td>
<td class=xl77 x:num>8</td>
<td class=xl76 x:num>15</td>
<td class=xl77 x:num>9</td>
<td class=xl76 x:num>22</td>
<td class=xl60 x:num
x:fmla="=F278+G278+H278+I278+J278+K278+L278+M278+N278+O278+P278+Q278+R278+S278+T278">247</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FACULTAD DE TRABAJO SOCIAL</td>
<td class=xl48 x:num x:fmla="=D279+D281">681</td>
<td class=xl24>DIPLOMADO EN TRABAJO SOCIAL</td>
<td class=xl48 x:num x:fmla="=U279+U280">331</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>12</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>5</td>
<td class=xl56 x:num
x:fmla="=F279+G279+H279+I279+J279+K279+L279+M279+N279+O279+P279+Q279+R279+S279+T279">90</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN TRABAJO SOCIAL</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>51</td>
<td class=xl71 x:num>35</td>
<td class=xl70 x:num>20</td>
<td class=xl71 x:num>21</td>
<td class=xl70 x:num>27</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>10</td>
<td class=xl70 x:num>16</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>10</td>
<td class=xl56 x:num
x:fmla="=F280+G280+H280+I280+J280+K280+L280+M280+N280+O280+P280+Q280+R280+S280+T280">241</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN TRABAJO SOCIAL</td>
<td class=xl52 x:num x:fmla="=U281+U282">350</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>12</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl58 x:num
x:fmla="=F281+G281+H281+I281+J281+K281+L281+M281+N281+O281+P281+Q281+R281+S281+T281">72</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>GRADO EN TRABAJO SOCIAL</td>
<td class=xl49> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>44</td>
<td class=xl77 x:num>81</td>
<td class=xl76 x:num>27</td>
<td class=xl77 x:num>29</td>
<td class=xl76 x:num>32</td>
<td class=xl77 x:num>14</td>
<td class=xl76 x:num>11</td>
<td class=xl77 x:num>6</td>
<td class=xl76 x:num>6</td>
<td class=xl77 x:num>9</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>3</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>10</td>
<td class=xl60 x:num
x:fmla="=F282+G282+H282+I282+J282+K282+L282+M282+N282+O282+P282+Q282+R282+S282+T282">278</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FAC. EDUCACION
HUMANIDAD.CEUTA</td>
<td class=xl48 x:num
x:fmla="=D283+D285+D287+D289+D291+D293+D295+D297+D299+D301+D303+D305+D307+D309+D311">820</td>
<td class=xl24>DIPLOMADO EN CIENCIAS EMPRESARIALES "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U283+U284">62</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>9</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F283+G283+H283+I283+J283+K283+L283+M283+N283+O283+P283+Q283+R283+S283+T283">34</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN CIENCIAS EMPRESARIALES "CEUTA"</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F284+G284+H284+I284+J284+K284+L284+M284+N284+O284+P284+Q284+R284+S284+T284">28</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS (CEUTA)</td>
<td class=xl52 x:num x:fmla="=U285+U286">69</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F285+G285+H285+I285+J285+K285+L285+M285+N285+O285+P285+Q285+R285+S285+T285">41</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS (CEUTA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F286+G286+H286+I286+J286+K286+L286+M286+N286+O286+P286+Q286+R286+S286+T286">28</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN EDUCACIÓN SOCIAL (CEUTA)</td>
<td class=xl51 x:num x:fmla="=U287+U288">85</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F287+G287+H287+I287+J287+K287+L287+M287+N287+O287+P287+Q287+R287+S287+T287">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN EDUCACIÓN SOCIAL (CEUTA)</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>8</td>
<td class=xl69 x:num>9</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>7</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>3</td>
<td class=xl57 x:num
x:fmla="=F288+G288+H288+I288+J288+K288+L288+M288+N288+O288+P288+Q288+R288+S288+T288">61</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl52> </td>
<td class=xl31>GRADO EN INGENIERÍA INFORMÁTICA (CEUTA)</td>
<td class=xl52 x:num x:fmla="=U289+U290">20</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F289+G289+H289+I289+J289+K289+L289+M289+N289+O289+P289+Q289+R289+S289+T289">16</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl52> </td>
<td class=xl31>GRADO EN INGENIERÍA INFORMÁTICA (CEUTA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F290+G290+H290+I290+J290+K290+L290+M290+N290+O290+P290+Q290+R290+S290+T290">4</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (CEUTA)</td>
<td class=xl51 x:num x:fmla="=U291+U292">90</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F291+G291+H291+I291+J291+K291+L291+M291+N291+O291+P291+Q291+R291+S291+T291">9</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (CEUTA)</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>11</td>
<td class=xl69 x:num>17</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>3</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F292+G292+H292+I292+J292+K292+L292+M292+N292+O292+P292+Q292+R292+S292+T292">81</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (CEUTA)</td>
<td class=xl52 x:num x:fmla="=U293+U294">152</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F293+G293+H293+I293+J293+K293+L293+M293+N293+O293+P293+Q293+R293+S293+T293">71</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (CEUTA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>30</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F294+G294+H294+I294+J294+K294+L294+M294+N294+O294+P294+Q294+R294+S294+T294">81</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>INGENIERO TÉCNICO EN INFORMÁTICA DE GESTIÓN "CEUTA"</td>
<td class=xl51 x:num x:fmla="=U295+U296">20</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>4</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F295+G295+H295+I295+J295+K295+L295+M295+N295+O295+P295+Q295+R295+S295+T295">18</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>INGENIERO TÉCNICO EN INFORMÁTICA DE GESTIÓN "CEUTA"</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F296+G296+H296+I296+J296+K296+L296+M296+N296+O296+P296+Q296+R296+S296+T296">2</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN PSICOPEDAGOGÍA "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U297+U298">39</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F297+G297+H297+I297+J297+K297+L297+M297+N297+O297+P297+Q297+R297+S297+T297">13</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN PSICOPEDAGOGÍA "CEUTA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F298+G298+H298+I298+J298+K298+L298+M298+N298+O298+P298+Q298+R298+S298+T298">26</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE "CEUTA"</td>
<td class=xl51 x:num x:fmla="=U299+U300">9</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F299+G299+H299+I299+J299+K299+L299+M299+N299+O299+P299+Q299+R299+S299+T299">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE "CEUTA"</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>2</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F300+G300+H300+I300+J300+K300+L300+M300+N300+O300+P300+Q300+R300+S300+T300">8</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U301+U302">23</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F301+G301+H301+I301+J301+K301+L301+M301+N301+O301+P301+Q301+R301+S301+T301">3</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL "CEUTA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F302+G302+H302+I302+J302+K302+L302+M302+N302+O302+P302+Q302+R302+S302+T302">20</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA "CEUTA"</td>
<td class=xl51 x:num x:fmla="=U303+U304">71</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>10</td>
<td class=xl69 x:num>8</td>
<td class=xl68 x:num>9</td>
<td class=xl69 x:num>6</td>
<td class=xl68 x:num>7</td>
<td class=xl69 x:num>5</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>6</td>
<td class=xl69 x:num>4</td>
<td class=xl68 x:num>2</td>
<td class=xl57 x:num
x:fmla="=F303+G303+H303+I303+J303+K303+L303+M303+N303+O303+P303+Q303+R303+S303+T303">60</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA "CEUTA"</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>3</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F304+G304+H304+I304+J304+K304+L304+M304+N304+O304+P304+Q304+R304+S304+T304">11</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U305+U306">90</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F305+G305+H305+I305+J305+K305+L305+M305+N305+O305+P305+Q305+R305+S305+T305">5</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL "CEUTA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F306+G306+H306+I306+J306+K306+L306+M306+N306+O306+P306+Q306+R306+S306+T306">85</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL "CEUTA"</td>
<td class=xl51 x:num x:fmla="=U307+U308">7</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F307+G307+H307+I307+J307+K307+L307+M307+N307+O307+P307+Q307+R307+S307+T307">5</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL "CEUTA"</td>
<td class=xl51> </td>
<td class=xl32>Mujer</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl57 x:num
x:fmla="=F308+G308+H308+I308+J308+K308+L308+M308+N308+O308+P308+Q308+R308+S308+T308">2</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U309+U310">62</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F309+G309+H309+I309+J309+K309+L309+M309+N309+O309+P309+Q309+R309+S309+T309">19</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA "CEUTA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F310+G310+H310+I310+J310+K310+L310+M310+N310+O310+P310+Q310+R310+S310+T310">43</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl32>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA "CEUTA"</td>
<td class=xl51 x:num x:fmla="=U311+U312">21</td>
<td class=xl32>Hombre</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>1</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>0</td>
<td class=xl69 x:num>0</td>
<td class=xl68 x:num>2</td>
<td class=xl69 x:num>1</td>
<td class=xl68 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F311+G311+H311+I311+J311+K311+L311+M311+N311+O311+P311+Q311+R311+S311+T311">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl87>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA "CEUTA"</td>
<td class=xl86> </td>
<td class=xl87>Mujer</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>1</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>0</td>
<td class=xl89 x:num>0</td>
<td class=xl88 x:num>2</td>
<td class=xl89 x:num>1</td>
<td class=xl88 x:num>1</td>
<td class=xl89 x:num>2</td>
<td class=xl88 x:num>1</td>
<td class=xl89 x:num>2</td>
<td class=xl88 x:num>2</td>
<td class=xl89 x:num>1</td>
<td class=xl88 x:num>2</td>
<td class=xl90 x:num
x:fmla="=F312+G312+H312+I312+J312+K312+L312+M312+N312+O312+P312+Q312+R312+S312+T312">15</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FAC. EDUCACION
HUMANID.MELILLA</td>
<td class=xl48 x:num
x:fmla="=D313+D315+D317+D319+D321+D323+D325+D327+D329+D331+D333+D335">579</td>
<td class=xl31>GRADO EN EDUCACIÓN SOCIAL (MELILLA)</td>
<td class=xl52 x:num x:fmla="=U313+U314">48</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F313+G313+H313+I313+J313+K313+L313+M313+N313+O313+P313+Q313+R313+S313+T313">10</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN EDUCACIÓN SOCIAL (MELILLA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F314+G314+H314+I314+J314+K314+L314+M314+N314+O314+P314+Q314+R314+S314+T314">38</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (MELILLA)</td>
<td class=xl48 x:num x:fmla="=U315+U316">67</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F315+G315+H315+I315+J315+K315+L315+M315+N315+O315+P315+Q315+R315+S315+T315">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (MELILLA)</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F316+G316+H316+I316+J316+K316+L316+M316+N316+O316+P316+Q316+R316+S316+T316">61</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (MELILLA)</td>
<td class=xl52 x:num x:fmla="=U317+U318">127</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>11</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F317+G317+H317+I317+J317+K317+L317+M317+N317+O317+P317+Q317+R317+S317+T317">51</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (MELILLA)</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F318+G318+H318+I318+J318+K318+L318+M318+N318+O318+P318+Q318+R318+S318+T318">76</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN PSICOPEDAGOGÍA "MELILLA"</td>
<td class=xl51 x:num x:fmla="=U319+U320">82</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F319+G319+H319+I319+J319+K319+L319+M319+N319+O319+P319+Q319+R319+S319+T319">22</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>LICENCIADO EN PSICOPEDAGOGÍA "MELILLA"</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>4</td>
<td class=xl56 x:num
x:fmla="=F320+G320+H320+I320+J320+K320+L320+M320+N320+O320+P320+Q320+R320+S320+T320">60</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO (ESPECIALIDAD DE EDUCACIÓN INFANTIL)
"MELILLA"</td>
<td class=xl52 x:num x:fmla="=U321+U322">1</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F321+G321+H321+I321+J321+K321+L321+M321+N321+O321+P321+Q321+R321+S321+T321">0</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO (ESPECIALIDAD DE EDUCACIÓN INFANTIL)
"MELILLA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F322+G322+H322+I322+J322+K322+L322+M322+N322+O322+P322+Q322+R322+S322+T322">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE
"MELILLA"</td>
<td class=xl51 x:num x:fmla="=U323+U324">9</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F323+G323+H323+I323+J323+K323+L323+M323+N323+O323+P323+Q323+R323+S323+T323">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE
"MELILLA"</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F324+G324+H324+I324+J324+K324+L324+M324+N324+O324+P324+Q324+R324+S324+T324">8</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U325+U326">19</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F325+G325+H325+I325+J325+K325+L325+M325+N325+O325+P325+Q325+R325+S325+T325">1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL "MELILLA"</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F326+G326+H326+I326+J326+K326+L326+M326+N326+O326+P326+Q326+R326+S326+T326">18</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA "MELILLA"</td>
<td class=xl48 x:num x:fmla="=U327+U328">48</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F327+G327+H327+I327+J327+K327+L327+M327+N327+O327+P327+Q327+R327+S327+T327">37</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA "MELILLA"</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F328+G328+H328+I328+J328+K328+L328+M328+N328+O328+P328+Q328+R328+S328+T328">11</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U329+U330">58</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F329+G329+H329+I329+J329+K329+L329+M329+N329+O329+P329+Q329+R329+S329+T329">2</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL "MELILLA"</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F330+G330+H330+I330+J330+K330+L330+M330+N330+O330+P330+Q330+R330+S330+T330">56</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL "MELILLA"</td>
<td class=xl51 x:num x:fmla="=U331+U332">7</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F331+G331+H331+I331+J331+K331+L331+M331+N331+O331+P331+Q331+R331+S331+T331">2</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL "MELILLA"</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F332+G332+H332+I332+J332+K332+L332+M332+N332+O332+P332+Q332+R332+S332+T332">5</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U333+U334">86</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>5</td>
<td class=xl58 x:num
x:fmla="=F333+G333+H333+I333+J333+K333+L333+M333+N333+O333+P333+Q333+R333+S333+T333">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA "MELILLA"</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F334+G334+H334+I334+J334+K334+L334+M334+N334+O334+P334+Q334+R334+S334+T334">62</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA "MELILLA"</td>
<td class=xl51 x:num x:fmla="=U335+U336">27</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F335+G335+H335+I335+J335+K335+L335+M335+N335+O335+P335+Q335+R335+S335+T335">7</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA "MELILLA"</td>
<td class=xl49> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>3</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>3</td>
<td class=xl74 x:num>5</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>3</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>1</td>
<td class=xl59 x:num
x:fmla="=F336+G336+H336+I336+J336+K336+L336+M336+N336+O336+P336+Q336+R336+S336+T336">20</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>F. CC SOCIALES DE MELILLA</td>
<td class=xl48 x:num x:fmla="=D337+D339+D341+D343+D345+D347">250</td>
<td class=xl31>DIPLOMADO EN CIENCIAS EMPRESARIALES "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U337+U338">97</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F337+G337+H337+I337+J337+K337+L337+M337+N337+O337+P337+Q337+R337+S337+T337">40</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN CIENCIAS EMPRESARIALES "MELILLA"</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>10</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F338+G338+H338+I338+J338+K338+L338+M338+N338+O338+P338+Q338+R338+S338+T338">57</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN GESTIÓN Y ADMINISTRACIÓN PÚBLICA
"MELILLA"</td>
<td class=xl48 x:num x:fmla="=U339+U340">17</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F339+G339+H339+I339+J339+K339+L339+M339+N339+O339+P339+Q339+R339+S339+T339">10</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN GESTIÓN Y ADMINISTRACIÓN PÚBLICA
"MELILLA"</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F340+G340+H340+I340+J340+K340+L340+M340+N340+O340+P340+Q340+R340+S340+T340">7</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN RELACIONES LABORALES "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U341+U342">23</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F341+G341+H341+I341+J341+K341+L341+M341+N341+O341+P341+Q341+R341+S341+T341">8</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN RELACIONES LABORALES "MELILLA"</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F342+G342+H342+I342+J342+K342+L342+M342+N342+O342+P342+Q342+R342+S342+T342">15</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS (MELILLA)</td>
<td class=xl51 x:num x:fmla="=U343+U344">82</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F343+G343+H343+I343+J343+K343+L343+M343+N343+O343+P343+Q343+R343+S343+T343">46</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS (MELILLA)</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>14</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F344+G344+H344+I344+J344+K344+L344+M344+N344+O344+P344+Q344+R344+S344+T344">36</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN GESTIÓN Y ADMINISTRACIÓN PÚBLICA (MELILLA)</td>
<td class=xl52 x:num x:fmla="=U345+U346">14</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F345+G345+H345+I345+J345+K345+L345+M345+N345+O345+P345+Q345+R345+S345+T345">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN GESTIÓN Y ADMINISTRACIÓN PÚBLICA (MELILLA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F346+G346+H346+I346+J346+K346+L346+M346+N346+O346+P346+Q346+R346+S346+T346">8</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN RELACIONES LABORALES Y RECURSOS HUMANOS (MELILLA)</td>
<td class=xl51 x:num x:fmla="=U347+U348">17</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F347+G347+H347+I347+J347+K347+L347+M347+N347+O347+P347+Q347+R347+S347+T347">6</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>GRADO EN RELACIONES LABORALES Y RECURSOS HUMANOS (MELILLA)</td>
<td class=xl49> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>0</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>1</td>
<td class=xl75 x:num>0</td>
<td class=xl74 x:num>0</td>
<td class=xl59 x:num
x:fmla="=F348+G348+H348+I348+J348+K348+L348+M348+N348+O348+P348+Q348+R348+S348+T348">11</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>F. DE ENFERMERÍA DE MELILLA</td>
<td class=xl48 x:num x:fmla="=D349+D351">221</td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA "MELILLA"</td>
<td class=xl52 x:num x:fmla="=U349+U350">97</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F349+G349+H349+I349+J349+K349+L349+M349+N349+O349+P349+Q349+R349+S349+T349">19</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA "MELILLA"</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>23</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>4</td>
<td class=xl58 x:num
x:fmla="=F350+G350+H350+I350+J350+K350+L350+M350+N350+O350+P350+Q350+R350+S350+T350">78</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ENFERMERÍA (MELILLA)</td>
<td class=xl48 x:num x:fmla="=U351+U352">124</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>9</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F351+G351+H351+I351+J351+K351+L351+M351+N351+O351+P351+Q351+R351+S351+T351">30</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>GRADO EN ENFERMERÍA (MELILLA)</td>
<td class=xl53> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>18</td>
<td class=xl75 x:num>11</td>
<td class=xl74 x:num>6</td>
<td class=xl75 x:num>13</td>
<td class=xl74 x:num>7</td>
<td class=xl75 x:num>10</td>
<td class=xl74 x:num>5</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>5</td>
<td class=xl75 x:num>3</td>
<td class=xl74 x:num>2</td>
<td class=xl75 x:num>1</td>
<td class=xl74 x:num>4</td>
<td class=xl75 x:num>4</td>
<td class=xl74 x:num>4</td>
<td class=xl59 x:num
x:fmla="=F352+G352+H352+I352+J352+K352+L352+M352+N352+O352+P352+Q352+R352+S352+T352">94</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>F. DE CC. DE LA SALUD CEUTA</td>
<td class=xl48 x:num x:fmla="=D353+D355">525</td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA "CEUTA"</td>
<td class=xl52 x:num x:fmla="=U353+U354">266</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>21</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F353+G353+H353+I353+J353+K353+L353+M353+N353+O353+P353+Q353+R353+S353+T353">78</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>DIPLOMADO EN ENFERMERÍA "CEUTA"</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>25</td>
<td class=xl72 x:num>24</td>
<td class=xl73 x:num>24</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>12</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>12</td>
<td class=xl58 x:num
x:fmla="=F354+G354+H354+I354+J354+K354+L354+M354+N354+O354+P354+Q354+R354+S354+T354">188</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ENFERMERÍA (CEUTA)</td>
<td class=xl51 x:num x:fmla="=U355+U356">259</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>6</td>
<td class=xl71 x:num>15</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F355+G355+H355+I355+J355+K355+L355+M355+N355+O355+P355+Q355+R355+S355+T355">74</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl44>GRADO EN ENFERMERÍA (CEUTA)</td>
<td class=xl86> </td>
<td class=xl44>Mujer</td>
<td class=xl74 x:num>32</td>
<td class=xl75 x:num>34</td>
<td class=xl74 x:num>23</td>
<td class=xl75 x:num>21</td>
<td class=xl74 x:num>29</td>
<td class=xl75 x:num>10</td>
<td class=xl74 x:num>9</td>
<td class=xl75 x:num>6</td>
<td class=xl74 x:num>6</td>
<td class=xl75 x:num>3</td>
<td class=xl74 x:num>2</td>
<td class=xl75 x:num>2</td>
<td class=xl74 x:num>3</td>
<td class=xl75 x:num>3</td>
<td class=xl74 x:num>2</td>
<td class=xl59 x:num
x:fmla="=F356+G356+H356+I356+J356+K356+L356+M356+N356+O356+P356+Q356+R356+S356+T356">185</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>CENTRO PROF. INMACULADAC
CONC.</td>
<td class=xl48 x:num="1313"
x:fmla="=D357+D359+D361+D363+D365+D367+D369+D371+D373">1.313</td>
<td class=xl31>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (LA INMACULADA)</td>
<td class=xl52 x:num x:fmla="=U357+U358">280</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>9</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F357+G357+H357+I357+J357+K357+L357+M357+N357+O357+P357+Q357+R357+S357+T357">27</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN MAESTRO DE EDUCACIÓN INFANTIL (LA INMACULADA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>44</td>
<td class=xl73 x:num>73</td>
<td class=xl72 x:num>47</td>
<td class=xl73 x:num>33</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>13</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>3</td>
<td class=xl58 x:num
x:fmla="=F358+G358+H358+I358+J358+K358+L358+M358+N358+O358+P358+Q358+R358+S358+T358">253</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (LA INMACULADA)</td>
<td class=xl51 x:num x:fmla="=U359+U360">458</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>39</td>
<td class=xl71 x:num>56</td>
<td class=xl70 x:num>53</td>
<td class=xl71 x:num>25</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>7</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F359+G359+H359+I359+J359+K359+L359+M359+N359+O359+P359+Q359+R359+S359+T359">223</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN MAESTRO EN EDUCACIÓN PRIMARIA (LA INMACULADA)</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>40</td>
<td class=xl71 x:num>76</td>
<td class=xl70 x:num>45</td>
<td class=xl71 x:num>26</td>
<td class=xl70 x:num>13</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>4</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F360+G360+H360+I360+J360+K360+L360+M360+N360+O360+P360+Q360+R360+S360+T360">235</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE (LA INMACULADA)</td>
<td class=xl52 x:num x:fmla="=U361+U362">33</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F361+G361+H361+I361+J361+K361+L361+M361+N361+O361+P361+Q361+R361+S361+T361">9</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE AUDICIÓN Y LENGUAJE (LA INMACULADA)</td>
<td class=xl51> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>11</td>
<td class=xl73 x:num>7</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F362+G362+H362+I362+J362+K362+L362+M362+N362+O362+P362+Q362+R362+S362+T362">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL (LA INMACULADA)</td>
<td class=xl48 x:num x:fmla="=U363+U364">57</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F363+G363+H363+I363+J363+K363+L363+M363+N363+O363+P363+Q363+R363+S363+T363">16</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN ESPECIAL (LA INMACULADA)</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>12</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F364+G364+H364+I364+J364+K364+L364+M364+N364+O364+P364+Q364+R364+S364+T364">41</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA (LA INMACULADA)</td>
<td class=xl52 x:num x:fmla="=U365+U366">156</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>25</td>
<td class=xl73 x:num>26</td>
<td class=xl72 x:num>13</td>
<td class=xl73 x:num>17</td>
<td class=xl72 x:num>8</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F365+G365+H365+I365+J365+K365+L365+M365+N365+O365+P365+Q365+R365+S365+T365">125</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN FÍSICA (LA INMACULADA)</td>
<td class=xl48> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F366+G366+H366+I366+J366+K366+L366+M366+N366+O366+P366+Q366+R366+S366+T366">31</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL (LA INMACULADA)</td>
<td class=xl51 x:num x:fmla="=U367+U368">133</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F367+G367+H367+I367+J367+K367+L367+M367+N367+O367+P367+Q367+R367+S367+T367">16</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN INFANTIL (LA INMACULADA)</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>22</td>
<td class=xl71 x:num>20</td>
<td class=xl70 x:num>15</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>10</td>
<td class=xl71 x:num>11</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F368+G368+H368+I368+J368+K368+L368+M368+N368+O368+P368+Q368+R368+S368+T368">117</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL (LA INMACULADA)</td>
<td class=xl52 x:num x:fmla="=U369+U370">49</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>6</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F369+G369+H369+I369+J369+K369+L369+M369+N369+O369+P369+Q369+R369+S369+T369">24</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE EDUCACIÓN MUSICAL (LA INMACULADA)</td>
<td class=xl52> </td>
<td class=xl31>Mujer</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>7</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>4</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F370+G370+H370+I370+J370+K370+L370+M370+N370+O370+P370+Q370+R370+S370+T370">25</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA (LA INMACULADA)</td>
<td class=xl51 x:num x:fmla="=U371+U372">103</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>13</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>4</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F371+G371+H371+I371+J371+K371+L371+M371+N371+O371+P371+Q371+R371+S371+T371">35</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>MAESTRO ESPECIALIDAD DE EDUCACIÓN PRIMARIA (LA INMACULADA)</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>14</td>
<td class=xl71 x:num>18</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F372+G372+H372+I372+J372+K372+L372+M372+N372+O372+P372+Q372+R372+S372+T372">68</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA (LA INMACULADA)</td>
<td class=xl52 x:num x:fmla="=U373+U374">44</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>2</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F373+G373+H373+I373+J373+K373+L373+M373+N373+O373+P373+Q373+R373+S373+T373">13</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>MAESTRO ESPECIALIDAD DE LENGUA EXTRANJERA (LA INMACULADA)</td>
<td class=xl86> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>6</td>
<td class=xl76 x:num>4</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>4</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>2</td>
<td class=xl60 x:num
x:fmla="=F374+G374+H374+I374+J374+K374+L374+M374+N374+O374+P374+Q374+R374+S374+T374">31</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>CENTRO DE ENFERMERÍA DEL
S.A.S</td>
<td class=xl48 x:num x:fmla="=D375+D377">182</td>
<td class=xl24>DIPLOMADO EN ENFERMERÍA (VIRGEN DE LAS NIEVES)</td>
<td class=xl48 x:num x:fmla="=U375+U376">69</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F375+G375+H375+I375+J375+K375+L375+M375+N375+O375+P375+Q375+R375+S375+T375">25</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>DIPLOMADO EN ENFERMERÍA (VIRGEN DE LAS NIEVES)</td>
<td class=xl52> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>24</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>5</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>3</td>
<td class=xl56 x:num
x:fmla="=F376+G376+H376+I376+J376+K376+L376+M376+N376+O376+P376+Q376+R376+S376+T376">44</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>GRADO EN ENFERMERÍA (VIRGEN DE LA NIEVES)</td>
<td class=xl52 x:num x:fmla="=U377+U378">113</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>5</td>
<td class=xl73 x:num>5</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>3</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>2</td>
<td class=xl58 x:num
x:fmla="=F377+G377+H377+I377+J377+K377+L377+M377+N377+O377+P377+Q377+R377+S377+T377">26</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>GRADO EN ENFERMERÍA (VIRGEN DE LA NIEVES)</td>
<td class=xl49> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>17</td>
<td class=xl77 x:num>15</td>
<td class=xl76 x:num>9</td>
<td class=xl77 x:num>14</td>
<td class=xl76 x:num>8</td>
<td class=xl77 x:num>3</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>5</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>6</td>
<td class=xl60 x:num
x:fmla="=F378+G378+H378+I378+J378+K378+L378+M378+N378+O378+P378+Q378+R378+S378+T378">87</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'>FACS. EMPRESARIALES Y DERECHO</td>
<td class=xl48 x:num x:fmla="=D379+D381">860</td>
<td class=xl24>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS Y DERECHO</td>
<td class=xl52 x:num x:fmla="=U379+U380">271</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>44</td>
<td class=xl71 x:num>52</td>
<td class=xl70 x:num>5</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>1</td>
<td class=xl56 x:num
x:fmla="=F379+G379+H379+I379+J379+K379+L379+M379+N379+O379+P379+Q379+R379+S379+T379">104</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS Y DERECHO</td>
<td class=xl51> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>81</td>
<td class=xl71 x:num>73</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>3</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>1</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F380+G380+H380+I380+J380+K380+L380+M380+N380+O380+P380+Q380+R380+S380+T380">167</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl34 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LDO. EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS Y DERECHO</td>
<td class=xl48 x:num x:fmla="=U381+U382">589</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>34</td>
<td class=xl73 x:num>39</td>
<td class=xl72 x:num>43</td>
<td class=xl73 x:num>34</td>
<td class=xl72 x:num>22</td>
<td class=xl73 x:num>14</td>
<td class=xl72 x:num>6</td>
<td class=xl73 x:num>8</td>
<td class=xl72 x:num>2</td>
<td class=xl73 x:num>1</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>0</td>
<td class=xl58 x:num
x:fmla="=F381+G381+H381+I381+J381+K381+L381+M381+N381+O381+P381+Q381+R381+S381+T381">203</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl35 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LDO. EN ADMINISTRACIÓN Y DIRECCIÓN DE EMPRESAS Y DERECHO</td>
<td class=xl53> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>75</td>
<td class=xl77 x:num>84</td>
<td class=xl76 x:num>60</td>
<td class=xl77 x:num>79</td>
<td class=xl76 x:num>39</td>
<td class=xl77 x:num>19</td>
<td class=xl76 x:num>18</td>
<td class=xl77 x:num>8</td>
<td class=xl76 x:num>3</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>0</td>
<td class=xl60 x:num
x:fmla="=F382+G382+H382+I382+J382+K382+L382+M382+N382+O382+P382+Q382+R382+S382+T382">386</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'>FACS. CC. POLÍTICAS Y DERECHO</td>
<td class=xl48 x:num x:fmla="=D383+D385">508</td>
<td class=xl24>GRADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN Y DERECHO</td>
<td class=xl51 x:num x:fmla="=U383+U384">222</td>
<td class=xl24>Hombre</td>
<td class=xl70 x:num>43</td>
<td class=xl71 x:num>29</td>
<td class=xl70 x:num>11</td>
<td class=xl71 x:num>6</td>
<td class=xl70 x:num>7</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>1</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl56 x:num
x:fmla="=F383+G383+H383+I383+J383+K383+L383+M383+N383+O383+P383+Q383+R383+S383+T383">105</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl24>GRADO EN CIENCIAS POLÍTICAS Y DE LA ADMINISTRACIÓN Y DERECHO</td>
<td class=xl48> </td>
<td class=xl24>Mujer</td>
<td class=xl70 x:num>50</td>
<td class=xl71 x:num>42</td>
<td class=xl70 x:num>8</td>
<td class=xl71 x:num>8</td>
<td class=xl70 x:num>3</td>
<td class=xl71 x:num>2</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>2</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl71 x:num>0</td>
<td class=xl70 x:num>0</td>
<td class=xl56 x:num
x:fmla="=F384+G384+H384+I384+J384+K384+L384+M384+N384+O384+P384+Q384+R384+S384+T384">117</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl36 style='height:12.75pt'> </td>
<td class=xl48> </td>
<td class=xl31>LICENCIADO EN CIENCIAS POLÍTICAS Y DE LA ADMON. Y DERECHO</td>
<td class=xl52 x:num x:fmla="=U385+U386">286</td>
<td class=xl31>Hombre</td>
<td class=xl72 x:num>0</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>17</td>
<td class=xl73 x:num>26</td>
<td class=xl72 x:num>19</td>
<td class=xl73 x:num>16</td>
<td class=xl72 x:num>14</td>
<td class=xl73 x:num>10</td>
<td class=xl72 x:num>9</td>
<td class=xl73 x:num>4</td>
<td class=xl72 x:num>3</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl73 x:num>0</td>
<td class=xl72 x:num>1</td>
<td class=xl58 x:num
x:fmla="=F385+G385+H385+I385+J385+K385+L385+M385+N385+O385+P385+Q385+R385+S385+T385">120</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl37 style='height:12.75pt'> </td>
<td class=xl49> </td>
<td class=xl39>LICENCIADO EN CIENCIAS POLÍTICAS Y DE LA ADMON. Y DERECHO</td>
<td class=xl86> </td>
<td class=xl39>Mujer</td>
<td class=xl76 x:num>0</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>27</td>
<td class=xl77 x:num>30</td>
<td class=xl76 x:num>21</td>
<td class=xl77 x:num>29</td>
<td class=xl76 x:num>23</td>
<td class=xl77 x:num>17</td>
<td class=xl76 x:num>13</td>
<td class=xl77 x:num>2</td>
<td class=xl76 x:num>1</td>
<td class=xl77 x:num>0</td>
<td class=xl76 x:num>2</td>
<td class=xl77 x:num>1</td>
<td class=xl76 x:num>0</td>
<td class=xl60 x:num
x:fmla="=F386+G386+H386+I386+J386+K386+L386+M386+N386+O386+P386+Q386+R386+S386+T386">166</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl78 style='height:12.75pt'>E.INFORMAT-TELEC Y FAC. CC.</td>
<td class=xl57 x:num>46</td>
<td>GRADO EN ING. INFORMÁTICA Y MATEMÁTICAS</td>
<td class=xl48 x:num x:fmla="=U387+U388">46</td>
<td class=xl32>Hombre</td>
<td class=xl91 x:num>22</td>
<td class=xl92 x:num>7</td>
<td class=xl91 x:num>1</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>0</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>0</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>0</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>0</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>0</td>
<td class=xl92 x:num>0</td>
<td class=xl91 x:num>1</td>
<td class=xl57 x:num
x:fmla="=F387+G387+H387+I387+J387+K387+L387+M387+N387+O387+P387+Q387+R387+S387+T387">31</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl79 style='height:12.75pt'> </td>
<td class=xl81> </td>
<td class=xl80>GRADO EN ING. INFORMÁTICA Y MATEMÁTICAS</td>
<td class=xl53> </td>
<td class=xl87>Mujer</td>
<td class=xl93 x:num>10</td>
<td class=xl94 x:num>5</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl94 x:num>0</td>
<td class=xl93 x:num>0</td>
<td class=xl90 x:num
x:fmla="=F388+G388+H388+I388+J388+K388+L388+M388+N388+O388+P388+Q388+R388+S388+T388">15</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl50></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl50></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td class=xl54></td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 style='height:12.75pt'></td>
<td class=xl41></td>
<td></td>
<td class=xl41></td>
<td></td>
<td colspan=15 class=xl41 style='mso-ignore:colspan'></td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=231 style='width:173pt'></td>
<td width=60 style='width:45pt'></td>
<td width=465 style='width:349pt'></td>
<td width=61 style='width:46pt'></td>
<td width=58 style='width:44pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=41 style='width:31pt'></td>
<td width=60 style='width:45pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>
|
html/wolfcanary/io/wolfscript/event/player/ItemDropEvent.html | miningwolf/docs | <!DOCTYPE html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WolfScript API ItemDropEvent</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link href="../../../../../assets/css/docs.css" rel="stylesheet" />
<link href="../../../../../assets/css/github.css" rel="stylesheet" />
<link href="../../../../../assets/fonts/foundation-icons.css" rel="stylesheet" />
<script src="../../../../../assets/js/vendor/modernizr.js"></script>
</head>
<body>
<body class="antialiased hide-extras">
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="/web/index.html"><i class="fi-paw"></i> WolfScript.io</a></h1>
</li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="divider"></li>
<li class='divider'></li>
<li><a href='../../../../../index.html' class=''>Docs</a></li>
<li class='divider'></li>
<li><a href='../../../../../wolfbuk/io/wolfscript/0.html' class=''>WolfBuk API</a></li>
<li class='divider'></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/0.html' class=''>WolfCanary API</a></li>
<li class='divider'></li>
<li><a href='../../../../../wolfnode/globals.html' class=''>WolfNode</a></li>
<li class="divider"></li>
<li><a href='http://github.com/miningwolf/wolfscript ' class=''> <i class="fi-social-github"></i> Github</a></li>
<li class="divider"></li>
<li class="has-form">
<a href="../../../../../GettingStarted.html " class="small button">Getting Started</a>
</li>
</ul>
</section>
</nav>
<ul class="breadcrumbs">
<li><a href='../../../../../index.html'>Docs </a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/0.html'>wolfcanary</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/0.html'>io.wolfscript</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/0.html'>event</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/0.html'>player</a></li>
<li class='current'><a href='#'>ItemDropEvent</a></li>
</ul>
<div class="row">
<div class="large-3 medium-4 columns">
<div class="hide-for-small">
<div class="sidebar">
<nav>
<ul class="side-nav accordion" data-accordion>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/0.html' class=''>wolfcanary API</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/api/0.html' class=''>api</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/backbone/0.html' class=''>backbone</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/bansystem/0.html' class=''>bansystem</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/channels/0.html' class=''>channels</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/chat/0.html' class=''>chat</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/commandsys/0.html' class=''>commandsys</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/config/0.html' class=''>config</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/converter/0.html' class=''>converter</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/database/0.html' class=''>database</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/0.html' class=''>event</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/command/0.html' class=''>event.command</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/entity/0.html' class=''>event.entity</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/player/0.html' class=''>event.player</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/AnvilUseEvent.html'>AnvilUseEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ArmorBrokenEvent.html'>ArmorBrokenEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ArmorStandModifyEvent.html'>ArmorStandModifyEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BanEvent.html'>BanEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BedEnterEvent.html'>BedEnterEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BedExitEvent.html'>BedExitEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BlockDestroyEvent.html'>BlockDestroyEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BlockLeftClickEvent.html'>BlockLeftClickEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BlockPlaceEvent.html'>BlockPlaceEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BlockRightClickEvent.html'>BlockRightClickEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/BookEditEvent.html'>BookEditEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ChatEvent.html'>ChatEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ConnectionEvent.html'>ConnectionEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/CraftEvent.html'>CraftEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/DisconnectionEvent.html'>DisconnectionEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/EatEvent.html'>EatEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/EnchantEvent.html'>EnchantEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/EntityRightClickEvent.html'>EntityRightClickEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ExperienceEvent.html'>ExperienceEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/FoodExhaustionEvent.html'>FoodExhaustionEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/FoodLevelEvent.html'>FoodLevelEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/FoodSaturationEvent.html'>FoodSaturationEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/GameModeChangeEvent.html'>GameModeChangeEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/HealthChangeEvent.html'>HealthChangeEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/HeldItemChangeEvent.html'>HeldItemChangeEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/InventoryEvent.html'>InventoryEvent</a></li>
<li class='active'><a href='../../../../../wolfcanary/io/wolfscript/event/player/ItemDropEvent.html'>ItemDropEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ItemFrameRotateEvent.html'>ItemFrameRotateEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ItemFrameSetItemEvent.html'>ItemFrameSetItemEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ItemPickupEvent.html'>ItemPickupEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ItemUseEvent.html'>ItemUseEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/KickEvent.html'>KickEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/LevelUpEvent.html'>LevelUpEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerArmSwingEvent.html'>PlayerArmSwingEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerDeathEvent.html'>PlayerDeathEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerIdleEvent.html'>PlayerIdleEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerListEvent.html'>PlayerListEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerMoveEvent.html'>PlayerMoveEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerRespawnedEvent.html'>PlayerRespawnedEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PlayerRespawningEvent.html'>PlayerRespawningEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PortalUseEvent.html'>PortalUseEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/PreConnectionEvent.html'>PreConnectionEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ReturnFromIdleEvent.html'>ReturnFromIdleEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/SignChangeEvent.html'>SignChangeEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/SignShowEvent.html'>SignShowEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/SlotClickEvent.html'>SlotClickEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/StatGainedEvent.html'>StatGainedEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/TeleportEvent.html'>TeleportEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/ToolBrokenEvent.html'>ToolBrokenEvent</a></li>
<li><a href='../../../../../wolfcanary/io/wolfscript/event/player/VillagerTradeEvent.html'>VillagerTradeEvent</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/system/0.html' class=''>event.system</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/event/world/0.html' class=''>event.world</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/exceptions/0.html' class=''>exceptions</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/help/0.html' class=''>help</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/kit/0.html' class=''>kit</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/logger/0.html' class=''>logger</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/metrics/0.html' class=''>metrics</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/motd/0.html' class=''>motd</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/permissionsystem/0.html' class=''>permissionsystem</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/plugin/0.html' class=''>plugin</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/serialize/0.html' class=''>serialize</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/tasks/0.html' class=''>tasks</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/user/0.html' class=''>user</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/util/0.html' class=''>util</a></li>
<li class='divider'></li>
<li class='heading'><a href='../../../../../wolfcanary/io/wolfscript/warp/0.html' class=''>warp</a></li>
<li class='divider'></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="large-9 medium-8 columns">
<section class="doc-content">
<h2 id="itemdropevent-__class__">ItemDropEvent <strong>class</strong></h2>
<blockquote>
<p>io.wolfscript.event.player.ItemDropEvent
Extends <a href="../CancelableHook.html"><code>CancelableHook</code></a></p>
<pre><code class="lang-javascript"><span class="hljs-keyword">this</span>.on(<span class="hljs-string">'player.ItemDropEvent'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-params">(e)</span> </span>{ });
</code></pre>
</blockquote>
<hr>
<h3 id="class-overview">Class Overview</h3>
<p>Item Hook. Contains EntityItem and Player</p>
<table>
<thead>
<tr>
<th>Method</th>
<th style="text-align:left">Type </th>
</tr>
</thead>
<tbody>
<tr>
<td> readonly property <strong>Item</strong> <br> <em>Get: Gets the <a href="../../api/entity/EntityItem.html"><code>EntityItem</code></a></em></td>
<td style="text-align:left"><a href="../../api/entity/EntityItem.html"><code>EntityItem</code></a></td>
</tr>
<tr>
<td> readonly property <strong>Player</strong> <br> <em>Get: Gets the <code>Player</code></em></td>
<td style="text-align:left"><code>Player</code></td>
</tr>
<tr>
<td>final function <strong>toString</strong>() <br> <em>toString method</em></td>
<td style="text-align:left"><code>String</code></td>
</tr>
<tr>
<td></td>
<td style="text-align:left"></td>
</tr>
<tr>
<td><strong>Inherited items from <a href="../CancelableHook.html"><code>CancelableHook</code></a></strong></td>
<td style="text-align:left"></td>
</tr>
<tr>
<td> function <strong>call</strong>() <br> <em>Calls a Hook if not already executed</em></td>
<td style="text-align:left"><a href="../CancelableHook.html"><code>CancelableHook</code></a></td>
</tr>
<tr>
<td> function <strong>isCanceled</strong>() <br> <em>isCanceled method</em></td>
<td style="text-align:left"><code>boolean</code></td>
</tr>
<tr>
<td> function <strong>setCanceled</strong>() <br> <em>setCanceled method</em></td>
<td style="text-align:left"><code>void</code></td>
</tr>
<tr>
<td></td>
<td style="text-align:left"></td>
</tr>
<tr>
<td><strong>Inherited items from <a href="../Hook.html"><code>Hook</code></a></strong></td>
<td style="text-align:left"></td>
</tr>
<tr>
<td>final readonly property <strong>HookName</strong> <br> <em>Get: Get the name of this hook.</em></td>
<td style="text-align:left"><code>String</code></td>
</tr>
<tr>
<td> function <strong>call</strong>() <br> <em>Calls a Hook if not already executed</em></td>
<td style="text-align:left"><a href="../Hook.html"><code>Hook</code></a></td>
</tr>
<tr>
<td> function <strong>hashCode</strong>() <br> <em>hashCode method</em></td>
<td style="text-align:left"><code>int</code></td>
</tr>
</tbody>
</table>
<hr>
<h3 id="public-properties-for-itemdropevent-itemdropevent-md-">Public Properties for <a href="ItemDropEvent.html"><code>ItemDropEvent</code></a></h3>
<h5 id="-a-id-item-a-public-readonly-property-__item__"><a id='item'></a>public readonly property <strong>Item</strong></h5>
<p><em>Get: Gets the <a href="../../api/entity/EntityItem.html"><code>EntityItem</code></a></em></p>
<table>
<thead>
<tr>
<th>Get</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="../../api/entity/EntityItem.html"><code>EntityItem</code></a></td>
<td>the <a href="../../api/entity/EntityItem.html"><code>EntityItem</code></a></td>
</tr>
</tbody>
</table>
<h5 id="-a-id-player-a-public-readonly-property-__player__"><a id='player'></a>public readonly property <strong>Player</strong></h5>
<p><em>Get: Gets the <code>Player</code></em></p>
<table>
<thead>
<tr>
<th>Get</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>Player</code></td>
<td>the <code>Player</code></td>
</tr>
</tbody>
</table>
<hr>
<h3 id="public-methods-for-itemdropevent-itemdropevent-md-">Public Methods for <a href="ItemDropEvent.html"><code>ItemDropEvent</code></a></h3>
<h5 id="-a-id-tostring-a-public-final-function-__tostring__-"><a id='tostring'></a>public final function <strong>toString</strong>()</h5>
<p><em>toString method</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>String</code></td>
<td></td>
</tr>
</tbody>
</table>
<hr>
<h3 id="public-methods-for-cancelablehook-cancelablehook-md-">Public Methods for <a href="../CancelableHook.html"><code>CancelableHook</code></a></h3>
<h5 id="-a-id-call-a-public-function-__call__-"><a id='call'></a>public function <strong>call</strong>()</h5>
<p><em>Calls a Hook if not already executed</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="../CancelableHook.html"><code>CancelableHook</code></a></td>
<td>this</td>
</tr>
</tbody>
</table>
<h5 id="-a-id-iscanceled-a-public-function-__iscanceled__-"><a id='iscanceled'></a>public function <strong>isCanceled</strong>()</h5>
<p><em>isCanceled method</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>boolean</code></td>
<td></td>
</tr>
</tbody>
</table>
<h5 id="-a-id-setcanceled-a-public-function-__setcanceled__-"><a id='setcanceled'></a>public function <strong>setCanceled</strong>()</h5>
<p><em>setCanceled method</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>void</code></td>
<td></td>
</tr>
</tbody>
</table>
<hr>
<h3 id="public-properties-for-hook-hook-md-">Public Properties for <a href="../Hook.html"><code>Hook</code></a></h3>
<h5 id="-a-id-hookname-a-public-final-readonly-property-__hookname__"><a id='hookname'></a>public final readonly property <strong>HookName</strong></h5>
<p><em>Get: Get the name of this hook.</em></p>
<table>
<thead>
<tr>
<th>Get</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>String</code></td>
<td>simple class name</td>
</tr>
</tbody>
</table>
<hr>
<h3 id="public-methods-for-hook-hook-md-">Public Methods for <a href="../Hook.html"><code>Hook</code></a></h3>
<h5 id="-a-id-call-a-public-function-__call__-"><a id='call'></a>public function <strong>call</strong>()</h5>
<p><em>Calls a Hook if not already executed</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="../Hook.html"><code>Hook</code></a></td>
<td>this</td>
</tr>
</tbody>
</table>
<h5 id="-a-id-hashcode-a-public-function-__hashcode__-"><a id='hashcode'></a>public function <strong>hashCode</strong>()</h5>
<p><em>hashCode method</em></p>
<table>
<thead>
<tr>
<th>Returns</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>int</code></td>
<td></td>
</tr>
</tbody>
</table>
<hr>
<hr>
<hr>
<h5 id="this-file-was-system-generated-using-custom-scripts-copyright-c-2015-mining-wolf-">This file was system generated using custom scripts copyright (c) 2015 Mining Wolf.</h5>
</section>
</div>
</div>
</div>
<script src="../../../../../assets/js/vendor/jquery.js"></script>
<script src="../../../../../assets/js/vendor/fastclick.js"></script>
<script src="../../../../../assets/js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html> |
adsbrowser/templates/index.html | rnapoles/ADSBrowser | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>${c.title}</title>
<!-- http://extjs.cachefly.net -->
<style type="text/css">
#loading-mask{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
z-index:20000;
background-color:white;
}
#loading{
position:absolute;
left:45%;
top:40%;
padding:2px;
z-index:20001;
height:auto;
}
#loading a {
color:#225588;
}
#loading .loading-indicator{
background:white;
color:#444;
font:bold 13px tahoma,arial,helvetica;
padding:10px;
margin:0;
height:auto;
}
#loading-msg {
font: normal 10px arial,tahoma,sans-serif;
}
</style>
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/RowEditor.css" />
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/passwordmeter.css" />
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/gridsearch.css" />
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/app.css" />
<link rel="stylesheet" type="text/css" href="./jslibs/resources/css/ext-ux-wiz.css" />
<link rel="stylesheet" type="text/css" href="./css/app.css" />
<!--
<script type="text/javascript" src="./jslibs/adapter/ext/ext-base-debug.js"></script>
<script type="text/javascript" src="./jslibs/ext-all-debug.js"></script>
-->
<script type="text/javascript" src="./jslibs/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="./jslibs/ext-all.js"></script>
<script type="text/javascript" src="./jslibs/locale/ext-lang-es.js"></script>
<script type="text/javascript" src="./js/utils.js"></script>
% if c.auth == True:
<script type="text/javascript">
Config = {}
Config.DnsDomain = '${c.DnsDomain}';
Config.RootDSE = '${c.RootDSE}';
</script>
<script type="text/javascript" src="./js/flags.js"></script>
<script type="text/javascript" src="./jslibs/RowEditor.js"></script>
<script type="text/javascript" src="./jslibs/CheckColumn.js"></script>
<script type="text/javascript" src="./jslibs/PasswordMeter.js"></script>
<script type="text/javascript" src="./jslibs/Ext.ux.grid.Search.js"></script>
<script type="text/javascript" src="./jslibs/wizard/CardLayout.js"></script>
<script type="text/javascript" src="./jslibs/wizard/Wizard.js"></script>
<script type="text/javascript" src="./jslibs/wizard/Header.js"></script>
<script type="text/javascript" src="./jslibs/wizard/Card.js"></script>
<script type="text/javascript" src="./js/Dialogs/SendDialog.js"></script>
<script type="text/javascript" src="./js/Dialogs/DialogResetPass.js"></script>
<script type="text/javascript" src="./js/UserController.js"></script>
<script type="text/javascript" src="./js/ContexMenu.js"></script>
<script type="text/javascript" src="./js/application.js"></script>
% else:
<script type="text/javascript" src="./js/login.js"></script>
% endif
</head>
<body>
<!--
<div id="loading-mask" style=""></div>
<div id="loading">
<div class="loading-indicator"><img src="./jslibs/resources/images/extanim32.gif" width="32" height="32" style="margin-right:8px;float:left;vertical-align:top;"/>ADS Browser - <br /><span id="loading-msg"></span></div>
</div>
-->
<!--
<script type="text/javascript" src="config.js"></script>
-->
</body>
</html> |
39-43JS高级/day01/day39JS/02-数据类型null.html | zhaojingtao/PHP-NOTE | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
//先声明三个变量出来(没有实际意义的信息)
var name = '';
var age = 0;
//声明一个变量,后期打算通过一个"对象"进行赋值,该变量就暂时设置为"null"
//这样会提高代码的可读性
var girl_friend = null;
//后期对上面的三个变量进行赋值
name = "jack";
age = 25;
girl_friend = mary;
</script>
</body>
</html> |
css/list.css | bailus/Hax | .items {
display: flex;
flex-direction: column !important;
width: 100%;
flex-shrink:0;
}
.items .listItem.leaf {
margin: 0.5ch 0;
}
.listItem, .listItem > a {
display: flex;
flex-direction: column;
overflow: hidden;
}
.listItem.leaf, .listItem.leaf > a {
flex-direction: row;
margin: 0;
display: flex;
}
.listItem.leaf > a {
flex-grow: 1;
}
/* Size */
.listItem .listAction,
.listItem .thumbnail {
max-width: 89px;
height: 50px;
line-height: 50px;
width: 14%;
}
.listItem .listAction {
width: 50px;
}
.listItem.leaf {
width: 100%;
flex-wrap: nowrap;
}
.listItem.leaf > .label,
.listItem.leaf > a > .label {
height: 50px;
line-height: 50px;
padding: 0 0.5ch;
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
margin-bottom: 0;
}
.listItem .line1 {
line-height: 22px;
height: 22px;
}
.listItem .line2 {
line-height: 15px;
height: 15px;
display: flex !important;
}
/* Thumbnail */
.listItem .thumbnail {
display: flex;
flex-shrink: 0;
justify-content:center;
align-content:center;
flex-direction: column;
align-items: center;
}
.listItem .thumbnail img {
max-height: 100%;
}
@media (max-width: 280px) {
.listItem .thumbnail {
display: none !important;
}
}
/* Label */
.listItem .label {
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
}
.listItem .label,
.listItem .line1,
.listItem .line2,
.listItem .line2 span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
flex-direction: row;
flex-wrap: nowrap;
padding: 0 0.5ch;
}
.listItem .line2 span {
flex-shrink: 1;
width: auto;
}
.listItem .number {
display: flex;
justify-content:flex-end;
align-items:center;
min-width: 2em;
padding-right: 1ch;
}
/* Actions */
.listItem .listActions {
display: flex;
flex-wrap: nowrap;
flex-shrink: 0;
}
.listItem .listAction {
display: flex;
flex-shrink: 0;
text-align: center;
font-size: 32px;
z-index: 100;
align-items: center;
}
.listAction > .label {
text-align:center;
align-items:center;
justify-content: center;
}
/* progress */
.listItem .progress > .bar,
.listItem .progress,
.icon-list .progress > .bar {
height: 0.75ch;
}
.listItem .progress {
width: 100%;
flex-grow: 1;
}
.icon-list .progress {
width: 100%;
height: 0.75ch;
top: -0.75ch;
position: relative;
}
/* icon view */
.icon-list {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
justify-content: flex-start;
width: 100%;
overflow-x: scroll;
}
.icon-list > li {
width:128px;
flex-grow: 0;
flex-shrink: 0;
align-items: center;
}
.icon-list .label > .line2 {
flex-direction:row;
width: 100%;
justify-content: space-between;
text-align: center;
}
.icon-list .label,
.icon-list .thumbnail {
width:100%;
}
.icon-list .thumbnail {
height: 128px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.icon-list > li {
display: flex;
flex-direction: column;
margin: 16px;
}
.thumbnail img {max-width: 100%;max-height: 100%;}
.icon-list > li > a {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
}
.icon-list .label {
display: flex;
flex-direction: column;
text-align: center;
}
.icon-list .label > span,
.icon-list .label > .line2 span {
display: block;
text-overflow:ellipsis;
white-space: nowrap;
width:100%;
overflow: hidden;
}
.icon-list.seasons {
flex-wrap: wrap !important;
overflow-x: auto;
justify-content: space-around;
}
.icon-list.seasons > li {
width: auto;
}
.icon-list.seasons .thumbnail span {
height: 128px;
}
.icon-list.seasons .thumbnail {
height: auto;
width: 128px;
}
.icon-list.seasons .thumbnail img {
width:100%;
height:auto;
}
.icon-list.cast {
width: 100% !important;
flex-wrap: nowrap;
justify-content: space-between;
overflow-x: scroll;
}
.icon-list.cast > li {
width: 96px;
}
.flags img {
height: 16px;
}
.recently-added .icon-list {
flex-wrap: nowrap;
.items {
display: flex;
flex-direction: column !important;
width: 100%;
flex-shrink:0;
}
.items .listItem.leaf {
margin: 0.5ch 0;
}
.listItem, .listItem > a {
display: flex;
flex-direction: column;
overflow: hidden;
}
.listItem.leaf, .listItem.leaf > a {
flex-direction: row;
margin: 0;
display: flex;
}
.listItem.leaf > a {
flex-grow: 1;
}
/* Size */
.listItem .listAction,
.listItem .thumbnail {
max-width: 89px;
height: 50px;
line-height: 50px;
width: 14%;
}
.listItem .listAction {
width: 50px;
}
.listItem.leaf {
width: 100%;
flex-wrap: nowrap;
}
.listItem.leaf > .label,
.listItem.leaf > a > .label {
height: 50px;
line-height: 50px;
padding: 0 0.5ch;
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
margin-bottom: 0;
}
.listItem .line1 {
line-height: 22px;
height: 22px;
}
.listItem .line2 {
line-height: 15px;
height: 15px;
}
/* Thumbnail */
.listItem .thumbnail {
display: flex;
flex-shrink: 0;
justify-content:center;
align-content:center;
flex-direction: column;
align-items: center;
}
.listItem .thumbnail img {
max-width: 100%;
max-height: 100%;
}
@media (max-width: 280px) {
.listItem .thumbnail {
display: none !important;
}
}
/* Label */
.listItem .label {
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
}
.listItem .label,
.listItem .line1,
.listItem .line2,
.listItem .line2 span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
padding: 0 0.5ch;
}
.listItem .line2 span + span {
}
.listItem .number {
display: flex;
justify-content:flex-end;
align-items:center;
min-width: 2em;
padding-right: 1ch;
}
/* Actions */
.listItem .listActions {
display: flex;
flex-wrap: nowrap;
flex-shrink: 0;
}
.listItem .listAction {
display: flex;
flex-shrink: 0;
text-align: center;
font-size: 32px;
z-index: 100;
align-items: center;
}
.listAction > .label {
text-align:center;
align-items:center;
justify-content: center;
}
/* progress */
.listItem .progress > .bar,
.listItem .progress,
.icon-list .progress > .bar {
height: 0.75ch;
}
.listItem .progress {
width: 100%;
flex-grow: 1;
}
.icon-list .progress {
width: 100%;
height: 0.75ch;
top: -0.75ch;
position: relative;
}
/* icon view */
.icon-list {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
justify-content: flex-start;
width: 100%;
overflow-x: scroll;
}
.icon-list > li {
width:128px;
flex-grow: 0;
flex-shrink: 0;
align-items: center;
}
.icon-list .label > .line2 {
flex-direction:row;
width: 100%;
justify-content: space-between;
}
.icon-list .label,
.icon-list .thumbnail {
width:100%;
}
.icon-list .thumbnail {
height: 128px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.icon-list > li {
display: flex;
flex-direction: column;
margin: 16px;
}
.thumbnail img {max-width: 100%;max-height: 100%;}
.icon-list > li > a {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
}
.icon-list .label {
display: flex;
flex-direction: column;
text-align: center;
}
.icon-list .label > span,
.icon-list .label > .line2 span {
display: block;
text-overflow:ellipsis;
white-space: nowrap;
width:100%;
overflow: hidden;
}
.icon-list.seasons {
flex-wrap: wrap !important;
overflow-x: auto;
}
.icon-list.seasons > li {flex-grow: 1;}
.icon-list.seasons .thumbnail span {
height: 128px;
}
.icon-list.seasons .thumbnail {
height:192px;
max-width: 192px;
}
.icon-list.cast {
width: 100% !important;
flex-wrap: nowrap;
justify-content: space-between;
overflow-x: scroll;
}
.icon-list.cast > li {
width: 96px;
}
.flags img {
height: 32px;
}
.recently-added .icon-list {
flex-wrap: nowrap;
}}
|
s2tbx-help/src/main/resources/doc/help/general/envisat-products/bands/ASA_IMG_1P.html | corinavaduva/s2tbx-s2tbx-1.0.2 | <!--
~ Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
~
~ This program is free software; you can redistribute it and/or modify it
~ under the terms of the GNU General Public License as published by the Free
~ Software Foundation; either version 3 of the License, or (at your option)
~ any later version.
~ This program is distributed in the hope that it will be useful, but WITHOUT
~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
~ more details.
~
~ You should have received a copy of the GNU General Public License along
~ with this program; if not, see http://www.gnu.org/licenses/
-->
<html>
<head>
<!-- Generated by html.HtmlWriter on Thu Jun 17 11:25:33 CEST 2004 -->
<title>
ASA_IMG_1P
</title>
<LINK REL="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
<link rel="stylesheet" href="../../../style.css">
</head>
<body>
<table class="header"><tr class="header"><td class="header"> Supported ENVISAT Products</td><td class="header"
align="right"><a
href="../../BeamOverview.html"><img src="../../../images/snap_header.jpg" width="227" height="29" border="0"></a>
</td></tr></table>
<br>
<div align="center"> <a
href="../index.html"><font size="-1">INDEX</font></a> <a
href="../products/ASA_IMG_1P.html"><font size="-1">PRODUCTS</font></a>
<hr>
<h2>ASAR Image Mode Geocoded Image</h2>
<p><font size="+1"> Bands of ENVISAT <b>ASA_IMG_1P</b> Products</font></p>
<p><font size="+1"> Tie-Point Grids of ENVISAT</font></p>
<table border="1" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Index</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Identifier</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Type</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Description</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Units</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Bitmask</font></td>
</tr>
<tr>
<td>0</td>
<td><code>"slant_range_time"</code></td>
<td><a href="../lang_types.html#Float">Float</a></td>
<td>2 way slant range time</td>
<td>ns</td>
<td><i> n/a</i></td>
</tr>
<tr>
<td>1</td>
<td><code>"incident_angle"</code></td>
<td><a href="../lang_types.html#Float">Float</a></td>
<td>Incident angle</td>
<td>deg</td>
<td><i> n/a</i></td>
</tr>
<tr>
<td>2</td>
<td><code>"latitude"</code></td>
<td><a href="../lang_types.html#Float">Float</a></td>
<td>Latitude of the tie points (WGS-84), positive N</td>
<td>deg</td>
<td><i> n/a</i></td>
</tr>
<tr>
<td>3</td>
<td><code>"longitude"</code></td>
<td><a href="../lang_types.html#Float">Float</a></td>
<td>Longitude of the tie points (WGS-84), Greenwich origin, positive E</td>
<td>deg</td>
<td><i> n/a</i></td>
</tr>
</table>
<p><font size="+1"> Bands of ENVISAT</font></p>
<table border="1" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Index</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Identifier</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Type</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Description</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Units</font></td>
<td BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><font size="+1"> Bitmask</font></td>
</tr>
<tr>
<td>4</td>
<td><code>"proc_data"</code></td>
<td><a href="../lang_types.html#Float">Float</a></td>
<td>Image Mode Geocoded Image</td>
<td><i> n/a</i></td>
<td><i> n/a</i></td>
</tr>
</table>
</div>
</body>
</html> |
deprecated/index.html | rafszul/a-360-video | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>360 Video</title>
<meta name="description" content="360 Video — A-Frame">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="style.css">
<script src="aframe.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<video id="video" src="city-4096-mp4-30fps-x264-ffmpeg-006.mp4" autoplay loop crossorigin webkit-playsinline></video>
</a-assets>
<a-videosphere src="#video" rotation="0 180 0"></a-videosphere>
</a-scene>
</body>
</html>
|
JavascriptTrain/拖拽的组件开发.html | biluweb/code | <html>
<head>
<title></title>
</head>
<body>
</body>
</html>
<script>
window.onload=function(){
var t=new Drag();
console.log(t.init)
}
function Drag(){
this.obj=null;
this.disX = 0;
this.disY = 0;
this.setting={
toDown : function(){},
toUp : function(){}
}
}
Drag.prototype={
init:function(opt){
this.obj=document.getElmentByClassName('b')
extend(this.setting,opt)
}
}
function extend(obj1,obj2){
for(var attr in obj2){
obj1[attr] = obj2[attr];
}
}
</script> |
front-end/html5-css/ex036_nest.html | arante/fcc | <!DOCTYPE html>
<html>
<head>
<title>Nest Many Elements within a Single Div Element</title>
</head>
<body>
<!-- Nest Many Elements within a Single Div Element -->
<!-- Your code here -->
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
h2 {
color: red;
font-family: "Lobster", Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
a {
text-decoration: none;
color: #99bbff;
}
.image-smaller {
width: 100px;
}
.thick-green-border {
border-width: 10px;
border-style: solid;
border-color: green;
border-radius: 50%;
}
</style>
<h2>CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#"><img class="image-smaller thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<div>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointer</li>
<li>lasagna</li>
</ul>
<p>Things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
</div>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor" checked>Indoor</label>
<label><input type="radio" name="indoor-outdoor">Outdoor</label>
<label><input type="checkbox" name="personality" checked>Loving</label>
<label><input type="checkbox" name="personality">Lazy</label>
<label><input type="checkbox" name="personality">Energetic</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</body>
</html>
|
Application/Home/View/Public/header.html | qch-china/common_admin | <meta charset="utf-8">
<link rel="shortcut icon" href="__STATIC__/images/favicon.ico"> |
src/styles.css | cmiu007/cmr-v0.2 | /* You can add global styles to this file, and also import other style files */
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
body {
background: url("https://rm.cmr.ro/assets/img/hexellence.png") repeat;
}
html,
body,
.viewport {
width: 100%;
height: 100%;
margin: 0;
}
header,
footer,
nav,
article,
aside {
border: 1px solid black;
padding: 0.25em;
margin: 0.25em;
border-radius: 0.25em;
}
.app-content {
padding: 20px;
}
.cdk-overlay-pane {
width: auto !important;
}
.content {
margin: 10px 10% 1px 10%;
}
.mat-list-item {
border-bottom: 1px solid black;
}
.mat-card {
margin-bottom: 0.2em;
}
.icon-align {
vertical-align: middle;
}
.form-title {
width: 100%;
border-bottom: 0.1em solid #000;
}
.form-item-title {
font-size: 1em !important;
cursor: pointer;
margin-bottom: 0px !important;
}
.form-item-content {
margin-top: 10px !important;
}
.dash-header {
height: 100px;
}
.full-width {
width: 100%;
}
.half-width {
width: 50%;
}
.wrapper {
display: grid;
grid-template-columns: repeat(12, [col-start] 1fr);
grid-gap: 1em;
}
.mat-expansion-panel {
margin-bottom: 0.2em !important;
}
.mat-content {
flex-direction: column !important;
}
/* flex pt formulare */
section {
/* max-width: 1024px; */
margin: 0 auto;
display: flex;
}
.column {
margin: 0 5px 0 5px;
flex-grow: 1;
flex-shrink: 1;
flex-basis: 0;
}
.inactive {
color: gray;
text-decoration: line-through;
}
.active {
color: green;
/* text-decoration: underline; */
}
|
doc/se/his/iit/it325g/examples/monitors/shortestJobNext/targetedNotify/class-use/GlobalProgramState.html | JonasMikaelMellin/ConcurrentProgrammingExamplesInJava | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_60) on Tue Nov 21 15:12:31 CET 2017 -->
<title>Uses of Class se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify.GlobalProgramState</title>
<meta name="date" content="2017-11-21">
<link rel="stylesheet" type="text/css" href="../../../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify.GlobalProgramState";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../../../se/his/iit/it325g/examples/monitors/shortestJobNext/targetedNotify/GlobalProgramState.html" title="class in se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?se/his/iit/it325g/examples/monitors/shortestJobNext/targetedNotify/class-use/GlobalProgramState.html" target="_top">Frames</a></li>
<li><a href="GlobalProgramState.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify.GlobalProgramState" class="title">Uses of Class<br>se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify.GlobalProgramState</h2>
</div>
<div class="classUseContainer">No usage of se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify.GlobalProgramState</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../../../se/his/iit/it325g/examples/monitors/shortestJobNext/targetedNotify/GlobalProgramState.html" title="class in se.his.iit.it325g.examples.monitors.shortestJobNext.targetedNotify">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?se/his/iit/it325g/examples/monitors/shortestJobNext/targetedNotify/class-use/GlobalProgramState.html" target="_top">Frames</a></li>
<li><a href="GlobalProgramState.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
_css/anchorage.skin.css | newscoop/theme-Anchorage | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,700);
/***************************** */
/******** Begin Layout ******* */
/***************************** */
/* --- Begin General Elements */
body {
background: #d9d9d9;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
color: #000;
}
figure {
margin: 0;
}
figure figcaption {
text-align: center;
font-size: 11px;
margin-top: 0px;
}
.bold-weight {
font-weight: 700;
}
.normal-weight {
font-weight: 400;
}
.full-width {
width: 100% !important;
}
/* End General Elements --- */
/* --- Begin Header */
#header .header-top {
font-size: 12px;
height: 40px;
background: #b6b6b6;
}
#header .header-top .top-block-left {
background: #333;
height: 40px;
}
#header .header-top .top-block-right {
background: #b6b6b6;
color: #fff;
}
#header .header-top .login-user-action {
color: #fff;
line-height: 37px;
padding-left: 15px;
}
#header .form-search {
float: right;
margin-right: 15px;
}
#header .form-search .search-query {
height: 15px;
margin-top: 5px;
width: 155px;
transition: width 0.5s;
-moz-transition: width 0.5s;
-webkit-transition: width 0.5s;
-o-transition: width 0.5s;
}
#header .form-search .big-search {
width: 258px;
transition: width 0.5s;
-moz-transition: width 0.5s;
-webkit-transition: width 0.5s;
-o-transition: width 0.5s;
}
#header .banner {
height: 82px;
background: #fff;
background-color: #ffffff;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(75%, #ffffff), to(#f4f4f4));
background-image: -webkit-linear-gradient(#ffffff, #ffffff 75%, #f4f4f4);
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 75%, #f4f4f4);
background-image: -ms-linear-gradient(#ffffff, #ffffff 75%, #f4f4f4);
background-image: -o-linear-gradient(#ffffff, #ffffff 75%, #f4f4f4);
background-image: linear-gradient(#ffffff, #ffffff 75%, #f4f4f4);
}
#header .banner .action-header {
width: 35%;
text-align: center;
line-height: 82px;
color: #ababab;
font-size: 12px;
}
#header #action-header-phone {
display: none;
}
#header .user-buttons {
float: right;
margin-right: 15px;
}
#header .social-links {
width: 24%;
margin-left: 18px;
text-align: left;
line-height: 85px;
font-size: 14px;
}
#header .social-links a {
margin-right: 10px;
}
#header #logo {
margin: 0px 0px 0px 50px;
width: 50%;
}
#header #main-menu {
background: #fff;
height: 30px;
}
#header #main-menu a {
display: inline-block;
padding: 5px 15px;
font-size: 12px;
}
/* End Header --- */
/* --- Begin Content Elements */
#main {
background: #f2f2f2;
}
#main-content {
padding: 0px 0px 15px 15px;
}
/* End General Content Elements --- */
/* --- Begin Index */
.articles {
border-bottom: #c7c7c7 1px solid;
}
.articles .featured-thumb {
background: #fff;
padding: 20px 15px 5px 15px;
position: relative;
}
.articles .featured-thumb .landing-title {
position: absolute;
top: 0;
left: 0px;
color: #fff;
font-size: 11px;
padding: 0px 15px;
}
.articles .featured-thumb .landing-title b {
text-transform: capitalize;
}
.articles h2 {
font-size: 14px;
margin-bottom: 0px;
line-height: 1.6;
}
.articles .excerpt {
font-size: 13px;
}
.articles .article-links a {
display: block;
margin-right: 10px;
float: left;
}
.featured-article {
margin-bottom: 20px;
padding-top: 15px;
}
.featured-article h2 {
font-size: 16px;
padding-top: 2px;
margin-top: 10px;
}
.articles-list {
position: relative;
clear: both;
margin-bottom: 15px;
}
.articles-list .secundary-thumb {
float: left;
position: absolute;
bottom: 0px;
left: 15px;
border-left: #fff 1px solid;
border-right: #fff 1px solid;
border-top: #fff 1px solid;
}
.articles-list header,
.articles-list .excerpt {
width: 75%;
position: relative;
}
.articles-list h2 {
margin-top: 5px;
}
.extra-articles {
width: 48%;
min-height: 140px;
}
.extra-articles h4 {
margin-top: 15px;
}
.extra-articles .articles-link {
display: block;
margin-top: 8px;
margin-bottom: 8px;
}
.left-block {
margin-right: 18px;
-webkit-box-shadow: 1px 0px 0px 0px #d8d8d8;
-moz-box-shadow: 1px 0px 0px 0px #d8d8d8;
box-shadow: 1px 0px 0px 0px #d8d8d8;
border-right: #fff 1px solid;
float: left;
}
.right-block {
float: right;
}
#map {
margin-top: 25px;
}
#map .geomap_menu,
#map .geomap_open_large_map {
display: none;
}
#videos {
margin-bottom: 15px;
}
#videos .video {
width: 185px;
margin-right: 16px;
float: left;
position: relative;
min-height: 290px;
}
#videos .video .title {
padding: 10px 0px;
display: block;
}
/* End Index --- */
/* --- Begin Sidebar */
#sidebar {
border-left: #d7d7d7 1px solid;
-webkit-box-shadow: -1px 0px 0px 0px #ffffff;
-moz-box-shadow: -1px 0px 0px 0px #ffffff;
box-shadow: -1px 0px 0px 0px #ffffff;
padding-bottom: 15px;
}
#sidebar > .block {
padding: 5px 15px 5px 15px;
}
#sidebar #graph {
padding-top: 10px;
}
#sidebar #graph img {
background: #fff;
padding: 5px;
width: 95%;
}
#sidebar #login-form .form-horizontal .control-label {
width: 60px;
}
#sidebar #login-form .form-horizontal .controls {
margin-left: 80px;
}
#sidebar #extra {
padding-top: 20px;
}
#sidebar #extra .ad {
margin-bottom: 20px;
}
#sidebar #most-read .most-read-articles {
font-size: 11px;
margin-top: 10px;
margin-bottom: 10px;
}
#sidebar #most-read .most-read-articles .most-read-title {
font-weight: bold;
font-size: 11px;
}
#sidebar #premium-articles {
font-size: 11px;
}
#sidebar #premium-articles .premium-articles {
margin-top: 10px;
margin-bottom: 15px;
}
#sidebar #premium-articles .premium-articles-left {
float: left;
width: 25%;
}
#sidebar #premium-articles .premium-articles-left img {
border: #fff 1px solid;
}
#sidebar #premium-articles .premium-articles-right {
float: right;
width: 70%;
}
#sidebar #articles-slider {
margin-bottom: 0px;
}
#sidebar #articles-slider .caption {
height: 25px;
line-height: 25px;
text-align: center;
font-size: 11px;
background: #fff;
display: block;
}
#sidebar #community-feed {
font-size: 12px;
}
#sidebar #community-feed .activity {
margin-bottom: 15px;
}
#sidebar .weatherFeed {
font-family: Arial, Helvetica, sans-serif;
font-size: 90%;
width: 100%;
margin-top: 10px;
}
#sidebar .weatherFeed a {
color: #888;
}
#sidebar .weatherFeed a:hover {
color: #000;
text-decoration: none;
}
#sidebar .weatherItem {
padding: 20px;
text-align: right;
}
#sidebar .weatherCity {
text-transform: uppercase;
}
#sidebar .weatherTemp {
font-size: 2.8em;
font-weight: bold;
}
#sidebar .weatherDesc,
#sidebar .weatherCity,
#sidebar .weatherForecastDay {
font-weight: bold;
}
#sidebar .weatherDesc {
margin-bottom: 0.4em;
}
#sidebar .weatherRange,
#sidebar .weatherWind,
#sidebar .weatherLink,
#sidebar .weatherForecastItem {
font-size: 0.8em;
}
#sidebar .weatherLink,
#sidebar .weatherForecastItem {
margin-top: 0.5em;
text-align: left;
}
#sidebar .weatherForecastItem {
padding: 0.5em 0.5em 0.5em 80px;
background-color: #fff;
background-position: left center;
}
#sidebar .weatherForecastDay {
font-size: 1.1em;
}
/* End Sidebar --- */
/* --- Begin Footer */
#footer .footer-widgets > .block {
margin-top: 20px;
margin-bottom: 20px;
}
#footer .footer-widgets > .block a {
display: block;
font-size: 12px;
margin: 5px 0px 5px 30px;
}
#footer .bottom-footer {
font-size: 12px;
text-align: center;
height: 50px;
line-height: 50px;
}
/* End Footer --- */
/* --- Begin Single Page */
h1.page-title {
font-size: 20px;
margin-top: 0px;
padding-top: 15px;
line-height: 30px;
}
.single-page p {
font-size: 12px;
}
.single-page .image {
background: #fff;
padding: 20px 15px 5px 15px;
float: left;
margin-right: 15px;
}
.single-page .share-buttons {
margin-bottom: 0px;
}
.single-page .share-buttons #twitter-button {
float: left;
width: 90px;
}
.single-page .share-buttons #facebook-button {
float: left;
}
.single-page .share-buttons #plus-button {
float: left;
width: 50px;
}
.single-page .subtitle p {
font-size: 18px;
}
.single-page #subtitle-links {
margin-top: 10px;
}
.single-page .table {
-webkit-box-shadow: 0px 1px 0px 0px #ffffff;
-moz-box-shadow: 0px 1px 0px 0px #ffffff;
box-shadow: 0px 1px 0px 0px #ffffff;
}
.single-page ul,
.single-page ol,
.single-page table {
font-size: 12px;
}
#comments-block {
background: #c4c2c3;
padding: 15px 10px;
}
#comments-block .comment {
background: #fff;
margin: 0px 5px 15px 5px;
-webkit-box-shadow: 0px 0px 2px 1px #aeabad;
-moz-box-shadow: 0px 0px 2px 1px #aeabad;
box-shadow: 0px 0px 2px 1px #aeabad;
border: #9a989a 1px solid;
font-size: 12px;
}
#comments-block .comment .comment-content {
padding: 5px 10px;
background: #fff;
float: left;
width: 65%;
}
#comments-block .comment .comment-author {
background: #f0f0f0;
padding: 5px 10px;
float: right;
width: 25%;
height: 100%;
}
#comments-block h4 {
padding-left: 5px;
}
#comments-block #comment-form .form-column-left {
float: left;
width: 65%;
}
#comments-block #comment-form .form-column-right {
float: right;
width: 25%;
position: relative;
margin-top: -35px;
margin-right: 10px;
}
#comments-block #comment-form .control-label {
font-size: 12px;
text-align: right;
width: 80px;
}
#comments-block #comment-form .controls {
margin-left: 100px;
}
#comments-block #comment-form .controls textarea {
width: 100%;
}
#comments-block #comment-form .controls input,
#comments-block #comment-form .controls textarea {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
#comments-block #comment-form .control-group {
margin-bottom: 10px;
}
#comments-block #comment-form #comment-button {
position: absolute;
bottom: 10px;
}
.rate_widget {
border: none;
overflow: visible;
position: relative;
}
.ratings_stars {
background: url('../_img/rating/star_empty.png') no-repeat;
float: left;
height: 28px;
padding: 2px;
width: 28px;
}
.ratings_vote {
background: url('../_img/rating/star_full.png') no-repeat;
}
.ratings_over {
background: url('../_img/rating/star_highlight.png') no-repeat;
}
.total_votes {
margin-top: 2px;
float: left;
display: inline-block;
color: #464646;
font-size: 14px;
}
.article_rating {
font: 21px;
width: 100%;
padding: 10px 5px 8px 5px;
}
.article_rating h4 {
display: inline-block;
float: left;
margin-right: 20px;
margin-top: 0px;
margin-bottom: 0px;
border-bottom: none;
font-size: 18px;
font-weight: 400;
}
.rating_error {
margin-top: 2px;
float: left;
display: inline-block;
color: #bc0000;
font-size: 14px;
margin-left: 5px;
font-weight: bold;
}
.stars {
padding: 0;
margin: 0 4px 0 0;
list-style-type: none;
display: inline-block;
float: left;
}
#gallery {
min-width: 250px;
max-width: 100%;
min-height: 350px;
max-height: 450px;
background: #464646;
margin-bottom: 10px;
margin-top: -20px;
}
#gallery .galleria-container {
background: #464646;
}
#gallery .galleria-info,
#gallery .galleria-info-text {
display: block !important;
}
#gallery .galleria-thumbnails .galleria-image {
border: #797979 1px solid;
}
#gallery .galleria-info {
width: 100%;
text-align: center;
left: 0;
top: 75%;
}
#gallery .galleria-info .galleria-info-text {
background: #464646;
padding: 10px 0px 5px 0px;
}
#gallery .galleria-info .galleria-info-text .galleria-info-title {
font-size: 11px;
font-weight: normal;
}
#gallery .galleria-info-link {
display: none !important;
}
.audio-attachment,
.attachment,
.video-attachment {
margin-top: 20px;
}
.video-attachment {
margin-bottom: 20px;
}
.video-attachment .flowplayer {
margin-bottom: 5px;
}
.cs_img p img {
width: 100%;
}
.cs_img_caption {
background: #fff;
font-size: 11px !important;
margin: -10px 0 0;
padding: 5px;
}
/* End Single Page --- */
/* --- Begin Section page */
.section-page .articles-list {
padding-bottom: 20px;
padding-top: 20px;
margin-bottom: 0px;
}
.section-page .articles-list .section-thumb {
background: #fff;
padding: 15px;
float: left;
margin-right: 15px;
}
.section-page .articles-list header {
margin-bottom: 15px;
}
.section-page .articles-list header,
.section-page .articles-list .excerpt {
width: 38%;
}
.section-page .extra-articles {
width: 100%;
}
.section-page .section-ad {
margin-top: 25px;
}
/* End Section Page --- */
/* --- Begin Archive page */
.archive-page .archive-list {
height: 70px;
width: 100%;
background: #fff;
border: #cccccc 1px solid;
-webkit-box-shadow: 0px 1px 0px 0px #ffffff;
-moz-box-shadow: 0px 1px 0px 0px #ffffff;
box-shadow: 0px 1px 0px 0px #ffffff;
margin-bottom: 15px;
}
.archive-page .archive-list .archive-border {
width: 40px;
background: #e5e5e5;
height: 100%;
float: left;
margin-right: 20px;
}
.archive-page .archive-list .archive-title {
margin-top: 15px;
display: block;
font-size: 18px;
}
.archive-page .archive-list .published-date {
display: block;
font-size: 12px;
}
/* End Archive Page --- */
/* --- Begin community */
.community-page .user-list {
height: 70px;
width: 100%;
background: #fff;
border: #cccccc 1px solid;
-webkit-box-shadow: 0px 1px 0px 0px #ffffff;
-moz-box-shadow: 0px 1px 0px 0px #ffffff;
box-shadow: 0px 1px 0px 0px #ffffff;
margin-bottom: 15px;
}
.community-page .user-list .avatar {
float: left;
margin-right: 5px;
padding: 15px;
}
.community-page .user-list .user-title {
margin-top: 15px;
display: block;
font-size: 18px;
}
.community-page .user-list .member {
display: block;
font-size: 12px;
}
/* End community --- */
/* --- Begin Profile */
.profile-avatar {
width: 30%;
float: left;
}
.profile-bio {
width: 65%;
float: left;
}
.profile-bio h1 {
font-weight: 400;
margin-top: 10px;
}
.profile-bio h4 {
font-weight: 400;
}
.profile-information {
clear: both;
border-top: #454545 dotted 1px;
}
.profile-information h4 {
font-weight: 400;
margin-bottom: 15px;
}
.profile-information .info-value {
margin-bottom: 10px;
}
.profile-articles,
.profile-comments {
margin-top: 10px;
border-top: #454545 dotted 1px;
}
.profile-articles h4,
.profile-comments h4 {
font-weight: 400;
margin-top: 10px;
}
.dashboard-page .well-form {
margin-top: 20px;
}
/* End Profile --- */
/* --- Begin Registration and Login Form */
.anchorage-form {
padding-right: 30px;
}
.anchorage-form:after {
content: " ";
display: block;
height: 0;
overflow: hidden;
clear: both;
}
.zend_form {
width: 96%;
}
.zend_form dt {
float: left;
margin-right: 3.8%;
width: 39.45%;
}
.zend_form input[type="text"],
.zend_form input[type="password"],
.zend_form textarea {
width: 100%;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-webkit-box-shadow: 0px 2px 0px 0px #e7e7e7;
-moz-box-shadow: 0px 2px 0px 0px #e7e7e7;
box-shadow: 0px 2px 0px 0px #e7e7e7;
}
.zend_form dd {
margin-left: 0;
width: 56.75%;
float: left;
}
.zend_form #fieldset-newsletter dd {
margin-left: 0;
width: 8%;
float: left;
}
.zend_form #fieldset-newsletter dt {
float: right;
margin-right: 3.8%;
width: 86%;
margin-bottom: 10px;
}
.zend_form #attributes-element {
width: 100%;
}
.zend_form #attributes-element #attributes-gender-male {
margin-right: 10px;
}
.zend_form #attributes-element #attributes-gender-female {
margin-right: 10px;
}
.zend_form #attributes-element label[for="attributes-gender-female"] {
margin-top: -15px;
margin-bottom: 10px;
}
.zend_form #attributes-element #attributes-first_name_public-element,
.zend_form #attributes-element #attributes-last_name_public-element,
.zend_form #attributes-element #attributes-email_public-element {
float: left;
margin-top: -10px;
}
.zend_form #attributes-element #attributes-first_name_public-element input[type="radio"],
.zend_form #attributes-element #attributes-last_name_public-element input[type="radio"],
.zend_form #attributes-element #attributes-email_public-element input[type="radio"],
.zend_form #attributes-element #attributes-first_name_public-element input[type="checkbox"],
.zend_form #attributes-element #attributes-last_name_public-element input[type="checkbox"],
.zend_form #attributes-element #attributes-email_public-element input[type="checkbox"] {
height: 40px;
}
.zend_form #submit-element {
margin-bottom: 10px;
}
.zend_form #attributes-email_public-label,
.zend_form #attributes-email_public-element,
.zend_form #newsletter-label,
.zend_form #newsletter-element,
.zend_form #newsletter-subscriber-label,
.zend_form #newsletter-subscriber-element,
.zend_form #fieldset-newsletter {
display: none;
}
/***************************** */
/**** Begin Anchorage Skin *** */
/***************************** */
/* --- Begin General Elements */
body {
font-family: 'Ubuntu', sans-serif;
background: url(../_img/background.jpg) fixed;
}
/* End General Elements --- */
/* --- Begin Skin Variables and Custom Style Classes */
.link-color {
color: #bc0000;
text-decoration: none;
}
.gray-text {
color: #777;
}
a.link-color {
color: #bc0000;
text-decoration: none;
font-weight: 600;
}
a.link-color:hover {
color: #bc0000;
text-decoration: none;
}
a {
color: #bc0000;
text-decoration: none;
}
hr {
border-top: 1px dotted #b2b2b2;
height: 1px;
}
.alert {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
.alert-error {
background: #a73a42;
border: #86221e 1px solid;
-webkit-box-shadow: 0px 0px 0px 3px #d3d9d6;
-moz-box-shadow: 0px 0px 0px 3px #d3d9d6;
box-shadow: 0px 0px 0px 3px #d3d9d6;
color: #e8dddd;
text-shadow: 0px 0px 0px #a70001;
-moz-text-shadow: 0px 0px 0px #a70001;
-webkit-text-shadow: 0px 0px 0px #a70001;
font-size: 12px;
}
.alert-error a {
color: #fff;
}
.bold-weight {
font-weight: 700;
}
.normal-weight {
font-weight: 400;
}
.content-font {
font-family: Tahoma, Helvetica, Arial, sans-serif;
}
.solid-button {
position: relative;
border: 0;
text-decoration: none;
background: #bc0000;
-webkit-box-shadow: 0px 2px 0px 0px #940000;
-moz-box-shadow: 0px 2px 0px 0px #940000;
box-shadow: 0px 2px 0px 0px #940000;
padding: 5px 15px;
color: #fff !important;
font-size: 13px;
font-weight: 700;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
}
.solid-button:visited,
.solid-button:focus {
text-decoration: none;
color: #fff;
}
.solid-button:active {
top: 1px;
-webkit-box-shadow: 0px 0px 0px 0px #940000;
-moz-box-shadow: 0px 0px 0px 0px #940000;
box-shadow: 0px 0px 0px 0px #940000;
}
.solid-button:hover {
background: #da1e1e;
text-decoration: none;
color: #fff;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
}
.form-button {
background: #000;
color: #fff;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
border: 0px;
text-shadow: 0px 0px 0px #000000;
-moz-text-shadow: 0px 0px 0px #000000;
-webkit-text-shadow: 0px 0px 0px #000000;
font-size: 11px;
padding: 2px 15px 2px 0px;
font-weight: bold;
}
.form-button:hover {
background: #161616;
color: #fff;
}
.form-button .icon-user,
.form-button .icon-chevron-right {
background: #808080;
padding: 4px 7px;
margin-right: 8px;
margin-left: 1px;
}
.articles-button {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
text-shadow: 0px 0px 0px #585657;
-moz-text-shadow: 0px 0px 0px #585657;
-webkit-text-shadow: 0px 0px 0px #585657;
padding: 0px 12px 0px 0px;
border-top: #fff 1px solid;
border-right: #fff 1px solid;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
}
.articles-button:hover {
background: #444243;
color: #fff;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
}
.articles-button .icon-double-angle-right {
background: #bc0000;
color: #fff;
padding: 5px 6px 4px 6px;
margin-right: 5px;
}
.read-more {
background: #716f70;
color: #fff;
}
.premium-button {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
background: #3f3d3e;
border: 0;
color: #fff;
padding-left: 1px;
text-shadow: 0px 0px 0px #585657;
-moz-text-shadow: 0px 0px 0px #585657;
-webkit-text-shadow: 0px 0px 0px #585657;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
font-size: 11px !important;
margin-top: 8px;
}
.premium-button:hover {
background: #262425;
color: #fff;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
}
.premium-button .icon-lock {
background: #bc0000;
color: #fff;
padding: 2px 6px 2px 6px;
margin-right: 5px;
}
.comment-link {
background: #e8e8e8;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
}
.comment-link:hover {
background: #cfcfcf;
color: #333;
transition: background 0.4s;
-moz-transition: background 0.4s;
-webkit-transition: background 0.4s;
-o-transition: background 0.4s;
}
/* End Skin Variables and custom style classes --- */
/* --- Begin Header Styles */
#header .header-top {
background: #bc0000;
}
#header .header-top .top-block-left {
background: #585657 url(../_img/line-background.png) fixed;
margin-left: 20px;
}
#header .header-top .top-block-right {
background: #bc0000;
}
#header .header-top .login-user-action a {
color: #fff;
}
#header .header-top .login-user-action .solid-button {
font-size: 11px;
font-weight: 400;
margin-left: 10px;
color: #bcbabb !important;
background: #211f20;
-webkit-box-shadow: 0px 2px 0px 0px #121011;
-moz-box-shadow: 0px 2px 0px 0px #121011;
box-shadow: 0px 2px 0px 0px #121011;
transition: all 0.5s;
-moz-transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
}
#header .header-top .login-user-action .solid-button:hover {
background: #302e2f;
transition: all 0.5s;
-moz-transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
}
#header .lang {
float: left;
}
#header .lang span {
border: 1px solid #cccccc;
border-right: none;
padding: 7px 12px 8px;
box-shadow: 0px 2px 0px 0px #ededed;
color: #676767;
}
#header .form-search .search-query {
color: #6c6c6c;
padding-left: 10px;
font-size: 12px;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
background: #fff;
border: 0;
border: #940000 3px solid;
-webkit-box-shadow: 0px 0px 0px 1px #d51919;
-moz-box-shadow: 0px 0px 0px 1px #d51919;
box-shadow: 0px 0px 0px 1px #d51919;
}
#header .social-links a {
color: #4f4f4f;
font-size: 18px;
transition: all 0.4s;
-moz-transition: all 0.4s;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
}
#header .social-links a:hover {
transition: all 0.4s;
-moz-transition: all 0.4s;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
text-decoration: none;
color: #282828;
opacity: 0.8;
-moz-opacity: 0.8;
filter: alpha(opacity=0.8);
}
#header .social-links .icon-rss-sign {
color: #ff8d1f;
margin-right: 5px;
}
#header .social-links .icon-facebook-sign {
color: #3b589e;
margin-right: 5px;
}
#header .social-links .icon-twitter {
color: #4bcbf2;
margin-right: 5px;
}
#header .user-buttons .btn {
background: #fff;
-webkit-box-shadow: 0px 2px 0px 0px #ededed;
-moz-box-shadow: 0px 2px 0px 0px #ededed;
box-shadow: 0px 2px 0px 0px #ededed;
color: #676767 !important;
font-size: 12px;
transition: all 0.6s;
-moz-transition: all 0.6s;
-webkit-transition: all 0.6s;
-o-transition: all 0.6s;
}
#header .user-buttons .btn:hover {
color: #bc0000;
background: #f8f8f8;
transition: all 0.6s;
-moz-transition: all 0.6s;
-webkit-transition: all 0.6s;
-o-transition: all 0.6s;
}
#header .user-buttons .btn:first-child {
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
-moz-border-radius-topleft: 2px;
-moz-border-radius-bottomleft: 2px;
-webkit-border-bottom-left-radius: 2px;
-webkit-border-top-left-radius: 2px;
}
#header .user-buttons .btn:last-child {
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 2px;
-webkit-border-bottom-right-radius: 2px;
-webkit-border-top-right-radius: 2px;
}
#header .user-buttons .rss-icon {
font-size: 14px;
}
#header .user-buttons .rss-icon:hover {
color: #ea7a0a !important;
}
#header .user-buttons .fb-icon {
font-size: 14px;
}
#header .user-buttons .fb-icon:hover {
color: #3648c8 !important;
}
#header .user-buttons .tw-icon {
font-size: 14px;
}
#header .user-buttons .tw-icon:hover {
color: #1c9ac1 !important;
}
#header #action-header-phone .user-buttons {
margin-right: 5px;
}
#header #action-header-phone .user-buttons .btn {
background: #fff;
-webkit-box-shadow: 0px 0px 0px 0px #ededed;
-moz-box-shadow: 0px 0px 0px 0px #ededed;
box-shadow: 0px 0px 0px 0px #ededed;
color: #676767 !important;
}
#header #main-menu {
border-top: #bc0000 1px solid;
border-bottom: #e2e2e2 1px solid;
}
#header #main-menu a {
color: #181818;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
text-transform: uppercase;
}
#header #main-menu a:hover {
color: #fff;
background: #585657;
text-decoration: none;
border-bottom: #fff 1px solid;
-webkit-box-shadow: 0px 6px 0px 0px #bc0000;
-moz-box-shadow: 0px 6px 0px 0px #bc0000;
box-shadow: 0px 6px 0px 0px #bc0000;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
z-index: 10;
position: relative;
}
#header #main-menu a.active {
color: #fff;
background: #585657;
text-decoration: none;
border-bottom: #fff 1px solid;
-webkit-box-shadow: 0px 6px 0px 0px #bc0000;
-moz-box-shadow: 0px 6px 0px 0px #bc0000;
box-shadow: 0px 6px 0px 0px #bc0000;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
z-index: 10;
position: relative;
}
#header #phone-menu {
margin-bottom: 0px;
}
#header #phone-menu .navbar-inner {
background: #585657;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
border: 0;
padding-left: 20px;
padding-right: 18px;
}
#header #phone-menu .navbar-inner a {
color: #fff;
}
#header #phone-menu .navbar-inner .btn-navbar {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
#header #phone-menu .navbar-inner .brand {
color: #c6c4c5;
}
#header #phone-menu .navbar-inner .nav-collapse .nav > li > a,
#header #phone-menu .navbar-inner .nav-collapse .dropdown-menu a {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
#header #phone-menu .navbar-inner .nav > li > a {
font-weight: 400;
text-transform: uppercase;
}
#header #phone-menu .navbar-inner .nav .active > a,
#header #phone-menu .navbar-inner .nav .active > a:hover,
#header #phone-menu .navbar-inner .nav .active > a:focus .nav li.dropdown.open.active > .dropdown-toggle,
#header #phone-menu .navbar-inner .phone-link:hover {
background-color: #3a3839 !important;
}
#header #phone-menu .navbar-inner .divider {
border-top: #767475 1px solid;
margin-top: 5px;
margin-bottom: 5px;
}
/* End Header Styles --- */
/* --- Begin Content Elements */
#main {
background: #f2f2f2 url(../_img/main-background.png) repeat-x top center;
border-top: #fff 1px solid;
border-bottom: #fff 1px solid;
}
#main-content {
border-left: #fff 1px solid;
}
/* End Content Elements --- */
/* --- Begin Index */
.articles .featured-thumb .landing-title {
border-left: #bc0000 15px solid;
background: #585657;
}
.articles .featured-thumb .landing-title a {
color: #fff;
text-decoration: none;
}
.articles h2 a {
color: #444243;
}
.articles h2 .dateline {
color: #bc0000;
}
.section-title {
color: #000;
font-weight: 400;
font-size: 14px;
text-transform: uppercase;
}
.extra-articles .link .dateline {
color: #bc0000;
font-weight: bold;
}
.extra-articles a {
color: #3a3839;
font-size: 12px;
}
.extra-articles a:hover {
text-decoration: none;
color: #bc0000;
}
.extra-articles a .icon-double-angle-right {
margin-right: 5px;
}
.extra-articles .solid-button {
font-size: 11px;
padding: 0px 5px;
margin-right: 10px;
margin-bottom: 10px;
}
#map #geo_show_label_inline {
font-size: 12px;
margin: 0;
line-height: 20px;
}
#map .article_backlinks ul {
list-style-image: url('../_img/map-list.png');
}
#map .article_backlinks ul li {
line-height: 15px;
}
#map .article_backlinks ul li a {
color: #bc0000;
font-size: 11px;
}
#videos .video .video-caption {
text-align: center;
background: #d1d1d1;
color: #575757;
font-size: 12px;
padding: 4px;
}
#videos .video .title {
font-size: 13px;
color: #bc0000;
font-weight: bold;
}
#videos .video .description {
font-size: 12px;
margin-bottom: 10px;
}
#videos .video .read-more {
position: absolute;
bottom: 0;
}
/* End Index --- */
/* --- Begin Sidebar */
#sidebar {
border-right: #fff 1px solid;
background: #585657 url(../_img/line-background.png) fixed;
}
#sidebar #graph {
background: #f2f2f2 url(../_img/main-background.png) repeat-x top center;
margin-top: 0px;
}
#sidebar #graph h4 {
color: #bc0000;
}
#sidebar #graph .gadget a[target="_top"],
#sidebar #graph .gadget .powered {
display: none;
}
#sidebar #login-form {
background: #bc0000;
}
#sidebar #login-form h4 {
color: #fff;
}
#sidebar #login-form form {
margin-bottom: 10px;
}
#sidebar #login-form .control-group {
margin-bottom: 10px;
}
#sidebar #login-form .input-medium {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
height: 10px;
font-size: 12px;
}
#sidebar #login-form .control-label {
color: #fff;
font-size: 12px;
height: 10px;
line-height: 10px;
}
#sidebar #login-form a {
color: #fff;
font-size: 11px;
}
#sidebar #premium-block {
background: #da1e1e;
}
#sidebar #premium-block h4 {
color: #fff;
font-weight: normal;
font-size: 14px;
margin-top: 5px;
margin-bottom: 5px;
}
#sidebar #premium-block-description {
background: #353334;
color: #d8d8d8;
font-size: 12px;
padding-bottom: 15px;
}
#sidebar #user-block {
background: #bc0000;
text-align: center;
color: #fff;
padding-top: 15px;
padding-bottom: 15px;
}
#sidebar #user-block a {
color: #fff;
}
#sidebar #user-block a :hover {
text-decoration: none;
}
#sidebar #user-block .btn {
margin-top: 10px;
text-transform: uppercase;
}
#sidebar #most-read {
background: #f2f2f2 url(../_img/main-background.png) repeat-x top center;
margin-top: 0px;
}
#sidebar #most-read .most-read-articles .most-read-title {
color: #000;
}
#sidebar #premium-articles {
background: #bc0000;
border-bottom: #da1e1e 1px solid;
color: #fff;
}
#sidebar #premium-articles h4 {
color: #fff;
margin-bottom: 15px;
}
#sidebar #premium-articles a {
color: #fff;
font-weight: bold;
font-size: 12px;
}
#sidebar #articles-slider .caption {
background: url(../_img/caption-slider.png);
margin-top: -30px;
position: relative;
z-index: 100;
border-top: #fff 1px solid;
}
#sidebar #articles-slider .item a {
color: #000;
}
#sidebar #articles-slider .carousel-control {
font-size: 15px;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
#sidebar #articles-slider .carousel-indicators {
position: static;
padding-top: 10px;
top: 0;
bottom: 0;
height: 20px;
background: #b3b3b3;
padding-left: 100px;
}
#sidebar #articles-slider .carousel-indicators .active {
background: #bc0000;
}
#sidebar #articles-slider .carousel-indicators li {
background: #fff;
margin-left: 15px;
cursor: pointer;
}
#sidebar #articles-slider .carousel-indicators li:hover {
background: #d01414;
}
#sidebar #community-feed {
background: #bc0000;
}
#sidebar #community-feed h4 {
color: #fff;
}
#sidebar #community-feed .activity {
border-bottom: #e42828 1px dotted;
padding-bottom: 20px;
}
#sidebar #community-feed .activity .activity-action {
color: #dcb6b5;
}
#sidebar #community-feed .activity .activity-action .icon-comment,
#sidebar #community-feed .activity .activity-action .icon-user {
font-size: 16px;
color: #800000;
text-shadow: 0px 1px 0px #ee3232;
-moz-text-shadow: 0px 1px 0px #ee3232;
-webkit-text-shadow: 0px 1px 0px #ee3232;
margin-right: 5px;
}
#sidebar #community-feed .activity .activity-title a {
color: #fff;
font-weight: bold;
}
#sidebar #community-feed .activity .date {
color: #dcb6b5;
font-size: 10px;
}
#sidebar .weatherFeed {
background: #302e2f;
margin-bottom: 20px;
}
#sidebar .weatherTemp,
#sidebar .weatherCountry,
#sidebar .weatherCity {
color: #bc0000;
}
#sidebar .weatherDesc {
margin-top: 5px;
}
#sidebar .weatherItem {
color: #f5f5f5;
}
#sidebar .weatherLink a {
position: relative;
border: 0;
text-decoration: none;
background: #bc0000;
-webkit-box-shadow: 0px 2px 0px 0px #940000;
-moz-box-shadow: 0px 2px 0px 0px #940000;
box-shadow: 0px 2px 0px 0px #940000;
padding: 5px 15px;
color: #fff !important;
font-size: 13px;
font-weight: 700;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
}
#sidebar .weatherLink a:visited,
#sidebar .weatherLink a:focus {
text-decoration: none;
color: #fff;
}
#sidebar .weatherLink a:active {
top: 1px;
-webkit-box-shadow: 0px 0px 0px 0px #940000;
-moz-box-shadow: 0px 0px 0px 0px #940000;
box-shadow: 0px 0px 0px 0px #940000;
}
#sidebar .weatherLink a:hover {
background: #da1e1e;
text-decoration: none;
color: #fff;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
}
#sidebar .polls {
margin-bottom: 20px;
}
#sidebar .polls h4 {
font-weight: 400px;
color: #c60a0a;
padding: 0px 20px;
}
#sidebar .polls form {
margin-bottom: 0px;
}
#sidebar .polls .pollWrap {
background: #302e2f;
padding: 10px 0px 0px 0px;
margin: 0px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
}
#sidebar .polls .pollWrap blockquote {
color: #fff;
font-weight: bold;
font-size: 12px;
border: 0;
padding: 0 20px;
margin-top: 5px;
margin-bottom: 15px;
}
#sidebar .polls .pollWrap .poll-info {
color: #fff;
background: #bc0000;
padding: 3px 20px;
font-weight: bold;
}
#sidebar .polls .label-important {
margin-left: 5px;
margin-bottom: 3px;
font-size: 10px;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
#sidebar .polls input[type="submit"] {
color: #fff;
border: none;
padding: 6px;
position: relative;
border: 0;
text-decoration: none;
background: #bc0000;
-webkit-box-shadow: 0px 2px 0px 0px #940000;
-moz-box-shadow: 0px 2px 0px 0px #940000;
box-shadow: 0px 2px 0px 0px #940000;
padding: 5px 15px;
color: #fff !important;
font-size: 13px;
font-weight: 700;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
border-radius: 3x;
-ms-border-radius: 3x;
-moz-border-radius: 3x;
-webkit-border-radius: 3x;
-khtml-border-radius: 3x;
width: 100%;
margin-top: -15px;
}
#sidebar .polls input[type="submit"]:visited,
#sidebar .polls input[type="submit"]:focus {
text-decoration: none;
color: #fff;
}
#sidebar .polls input[type="submit"]:active {
top: 1px;
-webkit-box-shadow: 0px 0px 0px 0px #940000;
-moz-box-shadow: 0px 0px 0px 0px #940000;
box-shadow: 0px 0px 0px 0px #940000;
}
#sidebar .polls input[type="submit"]:hover {
background: #da1e1e;
text-decoration: none;
color: #fff;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
}
#sidebar .polls .total-votes {
margin-left: 20px;
color: #fff;
padding-bottom: 15px;
}
#sidebar .polls .progress {
height: 3px;
}
#sidebar .polls .poll-option {
padding: 0px 10px;
margin: 0px 10px 10px 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#sidebar .polls .poll-option label {
font-size: 12px;
}
#sidebar .polls .poll-option input[type="radio"] {
margin-right: 5px;
position: relative;
margin-right: 10px;
float: left;
}
#sidebar #debate-widget {
color: #cecece;
background: #3f3d3e;
padding-bottom: 15px;
}
#sidebar #debate-widget h4 {
color: #fff;
margin-bottom: 20px;
}
#sidebar #debate-widget .progress {
height: 3px;
margin-bottom: 5px;
margin-top: 5px;
}
#sidebar #debate-widget .debate-button {
margin-top: 10px;
margin-bottom: 10px;
display: block;
text-align: center;
}
#sidebar #debate-widget .message {
font-size: 12px;
margin-top: 5px;
width: 100%;
}
#sidebar #map-widget {
color: #cecece;
background: #3f3d3e;
padding-bottom: 20px;
}
#sidebar #map-widget h4 {
color: #fff;
margin-bottom: 20px;
}
#sidebar #map-widget .geomap_open_large_map a {
color: #fff;
font-size: 11px;
}
#sidebar #map-widget .geomap_open_large_map a:hover {
text-decoration: none;
color: #fff;
}
/* End Sidebar --- */
/* --- Begin Footer */
#footer {
margin-top: 5px;
}
#footer .footer-area {
background: #cb0f0f url(../_img/line-background.png) fixed;
}
#footer .footer-widgets {
height: 280px;
background: url(../_img/footer-planet.png) no-repeat center bottom;
}
#footer .footer-widgets > .block {
margin-top: 30px;
}
#footer .footer-widgets > .block a {
color: #fff;
text-transform: uppercase;
}
#footer .footer-widgets .span12 p {
display: block;
font-size: 12px;
margin: 5px 0px 5px 30px;
color: #fff;
}
#footer .footer-widgets .span12 p a {
color: #fff;
}
#footer .bottom-footer {
background: #353334;
color: #7a7a7a;
}
#footer .bottom-footer .social-links a {
background: #262425;
border: #353334 1px solid;
font-size: 13px;
text-shadow: 0px 0px 0px #000000;
-moz-text-shadow: 0px 0px 0px #000000;
-webkit-text-shadow: 0px 0px 0px #000000;
padding: 5px 5px 5px 10px;
}
#footer .bottom-footer .social-links a:hover {
text-decoration: none;
color: #fff;
background: #211f20;
}
#footer .bottom-footer .social-links .icon-rss-sign {
color: #ff8d1f;
font-size: 16px;
margin-right: 5px;
}
#footer .bottom-footer .social-links .icon-facebook-sign {
color: #3b589e;
font-size: 16px;
margin-right: 5px;
}
#footer .bottom-footer .social-links .icon-twitter {
color: #4bcbf2;
font-size: 16px;
margin-right: 5px;
}
/* End Footer --- */
/* --- Begin Single Page */
.single-page .article-info {
font-size: 11px;
margin-bottom: 6px;
}
.single-page .well {
padding: 10px;
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
.single-page .well-article {
background: #fff;
border: 0;
-webkit-box-shadow: 0px 0px 0px 0px #ffffff;
-moz-box-shadow: 0px 0px 0px 0px #ffffff;
box-shadow: 0px 0px 0px 0px #ffffff;
}
.single-page .icon-tag,
.single-page .icon-time,
.single-page .icon-map-marker {
color: #909090;
}
.single-page hr {
margin: 10px 0px;
}
.single-page .solid-button {
font-size: 11px;
}
.single-page #subtitle-links li {
background: #fff;
border-left: #807e7f 3px solid;
}
.single-page #subtitle-links li.active {
border-left: #df2323 3px solid;
}
.single-page #subtitle-links li.active a {
background: #f9f6ed;
font-weight: bold;
}
.single-page #subtitle-links li:first-child > a,
.single-page #subtitle-links li:last-child > a {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
}
.single-page #subtitle-links li a {
font-size: 13px;
color: #bc0000;
text-decoration: none;
transition: background 0.5s;
-moz-transition: background 0.5s;
-webkit-transition: background 0.5s;
-o-transition: background 0.5s;
}
.single-page #subtitle-links li a:hover {
color: #bc0000;
text-decoration: none;
transition: background 0.5s;
-moz-transition: background 0.5s;
-webkit-transition: background 0.5s;
-o-transition: background 0.5s;
}
.single-page blockquote {
border-left: 5px solid #bc0000;
}
.single-page blockquote p {
font-size: 14px;
}
#comments-block .comment .comment-author a {
color: #bc0000;
}
#comment-form #comment-button {
margin-top: -30px;
}
/* End Single Page --- */
/* --- Begin Section Page */
.section-page .articles-list {
border-bottom: #454545 dotted 1px;
}
.section-page .articles-list .label-important {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
font-weight: 400 !important;
}
.pagination ul li a {
color: #bc0000;
}
/* End Section Page --- */
/* --- Begin Archive page */
.archive-page .archive-list .archive-border {
transition: background 0.5s;
-moz-transition: background 0.5s;
-webkit-transition: background 0.5s;
-o-transition: background 0.5s;
}
.archive-page .archive-list:hover .archive-border {
background: #bc0000;
transition: background 0.5s;
-moz-transition: background 0.5s;
-webkit-transition: background 0.5s;
-o-transition: background 0.5s;
}
.archive-page .archive-list .archive-title {
color: #000;
text-decoration: none;
}
.archive-page .archive-list .published-date {
color: #878787;
}
.issues-page .section-title {
margin-top: 20px;
border-bottom: #454545 dotted 1px;
padding: 10px 0px;
}
.issues-page .section-title .solid-button {
padding: 0px 5px;
font-size: 10px;
}
/* End Archive Page --- */
/* --- Begin community */
.community-page .user-tab a {
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
color: #000;
}
.community-page .user-tab a:hover {
background: #dddddd;
}
.community-page .user-tab .active > a:focus,
.community-page .user-tab .active > a {
background: #bc0000;
color: #fff;
}
.community-page .user-list .user-title {
color: #000;
}
.community-page .user-list .member {
color: #878787;
}
/* End community --- */
/* --- Begin Profile */
.profile-information .label {
background: #fff;
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
border: #cecece 1px solid;
color: #888a85;
text-shadow: 0px 0px 0px #ffffff;
-moz-text-shadow: 0px 0px 0px #ffffff;
-webkit-text-shadow: 0px 0px 0px #ffffff;
font-size: 13px;
padding: 4px;
}
.profile-information .value {
padding-left: 6px;
font-size: 12px;
}
.profile-comments {
font-size: 12px;
}
.profile-comments .link-color {
font-weight: 400;
}
.profile-comments .comment-info {
font-size: 10px;
}
/* End Profile --- */
/* --- Begin Debate */
.debate-page .well {
margin-bottom: 10px;
padding-bottom: 5px;
}
.debate-page .well-bio {
background: #fefefe;
}
.debate-page h5 {
font-size: 12px;
margin-top: 0px;
}
.debate-page .author-bio {
width: 78%;
}
/* End Debate --- */
/* --- Registration and Login Form */
.well-form {
border-radius: 0px;
-ms-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
background: #fff;
}
.zend_form #submit {
position: relative;
border: 0;
text-decoration: none;
background: #bc0000;
-webkit-box-shadow: 0px 2px 0px 0px #940000;
-moz-box-shadow: 0px 2px 0px 0px #940000;
box-shadow: 0px 2px 0px 0px #940000;
padding: 5px 15px;
color: #fff !important;
font-size: 13px;
font-weight: 700;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
border-radius: 2px;
-ms-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
}
.zend_form #submit:visited,
.zend_form #submit:focus {
text-decoration: none;
color: #fff;
}
.zend_form #submit:active {
top: 1px;
-webkit-box-shadow: 0px 0px 0px 0px #940000;
-moz-box-shadow: 0px 0px 0px 0px #940000;
box-shadow: 0px 0px 0px 0px #940000;
}
.zend_form #submit:hover {
background: #da1e1e;
text-decoration: none;
color: #fff;
transition: background 0.3s;
-moz-transition: background 0.3s;
-webkit-transition: background 0.3s;
-o-transition: background 0.3s;
}
.dashboard-page .user-image {
margin-bottom: 15px;
}
|
docs/ejb-javadoc/com/iitk/cimam/xml/package-summary.html | csangani/InMap | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_01) on Sun Nov 20 01:35:20 IST 2011 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>com.iitk.cimam.xml</title>
<meta name="date" content="2011-11-20">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.iitk.cimam.xml";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/iitk/cimam/svg/exception/package-summary.html">Prev Package</a></li>
<li><a href="../../../../com/iitk/cimam/xml/exception/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/iitk/cimam/xml/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package com.iitk.cimam.xml</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../com/iitk/cimam/xml/RequestParser.html" title="class in com.iitk.cimam.xml">RequestParser</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/iitk/cimam/svg/exception/package-summary.html">Prev Package</a></li>
<li><a href="../../../../com/iitk/cimam/xml/exception/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/iitk/cimam/xml/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
doc/help-doc.html | TeamSPoon/virtstoryteller | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_04) on Wed Dec 03 10:29:40 CET 2008 -->
<TITLE>
API Help
</TITLE>
<META NAME="date" CONTENT="2008-12-03">
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H1>
How This API Document Is Organized</H1>
</CENTER>
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
Overview</H3>
<BLOCKQUOTE>
<P>
The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
<H3>
Package</H3>
<BLOCKQUOTE>
<P>
Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
<LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL>
</BLOCKQUOTE>
<H3>
Class/Interface</H3>
<BLOCKQUOTE>
<P>
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
<P>
<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
<P>
<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
</BLOCKQUOTE>
<H3>
Annotation Type</H3>
<BLOCKQUOTE>
<P>
Each annotation type has its own separate page with the following sections:<UL>
<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
</BLOCKQUOTE>
</BLOCKQUOTE>
<H3>
Enum</H3>
<BLOCKQUOTE>
<P>
Each enum has its own separate page with the following sections:<UL>
<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
</BLOCKQUOTE>
<H3>
Use</H3>
<BLOCKQUOTE>
Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE>
<H3>
Tree (Class Hierarchy)</H3>
<BLOCKQUOTE>
There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
</BLOCKQUOTE>
<H3>
Deprecated API</H3>
<BLOCKQUOTE>
The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
<H3>
Index</H3>
<BLOCKQUOTE>
The <A HREF="index-files/index-1.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
<H3>
Prev/Next</H3>
These links take you to the next or previous class, interface, package, or related page.<H3>
Frames/No Frames</H3>
These links show and hide the HTML frames. All pages are available with or without frames.
<P>
<H3>
Serialized Form</H3>
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
<P>
<H3>
Constant Field Values</H3>
The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
<P>
<FONT SIZE="-1">
<EM>
This help file applies to API documentation generated using the standard doclet.</EM>
</FONT>
<BR>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
doc/api/com/db4o/ta/TransparentPersistenceSupport.html | potty-dzmeia/db4o | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Mon Nov 05 16:20:00 GMT 2012 -->
<TITLE>
TransparentPersistenceSupport (db4o - database for objects - documentation)
</TITLE>
<META NAME="date" CONTENT="2012-11-05">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TransparentPersistenceSupport (db4o - database for objects - documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
db4o 8.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/db4o/ta/TransparentPersistenceSupport.html" target="_top"><B>FRAMES</B></A>
<A HREF="TransparentPersistenceSupport.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
com.db4o.ta</FONT>
<BR>
Class TransparentPersistenceSupport</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta">com.db4o.ta.TransparentActivationSupport</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>com.db4o.ta.TransparentPersistenceSupport</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../com/db4o/config/ConfigurationItem.html" title="interface in com.db4o.config">ConfigurationItem</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>TransparentPersistenceSupport</B><DT>extends <A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta">TransparentActivationSupport</A></DL>
</PRE>
<P>
Enables Transparent Persistence and Transparent Activation behaviours for
the current session.
<br><br>
configuration.add(new TransparentPersistenceSupport());
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta"><CODE>TransparentActivationSupport</CODE></A></DL>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../com/db4o/ta/TransparentPersistenceSupport.html#TransparentPersistenceSupport()">TransparentPersistenceSupport</A></B>()</CODE>
<BR>
Creates a new instance of TransparentPersistenceSupport class
with no rollback strategies defined.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../com/db4o/ta/TransparentPersistenceSupport.html#TransparentPersistenceSupport(com.db4o.ta.RollbackStrategy)">TransparentPersistenceSupport</A></B>(<A HREF="../../../com/db4o/ta/RollbackStrategy.html" title="interface in com.db4o.ta">RollbackStrategy</A> rollbackStrategy)</CODE>
<BR>
Creates a new instance of TransparentPersistenceSupport class</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/db4o/ta/TransparentPersistenceSupport.html#apply(com.db4o.internal.InternalObjectContainer)">apply</A></B>(com.db4o.internal.InternalObjectContainer container)</CODE>
<BR>
Configures current ObjectContainer to support Transparent Activation and Transparent Persistence</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/db4o/ta/TransparentPersistenceSupport.html#prepare(com.db4o.config.Configuration)">prepare</A></B>(<A HREF="../../../com/db4o/config/Configuration.html" title="interface in com.db4o.config">Configuration</A> configuration)</CODE>
<BR>
Gives a chance for the item to augment the configuration.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_com.db4o.ta.TransparentActivationSupport"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class com.db4o.ta.<A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta">TransparentActivationSupport</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html#isTransparentActivationEnabledOn(com.db4o.internal.InternalObjectContainer)">isTransparentActivationEnabledOn</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="TransparentPersistenceSupport(com.db4o.ta.RollbackStrategy)"><!-- --></A><H3>
TransparentPersistenceSupport</H3>
<PRE>
public <B>TransparentPersistenceSupport</B>(<A HREF="../../../com/db4o/ta/RollbackStrategy.html" title="interface in com.db4o.ta">RollbackStrategy</A> rollbackStrategy)</PRE>
<DL>
<DD>Creates a new instance of TransparentPersistenceSupport class
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>rollbackStrategy</CODE> - RollbackStrategy interface implementation, which
defines the actions to be taken on the object when the transaction is rolled back.</DL>
</DL>
<HR>
<A NAME="TransparentPersistenceSupport()"><!-- --></A><H3>
TransparentPersistenceSupport</H3>
<PRE>
public <B>TransparentPersistenceSupport</B>()</PRE>
<DL>
<DD>Creates a new instance of TransparentPersistenceSupport class
with no rollback strategies defined.
<P>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="apply(com.db4o.internal.InternalObjectContainer)"><!-- --></A><H3>
apply</H3>
<PRE>
public void <B>apply</B>(com.db4o.internal.InternalObjectContainer container)</PRE>
<DL>
<DD>Configures current ObjectContainer to support Transparent Activation and Transparent Persistence
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/db4o/config/ConfigurationItem.html#apply(com.db4o.internal.InternalObjectContainer)">apply</A></CODE> in interface <CODE><A HREF="../../../com/db4o/config/ConfigurationItem.html" title="interface in com.db4o.config">ConfigurationItem</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html#apply(com.db4o.internal.InternalObjectContainer)">apply</A></CODE> in class <CODE><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta">TransparentActivationSupport</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>container</CODE> - the ObjectContainer to configure<DT><B>See Also:</B><DD><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html#apply(com.db4o.internal.InternalObjectContainer)"><CODE>TransparentActivationSupport.apply(InternalObjectContainer)</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="prepare(com.db4o.config.Configuration)"><!-- --></A><H3>
prepare</H3>
<PRE>
public void <B>prepare</B>(<A HREF="../../../com/db4o/config/Configuration.html" title="interface in com.db4o.config">Configuration</A> configuration)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../com/db4o/config/ConfigurationItem.html#prepare(com.db4o.config.Configuration)">ConfigurationItem</A></CODE></B></DD>
<DD>Gives a chance for the item to augment the configuration.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/db4o/config/ConfigurationItem.html#prepare(com.db4o.config.Configuration)">prepare</A></CODE> in interface <CODE><A HREF="../../../com/db4o/config/ConfigurationItem.html" title="interface in com.db4o.config">ConfigurationItem</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html#prepare(com.db4o.config.Configuration)">prepare</A></CODE> in class <CODE><A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta">TransparentActivationSupport</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>configuration</CODE> - the configuration that the item was added to</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
db4o 8.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/db4o/ta/TransparentActivationSupport.html" title="class in com.db4o.ta"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/db4o/ta/TransparentPersistenceSupport.html" target="_top"><B>FRAMES</B></A>
<A HREF="TransparentPersistenceSupport.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2009 Versant Corporation. All rights reserved.</i>
</BODY>
</HTML>
|
templates/profile.html | itucsdb1621/itucsdb1621 | {% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type="text/css">
#profile_photo{
left:50%;
border-radius:300px;
}
</style>
{% endblock %}
{% block content %}
<br>
<br>
<div class="col-md-3">
<div class="col-md-offset-1 row">
<img alt="Profile Picture" id="profile_photo" class="img-responsive center-block" src="{{ url_for('static', filename='uploads/'+result[2]) }}" class="img-responsive" />
</div>
<div class="col-md-offset-1 row">
<br>
<p class="lead">
{{ result[1] }}
</p>
</div>
<div class="col-md-offset-1 row">
{% if is_self %}
{% else %}
{% if is_following %} <a href="{{ url_for('users_app.user_unfollow',followed= result[0])}}">
<button type="button" class="btn btn-danger" >
Unfollow!
</button>
</a>
{% else %}
<a href="{{url_for('users_app.user_follow', followed= result[0])}}">
<button type="button" class="btn btn-primary" >
Follow!
</button>
</a>
{% endif %}
{% endif %}
</div>
<div class="col-md-offset-1 row">
<a href="{{ url_for('users_app.show_followers',user_id=result[0])}}"> Followers</a>
</div>
<div class="col-md-offset-1 row">
<a href="{{ url_for('users_app.show_followed',user_id=result[0])}}"> Follows</a>
</div>
</div>
<div class="col-md-9">
{% for photopaths in list_photos %}
{% if loop.index is divisibleby 3 %}
<div class="row">
{% endif %}
<div class="col-md-3">
<img src="{{ url_for('static', filename='uploads/'+photopaths[0]) }}" class="img-responsive" />
</div>
{% if loop.index is divisibleby 3 %}
</div>
<br>
{% endif %}
{% endfor %}
</div>
{% endblock %} |
views/index.html | IvoDD/ResultsSystem | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>Резултати</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<link href="template.css" rel="stylesheet">
<link href="login.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id="competition_name" class="navbar-brand" href="#">Турнир за тортата на Директора</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul id="nav" class="nav navbar-nav">
<li class="active" id="r"><a href="#" onclick="load('r')">Резултати</a></li>
<!--<li id="r1"><a href="#1" onclick="load('r1')">Задача 1</a></li>
<li id="r2"><a href="#2" onclick="load('r2')">Задача 2</a></li>
<li id="r3"><a href="#3" onclick="load('r3')">Задача 3</a></li>
<li id="r4"><a href="#4" onclick="load('r4')">Задача 4</a></li>
<li id="r5"><a href="#5" onclick="load('r5')">Задача 5</a></li>
<li id="r6"><a href="#6" onclick="load('r6')">Задача 6</a></li>-->
<li id="c"><a href="#credits" onclick="load('c')">Credits</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container" id="block_results">
<div>
<h1>Резултати</h1>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Имена</th>
<!--<th>Зад. 1</th>
<th>Зад. 2</th>
<th>Зад. 3</th>
<th>Зад. 4</th>
<th>Зад. 5</th>
<th>Зад. 6</th>-->
<th id='overall'>Общо</th>
</tr>
</thead>
<tbody id="results"></tbody>
</table>
</div>
</div><!-- /.container -->
<div class="container" id="block_login" style="display: none;">
<form class="form-signin" onsubmit="return login();">
<h2 class="form-signin-heading">Log in (for admins)</h2>
<label for="inputEmail" class="sr-only">Username</label>
<input type="text" id="inputEmail" class="form-control" placeholder="Username" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
<input class="btn btn-lg btn-primary btn-block" type="submit" value="Sign in">
</form>
</div>
<div class="container" id="block_credits" style="display: none;">
<h1>Credits</h1>
<p>Системата е разработена от Иво Дилов за турнира "За тортата на Директора". Турнира е спонсориран от SAP Labs и Trader.bg</p>
</div>
<div class="container" id="block_add" style="display: none;">
<form onsubmit='return addCompetitor()'>
<input id='new_comp_name' type='text' placeholder="Имена">
<input id='new_comp_grade' type='number' min='1' max='12' placeholder="клас">
<input type='submit' value="Добави състезател">
</form>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/js/jquery.min.js"><\/script>')</script>
<script src="/js/bootstrap.min.js"></script>
<script src="socket.io/socket.io.js"></script>
<script src="/view.js"></script>
<script src="/connection.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<!--<script src="/js/ie10-viewport-bug-workaround.js"></script>-->
</body>
</html>
|
jdk8en_us/docs/api/javax/swing/RootPaneContainer.html | DeanAaron/jdk8 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_11) on Mon Jun 16 17:35:48 PDT 2014 -->
<title>RootPaneContainer (Java Platform SE 8 )</title>
<meta name="date" content="2014-06-16">
<meta name="keywords" content="javax.swing.RootPaneContainer interface">
<meta name="keywords" content="getRootPane()">
<meta name="keywords" content="setContentPane()">
<meta name="keywords" content="getContentPane()">
<meta name="keywords" content="setLayeredPane()">
<meta name="keywords" content="getLayeredPane()">
<meta name="keywords" content="setGlassPane()">
<meta name="keywords" content="getGlassPane()">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RootPaneContainer (Java Platform SE 8 )";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/RootPaneContainer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../javax/swing/RepaintManager.html" title="class in javax.swing"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../javax/swing/RowFilter.html" title="class in javax.swing"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?javax/swing/RootPaneContainer.html" target="_top">Frames</a></li>
<li><a href="RootPaneContainer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">javax.swing</div>
<h2 title="Interface RootPaneContainer" class="title">Interface RootPaneContainer</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../javax/swing/JApplet.html" title="class in javax.swing">JApplet</a>, <a href="../../javax/swing/JDialog.html" title="class in javax.swing">JDialog</a>, <a href="../../javax/swing/JFrame.html" title="class in javax.swing">JFrame</a>, <a href="../../javax/swing/JInternalFrame.html" title="class in javax.swing">JInternalFrame</a>, <a href="../../javax/swing/JWindow.html" title="class in javax.swing">JWindow</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">RootPaneContainer</span></pre>
<div class="block">This interface is implemented by components that have a single
JRootPane child: JDialog, JFrame, JWindow, JApplet, JInternalFrame.
The methods in this interface are just <i>covers</i> for the JRootPane
properties, e.g. <code>getContentPane()</code> is generally implemented
like this:<pre>
public Container getContentPane() {
return getRootPane().getContentPane();
}
</pre>
This interface serves as a <i>marker</i> for Swing GUI builders
that need to treat components like JFrame, that contain a
single JRootPane, specially. For example in a GUI builder,
dropping a component on a RootPaneContainer would be interpreted
as <code>frame.getContentPane().add(child)</code>.
<p>
As a convenience, the standard classes that implement this interface
(such as <code>JFrame</code>, <code>JDialog</code>, <code>JWindow</code>, <code>JApplet</code>,
and <code>JInternalFrame</code>) have their <code>add</code>, <code>remove</code>,
and <code>setLayout</code> methods overridden, so that they delegate calls
to the corresponding methods of the <code>ContentPane</code>.
For example, you can add a child component to a frame as follows:
<pre>
frame.add(child);
</pre>
instead of:
<pre>
frame.getContentPane().add(child);
</pre>
<p>
The behavior of the <code>add</code> and
<code>setLayout</code> methods for
<code>JFrame</code>, <code>JDialog</code>, <code>JWindow</code>,
<code>JApplet</code> and <code>JInternalFrame</code> is controlled by
the <code>rootPaneCheckingEnabled</code> property. If this property is
true (the default), then calls to these methods are
forwarded to the <code>contentPane</code>; if false, these
methods operate directly on the <code>RootPaneContainer</code>. This
property is only intended for subclasses, and is therefore protected.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/JRootPane.html" title="class in javax.swing"><code>JRootPane</code></a>,
<a href="../../javax/swing/JFrame.html" title="class in javax.swing"><code>JFrame</code></a>,
<a href="../../javax/swing/JDialog.html" title="class in javax.swing"><code>JDialog</code></a>,
<a href="../../javax/swing/JWindow.html" title="class in javax.swing"><code>JWindow</code></a>,
<a href="../../javax/swing/JApplet.html" title="class in javax.swing"><code>JApplet</code></a>,
<a href="../../javax/swing/JInternalFrame.html" title="class in javax.swing"><code>JInternalFrame</code></a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../java/awt/Container.html" title="class in java.awt">Container</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#getContentPane--">getContentPane</a></span>()</code>
<div class="block">Returns the contentPane.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../java/awt/Component.html" title="class in java.awt">Component</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#getGlassPane--">getGlassPane</a></span>()</code>
<div class="block">Returns the glassPane.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../javax/swing/JLayeredPane.html" title="class in javax.swing">JLayeredPane</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#getLayeredPane--">getLayeredPane</a></span>()</code>
<div class="block">Returns the layeredPane.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="../../javax/swing/JRootPane.html" title="class in javax.swing">JRootPane</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#getRootPane--">getRootPane</a></span>()</code>
<div class="block">Return this component's single JRootPane child.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#setContentPane-java.awt.Container-">setContentPane</a></span>(<a href="../../java/awt/Container.html" title="class in java.awt">Container</a> contentPane)</code>
<div class="block">The "contentPane" is the primary container for application
specific components.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#setGlassPane-java.awt.Component-">setGlassPane</a></span>(<a href="../../java/awt/Component.html" title="class in java.awt">Component</a> glassPane)</code>
<div class="block">The glassPane is always the first child of the rootPane
and the rootPanes layout manager ensures that it's always
as big as the rootPane.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../javax/swing/RootPaneContainer.html#setLayeredPane-javax.swing.JLayeredPane-">setLayeredPane</a></span>(<a href="../../javax/swing/JLayeredPane.html" title="class in javax.swing">JLayeredPane</a> layeredPane)</code>
<div class="block">A Container that manages the contentPane and in some cases a menu bar.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getRootPane--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRootPane</h4>
<pre><a href="../../javax/swing/JRootPane.html" title="class in javax.swing">JRootPane</a> getRootPane()</pre>
<div class="block">Return this component's single JRootPane child. A conventional
implementation of this interface will have all of the other
methods indirect through this one. The rootPane has two
children: the glassPane and the layeredPane.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>this components single JRootPane child.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/JRootPane.html" title="class in javax.swing"><code>JRootPane</code></a></dd>
</dl>
</li>
</ul>
<a name="setContentPane-java.awt.Container-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setContentPane</h4>
<pre>void setContentPane(<a href="../../java/awt/Container.html" title="class in java.awt">Container</a> contentPane)</pre>
<div class="block">The "contentPane" is the primary container for application
specific components. Applications should add children to
the contentPane, set its layout manager, and so on.
<p>
The contentPane may not be null.
<p>
Generally implemented with
<code>getRootPane().setContentPane(contentPane);</code></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>contentPane</code> - the Container to use for the contents of this
JRootPane</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../java/awt/IllegalComponentStateException.html" title="class in java.awt">IllegalComponentStateException</a></code> - (a runtime
exception) if the content pane parameter is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/JRootPane.html#getContentPane--"><code>JRootPane.getContentPane()</code></a>,
<a href="../../javax/swing/RootPaneContainer.html#getContentPane--"><code>getContentPane()</code></a></dd>
</dl>
</li>
</ul>
<a name="getContentPane--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getContentPane</h4>
<pre><a href="../../java/awt/Container.html" title="class in java.awt">Container</a> getContentPane()</pre>
<div class="block">Returns the contentPane.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the value of the contentPane property.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/RootPaneContainer.html#setContentPane-java.awt.Container-"><code>setContentPane(java.awt.Container)</code></a></dd>
</dl>
</li>
</ul>
<a name="setLayeredPane-javax.swing.JLayeredPane-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLayeredPane</h4>
<pre>void setLayeredPane(<a href="../../javax/swing/JLayeredPane.html" title="class in javax.swing">JLayeredPane</a> layeredPane)</pre>
<div class="block">A Container that manages the contentPane and in some cases a menu bar.
The layeredPane can be used by descendants that want to add a child
to the RootPaneContainer that isn't layout managed. For example
an internal dialog or a drag and drop effect component.
<p>
The layeredPane may not be null.
<p>
Generally implemented with<pre>
getRootPane().setLayeredPane(layeredPane);</pre></div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../java/awt/IllegalComponentStateException.html" title="class in java.awt">IllegalComponentStateException</a></code> - (a runtime
exception) if the layered pane parameter is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/RootPaneContainer.html#getLayeredPane--"><code>getLayeredPane()</code></a>,
<a href="../../javax/swing/JRootPane.html#getLayeredPane--"><code>JRootPane.getLayeredPane()</code></a></dd>
</dl>
</li>
</ul>
<a name="getLayeredPane--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLayeredPane</h4>
<pre><a href="../../javax/swing/JLayeredPane.html" title="class in javax.swing">JLayeredPane</a> getLayeredPane()</pre>
<div class="block">Returns the layeredPane.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the value of the layeredPane property.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/RootPaneContainer.html#setLayeredPane-javax.swing.JLayeredPane-"><code>setLayeredPane(javax.swing.JLayeredPane)</code></a></dd>
</dl>
</li>
</ul>
<a name="setGlassPane-java.awt.Component-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setGlassPane</h4>
<pre>void setGlassPane(<a href="../../java/awt/Component.html" title="class in java.awt">Component</a> glassPane)</pre>
<div class="block">The glassPane is always the first child of the rootPane
and the rootPanes layout manager ensures that it's always
as big as the rootPane. By default it's transparent and
not visible. It can be used to temporarily grab all keyboard
and mouse input by adding listeners and then making it visible.
by default it's not visible.
<p>
The glassPane may not be null.
<p>
Generally implemented with
<code>getRootPane().setGlassPane(glassPane);</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/RootPaneContainer.html#getGlassPane--"><code>getGlassPane()</code></a>,
<a href="../../javax/swing/JRootPane.html#setGlassPane-java.awt.Component-"><code>JRootPane.setGlassPane(java.awt.Component)</code></a></dd>
</dl>
</li>
</ul>
<a name="getGlassPane--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getGlassPane</h4>
<pre><a href="../../java/awt/Component.html" title="class in java.awt">Component</a> getGlassPane()</pre>
<div class="block">Returns the glassPane.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the value of the glassPane property.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../javax/swing/RootPaneContainer.html#setGlassPane-java.awt.Component-"><code>setGlassPane(java.awt.Component)</code></a></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/RootPaneContainer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../javax/swing/RepaintManager.html" title="class in javax.swing"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../javax/swing/RowFilter.html" title="class in javax.swing"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?javax/swing/RootPaneContainer.html" target="_top">Frames</a></li>
<li><a href="RootPaneContainer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
css/guardias.css | cipfpbatoi/intraBatoi | .errGuardia {
background-color: yellow;
}
.noGuardia {
background-color: red;
color: white;
}
|
projects/demos/engineering.purdue.edu/programmingwithobjects/pwocode.html | acabey/acabey.github.io | <!doctype html public "html2.0">
<html>
<head>
<title>Code Examples from "Programming with Objects"</title>
</head>
<body>
<CENTER>
<b><font size=5>
Code Examples
<br>
from
<br>
<A HREF="https://engineering.purdue.edu/kak/programmingwithobjects/"> <b><font size=4 strong> Programming with Objects</font> </b> </A>
<pre>
</pre>
<hr size=8 noshade>
<pre>
</pre>
<pre>
</pre>
</CENTER>
<A HREF="pwocode/chap2/chap2.html"><b><font size=2 strong>Chapter 2: Baby Steps</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap3/chap3.html"><b><font size=2 strong>Chapter 3: The Notion of a Class and Some Other Key Ideas</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap4/chap4.html"><b><font size=2 strong>Chapter 4: Strings</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap5/chap5.html"><b><font size=2 strong>Chapter 5: Using the Container Classes</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap6/chap6.html"><b><font size=2 strong>Chapter 6: The Primitive Types and Their Input/Output</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap7/chap7.html"><b><font size=2 strong>Chapter 7: Declarations, Definitions, and Initializations</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap8/chap8.html"><b><font size=2 strong>Chapter 8: Object Reference and Memory Allocation</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap9/chap9.html"><b><font size=2 strong>Chapter 9: Functions and Methods</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap10/chap10.html"><b><font size=2 strong>Chapter 10: Handling Exceptions</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap11/chap11.html"><b><font size=2 strong>Chapter 11: Classes, The Rest of the Story</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap12/chap12.html"><b><font size=2 strong>Chapter 12: Overloading Operators in C++</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap13/chap13.html"><b><font size=2 strong>Chapter 13: Generics and Templates</font></b></A>
<pre>
</pre>
<b><font size=2 color=blue strong>Chapter 14: Modeling Diagrams for OO Programs <I>(no code in this chapter)</I></font></b>
<pre>
</pre>
<A HREF="pwocode/chap15/chap15.html"><b><font size=2 strong>Chapter 15: Extending Classes</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap16/chap16.html"><b><font size=2 strong>Chapter 16: Multiple Inheritance in C++</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap17/chap17.html"><b><font size=2 strong>Chapter 17: OO for Graphical User Interfaces: A Tour of Three Toolkits</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap18/chap18.html"><b><font size=2 strong>Chapter 18: Multithreaded Object-Oriented Programming</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap19/chap19.html"><b><font size=2 strong>Chapter 19: Network Programming</font></b></A>
<pre>
</pre>
<A HREF="pwocode/chap20/chap20.html"><b><font size=2 strong>Chapter 20: Database Programming</font></b></A>
<pre>
</pre>
<p>
<hr>
<HR SIZE=8 WIDTH=90% SHADE>
<CENTER>
Back to the home page for <A HREF="https://engineering.purdue.edu/kak/programmingwithobjects/"> <b><font size=4 strong> Programming with Objects</font> </b> </A>
</CENTER>
<HR SIZE=8 WIDTH=90% SHADE>
<HR>
</body>
</html>
|
docs/a00010.html | Mystelven/spam-classifier | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Naïve-Bayes-Classifier: Utils.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Naïve-Bayes-Classifier
 <span id="projectnumber">0.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.2 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Structures</a> </div>
<div class="headertitle">
<div class="title">Utils.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <vector></code><br/>
<code>#include <fstream></code><br/>
<code>#include <iostream></code><br/>
<code>#include <sstream></code><br/>
<code>#include <string></code><br/>
</div><div class="textblock"><div class="dynheader">
Include dependency graph for Utils.h:</div>
<div class="dyncontent">
<div class="center"><img src="a00020.png" border="0" usemap="#_utils_8h" alt=""/></div>
<map name="_utils_8h" id="_utils_8h">
</map>
</div>
</div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent">
<div class="center"><img src="a00021.png" border="0" usemap="#_utils_8hdep" alt=""/></div>
<map name="_utils_8hdep" id="_utils_8hdep">
<area shape="rect" id="node2" href="a00007.html" title="NaiveBayes.h" alt="" coords="41,80,145,107"/><area shape="rect" id="node6" href="a00009.html" title="Utils.cc" alt="" coords="170,80,235,107"/><area shape="rect" id="node3" href="a00005.html" title="Main.h" alt="" coords="7,155,69,181"/><area shape="rect" id="node5" href="a00006.html" title="NaiveBayes.cc" alt="" coords="94,155,204,181"/><area shape="rect" id="node4" href="a00004.html" title="Main.cc" alt="" coords="5,229,72,256"/></map>
</div>
</div>
<p><a href="a00010_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="a00003.html">Utils</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">We will perform a lot of String manipulation to classify text or/and to perform NLP in general The function which are not in the Standard Library are static and in this class. <a href="a00003.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Jun 25 2017 22:15:35 for Naïve-Bayes-Classifier by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.2
</small></address>
</body>
</html>
|
www/css/main.css | marknet15/sysmax | @import url(https://fonts.googleapis.com/css?family=Lato);
/* Page layout containers */
#header_container {
text-align:left;
display: inline-block;
padding: 2px;
background-color: #333;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
position:fixed;
top: 0px;
left: 0px;
height: 50px;
width: 100%;
z-index: 99;
}
#header {float: left;}
#header button:hover {
background-color: #111;
}
#logo {
padding-left: 3px;
height:45px;
width: 50px;
float: left;
}
#page_title {height: 50px; float: left;}
#navmenu {
margin-right: 10px;
float: right;
z-index: 100;
}
#searchbox_container {
height: 35px;
float: left;
margin-top: 6px;
margin-right: 10px;
}
#searchbox {
background-image: url('../img/icons8-Search-50.png');
background-position: 2px 2px;
background-repeat: no-repeat;
background-size: 26px 26px;
font-size: 14px;
padding: 6px 15px 8px 30px;
border: 1px solid #ddd;
}
body {
font-family: 'Lato', sans-serif;
margin:0;
padding: 0;
overflow-x: hidden;
overflow-y: auto;
}
#body {
min-height: 400px;
margin-top: 65px;
margin-bottom: 90px;
margin-left: 6px;
margin-right: 6px;
clear: both;
}
#footer {
background-color:#262626;
box-shadow: 0px -3px 5px rgba(0,0,0,0.2);
color:white;
clear:both;
text-align:center;
padding:1px;
position:fixed;
left:0px;
bottom:0px;
height:60px;
width:100%;
z-index: 99;
}
#footer p {padding: 3px; margin: 2px;}
/* Table styling defaults */
th {background-color:seagreen; color:white;}
th, td {
border-radius: 3px;
-webkit-border-radius: 3;
-moz-border-radius: 3;
text-align: left;
border: none;
padding: 8px;
}
tr:nth-child(even){background-color:#f2f2f2}
h1 {
color:white;
font-size: 1.2em;
font-weight: bold;
display: inline-block;
margin:auto;
padding: 12px;
}
b {font-size: medium;} |
2016-2/TecProg/Exemplo em Java e Eclipse/AulaTestes/Eratostenes/doc/testcases/package-frame.html | DaniloBarros/University | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_10) on Sun Jan 27 20:56:42 BRST 2013 -->
<title>testcases</title>
<meta name="date" content="2013-01-27">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../testcases/package-summary.html" target="classFrame">testcases</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="PrimeNumbersGeneratorTest.html" title="class in testcases" target="classFrame">PrimeNumbersGeneratorTest</a></li>
</ul>
</div>
</body>
</html>
|
resources/server/d3/matrix/static/index.html | wandora-team/wandora | <html><head>
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=d3matrix">
</head><body></body></html> |
public/css/style.css | gbus/wolmgr |
.spinner {
width: 20px;
height: 20px;
margin: auto auto;
background-color: #333;
border-radius: 100%;
-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
0% { -webkit-transform: scale(0) }
100% {
-webkit-transform: scale(1.0);
opacity: 0;
}
}
@keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
transform: scale(0);
} 100% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
opacity: 0;
}
}
|
science.html | jlettvin/card3d | <!doctype html>
<!--
Copyright(c) 2012-2015 Jonathan D. Lettvin, All Rights Reserved.
License: GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
-->
<html>
<!-- ********************************************************************** -->
<head>
<style>
table {
border-collapse: collapse;
}
td, th {
border: 1px solid black;
}
</style>
<script type="text/javascript">
var titles = [];
var parity = 0;
var legalese = [
'<small><small><small>\n',
'Copyright(c) 2015 Jonathan D. Lettvin, All Rights Reserved.<br/>\n',
'License: GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html\n',
'</small></small></small>'
].join("\n")
;
function here(f) {
return f.toString().
replace(/^[^\/]+\/\*!?/, '').
replace(/\*\/[^\/]+$/, '');
}
function tag(name, attenuate, atts) {
var level = ['#FFFFFF', '#DDDDDD', '#BBBBBB', '#999999'];
if (attenuate < 0 || attenuate > 3 ) attenuate = 0;
//var buf ''.concat('<', name, ' bgcolor="', level[attenuate], '" ', atts, ">");
var buf = '<' + name + ' bgcolor="' + level[attenuate] + '" ' + atts + ">";
return buf;
}
function comment(text) {
var buf = '<!-- ' + text + ' -->\n';
return buf;
}
function card_head(title, text, identity) {
var buf =
comment(title) +
'<td>\n' +
'<input type="submit" value="OK"/>\n' + identity + '<br/>' +
'<textarea id="[' + title + ']">' + text + '</textarea>\n' +
'</td>\n'
;
return buf;
}
function card(title, text) {
titles.push(title);
parity = parity ^ 1;
var identity = '<b>[' + title + ']</b>';
var buf =
tag('table', parity+1, 'border="1" width="100%"') + '<tr>\n' +
card_head(title, text, identity) +
'</tr></table>\n';
return buf;
}
function newcard() {
parity = parity ^ 1;
var identity = '<b>[</b><input type="text" value="{new}"></input><b>]</b>';
var buf =
tag('table', parity+1, 'border="1" width="100%"') + '<tr>\n' +
card_head('__', '', identity);
'</tr></table>\n';
return buf;
}
function show(text) { document.write(text); }
function header(title) {
var buf = [
'<table width = "100%"><tr>',
' <td>card3d™</td>',
tag('td', 0, ''), 'Edit Card Deck</td>',
'</tr><tr>'+
'<td><input type="submit" value="OK"/> all cards</td>',
'<td>editor ',
'<select name="editor">',
' <option value="html" selected>HTML</option>',
' <option value="emacs">emacs</option>',
' <option value="vi">vi</option>',
'</select>',
'</td>',
'</tr><tr>',
tag('td', 0, 'colspan="2"'), '[', title, ']</td>',
'</tr></table>'
].join("\n");
return buf;
}
</script>
</head>
<!-- ********************************************************************** -->
<body bgcolor="#DDDDDD">
<script type="text/javascript">show(comment(legalese));</script>
<form action="localhost:50000" method="get">
<!-- ********************************************************************** -->
<script type="text/javascript">
//*****************************************************************************
show('<table><tr><td>\n');
show(header('science'));
//*****************************************************************************
show(newcard());
//*****************************************************************************
show(card(
'Head', here(function() {/*!
Elements of a Scientific Paper
*/})));
//*****************************************************************************
show(card(
'Abstract', here(function() {/*!
What I did in a nutshell?
*/})));
//*****************************************************************************
show(card(
'Introduction', here(function() {/*!
What is the problem?
*/})));
//*****************************************************************************
show(card(
'Materials and Methods', here(function() {/*!
How did I solve the problem?
*/})));
//*****************************************************************************
show(card(
'Results', here(function() {/*!
What did I find out?
*/})));
//*****************************************************************************
show(card(
'Discussion', here(function() {/*!
What does it mean?
*/})));
//*****************************************************************************
show(card(
'Acknowledgments', here(function() {/*!
Who helped me?
*/})));
//*****************************************************************************
show(card(
'Literature', here(function() {/*!
To whose work did I refer?
*/})));
//*****************************************************************************
show(card(
'Appendices', here(function() {/*!
Supporting information
as mini-papers.
*/})));
//*****************************************************************************
show(card(
'Appendix|A', here(function() {/*!
Contents of first appendix
*/})));
//*****************************************************************************
show('</td></tr><tr><td>' + legalese);
show('</td></tr></table>\n');
//*****************************************************************************
</script>
</form>
</body>
</html>
|
doc/plugins/writing.html | leowzukw/stog | <plugin title="Stog-writing"
with-contents="true"
>
<contents>
<p>
This plugin adds new rewrite rules to use the following documents in your pages:
</p>
<ul>
<li><doc href="#footnotes"/>,</li>
<li><doc href="#biblio"/>.</li>
</ul>
<section id="download" title="Download">
<div class="alert alert-info">
Stog-writing is available in <ext-a href="http://opam.ocaml.org/">Opam</ext-a>.
With opam installed, just type the following command to install stog-writing:
<command-line>opam install stog-writing</command-line>
</div>
<p>
Stog-writing is <ext-a href="https://github.com/zoggy/stog-writing">hosted on Github</ext-a>.
</p>
<subsection id="releases" title="Releases">
<ul>
<li><a href="stog-writing-0.13.0.tar.gz">0.13.0</a> [2014/10/09]:
<ul>
<li>more powerful format specification in <rule>cite</rule>:
<rule>cite begin="..." end="..." sep="..." format="..."/</rule>
and also look for <rule>cite-begin</rule>, <rule>cite-end</rule>
and <rule>cite-sep</rule> in environment,</li>
<li><rule>bibliography keywords="kwd1,.."</rule> to include bibliography items
having the required keywords associated in <icode>keywords</icode> fields
</li>
</ul>
</li>
<li><a href="stog-writing-0.12.0.tar.gz">0.12.0</a> [2014/05/16]:
<ul>
<li>Upgrade to Stog 0.12.0.</li>
</ul>
</li>
<li><a href="stog-writing-0.11.0.tar.gz">0.11.0</a> [2014/03/20]:
<ul>
<li><rule>note</rule> handles an id attribute used instead of the one
forged from the note number,</li>
<li>follow changes in Stog 0.11.0 (hids->paths, documents instead of elements),</li>
<li>use <rule>doc</rule> tag to generate links to bibliography references.</li>
</ul>
</li>
<li><a href="stog-writing-0.10.0.tar.gz">0.10.0</a> [2014/01/21]:
<ul>
<li>Upgrade to new Stog 0.10.0 architecture,</li>
<li>Add class for footnote links,</li>
<li>Handle multiple references in <rule>cite</rule>,</li>
<li>Apply base rules when bulding bib entries,</li>
<li>Use template <code>bib-entry.tmpl</code>
instead of <code>bib_entry.tmpl</code>,</li>
<li>Fix: generate paragraph link code even for paragraphs with predefined ids,</li>
<li>Simplify auto id generation.</li>
</ul>
</li>
<li><a href="stog-writing-0.8.0.tar.gz">0.8.0</a> [2013/03/19]: Upgrade to Stog 0.8.0.</li>
<li><a href="stog-writing-0.7.0.tar.gz">0.7.0</a> [2013/02/13]: Minor fixes.</li>
<li><a href="stog-writing-0.6.tar.gz">0.6</a>: First numbered release.</li>
</ul>
</subsection>
</section>
<section id="install" title="Installation and usage">
<p>
To install:
</p>
<command-line>
git clone git@github.com:zoggy/stog-writing.git
cd stog-writing
make all install
</command-line>
<p>
(you must have <ext-a href="http://cristal.inria.fr/~fpottier/menhir/">Menhir</ext-a> installed).
This will install the <icode>stog-writing</icode> package with ocamlfind.
</p>
<p>
To use:
</p>
<command-line>
stog --package stog-writing ...
</command-line>
</section>
<section id="footnotes" title="Footnotes">
<p>
Footnotes are defined with the following syntax:
</p>
<hxml><note>...</note></hxml>
<p>
As usual, you can put any xml in the <ixml><note></ixml> node, it will be
rewritten using the current environment.
</p>
<p>
For this to work, all the XML tree containing notes must be
included in a node
</p>
<hxml>
<prepare-notes>
...
</prepare-notes>
</hxml>
<p>
At last, all footnotes are inserted when a <ixml><notes/></ixml> node is encountered.
Numbering is automatic.
</p>
<p>
Example:
</p>
<hxml>
<prepare-notes>
...
bla bla bla<note>Hey, this is a footnote</note>.
...
pim pam poum<note>This is a second note.</note>.
...
<notes/>
</prepare-notes>
</hxml>
</section>
<section id="biblio" title="Bibliography">
<subsection id="definebib" title="Defining bibliographies">
<p>
Bibliographies can be defined in any document header, with the following syntax:
</p>
<hxml><![CDATA[
<bibliographies ...>
<bibliography .../>
<bibliography .../>
...
</bibliographies>
]]></hxml>
<p>
The <ixml><bibliographies></ixml> node can have the following attributes:
</p>
<ul>
<li><ixml>sort="..."</ixml>:
the items in each bibliography will be sorted by default, according
to the given list of comma-separated fields,</li>
<li><ixml>reverse="true"</ixml>:
the items in each bibliography will be sorted in reverse order,</li>
<li><ixml>prefix="..."</ixml>:
a default string to use as prefix for ids of entries read from bibtex files.</li>
</ul>
<p>
Each <ixml><bibliography></ixml> node can have the following attributes:
</p>
<ul>
<li><ixml>name="..."</ixml>:
the name of the bibliography, for further reference; default name is "default";
each bibliography must have a site-wide unique name,</li>
<li><ixml>files="..."</ixml>:
a comma-separated list of filenames, in bibtex format;
filenames are relative to the document source file,</li>
<li><ixml>sort</ixml>, <ixml>reverse</ixml> and <ixml>prefix</ixml>:
can be used to override the same attributes of the <ixml><bibliographies></ixml> node.
</li>
</ul>
<p>
Using attribute <ixml>bib-files="file1.bib,file2.bib,..."</ixml> in an document
header is a shortcut for
</p>
<hxml>
<bibliographies>
<bibliography files="file1.bib,file2.bib,..."/>
</bibliographies>
</hxml>
</subsection>
<subsection id="usingbib" title="Using bibliographies">
<p>
In your pages and posts, you can use this syntax to cite an entry:
</p>
<hxml>
<cite href="entryid"/>
</hxml>
<p>
The format of the reference can be set by various means, in order of priority:
</p>
<ul>
<li>in the children of the <ixml><cite></ixml> node, for example:
<hxml><cite href="..."><bib-entry-author/>, <i><bib-entry-title/></i></cite></hxml>
</li>
<li>using the <ixml>format</ixml> attribute, for example:
<hxml><cite href="entryid" format="$(author): $(title)"/></hxml>
</li>
<li>setting <ixml>cite-format</ixml> in the environment, for example in the header
of the page/article:
<hxml><cite-format><bib-entry-author/>, <i><bib-entry-title/></i></cite-format></hxml>
</li>
</ul>
<p>
These examples will display the contents of the fields <ixml>author</ixml> and <ixml>title</ixml>
of the entry as text for the reference link.
</p>
<p>The default format is <ixml>[<bib-entry-rank/>]</ixml>.</p>
<p>The rank is the position of the item in its bibliography.</p>
<p>
The characters used to enclose the reference text are '[' and ']' but
can be changed:
</p>
<ul>
<li>by using the <ixml>cite-begin</ixml> and <ixml>cite-end</ixml> attributes
in the <rule>cite</rule> rule,</li>
<li>or by defining <ixml>cite-begin</ixml> and <ixml>cite-end</ixml> in the
environement (of the document or for the whole site).
</li>
</ul>
<p>In case the <ixml>href</ixml> attribute contains several references,
a separator is used between reference texts. By default it is "," but it
can be changed by using the <ixml>cite-sep</ixml> attribute in the <rule>cite</rule>
rule, or by setting <ixml>cite-sep</ixml> in the environment.
</p>
<p>
To include the complete list of entries of a bibliography, use the following node:
</p>
<hxml><bibliography/></hxml>
<p>
The attribute <ixml>name="..."</ixml> can be used to specify the name of the bibliography to
insert. Default name is "default". The attribute <ixml>keywords=..."</ixml> allows to
filter the entries according to the keywods they are associated to, using the
<icode>keywords</icode> field in the <icode>.bib</icode> files.
</p>
<p>
The <ixml><bibliography></ixml> node will reduced into the list of its entries,
each entry being inserted using the <icode>bib-entry.tmpl</icode> template. You can use
the <icode>bib-entry.tmpl</icode> file included as an example. You will have to place it in your stog
template directory.
</p>
</subsection>
</section>
</contents>
</plugin> |
javadoc/nl/bioinf/lscheffer_wvanhelvoirt/insanemodel/sessionListeners/package-frame.html | penuts7644/InsaneModel | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_92) on Tue Jul 12 17:05:45 CEST 2016 -->
<title>nl.bioinf.lscheffer_wvanhelvoirt.insanemodel.sessionListeners</title>
<meta name="date" content="2016-07-12">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../nl/bioinf/lscheffer_wvanhelvoirt/insanemodel/sessionListeners/package-summary.html" target="classFrame">nl.bioinf.lscheffer_wvanhelvoirt.insanemodel.sessionListeners</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="FileControlSessionListener.html" title="class in nl.bioinf.lscheffer_wvanhelvoirt.insanemodel.sessionListeners" target="classFrame">FileControlSessionListener</a></li>
</ul>
</div>
</body>
</html>
|
dist/blocks.editor.build.css | a3rev/page-views-count | /**
* #.# Common SCSS
*
* Can include things like variables and mixins
* that are used across the project.
*/
/**
* #.# Editor Styles
*
* CSS for just Backend enqueued after style.scss
* which makes it higher in priority.
*/
.wp-block-cgb-block-page-views-count {
background: #bada55;
border: 0.2rem solid #292929;
color: #292929;
margin: 0 auto;
max-width: 740px;
padding: 2rem;
}
|
documentation/html/d4/dd5/modifier_8count__words_8php.html | keil/phpDBI-MySQL-Database-Interface- | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>PHP MySQL Database Interface: S:/Documents/Projekte/phpDBI/workbench/0.02/logs/classes/smarty/plugins/modifier.count_words.php-Dateireferenz</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css">
<link href="../../doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Erzeugt von Doxygen 1.5.9 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="../../main.html"><span>Hauptseite</span></a></li>
<li><a href="../../namespaces.html"><span>Namensbereiche</span></a></li>
<li><a href="../../annotated.html"><span>Datenstrukturen</span></a></li>
<li class="current"><a href="../../files.html"><span>Dateien</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="../../files.html"><span>Auflistung der Dateien</span></a></li>
<li><a href="../../globals.html"><span>Datei-Elemente</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>S:/Documents/Projekte/phpDBI/workbench/0.02/logs/classes/smarty/plugins/modifier.count_words.php-Dateireferenz</h1><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Namensbereiche</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d1/d54/namespace_smarty.html">Smarty</a></td></tr>
<tr><td colspan="2"><br><h2>Funktionen</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d4/dd5/modifier_8count__words_8php.html#a3741a4dcd626f2005f70000f9005ae7">smarty_modifier_count_words</a> ($string)</td></tr>
</table>
<hr><h2>Dokumentation der Funktionen</h2>
<a class="anchor" name="a3741a4dcd626f2005f70000f9005ae7"></a><!-- doxytag: member="modifier.count_words.php::smarty_modifier_count_words" ref="a3741a4dcd626f2005f70000f9005ae7" args="($string)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">smarty_modifier_count_words </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"> <em>string</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<a class="el" href="../../d0/d2e/class_smarty.html">Smarty</a> count_words modifier plugin<p>
Type: modifier<br>
Name: count_words<br>
Purpose: count the number of words in a text <a class="el" href="../../">count_words (Smarty online manual) Monte Ohrt </a> <dl compact><dt><b>Parameter:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>string</em> </td><td></td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Rückgabe:</b></dt><dd>integer </dd></dl>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Erzeugt am Fri Dec 25 15:32:55 2009 für PHP MySQL Database Interface von
<a href="http://www.doxygen.org/index.html">
<img src="../../doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
</body>
</html>
|
browser/its-states.html | Bitergia/inktank-ceph-dashboard | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Bitergia" >
<link rel="shortcut icon" href="../../assets/ico/favicon.png">
<title></title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/jasny-bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/custom.css" rel="stylesheet">
<!-- icons -->
<link rel="stylesheet" href="./css/awesome/css/font-awesome.min.css">
<!-- Type ahead style -->
<link href="./css/typeahead.css" rel="stylesheet">
<!-- custom -->
<!-- <link rel="stylesheet" href="VizGrimoireJS/custom.css">-->
<link rel="stylesheet" type="text/css" id="theme" href="./css/vizgrimoire.css">
</head>
<body>
<div id="Navbar"></div>
<div class="container-fluid">
<div class="row"><span class="SectionBreadcrumb col-md-12"></span></div>
<!-- Section HTML will be placed here, do not modify manually -->
<!-- REPLACE SECTION HTML -->
<div class="well">
<div class="row">
<div class="col-md-12">
<p><i><b>Evolution of States</b> charts show the evolution of
the states in the analysis of the issue tracking system.
</i></p>
<p><i>Each chart represents the number of issues in such state
in each period of time.</i></P>
</div>
</div>
<!--<div class="row">
<div class="col-md-12">-->
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="New"
data-min="true" help="false" data-custom-title="<strong>New</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Verified"
data-min="true" help="false" data-custom-title="<strong>Verified</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="In Progress"
data-min="true" help="false" data-custom-title="<strong>In Progress</strong>"
style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Closed"
data-min="true" help="false" data-custom-title="<strong>Closed</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Resolved"
data-min="true" help="false" data-custom-title="<strong>Resolved</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Rejected"
data-min="true" help="false" data-custom-title="<strong>Rejected</strong>"
style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Duplicate"
data-min="true" help="false" data-custom-title="<strong>Duplicate</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Won\'t Fix"
data-min="true" help="false" data-custom-title="<strong>Won't Fix</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Can\'t reproduce"
data-min="true" help="false" data-custom-title="<strong>Can't reproduce</strong>"
style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Feedback"
data-min="true" help="false" data-custom-title="<strong>Feedback</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Need More Info"
data-min="true" help="false" data-custom-title="<strong>Need More Info</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Need Review"
data-min="true" help="false" data-custom-title="<strong>Need Review</strong>"
style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Testing"
data-min="true" help="false" data-custom-title="<strong>Testing</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Pending Backport"
data-min="true" help="false" data-custom-title="<strong>Pending Backport</strong>"
style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="Pending Upstream"
data-min="true" help="false" data-custom-title="<strong>Pending Upstream</strong>"
style="height:120px;"></div>
</div>
</div>
</div>
<div class="well">
<div class="row">
<div class="col-md-12">
<p><i><b>Current Status</b> charts show the current 'photo' of each of the states.
</i></p>
<p><i>For each of the states shown, it is specified when the issue was born.</i></P>
</div>
</div>
<!-- -->
<div class="span4">
</div>
<div class="span4">
</div>
<div class="span4">
</div>
</div>
<div class="row-fluid" style="padding-bottom:25px;">
<div class="span4">
</div>
<div class="span4">
</div>
<div class="span4">
</div>
</div>
<div class="row-fluid" style="padding-bottom:25px;">
<div class="span4">
</div>
<div class="span4">
</div>
<div class="span4">
</div>
</div>
<div class="row-fluid" style="padding-bottom:25px;">
<div class="span4">
</div>
<div class="span4">
</div>
<div class="span4">
</div>
</div>
<div class="row-fluid" style="padding-bottom:25px;">
<div class="span4">
</div>
<div class="span4">
</div>
<div class="span4">
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_New"
data-min="true" help="false" data-custom-title="<strong>Current status 'New'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Verified"
data-min="true" help="false" data-custom-title="<strong>Current status 'Verified'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_In Progress"
data-min="true" help="false" data-custom-title="<strong>Current status 'In Progress'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Closed"
data-min="true" help="false" data-custom-title="<strong>Current status 'Closed'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Resolved"
data-min="true" help="false" data-custom-title="<strong>Current status 'Resolved'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Rejected"
data-min="true" help="false" data-custom-title="<strong>Current status 'Rejected'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Duplicate"
data-min="true" help="false" data-custom-title="<strong>Current status 'Duplicate'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Won\'t Fix"
data-min="true" help="false" data-custom-title="<strong>Current status 'Won't Fix'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Can\'t reproduce"
data-min="true" help="false" data-custom-title="<strong>Current status 'Can't reproduce'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Feedback"
data-min="true" help="false" data-custom-title="<strong>Current status 'Feedback'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Need More Info"
data-min="true" help="false" data-custom-title="<strong>Current status 'Need More Info'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Need Review"
data-min="true" help="false" data-custom-title="<strong>Current status 'Need Review'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Testing"
data-min="true" help="false" data-custom-title="<strong>Current status 'Testing'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Pending Backport"
data-min="true" help="false" data-custom-title="<strong>Current status 'Pending Backport'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
<div class="col-md-4">
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Pending Upstream"
data-min="true" help="false" data-custom-title="<strong>Current status 'Pending Upstream'</strong>"
data-graph="bars" style="height:120px;"></div>
</div>
</div>
</div>
<div class="well">
<div class="row">
<div class="col-md-3">
<p><i><b>The most likely changes</b> tables show the percentages of changes among states.
</i></p>
</div>
<div class="col-md-9">
<div class="MarkovTable" data-data-source="its" data-title="Transitions among statuses"></div>
</div>
</div>
</div>
<!-- END SECTION HTML-->
<footer>
<div id="Footer"></div>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./lib/jquery-1.11.1.min.js"></script>
<script src="./lib/jquery.tablesorter.min.js"></script>
<script src="./lib/bootstrap-3.1.1.min.js"></script>
<script src="./lib/jasny-bootstrap-3.1.3.min.js"></script>
<script src="./lib/vizgrimoire.min.js"></script>
<script src="./lib/timezones.js"></script>
<script src="./lib/filter_panel.js"></script>
<script src="./lib/events.js"></script>
<script src="./lib/project_comparison.js"></script>
<script src="./lib/typeahead.jquery.js"></script>
<script src="./lib/search.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.collapse').on('shown.bs.collapse', function(){
$(this).parent().find(".fa-plus").removeClass("fa-plus").addClass("fa-minus");
}).on('hidden.bs.collapse', function(){
$(this).parent().find(".fa-minus").removeClass("fa-minus").addClass("fa-plus");
});
});
</script>
<!-- Piwik code will be included here-->
<!-- Piwik -->
<!-- End Piwik Code -->
<!-- End of Piwik code -->
</body>
</html>
|
doc/data/class-use/Vote.html | LO23TD01/LO23TD01 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="fr">
<head>
<!-- Generated by javadoc (1.8.0_111) on Wed Jan 11 00:03:24 CET 2017 -->
<title>Uses of Class data.Vote</title>
<meta name="date" content="2017-01-11">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class data.Vote";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../data/Vote.html" title="class in data">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?data/class-use/Vote.html" target="_top">Frames</a></li>
<li><a href="Vote.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class data.Vote" class="title">Uses of Class<br>data.Vote</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../data/Vote.html" title="class in data">Vote</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#data">data</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="data">
<!-- -->
</a>
<h3>Uses of <a href="../../data/Vote.html" title="class in data">Vote</a> in <a href="../../data/package-summary.html">data</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../data/package-summary.html">data</a> that return types with arguments of type <a href="../../data/Vote.html" title="class in data">Vote</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>javafx.collections.ObservableList<<a href="../../data/Vote.html" title="class in data">Vote</a>></code></td>
<td class="colLast"><span class="typeNameLabel">GameTable.</span><code><span class="memberNameLink"><a href="../../data/GameTable.html#getVoteCasted--">getVoteCasted</a></span>()</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../data/package-summary.html">data</a> with parameters of type <a href="../../data/Vote.html" title="class in data">Vote</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">GameTable.</span><code><span class="memberNameLink"><a href="../../data/GameTable.html#castVote-data.Vote-">castVote</a></span>(<a href="../../data/Vote.html" title="class in data">Vote</a> vote)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructor parameters in <a href="../../data/package-summary.html">data</a> with type arguments of type <a href="../../data/Vote.html" title="class in data">Vote</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../data/GameTable.html#GameTable-java.util.UUID-java.lang.String-data.User-data.Parameters-java.util.List-java.util.List-data.GameState-data.Chat-data.Record-java.util.List-">GameTable</a></span>(java.util.UUID uid,
java.lang.String name,
<a href="../../data/User.html" title="class in data">User</a> creator,
<a href="../../data/Parameters.html" title="class in data">Parameters</a> parameters,
java.util.List<<a href="../../data/User.html" title="class in data">User</a>> playerList,
java.util.List<<a href="../../data/User.html" title="class in data">User</a>> spectatorList,
<a href="../../data/GameState.html" title="class in data">GameState</a> gameState,
<a href="../../data/Chat.html" title="class in data">Chat</a> localChat,
<a href="../../data/Record.html" title="class in data">Record</a> record,
java.util.List<<a href="../../data/Vote.html" title="class in data">Vote</a>> voteCasted)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../data/Vote.html" title="class in data">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?data/class-use/Vote.html" target="_top">Frames</a></li>
<li><a href="Vote.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
libs/qwt-6.1.4/doc/html/functions_func_s.html | digifant/multidisplay-app | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.14"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Qwt User's Guide: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(initResizable);
/* @license-end */</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Qwt User's Guide
 <span id="projectnumber">6.1.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.14 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('functions_func_s.html','');});
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a id="index_s"></a>- s -</h3><ul>
<li>QwtSamplingThread()
: <a class="el" href="class_qwt_sampling_thread.html#afb02e4696306d5211b4b6470410afbfc">QwtSamplingThread</a>
</li>
<li>QwtScaleDiv()
: <a class="el" href="class_qwt_scale_div.html#a724dd19a63de442c0eb493308649ff19">QwtScaleDiv</a>
</li>
<li>QwtScaleDraw()
: <a class="el" href="class_qwt_scale_draw.html#adbd01ba8d7f19fb3122f917b1c74145b">QwtScaleDraw</a>
</li>
<li>QwtScaleEngine()
: <a class="el" href="class_qwt_scale_engine.html#a4ad501667558e5095d36cc190d12790d">QwtScaleEngine</a>
</li>
<li>QwtScaleMap()
: <a class="el" href="class_qwt_scale_map.html#a9576a2e19c0be1d036fee344ab68f542">QwtScaleMap</a>
</li>
<li>QwtScaleWidget()
: <a class="el" href="class_qwt_scale_widget.html#addfd5f0802f85f8abee1d3ff7a1617d6">QwtScaleWidget</a>
</li>
<li>QwtSeriesData()
: <a class="el" href="class_qwt_series_data.html#a3f075340d18fb112a342d74716eb8d9c">QwtSeriesData< T ></a>
</li>
<li>QwtSeriesStore()
: <a class="el" href="class_qwt_series_store.html#aa23545f522f87da936c0f095ee07c80e">QwtSeriesStore< T ></a>
</li>
<li>QwtSetSample()
: <a class="el" href="class_qwt_set_sample.html#af506c3484b65d5de2b6042755066ff81">QwtSetSample</a>
</li>
<li>QwtSetSeriesData()
: <a class="el" href="class_qwt_set_series_data.html#ae28991355a06876fcd14d760771e431b">QwtSetSeriesData</a>
</li>
<li>QwtSimpleCompassRose()
: <a class="el" href="class_qwt_simple_compass_rose.html#a66cc98efe5717eaf11fb0e713cd1aa21">QwtSimpleCompassRose</a>
</li>
<li>QwtSlider()
: <a class="el" href="class_qwt_slider.html#a6012d14e7a24752fca8828e1e1bedaa4">QwtSlider</a>
</li>
<li>QwtSpline()
: <a class="el" href="class_qwt_spline.html#a5d1e0ba35c637a88c66d9e4cbaf36e93">QwtSpline</a>
</li>
<li>QwtSplineCurveFitter()
: <a class="el" href="class_qwt_spline_curve_fitter.html#a98ae80240b254df85dcc44e1f3e4e830">QwtSplineCurveFitter</a>
</li>
<li>QwtSymbol()
: <a class="el" href="class_qwt_symbol.html#a710105d32ed915db46e4dbddc9cf6dc4">QwtSymbol</a>
</li>
<li>QwtSyntheticPointData()
: <a class="el" href="class_qwt_synthetic_point_data.html#ad2980a20669d9703046e9ded9cacf496">QwtSyntheticPointData</a>
</li>
<li>QwtSystemClock()
: <a class="el" href="class_qwt_system_clock.html#a384e20d6049376575bf28306154854fd">QwtSystemClock</a>
</li>
<li>s1()
: <a class="el" href="class_qwt_scale_map.html#a64b15c76aa63a521447215018c75bf37">QwtScaleMap</a>
</li>
<li>s2()
: <a class="el" href="class_qwt_scale_map.html#a7c8c969923c15880c4620be1d814ef18">QwtScaleMap</a>
</li>
<li>sample()
: <a class="el" href="class_qwt_array_series_data.html#a370320fa49b8056656b61f4df79b778b">QwtArraySeriesData< T ></a>
, <a class="el" href="class_qwt_c_pointer_data.html#a7e6e149f5eadd13dd9ed5e1343f09527">QwtCPointerData</a>
, <a class="el" href="class_qwt_point_array_data.html#a10885ad1783151831a11f1cc659a98c5">QwtPointArrayData</a>
, <a class="el" href="class_qwt_sampling_thread.html#a67c4a524736808dc1ba3b81670c0cbd5">QwtSamplingThread</a>
, <a class="el" href="class_qwt_series_data.html#ae8650d16c07c58f01897ab48658a3266">QwtSeriesData< T ></a>
, <a class="el" href="class_qwt_series_store.html#a09f98212173ac6de604d8b63ebf6bb0a">QwtSeriesStore< T ></a>
, <a class="el" href="class_qwt_synthetic_point_data.html#ac8be76b9c09c80fec51c978ad020aaec">QwtSyntheticPointData</a>
</li>
<li>samples()
: <a class="el" href="class_qwt_array_series_data.html#aed41086c625b95d7446abfe548738b97">QwtArraySeriesData< T ></a>
</li>
<li>sampleWidth()
: <a class="el" href="class_qwt_plot_abstract_bar_chart.html#a25bb74331fa28bf0ea555dff0ca9d3cb">QwtPlotAbstractBarChart</a>
</li>
<li>scaleChange()
: <a class="el" href="class_qwt_abstract_scale.html#a0dbb7bdc557c0a7b163643e41970ed6a">QwtAbstractScale</a>
, <a class="el" href="class_qwt_abstract_slider.html#a491fe8bbe771fb51bf35d429d4b92e05">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_dial.html#a0cee4448e2753ed259917f1874a3e158">QwtDial</a>
, <a class="el" href="class_qwt_scale_widget.html#af151a963ea3cb7f04815db93e8f4882d">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a31ae4c53eb17d77ee0fd846ff6eea7e3">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a3f2f5077580235a5a776805a9721c8ba">QwtThermo</a>
</li>
<li>scaledBoundingRect()
: <a class="el" href="class_qwt_graphic.html#a15ceddea362b94880b22d16c2d4089d9">QwtGraphic</a>
</li>
<li>scaleDiv()
: <a class="el" href="class_qwt_abstract_scale.html#a68d4d5a6f44ae4574d5ad8200aaa017f">QwtAbstractScale</a>
, <a class="el" href="class_qwt_abstract_scale_draw.html#ad15e796d2fd8bd1e2cfa66715bf58e2e">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_plot_scale_item.html#a3b70b2b9a3fe31840f92c431288569be">QwtPlotScaleItem</a>
</li>
<li>scaleDivChanged()
: <a class="el" href="class_qwt_scale_widget.html#a55c52717ede368069f5f44b9901e3400">QwtScaleWidget</a>
</li>
<li>scaleDraw()
: <a class="el" href="class_qwt_dial.html#adaa9a23f4e19d3cd085db1c61665d1d6">QwtDial</a>
, <a class="el" href="class_qwt_knob.html#a75e38a6c20b85455630d72f9586355e3">QwtKnob</a>
, <a class="el" href="class_qwt_plot_scale_item.html#a5ac9c0f71fb5e12166027d6e0b37c429">QwtPlotScaleItem</a>
, <a class="el" href="class_qwt_scale_widget.html#a2f6d30104f89c45d4d18f060ebabb8b9">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a44a95d015b9b846b86ab1a0a44c93617">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a33b8af6538a01433f73971f3532d0ce0">QwtThermo</a>
</li>
<li>scaledSymbolWidth()
: <a class="el" href="class_qwt_plot_trading_curve.html#ac288b8585704112ef51d6d55d86536e5">QwtPlotTradingCurve</a>
</li>
<li>scaleEngine()
: <a class="el" href="class_qwt_abstract_scale.html#a5dc4f746d4dfacb8a1a57cf85deccf64">QwtAbstractScale</a>
</li>
<li>scaleInnerRect()
: <a class="el" href="class_qwt_dial.html#a3ac69c922a02d30148431e9c861dd7cf">QwtDial</a>
</li>
<li>scaleMap()
: <a class="el" href="class_qwt_abstract_scale.html#a116c7877f4d9fc3620ffa713b5bbdb96">QwtAbstractScale</a>
, <a class="el" href="class_qwt_abstract_scale_draw.html#a2582c30e82f8977877ac8044253f1fb8">QwtAbstractScaleDraw</a>
</li>
<li>scaleMaxMajor()
: <a class="el" href="class_qwt_abstract_scale.html#a951e85ddbf8b0edaa91a9d300a92dd4e">QwtAbstractScale</a>
</li>
<li>scaleMaxMinor()
: <a class="el" href="class_qwt_abstract_scale.html#ae6e5881dddd6d1340be4750c115d29dd">QwtAbstractScale</a>
</li>
<li>scalePosition()
: <a class="el" href="class_qwt_slider.html#a9da839180f7f39ccf002326a98bf842f">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#ae8f4e4ceb3c3c6798d026190e9946e8d">QwtThermo</a>
</li>
<li>scaleRect()
: <a class="el" href="class_qwt_plot_item.html#a43930f6c9bf9338130d2e098834732f4">QwtPlotItem</a>
, <a class="el" href="class_qwt_plot_layout.html#a98fd0aacd18fc11c2bf5f944e13e63ab">QwtPlotLayout</a>
, <a class="el" href="class_qwt_plot_picker.html#ac15a71b19aca88fa850298975ec18eee">QwtPlotPicker</a>
</li>
<li>scaleStepSize()
: <a class="el" href="class_qwt_abstract_scale.html#a6fa69e27596cef1672cf8bf3c3dc547c">QwtAbstractScale</a>
</li>
<li>scrolledTo()
: <a class="el" href="class_qwt_abstract_slider.html#af19ab98a4101c2eaa43de2df7ebe4d0d">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_dial.html#abb60ad92a03cabf8cc77ad0a8600b4a1">QwtDial</a>
, <a class="el" href="class_qwt_knob.html#ac7152ca1ac7217d84bcf30b072830284">QwtKnob</a>
, <a class="el" href="class_qwt_slider.html#abdc46019ab7fe94c17b0847a746d3f9a">QwtSlider</a>
</li>
<li>scrollExtent()
: <a class="el" href="class_qwt_abstract_legend.html#a619f3705f6f9be8c1f38df68d83a37ff">QwtAbstractLegend</a>
, <a class="el" href="class_qwt_legend.html#af6479d6dd8ac45142ce0da5d8be29a2a">QwtLegend</a>
</li>
<li>sDist()
: <a class="el" href="class_qwt_scale_map.html#a953eb3e6584d8a6ca4d5fff98a9a0aa0">QwtScaleMap</a>
</li>
<li>selected()
: <a class="el" href="class_qwt_picker.html#a283ec139021c9b5e95d1472a9c902c7e">QwtPicker</a>
, <a class="el" href="class_qwt_plot_picker.html#a28f6c8af0efd0abb6dc144670efbb31b">QwtPlotPicker</a>
</li>
<li>selection()
: <a class="el" href="class_qwt_picker.html#afd68f9e99ed124186418e54dd995a893">QwtPicker</a>
</li>
<li>selectionType()
: <a class="el" href="class_qwt_picker_machine.html#a9020aadf1a13436b4ea072b9ab57d112">QwtPickerMachine</a>
</li>
<li>setAbortKey()
: <a class="el" href="class_qwt_panner.html#acbb1b9e30214354708e1d75db6b78289">QwtPanner</a>
</li>
<li>setAbstractScaleDraw()
: <a class="el" href="class_qwt_abstract_scale.html#a950c5bf521dc704b78f76c7951346288">QwtAbstractScale</a>
</li>
<li>setAlarmBrush()
: <a class="el" href="class_qwt_thermo.html#a3d2e1c17d3630cd9dda66bcf913a7a60">QwtThermo</a>
</li>
<li>setAlarmEnabled()
: <a class="el" href="class_qwt_thermo.html#a0ebd05c24f051ac7d6b98f9e8a0c3035">QwtThermo</a>
</li>
<li>setAlarmLevel()
: <a class="el" href="class_qwt_thermo.html#a14657d853d79682452f329d9b37461a3">QwtThermo</a>
</li>
<li>setAlignCanvasToScale()
: <a class="el" href="class_qwt_plot_layout.html#ad243b9afc9b5ce9530b500dc35096d67">QwtPlotLayout</a>
</li>
<li>setAlignCanvasToScales()
: <a class="el" href="class_qwt_plot_layout.html#a147fcf4c59b34779b5a7dc7361a3b6c3">QwtPlotLayout</a>
</li>
<li>setAlignment()
: <a class="el" href="class_qwt_knob.html#ab84683292e11b7c3de4855d844b5471c">QwtKnob</a>
, <a class="el" href="class_qwt_plot_legend_item.html#a7f0bc77d242fe1977d8dee501fa5240f">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_scale_item.html#af11343d14c4ee38e0527cedd52b3da85">QwtPlotScaleItem</a>
, <a class="el" href="class_qwt_scale_draw.html#a7a4de0055dc1358e55c3357366a54091">QwtScaleDraw</a>
, <a class="el" href="class_qwt_scale_widget.html#ab6421ace2bd56d5559689522336556e0">QwtScaleWidget</a>
</li>
<li>setAlpha()
: <a class="el" href="class_qwt_plot_raster_item.html#a14f2ab8ec0994384e6269f869c352273">QwtPlotRasterItem</a>
</li>
<li>setAngleRange()
: <a class="el" href="class_qwt_round_scale_draw.html#a5d85678fdb9fbb4d622425aab9ecc681">QwtRoundScaleDraw</a>
</li>
<li>setAspectRatio()
: <a class="el" href="class_qwt_plot_rescaler.html#a31f71937b4cff3e60f74db83beb6d2de">QwtPlotRescaler</a>
</li>
<li>setAttribute()
: <a class="el" href="class_qwt_plot_direct_painter.html#a498b9857a09e399010a3f8bc9c235a8d">QwtPlotDirectPainter</a>
, <a class="el" href="class_qwt_scale_engine.html#acf02a88f6e778edbc9e005960f35b3b7">QwtScaleEngine</a>
</li>
<li>setAttributes()
: <a class="el" href="class_qwt_scale_engine.html#acd73d5f27b5db0bc7ee673eb6fe9810d">QwtScaleEngine</a>
</li>
<li>setAutoDelete()
: <a class="el" href="class_qwt_plot_dict.html#a3291431f0a9cca5b2affc5adf17bbdfb">QwtPlotDict</a>
</li>
<li>setAutoReplot()
: <a class="el" href="class_qwt_plot.html#ab1cbce6d43ff9772735a9df9104f882f">QwtPlot</a>
</li>
<li>setAxes()
: <a class="el" href="class_qwt_plot_item.html#a6f6c7b34fe86e8029914b3b780b55ea4">QwtPlotItem</a>
</li>
<li>setAxis()
: <a class="el" href="class_qwt_plot_picker.html#aa901c86543585c7056133a5cb6652e3d">QwtPlotPicker</a>
, <a class="el" href="class_qwt_plot_zoomer.html#a6cb755e06b83e50e8353dd706f7fb6f0">QwtPlotZoomer</a>
</li>
<li>setAxisAutoScale()
: <a class="el" href="class_qwt_plot.html#a6fb58f90366920f234440fceead50432">QwtPlot</a>
</li>
<li>setAxisEnabled()
: <a class="el" href="class_qwt_plot_magnifier.html#ac8806df408b5ed9eac79cd38e5fc1508">QwtPlotMagnifier</a>
, <a class="el" href="class_qwt_plot_panner.html#acbd5d67684c5a20ea0115e66f69540e4">QwtPlotPanner</a>
</li>
<li>setAxisFont()
: <a class="el" href="class_qwt_plot.html#acc41555693a8dc107c9cb3274f90c4dd">QwtPlot</a>
</li>
<li>setAxisLabelAlignment()
: <a class="el" href="class_qwt_plot.html#a19f1b67fa79b80c712cf5f52b97ea0c5">QwtPlot</a>
</li>
<li>setAxisLabelRotation()
: <a class="el" href="class_qwt_plot.html#ad5fa7aa01c88eab38ad64b131584f977">QwtPlot</a>
</li>
<li>setAxisMaxMajor()
: <a class="el" href="class_qwt_plot.html#a34df698558c9bd9c38bdd8ff04cc6c41">QwtPlot</a>
</li>
<li>setAxisMaxMinor()
: <a class="el" href="class_qwt_plot.html#aa45b271684d6202061f1afcfa70e7cf6">QwtPlot</a>
</li>
<li>setAxisScale()
: <a class="el" href="class_qwt_plot.html#aba1acef95ee9965520bd0cd1680efdbd">QwtPlot</a>
</li>
<li>setAxisScaleDiv()
: <a class="el" href="class_qwt_plot.html#a2365da57b983eb39752fa4f6378c225a">QwtPlot</a>
</li>
<li>setAxisScaleDraw()
: <a class="el" href="class_qwt_plot.html#a956a14b08e016eb83768ff4187d3849d">QwtPlot</a>
</li>
<li>setAxisScaleEngine()
: <a class="el" href="class_qwt_plot.html#abf09452377b53e584a5086354a134d78">QwtPlot</a>
</li>
<li>setAxisTitle()
: <a class="el" href="class_qwt_plot.html#a5d60f1836e05e5cc5c7fe9570d6a608a">QwtPlot</a>
</li>
<li>setAzimuth()
: <a class="el" href="class_qwt_point_polar.html#a32c6c64510fce3e087d332305b4aca9e">QwtPointPolar</a>
</li>
<li>setBackgroundBrush()
: <a class="el" href="class_qwt_plot_legend_item.html#a82c391eecd2752c3a85a274973f34b6e">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_text.html#af016a747b234aede9f0cbbeb06ed2802">QwtText</a>
</li>
<li>setBackgroundMode()
: <a class="el" href="class_qwt_plot_legend_item.html#a4974efd3548c1335f0969275a95e7cba">QwtPlotLegendItem</a>
</li>
<li>setBarTitles()
: <a class="el" href="class_qwt_plot_multi_bar_chart.html#ab519e583c3463e260c8f47be67aa9b8e">QwtPlotMultiBarChart</a>
</li>
<li>setBase()
: <a class="el" href="class_qwt_scale_engine.html#afdabe4fd2a89b7cd5a21cdc9ac2269d6">QwtScaleEngine</a>
</li>
<li>setBaseline()
: <a class="el" href="class_qwt_plot_abstract_bar_chart.html#adafbea42ddc3f7f639f2880a4bf683ad">QwtPlotAbstractBarChart</a>
, <a class="el" href="class_qwt_plot_curve.html#adbb5da6798a60138315b18194cf1ca1e">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#a53f9c6d978d8734303afed982f7eb90d">QwtPlotHistogram</a>
</li>
<li>setBorderDist()
: <a class="el" href="class_qwt_scale_widget.html#abbbd5a501ab683e170d52250463c61bb">QwtScaleWidget</a>
</li>
<li>setBorderDistance()
: <a class="el" href="class_qwt_plot_legend_item.html#a3b427d5be0bbb757ea8b8da377511554">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_scale_item.html#ae6e2fc87f445357555a3b1b54da054fa">QwtPlotScaleItem</a>
</li>
<li>setBorderFlags()
: <a class="el" href="class_qwt_interval.html#ad1bce23251519f0d44937413f8547dc5">QwtInterval</a>
</li>
<li>setBorderPen()
: <a class="el" href="class_qwt_plot_legend_item.html#a92d38a3db46df13cc325c3ec8ea63768">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_text.html#aca4dd700b7a182114a8c0eb864c4ec2f">QwtText</a>
</li>
<li>setBorderRadius()
: <a class="el" href="class_qwt_plot_canvas.html#a1e5c325697c0e892bf0e4e514d50177c">QwtPlotCanvas</a>
, <a class="el" href="class_qwt_plot_legend_item.html#afe9ab7925e12c81d7534343de29ae9cf">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_text.html#a7c62dfe82aa94f113cd4f8702bd2242c">QwtText</a>
</li>
<li>setBorderWidth()
: <a class="el" href="class_qwt_knob.html#aed67501daa4221542249013cdef82bae">QwtKnob</a>
, <a class="el" href="class_qwt_slider.html#ac959075a8ea10f52aa366a380508f159">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a7b58050d57df6bbe2c1e067495f8a3dc">QwtThermo</a>
, <a class="el" href="class_qwt_wheel.html#a50a2046f1151af7599aee3ad8f4e3ff0">QwtWheel</a>
</li>
<li>setBoundingRect()
: <a class="el" href="class_qwt_point_mapper.html#a03910571df91575456e98134f6543650">QwtPointMapper</a>
</li>
<li>setBrush()
: <a class="el" href="class_qwt_interval_symbol.html#a37b432508493d77342cf75f5baea7533">QwtIntervalSymbol</a>
, <a class="el" href="class_qwt_plot_curve.html#adc52ea882ec1f994e2d2e23c7465b0c2">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#a0bf40c3f9f9074cac5deecd4525583b3">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#a3102b513c27c54775fd371858aa31bba">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_shape_item.html#ac73e7b2bc260f50dd997e078384a3d6b">QwtPlotShapeItem</a>
, <a class="el" href="class_qwt_plot_zone_item.html#a29d7add8c10cde3c5710354cd0d033a8">QwtPlotZoneItem</a>
, <a class="el" href="class_qwt_symbol.html#afe72b22be876e8a8ac70a30671732d84">QwtSymbol</a>
</li>
<li>setCachePolicy()
: <a class="el" href="class_qwt_plot_raster_item.html#a31f74199f7e333c2683b0f18289e4c7f">QwtPlotRasterItem</a>
, <a class="el" href="class_qwt_symbol.html#a4c358a923bdcb122a59f21eb419f1bc6">QwtSymbol</a>
</li>
<li>setCanvas()
: <a class="el" href="class_qwt_plot.html#aea67c885034219789b360c0e624bfeaf">QwtPlot</a>
</li>
<li>setCanvasBackground()
: <a class="el" href="class_qwt_plot.html#adb0b2e68d86039f86e3240fb399fa0fe">QwtPlot</a>
</li>
<li>setCanvasMargin()
: <a class="el" href="class_qwt_plot_layout.html#a11667dad6675a7a58cc60ab1597b1203">QwtPlotLayout</a>
</li>
<li>setCanvasRect()
: <a class="el" href="class_qwt_plot_layout.html#ab3d6614684b96a5879300476d2df8f8f">QwtPlotLayout</a>
</li>
<li>setChecked()
: <a class="el" href="class_qwt_legend_label.html#aec4affb8dbd281a7a8c5511c3ebf5ff8">QwtLegendLabel</a>
</li>
<li>setChunkSize()
: <a class="el" href="class_qwt_weeding_curve_fitter.html#a9f17a819447cba0e733bd71d90ee2766">QwtWeedingCurveFitter</a>
</li>
<li>setClipping()
: <a class="el" href="class_qwt_plot_direct_painter.html#ac3d406aada74b7d9202c1017d8347708">QwtPlotDirectPainter</a>
</li>
<li>setClipRegion()
: <a class="el" href="class_qwt_plot_direct_painter.html#a0c97174b06957f9b20ea295ff403a557">QwtPlotDirectPainter</a>
</li>
<li>setColor()
: <a class="el" href="class_qwt_alpha_color_map.html#a372ba8791102270991473897fb36a965">QwtAlphaColorMap</a>
, <a class="el" href="class_qwt_symbol.html#a046443d76371c92add79e1f360bf3134">QwtSymbol</a>
, <a class="el" href="class_qwt_text.html#ac7de5839a5c3b1ee367cfbd5691aa105">QwtText</a>
</li>
<li>setColorBarEnabled()
: <a class="el" href="class_qwt_scale_widget.html#aeb337b8e67fc00ca98bf39a6d70aea61">QwtScaleWidget</a>
</li>
<li>setColorBarWidth()
: <a class="el" href="class_qwt_scale_widget.html#a76eb179267a572944d1ebdbf62c573f1">QwtScaleWidget</a>
</li>
<li>setColorInterval()
: <a class="el" href="class_qwt_linear_color_map.html#abfae35c30755c0bbd1447342055e9a13">QwtLinearColorMap</a>
</li>
<li>setColorMap()
: <a class="el" href="class_qwt_plot_spectro_curve.html#a67d046af16feeddc9bec08c698b46446">QwtPlotSpectroCurve</a>
, <a class="el" href="class_qwt_plot_spectrogram.html#a55375b61c01962b06ad222c980ca2dcc">QwtPlotSpectrogram</a>
, <a class="el" href="class_qwt_scale_widget.html#a3cfd919d042007accd3fdb3fcd75045c">QwtScaleWidget</a>
, <a class="el" href="class_qwt_thermo.html#ad2ac0e2d496fd3d28f83f61728b83337">QwtThermo</a>
</li>
<li>setColorRange()
: <a class="el" href="class_qwt_plot_spectro_curve.html#a133f4117e925a1faed456bd9524477e4">QwtPlotSpectroCurve</a>
</li>
<li>setCommands()
: <a class="el" href="class_qwt_graphic.html#a22cd36c524b08834bac74337aea9f7e8">QwtGraphic</a>
</li>
<li>setConrecFlag()
: <a class="el" href="class_qwt_plot_spectrogram.html#adcec06278d4ff4b8dd3a85e2ef188d7b">QwtPlotSpectrogram</a>
</li>
<li>setContourLevels()
: <a class="el" href="class_qwt_plot_spectrogram.html#a5b7669a3c390e30f0c51e5c4689095d2">QwtPlotSpectrogram</a>
</li>
<li>setCurrentTime()
: <a class="el" href="class_qwt_analog_clock.html#a1972a54ce59155ec7435103f11a775a7">QwtAnalogClock</a>
</li>
<li>setCursor()
: <a class="el" href="class_qwt_panner.html#ac8b0625fe155fff0132df85727f54a3e">QwtPanner</a>
</li>
<li>setCurveAttribute()
: <a class="el" href="class_qwt_plot_curve.html#a6ac9243e280f96cd149102a91271a473">QwtPlotCurve</a>
</li>
<li>setCurveFitter()
: <a class="el" href="class_qwt_plot_curve.html#ac15588c78d175906a30de501b4dd7957">QwtPlotCurve</a>
</li>
<li>setData()
: <a class="el" href="class_qwt_legend_label.html#abd0140174ae2f0818cc926f68a9f27cc">QwtLegendLabel</a>
, <a class="el" href="class_qwt_plot_spectrogram.html#a5ee036cdf8dbaf5f8fd82a3fc47b023a">QwtPlotSpectrogram</a>
, <a class="el" href="class_qwt_series_store.html#add3ce83fe90e976b75a0ebaa79caee4c">QwtSeriesStore< T ></a>
</li>
<li>setDateFormat()
: <a class="el" href="class_qwt_date_scale_draw.html#ae8eb41024970bec16987d0c736ae890e">QwtDateScaleDraw</a>
</li>
<li>setDefaultContourPen()
: <a class="el" href="class_qwt_plot_spectrogram.html#af883cb50d74057994b3179ab0e262e64">QwtPlotSpectrogram</a>
</li>
<li>setDefaultItemMode()
: <a class="el" href="class_qwt_legend.html#af977ff3e749f8281ee8ad4b926542b50">QwtLegend</a>
</li>
<li>setDefaultSize()
: <a class="el" href="class_qwt_graphic.html#acba8d73bc62bd15c15491d4a6e739869">QwtGraphic</a>
</li>
<li>setDiscardFlag()
: <a class="el" href="class_qwt_plot_renderer.html#a33439eb1407f3ba78fdd7b50461bbafc">QwtPlotRenderer</a>
</li>
<li>setDiscardFlags()
: <a class="el" href="class_qwt_plot_renderer.html#ac618f4d6605c2484c03140323e1bd639">QwtPlotRenderer</a>
</li>
<li>setDisplayMode()
: <a class="el" href="class_qwt_plot_spectrogram.html#a482a82bcf1b9f2a9a75f527063b394a2">QwtPlotSpectrogram</a>
</li>
<li>setDown()
: <a class="el" href="class_qwt_legend_label.html#ad79fbc910254d1607deb331ade69db90">QwtLegendLabel</a>
</li>
<li>setEnabled()
: <a class="el" href="class_qwt_magnifier.html#a03d892c58039fc864a452b7c636a1df7">QwtMagnifier</a>
, <a class="el" href="class_qwt_panner.html#a43e06c262c945fc7faeb729539bbde58">QwtPanner</a>
, <a class="el" href="class_qwt_picker.html#aa590756369efae6ebf323302a0af5d36">QwtPicker</a>
, <a class="el" href="class_qwt_plot_rescaler.html#a6f1c886d127ec4943552170dc63edf29">QwtPlotRescaler</a>
</li>
<li>setExpandingDirection()
: <a class="el" href="class_qwt_plot_rescaler.html#aa2ecffbc14d951ab9f1809c14bc4e21b">QwtPlotRescaler</a>
</li>
<li>setExpandingDirections()
: <a class="el" href="class_qwt_dyn_grid_layout.html#a56cd48dda979428402dd39d470674dee">QwtDynGridLayout</a>
</li>
<li>setFillBrush()
: <a class="el" href="class_qwt_thermo.html#ac8a1eca462e5f260fefd2b95a2bc00b9">QwtThermo</a>
</li>
<li>setFitMode()
: <a class="el" href="class_qwt_spline_curve_fitter.html#a8381be57ee16b5a2bdacafbd5d71908b">QwtSplineCurveFitter</a>
</li>
<li>setFlag()
: <a class="el" href="class_qwt_point_mapper.html#a6e03e14718d3d66a0f6a02fec7fcaeed">QwtPointMapper</a>
</li>
<li>setFlags()
: <a class="el" href="class_qwt_point_mapper.html#ab556bd339cca487f25e2d894c51abe85">QwtPointMapper</a>
</li>
<li>setFocusIndicator()
: <a class="el" href="class_qwt_plot_canvas.html#ae7330616dbb97128d01c5446ef0b006e">QwtPlotCanvas</a>
</li>
<li>setFont()
: <a class="el" href="class_qwt_plot_legend_item.html#aa63eae9c2b05cb92186a40dde19fedec">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_scale_item.html#a8f2bc7a401bb3e1cf796ff024032e31d">QwtPlotScaleItem</a>
, <a class="el" href="class_qwt_text.html#ad071f3c4fae4512a1cc71554d95eb69a">QwtText</a>
</li>
<li>setFooter()
: <a class="el" href="class_qwt_plot.html#a30a098d942a1a9612b94e8fa5a3c9183">QwtPlot</a>
</li>
<li>setFooterRect()
: <a class="el" href="class_qwt_plot_layout.html#a60698767fe44c86ee4bcef27c1b48d26">QwtPlotLayout</a>
</li>
<li>setFrameShadow()
: <a class="el" href="class_qwt_dial.html#a272e17e53586a149df4dca437d5f9494">QwtDial</a>
, <a class="el" href="class_qwt_plot_g_l_canvas.html#aee1da52928fa1fb765fa9c5794f40a4a">QwtPlotGLCanvas</a>
</li>
<li>setFrameShape()
: <a class="el" href="class_qwt_plot_g_l_canvas.html#a579e3f0891236317742cb58d9cacb6f5">QwtPlotGLCanvas</a>
</li>
<li>setFrameStyle()
: <a class="el" href="class_qwt_column_symbol.html#ab3a4b0daecba43da34328adadbd9f7b2">QwtColumnSymbol</a>
, <a class="el" href="class_qwt_plot_g_l_canvas.html#a9e1a08cbed3d6fb4ba89a31591265d0d">QwtPlotGLCanvas</a>
</li>
<li>setGeometry()
: <a class="el" href="class_qwt_dyn_grid_layout.html#afdf23bb94de5258f14fb077b39a64391">QwtDynGridLayout</a>
</li>
<li>setGraphic()
: <a class="el" href="class_qwt_symbol.html#ab060930c548548b33441757dcc4b2f73">QwtSymbol</a>
</li>
<li>setGroove()
: <a class="el" href="class_qwt_slider.html#a4afc308735f59ffd51adb12d0a32bd81">QwtSlider</a>
</li>
<li>setHand()
: <a class="el" href="class_qwt_analog_clock.html#a643101aafbe7a6fc91cb550203a7d3ee">QwtAnalogClock</a>
</li>
<li>setHandleSize()
: <a class="el" href="class_qwt_slider.html#a83ecd72c7ca593ebd361ad8912ac9d39">QwtSlider</a>
</li>
<li>setIcon()
: <a class="el" href="class_qwt_legend_label.html#ae6113ca4894637f62f7e7df582672788">QwtLegendLabel</a>
</li>
<li>setIncSteps()
: <a class="el" href="class_qwt_counter.html#ac308bb656eaa001641bdef6524d40ce6">QwtCounter</a>
</li>
<li>setIndent()
: <a class="el" href="class_qwt_text_label.html#aad25ab34c219f8d97ec7c39d064ed4a0">QwtTextLabel</a>
</li>
<li>setInterval()
: <a class="el" href="class_qwt_interval.html#a0373ca3cdb22ed507e4188fd06f68b17">QwtInterval</a>
, <a class="el" href="class_qwt_matrix_raster_data.html#a69db38d8f920edb9dc3f0953ca16db8f">QwtMatrixRasterData</a>
, <a class="el" href="class_qwt_plot_zone_item.html#acdf04297cd78f586e447318db60334e6">QwtPlotZoneItem</a>
, <a class="el" href="class_qwt_raster_data.html#a14abf60573989e2a2c97e21a98aee558">QwtRasterData</a>
, <a class="el" href="class_qwt_sampling_thread.html#a36c56404ef0042cf52f1e592edf94f5d">QwtSamplingThread</a>
, <a class="el" href="class_qwt_scale_div.html#aa5c61a5fef5f83f2735e4e1b8e545f0b">QwtScaleDiv</a>
, <a class="el" href="class_qwt_synthetic_point_data.html#a1a0b2548b496affcf65272acd86c6700">QwtSyntheticPointData</a>
</li>
<li>setIntervalHint()
: <a class="el" href="class_qwt_plot_rescaler.html#afefb0ec065ff855785d0198fc04a07d3">QwtPlotRescaler</a>
</li>
<li>setInverted()
: <a class="el" href="class_qwt_wheel.html#af64302130292bcd7daaaaa5809a5d541">QwtWheel</a>
</li>
<li>setInvertedControls()
: <a class="el" href="class_qwt_abstract_slider.html#a8344b634faf639447c707ef665d2d324">QwtAbstractSlider</a>
</li>
<li>setItemAttribute()
: <a class="el" href="class_qwt_plot_item.html#a5a335be8ff488809a2cf7f4b734ad1b6">QwtPlotItem</a>
</li>
<li>setItemInterest()
: <a class="el" href="class_qwt_plot_item.html#ab65cbfe489ff73e32a919a0633298fb7">QwtPlotItem</a>
</li>
<li>setItemMargin()
: <a class="el" href="class_qwt_plot_legend_item.html#a85933f3f34ce2ed226217e35eb0341be">QwtPlotLegendItem</a>
</li>
<li>setItemMode()
: <a class="el" href="class_qwt_legend_label.html#a2f469bcbc733332110d61d70f863df2e">QwtLegendLabel</a>
</li>
<li>setItemSpacing()
: <a class="el" href="class_qwt_plot_legend_item.html#a6f1f7d6e9161260ac703abc1118a63b9">QwtPlotLegendItem</a>
</li>
<li>setKeyFactor()
: <a class="el" href="class_qwt_magnifier.html#ac079b44e124fdaba1d894ef519bc4e4f">QwtMagnifier</a>
</li>
<li>setKeyPattern()
: <a class="el" href="class_qwt_event_pattern.html#af8f1008ebe2565e5e851214e62b27fef">QwtEventPattern</a>
</li>
<li>setKnobStyle()
: <a class="el" href="class_qwt_knob.html#a3e69357a595407a73c23df7ad68bf117">QwtKnob</a>
</li>
<li>setKnobWidth()
: <a class="el" href="class_qwt_knob.html#a3c5fd9348d4fc0ffd39eb4d98daca831">QwtKnob</a>
</li>
<li>setLabel()
: <a class="el" href="class_qwt_plot_marker.html#ad90adc27ccd6a10a7d6d1bb4464bf7d1">QwtPlotMarker</a>
</li>
<li>setLabelAlignment()
: <a class="el" href="class_qwt_plot_marker.html#ab0c88d103cc68093ac7469ad421105e0">QwtPlotMarker</a>
, <a class="el" href="class_qwt_scale_draw.html#a3df0a1fe4a498ef028a5348e54bfaa7f">QwtScaleDraw</a>
, <a class="el" href="class_qwt_scale_widget.html#a8d16473c34f8eaea7e6c457a4de25949">QwtScaleWidget</a>
</li>
<li>setLabelMap()
: <a class="el" href="class_qwt_compass_scale_draw.html#a55c807e3399832b53b4a9783780f9dd0">QwtCompassScaleDraw</a>
</li>
<li>setLabelOrientation()
: <a class="el" href="class_qwt_plot_marker.html#a2bd6a30b0b04bd2c07505e1cfcdd2561">QwtPlotMarker</a>
</li>
<li>setLabelRotation()
: <a class="el" href="class_qwt_scale_draw.html#abf5881339fddde65a00c1dd391023320">QwtScaleDraw</a>
, <a class="el" href="class_qwt_scale_widget.html#aea277057b98a66ee8038f6a827e0f404">QwtScaleWidget</a>
</li>
<li>setLayoutAttribute()
: <a class="el" href="class_qwt_text.html#a2b621d3104ead2185d2d939b1f5b9d68">QwtText</a>
</li>
<li>setLayoutFlag()
: <a class="el" href="class_qwt_plot_renderer.html#ab06e26ebf2038b55e5f30bb14c90caec">QwtPlotRenderer</a>
, <a class="el" href="class_qwt_scale_widget.html#a6e3495e29ba5dfb4a75827ec1df03f6a">QwtScaleWidget</a>
</li>
<li>setLayoutFlags()
: <a class="el" href="class_qwt_plot_renderer.html#a475ee59a0a3078380b6da31567bd0a14">QwtPlotRenderer</a>
</li>
<li>setLayoutHint()
: <a class="el" href="class_qwt_plot_abstract_bar_chart.html#aff6bb52dad207c8396b359a248a00359">QwtPlotAbstractBarChart</a>
</li>
<li>setLayoutPolicy()
: <a class="el" href="class_qwt_plot_abstract_bar_chart.html#aabc7165ee75a38f444aa97e9b3dca16b">QwtPlotAbstractBarChart</a>
</li>
<li>setLegendAttribute()
: <a class="el" href="class_qwt_plot_curve.html#a0b1b7816e822607eb16e6eb2fd7bfa5c">QwtPlotCurve</a>
</li>
<li>setLegendIconSize()
: <a class="el" href="class_qwt_plot_item.html#a0827dd69bf19ec0145b6cc6efad2c11b">QwtPlotItem</a>
</li>
<li>setLegendMode()
: <a class="el" href="class_qwt_plot_bar_chart.html#a1ba4d1347a2d493fe3859a1c0fac6a6d">QwtPlotBarChart</a>
, <a class="el" href="class_qwt_plot_shape_item.html#a2daf96fc886bb84e4a55913fc0c39906">QwtPlotShapeItem</a>
</li>
<li>setLegendPosition()
: <a class="el" href="class_qwt_plot_layout.html#a11c9695a68f95135841cb23212589f18">QwtPlotLayout</a>
</li>
<li>setLegendRatio()
: <a class="el" href="class_qwt_plot_layout.html#aabe9f952046139667e055c661bee4dbb">QwtPlotLayout</a>
</li>
<li>setLegendRect()
: <a class="el" href="class_qwt_plot_layout.html#a5d5c1dacdfff8281acf0a909acaf866c">QwtPlotLayout</a>
</li>
<li>setLength()
: <a class="el" href="class_qwt_scale_draw.html#a002528e391ce07246a5d6b05b4bac9d9">QwtScaleDraw</a>
</li>
<li>setLinePen()
: <a class="el" href="class_qwt_plot_marker.html#a9414658a5980527326b87615d0fc1560">QwtPlotMarker</a>
</li>
<li>setLineStyle()
: <a class="el" href="class_qwt_plot_marker.html#a201102756fc49728a2d0466339f4545a">QwtPlotMarker</a>
</li>
<li>setLineWidth()
: <a class="el" href="class_qwt_column_symbol.html#af9348444ae2c21d3bcaff3217fc694fc">QwtColumnSymbol</a>
, <a class="el" href="class_qwt_dial.html#a7946ca363a97fd28de4993a5caa54507">QwtDial</a>
, <a class="el" href="class_qwt_plot_g_l_canvas.html#a9b831253eef4f77a0f580468cb5e41d6">QwtPlotGLCanvas</a>
</li>
<li>setLowerBound()
: <a class="el" href="class_qwt_abstract_scale.html#aa1b73da4589370fc14fd2ef49b02d142">QwtAbstractScale</a>
, <a class="el" href="class_qwt_scale_div.html#a7d334df11402bf3a5146a8232144bdf8">QwtScaleDiv</a>
</li>
<li>setMajorPen()
: <a class="el" href="class_qwt_plot_grid.html#a08aa0669817c8a797e7c22731a02a66d">QwtPlotGrid</a>
</li>
<li>setMargin()
: <a class="el" href="class_qwt_plot_abstract_bar_chart.html#a97946d3da8e9fe2e49494a882651e4fd">QwtPlotAbstractBarChart</a>
, <a class="el" href="class_qwt_plot_legend_item.html#a503f19f2c8b2b7549a74ef887081bb8d">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_text_label.html#a28bba339d2996ae2a8a426575820a816">QwtPlotTextLabel</a>
, <a class="el" href="class_qwt_scale_widget.html#a36d92ef63d996fe1fd58a46431924ab6">QwtScaleWidget</a>
, <a class="el" href="class_qwt_text_label.html#a833d27574b72bbc135f2972c72382eba">QwtTextLabel</a>
</li>
<li>setMargins()
: <a class="el" href="class_qwt_scale_engine.html#aed2ab1fc105a25fa97bbecf4b2f541a7">QwtScaleEngine</a>
</li>
<li>setMarkerSize()
: <a class="el" href="class_qwt_knob.html#a88e06ffddd31d3c0df04771793173353">QwtKnob</a>
</li>
<li>setMarkerStyle()
: <a class="el" href="class_qwt_knob.html#aaa80356a3e3d3703070a6f2b1802646c">QwtKnob</a>
</li>
<li>setMaskMode()
: <a class="el" href="class_qwt_widget_overlay.html#a56828c036263679fc95087bd87496df0">QwtWidgetOverlay</a>
</li>
<li>setMass()
: <a class="el" href="class_qwt_wheel.html#a2af8b9b10ebff58b351027208c1e2b86">QwtWheel</a>
</li>
<li>setMaxColumns()
: <a class="el" href="class_qwt_dyn_grid_layout.html#a910bc4bcdecfa2d3a98a9bd091933014">QwtDynGridLayout</a>
, <a class="el" href="class_qwt_legend.html#adc427eb1a6ee6a3c17f7c1b8867b48b2">QwtLegend</a>
, <a class="el" href="class_qwt_plot_legend_item.html#a8b6f1db48c05feb5d0f8525b41898be7">QwtPlotLegendItem</a>
</li>
<li>setMaximum()
: <a class="el" href="class_qwt_counter.html#af097141eaa83c32c7eb7d4234079f95a">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#afadb25bf4d4c4e0e279f3b3b23078ffc">QwtWheel</a>
</li>
<li>setMaxScaleArc()
: <a class="el" href="class_qwt_dial.html#afe3e1bd1d3640285d32fcb1e125fb929">QwtDial</a>
</li>
<li>setMaxStackDepth()
: <a class="el" href="class_qwt_plot_zoomer.html#a3965591944793790407ba91d6de3a882">QwtPlotZoomer</a>
</li>
<li>setMaxSymbolWidth()
: <a class="el" href="class_qwt_plot_trading_curve.html#af97b34d767ae5a89076ec79324739bc5">QwtPlotTradingCurve</a>
</li>
<li>setMaxValue()
: <a class="el" href="class_qwt_interval.html#a3eeedaf35966d535670863cb0f97613a">QwtInterval</a>
</li>
<li>setMaxWeeks()
: <a class="el" href="class_qwt_date_scale_engine.html#a0520441c198ee00c9d727340f639504b">QwtDateScaleEngine</a>
</li>
<li>setMidLineWidth()
: <a class="el" href="class_qwt_plot_g_l_canvas.html#a529cce50eea2c9a46fe9c41852f6cee3">QwtPlotGLCanvas</a>
</li>
<li>setMinBorderDist()
: <a class="el" href="class_qwt_scale_widget.html#a4299d99073231d977924c7e40ff9a6a9">QwtScaleWidget</a>
</li>
<li>setMinimum()
: <a class="el" href="class_qwt_counter.html#a4f5847dca54ada119623908730568f4d">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#a7690c0a3f60afdaabf3bd52317787ae8">QwtWheel</a>
</li>
<li>setMinimumExtent()
: <a class="el" href="class_qwt_abstract_scale_draw.html#ac174255c334b995ca010a6964597d5f2">QwtAbstractScaleDraw</a>
</li>
<li>setMinorPen()
: <a class="el" href="class_qwt_plot_grid.html#aeac99ccce0d170a9500f238cf0321669">QwtPlotGrid</a>
</li>
<li>setMinScaleArc()
: <a class="el" href="class_qwt_dial.html#a012263546865049d3518de6aabb4d07e">QwtDial</a>
</li>
<li>setMinSymbolWidth()
: <a class="el" href="class_qwt_plot_trading_curve.html#a8411a6cd96cf521e95a06792a0b99a52">QwtPlotTradingCurve</a>
</li>
<li>setMinValue()
: <a class="el" href="class_qwt_interval.html#ab993dac41ca70402e0cb4f9f980d90f0">QwtInterval</a>
</li>
<li>setMode()
: <a class="el" href="class_qwt_dial.html#a6b070ba6251fa40bbd876551413c5639">QwtDial</a>
, <a class="el" href="class_qwt_linear_color_map.html#afca7397fb6d07d05bab83e83e274a9c2">QwtLinearColorMap</a>
, <a class="el" href="class_qwt_null_paint_device.html#a8b159556695136a58eec6e78fd88957b">QwtNullPaintDevice</a>
</li>
<li>setMouseButton()
: <a class="el" href="class_qwt_magnifier.html#ad814a5d9cb227d6fb56f8289dffe597c">QwtMagnifier</a>
, <a class="el" href="class_qwt_panner.html#a6f138454b2c1d7e814ae1975d6a7b8be">QwtPanner</a>
</li>
<li>setMouseFactor()
: <a class="el" href="class_qwt_magnifier.html#ada5dac479dc1e69c04760bb7dc197ac9">QwtMagnifier</a>
</li>
<li>setMousePattern()
: <a class="el" href="class_qwt_event_pattern.html#a0b786f31af2f8084ec361bc905beda3f">QwtEventPattern</a>
</li>
<li>setNeedle()
: <a class="el" href="class_qwt_dial.html#ac91311f8777eabdbcf6384f308d34a0c">QwtDial</a>
</li>
<li>setNumButtons()
: <a class="el" href="class_qwt_counter.html#a900729c8f73830b549ea065e5c6dc4f9">QwtCounter</a>
</li>
<li>setNumThornLevels()
: <a class="el" href="class_qwt_simple_compass_rose.html#a45cbc152c610d096ecd4231b0f9ba549">QwtSimpleCompassRose</a>
</li>
<li>setNumThorns()
: <a class="el" href="class_qwt_simple_compass_rose.html#a841918913652b50fc85ea7e713daa37a">QwtSimpleCompassRose</a>
</li>
<li>setNumTurns()
: <a class="el" href="class_qwt_knob.html#a8d69c0c3bc110eaa68cfda26d31a8e98">QwtKnob</a>
</li>
<li>setOrientation()
: <a class="el" href="class_qwt_plot_series_item.html#a9d131249079ec3bc503831349bd1a051">QwtPlotSeriesItem</a>
, <a class="el" href="class_qwt_plot_zone_item.html#a0e957d092637846d8c7e7f6d1282e8ac">QwtPlotZoneItem</a>
, <a class="el" href="class_qwt_slider.html#a3a5d51f56dee5e51dc37bb6f546b16b5">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#ae6c0926a7d4d163e08a0f940642b2ea9">QwtThermo</a>
, <a class="el" href="class_qwt_wheel.html#acae74c8161fd1df728f26253dd1defa8">QwtWheel</a>
</li>
<li>setOrientations()
: <a class="el" href="class_qwt_panner.html#aaa71a8b6f7f46ae8f5a8084094d7bd9a">QwtPanner</a>
</li>
<li>setOrigin()
: <a class="el" href="class_qwt_dial.html#a3f64c6fbac747f735e57c2073e93bc50">QwtDial</a>
, <a class="el" href="class_qwt_thermo.html#a00f3853e0fabfe89cbf47d35c15b0aa4">QwtThermo</a>
</li>
<li>setOriginMode()
: <a class="el" href="class_qwt_thermo.html#a95cca109a11bba24d8e8a422a3717ab0">QwtThermo</a>
</li>
<li>setPageStepCount()
: <a class="el" href="class_qwt_wheel.html#adeecd6e684163c92143908240f89ce1e">QwtWheel</a>
</li>
<li>setPageSteps()
: <a class="el" href="class_qwt_abstract_slider.html#ae2af9e818c0e7fb39a3a07174e4dabf2">QwtAbstractSlider</a>
</li>
<li>setPaintAttribute()
: <a class="el" href="class_qwt_plot_canvas.html#a7859beb87bcef4fd53f99e7c87104e27">QwtPlotCanvas</a>
, <a class="el" href="class_qwt_plot_curve.html#a7f9c70366415b5cb068af80be5bf3748">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#ab962c4ad6896bc9d9450f6436f00bd81">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_raster_item.html#a70d6b94821e5eafb29b1f045d1f3a2e6">QwtPlotRasterItem</a>
, <a class="el" href="class_qwt_plot_shape_item.html#acd66d009cd24cdfb418a5cc9486b5001">QwtPlotShapeItem</a>
, <a class="el" href="class_qwt_plot_spectro_curve.html#a3a2ddc8e46bc4414b5ce104e7c70f9b4">QwtPlotSpectroCurve</a>
, <a class="el" href="class_qwt_plot_trading_curve.html#ac0b8015b37a90a5ae995569158fae4e2">QwtPlotTradingCurve</a>
, <a class="el" href="class_qwt_text.html#aac80e3f05137173059b196206ceea9e8">QwtText</a>
</li>
<li>setPaintInterval()
: <a class="el" href="class_qwt_scale_map.html#a994240e446986112f196a65657dc9755">QwtScaleMap</a>
</li>
<li>setPalette()
: <a class="el" href="class_qwt_column_symbol.html#a7d2b17a4b8aef7ae098fd42bc663527b">QwtColumnSymbol</a>
, <a class="el" href="class_qwt_compass_rose.html#ad69f887ed012d6bf6bf2ffeb133e26d5">QwtCompassRose</a>
, <a class="el" href="class_qwt_dial_needle.html#ae850883a64501136bca64d6ea2d084b9">QwtDialNeedle</a>
, <a class="el" href="class_qwt_plot_scale_item.html#aff7adf18c2a6f679227c0fdaa54f39f7">QwtPlotScaleItem</a>
</li>
<li>setPath()
: <a class="el" href="class_qwt_symbol.html#a67a6005486f1ae864acfd4778e9282db">QwtSymbol</a>
</li>
<li>setPen()
: <a class="el" href="class_qwt_interval_symbol.html#a9c3bbee5ea764f246e66bd7bc9382b79">QwtIntervalSymbol</a>
, <a class="el" href="class_qwt_plot_curve.html#ae00bd073a2bcf7c3c810d70af1f86750">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_grid.html#aa85de55eb3c28f15d4000a11d194b758">QwtPlotGrid</a>
, <a class="el" href="class_qwt_plot_histogram.html#a57d55a701251e55d52a142d417f12d38">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#a41a5be16fecb66885f5dd08779fbee6b">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_shape_item.html#a7626d822bf3d7905a606a0e0c7079c11">QwtPlotShapeItem</a>
, <a class="el" href="class_qwt_plot_zone_item.html#a76a86eb41801930e5733bc509966ee4d">QwtPlotZoneItem</a>
, <a class="el" href="class_qwt_symbol.html#a144ca0e312c4a1e64c2d9e161c01fb7c">QwtSymbol</a>
</li>
<li>setPenWidth()
: <a class="el" href="class_qwt_abstract_scale_draw.html#a098e1f813077c9bb0c5f83266035943a">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_plot_spectro_curve.html#ace1f7f5f8322996d6f8bddfd94380887">QwtPlotSpectroCurve</a>
</li>
<li>setPinPoint()
: <a class="el" href="class_qwt_symbol.html#a78643c91d94690b91745f10f0601579e">QwtSymbol</a>
</li>
<li>setPinPointEnabled()
: <a class="el" href="class_qwt_symbol.html#a570e07b342701bf37794bf1191917005">QwtSymbol</a>
</li>
<li>setPipeWidth()
: <a class="el" href="class_qwt_thermo.html#a3268b4ae2737194bf2dddfcbfc0d5808">QwtThermo</a>
</li>
<li>setPixmap()
: <a class="el" href="class_qwt_symbol.html#a69b548566bbd186992869b54777a0728">QwtSymbol</a>
</li>
<li>setPlainText()
: <a class="el" href="class_qwt_text_label.html#a02113ab776a00ab8bbc83197ce49445e">QwtTextLabel</a>
</li>
<li>setPlotLayout()
: <a class="el" href="class_qwt_plot.html#a08e258f9ba498662a8be9a559c9c7e44">QwtPlot</a>
</li>
<li>setPoint()
: <a class="el" href="class_qwt_point_polar.html#a8cd4f93356a8a8c07400c3ad9ff1b560">QwtPointPolar</a>
</li>
<li>setPoints()
: <a class="el" href="class_qwt_spline.html#a6ed13410b1d5f6b33ba0e3c2b07932cf">QwtSpline</a>
</li>
<li>setPolygon()
: <a class="el" href="class_qwt_plot_shape_item.html#a9810bd70cfdff88d14f88d9edf20c85b">QwtPlotShapeItem</a>
</li>
<li>setPolylineSplitting()
: <a class="el" href="class_qwt_painter.html#a174bca411198c64dfff828a15d80ddfb">QwtPainter</a>
</li>
<li>setPosition()
: <a class="el" href="class_qwt_plot_scale_item.html#a94536af312bb9d6de5bc7547c59e4faf">QwtPlotScaleItem</a>
</li>
<li>setRadius()
: <a class="el" href="class_qwt_point_polar.html#a31ae2f4d6fad44f51ad5e7444a7f21fe">QwtPointPolar</a>
, <a class="el" href="class_qwt_round_scale_draw.html#a219e0db15594f297ae6ff769fd6c0485">QwtRoundScaleDraw</a>
</li>
<li>setRange()
: <a class="el" href="class_qwt_counter.html#ad794d0d2589a38113933ae764e87ce22">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#a5150a1bca89e97eb0fe7237c5e23f17f">QwtWheel</a>
</li>
<li>setRangeFlags()
: <a class="el" href="class_qwt_thermo.html#aa2ce6d6d20097fead0baca0ab31ef1b2">QwtThermo</a>
</li>
<li>setRawSamples()
: <a class="el" href="class_qwt_plot_curve.html#afd13c94e23520dacbc37b4d0fd036a8b">QwtPlotCurve</a>
</li>
<li>setReadOnly()
: <a class="el" href="class_qwt_abstract_slider.html#a9cc63283a2d4f0bcbb67fd331629a318">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_counter.html#ad34441cf06c68478b826e5b85fbb3ba7">QwtCounter</a>
</li>
<li>setRect()
: <a class="el" href="class_qwt_pixel_matrix.html#ae8150f8d1f1922746172e9da1488e98b">QwtPixelMatrix</a>
, <a class="el" href="class_qwt_plot_shape_item.html#a0a448e4354f67a3957b8123214cd75bb">QwtPlotShapeItem</a>
</li>
<li>setRectOfInterest()
: <a class="el" href="class_qwt_abstract_series_store.html#a8a1cab11ce068f9c578a02d40e111b1a">QwtAbstractSeriesStore</a>
, <a class="el" href="class_qwt_series_data.html#a391b4601a7454b2f9582fbc2662d108e">QwtSeriesData< T ></a>
, <a class="el" href="class_qwt_series_store.html#a64971dd5eaed045b88ac06c9cd8fd6e9">QwtSeriesStore< T ></a>
, <a class="el" href="class_qwt_synthetic_point_data.html#a39cc8512e7d8beecde003f7781174b84">QwtSyntheticPointData</a>
</li>
<li>setReference()
: <a class="el" href="class_qwt_scale_engine.html#aa982167d8236dde0a6af3168ec8b46be">QwtScaleEngine</a>
</li>
<li>setReferenceAxis()
: <a class="el" href="class_qwt_plot_rescaler.html#a6f13d60cc1e1071a6830ea30ccbcca37">QwtPlotRescaler</a>
</li>
<li>setRenderFlags()
: <a class="el" href="class_qwt_text.html#afcbaa37913afaa0e92a649923cfe500b">QwtText</a>
</li>
<li>setRenderHint()
: <a class="el" href="class_qwt_graphic.html#a494b5de0452120653188828f6a1a6f55">QwtGraphic</a>
, <a class="el" href="class_qwt_plot_item.html#acd023c40f659c304ded324942865edc8">QwtPlotItem</a>
</li>
<li>setRenderMode()
: <a class="el" href="class_qwt_widget_overlay.html#a80fd06e2111993848f45a21627ec09b4">QwtWidgetOverlay</a>
</li>
<li>setRenderThreadCount()
: <a class="el" href="class_qwt_plot_item.html#a188ae18fbbce9adcf259ebe2f0de1f6b">QwtPlotItem</a>
</li>
<li>setRenderTolerance()
: <a class="el" href="class_qwt_plot_shape_item.html#a76f617b8662ed118382d49c5201791e2">QwtPlotShapeItem</a>
</li>
<li>setResampleMode()
: <a class="el" href="class_qwt_matrix_raster_data.html#a038effe6e4be13725b7a8d35370595fd">QwtMatrixRasterData</a>
</li>
<li>setRescalePolicy()
: <a class="el" href="class_qwt_plot_rescaler.html#ae6b7df41b5387d0aed532559546e40b6">QwtPlotRescaler</a>
</li>
<li>setResizeMode()
: <a class="el" href="class_qwt_picker.html#af85c8a3c709bd106d2b34b718a746e03">QwtPicker</a>
</li>
<li>setRose()
: <a class="el" href="class_qwt_compass.html#a06456c0c52107bfa8b1d1267fba5b86f">QwtCompass</a>
</li>
<li>setRoundingAlignment()
: <a class="el" href="class_qwt_painter.html#a49581f980f2c761852cda08502c96abb">QwtPainter</a>
</li>
<li>setRubberBand()
: <a class="el" href="class_qwt_picker.html#a83096bad2662e02e4914a7b40241c351">QwtPicker</a>
</li>
<li>setRubberBandPen()
: <a class="el" href="class_qwt_picker.html#a13117b1929f1ca00a75002f7f4c612bc">QwtPicker</a>
</li>
<li>setSamples()
: <a class="el" href="class_qwt_array_series_data.html#a4afaaf2602be769f4bdcc8fda6b737cb">QwtArraySeriesData< T ></a>
, <a class="el" href="class_qwt_plot_bar_chart.html#a669eb25dba458699465b317f2e96c1eb">QwtPlotBarChart</a>
, <a class="el" href="class_qwt_plot_curve.html#aa51cd3fa00f2a046ca5a9889c5db2413">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#a6cc1fe6cd9f7dfc55a2bf5afd02ccce5">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#ac60fd04f3000b26ea82342065ba82afe">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#ad54633b91b7f602e376f3acb9e235e3c">QwtPlotMultiBarChart</a>
, <a class="el" href="class_qwt_plot_spectro_curve.html#a6374cf95ed6731d098328f2b8c317a8c">QwtPlotSpectroCurve</a>
, <a class="el" href="class_qwt_plot_trading_curve.html#a5675417b12acd80ff37ec66df2907c9f">QwtPlotTradingCurve</a>
</li>
<li>setScale()
: <a class="el" href="class_qwt_abstract_scale.html#ae9640e814b5029d7dd79cb3ba752102b">QwtAbstractScale</a>
</li>
<li>setScaleArc()
: <a class="el" href="class_qwt_dial.html#acfb881276cc7efd7ab089b355fd6e94f">QwtDial</a>
</li>
<li>setScaleDiv()
: <a class="el" href="class_qwt_abstract_scale_draw.html#a149792f955cc3f05c16362338bcc98c4">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_plot_scale_item.html#a99032adf91892f73d06a4810cd78d26b">QwtPlotScaleItem</a>
, <a class="el" href="class_qwt_scale_widget.html#aea8b0f1dbb7a1768c83e2c9aa93e4804">QwtScaleWidget</a>
</li>
<li>setScaleDivFromAxis()
: <a class="el" href="class_qwt_plot_scale_item.html#a0b4660ad3d3fcf1f1de711b075b073c6">QwtPlotScaleItem</a>
</li>
<li>setScaleDraw()
: <a class="el" href="class_qwt_dial.html#a2ed8a0642e1c612013ba812c7e037404">QwtDial</a>
, <a class="el" href="class_qwt_knob.html#afea44f23da7f79a2b790178850c26edd">QwtKnob</a>
, <a class="el" href="class_qwt_plot_scale_item.html#a0224f2720f3df4fc781d10560a4a1590">QwtPlotScaleItem</a>
, <a class="el" href="class_qwt_scale_widget.html#af93459026340638898c11a799f4ae0c0">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a9039a6d5d5bb7b21c312637cf40f8319">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a8b5ab653b893e41116200570632ad1c3">QwtThermo</a>
</li>
<li>setScaleEngine()
: <a class="el" href="class_qwt_abstract_scale.html#aa00f44140af3f2b7595cb6e23371198f">QwtAbstractScale</a>
</li>
<li>setScaleInterval()
: <a class="el" href="class_qwt_scale_map.html#aaa33bc8e1aed7aa17d345053194e7094">QwtScaleMap</a>
</li>
<li>setScaleMaxMajor()
: <a class="el" href="class_qwt_abstract_scale.html#a40fdb4572ad8fdec8b93766ff5f8eda8">QwtAbstractScale</a>
</li>
<li>setScaleMaxMinor()
: <a class="el" href="class_qwt_abstract_scale.html#a6520bb1e52571f865b21b3710786a4db">QwtAbstractScale</a>
</li>
<li>setScalePosition()
: <a class="el" href="class_qwt_slider.html#a530aa52c218ad27e8eebbecc7a27e25a">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a0306a248194d2f8c08ba90506122d6ca">QwtThermo</a>
</li>
<li>setScaleRect()
: <a class="el" href="class_qwt_plot_layout.html#a842733777eb2b0bf2cacc4bb01c169c7">QwtPlotLayout</a>
</li>
<li>setScaleStepSize()
: <a class="el" href="class_qwt_abstract_scale.html#aac745efd9414e529794e2189f7c535cb">QwtAbstractScale</a>
</li>
<li>setShape()
: <a class="el" href="class_qwt_plot_shape_item.html#a0a8f3ed22324b23d04588cc749b74674">QwtPlotShapeItem</a>
</li>
<li>setShrinkFactor()
: <a class="el" href="class_qwt_simple_compass_rose.html#afaf84e19eb8eb2360306860b02d46cfc">QwtSimpleCompassRose</a>
</li>
<li>setSingleStep()
: <a class="el" href="class_qwt_counter.html#aeeb79c9b83b2050baf9d7e6e47f1fa67">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#a63f5d4794cc1e624ab305083c7f4ed29">QwtWheel</a>
</li>
<li>setSingleSteps()
: <a class="el" href="class_qwt_abstract_slider.html#ad470727c9fa3da9c50e26138cf03623e">QwtAbstractSlider</a>
</li>
<li>setSize()
: <a class="el" href="class_qwt_symbol.html#afd5587cd1752594954ca6146f643acfb">QwtSymbol</a>
, <a class="el" href="class_qwt_synthetic_point_data.html#a321754c5acac77e0e5685968b1cdfdae">QwtSyntheticPointData</a>
</li>
<li>setSpacing()
: <a class="el" href="class_qwt_abstract_scale_draw.html#a074675cd805656f0ae158f84745074af">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_legend_label.html#ad19d9ee759551f1fe785dc0ad806fd59">QwtLegendLabel</a>
, <a class="el" href="class_qwt_plot_abstract_bar_chart.html#a0cb5bd5a653918b1513fa87ad75fa8b1">QwtPlotAbstractBarChart</a>
, <a class="el" href="class_qwt_plot_layout.html#a6508553ec1d66bede49e7767526c3d03">QwtPlotLayout</a>
, <a class="el" href="class_qwt_plot_legend_item.html#a9932f074e5861464a055fdce6394889c">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_marker.html#a856c9c5c6e22d86461ee6df101534831">QwtPlotMarker</a>
, <a class="el" href="class_qwt_scale_widget.html#ae91570dca28105b516f1ce2e72c313f1">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a947f384faba10690bbff780bfe9e420f">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a5d772862c760019a7797f45aa6b0690f">QwtThermo</a>
</li>
<li>setSpline()
: <a class="el" href="class_qwt_spline_curve_fitter.html#a7f819ad010b19d58179655e4ceb1c6f1">QwtSplineCurveFitter</a>
</li>
<li>setSplineSize()
: <a class="el" href="class_qwt_spline_curve_fitter.html#af468f8218d57a2e8d07f4bf6aafda8dc">QwtSplineCurveFitter</a>
</li>
<li>setSplineType()
: <a class="el" href="class_qwt_spline.html#a222953661f01658a16042d587196aff8">QwtSpline</a>
</li>
<li>setState()
: <a class="el" href="class_qwt_picker_machine.html#a569c426543e4a6aa15c221eb7c4910f0">QwtPickerMachine</a>
</li>
<li>setStateMachine()
: <a class="el" href="class_qwt_picker.html#a5ff72a5658631bcad3857ca5cfd3e6d9">QwtPicker</a>
</li>
<li>setStepAlignment()
: <a class="el" href="class_qwt_abstract_slider.html#a758fe135e2ee173c98dac70777e6dd4c">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_wheel.html#a5e5bf1d335538ff6971d48b914f26d51">QwtWheel</a>
</li>
<li>setStepButton1()
: <a class="el" href="class_qwt_counter.html#ae56a556a72955b6d10419f2c41779383">QwtCounter</a>
</li>
<li>setStepButton2()
: <a class="el" href="class_qwt_counter.html#a0d764a96706593d8c8b51338e92abfcc">QwtCounter</a>
</li>
<li>setStepButton3()
: <a class="el" href="class_qwt_counter.html#a8b55539578de083793b8310cb8909294">QwtCounter</a>
</li>
<li>setStyle()
: <a class="el" href="class_qwt_column_symbol.html#a3e2c72514fdc2e857ee2a34bc9f96e93">QwtColumnSymbol</a>
, <a class="el" href="class_qwt_interval_symbol.html#a24d64169355cc200a49af15c08fe93fc">QwtIntervalSymbol</a>
, <a class="el" href="class_qwt_plot_curve.html#a2de41014c2b87fd459d0c438a15dd33e">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#a449af026888616f08b45e980d9da57fe">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#a74e6c2bf66e0436e827b5b017b943cad">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#a4daa7bdd0043eeafe5ab6e5db290181d">QwtPlotMultiBarChart</a>
, <a class="el" href="class_qwt_symbol.html#a4d3b9f3dd8c4ca034694b86372b74eb9">QwtSymbol</a>
</li>
<li>setSvgDocument()
: <a class="el" href="class_qwt_symbol.html#a5e6a790b3133c878fde132a7fcf91475">QwtSymbol</a>
</li>
<li>setSymbol()
: <a class="el" href="class_qwt_plot_bar_chart.html#a3e3c50c37484c3049dc9f433269e9a44">QwtPlotBarChart</a>
, <a class="el" href="class_qwt_plot_curve.html#a413b1a18de12ece4dec5ae0738ecd03f">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#aa662f072a1758bfac9c0c86136ee27ad">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#a4bc2408868638a41f5baa70b759283a2">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_marker.html#af44231c2b63bb277706e4f515297c7b1">QwtPlotMarker</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#a820bc704ccfc186b932c91e52f2f1836">QwtPlotMultiBarChart</a>
</li>
<li>setSymbolBrush()
: <a class="el" href="class_qwt_plot_trading_curve.html#ac9ec84c2c75ff3a5597cd30aafbd76c2">QwtPlotTradingCurve</a>
</li>
<li>setSymbolExtent()
: <a class="el" href="class_qwt_plot_trading_curve.html#aa6cc2678012c002e8a1d0b7dda156b2a">QwtPlotTradingCurve</a>
</li>
<li>setSymbolPen()
: <a class="el" href="class_qwt_plot_trading_curve.html#aec9c455a3a877c36d408383e5b4700e0">QwtPlotTradingCurve</a>
</li>
<li>setSymbolStyle()
: <a class="el" href="class_qwt_plot_trading_curve.html#a0c9928481272af1487baa4e0dcd47202">QwtPlotTradingCurve</a>
</li>
<li>setText()
: <a class="el" href="class_qwt_legend_label.html#a2498e1b2e1a17abf63fa4d94a08ebb95">QwtLegendLabel</a>
, <a class="el" href="class_qwt_plot_text_label.html#adce2e99ef7816ff544c5a5525bf05006">QwtPlotTextLabel</a>
, <a class="el" href="class_qwt_text.html#a9ba9caa82fcfbc4bfbf8ce20ccea981e">QwtText</a>
, <a class="el" href="class_qwt_text_label.html#ac43ba313b78dccf7aa7433f26059b2e2">QwtTextLabel</a>
</li>
<li>setTextEngine()
: <a class="el" href="class_qwt_text.html#aef6a1e71b1feba3116ce69f6c9de70ad">QwtText</a>
</li>
<li>setTextPen()
: <a class="el" href="class_qwt_plot_legend_item.html#ae41a2af3f5353a01ed5d4dd786b84ef7">QwtPlotLegendItem</a>
</li>
<li>setTickCount()
: <a class="el" href="class_qwt_wheel.html#ae13600528c5b13a27b4220ac53b22153">QwtWheel</a>
</li>
<li>setTickLength()
: <a class="el" href="class_qwt_abstract_scale_draw.html#a7fed388e435aae791d61f48cc9ddf632">QwtAbstractScaleDraw</a>
</li>
<li>setTicks()
: <a class="el" href="class_qwt_scale_div.html#af67401fd5d16138eddede3381c559964">QwtScaleDiv</a>
</li>
<li>setTime()
: <a class="el" href="class_qwt_analog_clock.html#aa99a628b290789583052bcec9163d95c">QwtAnalogClock</a>
</li>
<li>setTimeSpec()
: <a class="el" href="class_qwt_date_scale_draw.html#a278fdb655a98dda440ce5c0f8fc82c4e">QwtDateScaleDraw</a>
, <a class="el" href="class_qwt_date_scale_engine.html#addbf8fdc00c2de0c6afe436ef25b3bef">QwtDateScaleEngine</a>
</li>
<li>setTitle()
: <a class="el" href="class_qwt_plot.html#aa1081642123bb6c07c856a59a0f30515">QwtPlot</a>
, <a class="el" href="class_qwt_plot_item.html#a2db3214b23b78274fa6f8c0321a76839">QwtPlotItem</a>
, <a class="el" href="class_qwt_scale_widget.html#a28ad440a43978d2d50f19e17d0776403">QwtScaleWidget</a>
</li>
<li>setTitleRect()
: <a class="el" href="class_qwt_plot_layout.html#a82b49e88c7928224c4b0342b6302c086">QwtPlotLayout</a>
</li>
<li>setTolerance()
: <a class="el" href="class_qwt_weeding_curve_fitter.html#a62c303f6826fef2be7b7bbe82f530680">QwtWeedingCurveFitter</a>
</li>
<li>setTotalAngle()
: <a class="el" href="class_qwt_knob.html#a82c6a859d63833894a6e66f0fdbf8f05">QwtKnob</a>
, <a class="el" href="class_qwt_wheel.html#ae4e5dfd4c6683706716681cfd7e3d8bf">QwtWheel</a>
</li>
<li>setTotalSteps()
: <a class="el" href="class_qwt_abstract_slider.html#a60eea9d9996c99abcb7d50f5ed2634f8">QwtAbstractSlider</a>
</li>
<li>setTrackerFont()
: <a class="el" href="class_qwt_picker.html#a9f54cce7d2e3f6e06351315bf655d5d9">QwtPicker</a>
</li>
<li>setTrackerMode()
: <a class="el" href="class_qwt_picker.html#a94fc60c7223cdc470ae63156f6446d6f">QwtPicker</a>
</li>
<li>setTrackerPen()
: <a class="el" href="class_qwt_picker.html#af703bc51cda716e503cbd86731270e5b">QwtPicker</a>
</li>
<li>setTracking()
: <a class="el" href="class_qwt_abstract_slider.html#a58d37e22b616787793a9e62ec7c5adc3">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_wheel.html#a321dde4b49b3f6780a1554af060e57ef">QwtWheel</a>
</li>
<li>setTransformation()
: <a class="el" href="class_qwt_abstract_scale_draw.html#a732d0e49c9092c48893b4f71cc7357db">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_scale_engine.html#ad063f4bb947996191be5c2a5fa0dbaf6">QwtScaleEngine</a>
, <a class="el" href="class_qwt_scale_map.html#ad8e971dd4be07801f0adc99549153718">QwtScaleMap</a>
, <a class="el" href="class_qwt_scale_widget.html#a749ea25d3e0ab0d7e6335982f3919055">QwtScaleWidget</a>
</li>
<li>setTrough()
: <a class="el" href="class_qwt_slider.html#ab4de4c649662416dc12c92c8e7cd0273">QwtSlider</a>
</li>
<li>setUpdateInterval()
: <a class="el" href="class_qwt_slider.html#aeaab96d3554d509dbdd93a539617b9e9">QwtSlider</a>
, <a class="el" href="class_qwt_wheel.html#a5c234f68f0ff9906e2861e6fcd9dcc54">QwtWheel</a>
</li>
<li>setUpperBound()
: <a class="el" href="class_qwt_abstract_scale.html#a1b2ea5c97eb19ccd55ec83713ab675fe">QwtAbstractScale</a>
, <a class="el" href="class_qwt_scale_div.html#a56545b9c67dcfb4bd0c7b5fc430ab70d">QwtScaleDiv</a>
</li>
<li>setUtcOffset()
: <a class="el" href="class_qwt_date_scale_draw.html#ab97b5fc37dc46dcf635a56e13d7b93a3">QwtDateScaleDraw</a>
, <a class="el" href="class_qwt_date_scale_engine.html#a47dc382bbdf3e415b40543fc2736537f">QwtDateScaleEngine</a>
</li>
<li>setValid()
: <a class="el" href="class_qwt_abstract_slider.html#a6b527ff0d2f96b85465fd73250d2e03f">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_counter.html#aa06625ab417f82fdc82790e3376af708">QwtCounter</a>
</li>
<li>setValue()
: <a class="el" href="class_qwt_abstract_slider.html#a6c2021a39850832659b7ebd9ffd09e0e">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_counter.html#a429a2e986aa46c1231643df5d4c78970">QwtCounter</a>
, <a class="el" href="class_qwt_legend_data.html#a1be4b4cf3c1df733744633ea6c02346a">QwtLegendData</a>
, <a class="el" href="class_qwt_matrix_raster_data.html#a4601944bceabd921cdaa544180576274">QwtMatrixRasterData</a>
, <a class="el" href="class_qwt_plot_marker.html#a290374903ca168104dbce7e2058774c3">QwtPlotMarker</a>
, <a class="el" href="class_qwt_thermo.html#a2e974873b3387a96f400c9d8d93b08dd">QwtThermo</a>
, <a class="el" href="class_qwt_wheel.html#a6f46526b283b7fde127bc595c96db7e8">QwtWheel</a>
</li>
<li>setValueMatrix()
: <a class="el" href="class_qwt_matrix_raster_data.html#a578ffc26f04a9099e2b31fc2d9360adb">QwtMatrixRasterData</a>
</li>
<li>setValues()
: <a class="el" href="class_qwt_legend_data.html#a68c3bc398c541f345a12fa9321ad52ed">QwtLegendData</a>
</li>
<li>setViewAngle()
: <a class="el" href="class_qwt_wheel.html#a7f15b6aef98ad6b52bebc749381bc753">QwtWheel</a>
</li>
<li>setVisible()
: <a class="el" href="class_qwt_plot_item.html#a5f0eeb2b72207fd8d33a95b0565657a1">QwtPlotItem</a>
</li>
<li>setWeek0Type()
: <a class="el" href="class_qwt_date_scale_draw.html#acd5e9ce4e1e98e849d6002d22b2f7198">QwtDateScaleDraw</a>
, <a class="el" href="class_qwt_date_scale_engine.html#a5e11c5e7c4f58063ded8f6d35d2816f4">QwtDateScaleEngine</a>
</li>
<li>setWheelBorderWidth()
: <a class="el" href="class_qwt_wheel.html#a4aa70134746908cef687e3c1bb7aa60c">QwtWheel</a>
</li>
<li>setWheelFactor()
: <a class="el" href="class_qwt_magnifier.html#ae3a33ab8776ed2122fecc821a32bb36a">QwtMagnifier</a>
</li>
<li>setWheelModifiers()
: <a class="el" href="class_qwt_magnifier.html#aadfc853d8619b43b21564d8d5fe50093">QwtMagnifier</a>
</li>
<li>setWheelWidth()
: <a class="el" href="class_qwt_wheel.html#ac434254039981344ccca22c76bce4f38">QwtWheel</a>
</li>
<li>setWidth()
: <a class="el" href="class_qwt_dial_simple_needle.html#ad7672543371e38c864e44d9240271c22">QwtDialSimpleNeedle</a>
, <a class="el" href="class_qwt_interval_symbol.html#adfacdeb67c9e6d194df4d3d627de23eb">QwtIntervalSymbol</a>
, <a class="el" href="class_qwt_simple_compass_rose.html#a1439bd174d26b2f06baedc5fab048ed8">QwtSimpleCompassRose</a>
</li>
<li>setWrapping()
: <a class="el" href="class_qwt_abstract_slider.html#ada27ca51ab146554b981fafed38e41e0">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_counter.html#a8fc7d115682f295dfcc64fa8312ccdeb">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#ae56201a09773c85831b829be5858d4ce">QwtWheel</a>
</li>
<li>setX()
: <a class="el" href="class_qwt_point3_d.html#afe85919187fd62bc3db082d1e2b17bac">QwtPoint3D</a>
</li>
<li>setXAxis()
: <a class="el" href="class_qwt_plot_item.html#a81d3dd7feaadda4b0dbb8c13642046cf">QwtPlotItem</a>
</li>
<li>setXDiv()
: <a class="el" href="class_qwt_plot_grid.html#a83dbbe4c2f2c84f195dd499619dfa542">QwtPlotGrid</a>
</li>
<li>setXValue()
: <a class="el" href="class_qwt_plot_marker.html#a0d53b0e0ed8b48478c02a0ecaf5852b2">QwtPlotMarker</a>
</li>
<li>setY()
: <a class="el" href="class_qwt_point3_d.html#a986ba13d44e6960b4fb72795be4ff66a">QwtPoint3D</a>
</li>
<li>setYAxis()
: <a class="el" href="class_qwt_plot_item.html#aa92dad876d76ce136925d5ae8f01db9a">QwtPlotItem</a>
</li>
<li>setYDiv()
: <a class="el" href="class_qwt_plot_grid.html#ae6994cc2137a6f0e63f267942485662d">QwtPlotGrid</a>
</li>
<li>setYValue()
: <a class="el" href="class_qwt_plot_marker.html#a47d8e3c0708ad02a9c7cc6aaf985e278">QwtPlotMarker</a>
</li>
<li>setZ()
: <a class="el" href="class_qwt_plot_item.html#a57d90e4146133b59d589c71b3a643e82">QwtPlotItem</a>
, <a class="el" href="class_qwt_point3_d.html#ae4bed4f5b955843dcf92302b16799e8b">QwtPoint3D</a>
</li>
<li>setZoomBase()
: <a class="el" href="class_qwt_plot_zoomer.html#a4376cd882cf72e1794cbbe7264ee96fb">QwtPlotZoomer</a>
</li>
<li>setZoomInKey()
: <a class="el" href="class_qwt_magnifier.html#a004d9e770ed745bbcb5dcdb7a7ecc0a9">QwtMagnifier</a>
</li>
<li>setZoomOutKey()
: <a class="el" href="class_qwt_magnifier.html#a095a8cc622175fafc5b3cc6eb274af07">QwtMagnifier</a>
</li>
<li>setZoomStack()
: <a class="el" href="class_qwt_plot_zoomer.html#afc12a6e757768a71d1c74b90931bfc70">QwtPlotZoomer</a>
</li>
<li>shape()
: <a class="el" href="class_qwt_plot_shape_item.html#af1295e4d9d16e1606d706326192aa90d">QwtPlotShapeItem</a>
</li>
<li>show()
: <a class="el" href="class_qwt_plot_item.html#a93a50fb9c86bc66617e28315e02281c3">QwtPlotItem</a>
</li>
<li>shrinkFactor()
: <a class="el" href="class_qwt_simple_compass_rose.html#a60278de80aa517aaa0ab7af22d262c30">QwtSimpleCompassRose</a>
</li>
<li>singleStep()
: <a class="el" href="class_qwt_counter.html#a8dfcf202ef15050184788f24b069c4b7">QwtCounter</a>
, <a class="el" href="class_qwt_wheel.html#ae98d9b0586c07266c11d1cd6b86c3519">QwtWheel</a>
</li>
<li>singleSteps()
: <a class="el" href="class_qwt_abstract_slider.html#a3918e2b60a7a5a1d78f00815b1979667">QwtAbstractSlider</a>
</li>
<li>size()
: <a class="el" href="class_qwt_array_series_data.html#ab6cf4d74d9c429bd0479572659534cce">QwtArraySeriesData< T ></a>
, <a class="el" href="class_qwt_c_pointer_data.html#aa8f1b8d366e873bbeac9f1edb21e5ced">QwtCPointerData</a>
, <a class="el" href="class_qwt_point_array_data.html#afe27e8d28457c5f33df5a03109f58a14">QwtPointArrayData</a>
, <a class="el" href="class_qwt_series_data.html#a3cfe5b26fc55a887ac85b0103ae80a3e">QwtSeriesData< T ></a>
, <a class="el" href="class_qwt_symbol.html#ab136531121a0c718179deda3cd354b9b">QwtSymbol</a>
, <a class="el" href="class_qwt_synthetic_point_data.html#a44e4aedcd2eae58e57811c1458ef17a2">QwtSyntheticPointData</a>
</li>
<li>sizeHint()
: <a class="el" href="class_qwt_arrow_button.html#adb6261ccd02e32c824a8af86f0120aee">QwtArrowButton</a>
, <a class="el" href="class_qwt_counter.html#aacbb4750fdd028ef4ad0fba7e874afaf">QwtCounter</a>
, <a class="el" href="class_qwt_dial.html#a10273474c50ba0a985d331bbbd386454">QwtDial</a>
, <a class="el" href="class_qwt_dyn_grid_layout.html#ac4f9ce49d2ed581e5bb2ae4f1c3fa4f9">QwtDynGridLayout</a>
, <a class="el" href="class_qwt_knob.html#a228b4817821bf09d6e8f835f6690f3f3">QwtKnob</a>
, <a class="el" href="class_qwt_legend.html#ae8a77d6e9fce19066d9ff7a77bdb5eff">QwtLegend</a>
, <a class="el" href="class_qwt_legend_label.html#a7df4421d16f0ae5c46bfc4711750a793">QwtLegendLabel</a>
, <a class="el" href="class_qwt_plot.html#a2f57c941dd36f96c395b339474418fba">QwtPlot</a>
, <a class="el" href="class_qwt_scale_widget.html#a464a4935ad66ea01e93f1989c3742d36">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a7d40fb51cf713b3fbf7cf2086880d85b">QwtSlider</a>
, <a class="el" href="class_qwt_text_label.html#aefd60f5b103f4c66879a9b14a3a3a978">QwtTextLabel</a>
, <a class="el" href="class_qwt_thermo.html#a1cc23f51dd1cac3d95e191fab7357335">QwtThermo</a>
, <a class="el" href="class_qwt_wheel.html#ae57b5aa2da03df6c0ac78b896a91e1ba">QwtWheel</a>
</li>
<li>sizeMetrics()
: <a class="el" href="class_qwt_graphic.html#a96b94796cc41494c71ceb2d6144fc95d">QwtGraphic</a>
, <a class="el" href="class_qwt_null_paint_device.html#ab95def8c9d76d4fa6142458fd5ea4970">QwtNullPaintDevice</a>
</li>
<li>sliderChange()
: <a class="el" href="class_qwt_abstract_slider.html#a36ac20a000d40b2fddf5c144d1133f77">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_dial.html#a9e9e5a3aac1bc3752de8ab0a7ef71be2">QwtDial</a>
</li>
<li>sliderMoved()
: <a class="el" href="class_qwt_abstract_slider.html#ae59671d27931b545073e599a10967452">QwtAbstractSlider</a>
</li>
<li>sliderPressed()
: <a class="el" href="class_qwt_abstract_slider.html#afd92a0c79c113b3c5e9952d12cff80f5">QwtAbstractSlider</a>
</li>
<li>sliderRect()
: <a class="el" href="class_qwt_slider.html#aab6a8bf4ee7998f879dbc8f5f933d985">QwtSlider</a>
</li>
<li>sliderReleased()
: <a class="el" href="class_qwt_abstract_slider.html#ab94184da7a029a5f586671251ff380ea">QwtAbstractSlider</a>
</li>
<li>spacing()
: <a class="el" href="class_qwt_abstract_scale_draw.html#ad3b290a76426a1a22a870e84c1655666">QwtAbstractScaleDraw</a>
, <a class="el" href="class_qwt_legend_label.html#a46c2aec2d42136cb5b9497f5e592980b">QwtLegendLabel</a>
, <a class="el" href="class_qwt_plot_abstract_bar_chart.html#a6532fb226ed6df5452d3d96de0ad85b9">QwtPlotAbstractBarChart</a>
, <a class="el" href="class_qwt_plot_layout.html#a1fad9d271b40d6b6e68918d92eb64d02">QwtPlotLayout</a>
, <a class="el" href="class_qwt_plot_legend_item.html#a0f10e23857ef543d8e59d9e630873ce0">QwtPlotLegendItem</a>
, <a class="el" href="class_qwt_plot_marker.html#a4aae568cd271f14ef965dbb7f52a52b7">QwtPlotMarker</a>
, <a class="el" href="class_qwt_scale_widget.html#a963c187b435d2ba0216c502f87b726ca">QwtScaleWidget</a>
, <a class="el" href="class_qwt_slider.html#a192cde6bce37e30ec6a18e1a7d77a699">QwtSlider</a>
, <a class="el" href="class_qwt_thermo.html#a1d0c15c3d94e7e063323a9e4d91c58e8">QwtThermo</a>
</li>
<li>specialSymbol()
: <a class="el" href="class_qwt_plot_bar_chart.html#a413a67d1a58f2ed7ddd1ff6aade20012">QwtPlotBarChart</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#a1c41b38520d171e6fc9d48b3d36680eb">QwtPlotMultiBarChart</a>
</li>
<li>spline()
: <a class="el" href="class_qwt_spline_curve_fitter.html#ac501260a25953e1ded6bbc84c3250fa8">QwtSplineCurveFitter</a>
</li>
<li>splineSize()
: <a class="el" href="class_qwt_spline_curve_fitter.html#af7cc3a6b3dc82736e643bf5b346b2c6e">QwtSplineCurveFitter</a>
</li>
<li>splineType()
: <a class="el" href="class_qwt_spline.html#a1ba958ef9d8ea93db822fde1a1176f51">QwtSpline</a>
</li>
<li>start()
: <a class="el" href="class_qwt_system_clock.html#a3408bd55b49582f7847865aacc7beb37">QwtSystemClock</a>
</li>
<li>startBorderDist()
: <a class="el" href="class_qwt_scale_widget.html#a000a9be0eede5f43c938963ebba62305">QwtScaleWidget</a>
</li>
<li>state()
: <a class="el" href="class_qwt_picker_machine.html#a36293ce5cc8fc0ca68740ba928e8f049">QwtPickerMachine</a>
</li>
<li>stateData()
: <a class="el" href="class_qwt_painter_command.html#afb99f1cae5d81177d8511f38c1390ed8">QwtPainterCommand</a>
</li>
<li>stateMachine()
: <a class="el" href="class_qwt_picker.html#ae1a5bb377fda165cd83ac1b318efe5e5">QwtPicker</a>
</li>
<li>stepAlignment()
: <a class="el" href="class_qwt_abstract_slider.html#a9a1b59962f95317efd0cbdfb43e76d23">QwtAbstractSlider</a>
, <a class="el" href="class_qwt_wheel.html#a217b37509785f04121a447798a329333">QwtWheel</a>
</li>
<li>stepButton1()
: <a class="el" href="class_qwt_counter.html#affdd91a6698ff0c90e24e69ff410924f">QwtCounter</a>
</li>
<li>stepButton2()
: <a class="el" href="class_qwt_counter.html#acec167b50ae44afe5ff8e9233e77a939">QwtCounter</a>
</li>
<li>stepButton3()
: <a class="el" href="class_qwt_counter.html#a259de8df2b8928139d1fc4738694eac8">QwtCounter</a>
</li>
<li>stop()
: <a class="el" href="class_qwt_sampling_thread.html#ac644ff417342617a39dbd86e50d09132">QwtSamplingThread</a>
</li>
<li>stopFlying()
: <a class="el" href="class_qwt_wheel.html#af46272363dc06755e2d4c7e448664ff8">QwtWheel</a>
</li>
<li>stretchGrid()
: <a class="el" href="class_qwt_dyn_grid_layout.html#a7458a33ba41b2c150373ab0bbb7c5f48">QwtDynGridLayout</a>
</li>
<li>stretchSelection()
: <a class="el" href="class_qwt_picker.html#a24b0e4bcf6a9b7f41c81ea19305105a8">QwtPicker</a>
</li>
<li>strip()
: <a class="el" href="class_qwt_scale_engine.html#a7216821d6866ff72d8367e86111397eb">QwtScaleEngine</a>
</li>
<li>style()
: <a class="el" href="class_qwt_column_symbol.html#afbe377dd5ea28a56df9f2bbe4ddff3c4">QwtColumnSymbol</a>
, <a class="el" href="class_qwt_interval_symbol.html#a942ebebe5b03daf644f8d382ebb2bc47">QwtIntervalSymbol</a>
, <a class="el" href="class_qwt_plot_curve.html#a3a40b9e7054d35e65ecdd6956d138bc7">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#a135ffe84d81a978b9db5face2215d805">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#a4ff048cae9b504cc2e2f535d782832ec">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#ad8d6ad8d2b4a8b51c32d708e53164e6c">QwtPlotMultiBarChart</a>
, <a class="el" href="class_qwt_symbol.html#a098dcc6a9e838ef964370b369f86e458">QwtSymbol</a>
</li>
<li>swapData()
: <a class="el" href="class_qwt_series_store.html#a5f47997d53d580e6a12a6ca61b7225b0">QwtSeriesStore< T ></a>
</li>
<li>symbol()
: <a class="el" href="class_qwt_plot_bar_chart.html#aa5123ad1cd4089988a2723d552ff83c3">QwtPlotBarChart</a>
, <a class="el" href="class_qwt_plot_curve.html#add9a08ca3decc6a97c0a5179a23eb073">QwtPlotCurve</a>
, <a class="el" href="class_qwt_plot_histogram.html#ab62b7eaebaacfdffe4bd3d235e324fba">QwtPlotHistogram</a>
, <a class="el" href="class_qwt_plot_interval_curve.html#ab226ee51029c8fbfcbed92e194a76e63">QwtPlotIntervalCurve</a>
, <a class="el" href="class_qwt_plot_marker.html#af78b37a947826364c4d0b8c191de566a">QwtPlotMarker</a>
, <a class="el" href="class_qwt_plot_multi_bar_chart.html#ac6b41f2f65e4d6ee49c1e2d328cb5d3c">QwtPlotMultiBarChart</a>
</li>
<li>symbolBrush()
: <a class="el" href="class_qwt_plot_trading_curve.html#a0e5f8888a94649dccf6bbcdb478b962b">QwtPlotTradingCurve</a>
</li>
<li>symbolExtent()
: <a class="el" href="class_qwt_plot_trading_curve.html#ae07070e6ac06a9d2cef9e405bb6a2eaa">QwtPlotTradingCurve</a>
</li>
<li>symbolPen()
: <a class="el" href="class_qwt_plot_trading_curve.html#a1181232279dd56dd5bc6ade42d066caa">QwtPlotTradingCurve</a>
</li>
<li>symbolStyle()
: <a class="el" href="class_qwt_plot_trading_curve.html#a3216f24c652457e81cdc06ca16406d42">QwtPlotTradingCurve</a>
</li>
<li>symmetrize()
: <a class="el" href="class_qwt_interval.html#af830a4e9be34b82eb66b96c5f4276279">QwtInterval</a>
</li>
<li>syncScale()
: <a class="el" href="class_qwt_plot_rescaler.html#a21f64ee537246c96bb724f09f3a6524c">QwtPlotRescaler</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.14 </li>
</ul>
</div>
</body>
</html>
|
src/client/components/list/card/ListCard.css | DBCDK/content-first | .list-card {
width: 250px;
display: inline-block;
background: var(--lys-graa);
text-decoration: none;
padding: 0;
color: var(--petroleum);
margin-bottom: 65px;
}
.list-card:first-child {
margin-left: 0;
}
.list-card a {
display: block;
height: 100%;
}
.list-card .list-card-wrap {
display: inline-block;
width: 100%;
height: 100%;
}
.list-card-cover {
height: 160px;
}
.list-card-cover img {
width: 100%;
height: 100%;
object-fit: cover;
}
.list-card-coverTemplate {
padding: 30px 55px;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.list-card-coverTemplate .list-card-brick {
background-color: #fff;
height: 25px;
border-radius: 5px;
}
.list-card-coverTemplate .list-card-brick-sm {
width: 68%;
}
.list-card-coverTemplate .list-card-brick-md {
width: 78%;
}
.list-card-coverTemplate .list-card-brick-lg {
width: 90%;
}
.list-card-summary {
height: 75px;
}
.list-card-title,
.list-card-about strong {
font-weight: 600;
line-height: 1.3rem;
}
a.link {
color: var(--petrolium);
text-decoration: none;
}
.list-card-description {
font-family: var(--primary-font);
line-height: 1.3rem;
font-size: 1rem;
font-weight: 400;
}
.list-card-bottom {
height: 38px;
font-size: 0.8rem;
display: flex;
justify-content: space-between;
}
.list-card-bottom p {
font-size: 12px !important;
}
.list-card-bottom .profile-image {
width: 30px;
height: 30px;
color: black;
}
.list-card-bottom .profile-name {
margin-left: 0.5rem;
}
.list-card-bottom .list-card-interactions {
display: flex;
flex-direction: row;
}
.list-card-bottom .list-card-interactions .list-card-interaction i {
font-size: 18px;
}
.ListCard__skeleton {
display: inline-block;
width: 250px;
height: auto;
background: var(--lys-graa);
padding: 15px;
margin-bottom: 65px;
}
.ListCard__skeleton:first-child {
margin-left: 0;
}
.ListCard__skeleton .ListCard__skeleton__cover {
height: 160px;
background-color: var(--porcelain);
margin-bottom: 15px;
}
|
application/asset/css/advanced-search.css | omeka/omeka-s | #advanced-search .value{margin-bottom:0;display:flex}@media screen and (max-width: 767px){#advanced-search .value{flex-wrap:wrap}}.inputs select[name*=sort]{width:auto}#advanced-search .inputs select,#advanced-search .inputs input,#advanced-search .inputs button,#advanced-search .inputs a.button{margin:.25rem .25rem .25rem 0;min-width:0}#advanced-search .field-meta{margin:.25rem 0}#advanced-search .value>*{margin-top:0}#advanced-search .value select:first-child,#advanced-search .value input:first-child,#advanced-search #property-queries .value:first-child select:nth-child(2){margin-left:0}#advanced-search .multi-value .value:first-child .joiner,#advanced-search .multi-value .value:only-child button.remove-value{display:none}#advanced-search #property-queries .joiner{width:initial;min-width:initial}#advanced-search #property-queries .query-text:disabled{display:none}#advanced-search .add-value{margin-bottom:0} |
known_files/hashes/themes/bartik/css/ie6.css | gohdan/DFC | Drupal 7.17 = 309b94a1974939ecd929fa8ddefe0ddf
|
public/500.html | iNeedCode/Maalify | <!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r"
crossorigin="anonymous">
<style>
body {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAxMC8yOS8xMiKqq3kAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzVxteM2AAABHklEQVRIib2Vyw6EIAxFW5idr///Qx9sfG3pLEyJ3tAwi5EmBqRo7vHawiEEERHS6x7MTMxMVv6+z3tPMUYSkfTM/R0fEaG2bbMv+Gc4nZzn+dN4HAcREa3r+hi3bcuu68jLskhVIlW073tWaYlQ9+F9IpqmSfq+fwskhdO/AwmUTJXrOuaRQNeRkOd5lq7rXmS5InmERKoER/QMvUAPlZDHcZRhGN4CSeGY+aHMqgcks5RrHv/eeh455x5KrMq2yHQdibDO6ncG/KZWL7M8xDyS1/MIO0NJqdULLS81X6/X6aR0nqBSJcPeZnlZrzN477NKURn2Nus8sjzmEII0TfMiyxUuxphVWjpJkbx0btUnshRihVv70Bv8ItXq6Asoi/ZiCbU6YgAAAABJRU5ErkJggg==);
}
.error-template {
padding: 40px 15px;
text-align: center;
}
.error-actions {
margin-top: 15px;
margin-bottom: 15px;
}
.error-actions .btn {
margin-right: 10px;
}
.btn-maalify {
background: #1cace4
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="error-template">
<img src="maalify-logo-long.png" width="50%">
<h1>
Oops!</h1>
<h1>
500 Internal Server Error </h1>
<div class="error-details">
Sorry, an error has occured, Requested page not found!
</div>
<div class="error-actions">
<a href="/" class="btn btn-primary btn-lg btn-maalify"><span
class="glyphicon glyphicon-home"></span>
Back to Maalify </a><a
href="mailto:maalifyprogramm@gmail.com?subject=Bug%20(500)"
class="btn btn-default btn-lg"><span
class="glyphicon glyphicon-envelope"></span> Contact The Developer </a>
</div>
</div>
</div>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
</body>
</html>
|
RossFamilyTree/fam/7/3/d15f6094e2352681dc55fc80a37.html | RossGammon/the-gammons.net | <!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - Family of GAMMON, Ann</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mobile-web-app-capable" content="yes" />
<meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" />
<meta name="author" content="" />
<link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" />
<link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1 id="SiteTitle">Ross Gammon’s Family Tree</h1>
</div>
<div class="wrapper" id="nav" role="navigation">
<div class="container">
<ul class="menu" id="dropmenu">
<li><a href="../../../individuals.html" title="Individuals">Individuals</a></li>
<li><a href="../../../index.html" title="Surnames">Surnames</a></li>
<li class = "CurrentSection"><a href="../../../families.html" title="Families">Families</a></li>
<li><a href="../../../events.html" title="Events">Events</a></li>
<li><a href="../../../places.html" title="Places">Places</a></li>
<li><a href="../../../sources.html" title="Sources">Sources</a></li>
<li><a href="../../../repositories.html" title="Repositories">Repositories</a></li>
<li><a href="../../../media.html" title="Media">Media</a></li>
<li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li>
</ul>
</div>
</div>
<div class="content" id="RelationshipDetail">
<h2>Family of GAMMON, Ann<sup><small></small></sup></h2>
<div class="subsection" id="families">
<h4>Families</h4>
<table class="infolist">
<tr class="BeginFamily">
<td class="ColumnType">Unknown</td>
<td class="ColumnAttribute">Partner</td>
<td class="ColumnValue">
<a href="../../../ppl/1/f/d15f6094de979516646a1fbf2f1.html">GAMMON, Ann<span class="grampsid"> [I18099]</span></a>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Attributes</td>
<td class="ColumnValue">
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">92D395AF652E9B48A9A477AB4F21C3F5B6D1</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</div>
<div class="subsection" id="attributes">
<h4>Attributes</h4>
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">92D395AF652E9B48A9A477AB4F21C3F5B6D1</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fullclear"></div>
<div id="footer">
<p id="createdate">
Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:55:58<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
res/docs/tech/src/main/resources/org/jbundle/res/docs/programmer/tour/booking/BK_DIS_BOOKT.html | jbundle/jbundle | <html>
<head>
<title></title>
</head>
<body text="#000000" link="#0000ff" vlink="#551a8b" alink="#ff0000" bgcolor="#c0c0c0">
<p>/PROG_HDR/
<br wp="br1"><br wp="br2">
<p>Program Description:
<br wp="br1"><br wp="br2">
<p>This program is used to display bookings by tour.
<br wp="br1"><br wp="br2">
<p>/SCREEN1/
<br wp="br1"><br wp="br2">
<p>Program Operation:
<br wp="br1"><br wp="br2">
<p>This program is useful when using the tour display programs to get the booking(s) in use for a
particular tour.
<br wp="br1"><br wp="br2">
<p>Enter the tour number to display. The tour number defaults to the current tour for this booking. This
is useful when checking for the other bookings taking this same (group series) tour.
<br wp="br1"><br wp="br2">
<p> All bookings for this tour will display in booking number order.
</body>
</html>
|
dcc-portal-ui/app/scripts/common/views/notify.html | icgc-dcc/dcc-portal | <div>
<div data-ng-if="notify.isVisible() && notify.isError()" class="t_notify_popup {{notify.getTheme()}}">
<div class="t_notify_body pull-left">
<span>
An error occured while performing the requested operation.
<a class="t_notify_link" href="" data-ng-click="showMessage = !showMessage">See details</a>
for more information.
</span>
<div data-ng-if="showMessage">
<pre><code data-ng-bind="responseParams.message || notify.getMessage()"></code></pre>
<span data-ng-if="responseParams.source && responseParams.headers">
We have created an error report that you can send to help us improve ICGC Portal.
<a class="t_notify_link" href="mailto:dcc-support@icgc.org?Subject=ICGC DCC Portal - Error Report
&body=An error occured while {{responseParams.source}} operation.%0A
Error: {{responseParams.message || notify.getMessage()}}%0A
Portal Information: %0A
API Version: {{responseParams.headers['x-icgc-api-version']}}%0A
Index Commit Id: {{responseParams.headers['x-icgc-index-commitid']}}%0A
Index Name: {{responseParams.headers['x-icgc-index-name']}}%0A
Portal Commit Id: {{responseParams.headers['x-icgc-portal-commitid']}}">Email error report.</a>
</span>
</div>
</div>
<div class="pull-right">
<a class="t_notify_link" data-ng-href="" data-ng-click="notify.redirectHome()">
<i data-ng-if="notify.isRemovable()" class="icon-home"></i>Home
</a>
<span> </span>
<a class="t_notify_link" data-ng-href="" data-ng-click="notify.hide()">
<i data-ng-if="notify.isRemovable()" class="icon-cancel"></i>Close
</a>
</div>
</div>
<div data-ng-if="notify.isVisible() && !notify.isError()" class="t_notify_valid_popup">
<div class="t_notify_body pull-left">
<span>
{{ notify.getMessage() }}
</span>
<span class="t_notify_link_text" data-ng-if="notify.getLinkText() != ''">
<a href="{{ notify.getLink() }}">{{ notify.getLinkText() }}</a>
</span>
</div>
<div class="pull-right">
<a class="t_notify_link" data-ng-href="" data-ng-click="notify.dismiss()">
<i data-ng-if="notify.isRemovable()" class="icon-cancel"></i>Close
</a>
</div>
</div>
</div> |
WebRoot/chap05/b.html | zjritzirok123/Test | <!DOCTYPE html>
<html>
<head>
<title>b.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
.container{
width:200px;
height:200px;
border:1px solid black;
}
.a{
width:150px;
height:150px;
border:1px solid red;
position:relative;
margin:10px;
}
.a:before{
content:'';
position:absolute;
left:25px;
margin-left:0px;
top:20px;
width:0;
height:0;
border-left:0;
border-top:7px solid transparent;
border-bottom:7px solid transparent;
border-right:7px solid blue;
}
.b{
width:50px;
height:50px;
border:1px solid green;
}
</style>
</head>
<body>
<div class="container">
456456
<div class="a">999<div class="b">000</div>123123</div>
</div>
</body>
</html>
|
Doc/qtqml/qtqml-referenceexamples-coercion-person-cpp.html | angeloprudentino/QtNets | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>person.cpp Example File | Qt QML 5.7</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javascript">
window.onload = function(){document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");};
</script>
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<table><tr>
<td ><a href="../qtdoc/supported-platforms-and-configurations.html#qt-5-7">Qt 5.7</a></td><td ><a href="qtqml-index.html">Qt QML</a></td><td ><a href="qtqml-referenceexamples-coercion-example.html">Extending QML - Inheritance and Coercion Example</a></td><td >person.cpp Example File</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.7.0 Reference Documentation</td>
</tr></table>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">person.cpp Example File</h1>
<span class="subtitle">referenceexamples/coercion/person.cpp</span>
<!-- $$$referenceexamples/coercion/person.cpp-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">
<span class="comment">/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/</span>
<span class="preprocessor">#include "person.h"</span>
Person<span class="operator">::</span>Person(<span class="type"><a href="../qtcore/qobject.html">QObject</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="../qtcore/qobject.html">QObject</a></span>(parent)<span class="operator">,</span> m_shoeSize(<span class="number">0</span>)
{
}
<span class="type"><a href="../qtcore/qstring.html">QString</a></span> Person<span class="operator">::</span>name() <span class="keyword">const</span>
{
<span class="keyword">return</span> m_name;
}
<span class="type">void</span> Person<span class="operator">::</span>setName(<span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&</span>n)
{
m_name <span class="operator">=</span> n;
}
<span class="type">int</span> Person<span class="operator">::</span>shoeSize() <span class="keyword">const</span>
{
<span class="keyword">return</span> m_shoeSize;
}
<span class="type">void</span> Person<span class="operator">::</span>setShoeSize(<span class="type">int</span> s)
{
m_shoeSize <span class="operator">=</span> s;
}
<span class="comment">// ![1]</span>
Boy<span class="operator">::</span>Boy(<span class="type"><a href="../qtcore/qobject.html">QObject</a></span> <span class="operator">*</span> parent)
: Person(parent)
{
}
Girl<span class="operator">::</span>Girl(<span class="type"><a href="../qtcore/qobject.html">QObject</a></span> <span class="operator">*</span> parent)
: Person(parent)
{
}
<span class="comment">// ![1]</span>
</pre>
</div>
<!-- @@@referenceexamples/coercion/person.cpp -->
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2016 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. </p>
</div>
</body>
</html>
|
blog/00/videos-evang.html | kdeividborges/mid7 | <html>
<head>
<title>MIDSEVEN</title>
</a>
</div>
</div></div>
</div>
<link rel="shortcut icon" href="../img/md5.png" type="image/x-icon">
<BODY bgcolor="white" background="../img/office/video-shooting.jpg" >
<div style="color: blue; text-align: center;">
<div style="color: blue; text-align: center;">
<div style='clear:both;'/>
<div class='widget-content'>
<div style='position:fixed; bottom: 14%; right: 96%;'>
<table cellpadding="0" cellspacing="0" class="tr-caption-container" style="float: left; text-align: center;">
<tbody>
<tr><td style="text-align: center;">
<a href="../hinario/index.html" ><img border="10" alt="slide hinario" src="../img/hinario.png" height="105px" width="105px" title="slide hinario" >
<a href="cdsjovem.html" ><img border="10" alt="CD JOVEM" src="../img/icones/111.png" height="105px" width="105px" title="CD JOVEM" >
<a href="OFERTAS/DIZIMOSV.webm" ><img border="10" alt="DIZIMOS E OFERTAS" src="../img/oferta.jpg" height="105px" width="105px" title="DIZIMOS E OFERTAS" >
<a href="../videos/O%20PODER%20DO%20AMOR.VOB" ><img border="10" alt="O PODER DO AMOR" src="../img/01.bmp" height="105px" width="105px" title="O PODER DO AMOR" >
<a href="../videos/Jesus meu capitão.VOB" ><img border="10" alt="Jesus meu capitão" src="../img/02.bmp" height="105px" width="105px" title="Jesus meu capitão" >
<a href="../videos/O MELHOR LUGAR DO MUNDO.VOB" ><img border="10" alt="O MELHOR LUGAR DO MUNDO" src="../img/03.bmp" height="105px" width="105px" title="O MELHOR LUGAR DO MUNDO" >
<a href="../videos/O ESPÍRITO DE DEUS.mpg" ><img border="10" alt="O ESPÍRITO DE DEUS" src="../img/05.bmp" height="105px" width="105px" title="O ESPÍRITO DE DEUS" >
<a href="../videos/FAMILIA.mpg" ><img border="10" alt="FAMILIA" src="../img/06.bmp" height="105px" width="105px" title="FAMILIA" >
<a href="../videos/CORPO E FAMÍLIA .mpg" ><img border="10" alt="CORPO E FAMÍLIA" src="../img/07.bmp" height="105px" width="105px" title="CORPO E FAMÍLIA" >
<a href="../videos/NASCE EM MIM - Atalho.lnk" ><img border="10" alt="NASCE EM MIM" src="../img/08.PNG" height="105px" width="105px" title="NASCE EM MIM" >
<a href="../videos/ENCONTROS.ppsx" ><img border="10" alt="ENCONTROS" src="../img/09.bmp" height="105px" width="105px" title="ENCONTROS" >
<a href="../videos/FALAR COM DEUS.VOB" ><img border="10" alt="FALAR COM DEUS" src="../img/10.bmp" height="105px" width="105px" title="FALAR COM DEUS" >
<a href="../videos/Vitoria so vem do senhor-1997.ppsx" ><img border="10" alt="Vitoria so vem do senhor-1997" src="../img/11.bmp" height="105px" width="105px" title="Vitoria so vem do senhor-1997" >
<a href="../videos/FONTE DE ESPERANCA.ppsx" ><img border="10" alt="FONTE DE ESPERANCA" src="../img/12.bmp" height="105px" width="105px" title="FONTE DE ESPERANCA" >
<a href="../videos/a/suaGloria.exe - Atalho.lnk" ><img border="10" alt="suaGloria" src="../img/13.PNG" height="105px" width="105px" title="suaGloria" >
<a href="../videos/VASO DE HONRA - RENOVA-ME.VOB" ><img border="10" alt="VASO DE HONRA - RENOVA-ME" src="../img/14.bmp" height="105px" width="105px" title="VASO DE HONRA - RENOVA-ME" >
<a href="../videos/NOITES TRAICOEIRAS -DEUS TE QUER SORRINDO.mpg" ><img border="10" alt="NOITES TRAICOEIRAS -DEUS TE QUER SORRINDO" src="../img/15.bmp" height="105px" width="105px" title="NOITES TRAICOEIRAS -DEUS TE QUER SORRINDO" >
<a href="../videos/Adoracao Infantil.webm" ><img border="10" alt="Adoracao Infantil" src="../img/17.png" height="105px" width="105px" title="Adoracao Infantil" >
</a></a></a></a></a></a></a></a></a></a></a></a></a></a></a>
</tr>
</div>
</table>
</td></tr>
</tbody>
</table>
</div> </div> </div> </div> </div>
</head>
</html>
|
django/pnwmoths/templates/menu/browse_submenu.html | huddlej/pnwmoths | {% load menu_tags thumbnail species_tags browse_filters %}
<div class="browse_items">
{% for child in children %}
{% if forloop.counter0|divisibleby:"2" %}
{% if child.is_leaf_node %}
<div class="browse_item_row">
{% endif %}
{% endif %}
{# Added on an ajax request for the tree's horizontal depth lines #}
{% if request.is_ajax %}
<div class="browse_item_wrapper">
{% endif %}
<div class="browse_item{% if child.is_leaf_node %} species{% endif%}">
<div class="browse_heading">
<h3 {% if child|navnode_is_species_or_genus %}class="browse_genus_species"{% endif %}>
<a href="{{ child.get_absolute_url }}">{{ child.get_menu_title }}</a> {% if child|navnode_species_count %}({{ child|navnode_species_count }}){% endif %}
</h3>
</div>
<div style="clear: both; height: 0px;"> </div>
<div class="ajax"></div>
<span class="browse_thumbs">
{% imageset_by_navnode child as 4 subtree_images %}
{% for species_image in subtree_images %}
{% if child.is_leaf_node %}
{% thumbnail species_image.image species_image.SIZES.medium as im %}
<img src="{{ im.url }}" />
{% endthumbnail %}
{% else %}
{% thumbnail species_image.image species_image.SIZES.thumbnail as im %}
<img src="{{ im.url }}" width="{{ im.x }}" height="{{ im.y }}" />
{% endthumbnail %}
{% endif %}
{% endfor %}
</span>
</div>
{% if request.is_ajax %}
</div>
{% endif %}
{% if forloop.counter|divisibleby:"2" or forloop.last %}
{% if child.is_leaf_node %}
<div style="clear: both; height: 0px"></div>
</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
|
Documentation/server/index-files/index-11.html | neeh/HelloAnt | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Tue Jun 23 22:18:10 CEST 2015 -->
<title>L-Index</title>
<meta name="date" content="2015-06-23">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="L-Index";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-10.html">Prev Letter</a></li>
<li><a href="index-12.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-11.html" target="_top">Frames</a></li>
<li><a href="index-11.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">K</a> <a href="index-11.html">L</a> <a href="index-12.html">M</a> <a href="index-13.html">N</a> <a href="index-14.html">P</a> <a href="index-15.html">R</a> <a href="index-16.html">S</a> <a href="index-17.html">T</a> <a href="index-18.html">U</a> <a href="index-19.html">V</a> <a href="index-20.html">W</a> <a href="index-21.html">_</a> <a name="I:L">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="memberNameLink"><a href="../ants/AntFoodSpawn.html#lastHarvestRound">lastHarvestRound</a></span> - Variable in class ants.<a href="../ants/AntFoodSpawn.html" title="class in ants">AntFoodSpawn</a></dt>
<dd>
<div class="block">The last time food was harvested from the food spawn.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ants/AntHill.html#lastVisitRound">lastVisitRound</a></span> - Variable in class ants.<a href="../ants/AntHill.html" title="class in ants">AntHill</a></dt>
<dd>
<div class="block">The last time an ant visited the hill.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/GameServer.html#listener">listener</a></span> - Variable in class basis.<a href="../basis/GameServer.html" title="class in basis">GameServer</a></dt>
<dd>
<div class="block">The client listener used to listen for incoming TCP connections and creating
communicators to exchange with these clients.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/TCPClientListener.html#listenerThread">listenerThread</a></span> - Variable in class basis.<a href="../basis/TCPClientListener.html" title="class in basis">TCPClientListener</a></dt>
<dd>
<div class="block">The thread in charge of running the client listener mechanics.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/GameManager.html#LOAD_TIME_MS">LOAD_TIME_MS</a></span> - Static variable in class basis.<a href="../basis/GameManager.html" title="class in basis">GameManager</a></dt>
<dd>
<div class="block">The time of response a bot should respect to send its "gameactions" message after a
"gamestate" message from the server.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ants/AntMapTemplate.html#loadFromFile-java.lang.String-">loadFromFile(String)</a></span> - Method in class ants.<a href="../ants/AntMapTemplate.html" title="class in ants">AntMapTemplate</a></dt>
<dd>
<div class="block">Loads an ant map from a file.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ants/AntGameServer.html#loadMapFiles--">loadMapFiles()</a></span> - Method in class ants.<a href="../ants/AntGameServer.html" title="class in ants">AntGameServer</a></dt>
<dd>
<div class="block">Loads all maps files available in GameServer/res/maps/.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ants/AntGameReplayData.html#loadTime">loadTime</a></span> - Variable in class ants.<a href="../ants/AntGameReplayData.html" title="class in ants">AntGameReplayData</a></dt>
<dd>
<div class="block">The loading time of the game.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/Game.html#loadTimeMs">loadTimeMs</a></span> - Variable in class basis.<a href="../basis/Game.html" title="class in basis">Game</a></dt>
<dd>
<div class="block">The time the server has to wait after "gamestart" message.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ants/Ant.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/Ant.html" title="class in ants">Ant</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntFakeCommunicator.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntFakeCommunicator.html" title="class in ants">AntFakeCommunicator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntFoodSpawn.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntFoodSpawn.html" title="class in ants">AntFoodSpawn</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntGame.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntGame.html" title="class in ants">AntGame</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntGameServer.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntGameServer.html" title="class in ants">AntGameServer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntHill.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntHill.html" title="class in ants">AntHill</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntMapTemplate.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntMapTemplate.html" title="class in ants">AntMapTemplate</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ants/AntWall.html#LOGGER">LOGGER</a></span> - Static variable in class ants.<a href="../ants/AntWall.html" title="class in ants">AntWall</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/App.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/App.html" title="class in basis">App</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/Bot.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/Bot.html" title="class in basis">Bot</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/Game.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/Game.html" title="class in basis">Game</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/GameServer.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/GameServer.html" title="class in basis">GameServer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/TCPClientCommunicator.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/TCPClientCommunicator.html" title="class in basis">TCPClientCommunicator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/TCPClientListener.html#LOGGER">LOGGER</a></span> - Static variable in class basis.<a href="../basis/TCPClientListener.html" title="class in basis">TCPClientListener</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#login-java.lang.String-basis.TCPClientCommunicator-basis.BotMode-java.lang.String-">login(String, TCPClientCommunicator, BotMode, String)</a></span> - Method in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd>
<div class="block">Attempts to login bot on the database.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#loginSelectStmt">loginSelectStmt</a></span> - Variable in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#loginUpdateStmt">loginUpdateStmt</a></span> - Variable in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#logout-java.lang.String-">logout(String)</a></span> - Method in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd>
<div class="block">Logs out a bot from the database by setting its status to 0.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/TCPClientCommunicator.html#logout--">logout()</a></span> - Method in class basis.<a href="../basis/TCPClientCommunicator.html" title="class in basis">TCPClientCommunicator</a></dt>
<dd>
<div class="block">Attempts to properly logout the bot of the client from the server and notifies the
server of this event.</div>
</dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#logoutStmt">logoutStmt</a></span> - Variable in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../basis/DBManager.html#logSQLException-java.lang.String-java.sql.SQLException-">logSQLException(String, SQLException)</a></span> - Method in class basis.<a href="../basis/DBManager.html" title="class in basis">DBManager</a></dt>
<dd>
<div class="block">Logs a personalized error message for a SQL exception.</div>
</dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">K</a> <a href="index-11.html">L</a> <a href="index-12.html">M</a> <a href="index-13.html">N</a> <a href="index-14.html">P</a> <a href="index-15.html">R</a> <a href="index-16.html">S</a> <a href="index-17.html">T</a> <a href="index-18.html">U</a> <a href="index-19.html">V</a> <a href="index-20.html">W</a> <a href="index-21.html">_</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-10.html">Prev Letter</a></li>
<li><a href="index-12.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-11.html" target="_top">Frames</a></li>
<li><a href="index-11.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
templates/index.html | VimFeed/VimFeed | {% extends 'base.html' %}
{% block content %}
{% for entry in entries %}
<div class='entry'>
<div><span class='label'>no. {{ loop.index }}</span></div>
<div><span class='label'>when:</span> {{ entry.entry_timestamp|timestamp }}</div>
<div><span class='label'>where:</span> <a class='site_url' href='{{ entry.feed_link }}'>{{ entry.feed_title }}</a></div>
<div><span class='label'>what:</span> <a class='entry_url' href='{{ entry.entry_link }}'>{{ entry.entry_title }}</a></div>
</div>
{% endfor %}
{% endblock %}
|
doc/gobject-2.0/GLib.ValueTransform.html | themightyug/ledborg-server | <?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>GLib.ValueTransform -- Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">GLib.ValueTransform Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">gobject-2.0</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="GLib.html">GLib</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="GLib.Signal.html">Signal</a></li>
<li class="namespace"><a href="GLib.SignalHandler.html">SignalHandler</a></li>
<li class="enum"><a href="GLib.BindingFlags.html">BindingFlags</a></li>
<li class="enum"><a href="GLib.ConnectFlags.html">ConnectFlags</a></li>
<li class="enum"><a href="GLib.ParamFlags.html">ParamFlags</a></li>
<li class="enum"><a href="GLib.SignalFlags.html">SignalFlags</a></li>
<li class="enum"><a href="GLib.SignalMatchType.html">SignalMatchType</a></li>
<li class="enum"><a href="GLib.TypeDebugFlags.html">TypeDebugFlags</a></li>
<li class="interface"><a href="GLib.TypePlugin.html">TypePlugin</a></li>
<li class="class"><a href="GLib.Binding.html">Binding</a></li>
<li class="class"><a href="GLib.Closure.html">Closure</a></li>
<li class="class"><a href="GLib.EnumClass.html">EnumClass</a></li>
<li class="class"><a href="GLib.FlagsClass.html">FlagsClass</a></li>
<li class="class"><a href="GLib.FlagsValue.html">FlagsValue</a></li>
<li class="class"><a href="GLib.InitiallyUnowned.html">InitiallyUnowned</a></li>
<li class="class"><a href="GLib.Object.html">Object</a></li>
<li class="class"><a href="GLib.ObjectClass.html">ObjectClass</a></li>
<li class="class"><a href="GLib.ParamSpec.html">ParamSpec</a></li>
<li class="class"><a href="GLib.ParamSpecBoolean.html">ParamSpecBoolean</a></li>
<li class="class"><a href="GLib.ParamSpecChar.html">ParamSpecChar</a></li>
<li class="class"><a href="GLib.ParamSpecDouble.html">ParamSpecDouble</a></li>
<li class="class"><a href="GLib.ParamSpecEnum.html">ParamSpecEnum</a></li>
<li class="class"><a href="GLib.ParamSpecFlags.html">ParamSpecFlags</a></li>
<li class="class"><a href="GLib.ParamSpecFloat.html">ParamSpecFloat</a></li>
<li class="class"><a href="GLib.ParamSpecInt.html">ParamSpecInt</a></li>
<li class="class"><a href="GLib.ParamSpecInt64.html">ParamSpecInt64</a></li>
<li class="class"><a href="GLib.ParamSpecLong.html">ParamSpecLong</a></li>
<li class="class"><a href="GLib.ParamSpecParam.html">ParamSpecParam</a></li>
<li class="class"><a href="GLib.ParamSpecString.html">ParamSpecString</a></li>
<li class="class"><a href="GLib.ParamSpecUChar.html">ParamSpecUChar</a></li>
<li class="class"><a href="GLib.ParamSpecUInt.html">ParamSpecUInt</a></li>
<li class="class"><a href="GLib.ParamSpecUInt64.html">ParamSpecUInt64</a></li>
<li class="class"><a href="GLib.ParamSpecULong.html">ParamSpecULong</a></li>
<li class="class"><a href="GLib.TypeClass.html">TypeClass</a></li>
<li class="class"><a href="GLib.TypeModule.html">TypeModule</a></li>
<li class="class"><a href="GLib.ValueArray.html">ValueArray</a></li>
<li class="struct"><a href="GLib.EnumValue.html">EnumValue</a></li>
<li class="struct"><a href="GLib.ObjectConstructParam.html">ObjectConstructParam</a></li>
<li class="struct"><a href="GLib.Parameter.html">Parameter</a></li>
<li class="struct"><a href="GLib.SignalInvocationHint.html">SignalInvocationHint</a></li>
<li class="struct"><a href="GLib.SignalQuery.html">SignalQuery</a></li>
<li class="struct"><a href="GLib.Type.html">Type</a></li>
<li class="struct"><a href="GLib.TypeQuery.html">TypeQuery</a></li>
<li class="struct"><a href="GLib.Value.html">Value</a></li>
<li class="struct"><a href="GLib.WeakRef.html">WeakRef</a></li>
<li class="delegate"><a href="GLib.BindingTransformFunc.html">BindingTransformFunc</a></li>
<li class="delegate"><a href="GLib.Callback.html">Callback</a></li>
<li class="delegate"><a href="GLib.ClosureMarshal.html">ClosureMarshal</a></li>
<li class="delegate"><a href="GLib.ClosureNotify.html">ClosureNotify</a></li>
<li class="delegate"><a href="GLib.ObjectGetPropertyFunc.html">ObjectGetPropertyFunc</a></li>
<li class="delegate"><a href="GLib.ObjectSetPropertyFunc.html">ObjectSetPropertyFunc</a></li>
<li class="delegate"><a href="GLib.SignalEmissionHook.html">SignalEmissionHook</a></li>
<li class="delegate"><a href="GLib.ToggleNotify.html">ToggleNotify</a></li>
<li class="delegate">ValueTransform</li>
<li class="delegate"><a href="GLib.WeakNotify.html">WeakNotify</a></li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">ValueTransform</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition">[ <span class="main_type">CCode</span> ( has_target = <span class="main_optional_parameter">false</span> ) ]<br/><span class="main_keyword">public</span> <span class="main_keyword">delegate</span> <span class="main_keyword">void</span> <b><span css="delegate">ValueTransform</span></b> (<span class="main_type"><a href="GLib.Value.html" class="struct">Value</a></span> src_value, <span class="main_keyword">ref</span> <span class="main_type"><a href="GLib.Value.html" class="struct">Value</a></span> dest_value)
</div><br/>
<div class="namespace_note"><b>Namespace:</b> GLib</div>
<div class="package_note"><b>Package:</b> gobject-2.0</div>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> |
gwt/src/main/webapp/css/application.css | ocpsoft/socialpm | /*
* Debugging styles
*/
.gwt-DialogBox {
z-index: 10000;
}
/*
* Application styles
*/
.NOT_STARTED {
background-color: #AAAAAA;
color: #FFFFFF;
}
.IMPEDED {
background-color: #C43C35;
color: #FFFFFF;
}
.IN_PROGRESS {
background-color: #339BB9;
color: #FFFFFF;
}
.DONE {
background-color: #57A957;
color: #FFFFFF;
}
.PENDING {
background-color: #339BB9;
color: #FFFFFF;
}
.ACCEPTED {
background-color: #57A957;
color: #FFFFFF;
}
body {
padding-top: 60px;
padding-bottom: 40px;
}
.box {
background: none repeat scroll 0 0 #FEFBF3;
border: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
padding: 9px;
}
.clickable .box:hover {
background: none repeat scroll 0 0 #FFFDF9;
border: 1px solid rgba(82, 168, 236, 0.6);
}
.box *:last-child {
margin-bottom: 0;
}
.clickable {
cursor: pointer;
}
.sidebar-nav {
padding: 9px 0;
}
ul.plain {
list-style: none outside none;
margin: 0;
}
.welcome {
position: relative;
top: -20px;
width: 100%;
background-color: #FFF5E3;
margin-bottom: 10px;
width: 100%;
}
.project-title {
font-size: 16px;
}
/* Iteration List */
.iteration-list a {
color: #ffffff;
text-align: center;
font-weight: bold;
width: 100%;
}
.iteration-list a:hover {
opacity: .5;
}
.iteration-list a {
width: 60px;
display: block;
text-align: center;
height: 18px;
padding: 0;
font-size: 12px;
line-height: 18px;
}
.iteration-list div.percent {
margin-right: 2px;
}
/* Story List */ |
poi-3.8/docs/apidocs/org/apache/poi/util/class-use/LittleEndianConsts.html | gmchen/MosquitoSimulation | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_29) on Sat Mar 17 18:05:53 MSK 2012 -->
<TITLE>
Uses of Interface org.apache.poi.util.LittleEndianConsts (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-17">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface org.apache.poi.util.LittleEndianConsts (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/poi/util/LittleEndianConsts.html" title="interface in org.apache.poi.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/util/\class-useLittleEndianConsts.html" target="_top"><B>FRAMES</B></A>
<A HREF="LittleEndianConsts.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Interface<br>org.apache.poi.util.LittleEndianConsts</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../org/apache/poi/util/LittleEndianConsts.html" title="interface in org.apache.poi.util">LittleEndianConsts</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.util"><B>org.apache.poi.util</B></A></TD>
<TD>Top-level util package are classes that are useful throughout the project. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.util"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../org/apache/poi/util/LittleEndianConsts.html" title="interface in org.apache.poi.util">LittleEndianConsts</A> in <A HREF="../../../../../org/apache/poi/util/package-summary.html">org.apache.poi.util</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/apache/poi/util/package-summary.html">org.apache.poi.util</A> that implement <A HREF="../../../../../org/apache/poi/util/LittleEndianConsts.html" title="interface in org.apache.poi.util">LittleEndianConsts</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/util/LittleEndian.html" title="class in org.apache.poi.util">LittleEndian</A></B></CODE>
<BR>
a utility class for handling little-endian numbers, which the 80x86 world is
replete with.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/poi/util/LittleEndianConsts.html" title="interface in org.apache.poi.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/util/\class-useLittleEndianConsts.html" target="_top"><B>FRAMES</B></A>
<A HREF="LittleEndianConsts.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
_apps/_templates/book/parts/availability.html | Educ-IO/educ-io.github.io | {% raw %}
{{#each periods}}<div class="progress-bar {{#exists title}}progress-bar-striped bg-{{#if class}}{{class}}{{else}}dark{{/if}}{{else}}bg-success o-25{{/exists}}" role="progressbar" style="width: {{width}}%" aria-valuenow="{{width}}" aria-valuemin="0" aria-valuemax="100" aria-describedby="availability_Help" data-toggle="tooltip" data-html="true" title="{{#if time}}<p class='p-0 m-0'><strong class='mr-1'>{{time}}</strong></p>{{/if}}{{#exists title}}<p class='p-0 m-0'>{{either title 'N/A'}}</p>{{#if organiser}}<p class='p-0 m-0 text-warning'>{{organiser}}</p>{{/if}}{{else}}<p class='p-0 m-0 text-success'>Available</p>{{/exists}}"></div>{{/each}}
{% endraw %} |
azure/docs/html/modules_2xxml_2plugins_2seolinks_8php_source.html | labscoop/xortify | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>Xortify Honeypot Cloud Services: E:/Packages/xortify server/htdocs/modules/xxml/plugins/seolinks.php Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Xortify Honeypot Cloud Services
 <span id="projectnumber">4.11</span>
</div>
<div id="projectbrief">This project allow any mid level PHP Developer to incorportate Xortify Honeypot</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_885cc87fac2d91e269af0a5a959fa5f6.html">E:</a></li><li class="navelem"><a class="el" href="dir_370194428f404877ed129766ba2a60c8.html">Packages</a></li><li class="navelem"><a class="el" href="dir_a56c19072b1e5327a29fdaaef2369079.html">xortify server</a></li><li class="navelem"><a class="el" href="dir_986b603a083ad29d335eb299a442a13f.html">htdocs</a></li><li class="navelem"><a class="el" href="dir_3d9a2643e5c2991e18f5ed18773ef738.html">modules</a></li><li class="navelem"><a class="el" href="dir_5636210073ee525eff3466868d38080d.html">xxml</a></li><li class="navelem"><a class="el" href="dir_8fcaca7a2ccce141b90edea55484fb1d.html">plugins</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">seolinks.php</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <?php</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> require_once ($GLOBALS[<span class="stringliteral">'xoops'</span>]->path(<span class="stringliteral">'/include/xsd/legacy/'</span>.basename(__FILE__)));</div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> require_once ($GLOBALS[<span class="stringliteral">'xoops'</span>]->path(<span class="stringliteral">'/include/cloud/'</span>.basename(__FILE__)));</div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> ?></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Jul 23 2013 21:59:55 for Xortify Honeypot Cloud Services by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
</small></address>
</body>
</html>
|
public/css/gallery3.css | danielgch2912/gallery | .gallery2{
}
.gallery3-image {
position: relative;
float: left;
box-sizing: border-box;
border: 2px solid white;
overflow: hidden;
background: lightblue;
}
.gallery3-image>img {
display: block;
margin: 0;
padding: 0;
} |
doc/html/qsysinfo.html | martyngigg/pyqt-msvc | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html><head><title>QSysInfo Class Reference</title><style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
td.postheader { font-family: sans-serif }
tr.address { font-family: sans-serif }
body { background: #ffffff; color: black; }
</style></head><body><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr /><td align="left" valign="top" width="32"><img align="left" border="0" height="32" src="images/rb-logo.png" width="32" /></td><td width="1">  </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a></td></table><h1 align="center">QSysInfo Class Reference<br /><sup><sup>[<a href="qtcore.html">QtCore</a> module]</sup></sup></h1><p>The QSysInfo class provides information about the system.
<a href="#details">More...</a></p>
<h3>Types</h3><ul><li><div class="fn" />enum <b><a href="qsysinfo.html#Endian-enum">Endian</a></b> { BigEndian, LittleEndian, ByteOrder }</li><li><div class="fn" />enum <b><a href="qsysinfo.html#Sizes-enum">Sizes</a></b> { WordSize }</li><li><div class="fn" />enum <b><a href="qsysinfo.html#WinVersion-enum">WinVersion</a></b> { WV_32s, WV_95, WV_98, WV_Me, ..., WV_CE_based }</li></ul><h3>Methods</h3><ul><li><div class="fn" /><b><a href="qsysinfo.html#QSysInfo">__init__</a></b> (<i>self</i>)</li><li><div class="fn" /><b><a href="qsysinfo.html#QSysInfo-2">__init__</a></b> (<i>self</i>, QSysInfo)</li></ul><h3>Static Members</h3><ul><li><div class="fn" />WinVersion <b><a href="qsysinfo.html#WindowsVersion-var">WindowsVersion</a></b></li></ul><a name="details" /><hr /><h2>Detailed Description</h2><p>The QSysInfo class provides information about the system.</p>
<ul>
<li><a href="qsysinfo.html#Sizes-enum">WordSize</a> specifies the
size of a pointer for the platform on which the application is
compiled.</li>
<li><a href="qsysinfo.html#Endian-enum">ByteOrder</a> specifies
whether the platform is big-endian or little-endian.</li>
<li><a href="qsysinfo.html#WindowsVersion-var">WindowsVersion</a>
specifies the version of the Windows operating system on which the
application is run (Windows only)</li>
<li><a href="qsysinfo.html#MacintoshVersion-var">MacintoshVersion</a> specifies
the version of the Macintosh operating system on which the
application is run (Mac only).</li>
</ul>
<p>Some constants are defined only on certain platforms. You can
use the preprocessor symbols <a href="qtcore.html#Q_WS_WIN">Q_WS_WIN</a> and <a href="qtcore.html#Q_WS_MAC">Q_WS_MAC</a> to test that the application
is compiled under Windows or Mac.</p>
<hr /><h2>Type Documentation</h2><h3 class="fn"><a name="Endian-enum" />QSysInfo.Endian</h3><table class="valuelist">
<tr class="odd" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.BigEndian</tt></td>
<td class="topAlign"><tt>0</tt></td>
<td class="topAlign">Big-endian byte order (also called Network
byte order)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.LittleEndian</tt></td>
<td class="topAlign"><tt>1</tt></td>
<td class="topAlign">Little-endian byte order</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.ByteOrder</tt></td>
<td class="topAlign"><tt><platform-dependent></tt></td>
<td class="topAlign">Equals BigEndian or LittleEndian, depending on
the platform's byte order.</td>
</tr>
</table>
<h3 class="fn"><a name="Sizes-enum" />QSysInfo.Sizes</h3><p>This enum provides platform-specific information about the sizes
of data structures used by the underlying architecture.</p>
<table class="valuelist">
<tr class="odd" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WordSize</tt></td>
<td class="topAlign"><tt>( sizeof( void * ) <<3 )</tt></td>
<td class="topAlign">The size in bits of a pointer for the platform
on which the application is compiled (32 or 64).</td>
</tr>
</table>
<h3 class="fn"><a name="WinVersion-enum" />QSysInfo.WinVersion</h3><p>This enum provides symbolic names for the various versions of
the Windows operating system. On Windows, the <a href="qsysinfo.html#WindowsVersion-var">QSysInfo.WindowsVersion</a>
variable gives the version of the system on which the application
is run.</p>
<p>MS-DOS-based versions:</p>
<table class="valuelist">
<tr class="odd" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_32s</tt></td>
<td class="topAlign"><tt>0x0001</tt></td>
<td class="topAlign">Windows 3.1 with Win 32s</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_95</tt></td>
<td class="topAlign"><tt>0x0002</tt></td>
<td class="topAlign">Windows 95</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_98</tt></td>
<td class="topAlign"><tt>0x0003</tt></td>
<td class="topAlign">Windows 98</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_Me</tt></td>
<td class="topAlign"><tt>0x0004</tt></td>
<td class="topAlign">Windows Me</td>
</tr>
</table>
<p>NT-based versions (note that each operating system version is
only represented once rather than each Windows edition):</p>
<table class="valuelist">
<tr class="even" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_NT</tt></td>
<td class="topAlign"><tt>0x0010</tt></td>
<td class="topAlign">Windows NT (operating system version 4.0)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_2000</tt></td>
<td class="topAlign"><tt>0x0020</tt></td>
<td class="topAlign">Windows 2000 (operating system version
5.0)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_XP</tt></td>
<td class="topAlign"><tt>0x0030</tt></td>
<td class="topAlign">Windows XP (operating system version 5.1)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_2003</tt></td>
<td class="topAlign"><tt>0x0040</tt></td>
<td class="topAlign">Windows Server 2003, Windows Server 2003 R2,
Windows Home Server, Windows XP Professional x64 Edition (operating
system version 5.2)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_VISTA</tt></td>
<td class="topAlign"><tt>0x0080</tt></td>
<td class="topAlign">Windows Vista, Windows Server 2008 (operating
system version 6.0)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_WINDOWS7</tt></td>
<td class="topAlign"><tt>0x0090</tt></td>
<td class="topAlign">Windows 7, Windows Server 2008 R2 (operating
system version 6.1)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_WINDOWS8</tt></td>
<td class="topAlign"><tt>0x00a0</tt></td>
<td class="topAlign">Windows 8 (operating system version 6.2)</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_WINDOWS8_1</tt></td>
<td class="topAlign"><tt>0x00b0</tt></td>
<td class="topAlign">Windows 8.1 (operating system version 6.3),
introduced in Qt 4.8.6</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_WINDOWS10</tt></td>
<td class="topAlign"><tt>0x00c0</tt></td>
<td class="topAlign">Windows 10 (operating system version 10.0),
introduced in Qt 4.8.7</td>
</tr>
</table>
<p>Alternatively, you may use the following macros which correspond
directly to the Windows operating system version number:</p>
<table class="valuelist">
<tr class="odd" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_4_0</tt></td>
<td class="topAlign"><tt>WV_NT</tt></td>
<td class="topAlign">Operating system version 4.0, corresponds to
Windows NT</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_5_0</tt></td>
<td class="topAlign"><tt>WV_2000</tt></td>
<td class="topAlign">Operating system version 5.0, corresponds to
Windows 2000</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_5_1</tt></td>
<td class="topAlign"><tt>WV_XP</tt></td>
<td class="topAlign">Operating system version 5.1, corresponds to
Windows XP</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_5_2</tt></td>
<td class="topAlign"><tt>WV_2003</tt></td>
<td class="topAlign">Operating system version 5.2, corresponds to
Windows Server 2003, Windows Server 2003 R2, Windows Home Server,
and Windows XP Professional x64 Edition</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_6_0</tt></td>
<td class="topAlign"><tt>WV_VISTA</tt></td>
<td class="topAlign">Operating system version 6.0, corresponds to
Windows Vista and Windows Server 2008</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_6_1</tt></td>
<td class="topAlign"><tt>WV_WINDOWS7</tt></td>
<td class="topAlign">Operating system version 6.1, corresponds to
Windows 7 and Windows Server 2008 R2</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_6_2</tt></td>
<td class="topAlign"><tt>WV_WINDOWS8</tt></td>
<td class="topAlign">Operating system version 6.2, corresponds to
Windows 8</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_6_3</tt></td>
<td class="topAlign"><tt>WV_WINDOWS8_1</tt></td>
<td class="topAlign">Operating system version 6.3, corresponds to
Windows 8.1, introduced in Qt 4.8.6</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_10_0</tt></td>
<td class="topAlign"><tt>WV_WINDOWS10</tt></td>
<td class="topAlign">Operating system version 10.0, corresponds to
Windows 10, introduced in Qt 4.8.7</td>
</tr>
</table>
<p>CE-based versions:</p>
<table class="valuelist">
<tr class="even" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_CE</tt></td>
<td class="topAlign"><tt>0x0100</tt></td>
<td class="topAlign">Windows CE</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_CENET</tt></td>
<td class="topAlign"><tt>0x0200</tt></td>
<td class="topAlign">Windows CE .NET</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_CE_5</tt></td>
<td class="topAlign"><tt>0x0300</tt></td>
<td class="topAlign">Windows CE 5.x</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_CE_6</tt></td>
<td class="topAlign"><tt>0x0400</tt></td>
<td class="topAlign">Windows CE 6.x</td>
</tr>
</table>
<p>The following masks can be used for testing whether a Windows
version is MS-DOS-based, NT-based, or CE-based:</p>
<table class="valuelist">
<tr class="odd" valign="top">
<th class="tblConst">Constant</th>
<th class="tblval">Value</th>
<th class="tbldscr">Description</th>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_DOS_based</tt></td>
<td class="topAlign"><tt>0x000f</tt></td>
<td class="topAlign">MS-DOS-based version of Windows</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_NT_based</tt></td>
<td class="topAlign"><tt>0x00f0</tt></td>
<td class="topAlign">NT-based version of Windows</td>
</tr>
<tr>
<td class="topAlign"><tt>QSysInfo.WV_CE_based</tt></td>
<td class="topAlign"><tt>0x0f00</tt></td>
<td class="topAlign">CE-based version of Windows</td>
</tr>
</table>
<p><b>See also</b> <a href="qsysinfo.html#MacVersion-enum">MacVersion</a> and <a href="qsysinfo.html#SymbianVersion-enum">SymbianVersion</a>.</p>
<hr /><h2>Method Documentation</h2><h3 class="fn"><a name="QSysInfo" />QSysInfo.__init__ (<i>self</i>)</h3><h3 class="fn"><a name="QSysInfo-2" />QSysInfo.__init__ (<i>self</i>, <a href="qsysinfo.html">QSysInfo</a>)</h3><hr /><h2>Member Documentation</h2><h3 class="fn"><a name="WindowsVersion-var" /><a href="qsysinfo.html#WinVersion-enum">WinVersion</a> WindowsVersion</h3><p>This member should be treated as a constant.</p><p>This variable holds the version of the Windows operating system
on which the application is run (Windows only).</p>
<address><hr /><div align="center"><table border="0" cellspacing="0" width="100%"><tr class="address"><td align="left" width="25%">PyQt 4.11.4 for Windows</td><td align="center" width="50%">Copyright © <a href="http://www.riverbankcomputing.com">Riverbank Computing Ltd</a> and <a href="http://www.qt.io">The Qt Company</a> 2015</td><td align="right" width="25%">Qt 4.8.7</td></tr></table></div></address></body></html> |
public_html/str_templates/nucleo/nucleo_seminario_contenedor.html | Edgaru10/portal-uce | <div class="panel" id="panel5">
<div class="ndiCont imagenesWrap">
<p>$sem_des.getData()</p>
<ul class="seminario">
#if (!$sem_contenedor_id.getSiblings().isEmpty())
#foreach ($cur_sem_contenedor_id in $sem_contenedor_id.getSiblings())
<li id="collapsible">
<div class="cabecera" style="width: 100%;">
<h2>$cur_sem_contenedor_id.sem_periodo.getData()</h2>
</div>
#set ($group_id = $getterUtil.getLong($groupId))
<div class="panel-content cuerpo">
<div class="contentwrap row-fluid">
<div class="eventosWrap centrosWrap">
<ul class="abc-list simple-list">
#set($sisex=$sem_contenedor_id.getSiblings().size())
#if (!$sem_contenedor_id.getSiblings().isEmpty())
#foreach ($cur_sem_contenedor_idx in $sem_contenedor_id.getSiblings())
#set( $ix = $sisex - $velocityCount)
#set($cur_sem_contenedor_id=$sem_contenedor_id.getSiblings().get($ix))
#set ($webcontent=$journalContentUtil.getContent($group_id, $cur_sem_contenedor_id.getData(), "", "$locale", ""))
$webcontent
#if($velocityCount > 5)
#break
#end
#end
#end
</ul>
</div>
</div>
</div>
</li>
#end
#end
</ul>
</div>
</div>
<li>
<div class="item-evento row-fluid">
<div class="img-full active" style="background-image:url(tmp/centros/r1.jpg);"></div>
<div class="noti-detail full-width">
<h5 class="adequate upper">SEMINARIO 1</h5>
<span class="date text-right">September 25, 2012</span>
<p>Breve descripción de la noticia, Breve descripción de la noticia Breve descripción de la noticia Breve descripción de la noticia Breve descripción de la noticia Breve descripción de la noticia Breve descripción de la noticia Breve descripción de la noticia</p>
<div class="event-desc">
<div class="contentwrap row-fluid">
<div class="span6 sem1">
<div class="img-full img-viewer">
</div>
<div class="elastislide">
<span class="icon fa fa-angle-left"></span>
<span class="icon fa fa-angle-right"></span>
<div class="slide-content">
<div class="slide-carro">
<div class="img-sem img-item" style="background-image:url(tmp/centros/r1.jpg);">
<div class="oculto">
<div class="img-full" style="background-image:url(tmp/centros/r1.jpg);"></div>
</div>
</div>
<div class="img-sem img-item" style="background-image:url(tmp/comunicado3.jpg);">
<div class="oculto">
<div class="img-full" style="background-image:url(tmp/comunicado3.jpg);"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span6 sem2">
<h5 class="adequate upper">SEMINARIO 1</h5>
<span class="date">September 25, 2012</span>
<p>Breve descripción de la noticia, Breve descripción de la noticia</p>
</div>
</div>
</div>
</div>
<a class="fg-yellow dc" href="#event">leer más <i class="fa fa-chevron-right"></i><i class="fa fa-chevron-right"></i></a>
<a class="fg-yellow" href="#event">cerrar <i class="fa fa-chevron-left"></i><i class="fa fa-chevron-left"></i></a>
</div>
</li> |
templates/index.html | ocae/flask-example | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>index</title>
<meta name="author" content="Wig Cheng">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="/static/css/index.css" />
<script src="/static/lib/jquery.min.js"></script>
</head>
<body>
<div class="banner"> </div>
<div class="logo" align="center">
<div><img src="/static/img/title.png" /></div>
</div>
<div class="content" align="center">
<table>
<tr>
<td><a href="/network"><img src="/static/img/wifi.png" /></a></td>
<td><img src="/static/img/film.png" /></td>
<td><img src="/static/img/music.png" /></td>
</tr>
<tr>
<td><img src="/static/img/calculator.png" /></td>
<td><img src="/static/img/security.png" /></td>
<td><img src="/static/img/dev.png" /></td>
</tr>
</table>
</div>
</body>
<script src="/static/app/main.js"></script>
</html>
|
2015.1/Estrutura de Dados/Projetos/Projeto 5/www.cs.sunysb.edu/events/newsletters/oct2005.html/index.html | rodrigofegui/UnB | <html>
<head>
<title>Computer Science Department - Systems Staff Monthly Update - October 2005</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- This file contains the site wide Javascript functions and stylesheet -->
<script language="JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<link rel="STYLESHEET" type="text/css" href="/style/all.css">
</head>
<body bgcolor="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF">
<table border="0" align="center" width="760">
<tr>
<td valign="top">
<img src="/menu/images/banners/CSeventsbanner.gif" width="640" height="30"><br>
<img src="/menu/images/banners/CSeventspic.jpg" width="640" height="120" vspace="3"><BR>
<table border="0" cellpadding="0" cellspacing="0" width="640">
<tr>
<!-- Shim row, height 1. -->
<td colspan="8" bgcolor="FFFFFF" width="640" height="1"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td gcolor="FFFFFF" width="1" height="1" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 1 -->
<td ><a href="/admissions/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('admissions','','/menu/images/CSmenu/admissions_f2.gif',1);" ><img name="admissions" src="/menu/images/CSmenu/admissions.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/research/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('research','','/menu/images/CSmenu/research_f2.gif',1);" ><img name="research" src="/menu/images/CSmenu/research.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/facilities/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('facilities','','/menu/images/CSmenu/facilities_f2.gif',1);" ><img name="facilities" src="/menu/images/CSmenu/facilities.gif" width="80" height="30" border="0"></a></td>
<td><a href="/people/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('people','','/menu/images/CSmenu/people_f2.gif',1);" ><img name="people" src="/menu/images/CSmenu/people.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/undergrad/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('undergrad','','/menu/images/CSmenu/undergrad_f2.gif',1);" ><img name="undergrad" src="/menu/images/CSmenu/undergrad.gif" width="80" height="30" border="0"></a></td>
<td><a href="/graduate/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('graduate','','/menu/images/CSmenu/graduate_f2.gif',1);" ><img name="graduate" src="/menu/images/CSmenu/graduate.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/~news/"><img name="events" src="/menu/images/CSmenu/events_r1.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/welcome/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('welcome','','/menu/images/CSmenu/welcome_f2.gif',1);" ><img name="welcome" src="/menu/images/CSmenu/welcome.gif" width="80" height="30" border="0"></a></td>
<td bgcolor="FFFFFF" width="1" height="30" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- grey shim row -->
<td colspan="8" bgcolor="CCCCCC" width="640" height="3"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td gcolor="FFFFFF" width="1" height="3" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 3 -->
<td colspan="8">
<table border=0 cellpadding=0 cellspacing=0 width="640">
<tr bgcolor="CCCCCC">
<td bgcolor="CCCCCC" width="200" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td><a href="/~events/DLseries/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('dls2','','/menu/images/events/dls2_f2.gif',1);" ><img name="dls2" src="/menu/images/events/dls2.gif" width="150" height="18" border="0"></a></td>
<td><img name="row3_dot" src="/menu/images/CSmenu/row3_dot.gif" width="15" height="18" border="0"></td>
<td><a href="/~events/seminars/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('seminars2','','/menu/images/events/seminars2_f2.gif',1);" ><img name="seminars2" src="/menu/images/events/seminars2.gif" width="68" height="18" border="0"></a></td>
<td bgcolor="CCCCCC" width="201" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
</td>
<td bgcolor="FFFFFF" width="1" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- grey shim row -->
<td colspan="8" bgcolor="CCCCCC" width="640" height="3"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td gcolor="FFFFFF" width="1" height="3" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
<p>
<!-- Image with table -->
<!-- Image with table -->
</p>
<!-- Start of Floating Block
<div style="padding: 5px; float: left; width: 30%; margin: 5px; border: 3px solid #666;">
<center><font color="#004400"><strong>Special Announcements</strong></font></center>
<hr size=1 width="100%">
<div class="navindex">
<table border=0 cellpadding=5 cellspacing=0>
<tr>
<td>
</td>
</tr>
</table>
</div>
</div>
End of Floating Block -->
<!-- Begin main content here-->
<p><strong><strong>SYSTEMS STAFF MONTHLY UPDATE - OCTOBER 2005</strong></strong></p>
<p align="justify"><strong>WREQ Problem Reporting Tool</strong><br>
Email work requests and problem reports are now being entered into the WREQ problem reporting tool. You should submit all requests directly to WREQ and not to ntadmin or individual staff members. You can do this by posting a request through the web interface at: <a href="http://www.cs.sunysb.edu/~wreq">http://www.cs.sunysb.edu/~wreq</a> or simply by sending your email request to WREQ at cs dot sunysb dot edu.
<p align="justify">Before reporting a problem visit <a href="www.cs.sunysb.edu/%7Efaq">www.cs.sunysb.edu/~faq</a> and see if
there's an faq addressing your question/problem. If not, then a wreq
request is your next step.
<p align="justify">Your problem report must include the following information for us to be
able to help you promptly:</p>
<p align="justify">1. The room you are working in, either room number or lab name.<br>
2. The name of the host you are working on (hostname command in Unix,
machine number in 1239, the number written on the bookshelf by
your desk in the student offices).<br>
3. The sequence of things you did just prior to having the problem
as best you recollect.<br>
4. The exact text of any error message you see on the screen, or
a complete description of the problem that occured.<br>
5. Do NOT send attachments or mime mail. Wreq will reject such email.
Text only.</p>
<p align="justify"> Please report problems promptly as they occur so they can be
investigated under the same set of conditions as far as possible.</p>
<p align="justify"><strong>WREQ Problem Reporting Tool for Administrative Requests</strong><br>
There is now a WREQ Problem Reporting Tool for work requests directed to the department secretarial and administrative staff. You should use secwreq for requests such as requisitions, course room changes, office supplies, grade changes, room reservations, payroll issues, tuition issues, reimbursements and building management needs. This tool can be found at <a href="http://www.cs.sunysb.edu/~secwreq">http://www.cs.sunysb.edu/~secwreq</a> or you can send mail to SECWREQ at cs dot sunysb dot edu.
<p align="justify"><strong>Graduate PC Lab
<br>
</strong>23 workstations are currently operational in the Graduate Windows Lab. Six workstations were upgraded to Dell GX150s in Room 1204.
JISQL connectivity issue from Graduate Windows lab is resolved. If you have any further questions, please send email to WREQ at cs dot sunysb dot edu.
<p><strong>Translabs<br>
</strong>The following changes/updates have been made to the Translab Softwares in Rms 2126 (Lab) and Rm 2129(Teaching class).</p>
<p>1. DirectX9 Software Development Kit<br>
2. Maya 6.0 with Plug-in for DirectX<br>
3. Omondo plugin for eclipse, and Eclipse 3.1 4. RenderWare (not installed as of today) 5. The open source nVu html editor.<br>
6. Mozilla Firefox 1.0.6<br>
7. UNIX Utilities (Microsoft) for the Podium m/c in Rm 2129.</p>
<p align="justify"><strong>Databases<br>
</strong>Starting this semester the Database Servers for the Grad and Undergrad Courses have been separated, hence the documentation and connection information for Sybase and Oracle for the grads have been moved to the following location on our department website.<br>
For Sybase the link to follow is:<br>
1. <a href="http://www.cs.sunysb.edu/%7Egradlab/sybase.html">http://www.cs.sunysb.edu/~gradlab/sybase.html</a><br>
For Oracle the link to follow is:<br>
2. <a href="http://www.cs.sunysb.edu/%7Egradlab/oracle.html">http://www.cs.sunysb.edu/~gradlab/oracle.html</a></p>
<p align="justify"><strong>PCs and Laptops<br>
</strong>The campus has purchased a site license for Endnote, a software tool for publishing and managing bibliographies. You can download Endnote for Windows or Macintosh on the campus software web page at:<a href="http://softweb.cc.sunysb.edu."> http://softweb.cc.sunysb.edu.</a></p>
<p align="justify">Symantec is now publishing daily updates for users of Symantec Anti-Virus 10. The version on our downloads page will shortly be upgraded to 10.0.1, which fixes a high cpu usage in certain clients.<br>
Please refer to:
<a href="http://service1.symantec.com/SUPPORT/ent-security.nsf/pfdocs/200504271030424">http://service1.symantec.com/SUPPORT/ent-security.nsf/pfdocs/200504271030424<br>
8?Open&dtype=corp</a> for more information.
Our downloads page is available through <a href="http://www.cs.sunysb.edu/%7Esso">http://www.cs.sunysb.edu/~sso</a>, use your department username and password to log in.</p>
<p align="justify">X-Win32 has been upgraded to version 7.0 (with integrated ssh support) on our downloads page, along with a new license. This is a major release and users of X Windows for the PC should upgrade.</p>
<p><strong>Future Plans<br>
</strong>During the month of October compservs 1 - 4 will be upgraded.</p>
<p>When in doubt, feel free to send email to:<br>
Unix and network problems: WREQ at cs dot sunysb dot edu<br>
PC problems: NTADMIN at cs dot sunysb dot edu<br>
</p>
<p align="justify"><strong>Previous Newsletters</strong>
<ul>
<li><a href="sept2005.html">September 2005 </a></li>
<li><a href="aug2005.html">August 2005</a> </li>
<li><a href="jul2005.html">July 2005</a> </li>
<li><a href="jun2005.html">June 2005</a> </li>
<li><a href="may2005.html">May 2005</a> </li>
<li><a href="apr2005.html">April 2005</a> </li>
<li><a href="mar2005.html">March 2005</a> </li>
<li><a href="feb2005.html">February 2005</a> </li>
<li><a href="jan2005.html">January 2005 </a></li>
<li><a href="dec2004.html">December 2004</a> </li>
<li><a href="nov2004.html">November 2004 </a></li>
<li><a href="oct2004.html">October 2004</a></li>
<li><a href="may2004.html">May 2004</a></li>
<li><a href="mar2004.html">March 2004</a></li>
<li><a href="feb2004.html">February 2004</a></li>
<li><a href="jan2004.html">January 2004</a></li>
<li><a href="nov2003.html">November 2003</a></li>
<li><a href="oct2003.html">October 2003</a></li>
<li><a href="sep2003.html">September 2003</a></li>
<li><a href="aug2003.html">August 2003</a></li>
<li><a href="jul2003.html">July 2003</a></li>
<li><a href="jun2003.html">June 2003</a></li>
<li><a href="may2003.html">May 2003</a></li>
<li><a href="apr2003.html">April 2003</a></li>
<li><a href="mar2003.html">March 2003</a></li>
<li><a href="feb2003.html">February 2003</a></li>
<li><a href="jan2003.html">January 2003</a></li>
<li><a href="dec2002.html">December 2002</a></li>
<li><a href="nov2002.html">November 2002</a></li>
<li><a href="index.html">Index of Newsletters</a></li>
</ul></td>
<td bordercolor="#FFFFFF" valign="top">
<div align="center"><a href="http://www.stonybrook.edu"><img src="/menu/images/SBLogo4pmsSM.gif" width="112" height="66" border="0"></a></div>
<BR>
<div align="center"><a href="http://www.cs.sunysb.edu"><img src="/menu/images/cslogotype_color.gif" width="95" height="95" border="0"></a></div>
<BR>
<table width="100%" border=0 cellpadding=2 cellspacing=0>
<tr>
<td align="center">
<form method="get" action="http://www.cs.sunysb.edu/search/search.cgi" name="search" >
<input type="text" name="Terms" id="fdse_TermsEx" size=12 value="Search CS" onFocus="document.search.Terms.value='';document.search.Terms.select()"><input type=image src="/csimages/searchsite.gif" width=15 height=14 alt="Search Now" value="Go">
</form>
</td>
</tr>
</table>
<hr>
<div class="navindex">
<table border=0 cellpadding=5 cellspacing=0>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="http://naples.cc.stonybrook.edu/Pres/csevents.nsf/pages/calendar">Campus
Events</a> </font> </td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>
|
doc/classRF22Datagram-members.html | jeffminton/RF22 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>RF22: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">RF22
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">RF22Datagram Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classRF22Datagram.html">RF22Datagram</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_buf</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_bufLen</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_deviceType</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_idleMode</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_interrupt</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_lastRssi</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_mode</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#aac922ca05ce0762af663f28d2a65b45a">_RF22ForInterrupt</a></td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_rxBad</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_rxBufValid</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_rxGood</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_slaveSelectPin</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_spi</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22Datagram.html#a831ccec7d05b864cc3618f9c21894f17">_thisAddress</a></td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_txBufSentIndex</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>_txGood</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>_txPacketSent</b> (defined in <a class="el" href="classRF22.html">RF22</a>)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ad2b1d47ce5efa8e38330be8d11741dab">adcRead</a>(uint8_t adcsel=RF22_ADCSEL_INTERNAL_TEMPERATURE_SENSOR, uint8_t adcref=RF22_ADCREF_BANDGAP_VOLTAGE, uint8_t adcgain=0, uint8_t adcoffs=0)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#ae43dd14af9a7930358a59b6cd04cff38">appendTxBuf</a>(const uint8_t *data, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#af899b8b15c5c4b345e7f9860d45d0292">available</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a68be2dd2c22416a9c70fabea8928ff1a">clearRxBuf</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#addd900063898086342232db06edc4008">clearTxBuf</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a24eb41c972beb66d4546552e571c2e46">ezmacStatusRead</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#afab02a2b2add61b1b862f05cb6127296">fillTxBuf</a>(const uint8_t *data, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a57cad597472646c4dc4cb85aa7c9cbe9">FSK_PN9_Rb2Fd5</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a13a03a8009dc81941f93b924c01d2811">FSK_Rb125Fd125</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ae0a4dcc0c46f1d354285f3079cba782c">FSK_Rb19_2Fd9_6</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ab78263478bc47e320e3e14184310bdb1">FSK_Rb2_4Fd36</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ab706c642e0b7242e0685c42babb0ef7b">FSK_Rb2Fd5</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a7021c80e3a94842e44e35d87a2befa62">FSK_Rb38_4Fd19_6</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a140ea7219f2b3c8a034347702e384a36">FSK_Rb4_8Fd45</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a6ada70eaab5a4e3f4d5a0954d4a0631a">FSK_Rb57_6Fd28_8</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a2d893806d31eccebdfef6cf7f89f1257">FSK_Rb9_6Fd45</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ae77ddcf9d0f51b0e9731e00dfcaebc20">GFSK_Rb125Fd125</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ac4558752ce6bab0f01cda50c5cc31423">GFSK_Rb19_2Fd9_6</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a5af02fa49297aa13b0efc8306c3c10aa">GFSK_Rb2_4Fd36</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a156fcbf8d375d6a2f8bbb46824aca430">GFSK_Rb2Fd5</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a8f7c5a5c02f46e5bba221d9bab276810">GFSK_Rb38_4Fd19_6</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ad9afd09e7ea98e1d15be0f7470f9b721">GFSK_Rb4_8Fd45</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a93957ac322afdae70620bc5a592468b7">GFSK_Rb57_6Fd28_8</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ab84a580ab517faa1221cc166dcbc331a">GFSK_Rb9_6Fd45</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#aa9a67b1e368b56722c52ab79ded84e82">handleExternalInterrupt</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#ae4d40dd937c71fa0094a838297fc315d">handleInterrupt</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ab7f8d2337bdde953983cd0dea5d847ba">handleWakeupTimerInterrupt</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a3ecbb26863c8bd4bf8cbacde37b73d4f">headerFlags</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a3d8d98b524d14519f6c39d7136b5a422">headerFrom</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a74b21003336cc7c6aac1dad128b1f205">headerId</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ad61bb70ba171a81fa8803219fdc2a433">headerTo</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22Datagram.html#a7e9eb654f8e8be094c5f2c0531218531">init</a>()</td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#aae648fb7e6882cd8bb1ec7d24095f4b2">isr0</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#afff5bd2d2b2471f55354adce59455194">isr1</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#aa375a7c367f1619eb0456fe0cf753b20">isr2</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a07786683889cac7f62ff649d5338b838">lastRssi</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a5bd1de370b216b1fd0891af303542ae4">mode</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1">ModemConfigChoice</a> enum name</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a106af5c9d04c9edcd00b6e89c3345cb8">OOK_Rb19_2Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1af3a09faaa284b438b3d4da9fc6058aa4">OOK_Rb1_2Bw75</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a60e4b4348d0c08ada8b111f574e2a308">OOK_Rb2_4Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1af0bafb7fdc78209640c3c715626baa07">OOK_Rb38_4Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a8bef88fd6beaa3fd3696baa5cad272c5">OOK_Rb40Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1a57fa115fb0aa210bbcf6cf6387eac7b0">OOK_Rb4_8Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ab3f929c9c8da2c05dbdbb0439a4e2c7a">OOK_Rb9_6Bw335</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#af21c53b50024da73551313324d6d9520">printBuffer</a>(const char *prompt, const uint8_t *buf, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a9edc9967b9536074e5f58dd4a5815def">readNextFragment</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a2f6f295a313e1ebf244b91338ed22f13">recv</a>(uint8_t *buf, uint8_t *len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22Datagram.html#ab545144cb8529f5b5ef0dcb77a252eef">recvfrom</a>(uint8_t *buf, uint8_t *len, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL)</td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a1c572667477ef36daeae01c52f553e5b">reset</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a80f1d86f8ce76126639de6aad89c0389">resetFifos</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a2bdccb7c4084634d246add95005d5e53">resetRxFifo</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#adffb1a63931286ecc01ffec9d99cfa6f">resetTxFifo</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a7c1a0bfb8f05d0af540e37e4883e212e">restartTransmit</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#afe5f36490adaf8eb7f3d2863b0aa3235">RF22</a>(uint8_t slaveSelectPin=SS, uint8_t interrupt=0, GenericSPIClass *spi=&Hardware_spi)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22Datagram.html#a993e6fe789530976f8d244ead271f711">RF22Datagram</a>(uint8_t thisAddress=0, uint8_t slaveSelectPin=SS, uint8_t interrupt=0)</td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a022c0040eb83a6f8a02b274b74a3ba67">rssiRead</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a2446117eeec69d8b44c92db5e2b4863a">send</a>(const uint8_t *data, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a6540f75448cca7b21b69bce0b5816cd9">sendNextFragment</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22Datagram.html#a316535aeb1cb389b593df5f8f1f38983">sendto</a>(uint8_t *buf, uint8_t len, uint8_t address)</td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a75b29b4a26da4000b3b1922efc5163aa">setFHChannel</a>(uint8_t fhch)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a9e005e1170adb82a4b23c3865c059489">setFHStepSize</a>(uint8_t fhs)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a6170399ad70173e96b170b547c07573b">setFrequency</a>(float centre, float afcPullInRange=0.05)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#adb3ce5021865459e770e45cc434a0dd0">setHeaderFlags</a>(uint8_t flags)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#af446e330a074e528253f3c7706b14b09">setHeaderFrom</a>(uint8_t from)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a7a36edc1913d6cec8892af8ea8a28ef7">setHeaderId</a>(uint8_t id)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ac45b0f89bb116d546cc5e90410173827">setHeaderTo</a>(uint8_t to)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a575ea3832c613df195bb2ee6201a47b8">setMode</a>(uint8_t mode)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ac4aebfef449c26e2dc2a9ef0737bddec">setModeIdle</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a266974655d5291ba1fa018991a7a818c">setModemConfig</a>(ModemConfigChoice index)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a8011a6520ff800a74b202a71b995994f">setModemRegisters</a>(const ModemConfig *config)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a1e251effd6282a9a0de7dbffa192930d">setModeRx</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#afe3ecb6c7a99cd007ac1ac1e77b6d5a6">setModeTx</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a3ef02152274ab7ed9f01bf9d14323b2f">setPreambleLength</a>(uint8_t nibbles)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ae526f968b1571e8bf71344c2f8a425d5">setPromiscuous</a>(boolean promiscuous)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a842b5e1398dd74519f6e2b4527322809">setSyncWords</a>(const uint8_t *syncWords, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22Datagram.html#ab230f3306fa4fdeb218ac34b728cb3d2">setThisAddress</a>(uint8_t thisAddress)</td><td class="entry"><a class="el" href="classRF22Datagram.html">RF22Datagram</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a5b8a05586f69cbbae0589e5aabf46319">setTxPower</a>(uint8_t power)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#aaa1cfb845d90a0d83a508e2bc7f3492f">setWutPeriod</a>(uint16_t wtm, uint8_t wtr=0, uint8_t wtd=0)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#aa90b554e2ec209f6bd8bcef17b11ebb8">spiBurstRead</a>(uint8_t reg, uint8_t *dest, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a1267640e74c1c33e05231c9da3d98359">spiBurstWrite</a>(uint8_t reg, const uint8_t *src, uint8_t len)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a04d7944afdf214f1388ea2bbe52f2fee">spiRead</a>(uint8_t reg)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a02bb8ac61e753e0354b87be423adf2e4">spiWrite</a>(uint8_t reg, uint8_t val)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#ae714b47446f34aca958df75b75f811b3">startTransmit</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#adb03689501d256ce896ee688c7ce83e0">statusRead</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a198541714d52ac7bc2c9ef10c2e28bb2">temperatureRead</a>(uint8_t tsrange=RF22_TSRANGE_M64_64C, uint8_t tvoffs=0)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#a76cd019f98e4f17d9ec00e54e5947ca1ac7e1fdd5ade4bcf659565eae235e1ad2">UnmodulatedCarrier</a> enum value</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#aaab37b212a4f003b00040caec8e1a343">waitAvailable</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ae7ba6ed148434bea785b2aaa1dedf2d3">waitAvailableTimeout</a>(uint16_t timeout)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a8ce6d4f63ce1ea37ab108c01f9476555">waitPacketSent</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRF22.html#ae5a45f7b4a5de3974f012c0e07d715bf">waitPacketSent</a>(uint16_t timeout)</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRF22.html#a7a0b9fb632f05b2eb0c559b7edb99ef5">wutRead</a>()</td><td class="entry"><a class="el" href="classRF22.html">RF22</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
</small></address>
</body>
</html>
|
docs/com/aurel/track/exchange/msProject/exporter/MsProjectExporterComparator.html | trackplus/Genji | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Sat Dec 19 22:20:03 CET 2015 -->
<title>MsProjectExporterComparator (Genji Scrum Tool & Issue Tracking API Documentation 5.0.1)</title>
<meta name="date" content="2015-12-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="MsProjectExporterComparator (Genji Scrum Tool & Issue Tracking API Documentation 5.0.1)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExporterBL.html" title="class in com.aurel.track.exchange.msProject.exporter"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExportJSON.html" title="class in com.aurel.track.exchange.msProject.exporter"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/aurel/track/exchange/msProject/exporter/MsProjectExporterComparator.html" target="_top">Frames</a></li>
<li><a href="MsProjectExporterComparator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.aurel.track.exchange.msProject.exporter</div>
<h2 title="Class MsProjectExporterComparator" class="title">Class MsProjectExporterComparator</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.aurel.track.exchange.msProject.exporter.MsProjectExporterComparator</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.util.Comparator</dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">MsProjectExporterComparator</span>
extends java.lang.Object
implements java.util.Comparator</pre>
<div class="block">This class handles sorting of workItemBeans by OutlineNumber
At database level the string ordering does not works correctly
because for ex. 1.11 would be before 1.2</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExporterComparator.html#MsProjectExporterComparator(java.util.Map,%20java.util.Map)">MsProjectExporterComparator</a></strong>(java.util.Map<java.lang.Integer,<a href="../../../../../../com/aurel/track/beans/TMSProjectTaskBean.html" title="class in com.aurel.track.beans">TMSProjectTaskBean</a>> msProjectTasksMap,
java.util.Map<java.lang.Integer,java.lang.Integer> workItemIDToTaskUIDMap)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExporterComparator.html#compare(java.lang.Object,%20java.lang.Object)">compare</a></strong>(java.lang.Object arg1,
java.lang.Object arg2)</code>
<div class="block">Compares two ReportBean according to the configured field and ascending order</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.util.Comparator">
<!-- -->
</a>
<h3>Methods inherited from interface java.util.Comparator</h3>
<code>equals</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="MsProjectExporterComparator(java.util.Map, java.util.Map)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MsProjectExporterComparator</h4>
<pre>public MsProjectExporterComparator(java.util.Map<java.lang.Integer,<a href="../../../../../../com/aurel/track/beans/TMSProjectTaskBean.html" title="class in com.aurel.track.beans">TMSProjectTaskBean</a>> msProjectTasksMap,
java.util.Map<java.lang.Integer,java.lang.Integer> workItemIDToTaskUIDMap)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="compare(java.lang.Object, java.lang.Object)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>compare</h4>
<pre>public int compare(java.lang.Object arg1,
java.lang.Object arg2)</pre>
<div class="block">Compares two ReportBean according to the configured field and ascending order</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>compare</code> in interface <code>java.util.Comparator</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExporterBL.html" title="class in com.aurel.track.exchange.msProject.exporter"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/aurel/track/exchange/msProject/exporter/MsProjectExportJSON.html" title="class in com.aurel.track.exchange.msProject.exporter"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/aurel/track/exchange/msProject/exporter/MsProjectExporterComparator.html" target="_top">Frames</a></li>
<li><a href="MsProjectExporterComparator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><a href="http://www.trackplus.com">Genji Scrum Tool & Issue Tracking API Documentation</a> <i>Copyright © 2015 Steinbeis Task Management Solutions. All Rights Reserved.</i></small></p>
</body>
</html>
|
pioneer-web-django/pioneerwebapp/templates/pioneerwebapp/footer.html | ragerin/pioneer-web-django | {% load static %}
{% load i18n %}
{% block footer %}
<section>
<span>
<a href="https://github.com/pioneerspacesim/pioneer/blob/master/AUTHORS.txt">
Copyright © 2008-{% now "Y" %} Pioneer Developers. Pioneer is Free Software.
</a>
</span>
</section>
{% endblock %}
|
www/layout/browser.html | bolidozor/RTbolidozor | {% extends "base.html" %}
{% block container %}
<script type="text/javascript">
$(window).ready(function () {
console.log("done")
});
</script>
<div class="block_header">
All <span style="size: small;"> @ bolidozor</span>
</div>
<div class="block_content">
<div>
<object type="image/svg+xml" data="/browser/plotJS/all/?width=690&height=280&month={{parent.get_argument('month', 'last')}}" style="width: 100%;" height="500" border="0"></object>
</div>
<div>
<object type="image/svg+xml" data="/browser/yeartrend/all/?width=690&height=100&month={{parent.get_argument('month', 'last')}}" style="width: 100%;" height="500" border="0"></object>
</div>
<div>
<object type="image/svg+xml" data="/browser/yearduration/" style="width: 100%;" height="500" border="0"></object>
</div>
</div>
<div class="block_header">
Jednotlive stanice
</div>
{% for station in _sql("SELECT namesimple, name FROM MLABvo.bolidozor_station;") %}
<div class="block_header">
{{station[0]}} <span style="size: small;"> @ {{station[1]}} </span>
</div>
<div class="block_content">
Správce: <a href="mailto:{{station[0]}}">{{station[0]}}</a>
/browser/plotJS/{{station[0]}}/?width=690&height=280&month={{parent.get_argument('month', 'last')}}
<div>
<object type="image/svg+xml" data="/browser/plotJS/{{station[0]}}/?width=690&height=280&month={{parent.get_argument('month', 'last')}}" style="width: 100%;" height="500" border="0"></object>
</div>
<div>
<object type="image/svg+xml" data="/browser/yeartrend/{{station[0]}}/?width=690&height=100&month={{parent.get_argument('month', 'last')}}" style="width: 100%;" height="500" border="0"></object>
</div>
</div>
{% end %}
{% end %}{% block header%}
<div id="tocitko" style="float: right;"> Ahoj!!! chvili pockej, tady bude tocitko </div>
{% end %}{% block script %}
setTimeout(function(){
document.getElementById('tocitko').style.display = 'none';
}, 35000);
{% end %} |
html5/att_a_href.html | gucong3000/gucong3000.github.io |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Mirrored from www.w3school.com.cn/html5/att_a_href.asp by HTTrack Website Copier/3.x [XR&CO'2008], Thu, 17 Nov 2011 05:28:12 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-cn" />
<meta name="robots" content="all" />
<meta name="author" content="w3school.com.cn" />
<meta name="Copyright" content="Copyright W3school.com.cn All Rights Reserved." />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta http-equiv="imagetoolbar" content="false" />
<link rel="stylesheet" type="text/css" href="c3.css" />
<title>HTML 5 <a> ±êÇ©µÄ href ÊôÐÔ</title>
</head>
<body class="html" id="tags">
<div id="wrapper"><div id="navsecond">
<div id="course">
<h2>HTML 5 ½Ì³Ì</h2>
<ul>
<li><a href="index.html" title="HTML 5 ½Ì³Ì">HTML 5 Ê×Ò³</a></li>
<li><a href="html_5_intro.html" title="HTML 5 ¼ò½é">HTML 5 ¼ò½é</a></li>
<li><a href="html_5_video.html" title="HTML 5 ÊÓÆµ">HTML 5 ÊÓÆµ</a></li>
<li><a href="html_5_audio.html" title="HTML 5 񙮵">HTML 5 񙮵</a></li>
<li><a href="html_5_canvas.html" title="HTML 5 Canvas">HTML 5 »²¼</a></li>
<li><a href="html_5_webstorage.html" title="HTML 5 Web ´æ´¢">HTML 5 Web ´æ´¢</a></li>
</ul>
<h2>HTML 5 ±íµ¥</h2>
<ul>
<li><a href="html_5_form_input_types.html" title="HTML 5 ÊäÈëÀàÐÍ">HTML 5 ÊäÈëÀàÐÍ</a></li>
<li><a href="html_5_form_elements.html" title="HTML 5 ±íµ¥ÔªËØ">HTML 5 ±íµ¥ÔªËØ</a></li>
<li><a href="html_5_form_attributes.html" title="HTML 5 ±íµ¥ÊôÐÔ">HTML 5 ±íµ¥ÊôÐÔ</a></li>
</ul>
<h2>HTML 5 ²Î¿¼ÊÖ²á</h2>
<ul>
<li><a href="html5_reference.html" title="HTML 5 ²Î¿¼ÊÖ²á">HTML 5 ±êÇ©</a></li>
<li><a href="html5_ref_standardattributes.html" title="HTML 5 ±ê×¼ÊôÐÔ">HTML 5 ÊôÐÔ</a></li>
<li><a href="html5_ref_eventattributes.html" title="HTML 5 ʼþÊôÐÔ">HTML 5 ʼþ</a></li>
</ul>
<h2>HTML ±êÇ©</h2>
<ul class="small">
<li>
<a href="tag_comment.html">
<!--></a></li>
<li>
<a href="tag_doctype.html">
<!DOCTYPE></a></li>
<li>
<a href="tag_a.html">
<a></a></li>
<li>
<a href="tag_abbr.html">
<abbr></a></li>
<li>
<a href="tag_acronym.html">
<acronym></a></li>
<li>
<a href="tag_address.html">
<address></a></li>
<li>
<a href="tag_applet.html">
<applet></a></li>
<li>
<a href="tag_area.html">
<area></a></li>
<li>
<a href="tag_article.html">
<article></a></li>
<li>
<a href="tag_aside.html">
<aside></a></li>
<li>
<a href="tag_audio.html">
<audio></a></li>
<li>
<a href="tag_b.html">
<b></a></li>
<li>
<a href="tag_base.html">
<base></a></li>
<li>
<a href="tag_basefont.html">
<basefont></a></li>
<li>
<a href="tag_bdi.html">
<bdi></a></li>
<li>
<a href="tag_bdo.html">
<bdo></a></li>
<li>
<a href="tag_big.html">
<big></a></li>
<li>
<a href="tag_blockquote.html">
<blockquote></a></li>
<li>
<a href="tag_body.html">
<body></a></li>
<li>
<a href="tag_br.html">
<br></a></li>
<li>
<a href="tag_button.html">
<button></a></li>
<li>
<a href="tag_canvas.html">
<canvas></a></li>
<li>
<a href="tag_caption.html">
<caption></a></li>
<li>
<a href="tag_center.html">
<center></a></li>
<li>
<a href="tag_phrase_elements.html">
<cite></a></li>
<li>
<a href="tag_phrase_elements.html">
<code></a></li>
<li>
<a href="tag_col.html">
<col></a></li>
<li>
<a href="tag_colgroup.html">
<colgroup></a></li>
<li>
<a href="tag_command.html">
<command></a></li>
<li>
<a href="tag_datalist.html">
<datalist></a></li>
<li>
<a href="tag_dd.html">
<dd></a></li>
<li>
<a href="tag_del.html">
<del></a></li>
<li>
<a href="tag_details.html">
<details></a></li>
<li>
<a href="tag_phrase_elements.html">
<dfn></a></li>
<li>
<a href="tag_dir.html">
<dir></a></li>
<li>
<a href="tag_div.html">
<div></a></li>
<li>
<a href="tag_dl.html">
<dl></a></li>
<li>
<a href="tag_dt.html">
<dt></a></li>
<li>
<a href="tag_phrase_elements.html">
<em></a></li>
<li>
<a href="tag_embed.html">
<embed></a></li>
<li>
<a href="tag_fieldset.html">
<fieldset></a></li>
<li>
<a href="tag_figcaption.html">
<figcaption></a></li>
<li>
<a href="tag_figure.html">
<figure></a></li>
<li>
<a href="tag_font.html">
<font></a></li>
<li>
<a href="tag_footer.html">
<footer></a></li>
<li>
<a href="tag_form.html">
<form></a></li>
<li>
<a href="tag_frame.html">
<frame></a></li>
<li>
<a href="tag_frameset.html">
<frameset></a></li>
<li>
<a href="tag_hn.html">
<h1> - <h6></a></li>
<li>
<a href="tag_head.html">
<head></a></li>
<li>
<a href="tag_header.html">
<header></a></li>
<li>
<a href="tag_hgroup.html">
<hgroup></a></li>
<li>
<a href="tag_hr.html">
<hr></a></li>
<li>
<a href="tag_html.html">
<html></a></li>
<li>
<a href="tag_i.html">
<i></a></li>
<li>
<a href="tag_iframe.html">
<iframe></a></li>
<li>
<a href="tag_img.html">
<img></a></li>
<li>
<a href="tag_input.html">
<input></a></li>
<li>
<a href="tag_ins.html">
<ins></a></li>
<li>
<a href="tag_keygen.html">
<keygen></a></li>
<li>
<a href="tag_phrase_elements.html">
<kbd></a></li>
<li>
<a href="tag_label.html">
<label></a></li>
<li>
<a href="tag_legend.html">
<legend></a></li>
<li>
<a href="tag_li.html">
<li></a></li>
<li>
<a href="tag_link.html">
<link></a></li>
<li>
<a href="tag_map.html">
<map></a></li>
<li>
<a href="tag_mark.html">
<mark></a></li>
<li>
<a href="tag_menu.html">
<menu></a></li>
<li>
<a href="tag_meta.html">
<meta></a></li>
<li>
<a href="tag_meter.html">
<meter></a></li>
<li>
<a href="tag_nav.html">
<nav></a></li>
<li>
<a href="tag_noframes.html">
<noframes></a></li>
<li>
<a href="tag_noscript.html">
<noscript></a></li>
<li>
<a href="tag_object.html">
<object></a></li>
<li>
<a href="tag_ol.html">
<ol></a></li>
<li>
<a href="tag_optgroup.html">
<optgroup></a></li>
<li>
<a href="tag_option.html">
<option></a></li>
<li>
<a href="tag_output.html">
<output></a></li>
<li>
<a href="tag_p.html">
<p></a></li>
<li>
<a href="tag_param.html">
<param></a></li>
<li>
<a href="tag_pre.html">
<pre></a></li>
<li>
<a href="tag_progress.html">
<progress></a></li>
<li>
<a href="tag_q.html">
<q></a></li>
<li>
<a href="tag_rp.html">
<rp></a></li>
<li>
<a href="tag_rt.html">
<rt></a></li>
<li>
<a href="tag_ruby.html">
<ruby></a></li>
<li>
<a href="tag_s.html">
<s></a></li>
<li>
<a href="tag_phrase_elements.html">
<samp></a></li>
<li>
<a href="tag_script.html">
<script></a></li>
<li>
<a href="tag_section.html">
<section></a></li>
<li>
<a href="tag_select.html">
<select></a></li>
<li>
<a href="tag_small.html">
<small></a></li>
<li>
<a href="tag_source.html">
<source></a></li>
<li>
<a href="tag_span.html">
<span></a></li>
<li>
<a href="tag_strike.html">
<strike></a></li>
<li>
<a href="tag_phrase_elements.html">
<strong></a></li>
<li>
<a href="tag_style.html">
<style></a></li>
<li>
<a href="tag_sup_sub.html">
<sub></a></li>
<li>
<a href="tag_summary.html">
<summary></a></li>
<li>
<a href="tag_sup_sub.html">
<sup></a></li>
<li>
<a href="tag_table.html">
<table></a></li>
<li>
<a href="tag_tbody.html">
<tbody></a></li>
<li>
<a href="tag_td.html">
<td></a></li>
<li>
<a href="tag_textarea.html">
<textarea></a></li>
<li>
<a href="tag_tfoot.html">
<tfoot></a></li>
<li>
<a href="tag_th.html">
<th></a></li>
<li>
<a href="tag_thead.html">
<thead></a></li>
<li>
<a href="tag_time.html">
<time></a></li>
<li>
<a href="tag_title.html">
<title></a></li>
<li>
<a href="tag_tr.html">
<tr></a></li>
<li>
<a href="tag_track.html">
<track></a></li>
<li>
<a href="tag_tt.html">
<tt></a></li>
<li>
<a href="tag_u.html">
<u></a></li>
<li>
<a href="tag_ul.html">
<ul></a></li>
<li>
<a href="tag_phrase_elements.html">
<var></a></li>
<li>
<a href="tag_video.html">
<video></a></li>
</ul>
</div>
</div>
<div id="maincontent">
<h1>HTML 5 <a> ±êÇ©µÄ href ÊôÐÔ</h1>
<div class="backtoreference">
<p><a href="tag_a.html">HTML 5 <a> ±êÇ©</a></p>
</div>
<div>
<h2>ʵÀý</h2>
<p>href ÊôÐԹ涨Á´½ÓµÄÄ¿µÄµØ£¨Ä¿±êµØÖ·£©£º</p>
<pre><a <code>href="http://www.w3school.com.cn"</code>>Visit W3School</a></pre>
<p><a href="http://www.w3school.com.cn/tiy/t.asp?f=html5_a_href">Ç××ÔÊÔÒ»ÊÔ</a></p>
</div>
<div>
<h2>¶¨ÒåºÍÓ÷¨</h2>
<p>href ÊôÐԹ涨Á´½ÓµÄÄ¿±êµØÖ·¡£</p>
<p>Èç¹ûδʹÓà href ÊôÐÔ£¬Ôò <a> ±êÇ©²»ÊÇÁ´½Ó£¬¶øÊÇÁ´½ÓµÄռλ·û¡£</p>
</div>
<div>
<h2>HTML 4.01 Óë HTML 5 Ö®¼äµÄ²îÒì</h2>
<p>ÔÚ HTML 4.01 ÖУ¬<a> ±êÇ©¼È¿ÉÒÔÊdz¬Á´½Ó£¬Ò²¿ÉÒÔÊÇê¡£ÕâÈ¡¾öÓÚ href ÊôÐÔ¡£ÔÚ HTML 5 ÖУ¬<a> Êdz¬Á´½Ó£¬µ«ÊǼÙÈçûÓÐ href ÊôÐÔ£¬Ëü½ö½öÊdz¬Á´½ÓµÄÒ»¸öռλ·û¡£</p>
</div>
<div>
<h2>Óï·¨</h2>
<pre><a href="<i>value</i>"></pre>
<h3>ÊôÐÔÖµ</h3>
<table class="dataintable">
<tr>
<th>Öµ</th>
<th>ÃèÊö</th>
</tr>
<tr>
<td><i>URL</i></td>
<td>³¬Á´½ÓµÄ URL¡£¿ÉÄܵÄÖµ£º
<ul class="listintable">
<li>¾ø¶Ô URL - Ö¸ÏòÁíÒ»¸öÕ¾µã£¨±ÈÈç href="http://www.example.com/index.htm"£©</li>
<li>Ïà¶Ô URL - Ö¸ÏòÕ¾µãÄÚµÄij¸öÎļþ£¨href="index.htm"£©</li>
<li>ê URL - Ö¸ÏòÒ³ÃæÖеÄ꣨href="#top"£©</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="backtoreference">
<p><a href="tag_a.html">HTML 5 <a> ±êÇ©</a></p>
</div>
</div>
</div>
</body>
<!-- Mirrored from www.w3school.com.cn/html5/att_a_href.asp by HTTrack Website Copier/3.x [XR&CO'2008], Thu, 17 Nov 2011 05:28:12 GMT -->
</html> |
CSC 445 WebCentric Programming/Final Project/poi-3.14/docs/apidocs/org/apache/poi/hwpf/dev/class-use/RecordUtil.html | jmemmons/university-assignments | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class org.apache.poi.hwpf.dev.RecordUtil (POI API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.poi.hwpf.dev.RecordUtil (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwpf/dev/RecordUtil.html" title="class in org.apache.poi.hwpf.dev"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hwpf/dev/\class-useRecordUtil.html" target="_top"><B>FRAMES</B></A>
<A HREF="RecordUtil.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.poi.hwpf.dev.RecordUtil</B></H2>
</CENTER>
No usage of org.apache.poi.hwpf.dev.RecordUtil
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwpf/dev/RecordUtil.html" title="class in org.apache.poi.hwpf.dev"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hwpf/dev/\class-useRecordUtil.html" target="_top"><B>FRAMES</B></A>
<A HREF="RecordUtil.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
RossFamilyTree/ppl/6/6/d15f6021f6a4949219002233866.html | RossGammon/the-gammons.net | <!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - KINGSTON, Irene J</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mobile-web-app-capable" content="yes" />
<meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" />
<meta name="author" content="" />
<link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" />
<link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" />
<link href="../../../css/ancestortree.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1 id="SiteTitle">Ross Gammon’s Family Tree</h1>
</div>
<div class="wrapper" id="nav" role="navigation">
<div class="container">
<ul class="menu" id="dropmenu">
<li class = "CurrentSection"><a href="../../../individuals.html" title="Individuals">Individuals</a></li>
<li><a href="../../../index.html" title="Surnames">Surnames</a></li>
<li><a href="../../../families.html" title="Families">Families</a></li>
<li><a href="../../../events.html" title="Events">Events</a></li>
<li><a href="../../../places.html" title="Places">Places</a></li>
<li><a href="../../../sources.html" title="Sources">Sources</a></li>
<li><a href="../../../repositories.html" title="Repositories">Repositories</a></li>
<li><a href="../../../media.html" title="Media">Media</a></li>
<li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li>
</ul>
</div>
</div>
<div class="content" id="IndividualDetail">
<h3>KINGSTON, Irene J<sup><small></small></sup></h3>
<div id="summaryarea">
<table class="infolist">
<tr>
<td class="ColumnAttribute">Birth Name</td>
<td class="ColumnValue">
KINGSTON, Irene J <a href="#sref1a">1a</a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnValue">I8762</td>
</tr>
<tr>
<td class="ColumnAttribute">Gender</td>
<td class="ColumnValue">female</td>
</tr>
</table>
</div>
<div class="subsection" id="events">
<h4>Events</h4>
<table class="infolist eventlist">
<thead>
<tr>
<th class="ColumnEvent">Event</th>
<th class="ColumnDate">Date</th>
<th class="ColumnPlace">Place</th>
<th class="ColumnDescription">Description</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/3/1/d15f6021f7533e3c63699dc3a13.html" title="Birth">
Birth
<span class="grampsid"> [E9560]</span>
</a>
</td>
<td class="ColumnDate">1890</td>
<td class="ColumnPlace">
<a href="../../../plc/8/8/d15f6021e927c19c8a744b8b888.html" title="">
</a>
</td>
<td class="ColumnDescription"> </td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
</td>
</tr>
</tbody>
</table>
</div>
<div class="subsection" id="parents">
<h4>Parents</h4>
<table class="infolist">
<thead>
<tr>
<th class="ColumnAttribute">Relation to main person</th>
<th class="ColumnValue">Name</th>
<th class="ColumnValue">Relation within this family (if not by birth)</th>
</tr>
</thead>
<tbody>
</tbody>
<tr>
<td class="ColumnAttribute">Father</td>
<td class="ColumnValue">
<a href="../../../ppl/0/6/d15f6021dff1fda9a773d81e160.html">KINGSTON, George<span class="grampsid"> [I8756]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Mother</td>
<td class="ColumnValue">
<a href="../../../ppl/a/b/d15f6021d7340eaaf8334fe7cba.html">LUCAS, Julia Harriet<span class="grampsid"> [I8755]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/9/b/d15f6021e8477eb4070339693b9.html">KINGSTON, Cecil O S<span class="grampsid"> [I8757]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"> <a href="../../../ppl/6/6/d15f6021f6a4949219002233866.html">KINGSTON, Irene J<span class="grampsid"> [I8762]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/3/4/d15f6021ff55724a17941d83f43.html">KINGSTON, Daffney C<span class="grampsid"> [I8765]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/8/a/d15f6022028249b37b8bbc9bea8.html">KINGSTON, Harold L G<span class="grampsid"> [I8766]</span></a></td>
<td class="ColumnValue"></td>
</tr>
</table>
</div>
<div class="subsection" id="families">
<h4>Families</h4>
<table class="infolist">
<tr class="BeginFamily">
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"><a href="../../../fam/5/9/d15f6021f8ffef7369a027b395.html" title="Family of ELLIOTT, Frederick and KINGSTON, Irene J">Family of ELLIOTT, Frederick and KINGSTON, Irene J<span class="grampsid"> [F2788]</span></a></td>
</tr>
<tr class="BeginFamily">
<td class="ColumnType">Married</td>
<td class="ColumnAttribute">Husband</td>
<td class="ColumnValue">
<a href="../../../ppl/7/a/d15f6021fa539a145df63e0fea7.html">ELLIOTT, Frederick<span class="grampsid"> [I8763]</span></a>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue">
<table class="infolist eventlist">
<thead>
<tr>
<th class="ColumnEvent">Event</th>
<th class="ColumnDate">Date</th>
<th class="ColumnPlace">Place</th>
<th class="ColumnDescription">Description</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/e/d/d15f60cf37a4dbcb2d327de8ade.html" title="Marriage">
Marriage
<span class="grampsid"> [E24310]</span>
</a>
</td>
<td class="ColumnDate">1915</td>
<td class="ColumnPlace">
<a href="../../../plc/a/1/d15f601be3a30fa49afdb143e1a.html" title="">
</a>
</td>
<td class="ColumnDescription"> </td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
</td>
</tr>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/8/0/d15f60cf3851da2a722650f7f08.html" title="Family (Primary)">
Family (Primary)
<span class="grampsid"> [E24311]</span>
</a>
</td>
<td class="ColumnDate"> </td>
<td class="ColumnPlace"> </td>
<td class="ColumnDescription"> </td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
<a href="#sref1b">1b</a>
</td>
</tr>
</tbody>
</table>
</td>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Attributes</td>
<td class="ColumnValue">
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">7815674E9D07E940BF06CFD686FEA8FEA3E0</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tr>
</table>
</div>
<div class="subsection" id="attributes">
<h4>Attributes</h4>
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">9E06361CCF48634C92207BF4966EB9942EAE</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</div>
<div class="subsection" id="pedigree">
<h4>Pedigree</h4>
<ol class="pedigreegen">
<li>
<a href="../../../ppl/0/6/d15f6021dff1fda9a773d81e160.html">KINGSTON, George<span class="grampsid"> [I8756]</span></a>
<ol>
<li class="spouse">
<a href="../../../ppl/a/b/d15f6021d7340eaaf8334fe7cba.html">LUCAS, Julia Harriet<span class="grampsid"> [I8755]</span></a>
<ol>
<li>
<a href="../../../ppl/9/b/d15f6021e8477eb4070339693b9.html">KINGSTON, Cecil O S<span class="grampsid"> [I8757]</span></a>
</li>
<li class="thisperson">
KINGSTON, Irene J
<ol class="spouselist">
<li class="spouse">
<a href="../../../ppl/7/a/d15f6021fa539a145df63e0fea7.html">ELLIOTT, Frederick<span class="grampsid"> [I8763]</span></a>
</li>
</ol>
</li>
<li>
<a href="../../../ppl/3/4/d15f6021ff55724a17941d83f43.html">KINGSTON, Daffney C<span class="grampsid"> [I8765]</span></a>
</li>
<li>
<a href="../../../ppl/8/a/d15f6022028249b37b8bbc9bea8.html">KINGSTON, Harold L G<span class="grampsid"> [I8766]</span></a>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
<div class="subsection" id="tree">
<h4>Ancestors</h4>
<div id="treeContainer" style="width:735px; height:602px;">
<div class="boxbg female AncCol0" style="top: 269px; left: 6px;">
<a class="noThumb" href="../../../ppl/6/6/d15f6021f6a4949219002233866.html">
KINGSTON, Irene J
</a>
</div>
<div class="shadow" style="top: 274px; left: 10px;"></div>
<div class="bvline" style="top: 301px; left: 165px; width: 15px"></div>
<div class="gvline" style="top: 306px; left: 165px; width: 20px"></div>
<div class="boxbg male AncCol1" style="top: 119px; left: 196px;">
<a class="noThumb" href="../../../ppl/0/6/d15f6021dff1fda9a773d81e160.html">
KINGSTON, George
</a>
</div>
<div class="shadow" style="top: 124px; left: 200px;"></div>
<div class="bvline" style="top: 151px; left: 180px; width: 15px;"></div>
<div class="gvline" style="top: 156px; left: 185px; width: 20px;"></div>
<div class="bhline" style="top: 151px; left: 180px; height: 150px;"></div>
<div class="gvline" style="top: 156px; left: 185px; height: 150px;"></div>
<div class="boxbg female AncCol1" style="top: 419px; left: 196px;">
<a class="noThumb" href="../../../ppl/a/b/d15f6021d7340eaaf8334fe7cba.html">
LUCAS, Julia Harriet
</a>
</div>
<div class="shadow" style="top: 424px; left: 200px;"></div>
<div class="bvline" style="top: 451px; left: 180px; width: 15px;"></div>
<div class="gvline" style="top: 456px; left: 185px; width: 20px;"></div>
<div class="bhline" style="top: 301px; left: 180px; height: 150px;"></div>
<div class="gvline" style="top: 306px; left: 185px; height: 150px;"></div>
<div class="bvline" style="top: 451px; left: 355px; width: 15px"></div>
<div class="gvline" style="top: 456px; left: 355px; width: 20px"></div>
<div class="boxbg male AncCol2" style="top: 344px; left: 386px;">
<a class="noThumb" href="../../../ppl/e/2/d15f6021b79503df545addd4e2e.html">
LUCAS, Edwin Charles
</a>
</div>
<div class="shadow" style="top: 349px; left: 390px;"></div>
<div class="bvline" style="top: 376px; left: 370px; width: 15px;"></div>
<div class="gvline" style="top: 381px; left: 375px; width: 20px;"></div>
<div class="bhline" style="top: 376px; left: 370px; height: 75px;"></div>
<div class="gvline" style="top: 381px; left: 375px; height: 75px;"></div>
<div class="bvline" style="top: 376px; left: 545px; width: 15px"></div>
<div class="gvline" style="top: 381px; left: 545px; width: 20px"></div>
<div class="boxbg male AncCol3" style="top: 307px; left: 576px;">
<a class="noThumb" href="../../../ppl/8/c/d15f601132eecb4ceb906e1c8.html">
LUCAS, John
</a>
</div>
<div class="shadow" style="top: 312px; left: 580px;"></div>
<div class="bvline" style="top: 339px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 344px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 339px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 344px; left: 565px; height: 37px;"></div>
<div class="boxbg female AncCol3" style="top: 381px; left: 576px;">
<a class="noThumb" href="../../../ppl/7/2/d15f601dc4b6f59179d65623627.html">
ROWLEY, Mary
</a>
</div>
<div class="shadow" style="top: 386px; left: 580px;"></div>
<div class="bvline" style="top: 413px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 418px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 376px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 381px; left: 565px; height: 37px;"></div>
<div class="boxbg female AncCol2" style="top: 494px; left: 386px;">
<a class="noThumb" href="../../../ppl/f/8/d15f6021bcc27000e1cbd9e348f.html">
PETTY, Harriet
</a>
</div>
<div class="shadow" style="top: 499px; left: 390px;"></div>
<div class="bvline" style="top: 526px; left: 370px; width: 15px;"></div>
<div class="gvline" style="top: 531px; left: 375px; width: 20px;"></div>
<div class="bhline" style="top: 451px; left: 370px; height: 75px;"></div>
<div class="gvline" style="top: 456px; left: 375px; height: 75px;"></div>
</div>
</div>
<div class="subsection" id="sourcerefs">
<h4>Source References</h4>
<ol>
<li>
<a href="../../../src/c/8/d15f60113322279b33b3d17668c.html" title="Frank Lee: GEDCOM File : JohnLUCAS.ged" name ="sref1">
Frank Lee: GEDCOM File : JohnLUCAS.ged
<span class="grampsid"> [S0297]</span>
</a>
<ol>
<li id="sref1a">
<ul>
<li>
Confidence: Low
</li>
</ul>
</li>
<li id="sref1b">
<ul>
<li>
Confidence: Low
</li>
</ul>
</li>
</ol>
</li>
</ol>
</div>
</div>
<div class="fullclear"></div>
<div id="footer">
<p id="createdate">
Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:40<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
components/buttons-group/css/mositar-button-group.css | PDI-DGS-Protolab/building-blocks-material | .movistar.button {
font-family: "Arial", sans-serif;
}
.movistar.btt-neutral {
color: white;
cursor: pointer;
background: #326f88;
border: none;
}
.movistar.btt-neutral.active {
color: white;
cursor: pointer;
background: #3c7e93;
outline: none !important;
border: none;
}
.movistar.btt-neutral[disabled=disabled] {
cursor: inherit;
filter: alpha( opacity=40 );
filter: progid:DXImageTransform.Microsoft.Alpha( opacity=0.4 );
opacity: .40;
-khtml-opacity: .40;
-moz-opacity: .40;
-ms-filter: "alpha( opacity=40 )";
}
.movistar.btt-positive {
color: white;
cursor: pointer;
background: #83ad3e;
border: none;
}
.movistar.btt-positive.active {
background: #8bb555;
outline: none !important;
color: white;
cursor: pointer;
border: none;
}
.movistar.btt-positive[disabled=disabled] {
cursor: inherit;
filter: alpha( opacity=40 );
filter: progid:DXImageTransform.Microsoft.Alpha( opacity=0.4 );
opacity: .40;
-khtml-opacity: .40;
-moz-opacity: .40;
-ms-filter: "alpha( opacity=40 )";
}
.movistar.btt-negative {
color: white;
cursor: pointer;
background: #da0b0c;
border: none;
}
.movistar.btt-negative.active {
background: #d53533;
outline: none !important;
color: white;
cursor: pointer;
border: none;
}
.movistar.btt-negative[disabled=disabled] {
cursor: inherit;
filter: alpha( opacity=40 );
filter: progid:DXImageTransform.Microsoft.Alpha( opacity=0.4 );
opacity: .40;
-khtml-opacity: .40;
-moz-opacity: .40;
-ms-filter: "alpha( opacity=40 )";
}
.movistar.btt-subdued {
color: white;
cursor: pointer;
background: #89898a;
border: none;
}
.movistar.btt-subdued.active {
background: #939393;
outline: none !important;
color: white;
cursor: pointer;
border: none;
}
.movistar.btt-subdued[ disabled=disabled ] {
cursor: inherit;
filter: alpha( opacity=40 );
filter: progid:DXImageTransform.Microsoft.Alpha( opacity=0.4 );
opacity: .40;
-khtml-opacity: .40;
-moz-opacity: .40;
-ms-filter: "alpha( opacity=40 )";
} |
doc/libsoup-2.4/Soup.Cacheability.VALIDATES.html | themightyug/ledborg-server | <?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>Soup.Cacheability.VALIDATES -- Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">Soup.Cacheability.VALIDATES Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">libsoup-2.4</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="Soup.html">Soup</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enum"><a href="Soup.Cacheability.html">Cacheability</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enumvalue">VALIDATES</li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
</ul>
</div>
<div class="site_content">
<h1 class="main_title">VALIDATES</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition"><b><span css="enumvalue">VALIDATES</span></b>
</div>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> |
docs/lamadmin/master/php/removeElementFromArray_8php.html | lamamos/lamamos.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Lamadmin: ajax/removeElementFromArray.php File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Lamadmin
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#var-members">Variables</a> </div>
<div class="headertitle">
<div class="title">ajax/removeElementFromArray.php File Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="var-members"></a>
Variables</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="removeElementFromArray_8php.html#a49c7011be9c979d9174c52a8b83e5d8e">$config</a> = new <a class="el" href="classConfiguration.html">Configuration</a>()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="removeElementFromArray_8php.html#ac531301c55a8d8b6c7613597218ff482">$module</a> = $config->getModule($_POST['moduleName'])</td></tr>
</table>
<hr/><h2>Variable Documentation</h2>
<a class="anchor" id="a49c7011be9c979d9174c52a8b83e5d8e"></a><!-- doxytag: member="removeElementFromArray.php::$config" ref="a49c7011be9c979d9174c52a8b83e5d8e" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">$config = new <a class="el" href="classConfiguration.html">Configuration</a>()</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac531301c55a8d8b6c7613597218ff482"></a><!-- doxytag: member="removeElementFromArray.php::$module" ref="ac531301c55a8d8b6c7613597218ff482" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">$module = $config->getModule($_POST['moduleName'])</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
</div><!-- contents -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri May 30 2014 08:37:53 for Lamadmin by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>
</body>
</html>
|
src/Sio.Cms.Web/app/app-shared/components/custom-file/custom-file.html | Swastika-IO/Swastika-Core | <div class="row" ng-init="$ctrl.init()">
<input type="hidden" value="{{$ctrl.type}}/{{$ctrl.folder}}" class="folder-val">
<div class="form-group col-sm-5">
<input type="text" placeholder="image url" ng-model="$ctrl.src" ng-change="$ctrl.srcUrl = $ctrl.src" class="form-control">
</div>
<div class="form-group m-0 col-sm-4">
<div class="custom-file">
<!-- <input type="file" class="custom-file-input" id="customFile"> -->
<input id="{{$ctrl.id}}" type="file" name="pic" ngf-select="$ctrl.selectFile($file, $invalidFiles)"
data-file="file.file" class="form-control position-absolute hidden" style="width:100%; /*height:130px;*/ cursor:pointer;">
<label class="custom-file-label" for="{{$ctrl.id}}">Choose file</label>
</div>
</div>
<div class="col-sm-3">
<button type="button" ng-click="$ctrl.save({activedData: $ctrl.data})" class="btn btn-secondary"><i
class="mi mi-Upload"></i>
Upload</button>
</div>
</div>
|
doc/glib-2.0/GLib.StaticPrivate.set.html | themightyug/ledborg-server | <?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>GLib.StaticPrivate.set -- Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">GLib.StaticPrivate.set Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">glib-2.0</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="GLib.html">GLib</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="struct"><a href="GLib.StaticPrivate.html">StaticPrivate</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="creation_method"><a href="GLib.StaticPrivate.StaticPrivate.html">StaticPrivate</a></li>
<li class="method"><a href="GLib.StaticPrivate.get.html">get</a></li>
<li class="method">set</li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">set</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">void</span> <b><span css="method">set</span></b> (<span class="main_keyword">void</span>* data, <span class="main_type"><a href="GLib.DestroyNotify.html" class="delegate">DestroyNotify</a></span>? destroy_func)
</div>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> |
frameworks/base/docs/html/sdk/api_diff/preview-21/changes/android.widget.PopupWindow.html | s20121035/rk3288_android5.1_repo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//www.w3.org/TR/html4/strict.dtd">
<HTML style="overflow:auto;">
<HEAD>
<meta name="generator" content="JDiff v1.1.0">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>
android.widget.PopupWindow
</TITLE>
<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
<noscript>
<style type="text/css">
body{overflow:auto;}
#body-content{position:relative; top:0;}
#doc-content{overflow:visible;border-left:3px solid #666;}
#side-nav{padding:0;}
#side-nav .toggle-list ul {display:block;}
#resize-packages-nav{border-bottom:3px solid #666;}
</style>
</noscript>
<style type="text/css">
</style>
</HEAD>
<BODY>
<!-- Start of nav bar -->
<a name="top"></a>
<div id="header" style="margin-bottom:0;padding-bottom:0;">
<div id="headerLeft">
<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
</div>
<div id="headerRight">
<div id="headerLinks">
<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
<span class="text">
<!-- <a href="#">English</a> | -->
<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//www.android.com" target="_top">Android.com</a></nobr>
</span>
</div>
<div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
<table class="diffspectable">
<tr>
<td colspan="2" class="diffspechead">API Diff Specification</td>
</tr>
<tr>
<td class="diffspec" style="padding-top:.25em">To Level:</td>
<td class="diffvaluenew" style="padding-top:.25em">21</td>
</tr>
<tr>
<td class="diffspec">From Level:</td>
<td class="diffvalueold">l-preview</td>
</tr>
<tr>
<td class="diffspec">Generated</td>
<td class="diffvalue">2014.10.15 14:58</td>
</tr>
</table>
</div><!-- End and-diff-id -->
<div class="and-diff-id" style="margin-right:8px;">
<table class="diffspectable">
<tr>
<td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
</tr>
</table>
</div> <!-- End and-diff-id -->
</div> <!-- End headerRight -->
</div> <!-- End header -->
<div id="body-content" xstyle="padding:12px;padding-right:18px;">
<div id="doc-content" style="position:relative;">
<div id="mainBodyFluid">
<H2>
Class android.widget.<A HREF="../../../../reference/android/widget/PopupWindow.html" target="_top"><font size="+2"><code>PopupWindow</code></font></A>
</H2>
<a NAME="constructors"></a>
<a NAME="methods"></a>
<p>
<a NAME="Added"></a>
<TABLE summary="Added Methods" WIDTH="100%">
<TR>
<TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
</TH>
<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
<TD VALIGN="TOP" WIDTH="25%">
<A NAME="android.widget.PopupWindow.getElevation_added()"></A>
<nobr><code>float</code> <A HREF="../../../../reference/android/widget/PopupWindow.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
</TD>
<TD> </TD>
</TR>
<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
<TD VALIGN="TOP" WIDTH="25%">
<A NAME="android.widget.PopupWindow.setElevation_added(float)"></A>
<nobr><code>void</code> <A HREF="../../../../reference/android/widget/PopupWindow.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
</TD>
<TD> </TD>
</TR>
</TABLE>
<a NAME="fields"></a>
</div>
<div id="footer">
<div id="copyright">
Except as noted, this content is licensed under
<a href="//creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
For details and restrictions, see the <a href="/license.html">Content License</a>.
</div>
<div id="footerlinks">
<p>
<a href="//www.android.com/terms.html">Site Terms of Service</a> -
<a href="//www.android.com/privacy.html">Privacy Policy</a> -
<a href="//www.android.com/branding.html">Brand Guidelines</a>
</p>
</div>
</div> <!-- end footer -->
</div><!-- end doc-content -->
</div> <!-- end body-content -->
<script src="//www.google-analytics.com/ga.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-5831155-1");
pageTracker._setAllowAnchor(true);
pageTracker._initData();
pageTracker._trackPageview();
} catch(e) {}
</script>
</BODY>
</HTML>
|
docs/main/Session.html | EPICI/wavelets | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_25) on Tue Apr 11 22:33:27 EDT 2017 -->
<title>Session</title>
<meta name="date" content="2017-04-11">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Session";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Session.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/Samples.html" title="class in main"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../main/Synthesizer.html" title="interface in main"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?main/Session.html" target="_top">Frames</a></li>
<li><a href="Session.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">main</div>
<h2 title="Class Session" class="title">Class Session</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>main.Session</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">Session</span>
extends java.lang.Object</pre>
<dl>
<dt><span class="simpleTagLabel">Version:</span></dt>
<dd>1.0</dd>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>EPICI</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../main/BetterClone.html" title="interface in main">BetterClone</a><?,?></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#clipBoard">clipBoard</a></span></code>
<div class="block">Clipboard, for copypasta</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../main/Composition.html" title="class in main">Composition</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#composition">composition</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>javax.swing.JDesktopPane</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#desktopPane">desktopPane</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#filename">filename</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>javax.swing.JFrame</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#mainFrame">mainFrame</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../components/WindowManager.html" title="class in components">WindowManager</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#windowManager">windowManager</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>javax.swing.JInternalFrame</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#windowManagerFrame">windowManagerFrame</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../main/Session.html#Session--">Session</a></span>()</code>
<div class="block">Default constructor, try to find preferences on its own</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#getBufferSize--">getBufferSize</a></span>()</code>
<div class="block">Gets the buffer size in samples</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#init-java.lang.String-">init</a></span>(java.lang.String prefSource)</code>
<div class="block">Initialize (reset) with given location at which preferences should be found</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#newComposition--">newComposition</a></span>()</code>
<div class="block">Delegated method for creating a new composition object,
primary purpose is to allow customization</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#setBufferSize-int-">setBufferSize</a></span>(int n)</code>
<div class="block">Sets the buffer size in samples</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/Session.html#setBufferSizeLog-int-">setBufferSizeLog</a></span>(int n)</code>
<div class="block">Sets the buffer size in samples to 2^n</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="clipBoard">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clipBoard</h4>
<pre>public <a href="../main/BetterClone.html" title="interface in main">BetterClone</a><?,?> clipBoard</pre>
<div class="block">Clipboard, for copypasta</div>
</li>
</ul>
<a name="composition">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>composition</h4>
<pre>public <a href="../main/Composition.html" title="class in main">Composition</a> composition</pre>
</li>
</ul>
<a name="filename">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>filename</h4>
<pre>public java.lang.String filename</pre>
</li>
</ul>
<a name="windowManager">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>windowManager</h4>
<pre>public <a href="../components/WindowManager.html" title="class in components">WindowManager</a> windowManager</pre>
</li>
</ul>
<a name="windowManagerFrame">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>windowManagerFrame</h4>
<pre>public javax.swing.JInternalFrame windowManagerFrame</pre>
</li>
</ul>
<a name="desktopPane">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>desktopPane</h4>
<pre>public javax.swing.JDesktopPane desktopPane</pre>
</li>
</ul>
<a name="mainFrame">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>mainFrame</h4>
<pre>public javax.swing.JFrame mainFrame</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Session--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Session</h4>
<pre>public Session()</pre>
<div class="block">Default constructor, try to find preferences on its own</div>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="init-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre>public void init(java.lang.String prefSource)</pre>
<div class="block">Initialize (reset) with given location at which preferences should be found</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>prefSource</code> - filename/location, or null for default</dd>
</dl>
</li>
</ul>
<a name="newComposition--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>newComposition</h4>
<pre>public void newComposition()</pre>
<div class="block">Delegated method for creating a new composition object,
primary purpose is to allow customization</div>
</li>
</ul>
<a name="getBufferSize--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBufferSize</h4>
<pre>public int getBufferSize()</pre>
<div class="block">Gets the buffer size in samples</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the buffer size, a power of 2</dd>
</dl>
</li>
</ul>
<a name="setBufferSize-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBufferSize</h4>
<pre>public void setBufferSize(int n)</pre>
<div class="block">Sets the buffer size in samples</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>n</code> - the buffer size, a power of 2</dd>
</dl>
</li>
</ul>
<a name="setBufferSizeLog-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setBufferSizeLog</h4>
<pre>public void setBufferSizeLog(int n)</pre>
<div class="block">Sets the buffer size in samples to 2^n</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>n</code> - will get set to 2^n</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Session.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/Samples.html" title="class in main"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../main/Synthesizer.html" title="interface in main"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?main/Session.html" target="_top">Frames</a></li>
<li><a href="Session.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
doc/model/package-tree.html | Drake81/rare-words | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_76) on Thu Apr 09 18:23:16 CEST 2015 -->
<title>model Class Hierarchy</title>
<meta name="date" content="2015-04-09">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="model Class Hierarchy";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/package-tree.html">Prev</a></li>
<li><a href="../similarity/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?model/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package model</h1>
<span class="strong">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">java.util.AbstractCollection<E> (implements java.util.Collection<E>)
<ul>
<li type="circle">java.util.AbstractList<E> (implements java.util.List<E>)
<ul>
<li type="circle">java.util.ArrayList<E> (implements java.lang.Cloneable, java.util.List<E>, java.util.RandomAccess, java.io.Serializable)
<ul>
<li type="circle">model.<a href="../model/Sentence.html" title="class in model"><span class="strong">Sentence</span></a></li>
<li type="circle">model.<a href="../model/SentenceList.html" title="class in model"><span class="strong">SentenceList</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li type="circle">model.<a href="../model/ObjectCounter.html" title="class in model"><span class="strong">ObjectCounter</span></a></li>
<li type="circle">model.<a href="../model/Options.html" title="class in model"><span class="strong">Options</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/package-tree.html">Prev</a></li>
<li><a href="../similarity/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?model/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
server/static/survey/views/outOfBoundsAlertModal.html | point97/hapifis | <div class="modal-outofbounds">
<div class="modal-body">
<i class="icon-warning-sign icon-3x pull-left col-icon"></i>
<p class="col-p">This location is outside of the Mid-Atlantic study area. We are collecting data for the area shown below in yellow.</p>
<p class="col=p"></p>
<center><img src="/static/survey/img/marco/marco-region-map-650x502.jpg"></center>
</div>
<div class="modal-footer">
<button class="btn btn-large" ng-click="close()">OK</button>
</div>
</div> |
AbasteceAqui/app/assets/stylesheets/calculator.css | fga-gpp-mds/2016.1-AbasteceAqui | * {
font-family: Helvetica;
}
#profitability-message {
text-align: center;
margin-top: 60px;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
input[name=gas_price], input[name=ethanol_price] {
display: block;
border-radius: 5px;
border-color: lightgray;
border-style: solid;
width: 37%;
font-weight: lighter;
margin-left: 10%;
}
label[for=gas_price] {
float: left;
margin-right: 40px;
color: #000;
}
label[for=ethanol_price] {
float: left;
margin-right: 56px;
color: #000;
}
#gas-group {
margin-left: 33%;
}
#ethanol-group {
margin-left: 33%;
margin-top: 30px;
margin-bottom: 15px;
}
.btn-calculate {
margin-top: 20px;
margin-bottom: 20px;
margin-left: calc(50% - 50px);
}
.form-calculate {
background-color: #E6E6E6;
border-radius: 5px;
width: auto;
height: auto;
border: solid lightgray 1px;
}
#title-form {
color: black;
text-align: center;
}
#form-header {
text-align: center;
}
#tooltip-button {
border-radius: 100%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 17px 0 rgba(0, 0, 0, 0.19);
opacity: 0.7;
float: right;
margin-top: -35px;
}
@media (max-width: 768px) {
label[for=ethanol_price] {
float: none;
}
label[for=gas_price] {
float: none;
}
input[name=gas_price], input[name=ethanol_price] {
width: 80%;
margin-left: -2%;
}
}
@media (max-width: 340px){
#title-form {
font-size: 20px;
}
}
@media (max-width: 475px){
input[name=gas_price], input[name=ethanol_price] {
font-size: 10px;
}
}
|
src/3rdparty/tbb40_20111130oss/doc/html/a00426.html | jonarbo/GREASY | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>cache_aligned_allocator.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.7 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul></div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul></div>
<h1>cache_aligned_allocator.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> Copyright 2005-2011 Intel Corporation. All Rights Reserved.</span>
<a name="l00003"></a>00003 <span class="comment"></span>
<a name="l00004"></a>00004 <span class="comment"> The source code contained or described herein and all documents related</span>
<a name="l00005"></a>00005 <span class="comment"> to the source code ("Material") are owned by Intel Corporation or its</span>
<a name="l00006"></a>00006 <span class="comment"> suppliers or licensors. Title to the Material remains with Intel</span>
<a name="l00007"></a>00007 <span class="comment"> Corporation or its suppliers and licensors. The Material is protected</span>
<a name="l00008"></a>00008 <span class="comment"> by worldwide copyright laws and treaty provisions. No part of the</span>
<a name="l00009"></a>00009 <span class="comment"> Material may be used, copied, reproduced, modified, published, uploaded,</span>
<a name="l00010"></a>00010 <span class="comment"> posted, transmitted, distributed, or disclosed in any way without</span>
<a name="l00011"></a>00011 <span class="comment"> Intel's prior express written permission.</span>
<a name="l00012"></a>00012 <span class="comment"></span>
<a name="l00013"></a>00013 <span class="comment"> No license under any patent, copyright, trade secret or other</span>
<a name="l00014"></a>00014 <span class="comment"> intellectual property right is granted to or conferred upon you by</span>
<a name="l00015"></a>00015 <span class="comment"> disclosure or delivery of the Materials, either expressly, by</span>
<a name="l00016"></a>00016 <span class="comment"> implication, inducement, estoppel or otherwise. Any license under such</span>
<a name="l00017"></a>00017 <span class="comment"> intellectual property rights must be express and approved by Intel in</span>
<a name="l00018"></a>00018 <span class="comment"> writing.</span>
<a name="l00019"></a>00019 <span class="comment">*/</span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="preprocessor">#ifndef __TBB_cache_aligned_allocator_H</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define __TBB_cache_aligned_allocator_H</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span>
<a name="l00024"></a>00024 <span class="preprocessor">#include <new></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include "tbb_stddef.h"</span>
<a name="l00026"></a>00026
<a name="l00027"></a>00027 <span class="keyword">namespace </span>tbb {
<a name="l00028"></a>00028
<a name="l00030"></a>00030 <span class="keyword">namespace </span>internal {
<a name="l00032"></a>00032
<a name="l00033"></a>00033 size_t __TBB_EXPORTED_FUNC NFS_GetLineSize();
<a name="l00034"></a>00034
<a name="l00036"></a>00036
<a name="l00037"></a>00037 <span class="keywordtype">void</span>* __TBB_EXPORTED_FUNC NFS_Allocate( size_t n_element, size_t element_size, <span class="keywordtype">void</span>* hint );
<a name="l00038"></a>00038
<a name="l00040"></a>00040
<a name="l00042"></a>00042 <span class="keywordtype">void</span> __TBB_EXPORTED_FUNC NFS_Free( <span class="keywordtype">void</span>* );
<a name="l00043"></a>00043 }
<a name="l00045"></a>00045
<a name="l00046"></a>00046 <span class="preprocessor">#if _MSC_VER && !defined(__INTEL_COMPILER)</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span> <span class="comment">// Workaround for erroneous "unreferenced parameter" warning in method destroy.</span>
<a name="l00048"></a>00048 <span class="preprocessor"> #pragma warning (push)</span>
<a name="l00049"></a>00049 <span class="preprocessor"></span><span class="preprocessor"> #pragma warning (disable: 4100)</span>
<a name="l00050"></a>00050 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00051"></a>00051 <span class="preprocessor"></span>
<a name="l00053"></a>00053
<a name="l00056"></a>00056 <span class="keyword">template</span><<span class="keyword">typename</span> T>
<a name="l00057"></a><a class="code" href="a00247.html">00057</a> <span class="keyword">class </span><a class="code" href="a00247.html">cache_aligned_allocator</a> {
<a name="l00058"></a>00058 <span class="keyword">public</span>:
<a name="l00059"></a>00059 <span class="keyword">typedef</span> <span class="keyword">typename</span> internal::allocator_type<T>::value_type value_type;
<a name="l00060"></a>00060 <span class="keyword">typedef</span> value_type* pointer;
<a name="l00061"></a>00061 <span class="keyword">typedef</span> <span class="keyword">const</span> value_type* const_pointer;
<a name="l00062"></a>00062 <span class="keyword">typedef</span> value_type& reference;
<a name="l00063"></a>00063 <span class="keyword">typedef</span> <span class="keyword">const</span> value_type& const_reference;
<a name="l00064"></a>00064 <span class="keyword">typedef</span> size_t size_type;
<a name="l00065"></a>00065 <span class="keyword">typedef</span> ptrdiff_t difference_type;
<a name="l00066"></a>00066 <span class="keyword">template</span><<span class="keyword">typename</span> U> <span class="keyword">struct </span>rebind {
<a name="l00067"></a>00067 <span class="keyword">typedef</span> <a class="code" href="a00247.html">cache_aligned_allocator<U></a> other;
<a name="l00068"></a>00068 };
<a name="l00069"></a>00069
<a name="l00070"></a>00070 <a class="code" href="a00247.html">cache_aligned_allocator</a>() <span class="keywordflow">throw</span>() {}
<a name="l00071"></a>00071 <a class="code" href="a00247.html">cache_aligned_allocator</a>( <span class="keyword">const</span> <a class="code" href="a00247.html">cache_aligned_allocator</a>& ) <span class="keywordflow">throw</span>() {}
<a name="l00072"></a>00072 <span class="keyword">template</span><<span class="keyword">typename</span> U> <a class="code" href="a00247.html">cache_aligned_allocator</a>(<span class="keyword">const</span> <a class="code" href="a00247.html">cache_aligned_allocator<U></a>&) <span class="keywordflow">throw</span>() {}
<a name="l00073"></a>00073
<a name="l00074"></a>00074 pointer address(reference x)<span class="keyword"> const </span>{<span class="keywordflow">return</span> &x;}
<a name="l00075"></a>00075 const_pointer address(const_reference x)<span class="keyword"> const </span>{<span class="keywordflow">return</span> &x;}
<a name="l00076"></a>00076
<a name="l00078"></a><a class="code" href="a00247.html#4cdeea67af6c1fcd8f1d5e9c4cab61e8">00078</a> pointer <a class="code" href="a00247.html#4cdeea67af6c1fcd8f1d5e9c4cab61e8">allocate</a>( size_type n, <span class="keyword">const</span> <span class="keywordtype">void</span>* hint=0 ) {
<a name="l00079"></a>00079 <span class="comment">// The "hint" argument is always ignored in NFS_Allocate thus const_cast shouldn't hurt</span>
<a name="l00080"></a>00080 <span class="keywordflow">return</span> pointer(internal::NFS_Allocate( n, <span class="keyword">sizeof</span>(value_type), const_cast<void*>(hint) ));
<a name="l00081"></a>00081 }
<a name="l00082"></a>00082
<a name="l00084"></a><a class="code" href="a00247.html#3d4eadf188f7d85d3805ae534e0b8e1c">00084</a> <span class="keywordtype">void</span> <a class="code" href="a00247.html#3d4eadf188f7d85d3805ae534e0b8e1c">deallocate</a>( pointer p, size_type ) {
<a name="l00085"></a>00085 internal::NFS_Free(p);
<a name="l00086"></a>00086 }
<a name="l00087"></a>00087
<a name="l00089"></a><a class="code" href="a00247.html#fb23b687b4c0429dab4c7f8017266cf0">00089</a> size_type <a class="code" href="a00247.html#fb23b687b4c0429dab4c7f8017266cf0">max_size</a>() const throw() {
<a name="l00090"></a>00090 <span class="keywordflow">return</span> (~size_t(0)-internal::NFS_MaxLineSize)/<span class="keyword">sizeof</span>(value_type);
<a name="l00091"></a>00091 }
<a name="l00092"></a>00092
<a name="l00094"></a><a class="code" href="a00247.html#958ee8745c86c275bfc9533af565e017">00094</a> <span class="keywordtype">void</span> <a class="code" href="a00247.html#958ee8745c86c275bfc9533af565e017">construct</a>( pointer p, <span class="keyword">const</span> value_type& value ) {::new((<span class="keywordtype">void</span>*)(p)) value_type(value);}
<a name="l00095"></a>00095
<a name="l00097"></a><a class="code" href="a00247.html#cd298895a4f1654b5149ec84b591ecb5">00097</a> <span class="keywordtype">void</span> <a class="code" href="a00247.html#cd298895a4f1654b5149ec84b591ecb5">destroy</a>( pointer p ) {p->~value_type();}
<a name="l00098"></a>00098 };
<a name="l00099"></a>00099
<a name="l00100"></a>00100 <span class="preprocessor">#if _MSC_VER && !defined(__INTEL_COMPILER)</span>
<a name="l00101"></a>00101 <span class="preprocessor"></span><span class="preprocessor"> #pragma warning (pop)</span>
<a name="l00102"></a>00102 <span class="preprocessor"></span><span class="preprocessor">#endif // warning 4100 is back</span>
<a name="l00103"></a>00103 <span class="preprocessor"></span>
<a name="l00105"></a>00105
<a name="l00106"></a>00106 <span class="keyword">template</span><>
<a name="l00107"></a><a class="code" href="a00248.html">00107</a> <span class="keyword">class </span><a class="code" href="a00247.html">cache_aligned_allocator</a><void> {
<a name="l00108"></a>00108 <span class="keyword">public</span>:
<a name="l00109"></a>00109 <span class="keyword">typedef</span> <span class="keywordtype">void</span>* pointer;
<a name="l00110"></a>00110 <span class="keyword">typedef</span> <span class="keyword">const</span> <span class="keywordtype">void</span>* const_pointer;
<a name="l00111"></a>00111 <span class="keyword">typedef</span> <span class="keywordtype">void</span> value_type;
<a name="l00112"></a>00112 <span class="keyword">template</span><<span class="keyword">typename</span> U> <span class="keyword">struct </span>rebind {
<a name="l00113"></a>00113 <span class="keyword">typedef</span> <a class="code" href="a00247.html">cache_aligned_allocator<U></a> other;
<a name="l00114"></a>00114 };
<a name="l00115"></a>00115 };
<a name="l00116"></a>00116
<a name="l00117"></a>00117 <span class="keyword">template</span><<span class="keyword">typename</span> T, <span class="keyword">typename</span> U>
<a name="l00118"></a>00118 <span class="keyword">inline</span> <span class="keywordtype">bool</span> operator==( <span class="keyword">const</span> <a class="code" href="a00247.html">cache_aligned_allocator<T></a>&, <span class="keyword">const</span> <a class="code" href="a00247.html">cache_aligned_allocator<U></a>& ) {<span class="keywordflow">return</span> <span class="keyword">true</span>;}
<a name="l00119"></a>00119
<a name="l00120"></a>00120 <span class="keyword">template</span><<span class="keyword">typename</span> T, <span class="keyword">typename</span> U>
<a name="l00121"></a>00121 <span class="keyword">inline</span> <span class="keywordtype">bool</span> operator!=( <span class="keyword">const</span> cache_aligned_allocator<T>&, <span class="keyword">const</span> cache_aligned_allocator<U>& ) {<span class="keywordflow">return</span> <span class="keyword">false</span>;}
<a name="l00122"></a>00122
<a name="l00123"></a>00123 } <span class="comment">// namespace tbb</span>
<a name="l00124"></a>00124
<a name="l00125"></a>00125 <span class="preprocessor">#endif </span><span class="comment">/* __TBB_cache_aligned_allocator_H */</span>
</pre></div><hr>
<p></p>
Copyright © 2005-2011 Intel Corporation. All Rights Reserved.
<p></p>
Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are
registered trademarks or trademarks of Intel Corporation or its
subsidiaries in the United States and other countries.
<p></p>
* Other names and brands may be claimed as the property of others.
|
app/views/pages/sessions/_form_login.html | alkcxy/BilancioFamiliare | <div class="alert alert-danger" ng-show="(form.$submitted || form.email.$dirty) && form.email.$invalid">
<p class="mb-0" ng-show="form.email.$error.required">Il campo email è obbligatorio.</p>
<p class="mb-0" ng-show="form.email.$error.email">Il campo email deve essere una email.</p>
</div>
<div class="alert alert-danger" ng-show="(form.$submitted || form.password.$dirty) && form.password.$invalid">
<p class="mb-0" ng-show="form.password.$error.required">Il campo password è obbligatorio.</p>
</div>
<div ng-show="$ctrl.error" ng-bind="$ctrl.error" class="alert alert-danger"></div>
<form ng-submit="!form.$invalid && $ctrl.login()" class="form-inline" name="form" novalidate>
<div class="form-group">
<label class="sr-only" for="email">Email address</label>
<div class="col-sm-10">
<input type="email" class="form-control" placeholder="Email" id="email" name="email" ng-model="$ctrl.email" required />
</div>
</div>
<div class="form-group">
<label class="sr-only" for="password">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Password" ng-model="$ctrl.password" required />
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
|
platform/linux/support/cmake/doc/cmake/html/module/FindUnixCommands.html | libcrosswind/libcrosswind |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FindUnixCommands — CMake 3.15.2 Documentation</title>
<link rel="stylesheet" href="../_static/cmake.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript" src="../_static/documentation_options.js"></script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="shortcut icon" href="../_static/cmake-favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="FindVTK" href="FindVTK.html" />
<link rel="prev" title="FindTIFF" href="FindTIFF.html" />
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="FindVTK.html" title="FindVTK"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="FindTIFF.html" title="FindTIFF"
accesskey="P">previous</a> |</li>
<li>
<img src="../_static/cmake-logo-16.png" alt=""
style="vertical-align: middle; margin-top: -2px" />
</li>
<li>
<a href="https://cmake.org/">CMake</a> »
</li>
<li>
<a href="../index.html">3.15.2 Documentation</a> »
</li>
<li class="nav-item nav-item-1"><a href="../manual/cmake-modules.7.html" accesskey="U">cmake-modules(7)</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="findunixcommands">
<span id="module:FindUnixCommands"></span><h1>FindUnixCommands<a class="headerlink" href="#findunixcommands" title="Permalink to this headline">¶</a></h1>
<p>Find Unix commands, including the ones from Cygwin</p>
<p>This module looks for the Unix commands <code class="docutils literal notranslate"><span class="pre">bash</span></code>, <code class="docutils literal notranslate"><span class="pre">cp</span></code>, <code class="docutils literal notranslate"><span class="pre">gzip</span></code>,
<code class="docutils literal notranslate"><span class="pre">mv</span></code>, <code class="docutils literal notranslate"><span class="pre">rm</span></code>, and <code class="docutils literal notranslate"><span class="pre">tar</span></code> and stores the result in the variables
<code class="docutils literal notranslate"><span class="pre">BASH</span></code>, <code class="docutils literal notranslate"><span class="pre">CP</span></code>, <code class="docutils literal notranslate"><span class="pre">GZIP</span></code>, <code class="docutils literal notranslate"><span class="pre">MV</span></code>, <code class="docutils literal notranslate"><span class="pre">RM</span></code>, and <code class="docutils literal notranslate"><span class="pre">TAR</span></code>.</p>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="FindTIFF.html"
title="previous chapter">FindTIFF</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="FindVTK.html"
title="next chapter">FindVTK</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/module/FindUnixCommands.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="FindVTK.html" title="FindVTK"
>next</a> |</li>
<li class="right" >
<a href="FindTIFF.html" title="FindTIFF"
>previous</a> |</li>
<li>
<img src="../_static/cmake-logo-16.png" alt=""
style="vertical-align: middle; margin-top: -2px" />
</li>
<li>
<a href="https://cmake.org/">CMake</a> »
</li>
<li>
<a href="../index.html">3.15.2 Documentation</a> »
</li>
<li class="nav-item nav-item-1"><a href="../manual/cmake-modules.7.html" >cmake-modules(7)</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2000-2019 Kitware, Inc. and Contributors.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.2.
</div>
</body>
</html> |
docs/doxygen/d3/dea/_r_o_lane_8h_source.html | smendez-hi/SUMO-hib | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>SUMO - Simulation of Urban MObility: ROLane.h Source File</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<link href="../../doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.3 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="../../main.html"><span>Main Page</span></a></li>
<li><a href="../../pages.html"><span>Related Pages</span></a></li>
<li><a href="../../modules.html"><span>Modules</span></a></li>
<li><a href="../../annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="../../files.html"><span>Files</span></a></li>
<li><a href="../../dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="../../files.html"><span>File List</span></a></li>
<li><a href="../../globals.html"><span>Globals</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="../../dir_75b82e7e4a5feb05200b9ad7adf06257.html">home</a> » <a class="el" href="../../dir_46b8f36974b309f038ffc35aa047a32b.html">boni</a> » <a class="el" href="../../dir_52e5be8ca53cec2b5437a8ba83e8e4f0.html">Desktop</a> » <a class="el" href="../../dir_7de3ce0f65e0314f747915173f89e60e.html">DanielTouched</a> » <a class="el" href="../../dir_a0096e276045b3ff0719c75e0b3c59bf.html">sumo-0.14.0</a> » <a class="el" href="../../dir_e9b8d709919855cd07b0394009af2578.html">src</a> » <a class="el" href="../../dir_7d5a690347e35fa6dea04dab75144e95.html">router</a>
</div>
</div>
<div class="contents">
<h1>ROLane.h</h1><a href="../../d3/dea/_r_o_lane_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/****************************************************************************/</span>
<a name="l00008"></a>00008 <span class="comment">// A single lane the router may use</span>
<a name="l00009"></a>00009 <span class="comment">/****************************************************************************/</span>
<a name="l00010"></a>00010 <span class="comment">// SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/</span>
<a name="l00011"></a>00011 <span class="comment">// Copyright (C) 2001-2012 DLR (http://www.dlr.de/) and contributors</span>
<a name="l00012"></a>00012 <span class="comment">/****************************************************************************/</span>
<a name="l00013"></a>00013 <span class="comment">//</span>
<a name="l00014"></a>00014 <span class="comment">// This file is part of SUMO.</span>
<a name="l00015"></a>00015 <span class="comment">// SUMO is free software: you can redistribute it and/or modify</span>
<a name="l00016"></a>00016 <span class="comment">// it under the terms of the GNU General Public License as published by</span>
<a name="l00017"></a>00017 <span class="comment">// the Free Software Foundation, either version 3 of the License, or</span>
<a name="l00018"></a>00018 <span class="comment">// (at your option) any later version.</span>
<a name="l00019"></a>00019 <span class="comment">//</span>
<a name="l00020"></a>00020 <span class="comment">/****************************************************************************/</span>
<a name="l00021"></a>00021 <span class="preprocessor">#ifndef ROLane_h</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define ROLane_h</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span>
<a name="l00024"></a>00024
<a name="l00025"></a>00025 <span class="comment">// ===========================================================================</span>
<a name="l00026"></a>00026 <span class="comment">// included modules</span>
<a name="l00027"></a>00027 <span class="comment">// ===========================================================================</span>
<a name="l00028"></a>00028 <span class="preprocessor">#ifdef _MSC_VER</span>
<a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#include <<a class="code" href="../../d3/d99/windows__config_8h.html">windows_config.h</a>></span>
<a name="l00030"></a>00030 <span class="preprocessor">#else</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#include <<a class="code" href="../../db/d16/config_8h.html">config.h</a>></span>
<a name="l00032"></a>00032 <span class="preprocessor">#endif</span>
<a name="l00033"></a>00033 <span class="preprocessor"></span>
<a name="l00034"></a>00034 <span class="preprocessor">#include <vector></span>
<a name="l00035"></a>00035 <span class="preprocessor">#include <<a class="code" href="../../de/d1a/_named_8h.html">utils/common/Named.h</a>></span>
<a name="l00036"></a>00036 <span class="preprocessor">#include <<a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html">utils/common/SUMOVehicleClass.h</a>></span>
<a name="l00037"></a>00037
<a name="l00038"></a>00038
<a name="l00039"></a>00039 <span class="comment">// ===========================================================================</span>
<a name="l00040"></a>00040 <span class="comment">// class definitions</span>
<a name="l00041"></a>00041 <span class="comment">// ===========================================================================</span>
<a name="l00051"></a><a class="code" href="../../dc/d45/class_r_o_lane.html">00051</a> <span class="comment"></span><span class="keyword">class </span><a class="code" href="../../dc/d45/class_r_o_lane.html" title="A single lane the router may use.">ROLane</a> : <span class="keyword">public</span> <a class="code" href="../../d5/dbf/class_named.html" title="Base class for objects which do have an id.">Named</a> {
<a name="l00052"></a>00052 <span class="keyword">public</span>:
<a name="l00061"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a1a73ca01d1fd40235d0cafad80f44df9">00061</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#a1a73ca01d1fd40235d0cafad80f44df9" title="Constructor.">ROLane</a>(<span class="keyword">const</span> std::string& <span class="keywordtype">id</span>, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> length, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> maxSpeed,
<a name="l00062"></a>00062 <span class="keyword">const</span> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a>& allowed,
<a name="l00063"></a>00063 <span class="keyword">const</span> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a>& disallowed)
<a name="l00064"></a>00064 : <a class="code" href="../../d5/dbf/class_named.html" title="Base class for objects which do have an id.">Named</a>(id), <a class="code" href="../../dc/d45/class_r_o_lane.html#aa52d81b9e207f8bbb0d40f38f6a94260" title="The length of the lane.">myLength</a>(length), <a class="code" href="../../dc/d45/class_r_o_lane.html#a94cf60ca1c4c424a4bf26b1c68f15f8f" title="The maximum speed allowed on the lane.">myMaxSpeed</a>(maxSpeed),
<a name="l00065"></a>00065 <a class="code" href="../../dc/d45/class_r_o_lane.html#ac10c46e45176ed4a460356401a7685f4" title="The list of allowed vehicle classes.">myAllowedClasses</a>(allowed), <a class="code" href="../../dc/d45/class_r_o_lane.html#af20a6f4ff7a4152ebfa7a89fdee0d86e" title="The list of disallowed vehicle classes.">myNotAllowedClasses</a>(disallowed) {
<a name="l00066"></a>00066 }
<a name="l00067"></a>00067
<a name="l00068"></a>00068
<a name="l00070"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a51451bc6304cd5b5d099e563db29c8fe">00070</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#a51451bc6304cd5b5d099e563db29c8fe" title="Destructor.">~ROLane</a>() { }
<a name="l00071"></a>00071
<a name="l00072"></a>00072
<a name="l00076"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a0c2271e5233a8b032139d4998af33a3a">00076</a> <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#a0c2271e5233a8b032139d4998af33a3a" title="Returns the length of the lane.">getLength</a>()<span class="keyword"> const </span>{
<a name="l00077"></a>00077 <span class="keywordflow">return</span> <a class="code" href="../../dc/d45/class_r_o_lane.html#aa52d81b9e207f8bbb0d40f38f6a94260" title="The length of the lane.">myLength</a>;
<a name="l00078"></a>00078 }
<a name="l00079"></a>00079
<a name="l00080"></a>00080
<a name="l00084"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a9a5a5f5a1d9b4dcbae2da54a82667c84">00084</a> <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#a9a5a5f5a1d9b4dcbae2da54a82667c84" title="Returns the maximum speed allowed on this lane.">getSpeed</a>()<span class="keyword"> const </span>{
<a name="l00085"></a>00085 <span class="keywordflow">return</span> <a class="code" href="../../dc/d45/class_r_o_lane.html#a94cf60ca1c4c424a4bf26b1c68f15f8f" title="The maximum speed allowed on the lane.">myMaxSpeed</a>;
<a name="l00086"></a>00086 }
<a name="l00087"></a>00087
<a name="l00088"></a>00088
<a name="l00092"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a5c44a594d6909deea1e502cb57f824bb">00092</a> <span class="keyword">const</span> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a>& <a class="code" href="../../dc/d45/class_r_o_lane.html#a5c44a594d6909deea1e502cb57f824bb" title="Returns the list of allowed vehicle classes.">getAllowedClasses</a>()<span class="keyword"> const </span>{
<a name="l00093"></a>00093 <span class="keywordflow">return</span> <a class="code" href="../../dc/d45/class_r_o_lane.html#ac10c46e45176ed4a460356401a7685f4" title="The list of allowed vehicle classes.">myAllowedClasses</a>;
<a name="l00094"></a>00094 }
<a name="l00095"></a>00095
<a name="l00096"></a>00096
<a name="l00100"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a3c4480eb5da4c7328a4872c27067c167">00100</a> <span class="keyword">const</span> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a>& <a class="code" href="../../dc/d45/class_r_o_lane.html#a3c4480eb5da4c7328a4872c27067c167" title="Returns the list of not allowed vehicle classes.">getNotAllowedClasses</a>()<span class="keyword"> const </span>{
<a name="l00101"></a>00101 <span class="keywordflow">return</span> <a class="code" href="../../dc/d45/class_r_o_lane.html#af20a6f4ff7a4152ebfa7a89fdee0d86e" title="The list of disallowed vehicle classes.">myNotAllowedClasses</a>;
<a name="l00102"></a>00102 }
<a name="l00103"></a>00103
<a name="l00104"></a>00104
<a name="l00105"></a>00105 <span class="keyword">private</span>:
<a name="l00107"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#aa52d81b9e207f8bbb0d40f38f6a94260">00107</a> <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#aa52d81b9e207f8bbb0d40f38f6a94260" title="The length of the lane.">myLength</a>;
<a name="l00108"></a>00108
<a name="l00110"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#a94cf60ca1c4c424a4bf26b1c68f15f8f">00110</a> <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#a94cf60ca1c4c424a4bf26b1c68f15f8f" title="The maximum speed allowed on the lane.">myMaxSpeed</a>;
<a name="l00111"></a>00111
<a name="l00113"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#ac10c46e45176ed4a460356401a7685f4">00113</a> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#ac10c46e45176ed4a460356401a7685f4" title="The list of allowed vehicle classes.">myAllowedClasses</a>;
<a name="l00114"></a>00114
<a name="l00116"></a><a class="code" href="../../dc/d45/class_r_o_lane.html#af20a6f4ff7a4152ebfa7a89fdee0d86e">00116</a> <a class="code" href="../../d2/d6d/_s_u_m_o_vehicle_class_8h.html#aeeb92a4c5c00b838d8f8b481b17eccce">SUMOVehicleClasses</a> <a class="code" href="../../dc/d45/class_r_o_lane.html#af20a6f4ff7a4152ebfa7a89fdee0d86e" title="The list of disallowed vehicle classes.">myNotAllowedClasses</a>;
<a name="l00117"></a>00117
<a name="l00118"></a>00118
<a name="l00119"></a>00119 <span class="keyword">private</span>:
<a name="l00121"></a>00121 <a class="code" href="../../dc/d45/class_r_o_lane.html#a1a73ca01d1fd40235d0cafad80f44df9" title="Constructor.">ROLane</a>(<span class="keyword">const</span> <a class="code" href="../../dc/d45/class_r_o_lane.html" title="A single lane the router may use.">ROLane</a>& src);
<a name="l00122"></a>00122
<a name="l00124"></a>00124 <a class="code" href="../../dc/d45/class_r_o_lane.html" title="A single lane the router may use.">ROLane</a>& <a class="code" href="../../dc/d45/class_r_o_lane.html#a53457a053dc5953a81c21df31012160c" title="Invalidated assignment operator.">operator=</a>(<span class="keyword">const</span> <a class="code" href="../../dc/d45/class_r_o_lane.html" title="A single lane the router may use.">ROLane</a>& src);
<a name="l00125"></a>00125
<a name="l00126"></a>00126 };
<a name="l00127"></a>00127
<a name="l00128"></a>00128
<a name="l00129"></a>00129 <span class="preprocessor">#endif</span>
<a name="l00130"></a>00130 <span class="preprocessor"></span>
<a name="l00131"></a>00131 <span class="comment">/****************************************************************************/</span>
<a name="l00132"></a>00132
</pre></div></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Tue Jul 17 12:16:12 2012 for SUMO - Simulation of Urban MObility by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>
|
xena/tech_docs/api/au/gov/naa/digipres/xena/litegui/SplashScreen.html | srnsw/xena | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_13) on Mon Dec 03 14:16:12 GMT+10:00 2007 -->
<TITLE>
SplashScreen
</TITLE>
<META NAME="keywords" CONTENT="au.gov.naa.digipres.xena.litegui.SplashScreen class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="SplashScreen";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/SplashScreen.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/NormalisationThread.html" title="class in au.gov.naa.digipres.xena.litegui"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?au/gov/naa/digipres/xena/litegui/SplashScreen.html" target="_top"><B>FRAMES</B></A>
<A HREF="SplashScreen.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
au.gov.naa.digipres.xena.litegui</FONT>
<BR>
Class SplashScreen</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>au.gov.naa.digipres.xena.litegui.SplashScreen</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>SplashScreen</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/SplashScreen.html#SplashScreen(java.lang.String, java.lang.String)">SplashScreen</A></B>(java.lang.String title,
java.lang.String version)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/SplashScreen.html#dispose()">dispose</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.logging.Handler</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/SplashScreen.html#getLogHandler()">getLogHandler</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/SplashScreen.html#setVisible(boolean)">setVisible</A></B>(boolean show)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="SplashScreen(java.lang.String, java.lang.String)"><!-- --></A><H3>
SplashScreen</H3>
<PRE>
public <B>SplashScreen</B>(java.lang.String title,
java.lang.String version)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="setVisible(boolean)"><!-- --></A><H3>
setVisible</H3>
<PRE>
public void <B>setVisible</B>(boolean show)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="dispose()"><!-- --></A><H3>
dispose</H3>
<PRE>
public void <B>dispose</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getLogHandler()"><!-- --></A><H3>
getLogHandler</H3>
<PRE>
public java.util.logging.Handler <B>getLogHandler</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/SplashScreen.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../au/gov/naa/digipres/xena/litegui/NormalisationThread.html" title="class in au.gov.naa.digipres.xena.litegui"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?au/gov/naa/digipres/xena/litegui/SplashScreen.html" target="_top"><B>FRAMES</B></A>
<A HREF="SplashScreen.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
tags/2PC/index.html | baxiaoshi/baxiaoshi.github.io | <!doctype html>
<html class="theme-next pisces use-motion">
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.0.2" rel="stylesheet" type="text/css">
<meta name="keywords" content="go语言,kubernetes,源码分析,后端开发,分布式,微服务,架构,容器,数据结构,算法,golang,go">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.0.2">
<meta name="description" content="分享后端go语言开发的各种架构设计源码分析与核心数据结构算法设计与云计算相关实践,涉及到kubernetes,云计算,微服务,系统设计,系统架构,设计模式,数据结构与算法,还有底层的操作系统实现,深度解读各种源码细节与精彩设计,加深对各种中间件系统的了解的个人技术博客">
<meta name="keywords" content="go语言,kubernetes,源码分析,后端开发,分布式,微服务,架构,容器,数据结构,算法,技术博客">
<meta property="og:type" content="website">
<meta property="og:title" content="专注go语言后端程序源码分析与云计算kubernetes领域源码分析与最佳实践分析个人技术博客">
<meta property="og:url" content="http://www.sreguide.com/tags/2PC/index.html">
<meta property="og:site_name" content="专注go语言后端程序源码分析与云计算kubernetes领域源码分析与最佳实践分析个人技术博客">
<meta property="og:description" content="分享后端go语言开发的各种架构设计源码分析与核心数据结构算法设计与云计算相关实践,涉及到kubernetes,云计算,微服务,系统设计,系统架构,设计模式,数据结构与算法,还有底层的操作系统实现,深度解读各种源码细节与精彩设计,加深对各种中间件系统的了解的个人技术博客">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="专注go语言后端程序源码分析与云计算kubernetes领域源码分析与最佳实践分析个人技术博客">
<meta name="twitter:description" content="分享后端go语言开发的各种架构设计源码分析与核心数据结构算法设计与云计算相关实践,涉及到kubernetes,云计算,微服务,系统设计,系统架构,设计模式,数据结构与算法,还有底层的操作系统实现,深度解读各种源码细节与精彩设计,加深对各种中间件系统的了解的个人技术博客">
<script type="text/javascript" id="hexo.configuration">
var NexT = window.NexT || {};
var CONFIG = {
scheme: 'Pisces',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
}
};
</script>
<link rel="canonical" href="http://www.sreguide.com/tags/2PC/">
<title> 标签: 2PC | 专注go语言后端程序源码分析与云计算kubernetes领域源码分析与最佳实践分析个人技术博客 </title>
</head>
<body itemscope itemtype="//schema.org/WebPage" lang="zh-Hans">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?2f321255b7093cd1f243e3a2c7adb665";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
<div class="container one-collumn sidebar-position-left ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="//schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title"></span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br>
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br>
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br>
标签
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br>
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup">
<span class="search-icon fa fa-search"></span>
<input type="text" id="local-search-input">
<div id="local-search-result"></div>
<span class="popup-btn-close">close</span>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-collapse">
<div class="collection-title">
<h2>
2PC
<small>标签</small>
</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/data_struct/2pc_msg_queue_conf.html" itemprop="url">
<span itemprop="name">基于2PC和延迟更新完成分布式消息队列多条事务</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated" datetime="2019-05-17T10:45:36+08:00" content="2019-05-17 10:45">
05-17
</time>
</div>
</header>
</article>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active ">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="//schema.org/Person">
<img class="site-author-image" itemprop="image" src="https://baxiaoshi.cdn.bcebos.com/blog%2Fqrcode_for_gh_258.jpg" alt="布衣">
<p class="site-author-name" itemprop="name">布衣</p>
<p class="site-description motion-element" itemprop="description">分享后端go语言开发的各种架构设计源码分析与核心数据结构算法设计与云计算相关实践,涉及到kubernetes,云计算,微服务,系统设计,系统架构,设计模式,数据结构与算法,还有底层的操作系统实现,深度解读各种源码细节与精彩设计,加深对各种中间件系统的了解的个人技术博客</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">50</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories">
<span class="site-state-item-count">52</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">56</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">
©
<span itemprop="copyrightYear">2020</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">布衣</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Pisces
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/vendors/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/vendors/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/vendors/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/vendors/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/vendors/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/vendors/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.0.2"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.0.2"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.0.2"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.0.2"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.0.2"></script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
// Search DB path;
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
// monitor main search box;
function proceedsearch() {
$("body").append('<div class="popoverlay">').css('overflow', 'hidden');
$('.popup').toggle();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
$.ajax({
url: path,
dataType: "xml",
async: true,
success: function( xmlResponse ) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = $( "entry", xmlResponse ).map(function() {
return {
title: $( "title", this ).text(),
content: $("content",this).text(),
url: $( "url" , this).text()
};
}).get();
var $input = document.getElementById(search_id);
var $resultContent = document.getElementById(content_id);
$input.addEventListener('input', function(){
var matchcounts = 0;
var str='<ul class=\"search-result-list\">';
var keywords = this.value.trim().toLowerCase().split(/[\s\-]+/);
$resultContent.innerHTML = "";
if (this.value.trim().length > 1) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var content_index = [];
var data_title = data.title.trim().toLowerCase();
var data_content = data.content.trim().replace(/<[^>]+>/g,"").toLowerCase();
var data_url = data.url;
var index_title = -1;
var index_content = -1;
var first_occur = -1;
// only match artiles with not empty titles and contents
if(data_title != '') {
keywords.forEach(function(keyword, i) {
index_title = data_title.indexOf(keyword);
index_content = data_content.indexOf(keyword);
if( index_title >= 0 || index_content >= 0 ){
isMatch = true;
if (i == 0) {
first_occur = index_content;
}
}
});
}
// show search results
if (isMatch) {
matchcounts += 1;
str += "<li><a href='"+ data_url +"' class='search-result-title'>"+ data_title +"</a>";
var content = data.content.trim().replace(/<[^>]+>/g,"");
if (first_occur >= 0) {
// cut out 100 characters
var start = first_occur - 20;
var end = first_occur + 80;
if(start < 0){
start = 0;
}
if(start == 0){
end = 50;
}
if(end > content.length){
end = content.length;
}
var match_content = content.substring(start, end);
// highlight all keywords
keywords.forEach(function(keyword){
var regS = new RegExp(keyword, "gi");
match_content = match_content.replace(regS, "<b class=\"search-keyword\">"+keyword+"</b>");
});
str += "<p class=\"search-result\">" + match_content +"...</p>"
}
str += "</li>";
}
})};
str += "</ul>";
if (matchcounts == 0) { str = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>' }
if (keywords == "") { str = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>' }
$resultContent.innerHTML = str;
});
proceedsearch();
}
});}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched == false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(function(e){
$('.popup').hide();
$(".popoverlay").remove();
$('body').css('overflow', '');
});
$('.popup').click(function(e){
e.stopPropagation();
});
</script>
</body>
</html>
|
doc/doxygen/html/classSystemInterface_1_1null__vec__iterator.html | HaoZeke/espresso | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>ESPResSo 3.4-dev-1009-g69a2b86-dirty-git: SystemInterface::null_vec_iterator Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="logo_48x48.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">ESPResSo 3.4-dev-1009-g69a2b86-dirty-git
</div>
<div id="projectbrief">Extensible Simulation Package for Soft Matter Research</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classSystemInterface_1_1null__vec__iterator.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> </div>
<div class="headertitle">
<div class="title">SystemInterface::null_vec_iterator Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>></code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for SystemInterface::null_vec_iterator:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><iframe scrolling="no" frameborder="0" src="classSystemInterface_1_1null__vec__iterator__inherit__graph.svg" width="183" height="142"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png" alt="+"/> Collaboration diagram for SystemInterface::null_vec_iterator:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><iframe scrolling="no" frameborder="0" src="classSystemInterface_1_1null__vec__iterator__coll__graph.svg" width="183" height="142"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a5fe3c7a63d4585a3b3fa59c8a03b4044"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html#a5fe3c7a63d4585a3b3fa59c8a03b4044">operator*</a> () const </td></tr>
<tr class="separator:a5fe3c7a63d4585a3b3fa59c8a03b4044"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a16ffa85c9d165c4432aa629918a49c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html#a6a16ffa85c9d165c4432aa629918a49c">operator=</a> (const <a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > &rhs)</td></tr>
<tr class="separator:a6a16ffa85c9d165c4432aa629918a49c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5603cd456104705fda62219d22dd8f14"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html#a5603cd456104705fda62219d22dd8f14">operator==</a> (<a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > const &rhs) const </td></tr>
<tr class="separator:a5603cd456104705fda62219d22dd8f14"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba67ef18debab2de34265f2355b30741"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html#aba67ef18debab2de34265f2355b30741">operator!=</a> (<a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > const &rhs) const </td></tr>
<tr class="separator:aba67ef18debab2de34265f2355b30741"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe4d159ab5c70e0b981ebd38315ae5f8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html#afe4d159ab5c70e0b981ebd38315ae5f8">operator++</a> ()</td></tr>
<tr class="separator:afe4d159ab5c70e0b981ebd38315ae5f8"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock">
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00046">46</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aba67ef18debab2de34265f2355b30741"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool SystemInterface::null_vec_iterator::operator!= </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classSystemInterface_1_1const__iterator.html#a36d7617204af287804c84191d2106c7b">SystemInterface::const_iterator< Vector3 ></a>.</p>
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00051">51</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div>
</div>
<a class="anchor" id="a5fe3c7a63d4585a3b3fa59c8a03b4044"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> SystemInterface::null_vec_iterator::operator* </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classSystemInterface_1_1const__iterator.html#a1a6cd0b461c20dea763594648ff76cee">SystemInterface::const_iterator< Vector3 ></a>.</p>
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00048">48</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div>
</div>
<a class="anchor" id="afe4d159ab5c70e0b981ebd38315ae5f8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a><<a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a>>& SystemInterface::null_vec_iterator::operator++ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classSystemInterface_1_1const__iterator.html#aa01f24f0b18faeee8d874903094dfc29">SystemInterface::const_iterator< Vector3 ></a>.</p>
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00052">52</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div>
</div>
<a class="anchor" id="a6a16ffa85c9d165c4432aa629918a49c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a><<a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a>>& SystemInterface::null_vec_iterator::operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classSystemInterface_1_1const__iterator.html#a1bf02ba2dd9042cd756f9974ea3317a9">SystemInterface::const_iterator< Vector3 ></a>.</p>
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00049">49</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div>
</div>
<a class="anchor" id="a5603cd456104705fda62219d22dd8f14"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool SystemInterface::null_vec_iterator::operator== </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classSystemInterface_1_1const__iterator.html">const_iterator</a>< <a class="el" href="classSystemInterface.html#a23b5d56cabb388a06936ea4b2300823a">Vector3</a> > const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classSystemInterface_1_1const__iterator.html#accb9672755356307d7d4513609348e85">SystemInterface::const_iterator< Vector3 ></a>.</p>
<p>Definition at line <a class="el" href="SystemInterface_8hpp_source.html#l00050">50</a> of file <a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="SystemInterface_8hpp_source.html">SystemInterface.hpp</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="classSystemInterface.html">SystemInterface</a></li><li class="navelem"><a class="el" href="classSystemInterface_1_1null__vec__iterator.html">null_vec_iterator</a></li>
<li class="footer">Generated on Fri Jun 12 2015 16:19:43 for ESPResSo 3.4-dev-1009-g69a2b86-dirty-git by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
</ul>
</div>
</body>
</html>
|
categories/regex.html | isaaclacoba/tinman | <!DOCTYPE html>
<html prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article# " lang="es">
<head>
<meta charset="utf-8">
<meta name="description" content="Posts sobre regex">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Posts sobre regex | Tinman</title>
<link href="../assets/css/all-nocdn.css" rel="stylesheet" type="text/css">
<link rel="alternate" type="application/rss+xml" title="RSS" href="../rss.xml">
<link rel="canonical" href="http://isaaclacoba.github.io/tinman/categories/regex.html">
<!--[if lt IE 9]><script src="../assets/js/html5.js"></script><![endif]-->
<link rel="alternate" type="application/rss+xml" title="RSS for tag regex" href="regex.xml">
</head>
<body>
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
<!-- Menubar -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- This keeps the margins nice -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://isaaclacoba.github.io/tinman/">
<span id="blog-title">Tinman</span>
</a>
</div>
<!-- /.navbar-header -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li>
<a href="../archive.html">Archivo</a>
</li>
<li>
<a href="index.html">Tags</a>
</li>
<li>
<a href="../rss.xml">feed RSS</a>
</li>
<li>
<a href="https://bitbucket.org/arco_group/tfg.tinman">Repository</a>
</li>
<li>
<a href="../doxygen/index.html">Doxygen</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- End of Menubar -->
<div class="container" id="content">
<div class="body-content">
<!--Body content-->
<div class="row">
<article class="tagpage">
<header>
<h1>Posts sobre regex</h1>
<div class="metadata">
<p class="feedlink"><a href="regex.xml" type="application/rss+xml">feed RSS</a></p>
</div>
</header>
<ul class="postlist">
<li>
<a href="../posts/anadiendo-circuito/anadiendo-circuitos-al-juego.html" class="listtitle">Añadiendo circuitos al juego</a> <time class="listdate" datetime="2015-03-14T11:46:24+01:00" title="2015-03-14 11:46">2015-03-14 11:46</time>
</li>
</ul>
</article>
</div>
<!--End of body content-->
<footer>
Contents © 2015 <a href="mailto:isaac.lacoba@gmail.com">Isaac Lacoba Molina</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a>
</footer>
</div>
</div>
<script src="../assets/js/all-nocdn.js"></script>
<script src="../assets/js/colorbox-i18n/jquery.colorbox-es.js"></script>
<!-- Social buttons -->
<div id="addthisbox" class="addthis_toolbox addthis_peekaboo_style addthis_default_style addthis_label_style addthis_32x32_style">
<a class="addthis_button_more">Share</a>
<ul>
<li>
<a class="addthis_button_facebook"></a>
</li>
<li>
<a class="addthis_button_google_plusone_share"></a>
</li>
<li>
<a class="addthis_button_linkedin"></a>
</li>
<li>
<a class="addthis_button_twitter"></a>
</li>
</ul>
</div>
<script src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4f7088a56bb93798"></script>
<!-- End of social buttons -->
<script>jQuery("a.image-reference").colorbox({rel:"gal",maxWidth:"100%",maxHeight:"100%",scalePhotos:true});</script>
<!-- fancy dates -->
<script>
moment.locale("es");
fancydates(0, "YYYY-MM-DD HH:mm");
</script>
<!-- end fancy dates -->
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','UA-57580832-1', 'auto');ga('send', 'pageview');</script>
</body>
</html>
|
deps/seqan-library-2.0.0/share/doc/seqan/html/class_FunctorLowcase.html | fmaguire/KAT | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="class_functorlowcase" data-page="FunctorLowcase">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII" />
<title>FunctorLowcase - SeqAn API Documentation</title>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="lib/bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="lib/bootstrap-multiselect/css/bootstrap-multiselect.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="lib/bootstrap-multiselect/js/bootstrap-multiselect.js"></script>
<script type="text/javascript" charset="utf-8" src="lib/ZeroClipboard/ZeroClipboard.min.js"></script>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/common.less.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="js/less.min.js"></script>
<script type="text/javascript" charset="utf-8">
hasFrames = window.top.frames.main ? true : false;
relpath = '/';
docsPrefix = 'docs/yard';
listPrefix = 'list/docs/yard';
searchPrefix = 'search/docs/yard';
framesUrl = '/docs/yard/frames/file/README.md';
</script>
<style type="text/css">
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0044DD } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
<style>
.link.error
{
color: red;
}
</style>
<script type="text/javascript" charset="utf-8" src="lib/jquery-bbq/jquery.ba-bbq.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery.smooth-scroll.js"></script>
<script type="text/javascript" charset="utf-8" src="js/lang_entities.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
<script type="text/javascript" charset="utf-8" src="js/autocomplete.js"></script>
<script type="text/javascript" charset="utf-8" src="js/rubydoc_custom.js"></script>
<script type="text/javascript" charset="utf-8" src="js/common.js"></script>
</head>
<body>
<a id="top" name="top"></a>
<div id="content">
<h1 data-lang-entity="class" data-pimped="true"><a href="page_LanguageEntities.html#class">Class</a>
<span>FunctorLowcase<div><div>Functor that returns the lower case character for a given character.</div></div></span>
</h1>
<table class="overview">
</tr>
<tr>
<th>Defined in</th>
<td>
<seqan/modifier.h>
</td>
</tr>
<tr>
<th>Signature</th>
<td>
<code>template <typename TInType[, typename TResult]>
struct FunctorLowcase;
</code>
</td>
</tr>
</table>
<!-- Template Parameters -->
<div data-lang-entity-container="template_parameter">
<h2 data-lang-entity="template_parameter">Template Parameters</h2>
<table class="overview">
<tr>
<th><code><a href="#" data-lang-entity="template_parameter">TInType</a></code></th>
<td>The parameter/input type.</td>
</tr>
<tr>
<th><code><a href="#" data-lang-entity="template_parameter">TResult</a></code></th>
<td>The return/result type, defaults to TInType.</td>
</tr>
</table>
</div>
<!--
=============================================================================
Member and Interface Overview
=============================================================================
-->
<!-- Member Functions Overview -->
<div data-lang-entity-container="member_function">
<h2 data-lang-entity="member_function">Member Function Overview</h2>
<ul class="summary">
<li class="public">
<span class="summary_signature"><code><a href="#FunctorLowcase%3A%3Aoperator%28%29" title="#FunctorLowcase::operator() (interface function)" data-lang-entity="member_function">TResult FunctorLowcase::operator()(in);</a></code></span>
<span class="summary_desc"><div>Function call operator.</div></span>
</li>
</ul>
</div>
<!-- Interface Functions Overview -->
<!-- Member Typedefs Overview -->
<!-- Interface Metafunctions Overview -->
<!-- Member Variable Overview -->
<!--
=============================================================================
Detailed Description
=============================================================================
-->
<!-- @see -->
<!--
=============================================================================
Member and Interface Details
=============================================================================
-->
<!-- Member Functions Details -->
<div class="member_function_details" data-lang-entity-container="member_function">
<h2 data-lang-entity="member_function">Member Functions Detail</h2>
<div class="method_details first">
<h3 data-toc="hidden" id="FunctorLowcase::operator()" class="signature first" data-lang-entity="member_function">
<code>TResult FunctorLowcase::operator()(in);</code>
</h3>
</div>
<div class="docstring">
<div class="discussion">
<div>Function call operator.</div>
</div>
</div>
<h4>Parameters</h4>
<table class="overview">
<tr>
<th>
<code data-param-type="in" title="IN parameters are only read and not modified">in</code>
</th>
<td>The value to convert (<tt>in</tt>).</td>
</tr>
</table>
<h4>Returns</h4>
<table class="overview">
<tr>
<th><code>TResult</code></th>
<td>The converted value (<tt>TResult</tt>).</td>
</tr>
</table>
<div class="docstring">
<div class="discussion">
<div></div>
</div>
</div>
</div>
<!-- Interface Functions Details -->
<!-- Member Typedefs Details -->
<!-- Interface Metafunctions Details -->
<!-- Member Variable Details -->
<!--
=============================================================================
Footer / Debug
=============================================================================
-->
<div class="modal fade" id="doxSources" tabindex="-1" role="dialog" aria-labelledby="doxSourcesLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="doxSourcesLabel">Dox Sources</h4>
</div>
<div class="modal-body">
<pre>/*!
* @class FunctorLowcase
*
* @headerfile <seqan/modifier.h>
*
* @brief Functor that returns the lower case character for a given character.
*
* @signature template <typename TInType[, typename TResult]> struct
* FunctorLowcase;
*
* @tparam TInType The parameter/input type.
* @tparam TResult The return/result type, defaults to TInType.
*
* @fn FunctorLowcase::operator()
*
* @brief Function call operator.
*
* @signature TResult FunctorLowcase::operator()(in);
*
* @param[in] in The value to convert (<tt>in</tt>).
*
* @return TResult The converted value (<tt>TResult</tt>).
*/</pre>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html> |
docs/exercicios_aulas_bootstrap/fixandoElementosComAffix.html | douglasbelinato/watchguru | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body data-spy="scroll" data-target="#menu" data-offset="100">
<div class="container">
<h1>Fixando Elementos com Affix</h1>
<nav id="menu" data-spy="affix" data-offset="80">
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="#principal">Principal</a></li>
<li><a href="#perfil">Perfil</a></li>
<li><a href="#mensagem">Mensagem</a></li>
</ul>
</nav>
<div id="principal" class="col-sm-8 col-sm-offset-4 bloco">
principal
</div>
<div id="perfil" class="col-sm-8 col-sm-offset-4 bloco">
perfil
</div>
<div id="mensagem" class="col-sm-8 col-sm-offset-4 bloco">
mensagem
</div>
</div>
<script type="text/javascript" src="js/jquery-3.2.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html> |
NodeCore/test/cpptest/doc/html/index.html | fdb/nodebox-cpp | <html>
<head>
<title>CppTest - A C++ Unit Testing Framework</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#ffffff">
<table width="100%">
<tr>
<td width="40%" align="right" valign="center">
<a href="http://cpptest.sourceforge.net">CppTest home page</a>
</td>
<td></td>
<td width="40%" align="left" valign="center">
<a href="http://sourceforge.net/projects/cpptest">CppTest project page</a>
</td>
</tr>
</table>
<hr>
<!-- Generated by Doxygen 1.5.4 -->
<div class="tabs">
<ul>
<li class="current"><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul>
</div>
<h1>CppTest Documentation</h1>
<p>
<h3 align="center">Version 1.0.5 </h3><h2><a class="anchor" name="main_general">
General</a></h2>
CppTest is a portable and powerful, yet simple, unit testing framework for handling automated tests in C++. The focus lies on usability and extendability.<p>
Several output formats, including simple text output, compiler-like output and HTML, are supported and new ones are easily added. See <a class="el" href="tutorial.html#tutorial_screenshots">Screenshots</a> for examples of available output handlers.<h2><a class="anchor" name="main_documentation">
Documentation</a></h2>
This documentation contains all reference information needed to utilize the library. A quick start is given by the <a class="el" href="tutorial.html">Tutorial</a>.<p>
Project mailing lists are found on the project page, see below.<h2><a class="anchor" name="main_download">
Download</a></h2>
The latest release may always be found on the project page, see below.<h2><a class="anchor" name="main_web_sites">
Web sites</a></h2>
The CppTest project uses the following web sites:<ul>
<li>Home page: <a href="http://cpptest.sourceforge.net/">http://cpptest.sourceforge.net/</a></li><li>Project page: <a href="http://sourceforge.net/projects/cpptest/">http://sourceforge.net/projects/cpptest/</a></li></ul>
<h2><a class="anchor" name="main_portability">
Portability</a></h2>
CppTest has been successfully tested using the following compilers and platforms:<ul>
<li>GCC 4.2.3 (using Debian Etch)</li><li>GCC 3.2 (using RedHat Linux 8.0/9)</li><li>GCC 3.3.1 (under cygwin)</li><li>Microsoft Visual C++ 6.0/7.0/7.1 (using Windows)</li><li>Borland C++ 5.5.1 (using Windows)</li></ul>
<h2><a class="anchor" name="main_license">
License</a></h2>
CppTest is released under the GNU <a href="http://www.gnu.org/copyleft/lesser.html">Lesser General Public License</a>.<h2><a class="anchor" name="Author">
Author</a></h2>
<ul>
<li>Niklas Lundell <a href="mailto:nilu@users.sourceforge.net">(nilu@users.sourceforge.net)</a> </li></ul>
<hr>
<div align="center">
Supported by:
<br><br>
<img src="http://sourceforge.net/sflogo.php?group_id=77564"
width="88" height="31" border="0" alt="SourceForge Logo"></a>
</div>
</body>
</html>
|
html/RNAseq_abundance_scatterplot_2.html | bowhan/piPipes | </pre>
<script>
d3.selection.prototype.moveToFront = function () {
return this.each(function () {
this.parentNode.appendChild(this);
});
};
var fixIlleglName = function (x) {
return 'name_' + x.replace("(", "_").replace(")", "_").split(".").join("-"); // some repeats are (XX..X)n
// and some starts with a number
};
var raw = d3.select("#csvdata").text();
var alldata = d3.csv.parseRows(raw);
var sampleNames = alldata[0].splice(2, 5);
/* piPipes specific */
var data = [];
var parsed = alldata.splice(1).forEach(function (line) {
data.push({
transposon: fixIlleglName(line[0]),
type: line[1],
sample1: parseFloat(line[2]),
sample2: parseFloat(line[3]),
});
});
var buttonIds = [
"sense",
"antisense"
];
drawScatter(data);
function drawScatter(data) {
/* canvas */
var defaultOpacity = .75;
var defaultCircleSize = 5;
var canvasSize = {
width: 560,
height: 560
};
var margin = {
top: 20,
right: 20,
bottom: 80,
left: 80
};
var width = canvasSize.width - margin.left - margin.right;
var height = canvasSize.height - margin.top - margin.bottom;
var superscript = "⁰¹²³⁴⁵⁶⁷⁸⁹";
var formatPower = function (d) {
return (d + "").split("").map(function (c) {
return superscript[c];
}).join("");
};
var formatTick = function (d) {
return 10 + formatPower(Math.round(Math.log(d) / Math.LN10));
};
/* get the x/y lim */
var minValue = 1e20;
var maxValue = 0;
for (var i = 0; i < data.length; ++i) {
["sample1", "sample2"].forEach(function (lib) {
if (data[i][lib] > 0 && minValue > data[i][lib]) {
minValue = data[i][lib];
}
if (maxValue < data[i][lib]) {
maxValue = data[i][lib];
}
});
}
if (minValue == 0) minValue = 1;
var xyLim = [minValue, maxValue];
// console.log(xyLim);
/* X axis */
var xScale = d3.scale.log().nice()
.domain(xyLim)
.range([0, width]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(5, function (d) {
return 10
+ (d < 1 ? "\u207B" : 0)
+ formatPower(Math.round(Math.log(d) / Math.LN10));
})
;
/* y axis */
var yScale = d3.scale.log().nice()
.domain(xyLim)
.range([height, 0]);
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.ticks(5, function (d) {
return 10
+ (d < 1 ? "\u207B" : 0)
+ formatPower(Math.round(Math.log(d) / Math.LN10));
})
;
/* color */
var color = d3.scale.category10();
/* set up the canvas */
var svg = d3.select("body").append("svg")
.attr("width", canvasSize.width)
.attr("height", canvasSize.height)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/* show transposon name on mouseover */
var tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
/* x-axis */
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")") /* move to the bottom */
.call(xAxis)
.append("text")
.attr("class", "label")
.attr("x", width - 300)
.attr("y", 60)
.style("test-anchor", "end")
.text(sampleNames[0])
.attr("class", "xLabelName");
/* y axis */
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("class", "label")
.attr("transform", "rotate(-90)")
.attr("x", -300)
.attr("y", -70)
.attr("dy", ".71em")
.style("test-anchor", "end")
.text(sampleNames[1])
.attr("class", "yLabelName");
/* draw dots */
var xLib = "sample1";
var yLib = "sample2";
svg.selectAll("circle")
.data(data)
.enter()
.append("circle")
.attr("class", function (x) {
return "dot on " + x.type;
})
.attr("r", defaultCircleSize)
.attr("cx", function (d) {
return d[xLib] > 0 ? xScale(d[xLib]) : 0;
})
.attr("cy", function (d) {
return d[yLib] > 0 ? yScale(d[yLib]) : 0;
})
.style("fill", function (d) {
return color(d.type);
})
.style("opacity", defaultOpacity)
.on("mouseover", function (d) {
if (d3.select(this).style("opacity") > 0) {
d3.select(this)
.attr("r", defaultCircleSize * 3)
.style("opacity", 1)
.moveToFront();
tooltip.transition().style("opacity", 1);
tooltip.html(d.transposon
+ "<br> ("
+ Math.round(1000*d[yLib])/1000 + " / "
+ Math.round(1000*d[xLib])/1000 + " = "
+ Math.round(1e4 * d[yLib] / d[xLib]) / 1e4
+ ")<br>"
+ "<span class='italics'>" + d.type + "</span>")
.style("left", (d3.event.pageX + 30) + "px")
.style("top", (d3.event.pageY - 30) + "px");
}
})
.on("mouseout", function (d) {
if (d3.select(this).style("opacity") > 0) {
d3.select(this)
.attr("r", defaultCircleSize)
.style("opacity", defaultOpacity);
}
tooltip.transition().duration(500).style("opacity", 0);
});
/* draw legend */
var legendRecSize = 18;
var legend = svg.selectAll(".legend")
.data(color.domain())
.enter()
.append("g")
.attr("class", "legend")
.attr("transform", function (d, i) {
return "translate(0," + (i * (legendRecSize + 2) + 350) + ")";
});
/* draw legend colored rectangle */
legend.append("rect")
.attr("x", width - legendRecSize)
.attr("width", legendRecSize)
.attr("height", legendRecSize)
.style("fill", color)
.on("click", function (d) {
if (d3.select(this).style("opacity") == 0.2) {
/* turn back on */
d3.select(this).style("opacity", 1.);
d3.selectAll(".legend_text")
.filter(function (t) {
return d == t;
})
.style("opacity", 1.)
;
d3.selectAll("." + d)
.style("opacity", defaultOpacity);
} else {
/* turn off opacity */
d3.select(this).style("opacity", 0.2);
d3.selectAll(".legend_text")
.filter(function (t) {
return d == t;
})
.style("opacity", .2)
;
d3.selectAll("." + d)
.style("opacity", 0);
}
});
/* draw legend text */
legend.append("text")
.attr("class", "legend_text")
.attr("x", width - 20)
.attr("y", legendRecSize / 2)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function (d) {
return d;
});
}
</script>
</body>
</html>
|
jdk8en_us/docs/api/java/util/concurrent/class-use/ConcurrentLinkedQueue.html | DeanAaron/jdk8 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_11) on Mon Jun 16 17:36:05 PDT 2014 -->
<title>Uses of Class java.util.concurrent.ConcurrentLinkedQueue (Java Platform SE 8 )</title>
<meta name="date" content="2014-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class java.util.concurrent.ConcurrentLinkedQueue (Java Platform SE 8 )";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../java/util/concurrent/ConcurrentLinkedQueue.html" title="class in java.util.concurrent">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?java/util/concurrent/class-use/ConcurrentLinkedQueue.html" target="_top">Frames</a></li>
<li><a href="ConcurrentLinkedQueue.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class java.util.concurrent.ConcurrentLinkedQueue" class="title">Uses of Class<br>java.util.concurrent.ConcurrentLinkedQueue</h2>
</div>
<div class="classUseContainer">No usage of java.util.concurrent.ConcurrentLinkedQueue</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../java/util/concurrent/ConcurrentLinkedQueue.html" title="class in java.util.concurrent">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?java/util/concurrent/class-use/ConcurrentLinkedQueue.html" target="_top">Frames</a></li>
<li><a href="ConcurrentLinkedQueue.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
CIT360WEB/web/css/style.css | nelson-donald/CIT360 | /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Nov 6, 2017, 1:16:56 PM
Author : neldo
*/
body{
margin:0;
}
.cortana{
color:white;
padding: 5px;
background-color: black;
}
.news{
border:1px solid black;
border-radius: 4px;
padding: 5px;
margin:5px;
}
.news h1{
font-size: 1.2em;
}
.thumbnail{
max-height: 64px;
max-width: 64px;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.