text
stringlengths 2
1.05M
| repo_name
stringlengths 5
101
| path
stringlengths 4
991
| language
stringclasses 3
values | license
stringclasses 5
values | size
int64 2
1.05M
|
---|---|---|---|---|---|
<!DOCTYPE html>
<html dir="ltr" lang="ru">
<head>
<title>Приложение B - Список литературы - Rubinius</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content='ru' http-equiv='content-language'>
<meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'>
<link href='/' rel='home'>
<link href='/' rel='start'>
<link href='/doc/ru/appendix-a-glossary' rel='prev' title='Приложение A - Глоссарий'>
<link href='/doc/ru/terms-index' rel='next' title='Список терминов'>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]-->
<script src="/javascripts/jquery-1.3.2.js"></script>
<script src="/javascripts/paging_keys.js"></script>
<script src="/javascripts/application.js"></script>
<style>article, aside, dialog, figure, footer, header, hgroup, menu, nav, section { display: block; }</style>
<link href="/stylesheets/blueprint/screen.css" media="screen" rel="stylesheet" />
<link href="/stylesheets/application.css" media="screen" rel="stylesheet" />
<link href="/stylesheets/blueprint/print.css" media="print" rel="stylesheet" />
<!--[if IE]><link href="/stylesheets/blueprint/ie.css" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
<!--[if IE]><link href="/stylesheets/ie.css" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
<link href="/stylesheets/pygments.css" media="screen" rel="stylesheet" />
<link href="/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="/images/apple-touch-icon.png" rel="apple-touch-icon" type="image/png" />
<link href="/images/apple-touch-icon.png" rel="apple-touch-icon" type="image/png" sizes="72x72" />
<link href="/images/apple-touch-icon.png" rel="apple-touch-icon" type="image/png" sizes="114x114" />
</head>
<body>
<div class='container'>
<div class='span-21 doc_menu'>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a id="blog" href="/blog">Blog</a></li>
<li><a id="documentation" href="/doc/en">Documentation</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/roadmap">Roadmap</a></li>
<li><a href="/releases">Releases</a></li>
</ul>
</nav>
</header>
</div>
<div class='span-3 last'>
<div id='version'>
<a href="/releases/1.2.4">1.2.4</a>
</div>
</div>
</div>
<div class="container languages">
<nav>
<span class="label">Языки:</span>
<ul>
<li><a href="/doc/de/appendix-b-reading-list/"
>de</a></li>
<li><a href="/doc/en/appendix-b-reading-list/"
>en</a></li>
<li><a href="/doc/es/appendix-b-reading-list/"
>es</a></li>
<li><a href="/doc/fr/appendix-b-reading-list/"
>fr</a></li>
<li><a href="/doc/ja/appendix-b-reading-list/"
>ja</a></li>
<li><a href="/doc/pl/appendix-b-reading-list/"
>pl</a></li>
<li><a href="/doc/pt-br/appendix-b-reading-list/"
>pt-br</a></li>
<li><a href="/doc/ru/appendix-b-reading-list/"
class="current"
>ru</a></li>
</ul>
</nav>
</div>
<div class="container doc_page_nav">
<span class="label">Назад:</span>
<a href="/doc/ru/appendix-a-glossary">Приложение A - Глоссарий</a>
<span class="label">Выше:</span>
<a href="/doc/ru/">Содержание</a>
<span class="label">Вперед:</span>
<a href="/doc/ru/terms-index">Список терминов</a>
</div>
<div class="container documentation">
<h2>Приложение B - Список литературы</h2>
<div class="review">
<p>This topic has missing or partial documentation. Please help us improve it.</p>
<p>
See <a href="/doc/ru/how-to/write-documentation">How-To - Write Documentation</a>
</p>
</div>
<p>Building virtual machines in general and programming language implementations
in particular requires some knowledge. Rubinius’ goal is to lower the barrier
by keeping as much as possible in Ruby but to hack on garbage collector you
have to understand what’ going on behind the curtains.</p>
<p>This page contains references to books, online lectures, blog posts and any
other publications you may find useful for working on Rubinius.</p>
<p>NOTE that some of these links refer to outdated information about Rubinius.</p>
<h2 id="virtual-machine">Virtual machine</h2>
<ul>
<li><a href="http://tinyurl.com/3a2pdq">Smalltalk-80: language and its implementation</a>
by Goldberg, Robson, Harrison (aka “The Blue Book”), implementation
chapters from part IV are <a href="http://tinyurl.com/6zlsd">available online</a></li>
<li><a href="http://tinyurl.com/3ydkqg">Virtual machines</a> by Iain D. Craig</li>
<li>Great posts by Adam Gardiner: <a href="http://tinyurl.com/35y2jh">introduction</a>,
<a href="http://tinyurl.com/34c6e8">How send sites work</a></li>
</ul>
<h2 id="garbage-collection">Garbage collection</h2>
<ul>
<li><a href="http://tinyurl.com/3dygmo">Garbage Collection: Algorithms for Automatic Dynamic Memory
Management</a> by Richard Jones</li>
<li><a href="http://tinyurl.com/2mhek4">Garbage collection lectures</a></li>
</ul>
<h2 id="primitive-methods">Primitive methods</h2>
<ul>
<li><a href="http://talklikeaduck.denhaven2.com/articles/2007/06/04/ruby-extensions-vs-smalltalk-primitives">Ruby extensions and Smalltalk
primitives</a></li>
<li><a href="http://www.fit.vutbr.cz/study/courses/OMP/public/software/sqcdrom2/Tutorials/SqOnlineBook_(SOB)/englisch/sqk/sqk00083.htm">Guide to Squeak
primitives</a></li>
</ul>
<h2 id="ffi">FFI</h2>
<ul>
<li><a href="http://redartisan.com/2007/10/11/rubinius-coding">Implementing File#link using
FFI</a></li>
<li><a href="http://blog.segment7.net/articles/2008/01/15/rubinius-foreign-function-interface">Rubinius’ foreign function
interface</a></li>
</ul>
</div>
<div class="container doc_page_nav">
<span class="label">Назад:</span>
<a href="/doc/ru/appendix-a-glossary">Приложение A - Глоссарий</a>
<span class="label">Выше:</span>
<a href="/doc/ru/">Содержание</a>
<span class="label">Вперед:</span>
<a href="/doc/ru/terms-index">Список терминов</a>
</div>
<div class="container">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'rubinius';
var disqus_identifier = '/doc/ru/appendix-b-reading-list/';
var disqus_url = 'http://rubini.us/doc/ru/appendix-b-reading-list/';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<footer>
<div class='container'>
<nav>
<ul>
<li><a rel="external" href="http://twitter.com/rubinius">Follow Rubinius on Twitter</a></li>
<li><a rel="external" href="http://github.com/rubinius/rubinius">Fork Rubinius on github</a></li>
<li><a rel="external" href="http://engineyard.com">An Engine Yard project</a></li>
</ul>
</nav>
</div>
</footer>
<script>
var _gaq=[['_setAccount','UA-12328521-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>
| takano32/rubinius | web/_site/doc/ru/appendix-b-reading-list/index.html | HTML | bsd-3-clause | 8,417 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../../../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../../../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../../../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../../../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../../../_static/javascripts/modernizr.js"></script>
<title>statsmodels.graphics.agreement — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../../../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../../../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../../../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../../../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../../../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../../../_static/stylesheets/deprecation.css">
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/material.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/graphviz.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/plot_directive.css" />
<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js"></script>
<script src="../../../_static/jquery.js"></script>
<script src="../../../_static/underscore.js"></script>
<script src="../../../_static/doctools.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<link rel="shortcut icon" href="../../../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../../../about.html" />
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#_modules/statsmodels/graphics/agreement" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../../../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../../../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels v0.14.0.dev0 (+325)</span>
<span class="md-header-nav__topic"> statsmodels.graphics.agreement </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../../../search.html" method="get" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
<script src="../../../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../../../../versions-v2.json",
target_loc = "../../../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../../index.html" class="md-tabs__link">Module code</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../../../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../../../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../../../index.html"
title="statsmodels">statsmodels v0.14.0.dev0 (+325)</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../../../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../../../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../../../user-guide.html" class="md-nav__link">User Guide</a>
</li>
<li class="md-nav__item">
<a href="../../../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../../../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../../../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../../../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../../../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="modules-statsmodels-graphics-agreement--page-root">Source code for statsmodels.graphics.agreement</h1><div class="highlight"><pre>
<span></span><span class="sd">'''</span>
<span class="sd">Bland-Altman mean-difference plots</span>
<span class="sd">Author: Joses Ho</span>
<span class="sd">License: BSD-3</span>
<span class="sd">'''</span>
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">from</span> <span class="nn">.</span> <span class="kn">import</span> <span class="n">utils</span>
<div class="viewcode-block" id="mean_diff_plot"><a class="viewcode-back" href="../../../generated/statsmodels.graphics.agreement.mean_diff_plot.html#statsmodels.graphics.agreement.mean_diff_plot">[docs]</a><span class="k">def</span> <span class="nf">mean_diff_plot</span><span class="p">(</span><span class="n">m1</span><span class="p">,</span> <span class="n">m2</span><span class="p">,</span> <span class="n">sd_limit</span><span class="o">=</span><span class="mf">1.96</span><span class="p">,</span> <span class="n">ax</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">scatter_kwds</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">mean_line_kwds</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">limit_lines_kwds</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Construct a Tukey/Bland-Altman Mean Difference Plot.</span>
<span class="sd"> Tukey's Mean Difference Plot (also known as a Bland-Altman plot) is a</span>
<span class="sd"> graphical method to analyze the differences between two methods of</span>
<span class="sd"> measurement. The mean of the measures is plotted against their difference.</span>
<span class="sd"> For more information see</span>
<span class="sd"> https://en.wikipedia.org/wiki/Bland-Altman_plot</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> m1 : array_like</span>
<span class="sd"> A 1-d array.</span>
<span class="sd"> m2 : array_like</span>
<span class="sd"> A 1-d array.</span>
<span class="sd"> sd_limit : float</span>
<span class="sd"> The limit of agreements expressed in terms of the standard deviation of</span>
<span class="sd"> the differences. If `md` is the mean of the differences, and `sd` is</span>
<span class="sd"> the standard deviation of those differences, then the limits of</span>
<span class="sd"> agreement that will be plotted are md +/- sd_limit * sd.</span>
<span class="sd"> The default of 1.96 will produce 95% confidence intervals for the means</span>
<span class="sd"> of the differences. If sd_limit = 0, no limits will be plotted, and</span>
<span class="sd"> the ylimit of the plot defaults to 3 standard deviations on either</span>
<span class="sd"> side of the mean.</span>
<span class="sd"> ax : AxesSubplot</span>
<span class="sd"> If `ax` is None, then a figure is created. If an axis instance is</span>
<span class="sd"> given, the mean difference plot is drawn on the axis.</span>
<span class="sd"> scatter_kwds : dict</span>
<span class="sd"> Options to to style the scatter plot. Accepts any keywords for the</span>
<span class="sd"> matplotlib Axes.scatter plotting method</span>
<span class="sd"> mean_line_kwds : dict</span>
<span class="sd"> Options to to style the scatter plot. Accepts any keywords for the</span>
<span class="sd"> matplotlib Axes.axhline plotting method</span>
<span class="sd"> limit_lines_kwds : dict</span>
<span class="sd"> Options to to style the scatter plot. Accepts any keywords for the</span>
<span class="sd"> matplotlib Axes.axhline plotting method</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> Figure</span>
<span class="sd"> If `ax` is None, the created figure. Otherwise the figure to which</span>
<span class="sd"> `ax` is connected.</span>
<span class="sd"> References</span>
<span class="sd"> ----------</span>
<span class="sd"> Bland JM, Altman DG (1986). "Statistical methods for assessing agreement</span>
<span class="sd"> between two methods of clinical measurement"</span>
<span class="sd"> Examples</span>
<span class="sd"> --------</span>
<span class="sd"> Load relevant libraries.</span>
<span class="sd"> >>> import statsmodels.api as sm</span>
<span class="sd"> >>> import numpy as np</span>
<span class="sd"> >>> import matplotlib.pyplot as plt</span>
<span class="sd"> Making a mean difference plot.</span>
<span class="sd"> >>> # Seed the random number generator.</span>
<span class="sd"> >>> # This ensures that the results below are reproducible.</span>
<span class="sd"> >>> np.random.seed(9999)</span>
<span class="sd"> >>> m1 = np.random.random(20)</span>
<span class="sd"> >>> m2 = np.random.random(20)</span>
<span class="sd"> >>> f, ax = plt.subplots(1, figsize = (8,5))</span>
<span class="sd"> >>> sm.graphics.mean_diff_plot(m1, m2, ax = ax)</span>
<span class="sd"> >>> plt.show()</span>
<span class="sd"> .. plot:: plots/graphics-mean_diff_plot.py</span>
<span class="sd"> """</span>
<span class="n">fig</span><span class="p">,</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">utils</span><span class="o">.</span><span class="n">create_mpl_ax</span><span class="p">(</span><span class="n">ax</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">m1</span><span class="p">)</span> <span class="o">!=</span> <span class="nb">len</span><span class="p">(</span><span class="n">m2</span><span class="p">):</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">'m1 does not have the same length as m2.'</span><span class="p">)</span>
<span class="k">if</span> <span class="n">sd_limit</span> <span class="o"><</span> <span class="mi">0</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">'sd_limit (</span><span class="si">{}</span><span class="s1">) is less than 0.'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">sd_limit</span><span class="p">))</span>
<span class="n">means</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">([</span><span class="n">m1</span><span class="p">,</span> <span class="n">m2</span><span class="p">],</span> <span class="n">axis</span><span class="o">=</span><span class="mi">0</span><span class="p">)</span>
<span class="n">diffs</span> <span class="o">=</span> <span class="n">m1</span> <span class="o">-</span> <span class="n">m2</span>
<span class="n">mean_diff</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">(</span><span class="n">diffs</span><span class="p">)</span>
<span class="n">std_diff</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">std</span><span class="p">(</span><span class="n">diffs</span><span class="p">,</span> <span class="n">axis</span><span class="o">=</span><span class="mi">0</span><span class="p">)</span>
<span class="n">scatter_kwds</span> <span class="o">=</span> <span class="n">scatter_kwds</span> <span class="ow">or</span> <span class="p">{}</span>
<span class="k">if</span> <span class="s1">'s'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">scatter_kwds</span><span class="p">:</span>
<span class="n">scatter_kwds</span><span class="p">[</span><span class="s1">'s'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">20</span>
<span class="n">mean_line_kwds</span> <span class="o">=</span> <span class="n">mean_line_kwds</span> <span class="ow">or</span> <span class="p">{}</span>
<span class="n">limit_lines_kwds</span> <span class="o">=</span> <span class="n">limit_lines_kwds</span> <span class="ow">or</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">kwds</span> <span class="ow">in</span> <span class="p">[</span><span class="n">mean_line_kwds</span><span class="p">,</span> <span class="n">limit_lines_kwds</span><span class="p">]:</span>
<span class="k">if</span> <span class="s1">'color'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">kwds</span><span class="p">:</span>
<span class="n">kwds</span><span class="p">[</span><span class="s1">'color'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'gray'</span>
<span class="k">if</span> <span class="s1">'linewidth'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">kwds</span><span class="p">:</span>
<span class="n">kwds</span><span class="p">[</span><span class="s1">'linewidth'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">1</span>
<span class="k">if</span> <span class="s1">'linestyle'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">mean_line_kwds</span><span class="p">:</span>
<span class="n">kwds</span><span class="p">[</span><span class="s1">'linestyle'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'--'</span>
<span class="k">if</span> <span class="s1">'linestyle'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">limit_lines_kwds</span><span class="p">:</span>
<span class="n">kwds</span><span class="p">[</span><span class="s1">'linestyle'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">':'</span>
<span class="n">ax</span><span class="o">.</span><span class="n">scatter</span><span class="p">(</span><span class="n">means</span><span class="p">,</span> <span class="n">diffs</span><span class="p">,</span> <span class="o">**</span><span class="n">scatter_kwds</span><span class="p">)</span> <span class="c1"># Plot the means against the diffs.</span>
<span class="n">ax</span><span class="o">.</span><span class="n">axhline</span><span class="p">(</span><span class="n">mean_diff</span><span class="p">,</span> <span class="o">**</span><span class="n">mean_line_kwds</span><span class="p">)</span> <span class="c1"># draw mean line.</span>
<span class="c1"># Annotate mean line with mean difference.</span>
<span class="n">ax</span><span class="o">.</span><span class="n">annotate</span><span class="p">(</span><span class="s1">'mean diff:</span><span class="se">\n</span><span class="si">{}</span><span class="s1">'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="n">mean_diff</span><span class="p">,</span> <span class="mi">2</span><span class="p">)),</span>
<span class="n">xy</span><span class="o">=</span><span class="p">(</span><span class="mf">0.99</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">),</span>
<span class="n">horizontalalignment</span><span class="o">=</span><span class="s1">'right'</span><span class="p">,</span>
<span class="n">verticalalignment</span><span class="o">=</span><span class="s1">'center'</span><span class="p">,</span>
<span class="n">fontsize</span><span class="o">=</span><span class="mi">14</span><span class="p">,</span>
<span class="n">xycoords</span><span class="o">=</span><span class="s1">'axes fraction'</span><span class="p">)</span>
<span class="k">if</span> <span class="n">sd_limit</span> <span class="o">></span> <span class="mi">0</span><span class="p">:</span>
<span class="n">half_ylim</span> <span class="o">=</span> <span class="p">(</span><span class="mf">1.5</span> <span class="o">*</span> <span class="n">sd_limit</span><span class="p">)</span> <span class="o">*</span> <span class="n">std_diff</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_ylim</span><span class="p">(</span><span class="n">mean_diff</span> <span class="o">-</span> <span class="n">half_ylim</span><span class="p">,</span>
<span class="n">mean_diff</span> <span class="o">+</span> <span class="n">half_ylim</span><span class="p">)</span>
<span class="n">limit_of_agreement</span> <span class="o">=</span> <span class="n">sd_limit</span> <span class="o">*</span> <span class="n">std_diff</span>
<span class="n">lower</span> <span class="o">=</span> <span class="n">mean_diff</span> <span class="o">-</span> <span class="n">limit_of_agreement</span>
<span class="n">upper</span> <span class="o">=</span> <span class="n">mean_diff</span> <span class="o">+</span> <span class="n">limit_of_agreement</span>
<span class="k">for</span> <span class="n">j</span><span class="p">,</span> <span class="n">lim</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">([</span><span class="n">lower</span><span class="p">,</span> <span class="n">upper</span><span class="p">]):</span>
<span class="n">ax</span><span class="o">.</span><span class="n">axhline</span><span class="p">(</span><span class="n">lim</span><span class="p">,</span> <span class="o">**</span><span class="n">limit_lines_kwds</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">annotate</span><span class="p">(</span><span class="sa">f</span><span class="s1">'-</span><span class="si">{</span><span class="n">sd_limit</span><span class="si">}</span><span class="s1"> SD: </span><span class="si">{</span><span class="n">lower</span><span class="si">:</span><span class="s1">0.2g</span><span class="si">}</span><span class="s1">'</span><span class="p">,</span>
<span class="n">xy</span><span class="o">=</span><span class="p">(</span><span class="mf">0.99</span><span class="p">,</span> <span class="mf">0.07</span><span class="p">),</span>
<span class="n">horizontalalignment</span><span class="o">=</span><span class="s1">'right'</span><span class="p">,</span>
<span class="n">verticalalignment</span><span class="o">=</span><span class="s1">'bottom'</span><span class="p">,</span>
<span class="n">fontsize</span><span class="o">=</span><span class="mi">14</span><span class="p">,</span>
<span class="n">xycoords</span><span class="o">=</span><span class="s1">'axes fraction'</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">annotate</span><span class="p">(</span><span class="sa">f</span><span class="s1">'+</span><span class="si">{</span><span class="n">sd_limit</span><span class="si">}</span><span class="s1"> SD: </span><span class="si">{</span><span class="n">upper</span><span class="si">:</span><span class="s1">0.2g</span><span class="si">}</span><span class="s1">'</span><span class="p">,</span>
<span class="n">xy</span><span class="o">=</span><span class="p">(</span><span class="mf">0.99</span><span class="p">,</span> <span class="mf">0.92</span><span class="p">),</span>
<span class="n">horizontalalignment</span><span class="o">=</span><span class="s1">'right'</span><span class="p">,</span>
<span class="n">fontsize</span><span class="o">=</span><span class="mi">14</span><span class="p">,</span>
<span class="n">xycoords</span><span class="o">=</span><span class="s1">'axes fraction'</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">sd_limit</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">half_ylim</span> <span class="o">=</span> <span class="mi">3</span> <span class="o">*</span> <span class="n">std_diff</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_ylim</span><span class="p">(</span><span class="n">mean_diff</span> <span class="o">-</span> <span class="n">half_ylim</span><span class="p">,</span>
<span class="n">mean_diff</span> <span class="o">+</span> <span class="n">half_ylim</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_ylabel</span><span class="p">(</span><span class="s1">'Difference'</span><span class="p">,</span> <span class="n">fontsize</span><span class="o">=</span><span class="mi">15</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_xlabel</span><span class="p">(</span><span class="s1">'Means'</span><span class="p">,</span> <span class="n">fontsize</span><span class="o">=</span><span class="mi">15</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">tick_params</span><span class="p">(</span><span class="n">labelsize</span><span class="o">=</span><span class="mi">13</span><span class="p">)</span>
<span class="n">fig</span><span class="o">.</span><span class="n">tight_layout</span><span class="p">()</span>
<span class="k">return</span> <span class="n">fig</span></div>
</pre></div>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Feb 23, 2022.
<br/>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../../../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | devel/_modules/statsmodels/graphics/agreement.html | HTML | bsd-3-clause | 30,684 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Street View Riding Simulation</title>
<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-66144602-1', 'auto');
ga('send', 'pageview');
</script>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
-moz-transform: scale(1.0, 1.0);
zoom: 1.0;
zoom: 100%;
}
#div_config {
position: relative;
width: 100%;
height: 100%;
}
#div_map_canvas {
position: relative;
width: 100%;
height: 100%;
}
#div_panorama {
position: relative;
width: 100%;
height: 100%;
}
/* http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
input[type=range] {
/*removes default webkit styles*/
-webkit-appearance: none;
/*fix for FF unable to apply focus style bug */
border: 1px solid white;
/*required for proper track sizing in FF*/
width: 300px;
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 14px;
background: #ddd;
border: none;
border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 24px;
width: 24px;
border-radius: 25%;
background: goldenrod;
margin-top: -4px;
}
input[type=range]:focus {
outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #ccc;
}
input[type=range]::-moz-range-track {
width: 300px;
height: 24px;
background: #ddd;
border: none;
border-radius: 1px;
}
input[type=range]::-moz-range-thumb {
border: none;
height: 26px;
width: 16px;
border-radius: 50%;
background: goldenrod;
}
/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
outline: 1px solid white;
outline-offset: -1px;
}
input[type=range]::-ms-track {
width: 300px;
height: 14px;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
background: transparent;
/*leave room for the larger thumb to overflow with a transparent border */
border-color: transparent;
border-width: 6px 0;
/*remove default tick marks*/
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: #777;
border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
background: #ddd;
border-radius: 10px;
}
input[type=range]::-ms-thumb {
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: goldenrod;
}
input[type=range]:focus::-ms-fill-lower {
background: #888;
}
input[type=range]:focus::-ms-fill-upper {
background: #ccc;
}
.pac-item-query { font-size: 28px; ; line-height: 200%; }
.pac-item { font-size: 28px; ; line-height: 200%; }
.pac-item-container { font-size: 28px; line-height: 200%; }
.pac-item-matched { font-size: 28px; ; line-height: 200%; }
</style>
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false&libraries=places"></script>
<script type="text/javascript" src="https://gisgraphy.googlecode.com/svn-history/r67/trunk/gisgraphy/src/main/webapp/scripts/v3_epoly.js"></script>
<!-- <script type="text/javascript" src="http://www.geocodezip.com/scripts/v3_epoly.js"></script> -->
<script>
var startup_done = false;
var map;
var panorama;
var map_is_shown;
var polyline = undefined;
var location_from;
var location_to;
var timer_animate;
var dist_route;
var step; // metres
var interval; // milliseconds
var curr_dist;
var cb_move_to_dist = undefined;
var directions_display = undefined;
var curr_layout;
function initialize() {
var input_from = document.getElementById("id_route1_from");
var autocomplete_from = new google.maps.places.Autocomplete(input_from);
// autocomplete_from.bindTo('bounds', map);
var input_to = document.getElementById("id_route1_to");
var autocomplete_to = new google.maps.places.Autocomplete(input_to);
// autocomplete_to.bindTo('bounds', map);
document.getElementById('id_route1_from').onchange = cb_route_from_or_to_changed;
document.getElementById('id_route1_to').onchange = cb_route_from_or_to_changed;
} // initialize
function startup( ) {
var home = new google.maps.LatLng( 35.733435, -78.907684 );
var panorama_options = {
position: home,
pov: {
heading: 34,
pitch: 10
},
enableCloseButton: false,
linksControl: false,
panControl: false,
zoomControl: false,
clickToGo: false,
disableDoubleClickZoom: true,
imageDateControl: false
};
panorama = new google.maps.StreetViewPanorama( document.getElementById('div_panorama'), panorama_options );
var map_options = {
center: home,
zoom: 14,
overviewMapControl: false,
streetView: panorama
};
map = new google.maps.Map( document.getElementById('div_map_canvas'), map_options );
map.setStreetView( panorama );
google.maps.event.addListener( map, "click", function( evt ) {
cb_map_click( evt );
});
document.getElementById('div_panorama').onclick = cb_panorama_click;
map_is_shown = false;
var previous_orientation = window.orientation;
var check_orientation = function() {
console.log( "Checking orientation" );
// alert( window.orientation );
if (window.orientation !== previous_orientation ) {
previous_orientation = window.orientation;
console.log( "Orientation changed" );
var height_btn = "32px";
if ( (window.orientation == -90) || (window.orientation == 90) ) {
height_btn = "32px";
}
else if ( window.orientation == 0 ) {
height_btn = "92px";
}
document.getElementById("id_btn_start").style.height = height_btn;
document.getElementById("id_btn_layout").style.height = height_btn;
document.getElementById("id_btn_pause").style.height = height_btn;
document.getElementById("id_btn_stop").style.height = height_btn;
google.maps.event.trigger( panorama, 'resize' );
}
};
window.addEventListener("resize", check_orientation, false);
window.addEventListener("orientationchange", check_orientation, false);
}
function cb_animate( d ) {
curr_dist = d;
if ( d > dist_route ) {
console.log( "Route is done" );
return;
}
var p = polyline.GetPointAtDistance( d );
if ( !map.getBounds().contains( p ) )
map.panTo( p );
var bearing = polyline.Bearing( polyline.GetIndexAtDistance(d) );
console.log( "d=" + d + " - " + polyline.GetIndexAtDistance(d) + " / " + bearing);
panorama.setPosition( new google.maps.LatLng( p.G, p.K ) );
panorama.setPov({
heading: bearing,
pitch: 1
});
if ( step > 0 )
timer_animate = setTimeout( "cb_animate("+(d+step)+")", interval );
// Update route slider
document.getElementById("id_input_route").value = d;
}
function start_driving( ) {
if ( timer_animate )
clearTimeout( timer_animate );
dist_route = polyline.Distance();
map.setCenter( polyline.getPath().getAt(0) );
var p = polyline.GetPointAtDistance( 50 );
if ( !map.getBounds().contains( p ) )
map.panTo( p );
timer_animate = setTimeout("cb_animate(50)",250);
}
function enter_full_screen( ) {
var d = document.getElementById("id_body");
if (d.requestFullscreen) {
d.requestFullscreen();
} else if (d.webkitRequestFullscreen) {
d.webkitRequestFullscreen();
} else if (d.mozRequestFullScreen) {
d.mozRequestFullScreen();
} else if (d.msRequestFullscreen) {
d.msRequestFullscreen();
}
}
function exit_full_screen( ) {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.webkitExitFullscreen) {
document.webkitExitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
}
}
function do_start( ) {
enter_full_screen( );
if ( !startup_done ) {
startup_done = true;
startup( );
}
if ( directions_display != undefined ) {
console.log( "Delete current route" )
directions_display.setMap( null );
directions_display = undefined;
if ( polyline != undefined ) {
polyline.setMap( null );
polyline = undefined;
}
}
map_is_shown = false;
step = parseInt( document.getElementById("id_input_meters").value );
interval = parseInt( document.getElementById("id_input_interval").value );
console.log( "step=" + step + " interval=" + interval );
start_location = document.getElementById('id_route1_from').value;
console.log( "from = " + start_location );
end_location = document.getElementById('id_route1_to').value;
console.log( "to = " + end_location );
var no_hwy = document.getElementById("id_check_no_hwy").checked
var no_toll = document.getElementById("id_check_no_toll").checked
var rendererOptions = {
map: map,
suppressMarkers : true,
preserveViewport: true
}
var directions_service = new google.maps.DirectionsService( );
var travelMode = google.maps.DirectionsTravelMode.DRIVING;
var request = {
origin: start_location,
destination: end_location,
travelMode: travelMode,
optimizeWaypoints: true,
avoidHighways: no_hwy,
avoidTolls: no_toll
};
directions_service.route( request, cb_make_route( ) );
function cb_make_route( ) {
return function( response, status ) {
if ( status == google.maps.DirectionsStatus.OK ) {
var bounds = new google.maps.LatLngBounds();
var route = response.routes[0];
location_from = new Object();
location_to = new Object();
polyline = new google.maps.Polyline({
path: [],
strokeColor: '#FFFF00',
strokeWeight: 3
});
// For each route, display summary information.
var path = response.routes[0].overview_path;
var legs = response.routes[0].legs;
directions_display = new google.maps.DirectionsRenderer( rendererOptions );
directions_display.setMap( map );
directions_display.setDirections( response );
// Markers
var dist_meters = 0;
var duration_secs = 0;
for ( i = 0; i < legs.length; i++) {
dist_meters += legs[i].distance.value;
duration_secs += legs[i].duration.value;
console.log( i + ": m=" + legs[i].distance.value + " secs=" + legs[i].duration.value );
if ( i == 0 ) {
location_from.latlng = legs[i].start_location;
location_from.address = legs[i].start_address;
}
location_to.latlng = legs[i].end_location;
location_to.address = legs[i].end_address;
var steps = legs[i].steps;
for ( j = 0; j < steps.length; j++) {
var nextSegment = steps[j].path;
var nextSegment = steps[j].path;
for ( k=0;k < nextSegment.length;k++) {
polyline.getPath().push(nextSegment[k]);
bounds.extend(nextSegment[k]);
}
}
}
show_route_distance_duration( dist_meters, duration_secs );
}
polyline.setMap( map );
map.fitBounds( bounds );
start_driving( );
}
} // cb_make_route
document.getElementById("tr_config").style.display = "None";
document.getElementById("td_map_canvas").style.display = "";
document.getElementById("tr_controls").style.display = "";
document.getElementById("id_btn_layout").disabled = false;
document.getElementById("id_btn_pause").disabled = false;
document.getElementById("id_btn_stop").disabled = false;
curr_layout = 1;
// alt_map_panorama_full_screen();
} // do_start
function do_layout( ) {
if ( curr_layout == 1 ) {
document.getElementById("td_map_canvas").style.display = "";
document.getElementById("td_panorama").style.display = "";
document.getElementById("td_map_canvas").style.width = "50%";
document.getElementById("td_panorama").style.width = "50%";
google.maps.event.trigger( map, 'resize' );
google.maps.event.trigger( panorama, 'resize' );
curr_layout = 2;
}
else if ( curr_layout == 2 ) {
document.getElementById("td_map_canvas").style.display = "";
document.getElementById("td_panorama").style.display = "None";
document.getElementById("td_map_canvas").style.width = "100%";
document.getElementById("td_panorama").style.width = "100%";
google.maps.event.trigger( map, 'resize' );
google.maps.event.trigger( panorama, 'resize' );
curr_layout = 1;
}
google.maps.event.trigger( panorama, 'resize' );
google.maps.event.trigger( map, 'resize' );
}
function do_pause( ) {
if ( document.getElementById("id_label_pause").innerHTML == "Pause" ) {
clearTimeout( timer_animate );
timer_animate = undefined;
document.getElementById("id_label_pause").innerHTML = "Continue";
console.log( "curr_dist=" + curr_dist );
}
else if ( document.getElementById("id_label_pause").innerHTML == "Continue" ) {
document.getElementById("id_label_pause").innerHTML = "Pause";
timer_animate = setTimeout( "cb_animate(" + curr_dist + ")", interval );
}
}
function do_stop( ) {
exit_full_screen( );
document.getElementById('id_body').style.MozTransform = "scale(1.0, 1.0)";
document.getElementById('id_body').style.zoom = "100%";
document.getElementById('id_body').style.zoom = "1.0";
clearTimeout( timer_animate );
timer_animate = undefined;
document.getElementById("id_btn_start").disabled = false;
document.getElementById("id_label_pause").innerHTML = "Pause";
document.getElementById("td_map_canvas").style.display = "None";
document.getElementById("td_panorama").style.display = "None";
document.getElementById("tr_controls").style.display = "";
document.getElementById("tr_config").style.display = "";
// map.setOptions({draggableCursor: 'hand'});
}
function cb_step_input( new_step ) {
document.getElementById("id_meters").innerHTML = new_step;
}
function cb_step_changed( new_step ) {
console.log( "new_step = " + new_step );
step = parseInt( new_step );
}
function cb_interval_input( new_interval ) {
document.getElementById("id_interval").innerHTML = new_interval;
}
function cb_interval_changed( new_interval ) {
console.log( "new_interval = " + new_interval );
interval = parseInt( new_interval );
}
function cb_route1_from( from ) {
console.log( "from = " + from );
}
function cb_route1_waypoint1( from ) {
console.log( "waypoint1 = " + from );
}
function cb_route1_to( from ) {
console.log( "from = " + from );
}
function alt_map_panorama_full_screen( ) {
document.getElementById("tr_config").style.display = "None";
if ( map_is_shown ) {
map_is_shown = false;
document.getElementById("div_map_canvas").style.display = "None";
document.getElementById("div_panorama").style.display = "";
document.getElementById("div_panorama").style.height = "100%";
document.getElementById("div_panorama").style.width = "100%";
google.maps.event.trigger( panorama, 'resize' );
}
else {
map_is_shown = true;
document.getElementById("div_map_canvas").style.display = "";
document.getElementById("div_map_canvas").style.width = "100%";
document.getElementById("div_map_canvas").style.height = "100%";
document.getElementById("div_panorama").style.display = "None";
google.maps.event.trigger( map, 'resize' );
}
}
function cb_map_click( evt ) {
console.log( "cb_map_click" );
document.getElementById("td_map_canvas").style.display = "None";
document.getElementById("td_panorama").style.display = "";
google.maps.event.trigger( panorama, 'resize' );
}
function cb_panorama_click( evt ) {
if ( evt.handled != true ) {
console.log( "cb_panorama_click" );
document.getElementById("td_map_canvas").style.display = "";
document.getElementById("td_panorama").style.display = "None";
google.maps.event.trigger( map, 'resize' );
}
}
function show_route_distance_duration( dist_meters, duration_secs ) {
console.log( "dist_meters=" + dist_meters + " duration_secs=" + duration_secs );
document.getElementById("id_route1_dist").innerHTML = Math.round( dist_meters / 1000 );
var nb_hours = Math.floor( duration_secs / 3600 );
var nb_minutes = Math.floor( (duration_secs - (nb_hours * 3600)) / 60 );
var nb_seconds = Math.floor( duration_secs - (nb_hours * 3600) - (nb_minutes * 60) );
if ( nb_hours == 0 ) {
if ( nb_minutes == 0 ) {
document.getElementById("id_route1_duration").innerHTML = nb_seconds + '"';
}
else {
if ( nb_seconds == 0 )
document.getElementById("id_route1_duration").innerHTML = nb_minutes + "'";
else
document.getElementById("id_route1_duration").innerHTML = nb_minutes + "'" + nb_seconds + '"';
}
}
else {
document.getElementById("id_route1_duration").innerHTML = nb_hours + "h" + nb_minutes + "'" + nb_seconds + '"';
}
document.getElementById("id_route1_distance_duration").style.display = "";
// Update route slider
document.getElementById("id_input_route").max = dist_meters
document.getElementById("id_input_route").value = 0;
}
function move_to_dist( new_pos ) {
if ( timer_animate != undefined ) {
clearTimeout( timer_animate );
timer_animate = setTimeout( "cb_animate(" + new_pos + ")", interval );
}
var p = polyline.GetPointAtDistance( new_pos );
if ( !map.getBounds().contains( p ) )
map.panTo( p );
var bearing = polyline.Bearing( polyline.GetIndexAtDistance( new_pos ) );
panorama.setPosition( new google.maps.LatLng( p.G, p.K ) );
panorama.setPov({
heading: bearing,
pitch: 10
});
cb_move_to_dist = undefined;
curr_dist = new_pos;
}
function cb_route_input( new_pos ) {
if ( cb_move_to_dist != undefined )
clearTimeout( cb_move_to_dist );
cb_move_to_dist = setTimeout( "move_to_dist(" + new_pos + ")", 25 );
}
function cb_route_from_or_to_changed( evt ) {
console.log( "cb_route_from_or_to_changed" );
start_location = document.getElementById('id_route1_from').value;
end_location = document.getElementById('id_route1_to').value;
console.log( "from = " + start_location );
console.log( "to = " + end_location );
var start_disabled = (start_location == "") || (end_location == "");
document.getElementById("id_btn_start").disabled = start_disabled;
}
</script>
</head>
<body bgcolor="#E6E6FA" id="id_body" onload="initialize()">
<table width="100%" height="100%" border="0" cellpadding="1" cellspacing="1">
<tr id='tr_config' >
<td>
<div id="div_config" style="width:100%; height: 100%">
<div align="center">
<table style="font-size:175%">
<tr>
<td valign="middle" align="right" style="font-size:125%">From</td>
<td valign="middle" align="left"><input type="text" id="id_route1_from" style="width:24em; font-size:150%"
onchange="cb_route1_from(this.value)" value=""></td>
</tr>
<tr>
<td valign="middle" align="right" style="font-size:125%">To</td>
<td valign="middle" align="left"><input type="text" id="id_route1_to" style="width:24em; font-size:150%"
onchange="cb_route1_to(this.value)" value=""></td>
</tr>
</table>
</div>
<hr>
<div id="id_route1_distance_duration" style="width:100%; display:None" align="center" >
<table style="width:100%">
<tr>
<td align="left" valign="middle">
<b id="id_route1_dist"></b> kms
</td>
<td align="right" valign="middle">
<b id="id_route1_duration">XX</b>
</td>
</tr>
</table>
</div>
<div align="center">
<label>No Highway</label>
<input type="checkbox" id="id_check_no_hwy" checked>
<label>No Toll</label>
<input type="checkbox" id="id_check_no_toll" checked>
</div>
<br>
<br>
<div style="width:100%;" align="center">
<span>Step : <b id="id_meters">250</b> meters</span><br>
<input id="id_input_meters" style="width:100%; max-width: 320px" type="range" min="50" max="1000" step="50" value="250"
oninput="cb_step_input( this.value )"
onchange="cb_step_changed( this.value )" >
<p>
<span>Interval : <b id="id_interval">1200</b> milliseconds</span><br>
<input id="id_input_interval" style="width:100%; max-width: 320px" type="range" min="500" max="5000" step="50" value="1200"
oninput="cb_interval_input( this.value )"
onchange="cb_interval_changed( this.value )" >
</p>
</div>
<br>
<br>
<div style="width:100%;" align="center">
<button type="button" id="id_btn_start" onclick="do_start()" style="min-width:120px;height:92px" disabled><b style="font-size:325%">Start</b></button>
</div>
</div>
</td>
</tr>
<tr >
<td id="td_map_canvas" style="display:None">
<div id="div_map_canvas"></div>
</td>
<td id="td_panorama" style="display:None">
<div id="div_panorama"></div>
</td>
</tr>
<tr rowspan="2" id="tr_controls" style="height:1%; display:None">
<td>
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="1%" align="center" height="24px">
<button type="button" id="id_btn_layout" onclick="do_layout()" style="min-width:60px;height:92px;display:"disabled><b ><span style="font-size:175%">Layout</span></b></button>
</td>
<td width="1%" align="center" height="24px">
<button type="button" id="id_btn_pause" onclick="do_pause()" style="min-width:60px;height:92px;display:"disabled><b ><span style="font-size:175%" id="id_label_pause">Pause</span></b></button>
</td>
<td width="1%" align="center" height="24px">
<button type="button" id="id_btn_stop" onclick="do_stop()" style="min-width:60px;height:92px;display:" disabled><b style="font-size:175%">Stop</b></button>
</td>
<td width="100%" align="center" height="16px" >
<input id="id_input_route" style="width:100%; display:" type="range" min="0" max="0" step="1" value="0"
oninput="cb_route_input( this.value )" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
| osingla/RouteView | RouteView-mobile.html | HTML | bsd-3-clause | 31,600 |
{% if article %}{% include 'cms_articles/article_preview.html' %}{% endif %}
| misli/django-cms-articles | cms_articles/templates/cms_articles/article/default.html | HTML | bsd-3-clause | 77 |
<dom-module id="test-menubar">
<template>
<content></content>
</template>
</dom-module>
| bwu-dart-playground/polymer_elements_parent | test/fixtures/test_menubar.html | HTML | bsd-3-clause | 100 |
<!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_31) on Sun Mar 22 23:36:28 UTC 2015 -->
<title>Constant Field Values (grpc-auth 0.1.0-SNAPSHOT API)</title>
<meta name="date" content="2015-03-22">
<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="Constant Field Values (grpc-auth 0.1.0-SNAPSHOT API)";
}
}
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="io/grpc/auth/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.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="Constant Field Values" class="title">Constant Field Values</h1>
<h2 title="Contents">Contents</h2>
</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="io/grpc/auth/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.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>
| sanjayiyerkudaliprasannakumar/cmpe273submission-grpc-Lab2 | auth/build/docs/javadoc/constant-values.html | HTML | bsd-3-clause | 3,594 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.genmod.families.links.Log.inverse_deriv — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/stylesheets/deprecation.css">
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../_static/material.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.genmod.families.links.Log.inverse_deriv2" href="statsmodels.genmod.families.links.Log.inverse_deriv2.html" />
<link rel="prev" title="statsmodels.genmod.families.links.Log.inverse" href="statsmodels.genmod.families.links.Log.inverse.html" />
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.genmod.families.links.Log.inverse_deriv" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels v0.12.2</span>
<span class="md-header-nav__topic"> statsmodels.genmod.families.links.Log.inverse_deriv </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="GET" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../_static/versions.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../glm.html" class="md-tabs__link">Generalized Linear Models</a></li>
<li class="md-tabs__item"><a href="statsmodels.genmod.families.links.Log.html" class="md-tabs__link">statsmodels.genmod.families.links.Log</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels v0.12.2</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../regression.html" class="md-nav__link">Linear Regression</a>
</li>
<li class="md-nav__item">
<a href="../glm.html" class="md-nav__link">Generalized Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../gee.html" class="md-nav__link">Generalized Estimating Equations</a>
</li>
<li class="md-nav__item">
<a href="../gam.html" class="md-nav__link">Generalized Additive Models (GAM)</a>
</li>
<li class="md-nav__item">
<a href="../rlm.html" class="md-nav__link">Robust Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../mixed_linear.html" class="md-nav__link">Linear Mixed Effects Models</a>
</li>
<li class="md-nav__item">
<a href="../discretemod.html" class="md-nav__link">Regression with Discrete Dependent Variable</a>
</li>
<li class="md-nav__item">
<a href="../mixed_glm.html" class="md-nav__link">Generalized Linear Mixed Effects Models</a>
</li>
<li class="md-nav__item">
<a href="../anova.html" class="md-nav__link">ANOVA</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.genmod.families.links.Log.inverse_deriv.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="generated-statsmodels-genmod-families-links-log-inverse-deriv--page-root">statsmodels.genmod.families.links.Log.inverse_deriv<a class="headerlink" href="#generated-statsmodels-genmod-families-links-log-inverse-deriv--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="py method">
<dt id="statsmodels.genmod.families.links.Log.inverse_deriv">
<code class="sig-prename descclassname">Log.</code><code class="sig-name descname">inverse_deriv</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">z</span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/genmod/families/links.html#Log.inverse_deriv"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#statsmodels.genmod.families.links.Log.inverse_deriv" title="Permalink to this definition">¶</a></dt>
<dd><p>Derivative of the inverse of the log transform link function</p>
<dl class="field-list">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl>
<dt><strong>z</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html#numpy.ndarray" title="(in NumPy v1.20)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ndarray</span></code></a></span></dt><dd><p>The inverse of the link function at <cite>p</cite></p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><dl>
<dt><strong>g^(-1)’(z)</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html#numpy.ndarray" title="(in NumPy v1.20)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ndarray</span></code></a></span></dt><dd><p>The value of the derivative of the inverse of the log function,
the exponential function</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.genmod.families.links.Log.inverse.html" title="statsmodels.genmod.families.links.Log.inverse"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.genmod.families.links.Log.inverse </span>
</div>
</a>
<a href="statsmodels.genmod.families.links.Log.inverse_deriv2.html" title="statsmodels.genmod.families.links.Log.inverse_deriv2"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.genmod.families.links.Log.inverse_deriv2 </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Feb 02, 2021.
<br/>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 3.4.3.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | v0.12.2/generated/statsmodels.genmod.families.links.Log.inverse_deriv.html | HTML | bsd-3-clause | 19,340 |
<!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>
<script type="text/javascript">
<!--
document.cookie='atref=noref$$; path=/;'
// -->
</script>
<script type="text/javascript">
<!--
document.cookie='atexc=0,1,2,3,4,5,6,7,$$; path=/;'
// -->
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="8 teen xxx,teen sex, free teen sex, free teen sex movies, free teen sex pictures, free teen sex galleries, daily Updated free teen sex galleries.">
<title>8 Teen XXX - Teen Sex, Free Teen Sex, Teen Porn, Free Teen Porn, Young XXX, 18 Year Olds</title>
<meta name="keywords" content="teen sex, teen sex pictures, free teen sex, teen, teen sex movies, teen sex, teen sex videos, teen sex galleries, teen sex movies"><!-- For cgi --->
<link rel="alternate" type="application/rss+xml" title="Home Page RSS" href="rss.php?location=home">
<script type="text/javascript" src="http://media.8teenxxx.com/js/process.js"></script>
<!--[if lt IE 7.]>
<script defer type="text/javascript" src="http://media.8teenxxx.com/js/pngfix.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width,target-densitydpi=device-dpi,initial-scale=1.0;minimum-scale=1.0; maximum-scale=1.0,user-scalable=yes" />
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<script type="text/javascript">
/*! A fix for the iOS orientationchange zoom bug. Script by @scottjehl, rebound by @wilto.MIT License.*/(function(m){if(!(/iPhone|iPad|iPod/.test(navigator.platform)&&navigator.userAgent.indexOf("AppleWebKit")>-1)){return}var l=m.document;if(!l.querySelector){return}var n=l.querySelector("meta[name=viewport]"),a=n&&n.getAttribute("content"),k=a+",maximum-scale=1",d=a+",maximum-scale=10",g=true,j,i,h,c;if(!n){return}function f(){n.setAttribute("content",d);g=true}function b(){n.setAttribute("content",k);g=false}function e(o){c=o.accelerationIncludingGravity;j=Math.abs(c.x);i=Math.abs(c.y);h=Math.abs(c.z);if(!m.orientation&&(j>7||((h>6&&i<8||h<8&&i>6)&&j>5))){if(g){b()}}else{if(!g){f()}}}m.addEventListener("orientationchange",f,false);m.addEventListener("devicemotion",e,false)})(this);
</script>
<link rel="stylesheet" href="http://media.8teenxxx.com/mediaqueries.css" type="text/css">
<link rel="stylesheet" href="http://media.8teenxxx.com/style2.css" type="text/css">
<script type="text/javascript" src="https://ads.exoclick.com/ad_track.js"></script>
<script type="text/javascript" src="/adboom.js"></script>
</head>
<body>
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" class="bg">
<tr>
<td><table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td valign="top"><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.8teenxxx.com/"><img src="http://media.8teenxxx.com/logo.gif" alt="8 Teen XXX - Free Teen Porn, Free Teen Sex, Free Teen XXX, 18+ Year Old Tube Videos" width="310" height="79" border="0" /></a></td>
<td width=50></td>
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div id="main_menu">
<a href="javascript:void(0);" onClick="ShowBox('loginForm','');">Login</a> | <a href="register.php">Register</a></div><br /><br /></td>
</tr>
<tr>
<td align="right"><div id="searchform"><form action="index.php?search" method="get" style="padding:0px; margin:0px;"><table width="223" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="5"> </td>
<td width="160" align="left">
<input name="search" maxlength="128" class="searchField" size="25" type="text" onFocus="this.value=''" value="Type here..."/></td>
<td width="99"><input type="image" src="http://media.8teenxxx.com/search.gif" height="18" width="66" border="0" name="image" /></td>
</tr>
</table></form></div></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td align="right" valign="bottom"><div id="menu_buttons">
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span class="m1"><a href="http://www.8teenxxx.com/" class="btnheader">Home</a></span></td>
<td><span class="m2"><a href="index.php?category" class="btnheader">Category</a></span></td>
<td><span class="m3"><a href="index.php?most_recent" class="btnheader">Most Recent</a></span></td>
<td><span class="m4"><a href="index.php?most_viewed" class="btnheader">Most Viewed</a></span></td>
<td><span class="m5"><a href="index.php?top_rated" class="btnheader">Top Rated</a></span></td>
<td><span class="m6"><a href="index.php?my_favorites" class="btnheader">My Favorites</a></span></td>
<td><span class="m7"><a href="index.php?channels" class="btnheader">Channels</a></span></td>
</tr>
</table>
</div></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table><div class="toptext">Below Are The Free Teen Porn, Free Teen Sex, Free Teen XXX, 18+ Year Old Tube Videos - Please Enjoy!</div>
<form action="index.php?home" method="post" style="display:none" id="loginForm">
<label>Username:</label> <input type="text" name="user" class="searchField"/>
<label>Password:</label> <input type="password" name="pass" class="searchField"/>
<label>Remember me?</label> <input type="checkbox" name="remember_me" class="searchField"/>
<input type="submit" value="Login" name="login" class="btn"/>
<input type="button" value="Cancel" class="btn" onClick="HideBox('loginForm')"/>
</form>
<div id="main_body">
<div class="left_sidebar"></div>
<div class="right_sidebar"></div>
<div id="content">
<!-- Start content here -->
<div id="page-up"><span class="page_title"></span><div class='pagination'>( 1 - 100 of about 84416 ) - Browse Pages: <span class=pagerCurrent>1</span><a href="?home&p=2" class=pagerNotCurrent >2</a><a href="?home&p=3" class=pagerNotCurrent >3</a><a href="?home&p=4" class=pagerNotCurrent >4</a><a href="?home&p=5" class=pagerNotCurrent >5</a><a href="?home&p=6" class=pagerNotCurrent >6</a><a href="?home&p=7" class=pagerNotCurrent >7</a><a href="?home&p=8" class=pagerNotCurrent >8</a>... <a href="?home&p=2" class=pagerNotCurrent >Next »</a> </div></div><div id="content_display">
<div id="content_thumbs"><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=zOP7ty0kQc">This hottie has a knack to playing ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=zOP7ty0kQc"><img src="http://media.8teenxxx.com/vid/842/zOP7ty0kQc/passionhd_promo_mp4_712_2500(4).jpg" width="240" height="180" title="This hottie has a knack to playing it dirty tonight" id="thumbs1" name="thumbs1" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/842/zOP7ty0kQc/passionhd_promo_mp4_712_2500(4).jpg','thumbs1');"
onmouseout="Stop('thumbs1'); this.src='http://media.8teenxxx.com/vid/842/zOP7ty0kQc/passionhd_promo_mp4_712_2500(4).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">89399 Views (44 Votes)</div>
<div class="date">07-09-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4I2LTfKhug">Proper doll got her pink pussy smas...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4I2LTfKhug"><img src="http://media.8teenxxx.com/vid/10/4I2LTfKhug/Lovely_Keira_fucking_a_dude.jpg" width="240" height="180" title="Proper doll got her pink pussy smashed just right" id="thumbs2" name="thumbs2" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/4I2LTfKhug/Lovely_Keira_fucking_a_dude.jpg','thumbs2');"
onmouseout="Stop('thumbs2'); this.src='http://media.8teenxxx.com/vid/10/4I2LTfKhug/Lovely_Keira_fucking_a_dude.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">26792 Views (16 Votes)</div>
<div class="date">07-11-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=hkvFf9AboR">Its a bout time to have some wild g...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=hkvFf9AboR"><img src="http://media.8teenxxx.com/vid/827/hkvFf9AboR/dso2014-04-25_720.jpg" width="240" height="180" title="Its a bout time to have some wild group sex" id="thumbs3" name="thumbs3" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/827/hkvFf9AboR/dso2014-04-25_720.jpg','thumbs3');"
onmouseout="Stop('thumbs3'); this.src='http://media.8teenxxx.com/vid/827/hkvFf9AboR/dso2014-04-25_720.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:0px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1045 Views (0 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=gRUk2jf5cq">Tight teen knows how to play that g...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=gRUk2jf5cq"><img src="http://media.8teenxxx.com/vid/166/gRUk2jf5cq/herfreshmanyear_kitty_bella_full_hi_3.jpg" width="240" height="180" title="Tight teen knows how to play that game" id="thumbs4" name="thumbs4" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/166/gRUk2jf5cq/herfreshmanyear_kitty_bella_full_hi_3.jpg','thumbs4');"
onmouseout="Stop('thumbs4'); this.src='http://media.8teenxxx.com/vid/166/gRUk2jf5cq/herfreshmanyear_kitty_bella_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">3836 Views (3 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=5SijG4xycP">She just can not hold back her feel...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=5SijG4xycP"><img src="http://media.8teenxxx.com/vid/867/5SijG4xycP/pornpros_promo_mp4_712_2500(32).jpg" width="240" height="180" title="She just can not hold back her feelings any more" id="thumbs5" name="thumbs5" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/867/5SijG4xycP/pornpros_promo_mp4_712_2500(32).jpg','thumbs5');"
onmouseout="Stop('thumbs5'); this.src='http://media.8teenxxx.com/vid/867/5SijG4xycP/pornpros_promo_mp4_712_2500(32).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">40541 Views (21 Votes)</div>
<div class="date">07-10-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=DtRlxNlcVY">This hottie wants to have some sex ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=DtRlxNlcVY"><img src="http://media.8teenxxx.com/vid/478/DtRlxNlcVY/dadcrush_peyton_robbie_full_hi_3.jpg" width="240" height="180" title="This hottie wants to have some sex really badly" id="thumbs6" name="thumbs6" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/478/DtRlxNlcVY/dadcrush_peyton_robbie_full_hi_3.jpg','thumbs6');"
onmouseout="Stop('thumbs6'); this.src='http://media.8teenxxx.com/vid/478/DtRlxNlcVY/dadcrush_peyton_robbie_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">147139 Views (32 Votes)</div>
<div class="date">07-05-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=olIU8DkqaT">Hot teen gets her fit little pussy ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=olIU8DkqaT"><img src="http://media.8teenxxx.com/vid/848/olIU8DkqaT/26_setipod_171_535.jpg" width="240" height="180" title="Hot teen gets her fit little pussy stretched" id="thumbs7" name="thumbs7" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/848/olIU8DkqaT/26_setipod_171_535.jpg','thumbs7');"
onmouseout="Stop('thumbs7'); this.src='http://media.8teenxxx.com/vid/848/olIU8DkqaT/26_setipod_171_535.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">95590 Views (32 Votes)</div>
<div class="date">07-07-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QNKprT4H9Y">Perfeclty shaped teen just wants a ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QNKprT4H9Y"><img src="http://media.8teenxxx.com/vid/857/QNKprT4H9Y/petitehdporn_hot_fuck_960_2.jpg" width="240" height="180" title="Perfeclty shaped teen just wants a nice ,an to ride" id="thumbs8" name="thumbs8" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/857/QNKprT4H9Y/petitehdporn_hot_fuck_960_2.jpg','thumbs8');"
onmouseout="Stop('thumbs8'); this.src='http://media.8teenxxx.com/vid/857/QNKprT4H9Y/petitehdporn_hot_fuck_960_2.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">139788 Views (60 Votes)</div>
<div class="date">07-04-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8kc4ZMYeln">All you want is to have some fun...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8kc4ZMYeln"><img src="http://media.8teenxxx.com/vid/834/8kc4ZMYeln/1315931532_andy-mp4-1_3.jpg" width="240" height="180" title="All you want is to have some fun" id="thumbs9" name="thumbs9" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/834/8kc4ZMYeln/1315931532_andy-mp4-1_3.jpg','thumbs9');"
onmouseout="Stop('thumbs9'); this.src='http://media.8teenxxx.com/vid/834/8kc4ZMYeln/1315931532_andy-mp4-1_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">3045180 Views (579 Votes)</div>
<div class="date">12-16-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kZb04oKsHV">Some wild and reckless moves make h...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kZb04oKsHV"><img src="http://media.8teenxxx.com/vid/707/kZb04oKsHV/pornpros_promo_mp4_712_2500(129).jpg" width="240" height="180" title="Some wild and reckless moves make her want more" id="thumbs10" name="thumbs10" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/707/kZb04oKsHV/pornpros_promo_mp4_712_2500(129).jpg','thumbs10');"
onmouseout="Stop('thumbs10'); this.src='http://media.8teenxxx.com/vid/707/kZb04oKsHV/pornpros_promo_mp4_712_2500(129).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">25610 Views (20 Votes)</div>
<div class="date">07-10-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=as5R9McXd0">Proper cock gobbler going wild for ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=as5R9McXd0"><img src="http://media.8teenxxx.com/vid/911/as5R9McXd0/rsp_bettina_katie_talia_480p_1000_5.jpg" width="240" height="180" title="Proper cock gobbler going wild for her boy" id="thumbs11" name="thumbs11" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/911/as5R9McXd0/rsp_bettina_katie_talia_480p_1000_5.jpg','thumbs11');"
onmouseout="Stop('thumbs11'); this.src='http://media.8teenxxx.com/vid/911/as5R9McXd0/rsp_bettina_katie_talia_480p_1000_5.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:60px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5757 Views (5 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lUXb5GzKtq">Petite beauty loves to get that pin...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lUXb5GzKtq"><img src="http://media.8teenxxx.com/vid/910/lUXb5GzKtq/pop_megan_rain_jl082114_480p_1000_5.jpg" width="240" height="180" title="Petite beauty loves to get that pink hole smashed" id="thumbs12" name="thumbs12" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/910/lUXb5GzKtq/pop_megan_rain_jl082114_480p_1000_5.jpg','thumbs12');"
onmouseout="Stop('thumbs12'); this.src='http://media.8teenxxx.com/vid/910/lUXb5GzKtq/pop_megan_rain_jl082114_480p_1000_5.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">60110 Views (30 Votes)</div>
<div class="date">07-07-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8wGjlyJH6Q">Wonderful teen got her sweet ass sm...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8wGjlyJH6Q"><img src="http://media.8teenxxx.com/vid/903/8wGjlyJH6Q/lta_aj_applegate_dk011316_480p_1000_3.jpg" width="240" height="180" title="Wonderful teen got her sweet ass smashed right" id="thumbs13" name="thumbs13" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/903/8wGjlyJH6Q/lta_aj_applegate_dk011316_480p_1000_3.jpg','thumbs13');"
onmouseout="Stop('thumbs13'); this.src='http://media.8teenxxx.com/vid/903/8wGjlyJH6Q/lta_aj_applegate_dk011316_480p_1000_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">128517 Views (34 Votes)</div>
<div class="date">07-02-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kTFjhHpXo2">Nothing can hold this glamorous cut...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kTFjhHpXo2"><img src="http://media.8teenxxx.com/vid/849/kTFjhHpXo2/89_setiPod_3.jpg" width="240" height="180" title="Nothing can hold this glamorous cutie back from her burning desire" id="thumbs14" name="thumbs14" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/849/kTFjhHpXo2/89_setiPod_3.jpg','thumbs14');"
onmouseout="Stop('thumbs14'); this.src='http://media.8teenxxx.com/vid/849/kTFjhHpXo2/89_setiPod_3.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">287843 Views (57 Votes)</div>
<div class="date">06-19-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=b4RE8icZ0W">Hot kinky teen enjoys as she gets h...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=b4RE8icZ0W"><img src="http://media.8teenxxx.com/vid/10/b4RE8icZ0W/Pretty_teen_gets_her_face_covered_in_cum.jpg" width="240" height="180" title="Hot kinky teen enjoys as she gets her sweet face cummed" id="thumbs15" name="thumbs15" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/b4RE8icZ0W/Pretty_teen_gets_her_face_covered_in_cum.jpg','thumbs15');"
onmouseout="Stop('thumbs15'); this.src='http://media.8teenxxx.com/vid/10/b4RE8icZ0W/Pretty_teen_gets_her_face_covered_in_cum.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">97054 Views (36 Votes)</div>
<div class="date">07-04-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=CqenvO0doH">Shapely teen beauty goes crazy for ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=CqenvO0doH"><img src="http://media.8teenxxx.com/vid/866/CqenvO0doH/mc6931-480p_3.jpg" width="240" height="180" title="Shapely teen beauty goes crazy for an interracial fuck" id="thumbs16" name="thumbs16" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/866/CqenvO0doH/mc6931-480p_3.jpg','thumbs16');"
onmouseout="Stop('thumbs16'); this.src='http://media.8teenxxx.com/vid/866/CqenvO0doH/mc6931-480p_3.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2697172 Views (523 Votes)</div>
<div class="date">12-04-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=voSunUf49Q">Fine teen beauty playing the sexy g...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=voSunUf49Q"><img src="http://media.8teenxxx.com/vid/910/voSunUf49Q/pop_dillion_carter_kd093013_480p_1000_2.jpg" width="240" height="180" title="Fine teen beauty playing the sexy game" id="thumbs17" name="thumbs17" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/910/voSunUf49Q/pop_dillion_carter_kd093013_480p_1000_2.jpg','thumbs17');"
onmouseout="Stop('thumbs17'); this.src='http://media.8teenxxx.com/vid/910/voSunUf49Q/pop_dillion_carter_kd093013_480p_1000_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">30124 Views (21 Votes)</div>
<div class="date">07-09-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=PvqCVlNtaD">She just craves to get down with th...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=PvqCVlNtaD"><img src="http://media.8teenxxx.com/vid/842/PvqCVlNtaD/passionhd_promo_mp4_712_2500(95).jpg" width="240" height="180" title="She just craves to get down with the right man" id="thumbs18" name="thumbs18" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/842/PvqCVlNtaD/passionhd_promo_mp4_712_2500(95).jpg','thumbs18');"
onmouseout="Stop('thumbs18'); this.src='http://media.8teenxxx.com/vid/842/PvqCVlNtaD/passionhd_promo_mp4_712_2500(95).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">574406 Views (119 Votes)</div>
<div class="date">05-18-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=2i35buexkZ">Britney screams like real slut as s...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=2i35buexkZ"><img src="http://media.8teenxxx.com/vid/292/2i35buexkZ/britney.jpg" width="240" height="180" title="Britney screams like real slut as she gets ravaged by huge black meat rod" id="thumbs19" name="thumbs19" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/292/2i35buexkZ/britney.jpg','thumbs19');"
onmouseout="Stop('thumbs19'); this.src='http://media.8teenxxx.com/vid/292/2i35buexkZ/britney.jpg'" /></a>
<div class="img_info">
<div class="duration">04:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">13295791 Views (5178 Votes)</div>
<div class="date">12-11-13</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3pcnHOki4l">All Brooke Haze wants to do is play...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3pcnHOki4l"><img src="http://media.8teenxxx.com/vid/907/3pcnHOki4l/familystrokes_brooke_haze_full_hi_2.jpg" width="240" height="180" title="All Brooke Haze wants to do is play it real dirty tonight" id="thumbs20" name="thumbs20" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/907/3pcnHOki4l/familystrokes_brooke_haze_full_hi_2.jpg','thumbs20');"
onmouseout="Stop('thumbs20'); this.src='http://media.8teenxxx.com/vid/907/3pcnHOki4l/familystrokes_brooke_haze_full_hi_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">132203 Views (27 Votes)</div>
<div class="date">06-29-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=tsKIkzURdQ">Horny 18 teen year old girl fucked ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=tsKIkzURdQ"><img src="http://media.8teenxxx.com/vid/275/tsKIkzURdQ/mila.jpg" width="240" height="180" title="Horny 18 teen year old girl fucked in her ass" id="thumbs21" name="thumbs21" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/275/tsKIkzURdQ/mila.jpg','thumbs21');"
onmouseout="Stop('thumbs21'); this.src='http://media.8teenxxx.com/vid/275/tsKIkzURdQ/mila.jpg'" /></a>
<div class="img_info">
<div class="duration">00:45</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">28592132 Views (28583 Votes)</div>
<div class="date">10-01-09</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=fcMg9NVTSz">Passionate doll just wants a hot ri...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=fcMg9NVTSz"><img src="http://media.8teenxxx.com/vid/8/fcMg9NVTSz/Carolina_-_Nick.jpg" width="240" height="180" title="Passionate doll just wants a hot ride" id="thumbs22" name="thumbs22" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/8/fcMg9NVTSz/Carolina_-_Nick.jpg','thumbs22');"
onmouseout="Stop('thumbs22'); this.src='http://media.8teenxxx.com/vid/8/fcMg9NVTSz/Carolina_-_Nick.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">359397 Views (100 Votes)</div>
<div class="date">06-06-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=vacRiZ8h0n">Her craziness can not be contained ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=vacRiZ8h0n"><img src="http://media.8teenxxx.com/vid/793/vacRiZ8h0n/146_m.jpg" width="240" height="180" title="Her craziness can not be contained within her " id="thumbs23" name="thumbs23" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/793/vacRiZ8h0n/146_m.jpg','thumbs23');"
onmouseout="Stop('thumbs23'); this.src='http://media.8teenxxx.com/vid/793/vacRiZ8h0n/146_m.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">12162 Views (17 Votes)</div>
<div class="date">07-11-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=swaYkKrAxj">A huge black penis brings her so mu...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=swaYkKrAxj"><img src="http://media.8teenxxx.com/vid/866/swaYkKrAxj/mc7414-480p_5.jpg" width="240" height="180" title="A huge black penis brings her so much joy" id="thumbs24" name="thumbs24" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/866/swaYkKrAxj/mc7414-480p_5.jpg','thumbs24');"
onmouseout="Stop('thumbs24'); this.src='http://media.8teenxxx.com/vid/866/swaYkKrAxj/mc7414-480p_5.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1498417 Views (272 Votes)</div>
<div class="date">02-04-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=5toLCQbFqg">Perfect teen cutie has no trouble g...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=5toLCQbFqg"><img src="http://media.8teenxxx.com/vid/884/5toLCQbFqg/15_setmedium_2.jpg" width="240" height="180" title="Perfect teen cutie has no trouble getting that ass pounded" id="thumbs25" name="thumbs25" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/884/5toLCQbFqg/15_setmedium_2.jpg','thumbs25');"
onmouseout="Stop('thumbs25'); this.src='http://media.8teenxxx.com/vid/884/5toLCQbFqg/15_setmedium_2.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2495187 Views (532 Votes)</div>
<div class="date">10-22-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=nhF9WTOKxw">Daddy bangs his sexy little babysit...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=nhF9WTOKxw"><img src="http://media.8teenxxx.com/vid/899/nhF9WTOKxw/mybabysittersclub_henley_hart_bestof_med_1.jpg" width="240" height="180" title="Daddy bangs his sexy little babysitter" id="thumbs26" name="thumbs26" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/899/nhF9WTOKxw/mybabysittersclub_henley_hart_bestof_med_1.jpg','thumbs26');"
onmouseout="Stop('thumbs26'); this.src='http://media.8teenxxx.com/vid/899/nhF9WTOKxw/mybabysittersclub_henley_hart_bestof_med_1.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1468851 Views (271 Votes)</div>
<div class="date">01-31-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Ocm4ko18IJ">Horny teen cutie getting her pale p...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Ocm4ko18IJ"><img src="http://media.8teenxxx.com/vid/834/Ocm4ko18IJ/1324129880_dorothea-mp4-1_2.jpg" width="240" height="180" title="Horny teen cutie getting her pale pussy pounded right" id="thumbs27" name="thumbs27" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/834/Ocm4ko18IJ/1324129880_dorothea-mp4-1_2.jpg','thumbs27');"
onmouseout="Stop('thumbs27'); this.src='http://media.8teenxxx.com/vid/834/Ocm4ko18IJ/1324129880_dorothea-mp4-1_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">185948 Views (66 Votes)</div>
<div class="date">06-21-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=vClbXjngxS">Gorgeous teen girl playing with her...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=vClbXjngxS"><img src="http://media.8teenxxx.com/vid/10/vClbXjngxS/Cute_babe_girl_sucking_cock_like_a_lollipop.jpg" width="240" height="180" title="Gorgeous teen girl playing with her boys huge dick" id="thumbs28" name="thumbs28" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/vClbXjngxS/Cute_babe_girl_sucking_cock_like_a_lollipop.jpg','thumbs28');"
onmouseout="Stop('thumbs28'); this.src='http://media.8teenxxx.com/vid/10/vClbXjngxS/Cute_babe_girl_sucking_cock_like_a_lollipop.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">211995 Views (63 Votes)</div>
<div class="date">06-18-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=xqJn1QFIU7">She goes all in to get that sweet p...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=xqJn1QFIU7"><img src="http://media.8teenxxx.com/vid/707/xqJn1QFIU7/pornpros_promo_mp4_712_2500(70).jpg" width="240" height="180" title="She goes all in to get that sweet pussy banged" id="thumbs29" name="thumbs29" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/707/xqJn1QFIU7/pornpros_promo_mp4_712_2500(70).jpg','thumbs29');"
onmouseout="Stop('thumbs29'); this.src='http://media.8teenxxx.com/vid/707/xqJn1QFIU7/pornpros_promo_mp4_712_2500(70).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">27833 Views (13 Votes)</div>
<div class="date">07-09-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8sElAl4Uwd">Delicious cock gobbler burning with...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=8sElAl4Uwd"><img src="http://media.8teenxxx.com/vid/911/8sElAl4Uwd/rsp_ava_riley_480p_1000_4.jpg" width="240" height="180" title="Delicious cock gobbler burning with deep passion" id="thumbs30" name="thumbs30" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/911/8sElAl4Uwd/rsp_ava_riley_480p_1000_4.jpg','thumbs30');"
onmouseout="Stop('thumbs30'); this.src='http://media.8teenxxx.com/vid/911/8sElAl4Uwd/rsp_ava_riley_480p_1000_4.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:30px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">876 Views (2 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3TA0we2zX5">Horny Latina knows how to get down ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3TA0we2zX5"><img src="http://media.8teenxxx.com/vid/909/3TA0we2zX5/lst_jasmin_maybach_kd111712_480p_1000_2.jpg" width="240" height="180" title="Horny Latina knows how to get down and plenty dirty" id="thumbs31" name="thumbs31" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/909/3TA0we2zX5/lst_jasmin_maybach_kd111712_480p_1000_2.jpg','thumbs31');"
onmouseout="Stop('thumbs31'); this.src='http://media.8teenxxx.com/vid/909/3TA0we2zX5/lst_jasmin_maybach_kd111712_480p_1000_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:30px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1908 Views (3 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=ZntvQslIXA">All this gorgeous cutie wants is a ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=ZntvQslIXA"><img src="http://media.8teenxxx.com/vid/10/ZntvQslIXA/Boy_gives_two_naughty_girls_a_facial.jpg" width="240" height="180" title="All this gorgeous cutie wants is a hot pussy pounding" id="thumbs32" name="thumbs32" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/ZntvQslIXA/Boy_gives_two_naughty_girls_a_facial.jpg','thumbs32');"
onmouseout="Stop('thumbs32'); this.src='http://media.8teenxxx.com/vid/10/ZntvQslIXA/Boy_gives_two_naughty_girls_a_facial.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">466090 Views (134 Votes)</div>
<div class="date">05-16-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=MlRuW6JNdz">She keeps craving for more and more...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=MlRuW6JNdz"><img src="http://media.8teenxxx.com/vid/45/MlRuW6JNdz/cfnmteens_amirah_adara_full_med_2.jpg" width="240" height="180" title="She keeps craving for more and more tonight" id="thumbs33" name="thumbs33" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/45/MlRuW6JNdz/cfnmteens_amirah_adara_full_med_2.jpg','thumbs33');"
onmouseout="Stop('thumbs33'); this.src='http://media.8teenxxx.com/vid/45/MlRuW6JNdz/cfnmteens_amirah_adara_full_med_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">97284 Views (25 Votes)</div>
<div class="date">06-30-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3NbWeJHkiC">Sweet doll has her perfect pussy ta...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3NbWeJHkiC"><img src="http://media.8teenxxx.com/vid/352/3NbWeJHkiC/Dunya_android(2)_1.jpg" width="240" height="180" title="Sweet doll has her perfect pussy taking a sweet bang" id="thumbs34" name="thumbs34" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/352/3NbWeJHkiC/Dunya_android(2)_1.jpg','thumbs34');"
onmouseout="Stop('thumbs34'); this.src='http://media.8teenxxx.com/vid/352/3NbWeJHkiC/Dunya_android(2)_1.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">22961 Views (12 Votes)</div>
<div class="date">07-09-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=GDushxMJ4r">Passionate doll has her pink pussy ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=GDushxMJ4r"><img src="http://media.8teenxxx.com/vid/908/GDushxMJ4r/sislovesme_hollie_mack_full_hi_3.jpg" width="240" height="180" title="Passionate doll has her pink pussy ready for some sexy action" id="thumbs35" name="thumbs35" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/908/GDushxMJ4r/sislovesme_hollie_mack_full_hi_3.jpg','thumbs35');"
onmouseout="Stop('thumbs35'); this.src='http://media.8teenxxx.com/vid/908/GDushxMJ4r/sislovesme_hollie_mack_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">64676 Views (18 Votes)</div>
<div class="date">07-04-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=06gxC9yYUQ">All this glamorous teen beauty want...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=06gxC9yYUQ"><img src="http://media.8teenxxx.com/vid/906/06gxC9yYUQ/bffs_pokemon_full_hi_3.jpg" width="240" height="180" title="All this glamorous teen beauty wants is a man to handle her holes" id="thumbs36" name="thumbs36" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/906/06gxC9yYUQ/bffs_pokemon_full_hi_3.jpg','thumbs36');"
onmouseout="Stop('thumbs36'); this.src='http://media.8teenxxx.com/vid/906/06gxC9yYUQ/bffs_pokemon_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">206556 Views (54 Votes)</div>
<div class="date">06-16-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Cj3mwhxRka">Japanese babe Aki has her hairy pus...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Cj3mwhxRka"><img src="http://media.8teenxxx.com/vid/760/Cj3mwhxRka/01.jpg" width="240" height="180" title="Japanese babe Aki has her hairy pussy fucked hard" id="thumbs37" name="thumbs37" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/760/Cj3mwhxRka/01.jpg','thumbs37');"
onmouseout="Stop('thumbs37'); this.src='http://media.8teenxxx.com/vid/760/Cj3mwhxRka/01.jpg'" /></a>
<div class="img_info">
<div class="duration">03:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">19522591 Views (16708 Votes)</div>
<div class="date">08-25-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HxdLFlTEVw">Horny cutie just wants to have inte...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HxdLFlTEVw"><img src="http://media.8teenxxx.com/vid/352/HxdLFlTEVw/Francheska_android(2)_2.jpg" width="240" height="180" title="Horny cutie just wants to have intense fun" id="thumbs38" name="thumbs38" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/352/HxdLFlTEVw/Francheska_android(2)_2.jpg','thumbs38');"
onmouseout="Stop('thumbs38'); this.src='http://media.8teenxxx.com/vid/352/HxdLFlTEVw/Francheska_android(2)_2.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">35177 Views (19 Votes)</div>
<div class="date">07-07-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NP3bqxZU60">Alluring teen has her pink hole rea...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NP3bqxZU60"><img src="http://media.8teenxxx.com/vid/45/NP3bqxZU60/rubateen_mackenzie_full_med_2.jpg" width="240" height="180" title="Alluring teen has her pink hole ready for anything" id="thumbs39" name="thumbs39" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/45/NP3bqxZU60/rubateen_mackenzie_full_med_2.jpg','thumbs39');"
onmouseout="Stop('thumbs39'); this.src='http://media.8teenxxx.com/vid/45/NP3bqxZU60/rubateen_mackenzie_full_med_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1747258 Views (383 Votes)</div>
<div class="date">11-28-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QxekXoJFMu">Delicious cock gobbler burning for ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QxekXoJFMu"><img src="http://media.8teenxxx.com/vid/911/QxekXoJFMu/rsp_bailey_natalia_jl052314_480p_1000_4.jpg" width="240" height="180" title="Delicious cock gobbler burning for some more" id="thumbs40" name="thumbs40" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/911/QxekXoJFMu/rsp_bailey_natalia_jl052314_480p_1000_4.jpg','thumbs40');"
onmouseout="Stop('thumbs40'); this.src='http://media.8teenxxx.com/vid/911/QxekXoJFMu/rsp_bailey_natalia_jl052314_480p_1000_4.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">110108 Views (24 Votes)</div>
<div class="date">06-27-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=GwxQfaiW2H">Tight teen beauty gets down and ple...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=GwxQfaiW2H"><img src="http://media.8teenxxx.com/vid/873/GwxQfaiW2H/22_setmedium_2.jpg" width="240" height="180" title="Tight teen beauty gets down and plenty dirty for her boy" id="thumbs41" name="thumbs41" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/873/GwxQfaiW2H/22_setmedium_2.jpg','thumbs41');"
onmouseout="Stop('thumbs41'); this.src='http://media.8teenxxx.com/vid/873/GwxQfaiW2H/22_setmedium_2.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">3418727 Views (847 Votes)</div>
<div class="date">04-05-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=M4vWw96iJB">She has some lovely passion burning...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=M4vWw96iJB"><img src="http://media.8teenxxx.com/vid/352/M4vWw96iJB/Eva_android(2)_1.jpg" width="240" height="180" title="She has some lovely passion burning for her man" id="thumbs42" name="thumbs42" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/352/M4vWw96iJB/Eva_android(2)_1.jpg','thumbs42');"
onmouseout="Stop('thumbs42'); this.src='http://media.8teenxxx.com/vid/352/M4vWw96iJB/Eva_android(2)_1.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">36229 Views (14 Votes)</div>
<div class="date">07-07-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=cij2mG6aYU">Getting that perfect little ass cre...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=cij2mG6aYU"><img src="http://media.8teenxxx.com/vid/832/cij2mG6aYU/teenpies_jennifer_jacobs_full_med_2.jpg" width="240" height="180" title="Getting that perfect little ass creamed is everything she wants" id="thumbs43" name="thumbs43" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/832/cij2mG6aYU/teenpies_jennifer_jacobs_full_med_2.jpg','thumbs43');"
onmouseout="Stop('thumbs43'); this.src='http://media.8teenxxx.com/vid/832/cij2mG6aYU/teenpies_jennifer_jacobs_full_med_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">116501 Views (31 Votes)</div>
<div class="date">06-26-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=v1TQlNyo7c">A massive cock is always welcome in...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=v1TQlNyo7c"><img src="http://media.8teenxxx.com/vid/10/v1TQlNyo7c/Lovely_teen_fucked_in_her_bedroom.jpg" width="240" height="180" title="A massive cock is always welcome inside her" id="thumbs44" name="thumbs44" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/v1TQlNyo7c/Lovely_teen_fucked_in_her_bedroom.jpg','thumbs44');"
onmouseout="Stop('thumbs44'); this.src='http://media.8teenxxx.com/vid/10/v1TQlNyo7c/Lovely_teen_fucked_in_her_bedroom.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">216123 Views (77 Votes)</div>
<div class="date">06-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=eBDR30QLl1">Brunette has fun at a crazy orgy fu...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=eBDR30QLl1"><img src="http://media.8teenxxx.com/vid/143/eBDR30QLl1/1.jpg" width="240" height="180" title="Brunette has fun at a crazy orgy fuck party." id="thumbs45" name="thumbs45" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/143/eBDR30QLl1/1.jpg','thumbs45');"
onmouseout="Stop('thumbs45'); this.src='http://media.8teenxxx.com/vid/143/eBDR30QLl1/1.jpg'" /></a>
<div class="img_info">
<div class="duration">00:37</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">18166549 Views (8919 Votes)</div>
<div class="date">05-19-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yK72iqokOE">Delicious teen beauty having the mo...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yK72iqokOE"><img src="http://media.8teenxxx.com/vid/352/yK72iqokOE/Gabi__Latoya_android_1.jpg" width="240" height="180" title="Delicious teen beauty having the most relentless bang" id="thumbs46" name="thumbs46" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/352/yK72iqokOE/Gabi__Latoya_android_1.jpg','thumbs46');"
onmouseout="Stop('thumbs46'); this.src='http://media.8teenxxx.com/vid/352/yK72iqokOE/Gabi__Latoya_android_1.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">111681 Views (54 Votes)</div>
<div class="date">06-26-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=YvpMBong3d">Petite blonde has her pussy pyledri...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=YvpMBong3d"><img src="http://media.8teenxxx.com/vid/863/YvpMBong3d/bbc13846-480p_804_1225.jpg" width="240" height="180" title="Petite blonde has her pussy pyledriven by a giant" id="thumbs47" name="thumbs47" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/863/YvpMBong3d/bbc13846-480p_804_1225.jpg','thumbs47');"
onmouseout="Stop('thumbs47'); this.src='http://media.8teenxxx.com/vid/863/YvpMBong3d/bbc13846-480p_804_1225.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5790690 Views (1719 Votes)</div>
<div class="date">03-16-15</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Vvq6LlieUt">Flawless teen babe flows into the n...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Vvq6LlieUt"><img src="http://media.8teenxxx.com/vid/793/Vvq6LlieUt/169_m_456_1056.jpg" width="240" height="180" title="Flawless teen babe flows into the night" id="thumbs48" name="thumbs48" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/793/Vvq6LlieUt/169_m_456_1056.jpg','thumbs48');"
onmouseout="Stop('thumbs48'); this.src='http://media.8teenxxx.com/vid/793/Vvq6LlieUt/169_m_456_1056.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1989 Views (2 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6JKlm3t0aq">Lets bake a cream pie together...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6JKlm3t0aq"><img src="http://media.8teenxxx.com/vid/892/6JKlm3t0aq/50_setmedium_3.jpg" width="240" height="180" title="Lets bake a cream pie together" id="thumbs49" name="thumbs49" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/892/6JKlm3t0aq/50_setmedium_3.jpg','thumbs49');"
onmouseout="Stop('thumbs49'); this.src='http://media.8teenxxx.com/vid/892/6JKlm3t0aq/50_setmedium_3.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">247184 Views (51 Votes)</div>
<div class="date">06-05-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6q01Fnl9fy">That wet pussy is always ready for ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6q01Fnl9fy"><img src="http://media.8teenxxx.com/vid/10/6q01Fnl9fy/Hot_traveller_gets_her_juicy_pussy_banged.jpg" width="240" height="180" title="That wet pussy is always ready for something wild" id="thumbs50" name="thumbs50" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/6q01Fnl9fy/Hot_traveller_gets_her_juicy_pussy_banged.jpg','thumbs50');"
onmouseout="Stop('thumbs50'); this.src='http://media.8teenxxx.com/vid/10/6q01Fnl9fy/Hot_traveller_gets_her_juicy_pussy_banged.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">160803 Views (64 Votes)</div>
<div class="date">06-18-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kva1GU3Fzd">Sweet teen beauty Mika Sparx works ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kva1GU3Fzd"><img src="http://media.8teenxxx.com/vid/45/kva1GU3Fzd/povlife_mika_sparx_bestof_112_595.jpg" width="240" height="180" title="Sweet teen beauty Mika Sparx works hard for your cum" id="thumbs51" name="thumbs51" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/45/kva1GU3Fzd/povlife_mika_sparx_bestof_112_595.jpg','thumbs51');"
onmouseout="Stop('thumbs51'); this.src='http://media.8teenxxx.com/vid/45/kva1GU3Fzd/povlife_mika_sparx_bestof_112_595.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">4124848 Views (1082 Votes)</div>
<div class="date">10-23-15</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HDv2J0ZzV1">Amazing young beauty gets her first...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HDv2J0ZzV1"><img src="http://media.8teenxxx.com/vid/860/HDv2J0ZzV1/vid01(1).jpg" width="240" height="180" title="Amazing young beauty gets her first time fuck on cam" id="thumbs52" name="thumbs52" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/860/HDv2J0ZzV1/vid01(1).jpg','thumbs52');"
onmouseout="Stop('thumbs52'); this.src='http://media.8teenxxx.com/vid/860/HDv2J0ZzV1/vid01(1).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">53507 Views (14 Votes)</div>
<div class="date">07-04-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=s0IOSygoH4">Stunning babe accomplishes so much ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=s0IOSygoH4"><img src="http://media.8teenxxx.com/vid/844/s0IOSygoH4/vid01(70).jpg" width="240" height="180" title="Stunning babe accomplishes so much with her sexy fantasy" id="thumbs53" name="thumbs53" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/844/s0IOSygoH4/vid01(70).jpg','thumbs53');"
onmouseout="Stop('thumbs53'); this.src='http://media.8teenxxx.com/vid/844/s0IOSygoH4/vid01(70).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1492617 Views (329 Votes)</div>
<div class="date">11-24-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=XB2hd6cC1P">Incredible doll has her asshole tak...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=XB2hd6cC1P"><img src="http://media.8teenxxx.com/vid/884/XB2hd6cC1P/152_setmedium_2.jpg" width="240" height="180" title="Incredible doll has her asshole taking a toll" id="thumbs54" name="thumbs54" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/884/XB2hd6cC1P/152_setmedium_2.jpg','thumbs54');"
onmouseout="Stop('thumbs54'); this.src='http://media.8teenxxx.com/vid/884/XB2hd6cC1P/152_setmedium_2.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">85435 Views (27 Votes)</div>
<div class="date">06-29-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=fCmvEGr2Vu">Horny doll Bree Mitchells just want...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=fCmvEGr2Vu"><img src="http://media.8teenxxx.com/vid/907/fCmvEGr2Vu/familystrokes_bree_mitchells_full_hi_3.jpg" width="240" height="180" title="Horny doll Bree Mitchells just wants to show her lust" id="thumbs55" name="thumbs55" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/907/fCmvEGr2Vu/familystrokes_bree_mitchells_full_hi_3.jpg','thumbs55');"
onmouseout="Stop('thumbs55'); this.src='http://media.8teenxxx.com/vid/907/fCmvEGr2Vu/familystrokes_bree_mitchells_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">3032142 Views (109 Votes)</div>
<div class="date">03-31-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=qcTa4PWHMs">Playing some really dirty games is ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=qcTa4PWHMs"><img src="http://media.8teenxxx.com/vid/10/qcTa4PWHMs/Cute_teen_fucked_in_her_bedroom.jpg" width="240" height="180" title="Playing some really dirty games is how she likes it" id="thumbs56" name="thumbs56" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/qcTa4PWHMs/Cute_teen_fucked_in_her_bedroom.jpg','thumbs56');"
onmouseout="Stop('thumbs56'); this.src='http://media.8teenxxx.com/vid/10/qcTa4PWHMs/Cute_teen_fucked_in_her_bedroom.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">185703 Views (56 Votes)</div>
<div class="date">06-13-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=sI8DkbZGOX">Petite Asian GF getting nailed to t...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=sI8DkbZGOX"><img src="http://media.8teenxxx.com/vid/736/sI8DkbZGOX/cwm181b-AsiaMoviePass_4.jpg" width="240" height="180" title="Petite Asian GF getting nailed to the max" id="thumbs57" name="thumbs57" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/736/sI8DkbZGOX/cwm181b-AsiaMoviePass_4.jpg','thumbs57');"
onmouseout="Stop('thumbs57'); this.src='http://media.8teenxxx.com/vid/736/sI8DkbZGOX/cwm181b-AsiaMoviePass_4.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:30px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">77210 Views (23 Votes)</div>
<div class="date">06-30-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kp5K3Zq9lD">Tiny teen cock gobbler knows how to...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kp5K3Zq9lD"><img src="http://media.8teenxxx.com/vid/908/kp5K3Zq9lD/sislovesme_elsa_jean_full_hi_3.jpg" width="240" height="180" title="Tiny teen cock gobbler knows how to handle a cock" id="thumbs58" name="thumbs58" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/908/kp5K3Zq9lD/sislovesme_elsa_jean_full_hi_3.jpg','thumbs58');"
onmouseout="Stop('thumbs58'); this.src='http://media.8teenxxx.com/vid/908/kp5K3Zq9lD/sislovesme_elsa_jean_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2943619 Views (203 Votes)</div>
<div class="date">03-31-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=TfUWqJ2lxp">Sexy blonde plays with herself whil...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=TfUWqJ2lxp"><img src="http://media.8teenxxx.com/vid/842/TfUWqJ2lxp/vid01(15).jpg" width="240" height="180" title="Sexy blonde plays with herself while taking hot selfies" id="thumbs59" name="thumbs59" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/842/TfUWqJ2lxp/vid01(15).jpg','thumbs59');"
onmouseout="Stop('thumbs59'); this.src='http://media.8teenxxx.com/vid/842/TfUWqJ2lxp/vid01(15).jpg'" /></a>
<div class="img_info">
<div class="duration">09:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5609786 Views (1439 Votes)</div>
<div class="date">01-29-15</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=FH7iymw2Mh">Alluring cock gobbler got her hot h...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=FH7iymw2Mh"><img src="http://media.8teenxxx.com/vid/911/FH7iymw2Mh/rsp_dakota_holly_jl050214_480p_1000_3.jpg" width="240" height="180" title="Alluring cock gobbler got her hot hole nailed" id="thumbs60" name="thumbs60" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/911/FH7iymw2Mh/rsp_dakota_holly_jl050214_480p_1000_3.jpg','thumbs60');"
onmouseout="Stop('thumbs60'); this.src='http://media.8teenxxx.com/vid/911/FH7iymw2Mh/rsp_dakota_holly_jl050214_480p_1000_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">210584 Views (51 Votes)</div>
<div class="date">06-08-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=RI8V92WQZg">Kristy Black goes all out to please...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=RI8V92WQZg"><img src="http://media.8teenxxx.com/vid/926/RI8V92WQZg/TmwVRnet_28_Kristy_Black_960x540_2.jpg" width="240" height="180" title="Kristy Black goes all out to please her man to the max" id="thumbs61" name="thumbs61" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/926/RI8V92WQZg/TmwVRnet_28_Kristy_Black_960x540_2.jpg','thumbs61');"
onmouseout="Stop('thumbs61'); this.src='http://media.8teenxxx.com/vid/926/RI8V92WQZg/TmwVRnet_28_Kristy_Black_960x540_2.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">217002 Views (52 Votes)</div>
<div class="date">06-06-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yFxTtWGkPX">She has her amazing little hole rea...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yFxTtWGkPX"><img src="http://media.8teenxxx.com/vid/793/yFxTtWGkPX/693_m_1.jpg" width="240" height="180" title="She has her amazing little hole ready for anything" id="thumbs62" name="thumbs62" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/793/yFxTtWGkPX/693_m_1.jpg','thumbs62');"
onmouseout="Stop('thumbs62'); this.src='http://media.8teenxxx.com/vid/793/yFxTtWGkPX/693_m_1.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2905 Views (4 Votes)</div>
<div class="date">07-12-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HhZGOVbjmt">Teens desire lead her to do some re...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=HhZGOVbjmt"><img src="http://media.8teenxxx.com/vid/707/HhZGOVbjmt/vid01(16).jpg" width="240" height="180" title="Teens desire lead her to do some really naughty things" id="thumbs63" name="thumbs63" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/707/HhZGOVbjmt/vid01(16).jpg','thumbs63');"
onmouseout="Stop('thumbs63'); this.src='http://media.8teenxxx.com/vid/707/HhZGOVbjmt/vid01(16).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">100080 Views (29 Votes)</div>
<div class="date">06-25-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yaEjFifutH">Layla London knows how to stretch t...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=yaEjFifutH"><img src="http://media.8teenxxx.com/vid/908/yaEjFifutH/sislovesme_layla_london_full_hi_3.jpg" width="240" height="180" title="Layla London knows how to stretch the limits" id="thumbs64" name="thumbs64" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/908/yaEjFifutH/sislovesme_layla_london_full_hi_3.jpg','thumbs64');"
onmouseout="Stop('thumbs64'); this.src='http://media.8teenxxx.com/vid/908/yaEjFifutH/sislovesme_layla_london_full_hi_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">404407 Views (118 Votes)</div>
<div class="date">05-02-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lIiYjZO6K9">Dakota came into the studio a few t...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lIiYjZO6K9"><img src="http://media.8teenxxx.com/vid/304/lIiYjZO6K9/msfmm1_1a.jpg" width="240" height="180" title="Dakota came into the studio a few times and finally admitted she had a thing for older guys. Since we try to give the girls just what they want, Scott said he was game and more than willing to fuck this little teen! Piece of ass is a piece of ass, right" id="thumbs65" name="thumbs65" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/304/lIiYjZO6K9/msfmm1_1a.jpg','thumbs65');"
onmouseout="Stop('thumbs65'); this.src='http://media.8teenxxx.com/vid/304/lIiYjZO6K9/msfmm1_1a.jpg'" /></a>
<div class="img_info">
<div class="duration">02:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">15218998 Views (12480 Votes)</div>
<div class="date">03-18-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kmRd58rpc3">Horny blonde cant wait to fuck in t...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kmRd58rpc3"><img src="http://media.8teenxxx.com/vid/274/kmRd58rpc3/SYST_C09_Tube4.jpg" width="240" height="180" title="Horny blonde cant wait to fuck in the laundry room" id="thumbs66" name="thumbs66" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/274/kmRd58rpc3/SYST_C09_Tube4.jpg','thumbs66');"
onmouseout="Stop('thumbs66'); this.src='http://media.8teenxxx.com/vid/274/kmRd58rpc3/SYST_C09_Tube4.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">12929748 Views (10698 Votes)</div>
<div class="date">04-21-11</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4wztNELYuC">Intense pussy pounding makes her wa...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4wztNELYuC"><img src="http://media.8teenxxx.com/vid/793/4wztNELYuC/840_m_2.jpg" width="240" height="180" title="Intense pussy pounding makes her want more" id="thumbs67" name="thumbs67" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/793/4wztNELYuC/840_m_2.jpg','thumbs67');"
onmouseout="Stop('thumbs67'); this.src='http://media.8teenxxx.com/vid/793/4wztNELYuC/840_m_2.jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">77901 Views (26 Votes)</div>
<div class="date">06-28-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=gbEmNQiqa9">Stunning brunette eats her blonde f...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=gbEmNQiqa9"><img src="http://media.8teenxxx.com/vid/822/gbEmNQiqa9/za10956-480p_3258_3680.jpg" width="240" height="180" title="Stunning brunette eats her blonde friends gorgeous pussy" id="thumbs68" name="thumbs68" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/822/gbEmNQiqa9/za10956-480p_3258_3680.jpg','thumbs68');"
onmouseout="Stop('thumbs68'); this.src='http://media.8teenxxx.com/vid/822/gbEmNQiqa9/za10956-480p_3258_3680.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">362745 Views (62 Votes)</div>
<div class="date">05-08-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=ohivSe1mBF">An Asian teenage girl is on the bed...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=ohivSe1mBF"><img src="http://media.8teenxxx.com/vid/13/ohivSe1mBF/640x480.jpg" width="240" height="180" title="An Asian teenage girl is on the bed. A guy who is next to her is stroking her tits through the material of her top. A little later she is on her back, her top and skirt lifted up, with the guy fucking her and playing with her nipples until he comes inside her." id="thumbs69" name="thumbs69" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/13/ohivSe1mBF/640x480.jpg','thumbs69');"
onmouseout="Stop('thumbs69'); this.src='http://media.8teenxxx.com/vid/13/ohivSe1mBF/640x480.jpg'" /></a>
<div class="img_info">
<div class="duration">00:57</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">13249352 Views (8301 Votes)</div>
<div class="date">01-19-11</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=qyKB1h3ur2">She just wants a real man to pound ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=qyKB1h3ur2"><img src="http://media.8teenxxx.com/vid/17/qyKB1h3ur2/lara_vid_porn_rop322_fullcomplete_1.jpg" width="240" height="180" title="She just wants a real man to pound her pussy right" id="thumbs70" name="thumbs70" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/17/qyKB1h3ur2/lara_vid_porn_rop322_fullcomplete_1.jpg','thumbs70');"
onmouseout="Stop('thumbs70'); this.src='http://media.8teenxxx.com/vid/17/qyKB1h3ur2/lara_vid_porn_rop322_fullcomplete_1.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">1280337 Views (240 Votes)</div>
<div class="date">11-21-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=jbTqZ2as0p">All this horny doll craves for is s...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=jbTqZ2as0p"><img src="http://media.8teenxxx.com/vid/849/jbTqZ2as0p/85_setiPod_5.jpg" width="240" height="180" title="All this horny doll craves for is some intense action" id="thumbs71" name="thumbs71" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/849/jbTqZ2as0p/85_setiPod_5.jpg','thumbs71');"
onmouseout="Stop('thumbs71'); this.src='http://media.8teenxxx.com/vid/849/jbTqZ2as0p/85_setiPod_5.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">4687 Views (3 Votes)</div>
<div class="date">07-11-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=2iaJurK3VZ">Her overwhelming lust burns the bot...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=2iaJurK3VZ"><img src="http://media.8teenxxx.com/vid/842/2iaJurK3VZ/vid01(45).jpg" width="240" height="180" title="Her overwhelming lust burns the both of them" id="thumbs72" name="thumbs72" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/842/2iaJurK3VZ/vid01(45).jpg','thumbs72');"
onmouseout="Stop('thumbs72'); this.src='http://media.8teenxxx.com/vid/842/2iaJurK3VZ/vid01(45).jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5311592 Views (1460 Votes)</div>
<div class="date">11-14-14</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=AXhmvRSjw8">College rules with so much naked bo...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=AXhmvRSjw8"><img src="http://media.8teenxxx.com/vid/889/AXhmvRSjw8/cr7835-480p_3.jpg" width="240" height="180" title="College rules with so much naked booties" id="thumbs73" name="thumbs73" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/889/AXhmvRSjw8/cr7835-480p_3.jpg','thumbs73');"
onmouseout="Stop('thumbs73'); this.src='http://media.8teenxxx.com/vid/889/AXhmvRSjw8/cr7835-480p_3.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">59329 Views (23 Votes)</div>
<div class="date">07-01-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=KQLvN2tRrn">Dear Diary...I Luv Big Cock!...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=KQLvN2tRrn"><img src="http://media.8teenxxx.com/vid/168/KQLvN2tRrn/mem1.jpg" width="240" height="180" title="Dear Diary...I Luv Big Cock!" id="thumbs74" name="thumbs74" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/168/KQLvN2tRrn/mem1.jpg','thumbs74');"
onmouseout="Stop('thumbs74'); this.src='http://media.8teenxxx.com/vid/168/KQLvN2tRrn/mem1.jpg'" /></a>
<div class="img_info">
<div class="duration">03:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">13705647 Views (14679 Votes)</div>
<div class="date">08-22-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QpYMnyXo9N">Blowjob-loving pornstars give head ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QpYMnyXo9N"><img src="http://media.8teenxxx.com/vid/369/QpYMnyXo9N/8.jpg" width="240" height="180" title="Blowjob-loving pornstars give head and fuck in this 3some" id="thumbs75" name="thumbs75" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/369/QpYMnyXo9N/8.jpg','thumbs75');"
onmouseout="Stop('thumbs75'); this.src='http://media.8teenxxx.com/vid/369/QpYMnyXo9N/8.jpg'" /></a>
<div class="img_info">
<div class="duration">03:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">12630498 Views (11600 Votes)</div>
<div class="date">02-25-11</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=g9B18nN7DK">Petite doll has her pussy nailed to...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=g9B18nN7DK"><img src="http://media.8teenxxx.com/vid/828/g9B18nN7DK/pup_eva_berger_ww091915_480p_1000_5.jpg" width="240" height="180" title="Petite doll has her pussy nailed to the max" id="thumbs76" name="thumbs76" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/828/g9B18nN7DK/pup_eva_berger_ww091915_480p_1000_5.jpg','thumbs76');"
onmouseout="Stop('thumbs76'); this.src='http://media.8teenxxx.com/vid/828/g9B18nN7DK/pup_eva_berger_ww091915_480p_1000_5.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">10834 Views (7 Votes)</div>
<div class="date">07-10-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=n1zo6XKFN4">Amazing Carre has hot sex wit her c...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=n1zo6XKFN4"><img src="http://media.8teenxxx.com/vid/10/n1zo6XKFN4/Carre_seduced_by_classmate.jpg" width="240" height="180" title="Amazing Carre has hot sex wit her classmate" id="thumbs77" name="thumbs77" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/n1zo6XKFN4/Carre_seduced_by_classmate.jpg','thumbs77');"
onmouseout="Stop('thumbs77'); this.src='http://media.8teenxxx.com/vid/10/n1zo6XKFN4/Carre_seduced_by_classmate.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2373306 Views (554 Votes)</div>
<div class="date">04-17-16</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=FlzS8VWI1K">Kasey Warner goes wild on a dick ri...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=FlzS8VWI1K"><img src="http://media.8teenxxx.com/vid/875/FlzS8VWI1K/innocenthigh_kasey_warner_bestof_med_1.jpg" width="240" height="180" title="Kasey Warner goes wild on a dick ride" id="thumbs78" name="thumbs78" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/875/FlzS8VWI1K/innocenthigh_kasey_warner_bestof_med_1.jpg','thumbs78');"
onmouseout="Stop('thumbs78'); this.src='http://media.8teenxxx.com/vid/875/FlzS8VWI1K/innocenthigh_kasey_warner_bestof_med_1.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">347837 Views (78 Votes)</div>
<div class="date">05-06-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=7f36WQZSlm">Beautiful April Blue has perfect sm...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=7f36WQZSlm"><img src="http://media.8teenxxx.com/vid/816/7f36WQZSlm/scene_trailer.jpg" width="240" height="180" title="Beautiful April Blue has perfect smooth skin a round butt and a picture-perfect pussy that gets filled with cum" id="thumbs79" name="thumbs79" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/816/7f36WQZSlm/scene_trailer.jpg','thumbs79');"
onmouseout="Stop('thumbs79'); this.src='http://media.8teenxxx.com/vid/816/7f36WQZSlm/scene_trailer.jpg'" /></a>
<div class="img_info">
<div class="duration">05:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5767761 Views (2643 Votes)</div>
<div class="date">06-08-14</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lnqybRLvHz">Teen sex movs...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lnqybRLvHz"><img src="http://media.8teenxxx.com/vid/92/lnqybRLvHz/all.jpg" width="240" height="180" title="teen sex movs" id="thumbs80" name="thumbs80" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/92/lnqybRLvHz/all.jpg','thumbs80');"
onmouseout="Stop('thumbs80'); this.src='http://media.8teenxxx.com/vid/92/lnqybRLvHz/all.jpg'" /></a>
<div class="img_info">
<div class="duration">04:30</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">14229408 Views (14157 Votes)</div>
<div class="date">11-15-09</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=jTsvNmUGYl">Alexis Grace loves to record amateu...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=jTsvNmUGYl"><img src="http://media.8teenxxx.com/vid/330/jTsvNmUGYl/mem1.jpg" width="240" height="180" title="Alexis Grace loves to record amateur porn, and luckily her ex sent some over our way when they broke up. This sexy slut has a great pair of big tits that bounce around beautifully as she fucks. They looked even better after he jizzed all over them!" id="thumbs81" name="thumbs81" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/330/jTsvNmUGYl/mem1.jpg','thumbs81');"
onmouseout="Stop('thumbs81'); this.src='http://media.8teenxxx.com/vid/330/jTsvNmUGYl/mem1.jpg'" /></a>
<div class="img_info">
<div class="duration">03:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">5952721 Views (2525 Votes)</div>
<div class="date">04-18-14</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=F7J21KqD5m">Get ready for some serious anal fuc...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=F7J21KqD5m"><img src="http://media.8teenxxx.com/vid/10/F7J21KqD5m/Schoolgirl_fucked_anal.jpg" width="240" height="180" title="Get ready for some serious anal fucking babe" id="thumbs82" name="thumbs82" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/10/F7J21KqD5m/Schoolgirl_fucked_anal.jpg','thumbs82');"
onmouseout="Stop('thumbs82'); this.src='http://media.8teenxxx.com/vid/10/F7J21KqD5m/Schoolgirl_fucked_anal.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">379658 Views (80 Votes)</div>
<div class="date">04-26-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=SzaT6H08Cl">Malina is a black haired shorty tha...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=SzaT6H08Cl"><img src="http://media.8teenxxx.com/vid/1/SzaT6H08Cl/nubiles_malina_long.jpg" width="240" height="180" title="Malina is a black haired shorty that enjoys flaunting her petite body for every hot guy she meets. This sweet spinner always pleases her man as you will see in her hardcore scene!" id="thumbs83" name="thumbs83" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/1/SzaT6H08Cl/nubiles_malina_long.jpg','thumbs83');"
onmouseout="Stop('thumbs83'); this.src='http://media.8teenxxx.com/vid/1/SzaT6H08Cl/nubiles_malina_long.jpg'" /></a>
<div class="img_info">
<div class="duration">04:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">11344954 Views (12036 Votes)</div>
<div class="date">03-28-11</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NyHBtflGWI">The casting couch is always ready f...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NyHBtflGWI"><img src="http://media.8teenxxx.com/vid/860/NyHBtflGWI/castingcouchx_promo_mp4_712_2500(13).jpg" width="240" height="180" title="The casting couch is always ready for some hot teens" id="thumbs84" name="thumbs84" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/860/NyHBtflGWI/castingcouchx_promo_mp4_712_2500(13).jpg','thumbs84');"
onmouseout="Stop('thumbs84'); this.src='http://media.8teenxxx.com/vid/860/NyHBtflGWI/castingcouchx_promo_mp4_712_2500(13).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">4411 Views (4 Votes)</div>
<div class="date">07-11-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=KxFkYUSAe9">Tiny teen got a chance to show her ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=KxFkYUSAe9"><img src="http://media.8teenxxx.com/vid/867/KxFkYUSAe9/pornpros_promo_mp4_712_2500(11).jpg" width="240" height="180" title="Tiny teen got a chance to show her sexy skills" id="thumbs85" name="thumbs85" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/867/KxFkYUSAe9/pornpros_promo_mp4_712_2500(11).jpg','thumbs85');"
onmouseout="Stop('thumbs85'); this.src='http://media.8teenxxx.com/vid/867/KxFkYUSAe9/pornpros_promo_mp4_712_2500(11).jpg'" /></a>
<div class="img_info">
<div class="duration">10:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:60px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">4686 Views (3 Votes)</div>
<div class="date">07-11-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Wfc3AeSUL8">A Bad Schoolgirl Gets Fucked Deep...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Wfc3AeSUL8"><img src="http://media.8teenxxx.com/vid/782/Wfc3AeSUL8/sample_1.jpg" width="240" height="180" title="A Bad Schoolgirl Gets Fucked Deep" id="thumbs86" name="thumbs86" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/782/Wfc3AeSUL8/sample_1.jpg','thumbs86');"
onmouseout="Stop('thumbs86'); this.src='http://media.8teenxxx.com/vid/782/Wfc3AeSUL8/sample_1.jpg'" /></a>
<div class="img_info">
<div class="duration">02:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">12336135 Views (11832 Votes)</div>
<div class="date">06-05-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QlPLd2ocY7">Show me the limits of that pussy...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=QlPLd2ocY7"><img src="http://media.8teenxxx.com/vid/834/QlPLd2ocY7/1314278390_lara-mp4-1_3.jpg" width="240" height="180" title="Show me the limits of that pussy" id="thumbs87" name="thumbs87" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/834/QlPLd2ocY7/1314278390_lara-mp4-1_3.jpg','thumbs87');"
onmouseout="Stop('thumbs87'); this.src='http://media.8teenxxx.com/vid/834/QlPLd2ocY7/1314278390_lara-mp4-1_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">185057 Views (53 Votes)</div>
<div class="date">06-03-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6NoKVIeFlz">Wonderful teen sensation got her in...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=6NoKVIeFlz"><img src="http://media.8teenxxx.com/vid/364/6NoKVIeFlz/fmj_maryann_walker_6.jpg" width="240" height="180" title="Wonderful teen sensation got her incredible pussy pounded" id="thumbs88" name="thumbs88" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/364/6NoKVIeFlz/fmj_maryann_walker_6.jpg','thumbs88');"
onmouseout="Stop('thumbs88'); this.src='http://media.8teenxxx.com/vid/364/6NoKVIeFlz/fmj_maryann_walker_6.jpg'" /></a>
<div class="img_info">
<div class="duration">05:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">78784 Views (33 Votes)</div>
<div class="date">06-25-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=a0WVdcOxET">Amazing teenage beauty has the hott...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=a0WVdcOxET"><img src="http://media.8teenxxx.com/vid/89/a0WVdcOxET/119_setmedium_3.jpg" width="240" height="180" title="Amazing teenage beauty has the hottest bang" id="thumbs89" name="thumbs89" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/89/a0WVdcOxET/119_setmedium_3.jpg','thumbs89');"
onmouseout="Stop('thumbs89'); this.src='http://media.8teenxxx.com/vid/89/a0WVdcOxET/119_setmedium_3.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">222944 Views (79 Votes)</div>
<div class="date">05-24-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lRmUMPN5YB">Proper teen doll has her sweet ass ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=lRmUMPN5YB"><img src="http://media.8teenxxx.com/vid/900/lRmUMPN5YB/teensloveanal_valentina_nappi_full_med_2.jpg" width="240" height="180" title="Proper teen doll has her sweet ass nailed" id="thumbs90" name="thumbs90" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/900/lRmUMPN5YB/teensloveanal_valentina_nappi_full_med_2.jpg','thumbs90');"
onmouseout="Stop('thumbs90'); this.src='http://media.8teenxxx.com/vid/900/lRmUMPN5YB/teensloveanal_valentina_nappi_full_med_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:54px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">502005 Views (116 Votes)</div>
<div class="date">03-23-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=BviAjUx092">Carley has one tight teen body, she...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=BviAjUx092"><img src="http://media.8teenxxx.com/vid/1/BviAjUx092/nubiles_carley_long.jpg" width="240" height="180" title="Carley has one tight teen body, she is new to modeling, however seems to have a handle on things. Catch her vids and see her play with her lovely shaved pussy and get hardcore with her special friend!" id="thumbs91" name="thumbs91" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/1/BviAjUx092/nubiles_carley_long.jpg','thumbs91');"
onmouseout="Stop('thumbs91'); this.src='http://media.8teenxxx.com/vid/1/BviAjUx092/nubiles_carley_long.jpg'" /></a>
<div class="img_info">
<div class="duration">03:01</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">11947535 Views (10786 Votes)</div>
<div class="date">04-06-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=c5kFLI69aJ">Sexy brunette has her friend toying...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=c5kFLI69aJ"><img src="http://media.8teenxxx.com/vid/12/c5kFLI69aJ/yb_jenny_n_ros358-a_vid_fullcomplete_1.jpg" width="240" height="180" title="Sexy brunette has her friend toying her hot pussy" id="thumbs92" name="thumbs92" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/12/c5kFLI69aJ/yb_jenny_n_ros358-a_vid_fullcomplete_1.jpg','thumbs92');"
onmouseout="Stop('thumbs92'); this.src='http://media.8teenxxx.com/vid/12/c5kFLI69aJ/yb_jenny_n_ros358-a_vid_fullcomplete_1.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">518884 Views (118 Votes)</div>
<div class="date">03-19-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3b9EC2nlvy">Bree playing with big boobs and wet...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=3b9EC2nlvy"><img src="http://media.8teenxxx.com/vid/57/3b9EC2nlvy/8.jpg" width="240" height="180" title="Bree playing with big boobs and wet tiny clit" id="thumbs93" name="thumbs93" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/57/3b9EC2nlvy/8.jpg','thumbs93');"
onmouseout="Stop('thumbs93'); this.src='http://media.8teenxxx.com/vid/57/3b9EC2nlvy/8.jpg'" /></a>
<div class="img_info">
<div class="duration">02:40</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">12445176 Views (6465 Votes)</div>
<div class="date">10-17-09</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4uRUfsavZX">Homemade dick POV videos are one of...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=4uRUfsavZX"><img src="http://media.8teenxxx.com/vid/890/4uRUfsavZX/gf10055-480p_3.jpg" width="240" height="180" title="Homemade dick POV videos are one of their hobbies" id="thumbs94" name="thumbs94" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/890/4uRUfsavZX/gf10055-480p_3.jpg','thumbs94');"
onmouseout="Stop('thumbs94'); this.src='http://media.8teenxxx.com/vid/890/4uRUfsavZX/gf10055-480p_3.jpg'" /></a>
<div class="img_info">
<div class="duration">07:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">118333 Views (35 Votes)</div>
<div class="date">06-15-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=81iUljvDn5">Her sweet booty got fucked multiple...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=81iUljvDn5"><img src="http://media.8teenxxx.com/vid/881/81iUljvDn5/425_setmedium_4.jpg" width="240" height="180" title="Her sweet booty got fucked multiple times" id="thumbs95" name="thumbs95" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/881/81iUljvDn5/425_setmedium_4.jpg','thumbs95');"
onmouseout="Stop('thumbs95'); this.src='http://media.8teenxxx.com/vid/881/81iUljvDn5/425_setmedium_4.jpg'" /></a>
<div class="img_info">
<div class="duration">06:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">2827177 Views (762 Votes)</div>
<div class="date">09-21-15</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kDTWIaZzQe">Kozue takes it deep in her hairy pu...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=kDTWIaZzQe"><img src="http://media.8teenxxx.com/vid/761/kDTWIaZzQe/01.jpg" width="240" height="180" title="Kozue takes it deep in her hairy pussy" id="thumbs96" name="thumbs96" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/761/kDTWIaZzQe/01.jpg','thumbs96');"
onmouseout="Stop('thumbs96'); this.src='http://media.8teenxxx.com/vid/761/kDTWIaZzQe/01.jpg'" /></a>
<div class="img_info">
<div class="duration">02:57</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">10533186 Views (8877 Votes)</div>
<div class="date">09-06-10</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=zSpnTeBYly">Petite doll has her pink pussy taki...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=zSpnTeBYly"><img src="http://media.8teenxxx.com/vid/834/zSpnTeBYly/1325526300_demida-mp4-1_2.jpg" width="240" height="180" title="Petite doll has her pink pussy taking a toll" id="thumbs97" name="thumbs97" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/834/zSpnTeBYly/1325526300_demida-mp4-1_2.jpg','thumbs97');"
onmouseout="Stop('thumbs97'); this.src='http://media.8teenxxx.com/vid/834/zSpnTeBYly/1325526300_demida-mp4-1_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">682304 Views (156 Votes)</div>
<div class="date">01-30-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Z0pvGVfSXs">Tight doll has her tiny ass taking ...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=Z0pvGVfSXs"><img src="http://media.8teenxxx.com/vid/275/Z0pvGVfSXs/329_stream_2.jpg" width="240" height="180" title="Tight doll has her tiny ass taking a toll" id="thumbs98" name="thumbs98" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/275/Z0pvGVfSXs/329_stream_2.jpg','thumbs98');"
onmouseout="Stop('thumbs98'); this.src='http://media.8teenxxx.com/vid/275/Z0pvGVfSXs/329_stream_2.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">771222 Views (144 Votes)</div>
<div class="date">01-08-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=65KZ9pcBbr">Tight teen doll knows how to please...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=65KZ9pcBbr"><img src="http://media.8teenxxx.com/vid/834/65KZ9pcBbr/1330878198_dania-mp4-1_3.jpg" width="240" height="180" title="Tight teen doll knows how to please a real man" id="thumbs99" name="thumbs99" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/834/65KZ9pcBbr/1330878198_dania-mp4-1_3.jpg','thumbs99');"
onmouseout="Stop('thumbs99'); this.src='http://media.8teenxxx.com/vid/834/65KZ9pcBbr/1330878198_dania-mp4-1_3.jpg'" /></a>
<div class="img_info">
<div class="duration">08:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:48px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">305728 Views (80 Votes)</div>
<div class="date">04-29-17</div>
</div>
<div style="clear:left"></div>
</div><div class="img">
<div class="settings"></div>
<div class="title">
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NKVYweT4vH">Smiling teen cuttie gets massaged b...</a>
</div>
<a target='_blank' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?c=0&s=100&l=index&u=http://www.8teenxxx.com/watch.php?tag=NKVYweT4vH"><img src="http://media.8teenxxx.com/vid/89/NKVYweT4vH/all.jpg" width="240" height="180" title="Smiling teen cuttie gets massaged by her BF and banged by his boner" id="thumbs100" name="thumbs100" alt="video"onmouseover="Start('http://media.8teenxxx.com/vid/89/NKVYweT4vH/all.jpg','thumbs100');"
onmouseout="Stop('thumbs100'); this.src='http://media.8teenxxx.com/vid/89/NKVYweT4vH/all.jpg'" /></a>
<div class="img_info">
<div class="duration">03:00</div>
<div align="right"><span class="inline-rating">
<ul class="star-rating small-star">
<li class="current-rating" style="width:42px;"></li>
</ul>
</span></div>
<div style="clear:left"></div>
</div>
<div class="img_info">
<div class="votes">7783578 Views (5948 Votes)</div>
<div class="date">05-10-12</div>
</div>
<div style="clear:left"></div>
</div></div>
</div>
<div style="clear:both"></div>
<div id="page-bottom"><div class='pagination'>( 1 - 100 of about 84416 ) - Browse Pages: <span class=pagerCurrent>1</span><a href="?home&p=2" class=pagerNotCurrent >2</a><a href="?home&p=3" class=pagerNotCurrent >3</a><a href="?home&p=4" class=pagerNotCurrent >4</a><a href="?home&p=5" class=pagerNotCurrent >5</a><a href="?home&p=6" class=pagerNotCurrent >6</a><a href="?home&p=7" class=pagerNotCurrent >7</a><a href="?home&p=8" class=pagerNotCurrent >8</a>... <a href="?home&p=2" class=pagerNotCurrent >Next »</a> </div></div>
<!-- End of content -->
</div>
<div class="clear"></div>
<!-- End of main_body -->
</div>
<div align=center width=100% style="max-width:1250px;text-align:center;margin:auto;">
<style>
a.d:link {color: #CCCCCC; font-size:17pt; font-family:arial;}
a.d:visited {color: #CCCCCC; font-size:17pt; font-family:arial;}
a.d:hover {color: #ffffff; font-size:17pt; font-family:arial;}
a.d:active {color: #CCCCCC; font-size:17pt; font-family:arial;}
.d {color: #ffffff; font-size:17pt; font-family:Arial;text-align:left;}
a.b:link {color: #CCCCCC; font-size:13pt; font-family:Arial;}
a.b:visited {color: #CCCCCC; font-size:13pt; font-family:Arial;}
a.b:hover {color: #ffffff; font-size:13pt; font-family:Arial;}
a.b:active {color: #CCCCCC; font-size:13pt; font-family:Arial;}
.b {color: #ffffff; font-size:13pt; font-family:Arial;text-align:left;}
a.c:link {color: #CCCCCC; font-size:9pt; font-family:Arial;}
a.c:visited {color: #CCCCCC; font-size:9pt; font-family:Arial;}
a.c:hover {color: #ffffff; font-size:9pt; font-family:Arial;}
a.c:active {color: #CCCCCC; font-size:9pt; font-family:Arial;}
.c {color: #ffffff; font-size:9pt; font-family:Arial;text-align:left;}
.e {color: #ffffff; font-size:17pt; font-family:Arial;text-align:center;}
#toplist4 {
max-width : 1275px;
margin-top : 0px;
margin-left : auto;
margin-right: auto;
margin-bottom: 40px;
padding : 0;
color: #CCCCCC;
text-align : center;
margin: 0 auto;
}
#toplist4 #toplist4_display a{
color : #CCCCCC;
text-decoration: none;
font-family: Arial;
font-size: 13pt;
text-decoration: underline;
margin: 0 auto;
}
#toplist4 #toplist4_display #toplist4_thumbs {
width: auto;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
}
#toplist4 #toplist4_display a img{
border: 1px solid #ffffff;
}
#toplist4 #toplist4_display #toplist4_thumbs .toplist4img {
width : 185px;
height : auto;
margin : 3px 0px 3px 0px;
padding : 3px 0px 3px 0px;
display:inline-block;
*display: inline;
zoom: 1;
}
</style>
<br>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr align="center">
<td align="center"><div class='e'>Full List Of All My Friends Porn Links Sites - They All Have Free Porn Links Like 8 Teen XXX</div></td>
</tr>
</table>
<br>
<div id="toplist4">
<div id="toplist4_display">
<div id="toplist4_thumbs">
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=214&tag=topthumbs&trade=http://www.elephantlist.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/elephantlist.jpg"><br>Elephant Teens</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=367&tag=topthumbs&trade=http://www.18schoolgirlz.me/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/18schoolgirlzme.jpg"><br>18 Schoolgirlz</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=355&tag=topthumbs&trade=http://www.18tubehd.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/18tubehd.jpg"><br>18 Tube HD</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=365&tag=topthumbs&trade=http://www.nineteentube.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/nineteentube.jpg"><br>Nineteen Tube</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=380&tag=topthumbs&trade=http://www.freepornvideo.sex/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/freepornvideo.jpg"><br>Free Porn Video</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=364&tag=topthumbs&trade=http://www.18porno.tv/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/18porno.jpg"><br>18 Porno</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=215&tag=topthumbs&trade=http://www.ultradonkey.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/ultradonkey.jpg"><br>UltraDonkey Teens</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=239&tag=topthumbs&trade=http://www.18teenieshub.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/18teenieshub.jpg"><br>18 Teenies Hub</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=370&tag=topthumbs&trade=http://www.fuckthathussy.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/fuckthathussy.jpg"><br>Fuck That Hussy</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=352&tag=topthumbs&trade=http://www.teenpornvideo.xxx/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/teenpornvideo.jpg"><br>Teen Porn Video</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=357&tag=topthumbs&trade=http://www.tube18.sex/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/tube18.jpg"><br>Tube 18 Sex</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=325&tag=topthumbs&trade=http://www.youngxxx18.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/youngxxx18.jpg"><br>Young XXX 18</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=271&tag=topthumbs&trade=http://www.teenagefucking.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/teenagefucking.jpg"><br>Teenage Fucking</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=304&tag=topthumbs&trade=http://watchmynewgf.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/watchmynewgf.jpg"><br>Watch My New GF</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=218&tag=topthumbs&trade=http://www.freshteenvideos.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/freshteenvideos.jpg"><br>Fresh Teen Videos</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=303&tag=topthumbs&trade=http://www.18-schoolgirlz.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/18-schoolgirlz.jpg"><br>18 Schoolgirlz</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=17&tag=topthumbs&trade=http://www.japanesefuck.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/japanesefuck.jpg"><br>Japanese Fuck</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=377&tag=topthumbs&trade=http://www.freeteenporn.xxx/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/freeteenporn.jpg"><br>Free Teen Porn</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=295&tag=topthumbs&trade=http://teensextube.xxx/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/teensextube.jpg"><br>Teen Sex Tube</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=11&tag=topthumbs&trade=http://www.boneme.com/tgp.htm" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/boneme.jpg"><br>Boneme Teens</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=299&tag=topthumbs&trade=http://www.teenfucktory.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/teenfucktory.jpg"><br>Teen Fucktory</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=238&tag=topthumbs&trade=http://www.3movs.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/3movs.jpg"><br>18 Porn Movies</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=160&tag=topthumbs&trade=http://www.hdteensexvideos.com/" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/hdteensexvideos.jpg"><br>HD Teen Sex Videos</a></div>
<div class="toplist4img"><a href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?l=freeteenporn" TARGET="_blank"><img width=180 height=135 src="http://media.8teenxxx.com/thumbs/toplist/random.jpg"><br>Free Teen Porn</a></div>
</div></div></div>
<div style="clear:both;"></div>
<br>
<table align=center width=99% cellspacing=0 cellpadding=0 border=0>
<tr>
<td><div class='d'><b>
01. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=214&tag=bottom1&trade=http://www.elephantlist.com/" TARGET="_blank">Elephant Teens</a><br>
02. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=367&tag=bottom1&trade=http://www.18schoolgirlz.me/" TARGET="_blank">18 Schoolgirlz</a><br>
03. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=355&tag=bottom1&trade=http://www.18tubehd.com/" TARGET="_blank">18 Tube HD</a><br>
04. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=365&tag=bottom1&trade=http://www.nineteentube.com/" TARGET="_blank">Nineteen Tube</a><br>
05. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=380&tag=bottom1&trade=http://www.freepornvideo.sex/" TARGET="_blank">Free Porn Video</a><br>
</b></div></td>
<td><div class='d'><b>
06. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=364&tag=bottom1&trade=http://www.18porno.tv/" TARGET="_blank">18 Porno</a><br>
07. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=215&tag=bottom1&trade=http://www.ultradonkey.com/" TARGET="_blank">UltraDonkey Teens</a><br>
08. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=239&tag=bottom1&trade=http://www.18teenieshub.com/" TARGET="_blank">18 Teenies Hub</a><br>
09. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=370&tag=bottom1&trade=http://www.fuckthathussy.com/" TARGET="_blank">Fuck That Hussy</a><br>
10. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=352&tag=bottom1&trade=http://www.teenpornvideo.xxx/" TARGET="_blank">Teen Porn Video</a><br>
</b></div></td>
<td><div class='bottomtopbig3'><div class='d'><b>
11. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=357&tag=bottom1&trade=http://www.tube18.sex/" TARGET="_blank">Tube 18 Sex</a><br>
12. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=325&tag=bottom1&trade=http://www.youngxxx18.com/" TARGET="_blank">Young XXX 18</a><br>
13. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=271&tag=bottom1&trade=http://www.teenagefucking.com/" TARGET="_blank">Teenage Fucking</a><br>
14. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=304&tag=bottom1&trade=http://watchmynewgf.com/" TARGET="_blank">Watch My New GF</a><br>
15. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=218&tag=bottom1&trade=http://www.freshteenvideos.com/" TARGET="_blank">Fresh Teen Videos</a><br>
</b></div></div></td>
<td><div class='bottomtopbig4'><div class='d'><b>
16. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=303&tag=bottom1&trade=http://www.18-schoolgirlz.com/" TARGET="_blank">18 Schoolgirlz</a><br>
17. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=17&tag=bottom1&trade=http://www.japanesefuck.com/" TARGET="_blank">Japanese Fuck</a><br>
18. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=377&tag=bottom1&trade=http://www.freeteenporn.xxx/" TARGET="_blank">Free Teen Porn</a><br>
19. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=295&tag=bottom1&trade=http://teensextube.xxx/" TARGET="_blank">Teen Sex Tube</a><br>
20. <a class='d' href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=11&tag=bottom1&trade=http://www.boneme.com/tgp.htm" TARGET="_blank">Boneme Teens</a><br>
</b></div></div></td>
</tr>
</table>
<br><br>
<table align=center width=99% cellspacing=0 cellpadding=0 border=0>
<tr>
<td><div class=b><b>
21. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=299&tag=bottom2&trade=http://www.teenfucktory.com/" TARGET="_blank">Teen Fucktory</a><br>
22. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=238&tag=bottom2&trade=http://www.3movs.com/" TARGET="_blank">18 Porn Movies</a><br>
23. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=160&tag=bottom2&trade=http://www.hdteensexvideos.com/" TARGET="_blank">HD Teen Sex Videos</a><br>
24. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=147&tag=bottom2&trade=http://www.freeones.com/cgi-bin/referer/ctc.cgi?62384697&url=http://www.freeones.com/categories/cheerleaders/" TARGET="_blank">Free Ones</a><br>
25. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=243&tag=bottom2&trade=http://www.superhqporn.com/" TARGET="_blank">Super HQ Porn</a><br>
26. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=318&tag=bottom2&trade=http://www.teen18hd.com/" TARGET="_blank">Teen 18 HD</a><br>
</b></div></td>
<td><div class=b><b>
27. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=358&tag=bottom2&trade=http://www.freehqsex.com/" TARGET="_blank">Free HQ Sex</a><br>
28. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=19&tag=bottom2&trade=http://www.teenfuckin.com/" TARGET="_blank">Teens Fucking</a><br>
29. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=247&tag=bottom2&trade=http://www.swegold.com" TARGET="_blank">Golden Teen Links</a><br>
30. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=13&tag=bottom2&trade=http://www.allasiangals.com/" TARGET="_blank">Asian Teen Porn</a><br>
31. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=324&tag=bottom2&trade=http://www.youngsexhd.com/" TARGET="_blank">Young Sex HD</a><br>
32. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=118&tag=bottom2&trade=http://www.lighthouseangels.net/" TARGET="_blank">Lil' Angels</a><br>
</b></div></td>
<td><div class=b><b>
33. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=362&tag=bottom2&trade=http://www.freeporno.xxx/" TARGET="_blank">Free Porno</a><br>
34. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=290&tag=bottom2&trade=http://www.atvids.com/" TARGET="_blank">Amateur Teen Videos</a><br>
35. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=345&tag=bottom2&trade=http://www.elephanttubelist.com/" TARGET="_blank">Elephant Tube</a><br>
36. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=234&tag=bottom2&trade=http://www.tiny18tube.com/" TARGET="_blank">Tiny Teen Tube</a><br>
37. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=301&tag=bottom2&trade=http://www.youngelicious.com/" TARGET="_blank">Youngelicious</a><br>
38. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=42&tag=bottom2&trade=http://www.massgals.com/" TARGET="_blank">Mass Teen Porn</a><br>
</b></div></td>
<td><div class=b><b>
39. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=108&tag=bottom2&trade=http://www.lighthouseteenseries.com/" TARGET="_blank">Lighthouse Teenies</a><br>
40. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=302&tag=bottom2&trade=http://www.3pornstarmovies.com/" TARGET="_blank">Pornstar Movies</a><br>
41. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=58&tag=bottom2&trade=http://www.allhentaigals.com/" TARGET="_blank">Hentai Teen Porn</a><br>
42. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=167&tag=bottom2&trade=http://www.jambotube.com/index.php?category=popular&category_id=57" TARGET="_blank">Legal Teen Porn</a><br>
43. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=343&tag=bottom2&trade=http://www.rusteenagers.com/" TARGET="_blank">Rus Teenagers</a><br>
44. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=309&tag=bottom2&trade=http://www.videobank.xxx/?t=63" TARGET="_blank">18 Video Bank</a><br>
</b></div></td>
<td><div class=b><b>
45. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=245&tag=bottom2&trade=http://www.hdsexworld.com/" TARGET="_blank">HD Sex World</a><br>
46. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=286&tag=bottom2&trade=http://www.qruq.com/" TARGET="_blank">Qruq Teen Movies</a><br>
47. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=353&tag=bottom2&trade=http://xxx-hd-teens.com/" TARGET="_blank">XXX HD Teens</a><br>
48. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=90&tag=bottom2&trade=http://www.tonytube.tv/" TARGET="_blank">Tony Tube</a><br>
49. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=368&tag=bottom2&trade=http://www.18andabused.tv/" TARGET="_blank">18 and Abused</a><br>
50. <a class=b href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=116&tag=bottom2&trade=http://www.fruits-depot.com/" TARGET="_blank">Forbidden Teens</a><br>
</b></div></td>
</tr>
</table>
<br><br>
<table align=center width=99% cellspacing=0 cellpadding=0 border=0>
<tr>
<td><div class=c><b>
51. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=233&tag=bottom3&trade=http://www.matureladiesxxx.com/" TARGET="_blank">Mature Porn Tube</a><br>
52. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=18&tag=bottom3&trade=http://www.fuckk.com/tgp.htm" TARGET="_blank">Fuckk Teens</a><br>
53. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=294&tag=bottom3&trade=http://younggirls-sex.com/" TARGET="_blank">Young Girls Sex</a><br>
54. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=284&tag=bottom3&trade=http://www.hornypleasure.com/" TARGET="_blank">Horny Pleasure</a><br>
55. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=289&tag=bottom3&trade=http://www.amateurteentapes.com/" TARGET="_blank">Amateur Teen Tapes</a><br>
56. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=374&tag=bottom3&trade=http://www.teensporn.tv/" TARGET="_blank">Teens Porn TV</a><br>
57. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=283&tag=bottom3&trade=http://www.hd-porn-movies.com/" TARGET="_blank">HD Teen Porn Movies</a><br>
58. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=319&tag=bottom3&trade=http://www.young-pussy.com/" TARGET="_blank">Young Pussy</a><br>
</b></div></td>
<td><div class=c><b>
59. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=165&tag=bottom3&trade=http://www.mellowvirgins.com/" TARGET="_blank">Mellow Virgins</a><br>
60. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=163&tag=bottom3&trade=http://www.lighthousemovies.com/" TARGET="_blank">Teeny Movies</a><br>
61. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=348&tag=bottom3&trade=http://www.real-teen-porn.com/" TARGET="_blank">Real Teen Porn</a><br>
62. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=351&tag=bottom3&trade=http://69teentube.com/" TARGET="_blank">69 Teen Tube</a><br>
63. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=372&tag=bottom3&trade=http://www.riskyteenvideo.com/" TARGET="_blank">Risky Teen Video</a><br>
64. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=354&tag=bottom3&trade=http://teen-tube-18.com/" TARGET="_blank">Teen Tube 18</a><br>
65. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=223&tag=bottom3&trade=http://www.tubesimple.com/" TARGET="_blank">Tube Simple</a><br>
66. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=22&tag=bottom3&trade=http://www.allmaturegals.com/" TARGET="_blank">Mature Porn Videos</a><br>
</b></div></td>
<td><div class=c><b>
67. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=369&tag=bottom3&trade=http://www.2watchmygf.com/" TARGET="_blank">2 Watch My GF</a><br>
68. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=202&tag=bottom3&trade=http://www.yplf.com/" TARGET="_blank">Anal Teen Porn</a><br>
69. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=55&tag=bottom3&trade=http://www.allgrannygals.com/" TARGET="_blank">All Granny Gals</a><br>
70. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=379&tag=bottom3&trade=http://teentube.tv/" TARGET="_blank">Teen Tube TV</a><br>
71. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=164&tag=bottom3&trade=http://www.lighthousehardseries.com/" TARGET="_blank">Hardcore Teenagers</a><br>
72. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=317&tag=bottom3&trade=http://www.18pornhd.com/" TARGET="_blank">18 Porn HD</a><br>
73. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=274&tag=bottom3&trade=http://www.hqasianxxx.com/" TARGET="_blank">HQ Asian XXX</a><br>
74. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=199&tag=bottom3&trade=http://www.teeniebasis.com/" TARGET="_blank">Teenie Basis</a><br>
</b></div></td>
<td><div class=c><b>
75. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=376&tag=bottom3&trade=http://www.hdtube18.com/" TARGET="_blank">HD Tube 18 XXX</a><br>
76. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=85&tag=bottom3&trade=http://www.youngertube.com/" TARGET="_blank">Teen Tube</a><br>
77. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=297&tag=bottom3&trade=http://www.hqteenpornvideos.com/" TARGET="_blank">HQ Teen Porn Videos</a><br>
78. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=46&tag=bottom3&trade=http://www.hannaslinks.com/index.php?category=popular&category_id=139" TARGET="_blank">Hannas Teen Tube</a><br>
79. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=154&tag=bottom3&trade=http://www.stoporn.com/list/tubes.php?id=8teenxxx" TARGET="_blank">Sto Porn Teens</a><br>
80. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=77&tag=bottom3&trade=http://www.teenshunters.com/?ref=8teenxxx.com" TARGET="_blank">Teens Hunters</a><br>
81. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=329&tag=bottom3&trade=http://teenslush.com/" TARGET="_blank">Teen Slush</a><br>
82. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=207&tag=bottom3&trade=http://www.roccotube.com/" TARGET="_blank">Rocco Siffredi</a><br>
</b></div></td>
<td><div class=c><b>
83. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=293&tag=bottom3&trade=http://www.delightmovies.com/" TARGET="_blank">Free Porn Movies</a><br>
84. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=360&tag=bottom3&trade=http://www.gfs.im/" TARGET="_blank">Teen Gfs</a><br>
85. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=231&tag=bottom3&trade=http://www.mspussy.com/" TARGET="_blank">Pussy Tube</a><br>
86. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=115&tag=bottom3&trade=http://www.thetinytube.com/" TARGET="_blank">The Tiny Tube</a><br>
87. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=328&tag=bottom3&trade=http://youngporn.club/" TARGET="_blank">Young Porn Club</a><br>
88. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=285&tag=bottom3&trade=http://www.gamma-movies.com/" TARGET="_blank">Gamma Movies</a><br>
89. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=43&tag=bottom3&trade=http://www.69style.com/" TARGET="_blank">69 Style Teens</a><br>
90. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=105&tag=bottom3&trade=http://www.allhousewifegals.com/" TARGET="_blank">All Housewife Gals</a><br>
</b></div></td>
<td><div class=c><b>
91. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=66&tag=bottom3&trade=http://www.booketube.com/" TARGET="_blank">Booke Tube</a><br>
92. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=187&tag=bottom3&trade=http://www.xxx-porno-tube.com/" TARGET="_blank">XXX Porno Tube</a><br>
93. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=37&tag=bottom3&trade=http://www.allgaygals.com/" TARGET="_blank">All Gay Gals</a><br>
94. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=168&tag=bottom3&trade=http://www.cjtube.com/" TARGET="_blank">Free Teen Tube</a><br>
95. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=136&tag=bottom3&trade=http://www.hardcoreteentube.com/" TARGET="_blank">Hardcore Teen Tube</a><br>
96. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=276&tag=bottom3&trade=http://www.freehqpornmovies.com/" TARGET="_blank">Free HQ Porn Movies</a><br>
97. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=331&tag=bottom3&trade=http://www.teenpornia.com/" TARGET="_blank">Teen Pornia</a><br>
98. <a class=c href="http://www.8teenxxx.com/cgi-bin/atx/out.cgi?id=24&tag=bottom3&trade=http://www.allpantygals.com/" TARGET="_blank">All Panty Gals</a><br>
</b></div></td>
</tr>
</table><br>
</div>
<div align=center width=100% style="max-width:1290px;text-align:center;margin:auto;"><div id="footerad4">
<div id="footerad4_display">
<div id="footerad4_thumbs">
<div class="footerad4img">
<script type="text/javascript">
ad_idzone = "1573476";
ad_width = "300";
ad_height = "250";
</script>
<script type="text/javascript" src="https://ads.exoclick.com/ads.js"></script>
<noscript><a href="http://main.exoclick.com/img-click.php?idzone=1573476" target="_blank"><img src="https://syndication.exoclick.com/ads-iframe-display.php?idzone=1573476&output=img&type=300x250" width="300" height="250"></a></noscript>
<script type="text/javascript">
//Code to add zones can be placed multiple times on page
ExoLoader.addZone({"type": "banner", "width":"300", "height":"250", "idzone":"1573476"});
//If you want to use sub id, add a numeric sub parameter to object, passed to addZone
//ExoLoader.addZone({"type": "banner", "width":"468", "height":"60", "idzone":"111", "sub": "1"});
</script>
</div>
<div class="footerad4img">
<script type="text/javascript">
ad_idzone = "1573478";
ad_width = "300";
ad_height = "250";
</script>
<script type="text/javascript" src="https://ads.exoclick.com/ads.js"></script>
<noscript><a href="http://main.exoclick.com/img-click.php?idzone=1573478" target="_blank"><img src="https://syndication.exoclick.com/ads-iframe-display.php?idzone=1573478&output=img&type=300x250" width="300" height="250"></a></noscript>
<script type="text/javascript">
//Code to add zones can be placed multiple times on page
ExoLoader.addZone({"type": "banner", "width":"300", "height":"250", "idzone":"1573478"});
//If you want to use sub id, add a numeric sub parameter to object, passed to addZone
//ExoLoader.addZone({"type": "banner", "width":"468", "height":"60", "idzone":"111", "sub": "1"});
</script>
</div>
<div class="footerad4img">
<script type="text/javascript">
ad_idzone = "1573480";
ad_width = "300";
ad_height = "250";
</script>
<script type="text/javascript" src="https://ads.exoclick.com/ads.js"></script>
<noscript><a href="http://main.exoclick.com/img-click.php?idzone=1573480" target="_blank"><img src="https://syndication.exoclick.com/ads-iframe-display.php?idzone=1573480&output=img&type=300x250" width="300" height="250"></a></noscript>
<script type="text/javascript">
//Code to add zones can be placed multiple times on page
ExoLoader.addZone({"type": "banner", "width":"300", "height":"250", "idzone":"1573480"});
//If you want to use sub id, add a numeric sub parameter to object, passed to addZone
//ExoLoader.addZone({"type": "banner", "width":"468", "height":"60", "idzone":"111", "sub": "1"});
</script>
</div>
<div class="footerad4img">
<script type="text/javascript">
ad_idzone = "1573486";
ad_width = "300";
ad_height = "250";
</script>
<script type="text/javascript" src="https://ads.exoclick.com/ads.js"></script>
<noscript><a href="http://main.exoclick.com/img-click.php?idzone=1573486" target="_blank"><img src="https://syndication.exoclick.com/ads-iframe-display.php?idzone=1573486&output=img&type=300x250" width="300" height="250"></a></noscript>
<script type="text/javascript">
//Code to add zones can be placed multiple times on page
ExoLoader.addZone({"type": "banner", "width":"300", "height":"250", "idzone":"1573486"});
//If you want to use sub id, add a numeric sub parameter to object, passed to addZone
//ExoLoader.addZone({"type": "banner", "width":"468", "height":"60", "idzone":"111", "sub": "1"});
</script>
</div>
</div></div></div>
<br>
<div class='e' style="text-align:center;">Dont Forget To Bookmark 8 Teen XXX Or Add It To Your Favorites Before You Forget!</div>
<br><br>
</div>
<script type="text/javascript">
// Place this after all addZone calls. Just once per page to request ad info for all added zones
ExoLoader.serve({"script_url":"/adboom.php"});
</script>
<!-- Footer -->
</div><div class="footer">
Copyright ©
2017 8 Teen XXX. All rights reserved<br />
All models are over 18 years of age.<br /> We have a zero-tolerance policy against illegal pornography.<br />2257 info can be found on each video page.<br />
<a href="http://tubescript.nubiles.net/?coupon=620530">Powered by Nubiles Tube Script</a>
</div>
<div class="floaterad"><script type="text/javascript" src="http://syndication.exoclick.com/splash.php?idzone=1946372&type=4"></script> </div>
<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-47697789-1', '8teenxxx.com');
ga('send', 'pageview');
</script>
</body></html>
| todor-dk/HTML-Renderer | Source/Testing/HtmlRenderer.ExperimentalApp/Data/Files/porn/A25D67A4F35BBFE64B71A6B6F477A255.html | HTML | bsd-3-clause | 171,347 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono:400,500,700&display=fallback">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.sandbox.distributions.extras.NormExpan_gen.expect — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/material.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" 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>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.sandbox.distributions.extras.NormExpan_gen.fit" href="statsmodels.sandbox.distributions.extras.NormExpan_gen.fit.html" />
<link rel="prev" title="statsmodels.sandbox.distributions.extras.NormExpan_gen.entropy" href="statsmodels.sandbox.distributions.extras.NormExpan_gen.entropy.html" />
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../_static/versions.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.sandbox.distributions.extras.NormExpan_gen.expect" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels 0.11.0</span>
<span class="md-header-nav__topic"> statsmodels.sandbox.distributions.extras.NormExpan_gen.expect </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="GET" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../distributions.html" class="md-tabs__link">Distributions</a></li>
<li class="md-tabs__item"><a href="statsmodels.sandbox.distributions.extras.NormExpan_gen.html" class="md-tabs__link">statsmodels.sandbox.distributions.extras.NormExpan_gen</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels 0.11.0</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../stats.html" class="md-nav__link">Statistics <code class="xref py py-mod docutils literal notranslate"><span class="pre">stats</span></code></a>
</li>
<li class="md-nav__item">
<a href="../contingency_tables.html" class="md-nav__link">Contingency tables</a>
</li>
<li class="md-nav__item">
<a href="../imputation.html" class="md-nav__link">Multiple Imputation with Chained Equations</a>
</li>
<li class="md-nav__item">
<a href="../emplike.html" class="md-nav__link">Empirical Likelihood <code class="xref py py-mod docutils literal notranslate"><span class="pre">emplike</span></code></a>
</li>
<li class="md-nav__item">
<a href="../distributions.html" class="md-nav__link">Distributions</a>
</li>
<li class="md-nav__item">
<a href="../graphics.html" class="md-nav__link">Graphics</a>
</li>
<li class="md-nav__item">
<a href="../iolib.html" class="md-nav__link">Input-Output <code class="xref py py-mod docutils literal notranslate"><span class="pre">iolib</span></code></a>
</li>
<li class="md-nav__item">
<a href="../tools.html" class="md-nav__link">Tools</a>
</li>
<li class="md-nav__item">
<a href="../large_data.html" class="md-nav__link">Working with Large Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../optimization.html" class="md-nav__link">Optimization</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.sandbox.distributions.extras.NormExpan_gen.expect.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="generated-statsmodels-sandbox-distributions-extras-normexpan-gen-expect--page-root">statsmodels.sandbox.distributions.extras.NormExpan_gen.expect<a class="headerlink" href="#generated-statsmodels-sandbox-distributions-extras-normexpan-gen-expect--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="method">
<dt id="statsmodels.sandbox.distributions.extras.NormExpan_gen.expect">
<code class="sig-prename descclassname">NormExpan_gen.</code><code class="sig-name descname">expect</code><span class="sig-paren">(</span><em class="sig-param">func=None</em>, <em class="sig-param">args=()</em>, <em class="sig-param">loc=0</em>, <em class="sig-param">scale=1</em>, <em class="sig-param">lb=None</em>, <em class="sig-param">ub=None</em>, <em class="sig-param">conditional=False</em>, <em class="sig-param">**kwds</em><span class="sig-paren">)</span><a class="headerlink" href="#statsmodels.sandbox.distributions.extras.NormExpan_gen.expect" title="Permalink to this definition">¶</a></dt>
<dd><p>Calculate expected value of a function with respect to the
distribution by numerical integration.</p>
<p>The expected value of a function <code class="docutils literal notranslate"><span class="pre">f(x)</span></code> with respect to a
distribution <code class="docutils literal notranslate"><span class="pre">dist</span></code> is defined as:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span> <span class="n">ub</span>
<span class="n">E</span><span class="p">[</span><span class="n">f</span><span class="p">(</span><span class="n">x</span><span class="p">)]</span> <span class="o">=</span> <span class="n">Integral</span><span class="p">(</span><span class="n">f</span><span class="p">(</span><span class="n">x</span><span class="p">)</span> <span class="o">*</span> <span class="n">dist</span><span class="o">.</span><span class="n">pdf</span><span class="p">(</span><span class="n">x</span><span class="p">)),</span>
<span class="n">lb</span>
</pre></div>
</div>
<p>where <code class="docutils literal notranslate"><span class="pre">ub</span></code> and <code class="docutils literal notranslate"><span class="pre">lb</span></code> are arguments and <code class="docutils literal notranslate"><span class="pre">x</span></code> has the <code class="docutils literal notranslate"><span class="pre">dist.pdf(x)</span></code>
distribution. If the bounds <code class="docutils literal notranslate"><span class="pre">lb</span></code> and <code class="docutils literal notranslate"><span class="pre">ub</span></code> correspond to the
support of the distribution, e.g. <code class="docutils literal notranslate"><span class="pre">[-inf,</span> <span class="pre">inf]</span></code> in the default
case, then the integral is the unrestricted expectation of <code class="docutils literal notranslate"><span class="pre">f(x)</span></code>.
Also, the function <code class="docutils literal notranslate"><span class="pre">f(x)</span></code> may be defined such that <code class="docutils literal notranslate"><span class="pre">f(x)</span></code> is <code class="docutils literal notranslate"><span class="pre">0</span></code>
outside a finite interval in which case the expectation is
calculated within the finite range <code class="docutils literal notranslate"><span class="pre">[lb,</span> <span class="pre">ub]</span></code>.</p>
<dl class="field-list">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl>
<dt><strong>func</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#callable" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">callable</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Function for which integral is calculated. Takes only one argument.
The default is the identity mapping f(x) = x.</p>
</dd>
<dt><strong>args</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">tuple</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Shape parameters of the distribution.</p>
</dd>
<dt><strong>loc</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">float</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Location parameter (default=0).</p>
</dd>
<dt><strong>scale</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">float</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Scale parameter (default=1).</p>
</dd>
<dt><strong>lb, ub</strong><span class="classifier"><a class="reference external" href="https://docs.scipy.org/doc/numpy/reference/arrays.scalars.html#arrays-scalars" title="(in NumPy v1.17)"><span class="xref std std-ref">scalar</span></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Lower and upper bound for integration. Default is set to the
support of the distribution.</p>
</dd>
<dt><strong>conditional</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#bltin-boolean-values" title="(in Python v3.8)"><span class="xref std std-ref">bool</span></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>If True, the integral is corrected by the conditional probability
of the integration interval. The return value is the expectation
of the function, conditional on being in the given interval.
Default is False.</p>
</dd>
<dt><strong>Additional keyword arguments are passed to the integration routine.</strong></dt><dd></dd>
</dl>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><dl>
<dt><strong>expect</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">float</span></code></a></span></dt><dd><p>The calculated expected value.</p>
</dd>
</dl>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The integration behavior of this function is inherited from
<cite>scipy.integrate.quad</cite>. Neither this function nor
<cite>scipy.integrate.quad</cite> can verify whether the integral exists or is
finite. For example <code class="docutils literal notranslate"><span class="pre">cauchy(0).mean()</span></code> returns <code class="docutils literal notranslate"><span class="pre">np.nan</span></code> and
<code class="docutils literal notranslate"><span class="pre">cauchy(0).expect()</span></code> returns <code class="docutils literal notranslate"><span class="pre">0.0</span></code>.</p>
<p class="rubric">Examples</p>
<p>To understand the effect of the bounds of integration consider
>>> from scipy.stats import expon
>>> expon(1).expect(lambda x: 1, lb=0.0, ub=2.0)
0.6321205588285578</p>
<p>This is close to</p>
<div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">>>> </span><span class="n">expon</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">cdf</span><span class="p">(</span><span class="mf">2.0</span><span class="p">)</span> <span class="o">-</span> <span class="n">expon</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">cdf</span><span class="p">(</span><span class="mf">0.0</span><span class="p">)</span>
<span class="go">0.6321205588285577</span>
</pre></div>
</div>
<p>If <code class="docutils literal notranslate"><span class="pre">conditional=True</span></code></p>
<div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">>>> </span><span class="n">expon</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">expect</span><span class="p">(</span><span class="k">lambda</span> <span class="n">x</span><span class="p">:</span> <span class="mi">1</span><span class="p">,</span> <span class="n">lb</span><span class="o">=</span><span class="mf">0.0</span><span class="p">,</span> <span class="n">ub</span><span class="o">=</span><span class="mf">2.0</span><span class="p">,</span> <span class="n">conditional</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="go">1.0000000000000002</span>
</pre></div>
</div>
<p>The slight deviation from 1 is due to numerical integration.</p>
</dd></dl>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.sandbox.distributions.extras.NormExpan_gen.entropy.html" title="Material"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.sandbox.distributions.extras.NormExpan_gen.entropy </span>
</div>
</a>
<a href="statsmodels.sandbox.distributions.extras.NormExpan_gen.fit.html" title="Admonition"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.sandbox.distributions.extras.NormExpan_gen.fit </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Jan 22, 2020.
<br/>
Created using
<a href="http://sphinx-doc.org/">Sphinx</a> 2.3.1.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | v0.11.0/generated/statsmodels.sandbox.distributions.extras.NormExpan_gen.expect.html | HTML | bsd-3-clause | 27,014 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="Adtomatik-tag" content="NjUxNg=="/>
<meta charset="UTF-8">
<meta name="csrf-param" content="_csrf">
<meta name="csrf-token" content="5mo-uF3QyjIfOwRv_yIAHyEWnEVLRSTBCHZ8oYJbp3yBXK1QgBR3iflIBXZFqXoB4jBlFonC1s0mShaUvpqIpA==">
<title>SaveMedia | Download & Convert YouTube to MP3 & MP4 Online</title>
<meta name="msapplication-config" content="none">
<meta name="description" content="Download any YouTube video as MP4 or convert music on YouTube to MP3 audio. Online, fast and free. Full HD and 4K supported. All you need is your browser. Compatible with Android phones.">
<meta name="keywords" content="">
<meta name="robots" content="all,index,follow">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">
<meta property="og:title" content="Online YouTube Downloader & Converter for MP3 and HD MP4">
<meta property="og:url" content="https://savemedia.com/">
<meta property="og:image" content="https://savemedia.com//images/fb-logo.jpg">
<meta property="og:description" content="Download any YouTube video as MP4 or convert music on YouTube to MP3 audio. Online, fast and free. Full HD and 4K supported. All you need is your browser. Compatible with Android phones.">
<meta property="og:site_name" content="SaveMedia">
<meta property="og:type" content="website">
<meta property="fb:app_id" content="217035864982257">
<meta name="propeller" content="c318391271f81908b894d8bdc598d685">
<link type="image/png" href="/images/ico/16x16.png" rel="icon">
<link type="image/png" href="/images/ico/apple-touch-icon.png" rel="apple-touch-icon">
<link href="https://savemedia.com/" rel="canonical">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="/minify/d28291e72a87d28bab8054203bfdabbbbc3fc280.css?v=1495699387" rel="stylesheet">
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-33630772-1', 'auto');
ga('send', 'pageview');
</script>
<script data-cfasync="false" async src='//www.google-analytics.com/analytics.js'></script>
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="1">
<script type="text/javascript">var lang = "en";
var q = null;
var subid = "0";
var t = {"search":{"empty_search":"You need to type something here to search, or paste a YouTube URL","query_too_long":"Your search query is too long. Only 200 symbols max is allowed","no_result":"There is no result for your search","youtube_problem":"Youtube isn't working properly"},"video":{"cant_download":"The video can not be downloaded.","not_on_youtube":"The video doesn't exist on YouTube, or is private.","an_error":"An error has occured","please_try_again":"Please try again later or download Vdownloader","read_more":"Read more","close":"Close"},"top100":{"last_week":"Last week"}};</script><header id="header" role="banner">
<div class="container">
<div id="navbar" class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-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="/"></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav" id="main-menu">
<li class="active"><a target="_self" href="/"><i class="glyphicon glyphicon-home"></i></a></li><li class=""><a target="_self" href="/how-to">How-To</a></li><li class=""><a target="_self" href="/browser-extension">Extension</a></li><li class=""><a target="_self" href="/top100">Top 100</a></li><li class=""><a target="_blank" href="https://savemedia.helprace.com">Contact</a></li> <li class="dropdown lang">
<a href="#" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">English<span class="caret"></span></a>
<ul class="dropdown-menu"><li><a id="lang_de" href="/de/" hreflang="de">Deutsch</a></li><li><a id="lang_pt" href="/pt/" hreflang="pt">Português</a></li><li><a id="lang_es" href="/es/" hreflang="es">Español</a></li><li><a id="lang_ru" href="/ru/" hreflang="ru">Русский</a></li></ul>
</li> </ul>
</div>
</div>
</div>
</header>
<section class="main-slider carousel">
<div class="container">
<div id="slogan">
<h1>Download YouTube videos for free</h1>
<p class="lead">Supports MP3, MP4 and more. <br class="slogan_break">No software required.</p>
</div>
<form method="get" action="/watch" id="download-form">
<input type="hidden" name="" id="v" value="">
<input type="hidden" name="" id="q" value="">
<div class="mr-a-40 text-right">
<div id="search-box">
<input id="video-url" type="text" class="form-control form-control-url-paste" value="" placeholder="Enter YouTube URL or a search term" autocomplete="off">
<ul id='suggestions'>
</ul>
</div>
<div id="search-loop">
<input type="submit" id="download-submit" class="btn btn-default en" value="Download">
</div>
</div>
</form>
<div style="clear: both !important;"></div>
<div class="box-error" id="warning">
<div class="row">
<div class="col-md-12 error">
<p><span style="">Warning!</span> An error has occured: <span id='warningMessage'>{:WARNING:}</span><br>
We have been automatically notified of this issue and will resolve it as soon as possible. Please use <a href="http://vdownloader.com">VDownloader</a>
if you are unable to download.
</p>
</div>
</div>
</div>
<div class="row" id="error">
<div class="col-md-12 error">
<div id="url-error">
<p>This is not a valid video URL. Are you sure it should work? Can you view the video directly without any
proxies? Please <a class="mailto-link" href="/cdn-cgi/l/email-protection#bad3d4dcd5fad2d5cdd3d4d9d5c8cad5c8dbcedfde94d9d5d785c9cfd8d0dfd9ce879aefe8f69acac8d5d8d6dfd79cdbd7ca81d8d5dec387f39ad9d5cfd6de9ad4d5ce9aded5cdd4d6d5dbde9aced2d3c99accd3dedfd5809ae1efe8f6e7">e-mail
us</a>!</p>
</div>
<div id="browser-notice" style="display:none">
<p>Internet Explorer might crash if you do not have the latest version of Java installed. <a target="_blank" href="http://www.java.com/en/download/inc/windows_upgrade_xpi.jsp">Please
visit page to see if you need to upgrade</a>.</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</section>
<section id="info">
<div class="container">
<div class="box howto ">
<div class="row">
<div class="col-md-6 col-sm-8" id="howto">
<div class="left">
<h4>Features</h4>
<hr>
<ol>
<li>Download YouTube videos up to HD resolution</li>
<li>Convert videos to MP3/WebM audio with a single click</li>
<li>Unlimited free conversions and downloads</li>
<li>No additional software required</li>
<li>Compatible with mobile phones</li>
</ol>
</div>
</div>
<div id="bookmarklet" class="col-md-6 col-sm-4">
<div class="left">
<h4>Add a bookmarklet to download with a single click</h4>
<hr>
<p>Right-click or drag-drop the following link to your bookmarks or favorites toolbar. Saving an online video in any format will be as simple as clicking the favorite/bookmark while watching or after you finish watching the video: <a href="javascript:location.href=(location.href.search('www.youtube.com')!=-1)?location.href.replace('www.youtube.com','savemedia.com')+'&utm_source=savemedia&utm_medium=desktopwebsite&utm_campaign=bookmarklet':'http://savemedia.com/';">Download
this video with Save Media</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="download">
<div class="container">
<div class="box">
<div class="center gap">
<h2>Download videos online without even copy-and-pasting the URL</h2>
<p class="lead">
Just replace the domain with 'savemedia.com' in the address bar and hit enter.
<br>
For example:
<a href="https://savemedia.com/watch?v=KK9bwTlAvgo">
https://<b>savemedia.com</b>/watch?v=KK9bwTlAvgo
</a>
</p>
</div>
</div>
</div>
</section>
<section id="sites-supported">
<div class="container">
<div class="box">
<div class="gap">
<div class="text-center">
<h2>Check the full list of supported sites</h2>
</div>
<script type="text/template" id="tpl-top-supported-sites">
{{#extractors}}
{{#top}}
<li>
<img width="16" height="16" alt="{{domain}}" src="" data-src="{{logo}}">
{{^url}}
{{domain}}
{{/url}}
{{#url}}
<a href="guide/{{url}}">{{domain}}</a>
{{/url}}
</li>
{{/top}}
{{/extractors}}
</script>
<script type="text/template" id="tpl-other-supported-sites">
{{#extractors}}
{{#other}}
<li>
{{^url}}
{{domain}}
{{/url}}
{{#url}}
<a href="guide/{{url}}">{{domain}}</a>
{{/url}}
</li>
{{/other}}
{{/extractors}}
</script>
<ul id="top-supported-sites" class="top-supported-sites supported-sites"></ul>
<ul id="other-supported-sites" class="other-supported-sites supported-sites" style="display: none;"></ul>
<p class="text-center"><span id="show_extractors">Show full list of supported websites</span></p>
</div>
</div>
</div>
</section>
<section id="popularVid">
<div class="container">
<div class="box">
<div class="center">
<h2>Weekly Top 100 - <br class="slogan_break">Most Downloaded videos</h2>
<p class="lead">Hover your mouse over a video thumbnail in order to see a tooltip containing name and length</p>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div id="recent-downloads">
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12 center">
<div id="top5">
</div>
<p id="more-downloads">Discover the full rating at <a href="top100">Weekly Top 100</a></p>
</div>
</div>
</div>
</div>
</section>
<section id="about">
<div class="container">
<div class="box">
<div class="row">
<div class="col-md-6">
<h3>Do you want more features? Try VDownloader!</h3>
<ul>
<li>Download video from any major video hosting site, including porn sites. </li>
<li>Convert or edit your videos to any popular file format without restrictions.</li>
<li>You can program automatic downloads based on a channel, user or keyword.</li>
<li>Keep track of any videos you've watched in your browsers to download them later.</li>
</ul>
<br>
<a href="http://vdownloader.com/?utm_source=savemedia&utm_medium=cta&utm_campaign=savemedia-cta" target="_blank" class="btn btn-default btn-vd">Download now!</a>
</div>
<div class="col-md-6 text-center">
<a href="http://vdownloader.com/?utm_source=savemedia&utm_medium=cta&utm_campaign=savemedia-cta" id="vdownloaderLink" target="_blank" class="loader"><img width="300" height="250" id="vdownloaderImage" data-src="/images/vdownloader.png" src="" alt=""></a>
</div>
</div>
</div>
</div>
</section> <footer id="footer" style="background-color: #58b54f; margin-top:25px;height: 100%;">
<div class="container" style="margin-bottom:40px;">
<div class="row" style="margin-top:50px;">
<div class="col-lg-2 col-md-2">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 hidden-sm hidden-xs" style="margin-top:15px;">
<p style="text-indent: 2em;">Storing copies of videos counts as fair use under U.S. copyright law. Please respect the rights of content owners and do not upload copyrighted content elsewhere. We are not affiliated with any video hosting websites such as Break, DailyMotion, Metacafe, TED, Vimeo or YouTube.</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="" id="savemedialogo" style="margin-left:15%;margin-top:35px;">
<a href="https://savemedia.com"><img src="/images/logo.svg"/></a>
</div>
<div id="socialinks" style="margin-top:30px;display:none;">
<span style="width:48px; height:48px; margin-right:24px;"><a rel="nofollow" href="https://www.facebook.com/SaveMedia/"><img src="../images/facebook.svg"/></a></span>
<span style="width:48px; height:48px; margin-left:24px;margin-right:24px;"><a rel="nofollow" href="https://savemedia.com"><img src="../images/twitter.svg"/></a></span>
<span style="width:48px; height:48px; margin-left:24px;""><a rel="nofollow" href="https://savemedia.com"><img src="../images/gplus.svg" /></a></span>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-1"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 hidden-md hidden-lg hidden-xl" style="margin-top: 35px;">
<p style="text-indent: 2em;">Storing copies of videos counts as fair use under U.S. copyright law. Please respect the rights of content owners and do not upload copyrighted content elsewhere. We are not affiliated with any video hosting websites such as Break, DailyMotion, Metacafe, TED, Vimeo or YouTube.</p>
</div>
<div class="col-lg-2 col-md-2">
</div>
</div>
<div class="row" style="margin-top:35px;">
<div class="col-lg-12 col-md-12 text-center">
<p>
<a href="#" data-toggle="modal" data-target="#myModal">Contact us</a> to report any issues with the website, ask a question, suggest a feature or simply compliment our work </p>
</div>
</div>
</div>
</footer><!-- #footer -->
<!-- Support Modal -->
<!-- Modal -->
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content" style="padding:15px;">
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js"></script>
<style type="text/css" media="screen, projection">
@import url(https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.css);
</style>
<iframe title="Feedback Form" class="freshwidget-embedded-form" id="freshwidget-embedded-form" src="https://savemedia.freshdesk.com/widgets/feedback_widget/new?&widgetType=embedded&screenshot=no&searchArea=no&captcha=yes" scrolling="no" height="700px" width="100%" frameborder="0" >
</iframe>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="/minify/6c2cda75c03928114ce6011bfe064a63c9386edc.js?v=1497976099"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="/minify/f9d81984fbf00176dccf8316b78c53bf38e009e8.js?v=1492968684"></script>
<script src="/minify/fe541c2665e6d01bd6952dcaa782c69357b3333f.js?v=1492968684"></script>
<script src="/minify/a276ff4cd387a6309bf0720ac93d0741ef69bf5d.js?v=1492968684"></script>
<script src="/minify/4e2e1333f4f3ae8e59fea4c06be4a811c4846a08.js?v=1492968684"></script>
<script src="/minify/eaa29260078d2c4c5263163a8d49312a157234b7.js?v=1492968684"></script>
<script src="/minify/d51118037a3f45e40fc89b6c80631b841f49fe79.js?v=1492968684"></script>
<script src="/minify/bcfa6ff12b203636e51680f393209c2500aba557.js?v=1492968684"></script>
<script src="/minify/2e2f8386120bbf3346135a45503baa8497901db6.js?v=1492968684"></script>
<script src="/minify/61e889fbd7f51edbaeff4f578002f374d1527889.js?v=1495699387"></script>
<script src="/minify/b5581f999ce99dc31596ce92ff54aa301c1d6ac3.js?v=1492968684"></script>
<script src="/minify/bee25120d30ebc40bc954e2611272c42dcc01cd5.js?v=1495699391"></script>
<script src="/minify/aa2ebaefb63fb3b41c62c3b39b08561a76ca2047.js?v=1492968684"></script>
<script src="/js/displaycore.js"></script>
<script src="https://www.tr563.com/InterYield/bindevent.do?e=click&affiliate=vitzo&subid=savemediadesktop&snoozeMinutes=1&adCountIntervalHours=24&maxAdCountsPerInterval=1&pop=under&chromeoption=pdf&doublepop=false&attributionDisabled=true&ecpm=1&Adultdisabled=true&endpoint=https%3A%2F%2Fwww.tr563.com" type="text/javascript"></script>
<!-- DisplayCore Exit Ad-->
<script>/* <![CDATA[ */(function(d,s,a,i,j,r,l,m,t){try{l=d.getElementsByTagName('a');t=d.createElement('textarea');for(i=0;l.length-i;i++){try{a=l[i].href;s=a.indexOf('/cdn-cgi/l/email-protection');m=a.length;if(a&&s>-1&&m>28){j=28+s;s='';if(j<m){r='0x'+a.substr(j,2)|0;for(j+=2;j<m&&a.charAt(j)!='X';j+=2)s+='%'+('0'+('0x'+a.substr(j,2)^r).toString(16)).slice(-2);j++;s=decodeURIComponent(s)+a.substr(j,m-j)}t.innerHTML=s.replace(/</g,'<').replace(/\>/g,'>');l[i].href='mailto:'+t.value}}catch(e){}}}catch(e){}})(document);/* ]]> */</script></body>
</html>
| todor-dk/HTML-Renderer | Source/Testing/HtmlRenderer.ExperimentalApp/Data/Files/youtube mp3/0F04D127A380148F54C1272156BC4D3F.html | HTML | bsd-3-clause | 16,035 |
<!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_79) on Sun May 03 13:20:28 CEST 2015 -->
<title>Uses of Package thobe.logfileviewer.plugin.memory</title>
<meta name="date" content="2015-05-03">
<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="Uses of Package thobe.logfileviewer.plugin.memory";
}
//-->
</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 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?thobe/logfileviewer/plugin/memory/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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="Uses of Package thobe.logfileviewer.plugin.memory" class="title">Uses of Package<br>thobe.logfileviewer.plugin.memory</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../thobe/logfileviewer/plugin/memory/package-summary.html">thobe.logfileviewer.plugin.memory</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="#thobe.logfileviewer.plugin.api">thobe.logfileviewer.plugin.api</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="thobe.logfileviewer.plugin.api">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../thobe/logfileviewer/plugin/memory/package-summary.html">thobe.logfileviewer.plugin.memory</a> used by <a href="../../../../thobe/logfileviewer/plugin/api/package-summary.html">thobe.logfileviewer.plugin.api</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../thobe/logfileviewer/plugin/memory/class-use/IMemoryWatchable.html#thobe.logfileviewer.plugin.api">IMemoryWatchable</a> </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><a href="package-summary.html">Package</a></li>
<li>Class</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?thobe/logfileviewer/plugin/memory/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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>
| ThomasObenaus/LogFileViewerPluginAPI | doc/thobe/logfileviewer/plugin/memory/package-use.html | HTML | bsd-3-clause | 5,268 |
<!--
Copyright (C) 2012 Samsung Electronics. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY APPLE AND ITS 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 APPLE OR ITS 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.
-->
<html>
<head>
<script>
DevToolsAPI = {};
InspectorTest = {};
InspectorTest._dispatchTable = [];
InspectorTest._requestId = -1;
InspectorTest._dumpInspectorProtocolMessages = false;
InspectorTest._embedderRequestId = -1;
InspectorTest.eventHandler = {};
InspectorTest.startDumpingProtocolMessages = function()
{
InspectorTest._dumpInspectorProtocolMessages = true;
}
/**
* @param {string} method
* @param {object} params
* @param {function({object} messageObject)=} handler
*/
InspectorTest.sendCommand = function(method, params, handler)
{
this._dispatchTable[++this._requestId] = handler;
var messageObject = { "method": method,
"params": params,
"id": this._requestId };
if (InspectorTest._dumpInspectorProtocolMessages)
testRunner.logToStderr("frontend: " + JSON.stringify(messageObject));
var embedderMessage = { "id": ++this._embedderRequestId, "method": "dispatchProtocolMessage", "params": [JSON.stringify(messageObject)] };
DevToolsHost.sendMessageToEmbedder(JSON.stringify(embedderMessage));
return this._requestId;
}
InspectorTest.sendCommandOrDie = function(command, properties, callback)
{
InspectorTest.sendCommand(command, properties || {}, commandCallback);
function commandCallback(msg)
{
if (msg.error) {
InspectorTest.log("ERROR: " + msg.error.message);
InspectorTest.completeTest();
return;
}
if (callback)
callback(msg.result);
}
}
InspectorTest.sendCommandPromise = function(method, params)
{
var callback;
var promise = new Promise(fulfill => callback = fulfill);
InspectorTest.sendCommand(method, params, callback);
return promise;
}
InspectorTest.domUndo = function(callback)
{
InspectorTest.sendCommandOrDie("DOM.undo", {}, callback);
}
InspectorTest.undoAndNext = function(next)
{
return InspectorTest.domUndo.bind(InspectorTest, next);
}
InspectorTest.runTestSuite = function(testSuite)
{
function nextTest()
{
if (!testSuite.length) {
InspectorTest.completeTest();
return;
}
var fun = testSuite.shift();
InspectorTest.log("\nRunning test: " + fun.name);
fun(nextTest);
}
nextTest();
}
/**
* @param {function(object)=} callback
*/
InspectorTest.wrapCallback = function(callback)
{
/**
* @param {object} message
*/
function callbackWrapper(message)
{
if (InspectorTest.completeTestIfError(message))
return;
if (!callback)
return;
try {
callback(message["result"]);
} catch (e) {
InspectorTest.log("Exception " + e + " while invoking callback: " + callback);
InspectorTest.completeTest();
}
}
return callbackWrapper;
}
/**
* @param {string} command
* @param {function({object} messageObject)=} handler
*/
InspectorTest.sendRawCommand = function(command, handler)
{
this._dispatchTable[++this._requestId] = handler;
var embedderMessage = { "id": ++this._embedderRequestId, "method": "dispatchProtocolMessage", "params": [command] };
DevToolsHost.sendMessageToEmbedder(JSON.stringify(embedderMessage));
return this._requestId;
}
InspectorTest.readyForTest = function()
{
var embedderMessage = { "id": ++this._embedderRequestId, "method": "readyForTest" };
DevToolsHost.sendMessageToEmbedder(JSON.stringify(embedderMessage));
}
/**
* @param {string|!Object} messageOrObject
*/
DevToolsAPI.dispatchMessage = function(messageOrObject)
{
var messageObject = (typeof messageOrObject === "string" ? JSON.parse(messageOrObject) : messageOrObject);
if (InspectorTest._dumpInspectorProtocolMessages)
testRunner.logToStderr("backend: " + JSON.stringify(messageObject));
var messageId = messageObject["id"];
try {
if (typeof messageId === "number") {
var handler = InspectorTest._dispatchTable[messageId];
if (handler && typeof handler === "function")
handler(messageObject);
} else {
var eventName = messageObject["method"];
var eventHandler = InspectorTest.eventHandler[eventName];
if (eventHandler)
eventHandler(messageObject);
}
} catch(e) {
InspectorTest.log("Exception when dispatching message: " + e + "\n" + e.stack + "\n message = " + JSON.stringify(messageObject, null, 2));
InspectorTest.completeTest();
}
}
/**
* @param {number} callId
* @param {string} script
*/
DevToolsAPI.evaluateForTestInFrontend = function(callId, script)
{
try {
eval(script);
} catch (e) {
InspectorTest.log("FAIL: exception in evaluateForTestInFrontend: " + e);
InspectorTest.completeTest();
}
}
/**
* Logs message to document.
* @param {string} message
*/
InspectorTest.log = function(message)
{
this.sendCommand("Runtime.evaluate", { "expression": "log(" + JSON.stringify(message) + ")" } );
}
/**
* Formats and logs object to document.
* @param {Object} object
* @param {string=} title
*/
InspectorTest.logObject = function(object, title)
{
var lines = [];
function dumpValue(value, prefix, prefixWithName)
{
if (typeof value === "object" && value !== null) {
if (value instanceof Array)
dumpItems(value, prefix, prefixWithName);
else
dumpProperties(value, prefix, prefixWithName);
} else {
lines.push(prefixWithName + String(value).replace(/\n/g, " "));
}
}
function dumpProperties(object, prefix, firstLinePrefix)
{
prefix = prefix || "";
firstLinePrefix = firstLinePrefix || prefix;
lines.push(firstLinePrefix + "{");
var propertyNames = Object.keys(object);
propertyNames.sort();
for (var i = 0; i < propertyNames.length; ++i) {
var name = propertyNames[i];
if (!object.hasOwnProperty(name))
continue;
var prefixWithName = " " + prefix + name + " : ";
dumpValue(object[name], " " + prefix, prefixWithName);
}
lines.push(prefix + "}");
}
function dumpItems(object, prefix, firstLinePrefix)
{
prefix = prefix || "";
firstLinePrefix = firstLinePrefix || prefix;
lines.push(firstLinePrefix + "[");
for (var i = 0; i < object.length; ++i)
dumpValue(object[i], " " + prefix, " " + prefix + "[" + i + "] : ");
lines.push(prefix + "]");
}
dumpValue(object, "", title);
InspectorTest.log(lines.join("\n"));
}
/**
* Logs message directly to process stdout via alert function (hopefully followed by flush call).
* This message should survive process crash or kill by timeout.
* @param {string} message
*/
InspectorTest.debugLog = function(message)
{
this.sendCommand("Runtime.evaluate", { "expression": "debugLog(" + JSON.stringify(message) + ")" } );
}
InspectorTest.completeTest = function()
{
this.sendCommand("Runtime.evaluate", { "expression": "closeTest();"} );
}
/**
* Evaluates string in page.
* @param {string} message
* @param {!function} callback
*/
InspectorTest.evaluateInPage = function(string, callback)
{
this.sendCommand("Runtime.evaluate", { "expression": string }, function(message) {
if (message.error)
InspectorTest.log("Error while executing '" + string + "': " + message.error.message);
else if (callback)
callback(message.result.result.value);
});
};
InspectorTest.evaluateInPageAsync = function(expression)
{
return InspectorTest.sendCommandPromise("Runtime.evaluate", { "expression": expression, awaitPromise: true }).then((message) => message.result.result.value);
}
InspectorTest.completeTestIfError = function(messageObject)
{
if (messageObject.error) {
InspectorTest.log(messageObject.error.message);
InspectorTest.completeTest();
return true;
}
return false;
}
InspectorTest.checkExpectation = function(fail, name, messageObject)
{
if (fail === !!messageObject.error) {
InspectorTest.log("PASS: " + name);
return true;
}
InspectorTest.log("FAIL: " + name + ": " + JSON.stringify(messageObject));
InspectorTest.completeTest();
return false;
}
InspectorTest.expectedSuccess = InspectorTest.checkExpectation.bind(null, false);
InspectorTest.expectedError = InspectorTest.checkExpectation.bind(null, true);
/**
* @param {string} scriptName
*/
InspectorTest.importScript = function(scriptName)
{
var xhr = new XMLHttpRequest();
xhr.open("GET", scriptName, false);
xhr.send(null);
window.eval(xhr.responseText + "\n//# sourceURL=" + scriptName);
}
InspectorTest.safeWrap = function(func, onexception)
{
function result()
{
if (!func)
return;
var wrapThis = this;
try {
return func.apply(wrapThis, arguments);
} catch(e) {
InspectorTest.log("Exception while running: " + func + "\n" + (e.stack || e));
if (onexception)
InspectorTest.safeWrap(onexception)();
else
InspectorTest.completeTest();
}
}
return result;
}
InspectorTest.navigate = function(url, callback)
{
InspectorTest._pageLoadedCallback = InspectorTest.safeWrap(callback);
InspectorTest.evaluateInPage("navigateProtocolTest('" + url + "')");
}
InspectorTest.pageReloaded = function()
{
InspectorTest.log("Page reloaded.");
var callback = InspectorTest._pageLoadedCallback;
delete InspectorTest._pageLoadedCallback;
if (callback)
callback();
}
window.addEventListener("load", InspectorTest.readyForTest.bind(InspectorTest), false);
</script>
</head>
</html>
| danakj/chromium | third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html | HTML | bsd-3-clause | 11,191 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.stats.nonparametric.RankCompareResult — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/stylesheets/deprecation.css">
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../_static/material.css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" />
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.stats.nonparametric.RankCompareResult.conf_int" href="statsmodels.stats.nonparametric.RankCompareResult.conf_int.html" />
<link rel="prev" title="statsmodels.stats.nonparametric.rank_compare_2ordinal" href="statsmodels.stats.nonparametric.rank_compare_2ordinal.html" />
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.stats.nonparametric.RankCompareResult" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels v0.14.0.dev0 (+325)</span>
<span class="md-header-nav__topic"> statsmodels.stats.nonparametric.RankCompareResult </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="get" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../../versions-v2.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../stats.html" class="md-tabs__link">Statistics <code class="xref py py-mod docutils literal notranslate"><span class="pre">stats</span></code></a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels v0.14.0.dev0 (+325)</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../stats.html" class="md-nav__link">Statistics <code class="xref py py-mod docutils literal notranslate"><span class="pre">stats</span></code></a>
</li>
<li class="md-nav__item">
<a href="../contingency_tables.html" class="md-nav__link">Contingency tables</a>
</li>
<li class="md-nav__item">
<a href="../imputation.html" class="md-nav__link">Multiple Imputation with Chained Equations</a>
</li>
<li class="md-nav__item">
<a href="../emplike.html" class="md-nav__link">Empirical Likelihood <code class="xref py py-mod docutils literal notranslate"><span class="pre">emplike</span></code></a>
</li>
<li class="md-nav__item">
<a href="../distributions.html" class="md-nav__link">Distributions</a>
</li>
<li class="md-nav__item">
<a href="../graphics.html" class="md-nav__link">Graphics</a>
</li>
<li class="md-nav__item">
<a href="../iolib.html" class="md-nav__link">Input-Output <code class="xref py py-mod docutils literal notranslate"><span class="pre">iolib</span></code></a>
</li>
<li class="md-nav__item">
<a href="../tools.html" class="md-nav__link">Tools</a>
</li>
<li class="md-nav__item">
<a href="../large_data.html" class="md-nav__link">Working with Large Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../optimization.html" class="md-nav__link">Optimization</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.stats.nonparametric.RankCompareResult.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<section id="statsmodels-stats-nonparametric-rankcompareresult">
<h1 id="generated-statsmodels-stats-nonparametric-rankcompareresult--page-root">statsmodels.stats.nonparametric.RankCompareResult<a class="headerlink" href="#generated-statsmodels-stats-nonparametric-rankcompareresult--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="py class">
<dt class="sig sig-object py" id="statsmodels.stats.nonparametric.RankCompareResult">
<em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">statsmodels.stats.nonparametric.</span></span><span class="sig-name descname"><span class="pre">RankCompareResult</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">tuple_</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">**</span></span><span class="n"><span class="pre">kwds</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/stats/nonparametric.html#RankCompareResult"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#statsmodels.stats.nonparametric.RankCompareResult" title="Permalink to this definition">¶</a></dt>
<dd><p>Results for rank comparison</p>
<p>This is a subclass of HolderTuple that includes results from intermediate
computations, as well as methods for hypothesis tests, confidence intervals
and summary.</p>
<p class="rubric">Methods</p>
<table class="longtable docutils align-default">
<colgroup>
<col style="width: 10%"/>
<col style="width: 90%"/>
</colgroup>
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.conf_int.html#statsmodels.stats.nonparametric.RankCompareResult.conf_int" title="statsmodels.stats.nonparametric.RankCompareResult.conf_int"><code class="xref py py-obj docutils literal notranslate"><span class="pre">conf_int</span></code></a>([value, alpha, alternative])</p></td>
<td><p>Confidence interval for probability that sample 1 has larger values</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.confint_lintransf.html#statsmodels.stats.nonparametric.RankCompareResult.confint_lintransf" title="statsmodels.stats.nonparametric.RankCompareResult.confint_lintransf"><code class="xref py py-obj docutils literal notranslate"><span class="pre">confint_lintransf</span></code></a>([const, slope, alpha, ...])</p></td>
<td><p>confidence interval of a linear transformation of prob1</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.effectsize_normal.html#statsmodels.stats.nonparametric.RankCompareResult.effectsize_normal" title="statsmodels.stats.nonparametric.RankCompareResult.effectsize_normal"><code class="xref py py-obj docutils literal notranslate"><span class="pre">effectsize_normal</span></code></a>([prob])</p></td>
<td><p>Cohen's d, standardized mean difference under normality assumption.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.summary.html#statsmodels.stats.nonparametric.RankCompareResult.summary" title="statsmodels.stats.nonparametric.RankCompareResult.summary"><code class="xref py py-obj docutils literal notranslate"><span class="pre">summary</span></code></a>([alpha, xname])</p></td>
<td><p>summary table for probability that random draw x1 is larger than x2</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.test_prob_superior.html#statsmodels.stats.nonparametric.RankCompareResult.test_prob_superior" title="statsmodels.stats.nonparametric.RankCompareResult.test_prob_superior"><code class="xref py py-obj docutils literal notranslate"><span class="pre">test_prob_superior</span></code></a>([value, alternative])</p></td>
<td><p>test for superiority probability</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.stats.nonparametric.RankCompareResult.tost_prob_superior.html#statsmodels.stats.nonparametric.RankCompareResult.tost_prob_superior" title="statsmodels.stats.nonparametric.RankCompareResult.tost_prob_superior"><code class="xref py py-obj docutils literal notranslate"><span class="pre">tost_prob_superior</span></code></a>(low, upp)</p></td>
<td><p>test of stochastic (non-)equivalence of p = P(x1 > x2)</p></td>
</tr>
</tbody>
</table>
</dd></dl>
</section>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.stats.nonparametric.rank_compare_2ordinal.html" title="statsmodels.stats.nonparametric.rank_compare_2ordinal"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.stats.nonparametric.rank_compare_2ordinal </span>
</div>
</a>
<a href="statsmodels.stats.nonparametric.RankCompareResult.conf_int.html" title="statsmodels.stats.nonparametric.RankCompareResult.conf_int"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.stats.nonparametric.RankCompareResult.conf_int </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Feb 23, 2022.
<br/>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | devel/generated/statsmodels.stats.nonparametric.RankCompareResult.html | HTML | bsd-3-clause | 22,373 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono:400,500,700&display=fallback">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.tsa.statespace.varmax.VARMAXResults.summary — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/material.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" 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>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.tsa.statespace.varmax.VARMAXResults.t_test" href="statsmodels.tsa.statespace.varmax.VARMAXResults.t_test.html" />
<link rel="prev" title="statsmodels.tsa.statespace.varmax.VARMAXResults.simulate" href="statsmodels.tsa.statespace.varmax.VARMAXResults.simulate.html" />
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../_static/versions.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.tsa.statespace.varmax.VARMAXResults.summary" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels 0.11.0</span>
<span class="md-header-nav__topic"> statsmodels.tsa.statespace.varmax.VARMAXResults.summary </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="GET" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../statespace.html" class="md-tabs__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a></li>
<li class="md-tabs__item"><a href="statsmodels.tsa.statespace.varmax.VARMAXResults.html" class="md-tabs__link">statsmodels.tsa.statespace.varmax.VARMAXResults</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels 0.11.0</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a>
</li>
<li class="md-nav__item">
<a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a>
</li>
<li class="md-nav__item">
<a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.statespace.varmax.VARMAXResults.summary.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="generated-statsmodels-tsa-statespace-varmax-varmaxresults-summary--page-root">statsmodels.tsa.statespace.varmax.VARMAXResults.summary<a class="headerlink" href="#generated-statsmodels-tsa-statespace-varmax-varmaxresults-summary--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="method">
<dt id="statsmodels.tsa.statespace.varmax.VARMAXResults.summary">
<code class="sig-prename descclassname">VARMAXResults.</code><code class="sig-name descname">summary</code><span class="sig-paren">(</span><em class="sig-param">alpha=0.05</em>, <em class="sig-param">start=None</em>, <em class="sig-param">separate_params=True</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/tsa/statespace/varmax.html#VARMAXResults.summary"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#statsmodels.tsa.statespace.varmax.VARMAXResults.summary" title="Permalink to this definition">¶</a></dt>
<dd><p>Summarize the Model</p>
<dl class="field-list">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl>
<dt><strong>alpha</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">float</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Significance level for the confidence intervals. Default is 0.05.</p>
</dd>
<dt><strong>start</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">int</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Integer of the start observation. Default is 0.</p>
</dd>
<dt><strong>model_name</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">str</span></code></a></span></dt><dd><p>The name of the model used. Default is to use model class name.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><dl>
<dt><strong>summary</strong><span class="classifier"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Summary</span></code> <code class="xref py py-obj docutils literal notranslate"><span class="pre">instance</span></code></span></dt><dd><p>This holds the summary table and text, which can be printed or
converted to various output formats.</p>
</dd>
</dl>
</dd>
</dl>
<div class="admonition seealso">
<p class="admonition-title">See also</p>
<dl class="simple">
<dt><a class="reference internal" href="statsmodels.iolib.summary.Summary.html#statsmodels.iolib.summary.Summary" title="statsmodels.iolib.summary.Summary"><code class="xref py py-obj docutils literal notranslate"><span class="pre">statsmodels.iolib.summary.Summary</span></code></a></dt><dd></dd>
</dl>
</div>
</dd></dl>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.tsa.statespace.varmax.VARMAXResults.simulate.html" title="Material"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.statespace.varmax.VARMAXResults.simulate </span>
</div>
</a>
<a href="statsmodels.tsa.statespace.varmax.VARMAXResults.t_test.html" title="Admonition"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.tsa.statespace.varmax.VARMAXResults.t_test </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Jan 22, 2020.
<br/>
Created using
<a href="http://sphinx-doc.org/">Sphinx</a> 2.3.1.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | v0.11.0/generated/statsmodels.tsa.statespace.varmax.VARMAXResults.summary.html | HTML | bsd-3-clause | 20,094 |
<!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.11"/>
<title>Scheduler: src/scheduler/governor/maxGovernor.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/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</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">Scheduler
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<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>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>
<!-- 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_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_dc96eb697a66e01ba190c271f9e8ccc9.html">scheduler</a></li><li class="navelem"><a class="el" href="dir_e6840263adad97cbbb9d6300f1c9e9e4.html">governor</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">maxGovernor.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include "<a class="el" href="freqGovernor_8h_source.html">freqGovernor.h</a>"</code><br />
</div>
<p><a href="maxGovernor_8h_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>
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="classScheduler_1_1MaxGovernor.html">Scheduler::MaxGovernor</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespaceScheduler"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceScheduler.html">Scheduler</a></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 Nov 26 2017 17:01:37 for Scheduler by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
| Jacques-Florence/schedSim | docs/maxGovernor_8h.html | HTML | bsd-3-clause | 5,436 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>statsmodels.tsa.ar_model.ARResults — statsmodels v0.10.2 documentation</title>
<link rel="stylesheet" href="../_static/nature.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" 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>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="shortcut icon" href="../_static/statsmodels_hybi_favico.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.tsa.ar_model.ARResults.bse" href="statsmodels.tsa.ar_model.ARResults.bse.html" />
<link rel="prev" title="statsmodels.tsa.ar_model.AR.select_order" href="statsmodels.tsa.ar_model.AR.select_order.html" />
<link rel="stylesheet" href="../_static/examples.css" type="text/css" />
<link rel="stylesheet" href="../_static/facebox.css" type="text/css" />
<script type="text/javascript" src="../_static/scripts.js">
</script>
<script type="text/javascript" src="../_static/facebox.js">
</script>
<script type="text/javascript">
$.facebox.settings.closeImage = "../_static/closelabel.png"
$.facebox.settings.loadingImage = "../_static/loading.gif"
</script>
<script>
$(document).ready(function() {
$.getJSON("../../versions.json", function(versions) {
var dropdown = document.createElement("div");
dropdown.className = "dropdown";
var button = document.createElement("button");
button.className = "dropbtn";
button.innerHTML = "Other Versions";
var content = document.createElement("div");
content.className = "dropdown-content";
dropdown.appendChild(button);
dropdown.appendChild(content);
$(".header").prepend(dropdown);
for (var i = 0; i < versions.length; i++) {
if (versions[i].substring(0, 1) == "v") {
versions[i] = [versions[i], versions[i].substring(1)];
} else {
versions[i] = [versions[i], versions[i]];
};
};
for (var i = 0; i < versions.length; i++) {
var a = document.createElement("a");
a.innerHTML = versions[i][1];
a.href = "../../" + versions[i][0] + "/index.html";
a.title = versions[i][1];
$(".dropdown-content").append(a);
};
});
});
</script>
</head><body>
<div class="headerwrap">
<div class = "header">
<a href = "../index.html">
<img src="../_static/statsmodels_hybi_banner.png" alt="Logo"
style="padding-left: 15px"/></a>
</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"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="statsmodels.tsa.ar_model.ARResults.bse.html" title="statsmodels.tsa.ar_model.ARResults.bse"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="statsmodels.tsa.ar_model.AR.select_order.html" title="statsmodels.tsa.ar_model.AR.select_order"
accesskey="P">previous</a> |</li>
<li><a href ="../install.html">Install</a></li> |
<li><a href="https://groups.google.com/forum/?hl=en#!forum/pystatsmodels">Support</a></li> |
<li><a href="https://github.com/statsmodels/statsmodels/issues">Bugs</a></li> |
<li><a href="../dev/index.html">Develop</a></li> |
<li><a href="../examples/index.html">Examples</a></li> |
<li><a href="../faq.html">FAQ</a></li> |
<li class="nav-item nav-item-1"><a href="../tsa.html" accesskey="U">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a> |</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="statsmodels-tsa-ar-model-arresults">
<h1>statsmodels.tsa.ar_model.ARResults<a class="headerlink" href="#statsmodels-tsa-ar-model-arresults" title="Permalink to this headline">¶</a></h1>
<dl class="class">
<dt id="statsmodels.tsa.ar_model.ARResults">
<em class="property">class </em><code class="sig-prename descclassname">statsmodels.tsa.ar_model.</code><code class="sig-name descname">ARResults</code><span class="sig-paren">(</span><em class="sig-param">model</em>, <em class="sig-param">params</em>, <em class="sig-param">normalized_cov_params=None</em>, <em class="sig-param">scale=1.0</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/tsa/ar_model.html#ARResults"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#statsmodels.tsa.ar_model.ARResults" title="Permalink to this definition">¶</a></dt>
<dd><p>Class to hold results from fitting an AR model.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>model</strong><span class="classifier">AR Model instance</span></dt><dd><p>Reference to the model that is fit.</p>
</dd>
<dt><strong>params</strong><span class="classifier">array</span></dt><dd><p>The fitted parameters from the AR Model.</p>
</dd>
<dt><strong>normalized_cov_params</strong><span class="classifier">array</span></dt><dd><p>inv(dot(X.T,X)) where X is the lagged values.</p>
</dd>
<dt><strong>scale</strong><span class="classifier">float, optional</span></dt><dd><p>An estimate of the scale of the model.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Attributes</dt>
<dd class="field-even"><dl class="simple">
<dt><strong>aic</strong><span class="classifier">float</span></dt><dd><p>Akaike Information Criterion using Lutkephol’s definition.
<span class="math notranslate nohighlight">\(log(sigma) + 2*(1 + k_ar + k_trend)/nobs\)</span></p>
</dd>
<dt><strong>bic</strong><span class="classifier">float</span></dt><dd><p>Bayes Information Criterion
<span class="math notranslate nohighlight">\(\log(\sigma) + (1 + k_ar + k_trend)*\log(nobs)/nobs\)</span></p>
</dd>
<dt><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.bse.html#statsmodels.tsa.ar_model.ARResults.bse" title="statsmodels.tsa.ar_model.ARResults.bse"><code class="xref py py-obj docutils literal notranslate"><span class="pre">bse</span></code></a><span class="classifier">array</span></dt><dd><p>The standard errors of the parameter estimates.</p>
</dd>
<dt><strong>fittedvalues</strong><span class="classifier">array</span></dt><dd><p>The in-sample predicted values of the fitted AR model. The <cite>k_ar</cite>
initial values are computed via the Kalman Filter if the model is
fit by <cite>mle</cite>.</p>
</dd>
<dt><strong>fpe</strong><span class="classifier">float</span></dt><dd><p>Final prediction error using Lütkepohl’s definition
((n_totobs+k_trend)/(n_totobs-k_ar-k_trend))*sigma</p>
</dd>
<dt><strong>hqic</strong><span class="classifier">float</span></dt><dd><p>Hannan-Quinn Information Criterion.</p>
</dd>
<dt><strong>k_ar</strong><span class="classifier">float</span></dt><dd><p>Lag length. Sometimes used as <cite>p</cite> in the docs.</p>
</dd>
<dt><strong>k_trend</strong><span class="classifier">float</span></dt><dd><p>The number of trend terms included. ‘nc’=0, ‘c’=1.</p>
</dd>
<dt><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.llf.html#statsmodels.tsa.ar_model.ARResults.llf" title="statsmodels.tsa.ar_model.ARResults.llf"><code class="xref py py-obj docutils literal notranslate"><span class="pre">llf</span></code></a><span class="classifier">float</span></dt><dd><p>Log-likelihood of model</p>
</dd>
<dt><strong>model</strong><span class="classifier">AR model instance</span></dt><dd><p>A reference to the fitted AR model.</p>
</dd>
<dt><strong>nobs</strong><span class="classifier">float</span></dt><dd><p>The number of available observations <cite>nobs</cite> - <cite>k_ar</cite></p>
</dd>
<dt><strong>n_totobs</strong><span class="classifier">float</span></dt><dd><p>The number of total observations in <cite>endog</cite>. Sometimes <cite>n</cite> in the docs.</p>
</dd>
<dt><strong>params</strong><span class="classifier">array</span></dt><dd><p>The fitted parameters of the model.</p>
</dd>
<dt><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.pvalues.html#statsmodels.tsa.ar_model.ARResults.pvalues" title="statsmodels.tsa.ar_model.ARResults.pvalues"><code class="xref py py-obj docutils literal notranslate"><span class="pre">pvalues</span></code></a><span class="classifier">array</span></dt><dd><p>The two-tailed p values for the t-stats of the params.</p>
</dd>
<dt><strong>resid</strong><span class="classifier">array</span></dt><dd><p>The residuals of the model. If the model is fit by ‘mle’ then the
pre-sample residuals are calculated using fittedvalues from the Kalman
Filter.</p>
</dd>
<dt><strong>roots</strong><span class="classifier">array</span></dt><dd><p>The roots of the AR process are the solution to
(1 - arparams[0]*z - arparams[1]*z**2 -…- arparams[p-1]*z**k_ar) = 0
Stability requires that the roots in modulus lie outside the unit
circle.</p>
</dd>
<dt><strong>scale</strong><span class="classifier">float</span></dt><dd><p>Same as sigma2</p>
</dd>
<dt><strong>sigma2</strong><span class="classifier">float</span></dt><dd><p>The variance of the innovations (residuals).</p>
</dd>
<dt><strong>trendorder</strong><span class="classifier">int</span></dt><dd><p>The polynomial order of the trend. ‘nc’ = None, ‘c’ or ‘t’ = 0,
‘ct’ = 1, etc.</p>
</dd>
<dt><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.tvalues.html#statsmodels.tsa.ar_model.ARResults.tvalues" title="statsmodels.tsa.ar_model.ARResults.tvalues"><code class="xref py py-obj docutils literal notranslate"><span class="pre">tvalues</span></code></a><span class="classifier">array</span></dt><dd><p>Return the t-statistic for a given parameter estimate.</p>
</dd>
</dl>
</dd>
</dl>
<p class="rubric">Methods</p>
<table class="longtable docutils align-default">
<colgroup>
<col style="width: 10%" />
<col style="width: 90%" />
</colgroup>
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.bse.html#statsmodels.tsa.ar_model.ARResults.bse" title="statsmodels.tsa.ar_model.ARResults.bse"><code class="xref py py-obj docutils literal notranslate"><span class="pre">bse</span></code></a>()</p></td>
<td><p>The standard errors of the parameter estimates.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.conf_int.html#statsmodels.tsa.ar_model.ARResults.conf_int" title="statsmodels.tsa.ar_model.ARResults.conf_int"><code class="xref py py-obj docutils literal notranslate"><span class="pre">conf_int</span></code></a>([alpha, cols, method])</p></td>
<td><p>Returns the confidence interval of the fitted parameters.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.cov_params.html#statsmodels.tsa.ar_model.ARResults.cov_params" title="statsmodels.tsa.ar_model.ARResults.cov_params"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cov_params</span></code></a>([r_matrix, column, scale, cov_p, …])</p></td>
<td><p>Returns the variance/covariance matrix.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.f_test.html#statsmodels.tsa.ar_model.ARResults.f_test" title="statsmodels.tsa.ar_model.ARResults.f_test"><code class="xref py py-obj docutils literal notranslate"><span class="pre">f_test</span></code></a>(r_matrix[, cov_p, scale, invcov])</p></td>
<td><p>Compute the F-test for a joint linear hypothesis.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.initialize.html#statsmodels.tsa.ar_model.ARResults.initialize" title="statsmodels.tsa.ar_model.ARResults.initialize"><code class="xref py py-obj docutils literal notranslate"><span class="pre">initialize</span></code></a>(model, params, **kwd)</p></td>
<td><p>Initialize (possibly re-initialize) a Results instance.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.llf.html#statsmodels.tsa.ar_model.ARResults.llf" title="statsmodels.tsa.ar_model.ARResults.llf"><code class="xref py py-obj docutils literal notranslate"><span class="pre">llf</span></code></a>()</p></td>
<td><p>Log-likelihood of model</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.load.html#statsmodels.tsa.ar_model.ARResults.load" title="statsmodels.tsa.ar_model.ARResults.load"><code class="xref py py-obj docutils literal notranslate"><span class="pre">load</span></code></a>(fname)</p></td>
<td><p>load a pickle, (class method)</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.normalized_cov_params.html#statsmodels.tsa.ar_model.ARResults.normalized_cov_params" title="statsmodels.tsa.ar_model.ARResults.normalized_cov_params"><code class="xref py py-obj docutils literal notranslate"><span class="pre">normalized_cov_params</span></code></a>()</p></td>
<td><p>See specific model class docstring</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.predict.html#statsmodels.tsa.ar_model.ARResults.predict" title="statsmodels.tsa.ar_model.ARResults.predict"><code class="xref py py-obj docutils literal notranslate"><span class="pre">predict</span></code></a>([start, end, dynamic])</p></td>
<td><p>Returns in-sample and out-of-sample prediction.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.pvalues.html#statsmodels.tsa.ar_model.ARResults.pvalues" title="statsmodels.tsa.ar_model.ARResults.pvalues"><code class="xref py py-obj docutils literal notranslate"><span class="pre">pvalues</span></code></a>()</p></td>
<td><p>The two-tailed p values for the t-stats of the params.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.remove_data.html#statsmodels.tsa.ar_model.ARResults.remove_data" title="statsmodels.tsa.ar_model.ARResults.remove_data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">remove_data</span></code></a>()</p></td>
<td><p>remove data arrays, all nobs arrays from result and model</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.save.html#statsmodels.tsa.ar_model.ARResults.save" title="statsmodels.tsa.ar_model.ARResults.save"><code class="xref py py-obj docutils literal notranslate"><span class="pre">save</span></code></a>(fname[, remove_data])</p></td>
<td><p>save a pickle of this instance</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.summary.html#statsmodels.tsa.ar_model.ARResults.summary" title="statsmodels.tsa.ar_model.ARResults.summary"><code class="xref py py-obj docutils literal notranslate"><span class="pre">summary</span></code></a>()</p></td>
<td><p>Summary</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.t_test.html#statsmodels.tsa.ar_model.ARResults.t_test" title="statsmodels.tsa.ar_model.ARResults.t_test"><code class="xref py py-obj docutils literal notranslate"><span class="pre">t_test</span></code></a>(r_matrix[, cov_p, scale, use_t])</p></td>
<td><p>Compute a t-test for a each linear hypothesis of the form Rb = q</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.t_test_pairwise.html#statsmodels.tsa.ar_model.ARResults.t_test_pairwise" title="statsmodels.tsa.ar_model.ARResults.t_test_pairwise"><code class="xref py py-obj docutils literal notranslate"><span class="pre">t_test_pairwise</span></code></a>(term_name[, method, alpha, …])</p></td>
<td><p>perform pairwise t_test with multiple testing corrected p-values</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.tvalues.html#statsmodels.tsa.ar_model.ARResults.tvalues" title="statsmodels.tsa.ar_model.ARResults.tvalues"><code class="xref py py-obj docutils literal notranslate"><span class="pre">tvalues</span></code></a>()</p></td>
<td><p>Return the t-statistic for a given parameter estimate.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.wald_test.html#statsmodels.tsa.ar_model.ARResults.wald_test" title="statsmodels.tsa.ar_model.ARResults.wald_test"><code class="xref py py-obj docutils literal notranslate"><span class="pre">wald_test</span></code></a>(r_matrix[, cov_p, scale, invcov, …])</p></td>
<td><p>Compute a Wald-test for a joint linear hypothesis.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="statsmodels.tsa.ar_model.ARResults.wald_test_terms.html#statsmodels.tsa.ar_model.ARResults.wald_test_terms" title="statsmodels.tsa.ar_model.ARResults.wald_test_terms"><code class="xref py py-obj docutils literal notranslate"><span class="pre">wald_test_terms</span></code></a>([skip_single, …])</p></td>
<td><p>Compute a sequence of Wald tests for terms over multiple columns</p></td>
</tr>
</tbody>
</table>
<table class="docutils align-default">
<colgroup>
<col style="width: 62%" />
<col style="width: 38%" />
</colgroup>
<tbody>
<tr class="row-odd"><td><p><strong>aic</strong></p></td>
<td></td>
</tr>
<tr class="row-even"><td><p><strong>bic</strong></p></td>
<td></td>
</tr>
<tr class="row-odd"><td><p><strong>fittedvalues</strong></p></td>
<td></td>
</tr>
<tr class="row-even"><td><p><strong>fpe</strong></p></td>
<td></td>
</tr>
<tr class="row-odd"><td><p><strong>hqic</strong></p></td>
<td></td>
</tr>
<tr class="row-even"><td><p><strong>resid</strong></p></td>
<td></td>
</tr>
<tr class="row-odd"><td><p><strong>roots</strong></p></td>
<td></td>
</tr>
<tr class="row-even"><td><p><strong>scale</strong></p></td>
<td></td>
</tr>
<tr class="row-odd"><td><p><strong>sigma2</strong></p></td>
<td></td>
</tr>
</tbody>
</table>
</dd></dl>
</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="statsmodels.tsa.ar_model.AR.select_order.html"
title="previous chapter">statsmodels.tsa.ar_model.AR.select_order</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="statsmodels.tsa.ar_model.ARResults.bse.html"
title="next chapter">statsmodels.tsa.ar_model.ARResults.bse</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/generated/statsmodels.tsa.ar_model.ARResults.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer" role="contentinfo">
© Copyright 2009-2018, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.2.1.
</div>
</body>
</html> | statsmodels/statsmodels.github.io | v0.10.2/generated/statsmodels.tsa.ar_model.ARResults.html | HTML | bsd-3-clause | 20,910 |
{% load i18n %}
<h1>{% trans "Netaxept" %}</h1>
<p>{% trans "Payment failed." %} ({{ message }})</p> | fivethreeo/django-shop-netaxept | shop_netaxept/templates/shop_netaxept/error.html | HTML | bsd-3-clause | 101 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono:400,500,700&display=fallback">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.tsa.statespace.tools.is_invertible — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/material.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" 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>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.tsa.statespace.tools.constrain_stationary_univariate" href="statsmodels.tsa.statespace.tools.constrain_stationary_univariate.html" />
<link rel="prev" title="statsmodels.tsa.statespace.tools.diff" href="statsmodels.tsa.statespace.tools.diff.html" />
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../_static/versions.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.tsa.statespace.tools.is_invertible" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels 0.11.0</span>
<span class="md-header-nav__topic"> statsmodels.tsa.statespace.tools.is_invertible </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="GET" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../statespace.html" class="md-tabs__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels 0.11.0</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a>
</li>
<li class="md-nav__item">
<a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a>
</li>
<li class="md-nav__item">
<a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.statespace.tools.is_invertible.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="generated-statsmodels-tsa-statespace-tools-is-invertible--page-root">statsmodels.tsa.statespace.tools.is_invertible<a class="headerlink" href="#generated-statsmodels-tsa-statespace-tools-is-invertible--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="function">
<dt id="statsmodels.tsa.statespace.tools.is_invertible">
<code class="sig-prename descclassname">statsmodels.tsa.statespace.tools.</code><code class="sig-name descname">is_invertible</code><span class="sig-paren">(</span><em class="sig-param">polynomial</em>, <em class="sig-param">threshold=0.9999999999</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/tsa/statespace/tools.html#is_invertible"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#statsmodels.tsa.statespace.tools.is_invertible" title="Permalink to this definition">¶</a></dt>
<dd><p>Determine if a polynomial is invertible.</p>
<p>Requires all roots of the polynomial lie inside the unit circle.</p>
<dl class="field-list">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl>
<dt><strong>polynomial</strong><span class="classifier"><a class="reference external" href="https://docs.scipy.org/doc/numpy/glossary.html#term-array-like" title="(in NumPy v1.17)"><span>array_like</span></a> or <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">tuple</span></code></a>, <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.8)"><code class="docutils literal notranslate"><span class="pre">list</span></code></a></span></dt><dd><p>Coefficients of a polynomial, in order of increasing degree.
For example, <cite>polynomial=[1, -0.5]</cite> corresponds to the polynomial
<span class="math notranslate nohighlight">\(1 - 0.5x\)</span> which has root <span class="math notranslate nohighlight">\(2\)</span>. If it is a matrix
polynomial (in which case the coefficients are coefficient matrices),
a tuple or list of matrices should be passed.</p>
</dd>
<dt><strong>threshold</strong><span class="classifier"><code class="xref py py-obj docutils literal notranslate"><span class="pre">number</span></code></span></dt><dd><p>Allowed threshold for <cite>is_invertible</cite> to return True. Default is 1.</p>
</dd>
</dl>
</dd>
</dl>
<div class="admonition seealso">
<p class="admonition-title">See also</p>
<dl class="simple">
<dt><a class="reference internal" href="statsmodels.tsa.statespace.tools.companion_matrix.html#statsmodels.tsa.statespace.tools.companion_matrix" title="statsmodels.tsa.statespace.tools.companion_matrix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">companion_matrix</span></code></a></dt><dd></dd>
</dl>
</div>
<p class="rubric">Notes</p>
<p>If the coefficients provided are scalars <span class="math notranslate nohighlight">\((c_0, c_1, \dots, c_n)\)</span>,
then the corresponding polynomial is <span class="math notranslate nohighlight">\(c_0 + c_1 L + \dots + c_n L^n\)</span>.</p>
<p>If the coefficients provided are matrices <span class="math notranslate nohighlight">\((C_0, C_1, \dots, C_n)\)</span>,
then the corresponding polynomial is <span class="math notranslate nohighlight">\(C_0 + C_1 L + \dots + C_n L^n\)</span>.</p>
<p>There are three equivalent methods of determining if the polynomial
represented by the coefficients is invertible:</p>
<p>The first method factorizes the polynomial into:</p>
<div class="math notranslate nohighlight">
\[\begin{split}C(L) & = c_0 + c_1 L + \dots + c_n L^n \\
& = constant (1 - \lambda_1 L)
(1 - \lambda_2 L) \dots (1 - \lambda_n L)\end{split}\]</div>
<p>In order for <span class="math notranslate nohighlight">\(C(L)\)</span> to be invertible, it must be that each factor
<span class="math notranslate nohighlight">\((1 - \lambda_i L)\)</span> is invertible; the condition is then that
<span class="math notranslate nohighlight">\(|\lambda_i| < 1\)</span>, where <span class="math notranslate nohighlight">\(\lambda_i\)</span> is a root of the
polynomial.</p>
<p>The second method factorizes the polynomial into:</p>
<div class="math notranslate nohighlight">
\[\begin{split}C(L) & = c_0 + c_1 L + \dots + c_n L^n \\
& = constant (L - \zeta_1) (L - \zeta_2) \dots (L - \zeta_3)\end{split}\]</div>
<p>The condition is now <span class="math notranslate nohighlight">\(|\zeta_i| > 1\)</span>, where <span class="math notranslate nohighlight">\(\zeta_i\)</span> is a root
of the polynomial with reversed coefficients and
<span class="math notranslate nohighlight">\(\lambda_i = \frac{1}{\zeta_i}\)</span>.</p>
<p>Finally, a companion matrix can be formed using the coefficients of the
polynomial. Then the eigenvalues of that matrix give the roots of the
polynomial. This last method is the one actually used.</p>
</dd></dl>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.tsa.statespace.tools.diff.html" title="Material"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.statespace.tools.diff </span>
</div>
</a>
<a href="statsmodels.tsa.statespace.tools.constrain_stationary_univariate.html" title="Admonition"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.tsa.statespace.tools.constrain_stationary_univariate </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Jan 22, 2020.
<br/>
Created using
<a href="http://sphinx-doc.org/">Sphinx</a> 2.3.1.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | v0.11.0/generated/statsmodels.tsa.statespace.tools.is_invertible.html | HTML | bsd-3-clause | 21,635 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/material.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script src="../_static/language_data.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.regression.quantile_regression.QuantRegResults.rsquared" href="statsmodels.regression.quantile_regression.QuantRegResults.rsquared.html" />
<link rel="prev" title="statsmodels.regression.quantile_regression.QuantRegResults.resid" href="statsmodels.regression.quantile_regression.QuantRegResults.resid.html" />
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../_static/versions.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels v0.11.1</span>
<span class="md-header-nav__topic"> statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="GET" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../regression.html" class="md-tabs__link">Linear Regression</a></li>
<li class="md-tabs__item"><a href="statsmodels.regression.quantile_regression.QuantRegResults.html" class="md-tabs__link">statsmodels.regression.quantile_regression.QuantRegResults</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels v0.11.1</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../regression.html" class="md-nav__link">Linear Regression</a>
</li>
<li class="md-nav__item">
<a href="../glm.html" class="md-nav__link">Generalized Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../gee.html" class="md-nav__link">Generalized Estimating Equations</a>
</li>
<li class="md-nav__item">
<a href="../gam.html" class="md-nav__link">Generalized Additive Models (GAM)</a>
</li>
<li class="md-nav__item">
<a href="../rlm.html" class="md-nav__link">Robust Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../mixed_linear.html" class="md-nav__link">Linear Mixed Effects Models</a>
</li>
<li class="md-nav__item">
<a href="../discretemod.html" class="md-nav__link">Regression with Discrete Dependent Variable</a>
</li>
<li class="md-nav__item">
<a href="../mixed_glm.html" class="md-nav__link">Generalized Linear Mixed Effects Models</a>
</li>
<li class="md-nav__item">
<a href="../anova.html" class="md-nav__link">ANOVA</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<h1 id="generated-statsmodels-regression-quantile-regression-quantregresults-resid-pearson--page-root">statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson<a class="headerlink" href="#generated-statsmodels-regression-quantile-regression-quantregresults-resid-pearson--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="attribute">
<dt id="statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson">
<code class="sig-prename descclassname">QuantRegResults.</code><code class="sig-name descname">resid_pearson</code><a class="headerlink" href="#statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson" title="Permalink to this definition">¶</a></dt>
<dd><p>Residuals, normalized to have unit variance.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><dl class="simple">
<dt><a class="reference external" href="https://docs.scipy.org/doc/numpy/glossary.html#term-array-like" title="(in NumPy v1.17)"><span>array_like</span></a></dt><dd><p>The array <cite>wresid</cite> normalized by the sqrt of the scale to have
unit variance.</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.regression.quantile_regression.QuantRegResults.resid.html" title="Material"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.regression.quantile_regression.QuantRegResults.resid </span>
</div>
</a>
<a href="statsmodels.regression.quantile_regression.QuantRegResults.rsquared.html" title="Admonition"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.regression.quantile_regression.QuantRegResults.rsquared </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Feb 21, 2020.
<br/>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 2.4.2.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> | statsmodels/statsmodels.github.io | v0.11.1/generated/statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson.html | HTML | bsd-3-clause | 18,469 |
<!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>statsmodels.sandbox.regression.gmm.IVRegressionResults.ess — statsmodels 0.6.1 documentation</title>
<link rel="stylesheet" href="../_static/nature.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.6.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</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/statsmodels_hybi_favico.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="top" title="statsmodels 0.6.1 documentation" href="../index.html" />
<link rel="stylesheet" href="../../_static/facebox.css" type="text/css" />
<link rel="stylesheet" href="../_static/examples.css" type="text/css" />
<script type="text/javascript" src="../_static/scripts.js">
</script>
<script type="text/javascript" src="../_static/facebox.js">
</script>
</head>
<body role="document">
<div class="headerwrap">
<div class = "header">
<a href = "../index.html">
<img src="../_static/statsmodels_hybi_banner.png" alt="Logo"
style="padding-left: 15px"/></a>
</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"
accesskey="I">index</a></li>
<li><a href ="../install.html">Install</a></li> |
<li><a href="https://groups.google.com/group/pystatsmodels?hl=en">Support</a></li> |
<li><a href="https://github.com/statsmodels/statsmodels/issues">Bugs</a></li> |
<li><a href="../dev/index.html">Develop</a></li> |
<li><a href="../examples/index.html">Examples</a></li> |
<li><a href="../faq.html">FAQ</a></li> |
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="statsmodels-sandbox-regression-gmm-ivregressionresults-ess">
<h1>statsmodels.sandbox.regression.gmm.IVRegressionResults.ess<a class="headerlink" href="#statsmodels-sandbox-regression-gmm-ivregressionresults-ess" title="Permalink to this headline">¶</a></h1>
<dl class="method">
<dt id="statsmodels.sandbox.regression.gmm.IVRegressionResults.ess">
<code class="descclassname">IVRegressionResults.</code><code class="descname">ess</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#statsmodels.sandbox.regression.gmm.IVRegressionResults.ess" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/generated/statsmodels.sandbox.regression.gmm.IVRegressionResults.ess.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<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>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer" role="contentinfo">
© Copyright 2009-2013, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.
</div>
</body>
</html> | statsmodels/statsmodels.github.io | 0.6.1/generated/statsmodels.sandbox.regression.gmm.IVRegressionResults.ess.html | HTML | bsd-3-clause | 4,680 |
<!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_31) on Thu Mar 19 00:41:59 UTC 2015 -->
<title>MutableHandlerRegistryImpl (grpc-core 0.1.0-SNAPSHOT API)</title>
<meta name="date" content="2015-03-19">
<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="MutableHandlerRegistryImpl (grpc-core 0.1.0-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":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="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="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../io/grpc/SerializingExecutor.html" title="class in io.grpc"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?io/grpc/MutableHandlerRegistryImpl.html" target="_top">Frames</a></li>
<li><a href="MutableHandlerRegistryImpl.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><a href="#nested.classes.inherited.from.class.io.grpc.HandlerRegistry">Nested</a> | </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">io.grpc</div>
<h2 title="Class MutableHandlerRegistryImpl" class="title">Class MutableHandlerRegistryImpl</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../io/grpc/HandlerRegistry.html" title="class in io.grpc">io.grpc.HandlerRegistry</a></li>
<li>
<ul class="inheritance">
<li><a href="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc">io.grpc.MutableHandlerRegistry</a></li>
<li>
<ul class="inheritance">
<li>io.grpc.MutableHandlerRegistryImpl</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>@ThreadSafe
public final class <span class="typeNameLabel">MutableHandlerRegistryImpl</span>
extends <a href="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc">MutableHandlerRegistry</a></pre>
<div class="block">Default implementation of <a href="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc"><code>MutableHandlerRegistry</code></a>.
<p>Uses <code>ConcurrentHashMap</code> to avoid service registration excessively
blocking method lookup.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.io.grpc.HandlerRegistry">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class io.grpc.<a href="../../io/grpc/HandlerRegistry.html" title="class in io.grpc">HandlerRegistry</a></h3>
<code><a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc">HandlerRegistry.Method</a></code></li>
</ul>
</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="../../io/grpc/MutableHandlerRegistryImpl.html#MutableHandlerRegistryImpl--">MutableHandlerRegistryImpl</a></span>()</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="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><a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../io/grpc/MutableHandlerRegistryImpl.html#addService-io.grpc.ServerServiceDefinition-">addService</a></span>(<a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a> service)</code>
<div class="block">Returns <code>null</code>, or previous service if <code>service</code> replaced an existing service.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc">HandlerRegistry.Method</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../io/grpc/MutableHandlerRegistryImpl.html#lookupMethod-java.lang.String-">lookupMethod</a></span>(java.lang.String methodName)</code>
<div class="block">Lookup a <a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc"><code>HandlerRegistry.Method</code></a> by its fully-qualified name.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../io/grpc/MutableHandlerRegistryImpl.html#removeService-io.grpc.ServerServiceDefinition-">removeService</a></span>(<a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a> service)</code>
<div class="block">Returns <code>false</code> if <code>service</code> was not registered.</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>
</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="MutableHandlerRegistryImpl--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MutableHandlerRegistryImpl</h4>
<pre>public MutableHandlerRegistryImpl()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="addService-io.grpc.ServerServiceDefinition-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addService</h4>
<pre>@Nullable
public <a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a> addService(<a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a> service)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../io/grpc/MutableHandlerRegistry.html#addService-io.grpc.ServerServiceDefinition-">MutableHandlerRegistry</a></code></span></div>
<div class="block">Returns <code>null</code>, or previous service if <code>service</code> replaced an existing service.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../io/grpc/MutableHandlerRegistry.html#addService-io.grpc.ServerServiceDefinition-">addService</a></code> in class <code><a href="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc">MutableHandlerRegistry</a></code></dd>
</dl>
</li>
</ul>
<a name="removeService-io.grpc.ServerServiceDefinition-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeService</h4>
<pre>public boolean removeService(<a href="../../io/grpc/ServerServiceDefinition.html" title="class in io.grpc">ServerServiceDefinition</a> service)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../io/grpc/MutableHandlerRegistry.html#removeService-io.grpc.ServerServiceDefinition-">MutableHandlerRegistry</a></code></span></div>
<div class="block">Returns <code>false</code> if <code>service</code> was not registered.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../io/grpc/MutableHandlerRegistry.html#removeService-io.grpc.ServerServiceDefinition-">removeService</a></code> in class <code><a href="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc">MutableHandlerRegistry</a></code></dd>
</dl>
</li>
</ul>
<a name="lookupMethod-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>lookupMethod</h4>
<pre>@Nullable
public <a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc">HandlerRegistry.Method</a> lookupMethod(java.lang.String methodName)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../io/grpc/HandlerRegistry.html#lookupMethod-java.lang.String-">HandlerRegistry</a></code></span></div>
<div class="block">Lookup a <a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc"><code>HandlerRegistry.Method</code></a> by its fully-qualified name. All names are expected to be absolute
paths that start with '/'.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../io/grpc/HandlerRegistry.html#lookupMethod-java.lang.String-">lookupMethod</a></code> in class <code><a href="../../io/grpc/HandlerRegistry.html" title="class in io.grpc">HandlerRegistry</a></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>methodName</code> - to lookup <a href="../../io/grpc/HandlerRegistry.Method.html" title="class in io.grpc"><code>HandlerRegistry.Method</code></a> for.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the resolved method or <code>null</code> if no method for that name exists.</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="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="../../io/grpc/MutableHandlerRegistry.html" title="class in io.grpc"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../io/grpc/SerializingExecutor.html" title="class in io.grpc"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?io/grpc/MutableHandlerRegistryImpl.html" target="_top">Frames</a></li>
<li><a href="MutableHandlerRegistryImpl.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><a href="#nested.classes.inherited.from.class.io.grpc.HandlerRegistry">Nested</a> | </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 ======= -->
</body>
</html>
| gargsurbhi2015/Lab2 | core/build/docs/javadoc/io/grpc/MutableHandlerRegistryImpl.html | HTML | bsd-3-clause | 15,287 |
<!DOCTYPE html>
<!--
Distributed under both the W3C Test Suite License [1] and the W3C
3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
policies and contribution forms [3].
[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
[3] http://www.w3.org/2004/10/27-testcases
-->
<html>
<head>
<title>Shadow DOM Test: A_04_07_01</title>
<link rel="author" title="Sergey G. Grekhov" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#multiple-shadow-subtrees">
<meta name="assert" content="Composition:Composition algorithm">
<script src="../../../../../../resources/testharness.js"></script>
<script src="../../../../../../resources/testharnessreport.js"></script>
<script src="../../testcommon.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(unit(function (ctx) {
var d = newRenderedHTMLDocument(ctx);
var div = d.createElement('div');
div.innerHTML = '' +
'<ul id="host">' +
'<li id="li1" class="shadow">' +
'<a id="a11" class="cl1" href="#">Link11 Shadow</a>' +
'<a id="a12" class="cl2" href="#">Link12 Shadow</a>' +
'<a id="a13" class="cl1" href="#">Link13 Shadow</a>' +
'</li>' +
'<li id="li2">' +
'<a id="a21" href="#">Link21</a><a id="a22" href="#">Link22</a>' +
'</li>' +
'<li id="li3" class="shadow">' +
'<a id="a31" href="#">Link31 Shadow</a><a id="a32" href="#">Link32 Shadow</a>' +
'</li>' +
'<li id="li4" class="shadow2">' +
'<a id="a41" href="#">Link41 Shadow 2</a><a id="a42" href="#">Link22 Shadow 2</a>' +
'</li>' +
'<li id="li5" class="shadow2">' +
'<a id="a51" href="#">Link51 Shadow</a><a id="a52" href="#">Link52 Shadow 2</a>' +
'</li>' +
'</ul>';
d.body.appendChild(div);
//make nested shadow tree to check the reprojection
var li1 = d.querySelector('#li1');
var s = li1.createShadowRoot();
var shadowLI1 = document.createElement('li');
shadowLI1.innerHTML = '<content select=".cl1"></content>';
s.appendChild(shadowLI1);
//Shadow root to play with
var ul = d.querySelector('#host');
//make an old shadow tree
var s2 = ul.createShadowRoot();
var div2 = d.createElement('div');
div2.innerHTML = '<ul><content select=".shadow2"></content></ul>';
s2.appendChild(div2);
// At this point visible: li4 and li5
assert_true(d.querySelector('#li4').offsetTop > 0, 'Point 1: Node that match insertion ' +
'point criteria should be rendered');
assert_true(d.querySelector('#li5').offsetTop > 0, 'Point 2: Node that match insertion ' +
'point criteria should be rendered');
assert_equals(d.querySelector('#li1').offsetTop, 0, 'Point 3: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_equals(d.querySelector('#li2').offsetTop, 0, 'Point 4: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_equals(d.querySelector('#li3').offsetTop, 0, 'Point 5: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
//check the nested tree
assert_equals(d.querySelector('#a11').offsetTop, 0,
'Point 6: Aleady distributed nodes should behave like a shadow host child nodes');
assert_equals(d.querySelector('#a13').offsetTop, 0,
'Point 7: Aleady distributed nodes should behave like a shadow host child nodes');
assert_equals(d.querySelector('#a12').offsetTop, 0,
'Point 8: Aleady distributed nodes should behave like a shadow host child nodes');
//make a young shadow tree
var s3 = ul.createShadowRoot();
var div3 = d.createElement('div');
div3.innerHTML = '<ul><content select=".shadow"></content></ul>';
s3.appendChild(div3);
//At this point: li1 and li3 visible, others not
assert_true(d.querySelector('#li1').offsetTop > 0, 'Point 21: Node that match insertion ' +
'point criteria should be rendered');
assert_true(d.querySelector('#li3').offsetTop > 0, 'Point 22: Node that match insertion ' +
'point criteria should be rendered');
assert_equals(d.querySelector('#li2').offsetTop, 0, 'Point 23: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_equals(d.querySelector('#li4').offsetTop, 0, 'Point 24: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_equals(d.querySelector('#li5').offsetTop, 0, 'Point 25: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
//check the reprojected nodes (a11 and a13 visible, a12 not)
assert_true(d.querySelector('#a11').offsetTop > 0,
'Point 26: Aleady distributed nodes should behave like a shadow host child nodes');
assert_equals(d.querySelector('#a12').offsetTop, 0,
'Point 27: Aleady distributed nodes should behave like a shadow host child nodes');
assert_true(d.querySelector('#a13').offsetTop > 0,
'Point 28: Aleady distributed nodes should behave like a shadow host child nodes');
var shadow = d.createElement('shadow');
s3.appendChild(shadow);
//At this point: li1, li3, li4 and li5 visible li2 not
assert_true(d.querySelector('#li1').offsetTop > 0, 'Point 31: Node that match insertion ' +
'point criteria should be rendered');
assert_true(d.querySelector('#li3').offsetTop > 0, 'Point 32: Node that match insertion ' +
'point criteria should be rendered');
assert_equals(d.querySelector('#li2').offsetTop, 0, 'Point 33: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_true(d.querySelector('#li4').offsetTop > 0, 'Point 34: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_true(d.querySelector('#li5').offsetTop > 0, 'Point 35: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
//check the reprojected nodes (a11 and a13 visible, a12 not)
assert_true(d.querySelector('#a11').offsetTop > 0,
'Point 36: Aleady distributed nodes should behave like a shadow host child nodes');
assert_equals(d.querySelector('#a12').offsetTop, 0,
'Point 37: Aleady distributed nodes should behave like a shadow host child nodes');
assert_true(d.querySelector('#a13').offsetTop > 0,
'Point 38: Aleady distributed nodes should behave like a shadow host child nodes');
var shadow2 = d.createElement('shadow');
s3.appendChild(shadow2);
// Nothing should be changed
//At this point: li1, li3, li4 and li5 visible li2 not
assert_true(d.querySelector('#li1').offsetTop > 0, 'Point 41: Node that match insertion ' +
'point criteria should be rendered');
assert_true(d.querySelector('#li3').offsetTop > 0, 'Point 42: Node that match insertion ' +
'point criteria should be rendered');
assert_equals(d.querySelector('#li2').offsetTop, 0, 'Point 43: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_true(d.querySelector('#li4').offsetTop > 0, 'Point 44: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
assert_true(d.querySelector('#li5').offsetTop > 0, 'Point 45: Node that doen\'t match ' +
'insertion point criteria shouldn\'t be rendered');
//check the reprojected nodes (a11 and a13 visible, a12 not)
assert_true(d.querySelector('#a11').offsetTop > 0,
'Point 46: Aleady distributed nodes should behave like a shadow host child nodes');
assert_equals(d.querySelector('#a12').offsetTop, 0,
'Point 47: Aleady distributed nodes should behave like a shadow host child nodes');
assert_true(d.querySelector('#a13').offsetTop > 0,
'Point 48: Aleady distributed nodes should behave like a shadow host child nodes');
}), 'A_04_07_01');
</script>
</body>
</html>
| was4444/chromium.src | third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/composition/test-001.html | HTML | bsd-3-clause | 7,776 |
<p>Foo <a href="/url/" title="Title">bar</a>.</p>
<p>Foo <a href="/url/" title="Title">bar</a>.</p>
<p>Foo <a href="/url/" title="Title">bar</a>.</p>
<p>With <a href="/url/">embedded [brackets]</a>.</p>
<p>Indented <a href="/url">once</a>.</p>
<p>Indented <a href="/url">twice</a>.</p>
<p>Indented <a href="/url">thrice</a>.</p>
<p>Indented [four][] times.</p>
<pre><code>[four]: /url
</code></pre>
<p>With <a href="http://example.com/" title="Angle Brackets">angle brackets</a>.</p>
<p>And <a href="http://example.com/" title="Without angle brackets.">without</a>.</p>
<p>With <a href="http://example.com" title="Yes this works">line
breaks</a></p>
<p>and <a href="http://example.com" title="Yes this works">line
breaks</a> with one space.</p>
<p>and [line<br />
breaks[] with two spaces.</p>
<p><a href="http://example.com" title="No more hanging empty bracket!">short ref</a></p>
<p><a href="http://example.com" title="No more hanging empty bracket!">short
ref</a></p> | craigds/python-markdown | tests/basic/links-reference.html | HTML | bsd-3-clause | 973 |
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Кодировка - Zend Framework Manual</title>
</head>
<body>
<table width="100%">
<tr valign="top">
<td width="85%">
<table width="100%">
<tr>
<td width="25%" style="text-align: left;">
<a href="zend.mail.character-sets.html">Наборы символов</a>
</td>
<td width="50%" style="text-align: center;">
<div class="up"><span class="up"><a href="zend.mail.html">Zend_Mail</a></span><br />
<span class="home"><a href="manual.html">Programmer's Reference Guide</a></span></div>
</td>
<td width="25%" style="text-align: right;">
<div class="next" style="text-align: right; float: right;"><a href="zend.mail.smtp-authentication.html">SMTP-аутентификация</a></div>
</td>
</tr>
</table>
<hr />
<div id="zend.mail.encoding" class="section"><div class="info"><h1 class="title">Кодировка</h1></div>
<p class="para">
Тела сообщений в текстовом и HTML форматах по умолчанию кодируются
по алгоритму quoted-printable, если только вы не указали
base64 через метод <span class="methodname">setHeaderEncoding()</span>.
Все другие вложения кодируются
по алгоритму base64, если только не была указана другая кодировка при
вызове метода <span class="methodname">addAttachment()</span> и она не была
установлена позднее для объекта части <acronym class="acronym">MIME</acronym>.
Кодировки 7Bit и 8Bit в настоящее время используются только для
бинарных данных.
</p>
<p class="para">
Кодирование заголовков, особенно темы (subject) сообщения - непростой
вопрос. <span class="classname">Zend_Mime</span> в настоящее время реализует
собственный алгоритм для кодирования quoted-printable сообщений в
соответствии с RFC-2045. Это вызвано тем, что
<code class="code">iconv_mime_encode</code> и <code class="code">mb_encode_mimeheader</code>
испытывают проблемы с кодированием определенных символов.
Этот алгоритм только разбивает заголовки пробелами, это приводит к
тому, что заголовки могут значительно превышать предлагаемую длину в
76 символов. По этой причине рекомендуется переключаться на кодирование
заголовков по алгоритму base64, как показано в следующем примере:
</p>
<div class="programlisting php"><div class="phpcode"><div class="php" style="font-family: monospace;"><ol><li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">// По умолчанию используется Zend_Mime::ENCODING_QUOTEDPRINTABLE</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">$mail</span> = <span style="color: #000000; font-weight: bold;">new</span> Zend_Mail<span style="color: #66cc66;">(</span><span style="color: #ff0000;">'UTF-8'</span><span style="color: #66cc66;">)</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">// Переключение на base64</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">$mail</span>-><span style="color: #006600;">setHeaderEncoding</span><span style="color: #66cc66;">(</span>Zend_Mime::<span style="color: #006600;">ENCODING_BASE64</span><span style="color: #66cc66;">)</span>;</div></li></ol></div></div></div>
<p class="para">
<span class="classname">Zend_Mail_Transport_Smtp</span> кодирует строки,
начинающиеся с одной или двух точек, поэтому сообщение не будет нарушать
протокол SMTP.
</p>
</div>
<hr />
<table width="100%">
<tr>
<td width="25%" style="text-align: left;">
<a href="zend.mail.character-sets.html">Наборы символов</a>
</td>
<td width="50%" style="text-align: center;">
<div class="up"><span class="up"><a href="zend.mail.html">Zend_Mail</a></span><br />
<span class="home"><a href="manual.html">Programmer's Reference Guide</a></span></div>
</td>
<td width="25%" style="text-align: right;">
<div class="next" style="text-align: right; float: right;"><a href="zend.mail.smtp-authentication.html">SMTP-аутентификация</a></div>
</td>
</tr>
</table>
</td>
<td style="font-size: smaller;" width="15%"> <style type="text/css">
#leftbar {
float: left;
width: 186px;
padding: 5px;
font-size: smaller;
}
ul.toc {
margin: 0px 5px 5px 5px;
padding: 0px;
}
ul.toc li {
font-size: 85%;
margin: 1px 0 1px 1px;
padding: 1px 0 1px 11px;
list-style-type: none;
background-repeat: no-repeat;
background-position: center left;
}
ul.toc li.header {
font-size: 115%;
padding: 5px 0px 5px 11px;
border-bottom: 1px solid #cccccc;
margin-bottom: 5px;
}
ul.toc li.active {
font-weight: bold;
}
ul.toc li a {
text-decoration: none;
}
ul.toc li a:hover {
text-decoration: underline;
}
</style>
<ul class="toc">
<li class="header home"><a href="manual.html">Programmer's Reference Guide</a></li>
<li class="header up"><a href="manual.html">Programmer's Reference Guide</a></li>
<li class="header up"><a href="reference.html">Zend Framework Reference</a></li>
<li class="header up"><a href="zend.mail.html">Zend_Mail</a></li>
<li><a href="zend.mail.introduction.html">Введение</a></li>
<li><a href="zend.mail.sending.html">Отправка через SMTP</a></li>
<li><a href="zend.mail.multiple-emails.html">Отправка нескольких сообщений за одно SMTP-соединение</a></li>
<li><a href="zend.mail.different-transports.html">Использование различных транспортов</a></li>
<li><a href="zend.mail.html-mails.html">Сообщение в формате HTML</a></li>
<li><a href="zend.mail.attachments.html">Вложения</a></li>
<li><a href="zend.mail.adding-recipients.html">Добавление получателей</a></li>
<li><a href="zend.mail.boundary.html">Контроль за разделителями MIME</a></li>
<li><a href="zend.mail.additional-headers.html">Дополнительные заголовки</a></li>
<li><a href="zend.mail.character-sets.html">Наборы символов</a></li>
<li class="active"><a href="zend.mail.encoding.html">Кодировка</a></li>
<li><a href="zend.mail.smtp-authentication.html">SMTP-аутентификация</a></li>
<li><a href="zend.mail.smtp-secure.html">Защищенное SMTP-соединение</a></li>
<li><a href="zend.mail.read.html">Reading Mail Messages</a></li>
</ul>
</td>
</tr>
</table>
</body>
</html> | wukchung/Home-development | documentation/manual/core/ru/zend.mail.encoding.html | HTML | bsd-3-clause | 9,021 |
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Zend Framework API Documentation</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta><link rel="stylesheet" href="css/black-tie/jquery-ui-1.8.2.custom.css" type="text/css"></link><link rel="stylesheet" href="css/jquery.treeview.css" type="text/css"></link><link rel="stylesheet" href="css/theme.css" type="text/css"></link><script type="text/javascript" src="js/jquery-1.4.2.min.js"></script><script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script><script type="text/javascript" src="js/jquery.cookie.js"></script><script type="text/javascript" src="js/jquery.treeview.js"></script><script type="text/javascript">
$(document).ready(function() {
$(".filetree").treeview({
collapsed: true,
persist: "cookie"
});
$("#accordion").accordion({
collapsible: true,
autoHeight: false,
fillSpace: true
});
$(".tabs").tabs();
});
</script></head><body><div xmlns="" class="content">
<div class="sub-page-main-header-api-documentation"><h2>API Documentation</h2></div>
<div class="dotted-line"></div>
</div>
<div xmlns="" id="content">
<script type="text/javascript" src="js/menu.js"></script><script>
$(document).ready(function() {
$('a.gripper').click(function() {
$(this).nextAll('div.code-tabs').slideToggle();
$(this).children('img').toggle();
return false;
});
$('div.code-tabs').hide();
$('a.gripper').show();
$('div.file-nav').show();
});
</script><h1 class="file">Barcode/Object/Upca.php</h1>
<div class="file-nav"><ul id="file-nav">
<li><a href="#top">Global</a></li>
<li>
<a href="#classes"><img src="images/icons/class.png" height="14">
Classes
</a><ul><li><a href="#%5CZend_Barcode_Object_Upca">\Zend_Barcode_Object_Upca</a></li></ul>
</li>
</ul></div>
<a name="top"></a><div id="file-description">
<p class="short-description">Zend Framework</p>
<div class="long-description"><p>LICENSE</p>
<p>This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to [email protected] so we can send you a copy immediately.</p>
</div>
</div>
<dl class="file-info">
<dt>category</dt>
<dd>Zend
</dd>
<dt>copyright</dt>
<dd>Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
</dd>
<dt>license</dt>
<dd>
<a href="http://framework.zend.com/license/new-bsd">New BSD License</a>
</dd>
<dt>package</dt>
<dd>Zend_Barcode
</dd>
<dt>subpackage</dt>
<dd>Object
</dd>
<dt>version</dt>
<dd>$Id: Upca.php 23775 2011-03-01 17:25:24Z ralph $
</dd>
</dl>
<a name="classes"></a><a id="\Zend_Barcode_Object_Upca"></a><h2 class="class">\Zend_Barcode_Object_Upca<div class="to-top"><a href="#top">jump to top</a></div>
</h2>
<div class="class">
<p class="short-description">Class for generate UpcA barcode</p>
<div class="long-description">
</div>
<dl class="class-info">
<dt>Extends from</dt>
<dd><a href="db_Barcode_Object_Ean13.html#%5CZend_Barcode_Object_Ean13">\Zend_Barcode_Object_Ean13</a></dd>
<dt>category</dt>
<dd>Zend
</dd>
<dt>copyright</dt>
<dd>Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
</dd>
<dt>license</dt>
<dd>
<a href="http://framework.zend.com/license/new-bsd">New BSD License</a>
</dd>
<dt>package</dt>
<dd>Zend_Barcode
</dd>
</dl>
<h3>Methods</h3>
<div>
<a id="\Zend_Barcode_Object_Upca::__construct()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">__construct</span><span class="nb-faded-text">(
array|\Zend_Config $options
=
null
)
</span>
:
void</code><div class="description">
<p class="short_description">Constructor</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::__construct()">\Zend_Barcode_Object_ObjectAbstract::__construct()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$options</th>
<td>array|\Zend_Config</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_addInstruction()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_addInstruction</span><span class="nb-faded-text">(
array $instruction
)
</span>
:
void</code><div class="description">
<p class="short_description">Add an instruction in the array of instructions</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_addInstruction()">\Zend_Barcode_Object_ObjectAbstract::_addInstruction()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$instruction</th>
<td>array</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_addLeadingZeros()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_addLeadingZeros</span><span class="nb-faded-text">(
string $text, boolean $withoutChecksum
=
false
)
</span>
:
void</code><div class="description">
<p class="short_description">Automatically add leading zeros if barcode length is fixed</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_addLeadingZeros()">\Zend_Barcode_Object_ObjectAbstract::_addLeadingZeros()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$text</th>
<td>string</td>
<td><em></em></td>
</tr>
<tr>
<th>$withoutChecksum</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_addPolygon()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_addPolygon</span><span class="nb-faded-text">(
array $points, integer $color
=
null, boolean $filled
=
true
)
</span>
:
void</code><div class="description">
<p class="short_description">Add a polygon drawing instruction in the set of instructions</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_addPolygon()">\Zend_Barcode_Object_ObjectAbstract::_addPolygon()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$points</th>
<td>array</td>
<td><em></em></td>
</tr>
<tr>
<th>$color</th>
<td>integer</td>
<td><em></em></td>
</tr>
<tr>
<th>$filled</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_addText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_addText</span><span class="nb-faded-text">(
string $text, float $size, array $position, string $font, integer $color, string $alignment
=
center, float $orientation
=
0
)
</span>
:
void</code><div class="description">
<p class="short_description">Add a text drawing instruction in the set of instructions</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_addText()">\Zend_Barcode_Object_ObjectAbstract::_addText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$text</th>
<td>string</td>
<td><em></em></td>
</tr>
<tr>
<th>$size</th>
<td>float</td>
<td><em></em></td>
</tr>
<tr>
<th>$position</th>
<td>array</td>
<td><em></em></td>
</tr>
<tr>
<th>$font</th>
<td>string</td>
<td><em></em></td>
</tr>
<tr>
<th>$color</th>
<td>integer</td>
<td><em></em></td>
</tr>
<tr>
<th>$alignment</th>
<td>string</td>
<td><em></em></td>
</tr>
<tr>
<th>$orientation</th>
<td>float</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_calculateBarcodeHeight()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_calculateBarcodeHeight</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Height of the barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_calculateBarcodeHeight()">\Zend_Barcode_Object_ObjectAbstract::_calculateBarcodeHeight()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_calculateBarcodeWidth()"></a><div class="method">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_calculateBarcodeWidth</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description"><p class="short_description">Width of the barcode (in pixels)</p></div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_calculateHeight()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_calculateHeight</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Height of the result object</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_calculateHeight()">\Zend_Barcode_Object_ObjectAbstract::_calculateHeight()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_calculateWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_calculateWidth</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Width of the result image
(before any rotation)</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_calculateWidth()">\Zend_Barcode_Object_ObjectAbstract::_calculateWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_checkFontAndOrientation()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_checkFontAndOrientation</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Drawing with an angle is just allow TTF font</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_checkFontAndOrientation()">\Zend_Barcode_Object_ObjectAbstract::_checkFontAndOrientation()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_checkParams()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_checkParams</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Partial check of interleaved EAN/UPC barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_Ean13.html#%5CZend_Barcode_Object_Ean13::_checkParams()">\Zend_Barcode_Object_Ean13::_checkParams()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_checkRatio()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_checkRatio</span><span class="nb-faded-text">(
integer $min
=
2, integer $max
=
3
)
</span>
:
void</code><div class="description">
<p class="short_description">Check the ratio between the thick and the thin bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_checkRatio()">\Zend_Barcode_Object_ObjectAbstract::_checkRatio()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$min</th>
<td>integer</td>
<td><em></em></td>
</tr>
<tr>
<th>$max</th>
<td>integer</td>
<td><em></em></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_checkText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_checkText</span><span class="nb-faded-text">(
$value
=
null
)
</span>
:
void</code><div class="description">
<p class="short_description">Check if a text is really provided to barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_checkText()">\Zend_Barcode_Object_ObjectAbstract::_checkText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td></td>
<td><em></em></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_drawBarcode()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_drawBarcode</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Draw the barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_drawBarcode()">\Zend_Barcode_Object_ObjectAbstract::_drawBarcode()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_drawBorder()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_drawBorder</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Partial function to draw border</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_drawBorder()">\Zend_Barcode_Object_ObjectAbstract::_drawBorder()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_drawEan13Text()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_drawEan13Text</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description"></p>
<small>Inherited from:
<a href="db_Barcode_Object_Ean13.html#%5CZend_Barcode_Object_Ean13::_drawEan13Text()">\Zend_Barcode_Object_Ean13::_drawEan13Text()</a></small>
</div>
<div class="code-tabs"></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_drawText()"></a><div class="method">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_drawText</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description"><p class="short_description">Partial function to draw text</p></div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_getDefaultOptions()"></a><div class="method">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_getDefaultOptions</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description"><p class="short_description">Default options for Postnet barcode</p></div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_postDrawBarcode()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_postDrawBarcode</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Allow each child to draw something else
(ex: bearer bars in interleaved 2 of 5 code)</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_postDrawBarcode()">\Zend_Barcode_Object_ObjectAbstract::_postDrawBarcode()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_preDrawBarcode()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_preDrawBarcode</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Allow each child to draw something else</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_preDrawBarcode()">\Zend_Barcode_Object_ObjectAbstract::_preDrawBarcode()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_prepareBarcode()"></a><div class="method">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_prepareBarcode</span><span class="nb-faded-text">(
)
</span>
:
array</code><div class="description"><p class="short_description">Prepare array to draw barcode</p></div>
<div class="code-tabs">
<div class="long-description"><p>)</p>
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>array</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_rotate()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_rotate</span><span class="nb-faded-text">(
float $x1, float $y1
)
</span>
:
array</code><div class="description">
<p class="short_description">Apply rotation on a point in X/Y dimensions</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_rotate()">\Zend_Barcode_Object_ObjectAbstract::_rotate()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$x1</th>
<td>float</td>
<td><em><p>x-position before rotation</p>
</em></td>
</tr>
<tr>
<th>$y1</th>
<td>float</td>
<td><em><p>y-position before rotation</p>
</em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>array</td>
<td>Array of two elements corresponding to the new XY point</td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::_validateText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_protected.png" style="margin-right: 5px" alt="protected"><span class="highlight">_validateText</span><span class="nb-faded-text">(
string $value, array $options
=
array
)
</span>
:
void</code><div class="description">
<p class="short_description">Standard validation for most of barcode objects</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::_validateText()">\Zend_Barcode_Object_ObjectAbstract::_validateText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>string</td>
<td><em></em></td>
</tr>
<tr>
<th>$options</th>
<td>array</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::checkParams()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">checkParams</span><span class="nb-faded-text">(
)
</span>
:
void</code><div class="description">
<p class="short_description">Checking of parameters after all settings</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::checkParams()">\Zend_Barcode_Object_ObjectAbstract::checkParams()</a></small>
</div>
<div class="code-tabs"><div class="long-description">
</div></div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::draw()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">draw</span><span class="nb-faded-text">(
)
</span>
:
array</code><div class="description">
<p class="short_description">Complete drawing of the barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::draw()">\Zend_Barcode_Object_ObjectAbstract::draw()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>array</td>
<td>Table of instructions</td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getBackgroundColor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getBackgroundColor</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Retrieve background color of the image</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getBackgroundColor()">\Zend_Barcode_Object_ObjectAbstract::getBackgroundColor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getBarHeight()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getBarHeight</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get height of the barcode bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getBarHeight()">\Zend_Barcode_Object_ObjectAbstract::getBarHeight()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getBarThickWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getBarThickWidth</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get thickness of thick bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getBarThickWidth()">\Zend_Barcode_Object_ObjectAbstract::getBarThickWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getBarThinWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getBarThinWidth</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get thickness of thin bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getBarThinWidth()">\Zend_Barcode_Object_ObjectAbstract::getBarThinWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getBarcodeNamespace()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getBarcodeNamespace</span><span class="nb-faded-text">(
)
</span>
:
string</code><div class="description">
<p class="short_description">Retrieve barcode namespace</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getBarcodeNamespace()">\Zend_Barcode_Object_ObjectAbstract::getBarcodeNamespace()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>string</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getChecksum()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getChecksum</span><span class="nb-faded-text">(
string $text
)
</span>
:
int</code><div class="description">
<p class="short_description">Get barcode checksum</p>
<small>Inherited from:
<a href="db_Barcode_Object_Ean13.html#%5CZend_Barcode_Object_Ean13::getChecksum()">\Zend_Barcode_Object_Ean13::getChecksum()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$text</th>
<td>string</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>int</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getDrawText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getDrawText</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if drawing of text to encode is enabled</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getDrawText()">\Zend_Barcode_Object_ObjectAbstract::getDrawText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getFactor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getFactor</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get factor applying to
thinBarWidth - thickBarWidth - barHeight - fontSize</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getFactor()">\Zend_Barcode_Object_ObjectAbstract::getFactor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getFont()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getFont</span><span class="nb-faded-text">(
)
</span>
:
integer|string</code><div class="description">
<p class="short_description">Retrieve the font</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getFont()">\Zend_Barcode_Object_ObjectAbstract::getFont()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integerstring</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getFontSize()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getFontSize</span><span class="nb-faded-text">(
)
</span>
:
float</code><div class="description">
<p class="short_description">Retrieve the size of the font in case of TTF</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getFontSize()">\Zend_Barcode_Object_ObjectAbstract::getFontSize()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>float</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getForeColor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getForeColor</span><span class="nb-faded-text">(
)
</span>
:
\unknown</code><div class="description">
<p class="short_description">Retrieve color of the barcode and text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getForeColor()">\Zend_Barcode_Object_ObjectAbstract::getForeColor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\unknown</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getHeight()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getHeight</span><span class="nb-faded-text">(
$recalculate
=
false
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get height of the result object</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getHeight()">\Zend_Barcode_Object_ObjectAbstract::getHeight()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$recalculate</th>
<td></td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getInstructions()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getInstructions</span><span class="nb-faded-text">(
)
</span>
:
array</code><div class="description">
<p class="short_description">Retrieve the set of drawing instructions</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getInstructions()">\Zend_Barcode_Object_ObjectAbstract::getInstructions()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>array</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getOffsetLeft()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getOffsetLeft</span><span class="nb-faded-text">(
boolean $recalculate
=
false
)
</span>
:
float</code><div class="description">
<p class="short_description">Calculate the offset from the left of the object
if an orientation is activated</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getOffsetLeft()">\Zend_Barcode_Object_ObjectAbstract::getOffsetLeft()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$recalculate</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>float</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getOffsetTop()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getOffsetTop</span><span class="nb-faded-text">(
boolean $recalculate
=
false
)
</span>
:
float</code><div class="description">
<p class="short_description">Calculate the offset from the top of the object
if an orientation is activated</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getOffsetTop()">\Zend_Barcode_Object_ObjectAbstract::getOffsetTop()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$recalculate</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>float</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getOrientation()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getOrientation</span><span class="nb-faded-text">(
)
</span>
:
float</code><div class="description">
<p class="short_description">Retrieve orientation of barcode and text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getOrientation()">\Zend_Barcode_Object_ObjectAbstract::getOrientation()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>float</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getQuietZone()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getQuietZone</span><span class="nb-faded-text">(
)
</span>
:
integer</code><div class="description">
<p class="short_description">Quiet zone before first bar
and after the last bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getQuietZone()">\Zend_Barcode_Object_ObjectAbstract::getQuietZone()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getRawText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getRawText</span><span class="nb-faded-text">(
)
</span>
:
string</code><div class="description">
<p class="short_description">Retrieve text to encode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getRawText()">\Zend_Barcode_Object_ObjectAbstract::getRawText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>string</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getStretchText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getStretchText</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if the adjustment of the position of the characters
to the position of the bars is enabled</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getStretchText()">\Zend_Barcode_Object_ObjectAbstract::getStretchText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getText</span><span class="nb-faded-text">(
)
</span>
:
string</code><div class="description">
<p class="short_description">Retrieve text to encode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getText()">\Zend_Barcode_Object_ObjectAbstract::getText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>string</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getTextToDisplay()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getTextToDisplay</span><span class="nb-faded-text">(
)
</span>
:
string</code><div class="description">
<p class="short_description">Retrieve text to display</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getTextToDisplay()">\Zend_Barcode_Object_ObjectAbstract::getTextToDisplay()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>string</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getType()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getType</span><span class="nb-faded-text">(
)
</span>
:
string</code><div class="description">
<p class="short_description">Retrieve type of barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getType()">\Zend_Barcode_Object_ObjectAbstract::getType()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>string</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getWidth</span><span class="nb-faded-text">(
$recalculate
=
false
)
</span>
:
integer</code><div class="description">
<p class="short_description">Get width of the result object</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getWidth()">\Zend_Barcode_Object_ObjectAbstract::getWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$recalculate</th>
<td></td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>integer</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getWithBorder()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getWithBorder</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if border are draw or not</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getWithBorder()">\Zend_Barcode_Object_ObjectAbstract::getWithBorder()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getWithChecksum()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getWithChecksum</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if the checksum character is automatically
added to the barcode text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getWithChecksum()">\Zend_Barcode_Object_ObjectAbstract::getWithChecksum()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getWithChecksumInText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getWithChecksumInText</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if the checksum character is automatically
added to the barcode text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getWithChecksumInText()">\Zend_Barcode_Object_ObjectAbstract::getWithChecksumInText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::getWithQuietZones()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getWithQuietZones</span><span class="nb-faded-text">(
)
</span>
:
boolean</code><div class="description">
<p class="short_description">Retrieve if quiet zones are draw or not</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::getWithQuietZones()">\Zend_Barcode_Object_ObjectAbstract::getWithQuietZones()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>boolean</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBackgroundColor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBackgroundColor</span><span class="nb-faded-text">(
integer $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set the color of the background</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBackgroundColor()">\Zend_Barcode_Object_ObjectAbstract::setBackgroundColor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>integer</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBarHeight()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBarHeight</span><span class="nb-faded-text">(
integer $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set height of the barcode bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBarHeight()">\Zend_Barcode_Object_ObjectAbstract::setBarHeight()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>integer</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBarThickWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBarThickWidth</span><span class="nb-faded-text">(
integer $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set thickness of thick bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBarThickWidth()">\Zend_Barcode_Object_ObjectAbstract::setBarThickWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>integer</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBarThinWidth()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBarThinWidth</span><span class="nb-faded-text">(
integer $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set thickness of thin bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBarThinWidth()">\Zend_Barcode_Object_ObjectAbstract::setBarThinWidth()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>integer</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBarcodeFont()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBarcodeFont</span><span class="nb-faded-text">(
string $font
)
</span>
:
void</code><div class="description">
<span class="attribute">static</span><p class="short_description">Set the font for all instances of barcode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBarcodeFont()">\Zend_Barcode_Object_ObjectAbstract::setBarcodeFont()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$font</th>
<td>string</td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setBarcodeNamespace()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setBarcodeNamespace</span><span class="nb-faded-text">(
string $namespace
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set barcode namespace for autoloading</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setBarcodeNamespace()">\Zend_Barcode_Object_ObjectAbstract::setBarcodeNamespace()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$namespace</th>
<td>string</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setConfig()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setConfig</span><span class="nb-faded-text">(
\Zend_Config $config
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set barcode state from config object</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setConfig()">\Zend_Barcode_Object_ObjectAbstract::setConfig()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$config</th>
<td>\Zend_Config</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setDrawText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setDrawText</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate drawing of text to encode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setDrawText()">\Zend_Barcode_Object_ObjectAbstract::setDrawText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setFactor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setFactor</span><span class="nb-faded-text">(
float $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set factor applying to
thinBarWidth - thickBarWidth - barHeight - fontSize</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setFactor()">\Zend_Barcode_Object_ObjectAbstract::setFactor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>float</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setFont()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setFont</span><span class="nb-faded-text">(
integer|string $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set the font:
- if integer between 1 and 5, use gd built-in fonts
- if string, $value is assumed to be the path to a TTF font</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setFont()">\Zend_Barcode_Object_ObjectAbstract::setFont()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>integer|string</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setFontSize()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setFontSize</span><span class="nb-faded-text">(
float $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set the size of the font in case of TTF</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setFontSize()">\Zend_Barcode_Object_ObjectAbstract::setFontSize()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>float</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setForeColor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setForeColor</span><span class="nb-faded-text">(
string $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set color of the barcode and text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setForeColor()">\Zend_Barcode_Object_ObjectAbstract::setForeColor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>string</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setOptions()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setOptions</span><span class="nb-faded-text">(
array $options
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set barcode state from options array</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setOptions()">\Zend_Barcode_Object_ObjectAbstract::setOptions()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$options</th>
<td>array</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setOrientation()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setOrientation</span><span class="nb-faded-text">(
float $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set orientation of barcode and text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setOrientation()">\Zend_Barcode_Object_ObjectAbstract::setOrientation()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>float</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setReverseColor()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setReverseColor</span><span class="nb-faded-text">(
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Allow fast inversion of font/bars color and background color</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setReverseColor()">\Zend_Barcode_Object_ObjectAbstract::setReverseColor()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setStretchText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setStretchText</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate the adjustment of the position
of the characters to the position of the bars</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setStretchText()">\Zend_Barcode_Object_ObjectAbstract::setStretchText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setText</span><span class="nb-faded-text">(
string $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Set text to encode</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setText()">\Zend_Barcode_Object_ObjectAbstract::setText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>string</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setWithBorder()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setWithBorder</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate drawing of the bar</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setWithBorder()">\Zend_Barcode_Object_ObjectAbstract::setWithBorder()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setWithChecksum()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setWithChecksum</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate the automatic generation
of the checksum character
added to the barcode text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setWithChecksum()">\Zend_Barcode_Object_ObjectAbstract::setWithChecksum()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setWithChecksumInText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setWithChecksumInText</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate the automatic generation
of the checksum character
added to the barcode text</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setWithChecksumInText()">\Zend_Barcode_Object_ObjectAbstract::setWithChecksumInText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
<strong>Throws</strong><table class="argument-info">
<thead><tr>
<th>Exception</th>
<th>Description</th>
</tr></thead>
<tr>
<td><a href="db_Barcode_Object_Exception.html#%5CZend_Barcode_Object_Exception">\Zend_Barcode_Object_Exception</a></td>
<td><em></em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::setWithQuietZones()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">setWithQuietZones</span><span class="nb-faded-text">(
boolean $value
)
</span>
:
\Zend_Barcode_Object</code><div class="description">
<p class="short_description">Activate/deactivate drawing of the quiet zones</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::setWithQuietZones()">\Zend_Barcode_Object_ObjectAbstract::setWithQuietZones()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>boolean</td>
<td><em></em></td>
</tr>
</table>
<strong>Returns</strong><table class="argument-info">
<thead><tr>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<td>\Zend_Barcode_Object</td>
<td></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
<a id="\Zend_Barcode_Object_Upca::validateText()"></a><div class="method inherited_from ">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">validateText</span><span class="nb-faded-text">(
string $value
)
</span>
:
void</code><div class="description">
<p class="short_description">Check for invalid characters</p>
<small>Inherited from:
<a href="db_Barcode_Object_ObjectAbstract.html#%5CZend_Barcode_Object_ObjectAbstract::validateText()">\Zend_Barcode_Object_ObjectAbstract::validateText()</a></small>
</div>
<div class="code-tabs">
<div class="long-description">
</div>
<strong>Parameters</strong><table class="argument-info">
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr></thead>
<tr>
<th>$value</th>
<td>string</td>
<td><em>Text to be ckecked</em></td>
</tr>
</table>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<small xmlns="" class="footer">Documentation was generated by <a href="http://docblox-project.org">DocBlox 0.13.3</a>.
</small></body></html>
| wukchung/Home-development | documentation/api/core/db_Barcode_Object_Upca.html | HTML | bsd-3-clause | 94,892 |
<!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>MNE-CPP: Class Members</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="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">MNE-CPP
 <span id="projectnumber">beta 1.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.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="modules.html"><span>Modules</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>
<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="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li class="current"><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
<li><a href="functions_rela.html"><span>Related Functions</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions.html#index__"><span>_</span></a></li>
<li><a href="functions_a.html#index_a"><span>a</span></a></li>
<li><a href="functions_b.html#index_b"><span>b</span></a></li>
<li><a href="functions_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_d.html#index_d"><span>d</span></a></li>
<li><a href="functions_e.html#index_e"><span>e</span></a></li>
<li><a href="functions_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_i.html#index_i"><span>i</span></a></li>
<li><a href="functions_j.html#index_j"><span>j</span></a></li>
<li><a href="functions_k.html#index_k"><span>k</span></a></li>
<li><a href="functions_l.html#index_l"><span>l</span></a></li>
<li><a href="functions_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_v.html#index_v"><span>v</span></a></li>
<li><a href="functions_w.html#index_w"><span>w</span></a></li>
<li class="current"><a href="functions_x.html#index_x"><span>x</span></a></li>
<li><a href="functions_z.html#index_z"><span>z</span></a></li>
<li><a href="functions_~.html#index_~"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- 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">
<div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div>
<h3><a class="anchor" id="index_x"></a>- x -</h3><ul>
<li>x1
: <a class="el" href="struct_i_n_v_e_r_s_e_l_i_b_1_1_pair.html#aebddc056b9761d1647ae282fb8b20e88">INVERSELIB::Pair</a>
</li>
<li>x2
: <a class="el" href="struct_i_n_v_e_r_s_e_l_i_b_1_1_pair.html#a5e72c38d49abd45201ce7f9459400adf">INVERSELIB::Pair</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Mar 27 2015 22:54:47 for MNE-CPP by  <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>
| CBoensel/mne-cpp | doc/html/functions_x.html | HTML | bsd-3-clause | 6,834 |
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="utf-8" />
<title>ebook首页</title>
</head>
<body>
<h1>ebook小说在线阅读</h1>
<p>Hello!树先生。这是一个开源项目,探讨PHP项目目录规划。</p>
<p>项目代码:<a href="https://github.com/sinkcup/php-pds" target="_blank">https://github.com/sinkcup/php-pds</a></p>
<h2>文章列表</h2>
<?php
foreach($d['articles'] as $v) {
echo '<div>'
. '<p>《' . htmlspecialchars($v['title']) . '》作者:' . htmlspecialchars($v['author'])
. '<a href="./articles_get.php?id=' . $v['id'] . '">网页阅读</a>
<a href="./articles_get.php?id=' . $v['id'] . '&contentType=txt">txt阅读</a>
txt下载:
<a href="./articles_get.php?id=' . $v['id'] . '&contentType=txt&isDownload=1&eol=unix">Unix(Android、Ubuntu、新OS X)</a>
<a href="./articles_get.php?id=' . $v['id'] . '&contentType=txt&isDownload=1&eol=dos">Windows</a>
<a href="./articles_get.php?id=' . $v['id'] . '&contentType=txt&isDownload=1&eol=mac_os">老Mac OS</a>
</p>'
. '<p>' . htmlspecialchars(mb_substr($v['content'], 0, 100, 'utf-8')) . '……</p>'
. '</div>';
}
?>
<form action="articles_add.php" method="post">
<fieldset>
<legend>写文章</legend>
<div>
<label for="author">作者:</label>
<input type="text" name="author" id="author" />
</div>
<div>
<label for="author">标题:</label>
<input type="text" name="title" id="title" />
</div>
<div>
<label for="content">内容:</label>
<textarea name="content" id="content" cols="30" rows="5"></textarea>
</div>
<div>
<input type="submit" value="发表" />
</div>
</fieldset>
</form>
</body>
</html>
| sinkcup/php-pds | res/index.html | HTML | bsd-3-clause | 2,182 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>// RobotBuilder Version: 1.0<a name="line.1"></a>
<span class="sourceLineNo">002</span>//<a name="line.2"></a>
<span class="sourceLineNo">003</span>// This file was generated by RobotBuilder. It contains sections of<a name="line.3"></a>
<span class="sourceLineNo">004</span>// code that are automatically generated and assigned by robotbuilder.<a name="line.4"></a>
<span class="sourceLineNo">005</span>// These sections will be updated in the future when you export to<a name="line.5"></a>
<span class="sourceLineNo">006</span>// Java from RobotBuilder. Do not put any code or make any change in<a name="line.6"></a>
<span class="sourceLineNo">007</span>// the blocks indicating autogenerated code or it will be lost on an<a name="line.7"></a>
<span class="sourceLineNo">008</span>// update. Deleting the comments indicating the section will prevent<a name="line.8"></a>
<span class="sourceLineNo">009</span>// it from being updated in the future.<a name="line.9"></a>
<span class="sourceLineNo">010</span>package org.usfirst.frc330.Beachbot2014Java.commands;<a name="line.10"></a>
<span class="sourceLineNo">011</span>import edu.wpi.first.wpilibj.command.Command;<a name="line.11"></a>
<span class="sourceLineNo">012</span>import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;<a name="line.12"></a>
<span class="sourceLineNo">013</span>import org.usfirst.frc330.Beachbot2014Java.Robot;<a name="line.13"></a>
<span class="sourceLineNo">014</span>/**<a name="line.14"></a>
<span class="sourceLineNo">015</span> *<a name="line.15"></a>
<span class="sourceLineNo">016</span> */<a name="line.16"></a>
<span class="sourceLineNo">017</span>public class SendDefaultSmartDashboardData extends Command {<a name="line.17"></a>
<span class="sourceLineNo">018</span> public SendDefaultSmartDashboardData() {<a name="line.18"></a>
<span class="sourceLineNo">019</span> // Use requires() here to declare subsystem dependencies<a name="line.19"></a>
<span class="sourceLineNo">020</span> // eg. requires(chassis);<a name="line.20"></a>
<span class="sourceLineNo">021</span> <a name="line.21"></a>
<span class="sourceLineNo">022</span> // BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=REQUIRES<a name="line.22"></a>
<span class="sourceLineNo">023</span> requires(Robot.smartDashboardSender);<a name="line.23"></a>
<span class="sourceLineNo">024</span> // END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=REQUIRES<a name="line.24"></a>
<span class="sourceLineNo">025</span> setRunWhenDisabled(true);<a name="line.25"></a>
<span class="sourceLineNo">026</span> }<a name="line.26"></a>
<span class="sourceLineNo">027</span> <a name="line.27"></a>
<span class="sourceLineNo">028</span> int count = 0;<a name="line.28"></a>
<span class="sourceLineNo">029</span> // Called just before this Command runs the first time<a name="line.29"></a>
<span class="sourceLineNo">030</span> protected void initialize() {<a name="line.30"></a>
<span class="sourceLineNo">031</span> SmartDashboard.putNumber("ChassisX", chassisX);<a name="line.31"></a>
<span class="sourceLineNo">032</span> SmartDashboard.putNumber("ChassisY", chassisY);<a name="line.32"></a>
<span class="sourceLineNo">033</span> SmartDashboard.putNumber("EncoderLeft", encoderLeft);<a name="line.33"></a>
<span class="sourceLineNo">034</span> SmartDashboard.putNumber("EncoderRight", encoderRight);<a name="line.34"></a>
<span class="sourceLineNo">035</span> <a name="line.35"></a>
<span class="sourceLineNo">036</span> count = 0;<a name="line.36"></a>
<span class="sourceLineNo">037</span> }<a name="line.37"></a>
<span class="sourceLineNo">038</span> double pickupCurrent = 0;<a name="line.38"></a>
<span class="sourceLineNo">039</span> double armPosition = 0;<a name="line.39"></a>
<span class="sourceLineNo">040</span> double chassisX = 0;<a name="line.40"></a>
<span class="sourceLineNo">041</span> double chassisY = 0;<a name="line.41"></a>
<span class="sourceLineNo">042</span> double gyroAngle = 0;<a name="line.42"></a>
<span class="sourceLineNo">043</span> double encoderLeft = 0;<a name="line.43"></a>
<span class="sourceLineNo">044</span> double encoderRight = 0;<a name="line.44"></a>
<span class="sourceLineNo">045</span> double shooterDistance = 0;<a name="line.45"></a>
<span class="sourceLineNo">046</span> boolean ballInPickup = false;<a name="line.46"></a>
<span class="sourceLineNo">047</span> // Called repeatedly when this Command is scheduled to run<a name="line.47"></a>
<span class="sourceLineNo">048</span> protected void execute() {<a name="line.48"></a>
<span class="sourceLineNo">049</span> if (count % 10 == 0)<a name="line.49"></a>
<span class="sourceLineNo">050</span> {<a name="line.50"></a>
<span class="sourceLineNo">051</span> if (pickupCurrent != Robot.pickup.getCurrent()) {<a name="line.51"></a>
<span class="sourceLineNo">052</span> pickupCurrent = Robot.pickup.getCurrent();<a name="line.52"></a>
<span class="sourceLineNo">053</span> SmartDashboard.putNumber("PickupCurrent", pickupCurrent);<a name="line.53"></a>
<span class="sourceLineNo">054</span> }<a name="line.54"></a>
<span class="sourceLineNo">055</span> if (armPosition != Robot.arm.getArmPosition()) {<a name="line.55"></a>
<span class="sourceLineNo">056</span> armPosition = Robot.arm.getArmPosition();<a name="line.56"></a>
<span class="sourceLineNo">057</span> SmartDashboard.putNumber("ArmPosition", armPosition);<a name="line.57"></a>
<span class="sourceLineNo">058</span> }<a name="line.58"></a>
<span class="sourceLineNo">059</span> if (chassisX != Robot.chassis.getX()) {<a name="line.59"></a>
<span class="sourceLineNo">060</span> chassisX = Robot.chassis.getX();<a name="line.60"></a>
<span class="sourceLineNo">061</span> SmartDashboard.putNumber("ChassisX", chassisX);<a name="line.61"></a>
<span class="sourceLineNo">062</span> }<a name="line.62"></a>
<span class="sourceLineNo">063</span> if (chassisY != Robot.chassis.getY()) {<a name="line.63"></a>
<span class="sourceLineNo">064</span> chassisY = Robot.chassis.getY();<a name="line.64"></a>
<span class="sourceLineNo">065</span> SmartDashboard.putNumber("ChassisY", chassisY);<a name="line.65"></a>
<span class="sourceLineNo">066</span> }<a name="line.66"></a>
<span class="sourceLineNo">067</span> if (gyroAngle != Robot.chassis.getAngle()) {<a name="line.67"></a>
<span class="sourceLineNo">068</span> gyroAngle = Robot.chassis.getAngle();<a name="line.68"></a>
<span class="sourceLineNo">069</span> SmartDashboard.putNumber("GyroAngle", gyroAngle);<a name="line.69"></a>
<span class="sourceLineNo">070</span> }<a name="line.70"></a>
<span class="sourceLineNo">071</span> if (encoderLeft != Robot.chassis.getLeftDistance()) {<a name="line.71"></a>
<span class="sourceLineNo">072</span> encoderLeft = Robot.chassis.getLeftDistance();<a name="line.72"></a>
<span class="sourceLineNo">073</span> SmartDashboard.putNumber("EncoderLeft", encoderLeft);<a name="line.73"></a>
<span class="sourceLineNo">074</span> }<a name="line.74"></a>
<span class="sourceLineNo">075</span> if (encoderRight != Robot.chassis.getRightDistance()) {<a name="line.75"></a>
<span class="sourceLineNo">076</span> encoderRight = Robot.chassis.getRightDistance();<a name="line.76"></a>
<span class="sourceLineNo">077</span> SmartDashboard.putNumber("EncoderRight", encoderRight);<a name="line.77"></a>
<span class="sourceLineNo">078</span> }<a name="line.78"></a>
<span class="sourceLineNo">079</span> if (shooterDistance != Robot.shooter.getBallDistance()) {<a name="line.79"></a>
<span class="sourceLineNo">080</span> shooterDistance = Robot.shooter.getBallDistance();<a name="line.80"></a>
<span class="sourceLineNo">081</span> SmartDashboard.putNumber("BallDistance", shooterDistance);<a name="line.81"></a>
<span class="sourceLineNo">082</span> }<a name="line.82"></a>
<span class="sourceLineNo">083</span> if (ballInPickup != Robot.pickup.isBallInPickup()) {<a name="line.83"></a>
<span class="sourceLineNo">084</span> ballInPickup = Robot.pickup.isBallInPickup();<a name="line.84"></a>
<span class="sourceLineNo">085</span> SmartDashboard.putBoolean("BallInPickup", ballInPickup);<a name="line.85"></a>
<span class="sourceLineNo">086</span> }<a name="line.86"></a>
<span class="sourceLineNo">087</span> }<a name="line.87"></a>
<span class="sourceLineNo">088</span> count++;<a name="line.88"></a>
<span class="sourceLineNo">089</span> }<a name="line.89"></a>
<span class="sourceLineNo">090</span> // Make this return true when this Command no longer needs to run execute()<a name="line.90"></a>
<span class="sourceLineNo">091</span> protected boolean isFinished() {<a name="line.91"></a>
<span class="sourceLineNo">092</span> return false;<a name="line.92"></a>
<span class="sourceLineNo">093</span> }<a name="line.93"></a>
<span class="sourceLineNo">094</span> // Called once after isFinished returns true<a name="line.94"></a>
<span class="sourceLineNo">095</span> protected void end() {<a name="line.95"></a>
<span class="sourceLineNo">096</span> }<a name="line.96"></a>
<span class="sourceLineNo">097</span> // Called when another command which requires one or more of the same<a name="line.97"></a>
<span class="sourceLineNo">098</span> // subsystems is scheduled to run<a name="line.98"></a>
<span class="sourceLineNo">099</span> protected void interrupted() {<a name="line.99"></a>
<span class="sourceLineNo">100</span> }<a name="line.100"></a>
<span class="sourceLineNo">101</span>}<a name="line.101"></a>
</pre>
</div>
</body>
</html>
| Beachbot330/Beachbot2014Java | doc/src-html/org/usfirst/frc330/Beachbot2014Java/commands/SendDefaultSmartDashboardData.html | HTML | bsd-3-clause | 10,507 |
<div>
Select Gerrit server configuration to test overridden Gerrit credentials.
This field used for this purpose only.
</div> | xiujuez/sonar-gerrit-plugin | src/main/resources/org/jenkinsci/plugins/sonargerrit/SonarToGerritPublisher/help-gerritServerName.html | HTML | mit | 133 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt-->
<title>Function awe_string_create_from_wide</title>
<link rel="stylesheet" type="text/css" href="../../../styles/ddox.css"/>
<link rel="stylesheet" href="../../../prettify/prettify.css" type="text/css"/>
<script type="text/javascript" src="../../../scripts/jquery.js">/**/</script>
<script type="text/javascript" src="../../../prettify/prettify.js">/**/</script>
<script type="text/javascript" src="../../../scripts/ddox.js">/**/</script>
</head>
<body onload="prettyPrint(); setupDdox();">
<nav id="main-nav"><!-- using block navigation in layout.dt-->
<ul class="tree-view">
<li class=" tree-view">
<a href="#" class="package">dash</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">components</a>
<ul class="tree-view">
<li>
<a href="../../../dash/components/animation.html" class=" module">animation</a>
</li>
<li>
<a href="../../../dash/components/assets.html" class=" module">assets</a>
</li>
<li>
<a href="../../../dash/components/camera.html" class=" module">camera</a>
</li>
<li>
<a href="../../../dash/components/component.html" class=" module">component</a>
</li>
<li>
<a href="../../../dash/components/lights.html" class=" module">lights</a>
</li>
<li>
<a href="../../../dash/components/material.html" class=" module">material</a>
</li>
<li>
<a href="../../../dash/components/mesh.html" class=" module">mesh</a>
</li>
<li>
<a href="../../../dash/components/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">core</a>
<ul class="tree-view">
<li>
<a href="../../../dash/core/dgame.html" class=" module">dgame</a>
</li>
<li>
<a href="../../../dash/core/gameobject.html" class=" module">gameobject</a>
</li>
<li>
<a href="../../../dash/core/prefabs.html" class=" module">prefabs</a>
</li>
<li>
<a href="../../../dash/core/properties.html" class=" module">properties</a>
</li>
<li>
<a href="../../../dash/core/scene.html" class=" module">scene</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">editor</a>
<ul class="tree-view">
<li>
<a href="../../../dash/editor/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../dash/editor/websockets.html" class=" module">websockets</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">graphics</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">adapters</a>
<ul class="tree-view">
<li>
<a href="../../../dash/graphics/adapters/adapter.html" class=" module">adapter</a>
</li>
<li>
<a href="../../../dash/graphics/adapters/gl.html" class=" module">gl</a>
</li>
<li>
<a href="../../../dash/graphics/adapters/linux.html" class=" module">linux</a>
</li>
<li>
<a href="../../../dash/graphics/adapters/win32gl.html" class=" module">win32gl</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">shaders</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">glsl</a>
<ul class="tree-view">
<li>
<a href="../../../dash/graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/geometry.html" class=" module">geometry</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/shadowmap.html" class=" module">shadowmap</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li>
<a href="../../../dash/graphics/shaders/glsl.html" class=" module">glsl</a>
</li>
<li>
<a href="../../../dash/graphics/shaders/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li>
<a href="../../../dash/graphics/adapters.html" class=" module">adapters</a>
</li>
<li>
<a href="../../../dash/graphics/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../dash/graphics/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">net</a>
<ul class="tree-view">
<li>
<a href="../../../dash/net/connection.html" class=" module">connection</a>
</li>
<li>
<a href="../../../dash/net/connectionmanager.html" class=" module">connectionmanager</a>
</li>
<li>
<a href="../../../dash/net/packets.html" class=" module">packets</a>
</li>
<li>
<a href="../../../dash/net/webconnection.html" class=" module">webconnection</a>
</li>
</ul>
</li>
<li class=" tree-view">
<a href="#" class="package">utility</a>
<ul class="tree-view">
<li>
<a href="../../../dash/utility/awesomium.html" class="selected module">awesomium</a>
</li>
<li>
<a href="../../../dash/utility/concurrency.html" class=" module">concurrency</a>
</li>
<li>
<a href="../../../dash/utility/config.html" class=" module">config</a>
</li>
<li>
<a href="../../../dash/utility/input.html" class=" module">input</a>
</li>
<li>
<a href="../../../dash/utility/output.html" class=" module">output</a>
</li>
<li>
<a href="../../../dash/utility/resources.html" class=" module">resources</a>
</li>
<li>
<a href="../../../dash/utility/soloud.html" class=" module">soloud</a>
</li>
<li>
<a href="../../../dash/utility/string.html" class=" module">string</a>
</li>
<li>
<a href="../../../dash/utility/tasks.html" class=" module">tasks</a>
</li>
<li>
<a href="../../../dash/utility/time.html" class=" module">time</a>
</li>
</ul>
</li>
<li>
<a href="../../../dash/components.html" class=" module">components</a>
</li>
<li>
<a href="../../../dash/core.html" class=" module">core</a>
</li>
<li>
<a href="../../../dash/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../dash/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../dash/net.html" class=" module">net</a>
</li>
<li>
<a href="../../../dash/utility.html" class=" module">utility</a>
</li>
</ul>
</li>
<li>
<a href="../../../dash.html" class=" module">dash</a>
</li>
</ul>
<noscript>
<p style="color: red">The search functionality needs JavaScript enabled</p>
</noscript>
<div id="symbolSearchPane" style="display: none">
<p>
<input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</p>
<ul id="symbolSearchResults" style="display: none"></ul>
<script type="application/javascript" src="../../../symbols.js"></script>
<script type="application/javascript">
//<![CDATA[
var symbolSearchRootDir = "../../../"; $('#symbolSearchPane').show();
//]]>
</script>
</div>
<script type="text/javascript" src="../../../scripts/mousetrap.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
Mousetrap.bind('s', function(e) {
$("#symbolSearch").focus();
return false;
});
});
//]]>
</script>
</nav>
<div id="main-contents">
<h1>Function awe_string_create_from_wide</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt-->
<section>
<p> Create a string from a Wide string. You must call <a href="../../../dash/utility/awesomium/awe_string_destroy.html"><code class="prettyprint lang-d">awe_string_destroy</code></a>
with the returned instance once you're done using it.
</p>
<section>
<p> @param <a href="../../../dash/utility/awesomium/awe_string_create_from_wide.html#str"><code class="prettyprint lang-d">str</code></a> A Wide string to be copied from.
</p>
<p> @param <a href="../../../dash/utility/awesomium/awe_string_create_from_wide.html#len"><code class="prettyprint lang-d">len</code></a> The length of the string
</p>
</section>
<section>
<h3>Prototype</h3>
<pre class="code prettyprint lang-d prototype">
<a href="../../../dash/utility/awesomium/awe_string.html">awe_string</a>* awe_string_create_from_wide(
const(wchar)* str,
uint len
) extern(C);</pre>
</section>
</section>
<section>
<h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt-->
</section>
<section>
<h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt-->
</section>
<section>
<h2>License</h2><!-- using block ddox.license in ddox.layout.dt-->
</section>
</div>
</body>
</html> | Circular-Studios/Dash-Docs | api/v0.10.0/dash/utility/awesomium/awe_string_create_from_wide.html | HTML | mit | 10,414 |
<!DOCTYPE html>
<html>
<head>
<title>main.js</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<link rel="stylesheet" media="all" href="docco.css" />
</head>
<body>
<div id="container">
<div id="background"></div>
<ul id="jump_to">
<li>
<a class="large" href="javascript:void(0);">Jump To …</a>
<a class="small" href="javascript:void(0);">+</a>
<div id="jump_wrapper">
<div id="jump_page"><a class="source" href="../index.html"><<< back to documentation</a>
<a class="source" href="base.html">
base.js
</a>
<a class="source" href="constraint.html">
constraint.js
</a>
<a class="source" href="defaults.html">
defaults.js
</a>
<a class="source" href="factory.html">
factory.js
</a>
<a class="source" href="field.html">
field.js
</a>
<a class="source" href="form.html">
form.js
</a>
<a class="source" href="main.html">
main.js
</a>
<a class="source" href="multiple.html">
multiple.js
</a>
<a class="source" href="pubsub.html">
pubsub.js
</a>
<a class="source" href="remote.html">
remote.js
</a>
<a class="source" href="ui.html">
ui.js
</a>
<a class="source" href="utils.html">
utils.js
</a>
<a class="source" href="validator.html">
validator.js
</a>
<a class="source" href="validator_registry.html">
validator_registry.js
</a>
</div>
</li>
</ul>
<ul class="sections">
<li id="title">
<div class="annotation">
<h1>main.js</h1>
</div>
</li>
<li id="section-1">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-1">¶</a>
</div>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-keyword">import</span> $ <span class="hljs-keyword">from</span> <span class="hljs-string">'jquery'</span>;
<span class="hljs-keyword">import</span> Utils <span class="hljs-keyword">from</span> <span class="hljs-string">'./utils'</span>;
<span class="hljs-keyword">import</span> Defaults <span class="hljs-keyword">from</span> <span class="hljs-string">'./defaults'</span>;
<span class="hljs-keyword">import</span> Base <span class="hljs-keyword">from</span> <span class="hljs-string">'./base'</span>;
<span class="hljs-keyword">import</span> ValidatorRegistry <span class="hljs-keyword">from</span> <span class="hljs-string">'./validator_registry'</span>;
<span class="hljs-keyword">import</span> UI <span class="hljs-keyword">from</span> <span class="hljs-string">'./ui'</span>;
<span class="hljs-keyword">import</span> Form <span class="hljs-keyword">from</span> <span class="hljs-string">'./form'</span>;
<span class="hljs-keyword">import</span> Field <span class="hljs-keyword">from</span> <span class="hljs-string">'./field'</span>;
<span class="hljs-keyword">import</span> Multiple <span class="hljs-keyword">from</span> <span class="hljs-string">'./multiple'</span>;
<span class="hljs-keyword">import</span> Factory <span class="hljs-keyword">from</span> <span class="hljs-string">'./factory'</span>;
<span class="hljs-keyword">var</span> vernums = $.fn.jquery.split(<span class="hljs-string">'.'</span>);
<span class="hljs-keyword">if</span> (<span class="hljs-built_in">parseInt</span>(vernums[<span class="hljs-number">0</span>]) <= <span class="hljs-number">1</span> && <span class="hljs-built_in">parseInt</span>(vernums[<span class="hljs-number">1</span>]) < <span class="hljs-number">8</span>) {
<span class="hljs-keyword">throw</span> <span class="hljs-string">"The loaded version of jQuery is too old. Please upgrade to 1.8.x or better."</span>;
}
<span class="hljs-keyword">if</span> (!vernums.forEach) {
Utils.warn(<span class="hljs-string">'Parsley requires ES5 to run properly. Please include https://github.com/es-shims/es5-shim'</span>);
}</pre></div></div>
</li>
<li id="section-2">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-2">¶</a>
</div>
<p>Inherit <code>on</code>, <code>off</code> & <code>trigger</code> to Parsley:</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-keyword">var</span> Parsley = <span class="hljs-built_in">Object</span>.assign(<span class="hljs-keyword">new</span> Base(), {
<span class="hljs-attr">element</span>: <span class="hljs-built_in">document</span>,
<span class="hljs-attr">$element</span>: $(<span class="hljs-built_in">document</span>),
<span class="hljs-attr">actualizeOptions</span>: <span class="hljs-literal">null</span>,
<span class="hljs-attr">_resetOptions</span>: <span class="hljs-literal">null</span>,
<span class="hljs-attr">Factory</span>: Factory,
<span class="hljs-attr">version</span>: <span class="hljs-string">'@@version'</span>
});</pre></div></div>
</li>
<li id="section-3">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-3">¶</a>
</div>
<p>Supplement Field and Form with Base
This way, the constructors will have access to those methods</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-built_in">Object</span>.assign(Field.prototype, UI.Field, Base.prototype);
<span class="hljs-built_in">Object</span>.assign(Form.prototype, UI.Form, Base.prototype);</pre></div></div>
</li>
<li id="section-4">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-4">¶</a>
</div>
<p>Inherit actualizeOptions and _resetOptions:</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-built_in">Object</span>.assign(Factory.prototype, Base.prototype);</pre></div></div>
</li>
<li id="section-5">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-5">¶</a>
</div>
<h3 id="jquery-api">jQuery API</h3>
<p><code>$('.elem').parsley(options)</code> or <code>$('.elem').psly(options)</code></p>
</div>
<div class="content"><div class='highlight'><pre>$.fn.parsley = $.fn.psly = <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">options</span>) </span>{
<span class="hljs-keyword">if</span> (<span class="hljs-keyword">this</span>.length > <span class="hljs-number">1</span>) {
<span class="hljs-keyword">var</span> instances = [];
<span class="hljs-keyword">this</span>.each(<span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params"></span>) </span>{
instances.push($(<span class="hljs-keyword">this</span>).parsley(options));
});
<span class="hljs-keyword">return</span> instances;
}</pre></div></div>
</li>
<li id="section-6">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-6">¶</a>
</div>
<p>Return undefined if applied to non existing DOM element</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (<span class="hljs-keyword">this</span>.length == <span class="hljs-number">0</span>) {
<span class="hljs-keyword">return</span>;
}
<span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> Factory(<span class="hljs-keyword">this</span>[<span class="hljs-number">0</span>], options);
};</pre></div></div>
</li>
<li id="section-7">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-7">¶</a>
</div>
<h3 id="field-and-form-extension">Field and Form extension</h3>
<p>Ensure the extension is now defined if it wasn’t previously</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-keyword">if</span> (<span class="hljs-string">'undefined'</span> === <span class="hljs-keyword">typeof</span> <span class="hljs-built_in">window</span>.ParsleyExtend)
<span class="hljs-built_in">window</span>.ParsleyExtend = {};</pre></div></div>
</li>
<li id="section-8">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-8">¶</a>
</div>
<h3 id="parsley-config">Parsley config</h3>
<p>Inherit from ParsleyDefault, and copy over any existing values</p>
</div>
<div class="content"><div class='highlight'><pre>Parsley.options = <span class="hljs-built_in">Object</span>.assign(Utils.objectCreate(Defaults), <span class="hljs-built_in">window</span>.ParsleyConfig);
<span class="hljs-built_in">window</span>.ParsleyConfig = Parsley.options; <span class="hljs-comment">// Old way of accessing global options</span></pre></div></div>
</li>
<li id="section-9">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-9">¶</a>
</div>
<h3 id="globals">Globals</h3>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-built_in">window</span>.Parsley = <span class="hljs-built_in">window</span>.psly = Parsley;
Parsley.Utils = Utils;
<span class="hljs-built_in">window</span>.ParsleyUtils = {};
$.each(Utils, (key, value) => {
<span class="hljs-keyword">if</span> (<span class="hljs-string">'function'</span> === <span class="hljs-keyword">typeof</span> value) {
<span class="hljs-built_in">window</span>.ParsleyUtils[key] = <span class="hljs-function">(<span class="hljs-params">...args</span>) =></span> {
Utils.warnOnce(<span class="hljs-string">'Accessing `window.ParsleyUtils` is deprecated. Use `window.Parsley.Utils` instead.'</span>);
<span class="hljs-keyword">return</span> Utils[key](...args);
};
}
});</pre></div></div>
</li>
<li id="section-10">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-10">¶</a>
</div>
<h3 id="define-methods-that-forward-to-the-registry-and-deprecate-all-access-except-through-window-parsley">Define methods that forward to the registry, and deprecate all access except through window.Parsley</h3>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-keyword">var</span> registry = <span class="hljs-built_in">window</span>.Parsley._validatorRegistry = <span class="hljs-keyword">new</span> ValidatorRegistry(<span class="hljs-built_in">window</span>.ParsleyConfig.validators, <span class="hljs-built_in">window</span>.ParsleyConfig.i18n);
<span class="hljs-built_in">window</span>.ParsleyValidator = {};
$.each(<span class="hljs-string">'setLocale addCatalog addMessage addMessages getErrorMessage formatMessage addValidator updateValidator removeValidator hasValidator'</span>.split(<span class="hljs-string">' '</span>), <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">i, method</span>) </span>{
<span class="hljs-built_in">window</span>.Parsley[method] = <span class="hljs-function">(<span class="hljs-params">...args</span>) =></span> registry[method](...args);
<span class="hljs-built_in">window</span>.ParsleyValidator[method] = <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params"></span>) </span>{
Utils.warnOnce(<span class="hljs-string">`Accessing the method '<span class="hljs-subst">${method}</span>' through Validator is deprecated. Simply call 'window.Parsley.<span class="hljs-subst">${method}</span>(...)'`</span>);
<span class="hljs-keyword">return</span> <span class="hljs-built_in">window</span>.Parsley[method](...arguments);
};
});</pre></div></div>
</li>
<li id="section-11">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-11">¶</a>
</div>
<h3 id="ui">UI</h3>
<p>Deprecated global object</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-built_in">window</span>.Parsley.UI = UI;
<span class="hljs-built_in">window</span>.ParsleyUI = {
<span class="hljs-attr">removeError</span>: <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">instance, name, doNotUpdateClass</span>) </span>{
<span class="hljs-keyword">var</span> updateClass = <span class="hljs-literal">true</span> !== doNotUpdateClass;
Utils.warnOnce(<span class="hljs-string">`Accessing UI is deprecated. Call 'removeError' on the instance directly. Please comment in issue 1073 as to your need to call this method.`</span>);
<span class="hljs-keyword">return</span> instance.removeError(name, {updateClass});
},
<span class="hljs-attr">getErrorsMessages</span>: <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">instance</span>) </span>{
Utils.warnOnce(<span class="hljs-string">`Accessing UI is deprecated. Call 'getErrorsMessages' on the instance directly.`</span>);
<span class="hljs-keyword">return</span> instance.getErrorsMessages();
}
};
$.each(<span class="hljs-string">'addError updateError'</span>.split(<span class="hljs-string">' '</span>), <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">i, method</span>) </span>{
<span class="hljs-built_in">window</span>.ParsleyUI[method] = <span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params">instance, name, message, assert, doNotUpdateClass</span>) </span>{
<span class="hljs-keyword">var</span> updateClass = <span class="hljs-literal">true</span> !== doNotUpdateClass;
Utils.warnOnce(<span class="hljs-string">`Accessing UI is deprecated. Call '<span class="hljs-subst">${method}</span>' on the instance directly. Please comment in issue 1073 as to your need to call this method.`</span>);
<span class="hljs-keyword">return</span> instance[method](name, {message, assert, updateClass});
};
});</pre></div></div>
</li>
<li id="section-12">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-12">¶</a>
</div>
<h3 id="parsley-auto-binding">PARSLEY auto-binding</h3>
<p>Prevent it by setting <code>ParsleyConfig.autoBind</code> to <code>false</code></p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-keyword">if</span> (<span class="hljs-literal">false</span> !== <span class="hljs-built_in">window</span>.ParsleyConfig.autoBind) {
$(<span class="hljs-function"><span class="hljs-keyword">function</span> (<span class="hljs-params"></span>) </span>{</pre></div></div>
</li>
<li id="section-13">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-13">¶</a>
</div>
<p>Works only on <code>data-parsley-validate</code>.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> ($(<span class="hljs-string">'[data-parsley-validate]'</span>).length)
$(<span class="hljs-string">'[data-parsley-validate]'</span>).parsley();
});
}
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> Parsley;</pre></div></div>
</li>
</ul>
</div>
<script>var _gaq=_gaq||[];_gaq.push(["_setAccount","UA-37229467-1"]);_gaq.push(["_trackPageview"]);(function(){var e=document.createElement("script");e.type="text/javascript";e.async=true;e.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})();</script></body>
</html>
| StuartStephens/Website | node_modules/parsleyjs/doc/annotated-source/main.html | HTML | mit | 18,543 |
<!doctype html>
<html>
<head>
<title>Firepad Tests</title>
<link rel="stylesheet" type="text/css" href="jasmine-1.3.1/jasmine.css">
<script type="text/javascript" src="jasmine-1.3.1/jasmine.js"></script>
<script type="text/javascript" src="jasmine-1.3.1/jasmine-html.js"></script>
<script type="text/javascript" src="codemirror/codemirror.js"></script>
<link rel="stylesheet" type="text/css" href="codemirror/codemirror.css">
<script src="firepad-debug.js"></script>
<script src="lib/helpers.js"></script>
<script src="lib/text-operation.spec.js"></script>
<script src="lib/cursor.spec.js"></script>
<script src="lib/wrapped-operation.spec.js"></script>
<script src="lib/undomanager.spec.js"></script>
<script src="lib/client.spec.js"></script>
<script src="lib/annotation-list.spec.js"></script>
<script src="lib/codemirror-adapter.spec.js"></script>
<script src="lib/parse-html.spec.js"></script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};
window.onload = function() {
jasmineEnv.execute();
};
})();
</script>
</head>
<body>
</body>
</html>
| cben/firepad | test/index.html | HTML | mit | 1,398 |
<div class="ui fluid segment">
<div class="ui stackable grid">
<div class="row">
<!--the pin-->
<div class="one wide computer two wide mobile column">
<i class="icon circular teal pin link" ng-class="{'inverted':page.pinned}" ng-click="togglePin(page)"></i>
</div>
<!--download info-->
<div class="eight wide mobile eight wide computer column">
<div class="truncate_text" ng-if="!page.isTorrent" title="{{page.url}}"> <a href="{{page.url}}"> {{page.defaultName == "" ? page.url : page.defaultName}} </a> </div>
<div class="truncate_text" ng-if="page.isTorrent" title="{{page.name}}">{{page.name}}</div>
<div class="download-msg">><span>{{page.msg ? page.msg:('Download'+((getProgress(page)==100)?'ed':'ing')+' to cloud')}}</span></div>
<div class="ui small indicating progress" ng-class="{'active':(getProgress(page) > 0 && getProgress(page) < 100)}" data-percent="{{getProgress(page)}}">
<div class="bar" style="width:{{getProgress(page)}}%">
</div>
</div>
</div>
<!--controls and progress-->
<div class="six wide mobile six wide computer right floated right aligned column">
<div class="download-controls">
<i title="Download file" class="ui circular green download icon" ng-if="!page.isTorrent" ng-click="downloadToPC(page)" ng-class="{'disabled':page.progress<100,'link':page.progress==100}"></i>
<i title="Get/Show folder structure" class="ui circular blue icon" ng-if="page.isTorrent" ng-class="{
'link folder':!page.gettingDirStructure,
'disabled loading spinner':page.gettingDirStructure
}" ng-click="showTorrentFiles(page)"></i>
<i title="Upload to Drive" class="ui circular orange inverted cloud upload icon" ng-click="downloadToDrive(page)" ng-class="{'disabled':!selectedCloud.creds,'link':selectedCloud.creds}"></i>
<i title="Zip and download" ng-if="page.isTorrent" class="ui circular brown icon" ng-class="{
'loading spinner':page.zipping,
'zip':!page.zipping,
'disabled':(page.progress<100 || page.zipping),
'link':(page.progress==100 && !page.zipping)
}" ng-click="zipAndDownload(page)"></i>
<i title="Upload Zip to Cloud" class="ui circular green link upload icon" ng-if="page.zipExists && selectedCloud.creds && !page.zipping"
ng-click="uploadZipToCloud(page)"></i>
<i title="Delete" class="ui circular red inverted link trash icon" ng-click="delete(page)"> </i>
</div>
<div class="download-progress">
{{page.downloaded}}/{{page.size}}-<span class="download-percent">{{getProgress(page)}}%</span>-<b ng-class="{'muted':(page.speed == '0 B/s')}">{{page.speed}}</b>
</div>
</div>
</div>
<div class="row" ng-if="page.isTorrent && page.showFiles">
<div class="one wide column"></div>
<div class="fifteen wide column directoryContainer">
<directory dir="dir" href="'/files/'+page.id" torrent="page" ng-repeat="dir in page.dirStructure"></directory>
</div>
</div>
</div>
</div> | Mrigank11/embetacloud | static/parts/downloadItem/downloadItem.html | HTML | mit | 3,005 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!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>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page device.class.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/include/device.class.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../Device/Device.html">Device</a>
</td>
<td>
Device class for handling crud user defined devices This class uses the Config::Database for database connection.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Sun, 23 Oct 2005 23:34:08 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>
| cerad/appirm | irm/docs/code/Device/_include_device_class_php.html | HTML | mit | 1,887 |
<span dojoAttachPoint="containerNode" >
<table class="loginStatus">
<tr>
<td>
<div
dojoAttachPoint="username"
class="username"
>
</div>
</td>
<td>
<div
dojoAttachPoint="launcher"
class="launcher login"
>
</div>
</td>
</tr>
</table>
</span> | agua/agua | html/plugins/login/templates/loginstatus.html | HTML | mit | 495 |
<div class="geneTalkRevisions">
<div ng-if="geneRevisions.data.collection.length > 0">
<div class="row revisions-list {{ viewOptions.styles.view.summaryBackgroundColor }}">
<div class="col-xs-12">
<revisions-grid changes="geneRevisions.data.collection" base-state="events.genes.talk.revisions"></revisions-grid>
</div>
</div>
<div class="row revisions-view {{ viewOptions.styles.view.talkBackgroundColor }}">
<div class="col-xs-12">
<ui-view>
</ui-view>
</div>
</div>
</div>
<div ng-if="geneRevisions.data.collection.length === 0">
<div class="row revisions-prompt">
<div class="col-xs-12">
<div class="jumbotron">
<h2 style="margin:0;padding:0;">No suggested revisions exist for this gene.</h2>
<p>You may create a suggested revision by clicking on the gene name at the top of this record.</p>
</div>
</div>
</div>
</div>
<!--<div class="row">-->
<!--<div class="col-xs-12">-->
<!--<pre ng-bind="viewOptions|json"></pre>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-xs-12">-->
<!--<pre ng-bind="geneRevisions.data|json"></pre>-->
<!--</div>-->
<!--</div>-->
</div>
| yanyangfeng/civic-client | src/app/views/events/genes/talk/revisions/geneTalkRevisions.tpl.html | HTML | mit | 1,264 |
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="static/images/favicon.ico" type="image/x-icon">
<title>renderer.js (Closure Library API Documentation - JavaScript)</title>
<link rel="stylesheet" href="static/css/base.css">
<link rel="stylesheet" href="static/css/doc.css">
<link rel="stylesheet" href="static/css/sidetree.css">
<link rel="stylesheet" href="static/css/prettify.css">
<script>
var _staticFilePath = "static/";
</script>
<script src="static/js/doc.js">
</script>
<meta charset="utf8">
</head>
<body onload="prettyPrint()">
<div id="header">
<div class="g-section g-tpl-50-50 g-split">
<div class="g-unit g-first">
<a id="logo" href="index.html">Closure Library API Documentation</a>
</div>
<div class="g-unit">
<div class="g-c">
<strong>Go to class or file:</strong>
<input type="text" id="ac">
</div>
</div>
</div>
</div>
<div class="colmask rightmenu">
<div class="colleft">
<div class="col1">
<!-- Column 1 start -->
<div id="title">
<span class="fn">renderer.js</span>
</div>
<div class="g-section g-tpl-75-25">
<div class="g-unit g-first" id="description">
Class for rendering the results of an auto complete and
allow the user to select an row.
</div>
<div class="g-unit" id="useful-links">
<div class="title">Useful links</div>
<ol>
<li><a href="closure_goog_ui_autocomplete_renderer.js.source.html"><span class='source-code-link'>Source Code</span></a></li>
</ol>
</div>
</div>
<h2 class="g-first">File Location</h2>
<div class="g-section g-tpl-20-80">
<div class="g-unit g-first">
<div class="g-c-cell code-label">ui/autocomplete/renderer.js</div>
</div>
</div>
<hr/>
<h2>Classes</h2>
<div class="fn-constructor">
<a href="class_goog_ui_AutoComplete_Renderer.html">
goog.ui.AutoComplete.Renderer</a><br/>
<div class="class-details">Class for rendering the results of an auto-complete in a drop down list.</div>
</div>
<div class="fn-constructor">
<a href="class_goog_ui_AutoComplete_Renderer_CustomRenderer.html">
goog.ui.AutoComplete.Renderer.CustomRenderer</a><br/>
<div class="class-details">Class allowing different implementations to custom render the autocomplete.
Extending classes should override the render function.</div>
</div>
<br/>
<div class="legend">
<span class="key publickey"></span><span>Public</span>
<span class="key protectedkey"></span><span>Protected</span>
<span class="key privatekey"></span><span>Private</span>
</div>
<h2>Global Properties</h2>
<div class="section">
<table class="horiz-rule">
<tr class="even entry public">
<td class="access"></td>
<a name="goog.ui.AutoComplete.Renderer.DELAY_BEFORE_MOUSEOVER"></a>
<td>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.ui.AutoComplete.Renderer.</span><span class="entryName">DELAY_BEFORE_MOUSEOVER</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number">number</a></span></div>
</div>
<div class="entryOverview">
The delay before mouseover events are registered, in milliseconds
</div>
</td>
<td class="view-code">
<a href="closure_goog_ui_autocomplete_renderer.js.source.html#line217">Code »</a>
</td>
</tr>
<tr class="odd entry private">
<td class="access"></td>
<a name="goog.ui.AutoComplete.Renderer.nextId_"></a>
<td>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.ui.AutoComplete.Renderer.</span><span class="entryName">nextId_</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number">number</a></span></div>
</div>
<div class="entryOverview">
Next unique instance ID of a renderer.
</div>
</td>
<td class="view-code">
<a href="closure_goog_ui_autocomplete_renderer.js.source.html#line210">Code »</a>
</td>
</tr>
</table>
</div>
<!-- Column 1 end -->
</div>
<div class="col2">
<!-- Column 2 start -->
<div class="col2-c">
<h2 id="ref-head">Directory autocomplete</h2>
<div id="localView"></div>
</div>
<div class="col2-c">
<h2 id="ref-head">File Reference</h2>
<div id="sideFileIndex" rootPath="closure/goog" current="ui/autocomplete/renderer.js"></div>
</div>
<!-- Column 2 end -->
</div>
</div>
</div>
</body>
</html>
| yesudeep/puppy | tools/google-closure-library/closure/goog/docs/closure_goog_ui_autocomplete_renderer.js.html | HTML | mit | 4,960 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>build_legacy_indicies (Gem::Indexer)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File lib/rubygems/indexer.rb, line 138</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">build_legacy_indicies</span>(<span class="ruby-identifier">index</span>)
<span class="ruby-identifier">say</span> <span class="ruby-value str">"Generating Marshal master index"</span>
<span class="ruby-constant">Gem</span>.<span class="ruby-identifier">time</span> <span class="ruby-value str">'Generated Marshal master index'</span> <span class="ruby-keyword kw">do</span>
<span class="ruby-identifier">open</span> <span class="ruby-ivar">@marshal_index</span>, <span class="ruby-value str">'wb'</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">io</span><span class="ruby-operator">|</span>
<span class="ruby-identifier">io</span>.<span class="ruby-identifier">write</span> <span class="ruby-identifier">index</span>.<span class="ruby-identifier">dump</span>
<span class="ruby-keyword kw">end</span>
<span class="ruby-keyword kw">end</span>
<span class="ruby-ivar">@files</span> <span class="ruby-operator"><<</span> <span class="ruby-ivar">@marshal_index</span>
<span class="ruby-ivar">@files</span> <span class="ruby-operator"><<</span> <span class="ruby-node">"#{@marshal_index}.Z"</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> | michaelsync/Giles | tools/Rake/lib/ruby/gems/1.8/doc/rubygems-1.5.2/rdoc/classes/Gem/Indexer.src/M000300.html | HTML | mit | 1,934 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cycle.js Starter</title>
<link rel="stylesheet" href="client/index.css">
</head>
<body>
<div id="root"></div>
<script src="dist/bundle.js"></script>
</body>
</html>
| mayu/unleashtheartist.com | backup/cycle-site/index.html | HTML | mit | 245 |
<!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_66-internal) on Tue Dec 08 09:28:00 GMT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.riot.thrift.wire.RDF_Quad._Fields (Apache Jena ARQ)</title>
<meta name="date" content="2015-12-08">
<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 org.apache.jena.riot.thrift.wire.RDF_Quad._Fields (Apache Jena ARQ)";
}
}
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="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">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-all.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?org/apache/jena/riot/thrift/wire/class-use/RDF_Quad._Fields.html" target="_top">Frames</a></li>
<li><a href="RDF_Quad._Fields.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 org.apache.jena.riot.thrift.wire.RDF_Quad._Fields" class="title">Uses of Class<br>org.apache.jena.riot.thrift.wire.RDF_Quad._Fields</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="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</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="#org.apache.jena.riot.thrift.wire">org.apache.jena.riot.thrift.wire</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.jena.riot.thrift.wire">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a> in <a href="../../../../../../../org/apache/jena/riot/thrift/wire/package-summary.html">org.apache.jena.riot.thrift.wire</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../../org/apache/jena/riot/thrift/wire/package-summary.html">org.apache.jena.riot.thrift.wire</a> with type parameters of type <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></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>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a>,org.apache.thrift.meta_data.FieldMetaData></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad.html#metaDataMap">metaDataMap</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="../../../../../../../org/apache/jena/riot/thrift/wire/package-summary.html">org.apache.jena.riot.thrift.wire</a> that return <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</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><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad.html#fieldForId-int-">fieldForId</a></span>(int fieldId)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad._Fields.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html#findByName-java.lang.String-">findByName</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Find the _Fields constant that matches name, or null if its not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad._Fields.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html#findByThriftId-int-">findByThriftId</a></span>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, or null if its not found.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad._Fields.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html#findByThriftIdOrThrow-int-">findByThriftIdOrThrow</a></span>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, throwing an exception
if it is not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad._Fields.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad._Fields.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</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="../../../../../../../org/apache/jena/riot/thrift/wire/package-summary.html">org.apache.jena.riot.thrift.wire</a> with parameters of type <a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</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><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad.html#getFieldValue-org.apache.jena.riot.thrift.wire.RDF_Quad._Fields-">getFieldValue</a></span>(<a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a> field)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad.html#isSet-org.apache.jena.riot.thrift.wire.RDF_Quad._Fields-">isSet</a></span>(<a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a> field)</code>
<div class="block">Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">RDF_Quad.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad.html#setFieldValue-org.apache.jena.riot.thrift.wire.RDF_Quad._Fields-java.lang.Object-">setFieldValue</a></span>(<a href="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">RDF_Quad._Fields</a> field,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> value)</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="../../../../../../../org/apache/jena/riot/thrift/wire/RDF_Quad._Fields.html" title="enum in org.apache.jena.riot.thrift.wire">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-all.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?org/apache/jena/riot/thrift/wire/class-use/RDF_Quad._Fields.html" target="_top">Frames</a></li>
<li><a href="RDF_Quad._Fields.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
| manonsys/MVC | libs/Jena/javadoc-arq/org/apache/jena/riot/thrift/wire/class-use/RDF_Quad._Fields.html | HTML | mit | 14,261 |
---
layout: documentation
doc-tab: elements
doc-subtab: table
---
{% include subnav-elements.html %}
<section class="section">
<div class="container">
<h1 class="title">Tables</h1>
<h2 class="subtitle">The inevitable HTML <strong>table</strong>, with special case cells</h2>
<hr>
<div class="content">
<p>You simply need to attach a single <code>.table</code> CSS class on a <code><table></code> with the following structure:</p>
<ul>
<li>
<code>table</code>
<ul>
<li>
<code>thead</code>
</li>
<li>
<code>tfoot</code>
</li>
<li>
<code>tbody</code>
<ul>
<li>
<code>tr</code>
<ul>
<li>
<code>th</code>
</li>
<li>
<code>td</code>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>
<span class="tag is-success">New!</span>
<span class="tag is-info">0.4.2</span>
<br>
You can set a table row as <strong>selected</strong> by appending the <code>is-selected</code> modifier on a <code><tr></code>
</p>
</div>
{% capture table_example %}
<table class="table">
<thead>
<tr>
<th><abbr title="Position">Pos</abbr></th>
<th>Team</th>
<th><abbr title="Played">Pld</abbr></th>
<th><abbr title="Won">W</abbr></th>
<th><abbr title="Drawn">D</abbr></th>
<th><abbr title="Lost">L</abbr></th>
<th><abbr title="Goals for">GF</abbr></th>
<th><abbr title="Goals against">GA</abbr></th>
<th><abbr title="Goal difference">GD</abbr></th>
<th><abbr title="Points">Pts</abbr></th>
<th>Qualification or relegation</th>
</tr>
</thead>
<tfoot>
<tr>
<th><abbr title="Position">Pos</abbr></th>
<th>Team</th>
<th><abbr title="Played">Pld</abbr></th>
<th><abbr title="Won">W</abbr></th>
<th><abbr title="Drawn">D</abbr></th>
<th><abbr title="Lost">L</abbr></th>
<th><abbr title="Goals for">GF</abbr></th>
<th><abbr title="Goals against">GA</abbr></th>
<th><abbr title="Goal difference">GD</abbr></th>
<th><abbr title="Points">Pts</abbr></th>
<th>Qualification or relegation</th>
</tr>
</tfoot>
<tbody>
<tr>
<th>1</th>
<td><a href="https://en.wikipedia.org/wiki/Leicester_City_F.C." title="Leicester City F.C.">Leicester City</a> <strong>(C)</strong>
</td>
<td>38</td>
<td>23</td>
<td>12</td>
<td>3</td>
<td>68</td>
<td>36</td>
<td>+32</td>
<td>81</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Champions_League#Group_stage" title="2016–17 UEFA Champions League">Champions League group stage</a></td>
</tr>
<tr>
<th>2</th>
<td><a href="https://en.wikipedia.org/wiki/Arsenal_F.C." title="Arsenal F.C.">Arsenal</a></td>
<td>38</td>
<td>20</td>
<td>11</td>
<td>7</td>
<td>65</td>
<td>36</td>
<td>+29</td>
<td>71</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Champions_League#Group_stage" title="2016–17 UEFA Champions League">Champions League group stage</a></td>
</tr>
<tr>
<th>3</th>
<td><a href="https://en.wikipedia.org/wiki/Tottenham_Hotspur_F.C." title="Tottenham Hotspur F.C.">Tottenham Hotspur</a></td>
<td>38</td>
<td>19</td>
<td>13</td>
<td>6</td>
<td>69</td>
<td>35</td>
<td>+34</td>
<td>70</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Champions_League#Group_stage" title="2016–17 UEFA Champions League">Champions League group stage</a></td>
</tr>
<tr class="is-selected">
<th>4</th>
<td><a href="https://en.wikipedia.org/wiki/Manchester_City_F.C." title="Manchester City F.C.">Manchester City</a></td>
<td>38</td>
<td>19</td>
<td>9</td>
<td>10</td>
<td>71</td>
<td>41</td>
<td>+30</td>
<td>66</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Champions_League#Play-off_round" title="2016–17 UEFA Champions League">Champions League play-off round</a></td>
</tr>
<tr>
<th>5</th>
<td><a href="https://en.wikipedia.org/wiki/Manchester_United_F.C." title="Manchester United F.C.">Manchester United</a></td>
<td>38</td>
<td>19</td>
<td>9</td>
<td>10</td>
<td>49</td>
<td>35</td>
<td>+14</td>
<td>66</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Europa_League#Group_stage" title="2016–17 UEFA Europa League">Europa League group stage</a></td>
</tr>
<tr>
<th>6</th>
<td><a href="https://en.wikipedia.org/wiki/Southampton_F.C." title="Southampton F.C.">Southampton</a></td>
<td>38</td>
<td>18</td>
<td>9</td>
<td>11</td>
<td>59</td>
<td>41</td>
<td>+18</td>
<td>63</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Europa_League#Group_stage" title="2016–17 UEFA Europa League">Europa League group stage</a></td>
</tr>
<tr>
<th>7</th>
<td><a href="https://en.wikipedia.org/wiki/West_Ham_United_F.C." title="West Ham United F.C.">West Ham United</a></td>
<td>38</td>
<td>16</td>
<td>14</td>
<td>8</td>
<td>65</td>
<td>51</td>
<td>+14</td>
<td>62</td>
<td>Qualification for the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_UEFA_Europa_League#Third_qualifying_round" title="2016–17 UEFA Europa League">Europa League third qualifying round</a></td>
</tr>
<tr>
<th>8</th>
<td><a href="https://en.wikipedia.org/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool</a></td>
<td>38</td>
<td>16</td>
<td>12</td>
<td>10</td>
<td>63</td>
<td>50</td>
<td>+13</td>
<td>60</td>
<td></td>
</tr>
<tr>
<th>9</th>
<td><a href="https://en.wikipedia.org/wiki/Stoke_City_F.C." title="Stoke City F.C.">Stoke City</a></td>
<td>38</td>
<td>14</td>
<td>9</td>
<td>15</td>
<td>41</td>
<td>55</td>
<td>−14</td>
<td>51</td>
<td></td>
</tr>
<tr>
<th>10</th>
<td><a href="https://en.wikipedia.org/wiki/Chelsea_F.C." title="Chelsea F.C.">Chelsea</a></td>
<td>38</td>
<td>12</td>
<td>14</td>
<td>12</td>
<td>59</td>
<td>53</td>
<td>+6</td>
<td>50</td>
<td></td>
</tr>
<tr>
<th>11</th>
<td><a href="https://en.wikipedia.org/wiki/Everton_F.C." title="Everton F.C.">Everton</a></td>
<td>38</td>
<td>11</td>
<td>14</td>
<td>13</td>
<td>59</td>
<td>55</td>
<td>+4</td>
<td>47</td>
<td></td>
</tr>
<tr>
<th>12</th>
<td><a href="https://en.wikipedia.org/wiki/Swansea_City_A.F.C." title="Swansea City A.F.C.">Swansea City</a></td>
<td>38</td>
<td>12</td>
<td>11</td>
<td>15</td>
<td>42</td>
<td>52</td>
<td>−10</td>
<td>47</td>
<td></td>
</tr>
<tr>
<th>13</th>
<td><a href="https://en.wikipedia.org/wiki/Watford_F.C." title="Watford F.C.">Watford</a></td>
<td>38</td>
<td>12</td>
<td>9</td>
<td>17</td>
<td>40</td>
<td>50</td>
<td>−10</td>
<td>45</td>
<td></td>
</tr>
<tr>
<th>14</th>
<td><a href="https://en.wikipedia.org/wiki/West_Bromwich_Albion_F.C." title="West Bromwich Albion F.C.">West Bromwich Albion</a></td>
<td>38</td>
<td>10</td>
<td>13</td>
<td>15</td>
<td>34</td>
<td>48</td>
<td>−14</td>
<td>43</td>
<td></td>
</tr>
<tr>
<th>15</th>
<td><a href="https://en.wikipedia.org/wiki/Crystal_Palace_F.C." title="Crystal Palace F.C.">Crystal Palace</a></td>
<td>38</td>
<td>11</td>
<td>9</td>
<td>18</td>
<td>39</td>
<td>51</td>
<td>−12</td>
<td>42</td>
<td></td>
</tr>
<tr>
<th>16</th>
<td><a href="https://en.wikipedia.org/wiki/A.F.C._Bournemouth" title="A.F.C. Bournemouth">AFC Bournemouth</a></td>
<td>38</td>
<td>11</td>
<td>9</td>
<td>18</td>
<td>45</td>
<td>67</td>
<td>−22</td>
<td>42</td>
<td></td>
</tr>
<tr>
<th>17</th>
<td><a href="https://en.wikipedia.org/wiki/Sunderland_A.F.C." title="Sunderland A.F.C.">Sunderland</a></td>
<td>38</td>
<td>9</td>
<td>12</td>
<td>17</td>
<td>48</td>
<td>62</td>
<td>−14</td>
<td>39</td>
<td></td>
</tr>
<tr>
<th>18</th>
<td><a href="https://en.wikipedia.org/wiki/Newcastle_United_F.C." title="Newcastle United F.C.">Newcastle United</a> <strong>(R)</strong>
</td>
<td>38</td>
<td>9</td>
<td>10</td>
<td>19</td>
<td>44</td>
<td>65</td>
<td>−21</td>
<td>37</td>
<td>Relegation to the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_Football_League_Championship" title="2016–17 Football League Championship">Football League Championship</a></td>
</tr>
<tr>
<th>19</th>
<td><a href="https://en.wikipedia.org/wiki/Norwich_City_F.C." title="Norwich City F.C.">Norwich City</a> <strong>(R)</strong>
</td>
<td>38</td>
<td>9</td>
<td>7</td>
<td>22</td>
<td>39</td>
<td>67</td>
<td>−28</td>
<td>34</td>
<td>Relegation to the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_Football_League_Championship" title="2016–17 Football League Championship">Football League Championship</a></td> </tr>
<tr>
<th>20</th>
<td><a href="https://en.wikipedia.org/wiki/Aston_Villa_F.C." title="Aston Villa F.C.">Aston Villa</a> <strong>(R)</strong>
</td>
<td>38</td>
<td>3</td>
<td>8</td>
<td>27</td>
<td>27</td>
<td>76</td>
<td>−49</td>
<td>17</td>
<td>Relegation to the <a href="https://en.wikipedia.org/wiki/2016%E2%80%9317_Football_League_Championship" title="2016–17 Football League Championship">Football League Championship</a></td>
</tr>
</tbody>
</table>
{% endcapture %}
<div class="example">
{{table_example}}
</div>
{% highlight html %}
{{table_example}}
{% endhighlight %}
<hr>
<h3 class="title">Modifiers</h3>
<div class="columns">
<div class="column">
<p>Add <strong>borders</strong> to all the cells.</p>
</div>
<div class="column">
<code>table is-bordered</code>
</div>
<div class="column is-half">
<table class="table is-bordered">
<thead>
<tr>
<th>One</th>
<th>Two</th>
</tr>
</thead>
<tbody>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="columns">
<div class="column">
<p>Add <strong>stripes</strong> to the table.</p>
</div>
<div class="column">
<code>table is-striped</code>
</div>
<div class="column is-half">
<table class="table is-striped">
<thead>
<tr>
<th>One</th>
<th>Two</th>
</tr>
</thead>
<tbody>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
<tr>
<td>Five</td>
<td>Six</td>
</tr>
<tr>
<td>Seven</td>
<td>Eight</td>
</tr>
<tr>
<td>Nine</td>
<td>Ten</td>
</tr>
<tr>
<td>Eleven</td>
<td>Twelve</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="columns">
<div class="column">
<p>Make the cells <strong>narrower</strong>.</p>
</div>
<div class="column">
<code>table is-narrow</code>
</div>
<div class="column is-half">
<table class="table is-narrow">
<thead>
<tr>
<th>One</th>
<th>Two</th>
</tr>
</thead>
<tbody>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
<tr>
<td>Five</td>
<td>Six</td>
</tr>
<tr>
<td>Seven</td>
<td>Eight</td>
</tr>
<tr>
<td>Nine</td>
<td>Ten</td>
</tr>
<tr>
<td>Eleven</td>
<td>Twelve</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="columns">
<div class="column">
<p>You can <strong>combine</strong> all three modifiers.</p>
</div>
<div class="column">
<code>table is-bordered is-striped is-narrow</code>
</div>
<div class="column is-half">
<table class="table is-bordered is-striped is-narrow">
<thead>
<tr>
<th>One</th>
<th>Two</th>
</tr>
</thead>
<tbody>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
<tr>
<td>Five</td>
<td>Six</td>
</tr>
<tr>
<td>Seven</td>
<td>Eight</td>
</tr>
<tr>
<td>Nine</td>
<td>Ten</td>
</tr>
<tr>
<td>Eleven</td>
<td>Twelve</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
| Minatohokage4/JUDGE | student/bulma-0.4.1/docs/documentation/elements/table.html | HTML | mit | 14,462 |
<html>
<META HTTP-EQUIV=Content-Type Content="text/html; charset=utf8">
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04704/0470437122800.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:25:50 GMT -->
<head><title>法編號:04704 版本:037122800</title>
<link rel="stylesheet" type="text/css" href="../../version.css" >
</HEAD>
<body><left>
<table><tr><td><FONT COLOR=blue SIZE=5>審計部組織法(04704)</font>
<table><tr><td> </td><td>
<table><tr><td> </td><td>
<table><tr><td> </td>
<tr><td align=left valign=top>
<a href=0470418101200.html target=law04704><nobr><font size=2>中華民國 18 年 10 月 12 日</font></nobr></a>
</td>
<td valign=top><font size=2>制定17條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 18 年 10 月 29 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470422041400.html target=law04704><nobr><font size=2>中華民國 22 年 4 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文19條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 22 年 4 月 24 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470425100200.html target=law04704><nobr><font size=2>中華民國 25 年 10 月 2 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第6, 16條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 25 年 11 月 4 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470428021700.html target=law04704><nobr><font size=2>中華民國 28 年 2 月 17 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文21條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 28 年 3 月 4 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470431091000.html target=law04704><nobr><font size=2>中華民國 31 年 9 月 10 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第7, 8, 10條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 31 年 9 月 24 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470434121400.html target=law04704><nobr><font size=2>中華民國 34 年 12 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第10, 18, 19條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 34 年 12 月 31 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470437122800.html target=law04704><nobr><font size=2>中華民國 37 年 12 月 28 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文19條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 38 年 5 月 27 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470450050500.html target=law04704><nobr><font size=2>中華民國 50 年 5 月 5 日</font></nobr></a>
</td>
<td valign=top><font size=2>增訂第2, 3條原第二條至第十九條依次遞改為第四條至第二十一條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 50 年 5 月 19 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470464041800.html target=law04704><nobr><font size=2>中華民國 64 年 4 月 18 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文18條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 64 年 5 月 1 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0470499042000.html target=law04704><nobr><font size=2>中華民國 99 年 4 月 20 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第10, 11條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 99 年 5 月 5 日公布</font></nobr></td>
</table></table></table></table>
<p><table><tr><td><font color=blue size=4>民國37年12月28日(非現行條文)</font></td>
</table>
<table><tr><td> </td><td><font color=8000ff>第一條</font>
</font>
<table><tr><td> </td>
<td>
本法依監察院組織法第四條第二項之規定制定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第二條</font>
</font>
<table><tr><td> </td>
<td>
審計長依監察院組織法第五條秉承監察院院長綜理全部事務,並監督所屬機關。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第三條</font>
</font>
<table><tr><td> </td>
<td>
審計部之職掌,依監察院組織法第四條之規定如左:<br>
一、監督政府所屬全國各機關預算之執行。<br>
二、核定政府所屬全國各機關之收入命令及支付命令。<br>
三、審核政府所屬全國各機關計算及決算。<br>
四、稽察政府所屬全國各機關財政上之不法或不忠於職務之行為。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第四條</font>
</font>
<table><tr><td> </td>
<td>
審計部設副審計長一人,簡任,輔助審計長,處理部務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第五條</font>
</font>
<table><tr><td> </td>
<td>
審計部設審計十人至十二人,簡任,協審二十一人至二十四人,稽察十八人至二十二人,均薦任。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第六條</font>
</font>
<table><tr><td> </td>
<td>
審計部處理重要審計事務,以審計會議之決議行之,審計會議以審計長,副審計長,審計組織之。<br>
審計會議規則另定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第七條</font>
</font>
<table><tr><td> </td>
<td>
審計部設三廳其職掌如左:<br>
一、第一廳:掌理事前審計事務。<br>
二、第二廳:掌理事後審計事務。<br>
三、第三廳:掌理稽察及就地審計事務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第八條</font>
</font>
<table><tr><td> </td>
<td>
審計部各廳設廳長一人,由審計長指定審計兼任之,每廳設三科,各設科長一人,由審計長指定協審或稽察兼任之,每科設核計員六人至十人,委任,每十人中二人得為薦任,並得用雇員一人至三人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第九條</font>
</font>
<table><tr><td> </td>
<td>
審計部設審計室,覆核審計案件,辦理其他不屬各廳之審計事務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十條</font>
</font>
<table><tr><td> </td>
<td>
審計部得設置巡迴審計組,執行各機關就地審計事務,所需人員,就原有職員中調派之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十一條</font>
</font>
<table><tr><td> </td>
<td>
審計部設參事二人,簡任,掌理撰擬審核關於審計之法案命令事項。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十二條</font>
</font>
<table><tr><td> </td>
<td>
審計部設秘書五人,內二人簡任,餘薦任,分掌復核文稿,會議紀錄及長官交辦事務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十三條</font>
</font>
<table><tr><td> </td>
<td>
審計部設總務處,掌理文書出納庶務等事項。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十四條</font>
</font>
<table><tr><td> </td>
<td>
總務處設處長一人,簡任,設四科,各置科長一人,薦任,科員四人至六人,委任,每十人中二人得為薦任,總務處為繕寫文件及其他事務,得酌用雇員四十人至六十人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十五條</font>
</font>
<table><tr><td> </td>
<td>
審計部為辦理專門業務,得派用專員八人至十二人,內二人得為簡派。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十六條</font>
</font>
<table><tr><td> </td>
<td>
審計部設會計室統計室及人事室,依法律之規定,並受審計長之指揮監督,分別辦理歲計會計統計及人事事務。<br>
會計室主任一人,薦任,科員四人至八人,委任,雇員二人至四人。<br>
統計室主任一人,薦任。科員一人至二人,委任。雇員一人至二人。<br>
人事室主任一人,薦任,科員四人至八人,委任,雇員二人至三人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十七條</font>
</font>
<table><tr><td> </td>
<td>
審計、協審或稽察與被審計機關之長官,或主管會計出納人員,為配偶或有七親等內之血親或五親等內之姻親關係時,對該被審計機關之審計事務應行迴避,不得行使職權。因其他利害關係顯有瞻徇之虞者亦同,審計、協審或稽察與被審計之案件有利害關係,對該案件應行迴避,不得行使職權。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十八條</font>
</font>
<table><tr><td> </td>
<td>
審計部於各省及院轄市設審計處,掌理各該省市內中央及地方各機關之審計事業,審計部於各特種公務機關,公有營業機關,公有事業機關,得設審計室,掌理各該機關之審計事務。<br>
審計處室之組織另定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td><font color=8000ff>第十九條</font>
</font>
<table><tr><td> </td>
<td>
本法自公布日施行。<br>
</td>
</table>
</table>
</table>
</left>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04704/0470437122800.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:25:50 GMT -->
</html>
| g0v/laweasyread-data | rawdata/utf8_lawstat/version2/04704/0470437122800.html | HTML | mit | 10,903 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Nov 26 15:38:57 EST 2010 -->
<TITLE>
Xerces Native Interface: Interface XMLDTDScanner
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</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="../../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</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">
<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDFilter.html"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDTDScanner.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<A NAME="main"></A>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.xerces.xni.parser</FONT>
<BR>
Interface XMLDTDScanner</H2>
<DL>
<DT><B>All Superinterfaces:</B> <DD><A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDContentModelSource.html">XMLDTDContentModelSource</A>, <A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html">XMLDTDSource</A></DD>
</DL>
<HR>
<DL>
<DT>public interface <B>XMLDTDScanner</B><DT>extends <A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html">XMLDTDSource</A>, <A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDContentModelSource.html">XMLDTDContentModelSource</A></DL>
<P>
This interface defines a generic DTD scanner. This interface
allows a scanner to be used interchangably in existing parser
configurations.
<p>
If the parser configuration uses a DTD scanner that implements
this interface, components should be able to query the scanner
instance from the component manager using the following property
identifier:
<blockquote>
"http://apache.org/xml/properties/internal/dtd-scanner"
</blockquote>
<P>
<DL>
<DT><B>Version: </B><DD>$Id: XMLDTDScanner.java 699892 2008-09-28 21:08:27Z mrglavas $</DD>
<DT><B>Author: </B><DD>Andy Clark, IBM</DD>
</DL>
<HR>
<P>
<!-- ======== INNER CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<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> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDScanner.html#scanDTDExternalSubset(boolean)">scanDTDExternalSubset</A></B>(boolean complete)</CODE>
<BR>
Scans the external subset of the document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDScanner.html#scanDTDInternalSubset(boolean, boolean, boolean)">scanDTDInternalSubset</A></B>(boolean complete,
boolean standalone,
boolean hasExternalSubset)</CODE>
<BR>
Scans the internal subset of the document.</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="../../../../../org/apache/xerces/xni/parser/XMLDTDScanner.html#setInputSource(org.apache.xerces.xni.parser.XMLInputSource)">setInputSource</A></B>(<A HREF="../../../../../org/apache/xerces/xni/parser/XMLInputSource.html">XMLInputSource</A> inputSource)</CODE>
<BR>
Sets the input source.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.xerces.xni.parser.XMLDTDSource"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.xerces.xni.parser.<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html">XMLDTDSource</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html#getDTDHandler()">getDTDHandler</A>, <A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html#setDTDHandler(org.apache.xerces.xni.XMLDTDHandler)">setDTDHandler</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.xerces.xni.parser.XMLDTDContentModelSource"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.xerces.xni.parser.<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDContentModelSource.html">XMLDTDContentModelSource</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDContentModelSource.html#getDTDContentModelHandler()">getDTDContentModelHandler</A>, <A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDContentModelSource.html#setDTDContentModelHandler(org.apache.xerces.xni.XMLDTDContentModelHandler)">setDTDContentModelHandler</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="setInputSource(org.apache.xerces.xni.parser.XMLInputSource)"><!-- --></A><H3>
setInputSource</H3>
<PRE>
public void <B>setInputSource</B>(<A HREF="../../../../../org/apache/xerces/xni/parser/XMLInputSource.html">XMLInputSource</A> inputSource)
throws java.io.IOException</PRE>
<DL>
<DD>Sets the input source.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>inputSource</CODE> - The input source or null.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - Thrown on i/o error.</DL>
</DD>
</DL>
<HR>
<A NAME="scanDTDInternalSubset(boolean, boolean, boolean)"><!-- --></A><H3>
scanDTDInternalSubset</H3>
<PRE>
public boolean <B>scanDTDInternalSubset</B>(boolean complete,
boolean standalone,
boolean hasExternalSubset)
throws java.io.IOException,
<A HREF="../../../../../org/apache/xerces/xni/XNIException.html">XNIException</A></PRE>
<DL>
<DD>Scans the internal subset of the document.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>complete</CODE> - True if the scanner should scan the document
completely, pushing all events to the registered
document handler. A value of false indicates that
that the scanner should only scan the next portion
of the document and return. A scanner instance is
permitted to completely scan a document if it does
not support this "pull" scanning model.<DD><CODE>standalone</CODE> - True if the document was specified as standalone.
This value is important for verifying certain
well-formedness constraints.<DD><CODE>hasExternalSubset</CODE> - True if the document has an external DTD.
This allows the scanner to properly notify
the handler of the end of the DTD in the
absence of an external subset.<DT><B>Returns:</B><DD>True if there is more to scan, false otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="scanDTDExternalSubset(boolean)"><!-- --></A><H3>
scanDTDExternalSubset</H3>
<PRE>
public boolean <B>scanDTDExternalSubset</B>(boolean complete)
throws java.io.IOException,
<A HREF="../../../../../org/apache/xerces/xni/XNIException.html">XNIException</A></PRE>
<DL>
<DD>Scans the external subset of the document.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>complete</CODE> - True if the scanner should scan the document
completely, pushing all events to the registered
document handler. A value of false indicates that
that the scanner should only scan the next portion
of the document and return. A scanner instance is
permitted to completely scan a document if it does
not support this "pull" scanning model.<DT><B>Returns:</B><DD>True if there is more to scan, false otherwise.</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</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="../../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</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">
<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDFilter.html"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/xerces/xni/parser/XMLDTDSource.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDTDScanner.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
| jsalla/jatintest | lib/xerces-2_11_0/docs/javadocs/xni/org/apache/xerces/xni/parser/XMLDTDScanner.html | HTML | mit | 14,179 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>让我帮你百度一下</title>
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="css/main.css" charset="utf-8">
</head>
<body>
<div class="search-wrapper">
<div class="bd-logo">
<img src="img/baidulogo.png" alt="" class="bd-logo-img">
</div>
<form method="get" action="https://www.baidu.com/s" class="search-form" id="form">
<div class="search-form-div">
<input type="text" name="wd" id="search">
</div>
<div class="search-from-subbut">
<input type="submit" id="subbut">
</div>
</form>
</div>
<div class="gen-box" id="genbox">
<button class="gen-button" id="gen">生成链接</button><br>
<a href="#" id="link">https://www.baidu.com</a>
</div>
<div class="cursor" id="cursor">
<img src="img/arrow.gif">
</div>
<script src="js/main.js"></script>
</body>
</html>
| Jaxlying/blog-hexo | project/help/index.html | HTML | mit | 959 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>tsm_system_time</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:[email protected]"><LINK
REL="HOME"
TITLE="PostgreSQL 9.6.2 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="Additional Supplied Modules"
HREF="contrib.html"><LINK
REL="PREVIOUS"
TITLE="tsm_system_rows"
HREF="tsm-system-rows.html"><LINK
REL="NEXT"
TITLE="unaccent"
HREF="unaccent.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2017-02-06T21:56:32"></HEAD
><BODY
CLASS="SECT1"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="4"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.6.2 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="tsm_system_rows"
HREF="tsm-system-rows.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="contrib.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
>Appendix F. Additional Supplied Modules</TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="unaccent"
HREF="unaccent.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="TSM-SYSTEM-TIME"
>F.43. tsm_system_time</A
></H1
><P
> The <TT
CLASS="FILENAME"
>tsm_system_time</TT
> module provides the table sampling method
<TT
CLASS="LITERAL"
>SYSTEM_TIME</TT
>, which can be used in
the <TT
CLASS="LITERAL"
>TABLESAMPLE</TT
> clause of a <A
HREF="sql-select.html"
>SELECT</A
>
command.
</P
><P
> This table sampling method accepts a single floating-point argument that
is the maximum number of milliseconds to spend reading the table. This
gives you direct control over how long the query takes, at the price that
the size of the sample becomes hard to predict. The resulting sample will
contain as many rows as could be read in the specified time, unless the
whole table has been read first.
</P
><P
> Like the built-in <TT
CLASS="LITERAL"
>SYSTEM</TT
> sampling
method, <TT
CLASS="LITERAL"
>SYSTEM_TIME</TT
> performs block-level sampling, so
that the sample is not completely random but may be subject to clustering
effects, especially if only a small number of rows are selected.
</P
><P
> <TT
CLASS="LITERAL"
>SYSTEM_TIME</TT
> does not support
the <TT
CLASS="LITERAL"
>REPEATABLE</TT
> clause.
</P
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN184383"
>F.43.1. Examples</A
></H2
><P
> Here is an example of selecting a sample of a table with
<TT
CLASS="LITERAL"
>SYSTEM_TIME</TT
>. First install the extension:
</P
><PRE
CLASS="PROGRAMLISTING"
>CREATE EXTENSION tsm_system_time;</PRE
><P
> Then you can use it in a <TT
CLASS="COMMAND"
>SELECT</TT
> command, for instance:
</P><PRE
CLASS="PROGRAMLISTING"
>SELECT * FROM my_table TABLESAMPLE SYSTEM_TIME(1000);</PRE
><P>
</P
><P
> This command will return as large a sample of <TT
CLASS="STRUCTNAME"
>my_table</TT
> as
it can read in 1 second (1000 milliseconds). Of course, if the whole
table can be read in under 1 second, all its rows will be returned.
</P
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="tsm-system-rows.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="unaccent.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>tsm_system_rows</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="contrib.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>unaccent</TD
></TR
></TABLE
></DIV
></BODY
></HTML
> | unsupo/ogame | ogamebotserver/src/main/resources/databases/postgres/share/doc/postgresql/html/tsm-system-time.html | HTML | mit | 4,188 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>CREATE FUNCTION</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:[email protected]"><LINK
REL="HOME"
TITLE="PostgreSQL 9.6.2 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="CREATE FOREIGN TABLE"
HREF="sql-createforeigntable.html"><LINK
REL="NEXT"
TITLE="CREATE GROUP"
HREF="sql-creategroup.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2017-02-06T21:56:32"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="4"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.6.2 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="CREATE FOREIGN TABLE"
HREF="sql-createforeigntable.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="CREATE GROUP"
HREF="sql-creategroup.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-CREATEFUNCTION"
></A
>CREATE FUNCTION</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN79559"
></A
><H2
>Name</H2
>CREATE FUNCTION -- define a new function</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN79562"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>CREATE [ OR REPLACE ] FUNCTION
<TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> ( [ [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>argtype</I
></TT
> [ { DEFAULT | = } <TT
CLASS="REPLACEABLE"
><I
>default_expr</I
></TT
> ] [, ...] ] )
[ RETURNS <TT
CLASS="REPLACEABLE"
><I
>rettype</I
></TT
>
| RETURNS TABLE ( <TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
> <TT
CLASS="REPLACEABLE"
><I
>column_type</I
></TT
> [, ...] ) ]
{ LANGUAGE <TT
CLASS="REPLACEABLE"
><I
>lang_name</I
></TT
>
| TRANSFORM { FOR TYPE <TT
CLASS="REPLACEABLE"
><I
>type_name</I
></TT
> } [, ... ]
| WINDOW
| IMMUTABLE | STABLE | VOLATILE | [ NOT ] LEAKPROOF
| CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT
| [ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER
| PARALLEL { UNSAFE | RESTRICTED | SAFE }
| COST <TT
CLASS="REPLACEABLE"
><I
>execution_cost</I
></TT
>
| ROWS <TT
CLASS="REPLACEABLE"
><I
>result_rows</I
></TT
>
| SET <TT
CLASS="REPLACEABLE"
><I
>configuration_parameter</I
></TT
> { TO <TT
CLASS="REPLACEABLE"
><I
>value</I
></TT
> | = <TT
CLASS="REPLACEABLE"
><I
>value</I
></TT
> | FROM CURRENT }
| AS '<TT
CLASS="REPLACEABLE"
><I
>definition</I
></TT
>'
| AS '<TT
CLASS="REPLACEABLE"
><I
>obj_file</I
></TT
>', '<TT
CLASS="REPLACEABLE"
><I
>link_symbol</I
></TT
>'
} ...
[ WITH ( <TT
CLASS="REPLACEABLE"
><I
>attribute</I
></TT
> [, ...] ) ]</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-DESCRIPTION"
></A
><H2
>Description</H2
><P
> <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
> defines a new function.
<TT
CLASS="COMMAND"
>CREATE OR REPLACE FUNCTION</TT
> will either create a
new function, or replace an existing definition.
To be able to define a function, the user must have the
<TT
CLASS="LITERAL"
>USAGE</TT
> privilege on the language.
</P
><P
> If a schema name is included, then the function is created in the
specified schema. Otherwise it is created in the current schema.
The name of the new function must not match any existing function
with the same input argument types in the same schema. However,
functions of different argument types can share a name (this is
called <I
CLASS="FIRSTTERM"
>overloading</I
>).
</P
><P
> To replace the current definition of an existing function, use
<TT
CLASS="COMMAND"
>CREATE OR REPLACE FUNCTION</TT
>. It is not possible
to change the name or argument types of a function this way (if you
tried, you would actually be creating a new, distinct function).
Also, <TT
CLASS="COMMAND"
>CREATE OR REPLACE FUNCTION</TT
> will not let
you change the return type of an existing function. To do that,
you must drop and recreate the function. (When using <TT
CLASS="LITERAL"
>OUT</TT
>
parameters, that means you cannot change the types of any
<TT
CLASS="LITERAL"
>OUT</TT
> parameters except by dropping the function.)
</P
><P
> When <TT
CLASS="COMMAND"
>CREATE OR REPLACE FUNCTION</TT
> is used to replace an
existing function, the ownership and permissions of the function
do not change. All other function properties are assigned the
values specified or implied in the command. You must own the function
to replace it (this includes being a member of the owning role).
</P
><P
> If you drop and then recreate a function, the new function is not
the same entity as the old; you will have to drop existing rules, views,
triggers, etc. that refer to the old function. Use
<TT
CLASS="COMMAND"
>CREATE OR REPLACE FUNCTION</TT
> to change a function
definition without breaking objects that refer to the function.
Also, <TT
CLASS="COMMAND"
>ALTER FUNCTION</TT
> can be used to change most of the
auxiliary properties of an existing function.
</P
><P
> The user that creates the function becomes the owner of the function.
</P
><P
> To be able to create a function, you must have <TT
CLASS="LITERAL"
>USAGE</TT
>
privilege on the argument types and the return type.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79604"
></A
><H2
>Parameters</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></DT
><DD
><P
> The name (optionally schema-qualified) of the function to create.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
></DT
><DD
><P
> The mode of an argument: <TT
CLASS="LITERAL"
>IN</TT
>, <TT
CLASS="LITERAL"
>OUT</TT
>,
<TT
CLASS="LITERAL"
>INOUT</TT
>, or <TT
CLASS="LITERAL"
>VARIADIC</TT
>.
If omitted, the default is <TT
CLASS="LITERAL"
>IN</TT
>.
Only <TT
CLASS="LITERAL"
>OUT</TT
> arguments can follow a <TT
CLASS="LITERAL"
>VARIADIC</TT
> one.
Also, <TT
CLASS="LITERAL"
>OUT</TT
> and <TT
CLASS="LITERAL"
>INOUT</TT
> arguments cannot be used
together with the <TT
CLASS="LITERAL"
>RETURNS TABLE</TT
> notation.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
></DT
><DD
><P
> The name of an argument. Some languages (including SQL and PL/pgSQL)
let you use the name in the function body. For other languages the
name of an input argument is just extra documentation, so far as
the function itself is concerned; but you can use input argument names
when calling a function to improve readability (see <A
HREF="sql-syntax-calling-funcs.html"
>Section 4.3</A
>). In any case, the name
of an output argument is significant, because it defines the column
name in the result row type. (If you omit the name for an output
argument, the system will choose a default column name.)
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>argtype</I
></TT
></DT
><DD
><P
> The data type(s) of the function's arguments (optionally
schema-qualified), if any. The argument types can be base, composite,
or domain types, or can reference the type of a table column.
</P
><P
> Depending on the implementation language it might also be allowed
to specify <SPAN
CLASS="QUOTE"
>"pseudotypes"</SPAN
> such as <TT
CLASS="TYPE"
>cstring</TT
>.
Pseudotypes indicate that the actual argument type is either
incompletely specified, or outside the set of ordinary SQL data types.
</P
><P
> The type of a column is referenced by writing
<TT
CLASS="LITERAL"
><TT
CLASS="REPLACEABLE"
><I
>table_name</I
></TT
>.<TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
>%TYPE</TT
>.
Using this feature can sometimes help make a function independent of
changes to the definition of a table.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>default_expr</I
></TT
></DT
><DD
><P
> An expression to be used as default value if the parameter is
not specified. The expression has to be coercible to the
argument type of the parameter.
Only input (including <TT
CLASS="LITERAL"
>INOUT</TT
>) parameters can have a default
value. All input parameters following a
parameter with a default value must have default values as well.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>rettype</I
></TT
></DT
><DD
><P
> The return data type (optionally schema-qualified). The return type
can be a base, composite, or domain type,
or can reference the type of a table column.
Depending on the implementation language it might also be allowed
to specify <SPAN
CLASS="QUOTE"
>"pseudotypes"</SPAN
> such as <TT
CLASS="TYPE"
>cstring</TT
>.
If the function is not supposed to return a value, specify
<TT
CLASS="TYPE"
>void</TT
> as the return type.
</P
><P
> When there are <TT
CLASS="LITERAL"
>OUT</TT
> or <TT
CLASS="LITERAL"
>INOUT</TT
> parameters,
the <TT
CLASS="LITERAL"
>RETURNS</TT
> clause can be omitted. If present, it
must agree with the result type implied by the output parameters:
<TT
CLASS="LITERAL"
>RECORD</TT
> if there are multiple output parameters, or
the same type as the single output parameter.
</P
><P
> The <TT
CLASS="LITERAL"
>SETOF</TT
>
modifier indicates that the function will return a set of
items, rather than a single item.
</P
><P
> The type of a column is referenced by writing
<TT
CLASS="LITERAL"
><TT
CLASS="REPLACEABLE"
><I
>table_name</I
></TT
>.<TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
>%TYPE</TT
>.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
></DT
><DD
><P
> The name of an output column in the <TT
CLASS="LITERAL"
>RETURNS TABLE</TT
>
syntax. This is effectively another way of declaring a named
<TT
CLASS="LITERAL"
>OUT</TT
> parameter, except that <TT
CLASS="LITERAL"
>RETURNS TABLE</TT
>
also implies <TT
CLASS="LITERAL"
>RETURNS SETOF</TT
>.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>column_type</I
></TT
></DT
><DD
><P
> The data type of an output column in the <TT
CLASS="LITERAL"
>RETURNS TABLE</TT
>
syntax.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>lang_name</I
></TT
></DT
><DD
><P
> The name of the language that the function is implemented in.
It can be <TT
CLASS="LITERAL"
>sql</TT
>, <TT
CLASS="LITERAL"
>c</TT
>,
<TT
CLASS="LITERAL"
>internal</TT
>, or the name of a user-defined
procedural language, e.g. <TT
CLASS="LITERAL"
>plpgsql</TT
>. Enclosing the
name in single quotes is deprecated and requires matching case.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>TRANSFORM { FOR TYPE <TT
CLASS="REPLACEABLE"
><I
>type_name</I
></TT
> } [, ... ] }</TT
></DT
><DD
><P
> Lists which transforms a call to the function should apply. Transforms
convert between SQL types and language-specific data types;
see <A
HREF="sql-createtransform.html"
>CREATE TRANSFORM</A
>. Procedural language
implementations usually have hardcoded knowledge of the built-in types,
so those don't need to be listed here. If a procedural language
implementation does not know how to handle a type and no transform is
supplied, it will fall back to a default behavior for converting data
types, but this depends on the implementation.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>WINDOW</TT
></DT
><DD
><P
><TT
CLASS="LITERAL"
>WINDOW</TT
> indicates that the function is a
<I
CLASS="FIRSTTERM"
>window function</I
> rather than a plain function.
This is currently only useful for functions written in C.
The <TT
CLASS="LITERAL"
>WINDOW</TT
> attribute cannot be changed when
replacing an existing function definition.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>IMMUTABLE</TT
><BR><TT
CLASS="LITERAL"
>STABLE</TT
><BR><TT
CLASS="LITERAL"
>VOLATILE</TT
></DT
><DD
><P
> These attributes inform the query optimizer about the behavior
of the function. At most one choice
can be specified. If none of these appear,
<TT
CLASS="LITERAL"
>VOLATILE</TT
> is the default assumption.
</P
><P
><TT
CLASS="LITERAL"
>IMMUTABLE</TT
> indicates that the function
cannot modify the database and always
returns the same result when given the same argument values; that
is, it does not do database lookups or otherwise use information not
directly present in its argument list. If this option is given,
any call of the function with all-constant arguments can be
immediately replaced with the function value.
</P
><P
><TT
CLASS="LITERAL"
>STABLE</TT
> indicates that the function
cannot modify the database,
and that within a single table scan it will consistently
return the same result for the same argument values, but that its
result could change across SQL statements. This is the appropriate
selection for functions whose results depend on database lookups,
parameter variables (such as the current time zone), etc. (It is
inappropriate for <TT
CLASS="LITERAL"
>AFTER</TT
> triggers that wish to
query rows modified by the current command.) Also note
that the <CODE
CLASS="FUNCTION"
>current_timestamp</CODE
> family of functions qualify
as stable, since their values do not change within a transaction.
</P
><P
><TT
CLASS="LITERAL"
>VOLATILE</TT
> indicates that the function value can
change even within a single table scan, so no optimizations can be
made. Relatively few database functions are volatile in this sense;
some examples are <TT
CLASS="LITERAL"
>random()</TT
>, <TT
CLASS="LITERAL"
>currval()</TT
>,
<TT
CLASS="LITERAL"
>timeofday()</TT
>. But note that any function that has
side-effects must be classified volatile, even if its result is quite
predictable, to prevent calls from being optimized away; an example is
<TT
CLASS="LITERAL"
>setval()</TT
>.
</P
><P
> For additional details see <A
HREF="xfunc-volatility.html"
>Section 36.6</A
>.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>LEAKPROOF</TT
></DT
><DD
><P
> <TT
CLASS="LITERAL"
>LEAKPROOF</TT
> indicates that the function has no side
effects. It reveals no information about its arguments other than by
its return value. For example, a function which throws an error message
for some argument values but not others, or which includes the argument
values in any error message, is not leakproof. This affects how the
system executes queries against views created with the
<TT
CLASS="LITERAL"
>security_barrier</TT
> option or tables with row level
security enabled. The system will enforce conditions from security
policies and security barrier views before any user-supplied conditions
from the query itself that contain non-leakproof functions, in order to
prevent the inadvertent exposure of data. Functions and operators
marked as leakproof are assumed to be trustworthy, and may be executed
before conditions from security policies and security barrier views.
In addition, functions which do not take arguments or which are not
passed any arguments from the security barrier view or table do not have
to be marked as leakproof to be executed before security conditions. See
<A
HREF="sql-createview.html"
>CREATE VIEW</A
> and <A
HREF="rules-privileges.html"
>Section 39.5</A
>.
This option can only be set by the superuser.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>CALLED ON NULL INPUT</TT
><BR><TT
CLASS="LITERAL"
>RETURNS NULL ON NULL INPUT</TT
><BR><TT
CLASS="LITERAL"
>STRICT</TT
></DT
><DD
><P
><TT
CLASS="LITERAL"
>CALLED ON NULL INPUT</TT
> (the default) indicates
that the function will be called normally when some of its
arguments are null. It is then the function author's
responsibility to check for null values if necessary and respond
appropriately.
</P
><P
><TT
CLASS="LITERAL"
>RETURNS NULL ON NULL INPUT</TT
> or
<TT
CLASS="LITERAL"
>STRICT</TT
> indicates that the function always
returns null whenever any of its arguments are null. If this
parameter is specified, the function is not executed when there
are null arguments; instead a null result is assumed
automatically.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>[<SPAN
CLASS="OPTIONAL"
>EXTERNAL</SPAN
>] SECURITY INVOKER</TT
><BR><TT
CLASS="LITERAL"
>[<SPAN
CLASS="OPTIONAL"
>EXTERNAL</SPAN
>] SECURITY DEFINER</TT
></DT
><DD
><P
><TT
CLASS="LITERAL"
>SECURITY INVOKER</TT
> indicates that the function
is to be executed with the privileges of the user that calls it.
That is the default. <TT
CLASS="LITERAL"
>SECURITY DEFINER</TT
>
specifies that the function is to be executed with the
privileges of the user that created it.
</P
><P
> The key word <TT
CLASS="LITERAL"
>EXTERNAL</TT
> is allowed for SQL
conformance, but it is optional since, unlike in SQL, this feature
applies to all functions not only external ones.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>PARALLEL</TT
></DT
><DD
><P
><TT
CLASS="LITERAL"
>PARALLEL UNSAFE</TT
> indicates that the function
can't be executed in parallel mode and the presence of such a
function in an SQL statement forces a serial execution plan. This is
the default. <TT
CLASS="LITERAL"
>PARALLEL RESTRICTED</TT
> indicates that
the function can be executed in parallel mode, but the execution is
restricted to parallel group leader. <TT
CLASS="LITERAL"
>PARALLEL SAFE</TT
>
indicates that the function is safe to run in parallel mode without
restriction.
</P
><P
> Functions should be labeled parallel unsafe if they modify any database
state, or if they make changes to the transaction such as using
sub-transactions, or if they access sequences or attempt to make
persistent changes to settings (e.g. <TT
CLASS="LITERAL"
>setval</TT
>). They should
be labeled as parallel restricted if they access temporary tables,
client connection state, cursors, prepared statements, or miscellaneous
backend-local state which the system cannot synchronize in parallel mode
(e.g. <TT
CLASS="LITERAL"
>setseed</TT
> cannot be executed other than by the group
leader because a change made by another process would not be reflected
in the leader). In general, if a function is labeled as being safe when
it is restricted or unsafe, or if it is labeled as being restricted when
it is in fact unsafe, it may throw errors or produce wrong answers
when used in a parallel query. C-language functions could in theory
exhibit totally undefined behavior if mislabeled, since there is no way
for the system to protect itself against arbitrary C code, but in most
likely cases the result will be no worse than for any other function.
If in doubt, functions should be labeled as <TT
CLASS="LITERAL"
>UNSAFE</TT
>, which is
the default.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>execution_cost</I
></TT
></DT
><DD
><P
> A positive number giving the estimated execution cost for the function,
in units of <A
HREF="runtime-config-query.html#GUC-CPU-OPERATOR-COST"
>cpu_operator_cost</A
>. If the function
returns a set, this is the cost per returned row. If the cost is
not specified, 1 unit is assumed for C-language and internal functions,
and 100 units for functions in all other languages. Larger values
cause the planner to try to avoid evaluating the function more often
than necessary.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>result_rows</I
></TT
></DT
><DD
><P
> A positive number giving the estimated number of rows that the planner
should expect the function to return. This is only allowed when the
function is declared to return a set. The default assumption is
1000 rows.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>configuration_parameter</I
></TT
><BR><TT
CLASS="REPLACEABLE"
><I
>value</I
></TT
></DT
><DD
><P
> The <TT
CLASS="LITERAL"
>SET</TT
> clause causes the specified configuration
parameter to be set to the specified value when the function is
entered, and then restored to its prior value when the function exits.
<TT
CLASS="LITERAL"
>SET FROM CURRENT</TT
> saves the value of the parameter that
is current when <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
> is executed as the value
to be applied when the function is entered.
</P
><P
> If a <TT
CLASS="LITERAL"
>SET</TT
> clause is attached to a function, then
the effects of a <TT
CLASS="COMMAND"
>SET LOCAL</TT
> command executed inside the
function for the same variable are restricted to the function: the
configuration parameter's prior value is still restored at function exit.
However, an ordinary
<TT
CLASS="COMMAND"
>SET</TT
> command (without <TT
CLASS="LITERAL"
>LOCAL</TT
>) overrides the
<TT
CLASS="LITERAL"
>SET</TT
> clause, much as it would do for a previous <TT
CLASS="COMMAND"
>SET
LOCAL</TT
> command: the effects of such a command will persist after
function exit, unless the current transaction is rolled back.
</P
><P
> See <A
HREF="sql-set.html"
>SET</A
> and
<A
HREF="runtime-config.html"
>Chapter 19</A
>
for more information about allowed parameter names and values.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>definition</I
></TT
></DT
><DD
><P
> A string constant defining the function; the meaning depends on the
language. It can be an internal function name, the path to an
object file, an SQL command, or text in a procedural language.
</P
><P
> It is often helpful to use dollar quoting (see <A
HREF="sql-syntax-lexical.html#SQL-SYNTAX-DOLLAR-QUOTING"
>Section 4.1.2.4</A
>) to write the function definition
string, rather than the normal single quote syntax. Without dollar
quoting, any single quotes or backslashes in the function definition must
be escaped by doubling them.
</P
></DD
><DT
><TT
CLASS="LITERAL"
><TT
CLASS="REPLACEABLE"
><I
>obj_file</I
></TT
>, <TT
CLASS="REPLACEABLE"
><I
>link_symbol</I
></TT
></TT
></DT
><DD
><P
> This form of the <TT
CLASS="LITERAL"
>AS</TT
> clause is used for
dynamically loadable C language functions when the function name
in the C language source code is not the same as the name of
the SQL function. The string <TT
CLASS="REPLACEABLE"
><I
>obj_file</I
></TT
> is the name of the
file containing the dynamically loadable object, and
<TT
CLASS="REPLACEABLE"
><I
>link_symbol</I
></TT
> is the
function's link symbol, that is, the name of the function in the C
language source code. If the link symbol is omitted, it is assumed
to be the same as the name of the SQL function being defined.
</P
><P
> When repeated <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
> calls refer to
the same object file, the file is only loaded once per session.
To unload and
reload the file (perhaps during development), start a new session.
</P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>attribute</I
></TT
></DT
><DD
><P
> The historical way to specify optional pieces of information
about the function. The following attributes can appear here:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>isStrict</TT
></DT
><DD
><P
> Equivalent to <TT
CLASS="LITERAL"
>STRICT</TT
> or <TT
CLASS="LITERAL"
>RETURNS NULL ON NULL INPUT</TT
>.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>isCachable</TT
></DT
><DD
><P
><TT
CLASS="LITERAL"
>isCachable</TT
> is an obsolete equivalent of
<TT
CLASS="LITERAL"
>IMMUTABLE</TT
>; it's still accepted for
backwards-compatibility reasons.
</P
></DD
></DL
></DIV
><P>
Attribute names are not case-sensitive.
</P
></DD
></DL
></DIV
><P
> Refer to <A
HREF="xfunc.html"
>Section 36.3</A
> for further information on writing
functions.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-OVERLOADING"
></A
><H2
>Overloading</H2
><P
> <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> allows function
<I
CLASS="FIRSTTERM"
>overloading</I
>; that is, the same name can be
used for several different functions so long as they have distinct
input argument types. However, the C names of all functions must be
different, so you must give overloaded C functions different C
names (for example, use the argument types as part of the C
names).
</P
><P
> Two functions are considered the same if they have the same names and
<SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>input</I
></SPAN
> argument types, ignoring any <TT
CLASS="LITERAL"
>OUT</TT
>
parameters. Thus for example these declarations conflict:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION foo(int) ...
CREATE FUNCTION foo(int, out text) ...</PRE
><P>
</P
><P
> Functions that have different argument type lists will not be considered
to conflict at creation time, but if defaults are provided they might
conflict in use. For example, consider
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION foo(int) ...
CREATE FUNCTION foo(int, int default 42) ...</PRE
><P>
A call <TT
CLASS="LITERAL"
>foo(10)</TT
> will fail due to the ambiguity about which
function should be called.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-NOTES"
></A
><H2
>Notes</H2
><P
> The full <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> type syntax is allowed for
declaring a function's arguments and return value. However,
parenthesized type modifiers (e.g., the precision field for
type <TT
CLASS="TYPE"
>numeric</TT
>) are discarded by <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
>.
Thus for example
<TT
CLASS="LITERAL"
>CREATE FUNCTION foo (varchar(10)) ...</TT
>
is exactly the same as
<TT
CLASS="LITERAL"
>CREATE FUNCTION foo (varchar) ...</TT
>.
</P
><P
> When replacing an existing function with <TT
CLASS="COMMAND"
>CREATE OR REPLACE
FUNCTION</TT
>, there are restrictions on changing parameter names.
You cannot change the name already assigned to any input parameter
(although you can add names to parameters that had none before).
If there is more than one output parameter, you cannot change the
names of the output parameters, because that would change the
column names of the anonymous composite type that describes the
function's result. These restrictions are made to ensure that
existing calls of the function do not stop working when it is replaced.
</P
><P
> If a function is declared <TT
CLASS="LITERAL"
>STRICT</TT
> with a <TT
CLASS="LITERAL"
>VARIADIC</TT
>
argument, the strictness check tests that the variadic array <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>as
a whole</I
></SPAN
> is non-null. The function will still be called if the
array has null elements.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-EXAMPLES"
></A
><H2
>Examples</H2
><P
> Here are some trivial examples to help you get started. For more
information and examples, see <A
HREF="xfunc.html"
>Section 36.3</A
>.
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION add(integer, integer) RETURNS integer
AS 'select $1 + $2;'
LANGUAGE SQL
IMMUTABLE
RETURNS NULL ON NULL INPUT;</PRE
><P>
</P
><P
> Increment an integer, making use of an argument name, in
<SPAN
CLASS="APPLICATION"
>PL/pgSQL</SPAN
>:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE OR REPLACE FUNCTION increment(i integer) RETURNS integer AS $$
BEGIN
RETURN i + 1;
END;
$$ LANGUAGE plpgsql;</PRE
><P>
</P
><P
> Return a record containing multiple output parameters:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION dup(in int, out f1 int, out f2 text)
AS $$ SELECT $1, CAST($1 AS text) || ' is text' $$
LANGUAGE SQL;
SELECT * FROM dup(42);</PRE
><P>
You can do the same thing more verbosely with an explicitly named
composite type:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE TYPE dup_result AS (f1 int, f2 text);
CREATE FUNCTION dup(int) RETURNS dup_result
AS $$ SELECT $1, CAST($1 AS text) || ' is text' $$
LANGUAGE SQL;
SELECT * FROM dup(42);</PRE
><P>
Another way to return multiple columns is to use a <TT
CLASS="LITERAL"
>TABLE</TT
>
function:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION dup(int) RETURNS TABLE(f1 int, f2 text)
AS $$ SELECT $1, CAST($1 AS text) || ' is text' $$
LANGUAGE SQL;
SELECT * FROM dup(42);</PRE
><P>
However, a <TT
CLASS="LITERAL"
>TABLE</TT
> function is different from the
preceding examples, because it actually returns a <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>set</I
></SPAN
>
of records, not just one record.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-SECURITY"
></A
><H2
>Writing <TT
CLASS="LITERAL"
>SECURITY DEFINER</TT
> Functions Safely</H2
><P
> Because a <TT
CLASS="LITERAL"
>SECURITY DEFINER</TT
> function is executed
with the privileges of the user that created it, care is needed to
ensure that the function cannot be misused. For security,
<A
HREF="runtime-config-client.html#GUC-SEARCH-PATH"
>search_path</A
> should be set to exclude any schemas
writable by untrusted users. This prevents
malicious users from creating objects (e.g., tables, functions, and
operators) that mask objects intended to be used by the function.
Particularly important in this regard is the
temporary-table schema, which is searched first by default, and
is normally writable by anyone. A secure arrangement can be obtained
by forcing the temporary schema to be searched last. To do this,
write <TT
CLASS="LITERAL"
>pg_temp</TT
> as the last entry in <TT
CLASS="VARNAME"
>search_path</TT
>.
This function illustrates safe usage:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE FUNCTION check_password(uname TEXT, pass TEXT)
RETURNS BOOLEAN AS $$
DECLARE passed BOOLEAN;
BEGIN
SELECT (pwd = $2) INTO passed
FROM pwds
WHERE username = $1;
RETURN passed;
END;
$$ LANGUAGE plpgsql
SECURITY DEFINER
-- Set a secure search_path: trusted schema(s), then 'pg_temp'.
SET search_path = admin, pg_temp;</PRE
><P>
This function's intention is to access a table <TT
CLASS="LITERAL"
>admin.pwds</TT
>.
But without the <TT
CLASS="LITERAL"
>SET</TT
> clause, or with a <TT
CLASS="LITERAL"
>SET</TT
> clause
mentioning only <TT
CLASS="LITERAL"
>admin</TT
>, the function could be subverted by
creating a temporary table named <TT
CLASS="LITERAL"
>pwds</TT
>.
</P
><P
> Before <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> version 8.3, the
<TT
CLASS="LITERAL"
>SET</TT
> clause was not available, and so older functions may
contain rather complicated logic to save, set, and restore
<TT
CLASS="VARNAME"
>search_path</TT
>. The <TT
CLASS="LITERAL"
>SET</TT
> clause is far easier
to use for this purpose.
</P
><P
> Another point to keep in mind is that by default, execute privilege
is granted to <TT
CLASS="LITERAL"
>PUBLIC</TT
> for newly created functions
(see <A
HREF="sql-grant.html"
>GRANT</A
> for more
information). Frequently you will wish to restrict use of a security
definer function to only some users. To do that, you must revoke
the default <TT
CLASS="LITERAL"
>PUBLIC</TT
> privileges and then grant execute
privilege selectively. To avoid having a window where the new function
is accessible to all, create it and set the privileges within a single
transaction. For example:
</P
><PRE
CLASS="PROGRAMLISTING"
>BEGIN;
CREATE FUNCTION check_password(uname TEXT, pass TEXT) ... SECURITY DEFINER;
REVOKE ALL ON FUNCTION check_password(uname TEXT, pass TEXT) FROM PUBLIC;
GRANT EXECUTE ON FUNCTION check_password(uname TEXT, pass TEXT) TO admins;
COMMIT;</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATEFUNCTION-COMPAT"
></A
><H2
>Compatibility</H2
><P
> A <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
> command is defined in SQL:1999 and later.
The <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> version is similar but
not fully compatible. The attributes are not portable, neither are the
different available languages.
</P
><P
> For compatibility with some other database systems,
<TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> can be written
either before or after <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
>.
But only the first way is standard-compliant.
</P
><P
> For parameter defaults, the SQL standard specifies only the syntax with
the <TT
CLASS="LITERAL"
>DEFAULT</TT
> key word. The syntax
with <TT
CLASS="LITERAL"
>=</TT
> is used in T-SQL and Firebird.
</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79935"
></A
><H2
>See Also</H2
><A
HREF="sql-alterfunction.html"
>ALTER FUNCTION</A
>, <A
HREF="sql-dropfunction.html"
>DROP FUNCTION</A
>, <A
HREF="sql-grant.html"
>GRANT</A
>, <A
HREF="sql-load.html"
>LOAD</A
>, <A
HREF="sql-revoke.html"
>REVOKE</A
>, <A
HREF="app-createlang.html"
><SPAN
CLASS="APPLICATION"
>createlang</SPAN
></A
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-createforeigntable.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-creategroup.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>CREATE FOREIGN TABLE</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>CREATE GROUP</TD
></TR
></TABLE
></DIV
></BODY
></HTML
> | unsupo/ogame | ogamebotserver/src/main/resources/databases/postgres/share/doc/postgresql/html/sql-createfunction.html | HTML | mit | 35,009 |
<html>
<META HTTP-EQUIV=Content-Type Content="text/html; charset=utf8">
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04565/04565100061400.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:24:39 GMT -->
<head><title>法編號:04565 版本:100061400</title>
<link rel="stylesheet" type="text/css" href="../../version.css" >
</HEAD>
<body><left>
<table><tr><td><FONT COLOR=blue SIZE=5>法官法(04565)</font>
<table><tr><td> </td><td>
<table><tr><td> </td><td>
<table><tr><td> </td>
<tr><td align=left valign=top>
<a href=04565100061400.html target=law04565><nobr><font size=2>中華民國 100 年 6 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>制定103條<br>
除第五章法官評鑑自公布後半年施行、第78條自公布後三年六個月施行外,自公布後一年施行</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 7 月 6 日公布</font></nobr></td>
</table></table></table></table>
<p><table><tr><td><font color=blue size=4>民國100年6月14日</font></td>
<td><a href=http://lis.ly.gov.tw/lgcgi/lglawproc?04565100061400 target=proc><font size=2>立法紀錄</font></a></td>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第一章 總則</font>
<table><tr><td> </td><td><font color=8000ff>第一條</font>
<font size=2>(立法目的、法官之任用關係及法律適用順序)</font>
<table><tr><td> </td>
<td>
為維護法官依法獨立審判,保障法官之身分,並建立法官評鑑機制,以確保人民接受公正審判之權利,特制定本法。<br>
法官與國家之關係為法官特別任用關係。<br>
本法未規定者,適用其他法律之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二條</font>
<font size=2>(法官之定義範圍)</font>
<table><tr><td> </td>
<td>
本法所稱法官,指下列各款人員:<br>
一、司法院大法官。<br>
二、公務員懲戒委員會委員。<br>
三、各法院法官。<br>
前項第三款所稱之法官,除有特別規定外,包括試署法官、候補法官。<br>
本法所稱法院及院長,除有特別規定外,包括公務員懲戒委員會及其委員長。<br>
本法所稱司法行政人員,指於司法院及司法院司法人員研習所辦理行政事項之人員。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三條</font>
<font size=2>(不適用司法院大法官之情形)</font>
<table><tr><td> </td>
<td>
本法之規定,與司法院大法官依據憲法及法律所定不相容者,不適用於司法院大法官。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四條</font>
<font size=2>(司法院人事審議委員會)</font>
<table><tr><td> </td>
<td>
司法院設人事審議委員會,依法審議法官之任免、轉任、解職、遷調、考核、獎懲、專業法官資格認定或授與、第十一條所規定之延任事項及其他法律規定應由司法院人事審議委員會審議之事項。<br>
前項委員會,以司法院院長為當然委員並任主席,除第一款委員外,其他委員任期一年,得連任一次,名額及產生之方式如下:<br>
一、司法院院長指定十一人。<br>
二、法官代表十二人:最高法院法官代表一人、最高行政法院法官及公務員懲戒委員會委員代表一人、高等法院法官代表二人、高等行政法院及智慧財產法院法官代表一人、地方法院及少年及家事法院法官代表七人,由各級法院法官互選之。<br>
三、學者專家三人:由法務部、律師公會全國聯合會各推舉檢察官、律師以外之人三人,送司法院院長遴聘。<br>
學者專家對法官之初任、再任、轉任、解職、免職、候補、試署法官予以試署、實授之審查及第十一條所規定之延任事項,有表決權;對其餘事項僅得列席表示意見,無表決權。<br>
曾受懲戒者,不得擔任第二項之法官代表。<br>
司法院為向司法院人事審議委員會提出人事議案所設置之各種委員會,其委員會成員應有法官、學者專家、律師或檢察官代表之參與。<br>
司法院人事審議委員會委員之資格條件、產生方式等有關事項之辦法,及其審議規則,由司法院定之。但審議規則涉及法官任免、考績、級俸、遷調及褒獎之事項者,由司法院會同考試院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第二章 法官之任用</font>
<table><tr><td> </td><td><font color=8000ff>第五條</font>
<font size=2>(法官之積極資格)</font>
<table><tr><td> </td>
<td>
高等法院以下各法院之法官,應就具有下列資格之一者任用之:<br>
一、經法官、檢察官考試及格,或曾實際執行律師業務三年以上且具擬任職務任用資格。但以任用於地方法院法官為限。<br>
二、曾任實任法官。<br>
三、曾任實任檢察官。<br>
四、曾任公設辯護人六年以上。<br>
五、曾實際執行律師業務六年以上,具擬任職務任用資格。<br>
六、公立或經立案之私立大學、獨立學院法律學系或其研究所畢業,曾任教育部審定合格之大學或獨立學院專任教授、副教授或助理教授合計六年以上,講授主要法律科目二年以上,有法律專門著作,具擬任職務任用資格。<br>
高等行政法院之法官,應就具有下列資格之一者任用之:<br>
一、曾任實任法官。<br>
二、曾任實任檢察官。<br>
三、曾任法官、檢察官職務並任公務人員合計八年以上。<br>
四、曾實際執行行政訴訟律師業務八年以上,具擬任職務任用資格。<br>
五、公立或經立案之私立大學、獨立學院法律、政治、行政學系或其研究所畢業,曾任教育部審定合格之大學或獨立學院專任教授、副教授或助理教授合計八年以上,講授憲法、行政法、商標法、專利法、租稅法、土地法、公平交易法、政府採購法或其他行政法課程五年以上,有上述相關之專門著作,具擬任職務任用資格。<br>
六、公立或經立案之私立大學、獨立學院法律、政治、行政學系或其研究所畢業,曾任中央研究院研究員、副研究員或助研究員合計八年以上,有憲法、行政法之專門著作,具擬任職務任用資格。<br>
七、公立或經立案之私立大學、獨立學院法律、政治、行政學系或其研究所畢業,曾任簡任公務人員,辦理機關之訴願或法制業務十年以上,有憲法、行政法之專門著作。<br>
最高法院、最高行政法院之法官及公務員懲戒委員會之委員,除法律另有規定外,應就具有下列資格之一者任用之:<br>
一、曾任司法院大法官,具擬任職務任用資格。<br>
二、曾任公務員懲戒委員會委員。<br>
三、曾任實任法官十二年以上。<br>
四、曾任實任檢察官十二年以上。<br>
五、曾實際執行律師業務十八年以上,具擬任職務任用資格。<br>
六、公立或經立案之私立大學、獨立學院法律學系或其研究所畢業,曾任教育部審定合格之大學或獨立學院專任教授十年以上,講授主要法律科目五年以上,有法律專門著作,具擬任職務任用資格。<br>
第一項第六款及第三項第六款所稱主要法律科目,指憲法、民法、刑法、國際私法、商事法、行政法、民事訴訟法、刑事訴訟法、行政訴訟法、強制執行法、破產法及其他經考試院指定為主要法律科目者而言。<br>
其他專業法院之法官任用資格另以法律定之。<br>
未具擬任職務任用資格之大法官、律師、教授、副教授、助理教授及中央研究院研究員、副研究員、助研究員,其擬任職務任用資格取得之考試,得採筆試、口試及審查著作發明、審查知能有關學歷、經歷證明之考試方式行之,其考試辦法由考試院定之。<br>
經依前項通過擬任職務任用資格考試及格者,僅取得參加由考試院委託司法院依第七條辦理之法官遴選之資格。<br>
司法院為辦理前項法官遴選,其遴選標準、遴選程序、被遴選人員年齡之限制及其他應遵行事項之辦法,由司法院會同考試院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六條</font>
<font size=2>(法官之消極資格)</font>
<table><tr><td> </td>
<td>
具有下列情事之一者,不得任法官:<br>
一、依公務人員任用法之規定,不得任用為公務人員。<br>
二、因故意犯罪,受有期徒刑以上刑之宣告確定,有損法官職位之尊嚴。<br>
三、曾任公務員,依公務員懲戒法或相關法規之規定,受撤職以上處分確定。<br>
四、曾任公務員,依公務人員考績法或相關法規之規定,受免職處分確定。但因監護宣告受免職處分,經撤銷監護宣告者,不在此限。<br>
五、受破產宣告,尚未復權。<br>
六、曾任民選公職人員離職後未滿三年。但法令另有規定者,不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七條</font>
<font size=2>(法官之遴選)</font>
<table><tr><td> </td>
<td>
初任法官者除因法官、檢察官考試及格直接分發任用外,應經遴選合格。曾任法官因故離職後申請再任者,亦同。<br>
司法院設法官遴選委員會,掌理法官之遴選。<br>
前項遴選委員會,以司法院院長為當然委員並任主席,其他委員任期二年,得連任一次,名額及產生之方式如下:<br>
一、考試院代表二人:由考試院推派。<br>
二、法官代表六人:由司法院院長提名應選名額三倍人選,送請司法院人事審議委員會從中審定應選名額二倍人選,交法官票選。<br>
三、檢察官代表一人:由法務部推舉應選名額三倍人選,送請司法院院長從中提名應選名額二倍人選,辦理檢察官票選。<br>
四、律師代表三人:由律師公會全國聯合會、各地律師公會各別推舉應選名額三倍人選,送請司法院院長從中提名應選名額二倍人選,辦理全國性律師票選。<br>
五、學者及社會公正人士共六人:學者應包括法律、社會及心理學專長者,由司法院院長遴聘。<br>
第二項委員會之決議,應以委員總人數三分之二以上出席,出席委員過半數之同意行之。<br>
前項總人數,應扣除任期中解職、死亡致出缺之人數,但不得低於十二人。<br>
遴選委員會之審議規則,由司法院定之。<br>
遴選委員之資格條件、票選程序及委員出缺之遞補等有關事項之辦法,由司法院、行政院、律師公會全國聯合會分別定之,並各自辦理票選。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八條</font>
<font size=2>(法官遴選委員會)</font>
<table><tr><td> </td>
<td>
司法院法官遴選委員會遴選法官,應審酌其操守、能力、身心狀態、敬業精神、專長及志願。<br>
已具擬任職務任用資格之法官之遴選,其程序、法官年齡限制等有關事項之辦法,由司法院定之。<br>
經遴選為法官者,應經研習;其研習期間、期間縮短或免除、實施方式、津貼、費用、請假、考核、獎懲、研習資格之保留或廢止等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九條</font>
<font size=2>(候補、試署法官之實授程序)</font>
<table><tr><td> </td>
<td>
具第五條第一項第一款資格經遴選者,為候補法官,候補期間五年,候補期滿審查及格者,予以試署,試署期間一年。因法官、檢察官考試及格直接分發任用為法官者,亦同。<br>
具第五條第一項第四款至第六款、第二項第三款至第七款資格經遴選者,為試署法官,試署期間二年;曾任法官、檢察官並任公務人員合計十年以上或執行律師業務十年以上者,試署期間一年。<br>
第一項候補法官於候補期間,輪辦下列事務。但司法院得視實際情形酌予調整:<br>
一、調至上級審法院辦理法院組織法第三十四條第三項、行政法院組織法第十條第五項之事項,期間為一年。<br>
二、充任地方法院合議案件之陪席法官及受命法官,期間為二年。<br>
三、獨任辦理地方法院少年案件以外之民刑事有關裁定案件、民刑事簡易程序案件、民事小額訴訟程序事件或刑事簡式審判程序案件,期間為二年。<br>
候補法官於候補第三年起,除得獨任辦理前項第三款事務外,並得獨任辦理刑事訴訟法第三百七十六條第一款、第二款所列之罪之案件。<br>
候補法官應依第三項各款之次序輪辦事務,但第一款與第二款之輪辦次序及其名額分配,司法院為應業務需要,得調整之;第二款、第三款之輪辦次序,各法院為應業務需要得調整之。<br>
對於候補法官、試署法官,應考核其服務成績;候補、試署期滿時,應陳報司法院送請司法院人事審議委員會審查。審查及格者,予以試署、實授;不及格者,應於二年內再予考核,報請審查,仍不及格時,停止其候補、試署並予以解職。<br>
前項服務成績項目包括學識能力、敬業精神、裁判品質、品德操守及身心健康情形。<br>
司法院人事審議委員會為服務成績之審查時,應徵詢法官遴選委員會意見;為不及格之決定前,應通知受審查之候補、試署法官陳述意見。<br>
司法院為審查候補、試署法官裁判或相關書類,應組成審查委員會,其任期、審查標準等由司法院另定之。<br>
候補、試署法官,於候補、試署期間辦理之事務、服務成績考核及再予考核等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十條</font>
<font size=2>(法官之遷調及庭長之遴選)</font>
<table><tr><td> </td>
<td>
法官之遷調改任,應本於法官自治之精神辦理;其資格、程序、在職研習及調派辦事等有關事項之辦法,由司法院會同考試院定之。<br>
各法院庭長之遴任,其資格、程序等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十一條</font>
<font size=2>(高等法院以下各級法院院長、庭長之任期)</font>
<table><tr><td> </td>
<td>
高等法院以下各法院及高等行政法院、其他專業法院院長、庭長之任期為三年,得連任一次。但司法院認為確有必要者,得再延任之,其期間以三年為限。<br>
前項院長不同審級之任期,應合併計算。司法院每年應對前項院長之品德、操守、執行職務之能力及參與審判工作之努力等事項,徵詢該院法官意見,並得參酌徵詢結果,對任期尚未屆滿者免兼院長職務。<br>
第一項庭長同審級之任期,應合併計算。其任期屆滿連任前,司法院應徵詢該庭長曾任職法院法官之意見。<br>
司法院於庭長任期中,如發現有具體事證,足認其有不適任庭長之情事者,得對其免兼庭長職務。<br>
院長及庭長之調任、連任、延任、免兼等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十二條</font>
<font size=2>(法官之任命、法官先派代理之停止及任用之撤銷)</font>
<table><tr><td> </td>
<td>
法官之任用,準用公務人員相關規定先派代理,並應送請銓敘部銓敘審定,經銓敘審定合格者,呈請總統任命。銓敘審定不合格者,應即停止其代理。<br>
法官於任用前有第六條所列各款情事之一,或不合各該審級法官任用資格者,撤銷其任用或該審級法官之任用資格。<br>
第一項代理之停止及前項任用之撤銷,不影響其在任時職務行為之效力;業已依規定支付之給與,不予追還。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第三章 法官之司法倫理與監督</font>
<table><tr><td> </td><td><font color=8000ff>第十三條</font>
<font size=2>(法官職務執行之基本原則)</font>
<table><tr><td> </td>
<td>
法官應依據憲法及法律,本於良心,超然、獨立、公正審判,不受任何干涉。<br>
法官應遵守法官倫理規範,其內容由司法院徵詢全國法官代表意見定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十四條</font>
<font size=2>(法官之宣誓及誓詞)</font>
<table><tr><td> </td>
<td>
法官於就職時應依法宣誓,其誓詞如下:「余誓以至誠,接受國家任命,恪遵憲法及法律之規定,秉持超然獨立之精神,公正廉明,勤奮謹慎,執行法官職務,如違誓言,願受最嚴厲之制裁。謹誓。」。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十五條</font>
<font size=2>(參政之禁止)</font>
<table><tr><td> </td>
<td>
法官於任職期間不得參加政黨、政治團體及其活動,任職前已參加政黨、政治團體者,應退出之。<br>
法官參與各項公職人員選舉,應於各該公職人員任期屆滿一年以前,或參與重行選舉、補選及總統解散立法院後辦理之立法委員選舉,應於辦理登記前,辭去其職務或依法退休、資遣。<br>
法官違反前項規定者,不得登記為公職人員選舉之候選人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十六條</font>
<font size=2>(兼職之禁止)</font>
<table><tr><td> </td>
<td>
法官不得兼任下列職務或業務:<br>
一、中央或地方各級民意代表。<br>
二、公務員服務法規所規定公務員不得兼任之職務。<br>
三、司法機關以外其他機關之法規、訴願審議委員會委員或公務人員保障暨培訓委員會委員。<br>
四、各級私立學校董事、監察人或其他負責人。<br>
五、其他足以影響法官獨立審判或與其職業倫理、職位尊嚴不相容之職務或業務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十七條</font>
<font size=2>(兼職之限制)</font>
<table><tr><td> </td>
<td>
法官兼任前條以外其他職務者,應經其任職機關同意;司法院大法官、各級法院院長及機關首長應經司法院同意。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十八條</font>
<font size=2>(維護法官尊嚴及嚴守職務秘密之義務)</font>
<table><tr><td> </td>
<td>
法官不得為有損其職位尊嚴或職務信任之行為,並應嚴守職務上之秘密。<br>
前項守密之義務,於離職後仍應遵守。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十九條</font>
<font size=2>(獨立審判權)</font>
<table><tr><td> </td>
<td>
法官於其獨立審判不受影響之限度內,受職務監督。職務監督包括制止法官違法行使職權、糾正法官不當言行及督促法官依法迅速執行職務。<br>
法官認職務監督危及其審判獨立時,得請求職務法庭撤銷之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十條</font>
<font size=2>(法官職務監督之規定)</font>
<table><tr><td> </td>
<td>
法官之職務監督,依下列規定:<br>
一、司法院院長監督各法院法官及公務員懲戒委員會委員。<br>
二、最高法院院長監督該法院法官。<br>
三、最高行政法院院長監督該法院法官。<br>
四、公務員懲戒委員會委員長監督該委員會委員。<br>
五、高等法院院長監督該法院及其分院與所屬地方法院及其分院法官。<br>
六、高等法院分院院長監督該分院與轄區內地方法院及其分院法官。<br>
七、高等行政法院院長監督該法院及其分院法官。<br>
八、高等行政法院分院院長監督該分院法官。<br>
九、專業法院院長監督該法院法官。<br>
十、地方法院院長監督該法院及其分院法官。<br>
十一、地方法院分院院長監督該分院法官。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十一條</font>
<font size=2>(職務監督權人之處分權限)</font>
<table><tr><td> </td>
<td>
前條所定職務監督權人,對於被監督之法官得為下列處分:<br>
一、關於職務上之事項,得發命令促其注意。<br>
二、違反職務上之義務、怠於執行職務或言行不檢者,加以警告。<br>
基於保障人民之訴訟權及服公職權益,各法院或分院院長,得對該院法官遲延未結之案件,提經法官會議決議改分同院其他法官辦理,或為其他適當之處理。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十二條</font>
<font size=2>(職務監督之處分權)</font>
<table><tr><td> </td>
<td>
被監督之法官有前條第一項第二款之情事,情節重大者,第二十條所定職務監督權人得以所屬機關名義,請求法官評鑑委員會評鑑,或移由司法院依第五十一條第二項、第三項規定辦理。<br>
被監督之法官有前條第一項第二款之情事,經警告後一年內再犯,或經警告累計達三次者,視同情節重大。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十三條</font>
<font size=2>(大法官、各級法院法官自律實施辦法之訂定)</font>
<table><tr><td> </td>
<td>
司法院大法官為強化自律功能,應就自律事項、審議程序、決議之作成及處分種類等有關事項,訂定司法院大法官自律實施辦法。<br>
前項辦法經司法院大法官現有總額三分之二以上之出席及出席人數三分之二以上之決議訂定之;修正時亦同。<br>
司法院應就公務員懲戒委員會委員及各法院法官之自律事項、審議程序、決議之作成及處分種類等有關事項,訂定各級法院法官自律實施辦法。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第四章 法官會議</font>
<table><tr><td> </td><td><font color=8000ff>第二十四條</font>
<font size=2>(法官會議之議決事項)</font>
<table><tr><td> </td>
<td>
各法院及其分院設法官會議,議決下列事項:<br>
一、依法律及司法院所定事務分配辦法,預定次年度司法事務分配、代理次序及合議審判時法官之配置事項。<br>
二、辦理法官考核之建議事項。<br>
三、第二十一條所定對法官為監督處分之建議事項。<br>
四、其他與法官權利義務有重大影響之建議事項。<br>
前項第一款之議決對象,不包括調至他機關辦事之法官。<br>
法官年度司法事務分配後,因案件增減或他項事由,有變更之必要時,得由院長徵詢有關庭長、法官之意見後定之。但遇有法官分發調動,而有大幅變更法官司法事務分配之必要時,應以法官會議議決。<br>
院長認為法官會議關於第一項第一款或第三項但書議決事項所為決議有違背法令之情事,應於議決後五日內以書面附具理由,交法官會議復議。復議如經三分之二以上法官之出席及出席人數四分之三以上之同意維持原決議時,院長得於復議決議後五日內聲請職務法庭宣告其決議違背法令。<br>
法官會議關於第一項第一款或第三項但書議決事項所為決議經職務法庭宣告為違背法令者,其決議無效。法官會議自發交復議日起十五日內未議決,或未作成前項維持原決議之議決者,其原決議失其效力。<br>
前項情形,院長得提出事務分配方案取代原決議。<br>
職務法庭審理第四項之聲請案件,得不經言詞辯論,並應於受理後三十日內為裁定。<br>
院長認為法官會議就第一項第二款至第四款所列建議事項之決議違背法令或窒礙難行時,應拒絕之,並於一個月內,以書面或其他適當方式說明之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十五條</font>
<font size=2>(法官會議之召開)</font>
<table><tr><td> </td>
<td>
法官會議由全體實際辦案之法官組成,以院長為主席,每半年召開一次,無議案時,得不召開。必要時,亦得由院長或五分之一以上之法官提議,加開臨時會。<br>
法官會議之決議,除前條第四項之復議外,應以過半數法官之出席及出席人數過半數以上之同意行之,可否同數時,取決於主席;法官因故不能出席時,得出具委託書委託其他法官代理出席,但每一法官受託代理以一人為限。<br>
委託代理出席人數,不得逾前項出席人數三分之一。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十六條</font>
<font size=2>(法官司法事務分配小組)</font>
<table><tr><td> </td>
<td>
法官會議得組成法官司法事務分配小組或其他小組,研擬第二十四條第一項各款所列事項之意見,並提出法官會議議決。<br>
前項事務分配小組遇有第二十四條第三項但書情形時,亦得預擬事務分配方案,提出法官會議議決。<br>
前二項事務分配方案,應顧及審判業務之需要、承辦法官之專業、職務之穩定及負擔之公平。<br>
第一項小組由法官代表組成,任期一年;其人數及得否連任由法官會議議決。<br>
前項法官代表,除院長為當然代表外,其餘三分之一由院長指定,另三分之二依法官會議議決之方式產生。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十七條</font>
<font size=2>(法官之遞補方式)</font>
<table><tr><td> </td>
<td>
前條法官代表,因調職或其他事由無法執行職務時,依其產生之方式,分別遞補,任期接續原代表任期計算。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十八條</font>
<font size=2>(法官司法事務分配小組會議之主席及決議方式)</font>
<table><tr><td> </td>
<td>
法官司法事務分配小組會議,由院長或其指定之人擔任主席,其決議以法官代表三分之二以上出席,出席人數二分之一以上同意行之。可否同數時,取決於主席。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條</font>
<font size=2>(法官會議之議事規則)</font>
<table><tr><td> </td>
<td>
法官會議之議事規則、決議及建議之執行、司法事務分配小組或其他小組之組成及運作等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第五章 法官評鑑</font>
<table><tr><td> </td><td><font color=8000ff>第三十條</font>
<font size=2>(法官個案評鑑之機制)</font>
<table><tr><td> </td>
<td>
司法院設法官評鑑委員會,掌理法官之評鑑。<br>
法官有下列各款情事之一者,應付個案評鑑:<br>
一、裁判確定後或自第一審繫屬日起已逾六年未能裁判確定之案件,有事實足認因故意或重大過失,致審判案件有明顯重大違誤,而嚴重侵害人民權益者。<br>
二、有第二十一條第一項第二款情事,情節重大。<br>
三、違反第十五條第二項、第三項規定。<br>
四、違反第十五條第一項、第十六條或第十八條規定,情節重大。<br>
五、嚴重違反辦案程序規定或職務規定,情節重大。<br>
六、無正當理由遲延案件之進行,致影響當事人權益,情節重大。<br>
七、違反法官倫理規範,情節重大。<br>
適用法律之見解,不得據為法官個案評鑑之事由。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十一條</font>
<font size=2>(法官評核之標準)</font>
<table><tr><td> </td>
<td>
司法院應每三年至少一次完成法官全面評核,其結果不予公開,評核結果作為法官職務評定之參考。<br>
司法院因前項評核結果發現法官有應付個案評鑑之事由者,應依第三十五條規定移付法官評鑑委員會進行個案評鑑。<br>
第一項評核之標準、項目及方式,由司法院依法官評鑑委員會意見定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十二條</font>
<font size=2>(各級法院團體績效之評比)</font>
<table><tr><td> </td>
<td>
司法院應每三年一次進行各級法院之團體績效評比,其結果應公開,並作為各級法院首長職務評定之參考。<br>
前項評比之標準、項目及方式,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十三條</font>
<font size=2>(法官評鑑委員之組織及迴避)</font>
<table><tr><td> </td>
<td>
法官評鑑委員會由法官三人、檢察官一人、律師三人、學者及社會公正人士四人組成。<br>
評鑑委員之迴避,準用行政訴訟法有關法官迴避之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十四條</font>
<font size=2>(法官評鑑委員之遴聘)</font>
<table><tr><td> </td>
<td>
法官評鑑委員任期為二年,得連任一次,其產生方式如下:<br>
一、法官代表由全體法官票選之。<br>
二、檢察官代表由全體檢察官票選之。<br>
三、律師代表,由各地律師公會各別推舉一至三人,由律師公會全國聯合會辦理全國性律師票選。<br>
四、學者及社會公正人士,由法務部、律師公會全國聯合會各推舉檢察官、律師以外之人四人,送司法院院長遴聘。<br>
有下列情形之一者,不得擔任前項第三、四款委員:<br>
一、公務人員。但公立各級學校及學術研究機構之教學、研究人員不在此限。<br>
二、政黨黨務工作人員。<br>
評鑑委員之資格條件、票選程序及委員出缺之遞補等有關事項之辦法,由司法院、行政院、律師公會全國聯合會分別定之,並各自辦理票選。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十五條</font>
<font size=2>(評鑑事件之來源及審查)</font>
<table><tr><td> </td>
<td>
法官有第三十條第二項各款情事之一,下列人員或機關、團體認為有個案評鑑之必要時,得請求法官評鑑委員會進行個案評鑑:<br>
一、受評鑑法官所屬機關法官三人以上。<br>
二、受評鑑法官所屬機關、上級機關或所屬法院對應設置之檢察署。<br>
三、受評鑑法官所屬法院管轄區域之律師公會或全國性律師公會。<br>
四、財團法人或以公益為目的之社團法人,經許可設立三年以上,財團法人登記財產總額新臺幣一千萬元以上或社團法人之社員人數二百人以上,且對健全司法具有成效,經目的事業主管機關許可得請求個案評鑑者。<br>
前項請求,應以書狀敘明與第三十條第二項各款所列情事有關之具體事實,並檢附相關資料。<br>
當事人、犯罪被害人得以書面陳請第一項機關、團體請求法官評鑑委員會進行個案評鑑。<br>
就第三十條第二項各款情事,法官認有澄清之必要時,得陳請所屬機關請求法官評鑑委員會個案評鑑之。<br>
個案評鑑事件之請求,應先依第三十七條規定審查有無應不付評鑑之情事,不得逕予調查或通知受評鑑法官陳述意見。<br>
第一項第四款之許可辦法,由司法院會同行政院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十六條</font>
<font size=2>(評鑑事件之請求期限)</font>
<table><tr><td> </td>
<td>
法官個案評鑑之請求,應於二年內為之。<br>
前項期間,無涉法官承辦個案者,自受評鑑事實終了之日起算,牽涉法官承辦個案者,自該案件辦理終結之日起算。但第三十條第二項第一款情形自裁判確定或滿六年時起算。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十七條</font>
<font size=2>(不付評鑑決議之情形)</font>
<table><tr><td> </td>
<td>
個案評鑑事件之請求,有下列情形之一者,法官評鑑委員會應為不付評鑑之決議:<br>
一、個案評鑑事件之請求,不合第三十五條之規定。<br>
二、個案評鑑事件之請求,逾前條所定期間。<br>
三、對不屬法官個案評鑑之事項,請求評鑑。<br>
四、就法律見解請求評鑑。<br>
五、已為職務法庭判決、監察院彈劾、或經法官評鑑委員會決議之事件,重行請求評鑑。<br>
六、受評鑑法官死亡。<br>
七、請求顯無理由。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十八條</font>
<font size=2>(請求不成立決議之情形)</font>
<table><tr><td> </td>
<td>
法官評鑑委員會認法官無第三十條第二項各款所列情事者,應為請求不成立之決議。必要時,並得移請職務監督權人依第二十一條規定為適當之處分。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十九條</font>
<font size=2>(區別評鑑請求決議之懲處)</font>
<table><tr><td> </td>
<td>
法官評鑑委員會認法官有第三十條第二項各款所列情事之一,得為下列決議:<br>
一、有懲戒之必要者,報由司法院移送監察院審查,並得建議懲戒之種類。<br>
二、無懲戒之必要者,報由司法院交付司法院人事審議委員會審議,並得建議處分之種類。<br>
前項評鑑決議作成前,應予受評鑑法官陳述意見之機會。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十條</font>
<font size=2>(評鑑請求決議之移送及處置)</font>
<table><tr><td> </td>
<td>
司法院應依法官評鑑委員會所為前條決議,檢具受個案評鑑法官相關資料,分別移送監察院審查或交付司法院人事審議委員會審議。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十一條</font>
<font size=2>(評鑑委員會之決議方式)</font>
<table><tr><td> </td>
<td>
法官評鑑委員會會議之決議,除本法另有規定外,以委員總人數二分之一以上出席,出席委員過半數之同意行之。<br>
法官評鑑委員會為第三十七條之決議,得以三名委員之審查及該三名委員一致之同意行之。該三名委員之組成由委員會決定之。<br>
法官評鑑委員會為第三十八條、第三十九條之決議,應以委員總人數三分之二以上出席,出席委員過半數之同意行之。<br>
第一項、第三項委員總人數,應扣除未依規定推派、票選或任期中解職、死亡致出缺之人數,但不得低於八人。<br>
法官評鑑委員會得為必要之調查,或通知關係人到會說明;調查所得資料,除法令另有規定外,不得提供其他機關、團體、個人或供人閱覽、抄錄。<br>
個案評鑑事件牽涉法官承辦個案尚未終結者,於該法官辦理終結其案件前,停止進行評鑑程序。<br>
司法院得依法聘用適當人員協助辦理評鑑請求之審查及評鑑事件之調查,並負責其他與評鑑有關之事務。<br>
法官評鑑委員會行使職權,應兼顧評鑑功能之發揮及受評鑑法官程序上應有之保障,且不得影響審判獨立。<br>
前項職權之行使,非經受評鑑法官之同意或法官評鑑委員會之決議,不得公開。<br>
法官評鑑委員會組織規程及評鑑實施辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第六章 法官之保障</font>
<table><tr><td> </td><td><font color=8000ff>第四十二條</font>
<font size=2>(法官免職之限制)</font>
<table><tr><td> </td>
<td>
實任法官非有下列情事之一,不得免職:<br>
一、因犯內亂、外患、故意瀆職罪,受判刑確定者。<br>
二、故意犯前款以外之罪,受有期徒刑以上刑之宣告確定,有損法官尊嚴者。但宣告緩刑者,不在此限。<br>
三、受監護之宣告者。<br>
實任法官受監護或輔助之宣告者,自宣告之日起,得依相關規定辦理退休或資遣。<br>
司法院大法官於任職中,有第一項各款情事之一時,經司法院大法官現有總額三分之二以上之出席,出席人數三分之二以上之同意,由司法院呈請總統免職。<br>
候補、試署法官除本法另有規定外,準用第一項、第二項規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十三條</font>
<font size=2>(法官停職之限制)</font>
<table><tr><td> </td>
<td>
實任法官,除法律別有規定外,非有下列各款情事之一,不得停止其職務:<br>
一、依公務人員任用法第二十八條第一項第一款至第八款不得任用為公務人員情事者。<br>
二、經教學醫院證明有精神疾病或精神狀態違常,致不能勝任職務者。<br>
三、有第六條第五款之情事者。<br>
四、依刑事訴訟程序被通緝或羈押者。<br>
五、依刑事確定判決,受徒刑或拘役之宣告,未依規定易科罰金,或受罰金之宣告,依規定易服勞役,在執行中者。<br>
六、所涉刑事、懲戒情節重大者。<br>
七、經中央衛生主管機關評鑑合格之醫院證明身心障礙或其他事由致不能勝任職務者。<br>
經依法停職之實任法官於停職事由消滅後三個月內,得聲請復職,並依公務人員保障法及公務員懲戒法復職之規定辦理。<br>
實任法官因第一項第一款至第六款事由停止其職務者,其停止職務期間及復職後之給俸,準用公務人員俸給法之規定;因第一項第七款事由停止其職務者,支給第七十一條第一項所定本俸及加給各三分之一。但期限最長不得逾三年。<br>
司法院大法官有第一項各款情事之一者,經司法院大法官現有總額三分之二以上之出席及出席人數過半數之同意,由司法院呈請總統停止其職務;因第一項第七款情事停止其職務者,於停止職務期間,支給第七十二條所定月俸及加給各三分之一。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十四條</font>
<font size=2>(法官轉任之限制)</font>
<table><tr><td> </td>
<td>
實任法官除法律規定或經本人同意外,不得將其轉任法官以外職務。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十五條</font>
<font size=2>(法官地區調動之限制)</font>
<table><tr><td> </td>
<td>
實任法官除經本人同意外,非有下列原因之一,不得為地區調動:<br>
一、因法院設立、裁併或員額增減者。<br>
二、因審判事務量之需要,急需人員補充者。<br>
三、依法停止職務之原因消滅而復職者。<br>
四、有相當原因足資釋明不適合繼續在原地區任職者。<br>
五、因法院業務需要,無適當人員志願前往,調派同級法院法官至該法院任職或辦理審判事務者,其期間不得逾二年,期滿回任原法院。<br>
前項第五款之法官調派辦法,由司法院定之;其調派期間之津貼補助辦法,由司法院會同行政院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十六條</font>
<font size=2>(法官審級調動之限制)</font>
<table><tr><td> </td>
<td>
實任法官除經本人同意外,非有下列原因之一,不得為審級調動:<br>
一、因法院設立、裁併或編制員額增減而調派至直接下級審法院。<br>
二、於高等法院繼續服務二年以上,為堅實事實審功能,調派至直接下級審法院。<br>
三、依法停止職務之原因消滅而復職,顯然不適合在原審級法院任職者。<br>
四、有相當原因足資釋明不適合繼續在原審級法院任職者。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第七章 職務法庭</font>
<table><tr><td> </td><td><font color=8000ff>第四十七條</font>
<font size=2>(職務法庭之設置)</font>
<table><tr><td> </td>
<td>
司法院設職務法庭,審理下列事項:<br>
一、法官懲戒之事項。<br>
二、法官不服撤銷任用資格、免職、停止職務、解職、轉任法官以外職務或調動之事項。<br>
三、職務監督影響法官審判獨立之事項。<br>
四、其他依法律應由職務法庭管轄之事項。<br>
對職務法庭之裁判,不得提起行政訴訟。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十八條</font>
<font size=2>(職務法庭之組織)</font>
<table><tr><td> </td>
<td>
職務法庭之審理及裁判,以公務員懲戒委員會委員長為審判長,與法官四人為陪席法官組成合議庭行之。<br>
前項陪席法官至少一人但不得全部與當事人法官為同一審級;於審理司法院大法官懲戒案件時,應全部以最高法院、最高行政法院法官或公務員懲戒委員會委員充之。<br>
第一項法官,須具備實任法官十年以上之資歷,由司法院法官遴選委員會遴定十二人,每審級各四人,提請司法院院長任命,任期三年。其人數並得視業務需要增加之。<br>
各法院院長不得為職務法庭之成員。<br>
職務法庭之事務分配及代理次序,由全體職務法庭法官決定之。<br>
職務法庭法官遴選規則由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十九條</font>
<font size=2>(法官之懲戒)</font>
<table><tr><td> </td>
<td>
法官有第三十條第二項各款所列情事之一,有懲戒之必要者,應受懲戒。<br>
適用法律之見解,不得據為法官懲戒之事由。<br>
法官應受懲戒之同一行為,不受二次懲戒。同一行為已經職務法庭為懲戒、不受懲戒或免議之判決確定者,其原懲處失其效力。<br>
法官應受懲戒之同一行為已受刑罰或行政罰之處罰者,仍得予以懲戒。其同一行為不受刑罰或行政罰之處罰者,亦同。但情節輕微,如予懲戒顯失公平者,無須再予懲戒。<br>
懲戒案件有下列情形之一者,應為免議之判決:<br>
一、同一行為,已受懲戒判決確定。<br>
二、受褫奪公權之宣告確定,認已無受懲戒之必要。<br>
三、已逾第五十二條規定之懲戒權行使期間。<br>
四、有前項但書之情形。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十條</font>
<font size=2>(法官懲戒之種類與淘汰)</font>
<table><tr><td> </td>
<td>
法官之懲戒如下:<br>
一、免除法官職務,並喪失公務人員任用資格。<br>
二、撤職:除撤其現職外,並於一定期間停止任用,其期間為一年以上五年以下。<br>
三、免除法官職務,轉任法官以外之其他職務。<br>
四、罰款:其數額為現職月俸給總額或任職時最後月俸給總額一個月以上一年以下。<br>
五、申誡。<br>
依應受懲戒之具體情事足認已不適任法官者,應予撤職以上之處分。<br>
受第一項第一款、第二款之懲戒處分者,不得充任律師,其已充任律師者,停止其執行職務;其中受第一項第二款、第三款之懲戒處分者,並不得回任法官職務。<br>
申誡,以書面為之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十一條</font>
<font size=2>(法官懲戒之程序)</font>
<table><tr><td> </td>
<td>
法官之懲戒,應由監察院彈劾後移送職務法庭審理。<br>
司法院認法官有應受懲戒之情事時,除依法官評鑑之規定辦理外,得逕行移送監察院審查。<br>
司法院依前項規定逕行移送監察院審查前,應予被付懲戒法官陳述意見之機會,並經司法院人事審議委員會決議。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十二條</font>
<font size=2>(法官懲戒行使期)</font>
<table><tr><td> </td>
<td>
法官應受懲戒行為,自行為終了之日起,至案件繫屬職務法庭之日止,已逾十年者,不得為免除法官職務,轉任法官以外之其他職務之懲戒;已逾五年者,不得為罰款或申誡之懲戒。但第三十條第二項第一款情形,自依本法得付個案評鑑之日起算。<br>
前項行為終了之日,指法官應受懲戒行為終結之日。但應受懲戒行為係不作為者,自法官所屬機關知悉之日起算。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十三條</font>
<font size=2>(自立救濟)</font>
<table><tr><td> </td>
<td>
法官不服司法院所為撤銷任用資格、免職、停止職務、解職、轉任法官以外職務或調動等職務處分,應於收受人事令翌日起三十日內,以書面附具理由向司法院提出異議。<br>
法官認職務監督影響審判獨立時,應於監督行為完成翌日起三十日內,以書面附具理由向職務監督權人所屬之機關提出異議。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十四條</font>
<font size=2>(機關受理異議之決議期限)</font>
<table><tr><td> </td>
<td>
前條所列機關應於受理異議之日起三十日內,作成決定。<br>
對於前條第一項之異議所作之決定,應依原決定程序為決議。<br>
法官不服前條所列機關對異議所作之決定,應於決定書送達翌日起三十日內,向職務法庭起訴。<br>
前條所列機關未於第一項期間內作成決定時,法官得逕向職務法庭起訴。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十五條</font>
<font size=2>(資遣或申請退休之禁止)</font>
<table><tr><td> </td>
<td>
法官經監察院移送懲戒者,除經職務法庭同意外,在判決前,不得資遣或申請退休。但於判決時已逾七十歲,且未受撤職以上之處分,並於收受判決之送達後六個月內申請退休者,計算其任職年資至滿七十歲之前一日,準用第七十八條第一項第一款至第三款規定給與退養金。<br>
職務法庭於受理前項移送後,應將移送書繕本送交被移送法官所屬法院及銓敘機關。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十六條</font>
<font size=2>(得為職務法庭案件當事人之規定)</font>
<table><tr><td> </td>
<td>
監察院、司法院、各法院或分院、法官得為第四十七條各款案件之當事人。<br>
職務法庭審理法官評鑑委員會報由司法院移送監察院彈劾之案件,應通知法官評鑑委員會派員到庭陳述意見。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十七條</font>
<font size=2>(秘密審理)</font>
<table><tr><td> </td>
<td>
職務法庭審理案件均不公開。但職務法庭認有公開之必要,或經被移送或提起訴訟之法官請求公開時,不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十八條</font>
<font size=2>(言詞辯論主義)</font>
<table><tr><td> </td>
<td>
職務法庭之審理,除法律另有規定外,應行言詞辯論。<br>
職務法庭審判長於必要時,得命受命法官先行準備程序,闡明起訴之事由。<br>
受命法官經審判長指定調查證據,以下列情形為限:<br>
一、有在證據所在地調查之必要者。<br>
二、依法應在法院以外之場所調查者。<br>
三、於言詞辯論期日調查,有致證據毀損、滅失或礙難使用之虞,或顯有其他困難者。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十九條</font>
<font size=2>(停止被付懲戒法官之職務)</font>
<table><tr><td> </td>
<td>
職務法庭審理法官懲戒案件,認為情節重大,有先行停止職務之必要者,得依聲請或依職權裁定先行停止被付懲戒法官之職務,並通知所屬法院院長。<br>
職務法庭為前項裁定前,應予被付懲戒法官陳述意見之機會。<br>
第一項之訴如經駁回,被停職法官得向司法院請求復職,其停止職務期間及復職後之給俸,準用公務人員俸給法之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十條</font>
<font size=2>(法官懲戒案件審理規則)</font>
<table><tr><td> </td>
<td>
職務法庭審理第四十七條第一項第一款法官懲戒案件審理規則,由司法院定之。<br>
職務法庭審理第四十七條第一項第二款、第三款及第四款法官職務案件之程序及裁判,除本法另有規定外,準用行政訴訟法之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十一條</font>
<font size=2>(職務案件再審之訴)</font>
<table><tr><td> </td>
<td>
職務法庭之判決,有下列各款情形之一者,當事人得提起再審之訴:<br>
一、適用法規顯有錯誤。<br>
二、依法律或裁定應迴避之法官參與審判。<br>
三、原判決所憑之證言、鑑定、通譯或證物,已證明係虛偽或偽造、變造。<br>
四、參與裁判之法官關於該訴訟違背職務,犯刑事上之罪已經證明,或關於該訴訟違背職務受懲戒處分,足以影響原判決。<br>
五、原判決就足以影響於判決之重要證物漏未斟酌。<br>
六、發現確實之新證據,足認應變更原判決。<br>
七、為判決基礎之民事或刑事判決及其他裁判或行政處分,依其後之確定裁判或行政處分已變更。<br>
八、確定終局判決所適用之法律或命令,經司法院大法官依當事人之聲請,解釋為牴觸憲法。<br>
第一項第三款及第四款情形之證明,以經判決確定,或其刑事訴訟不能開始或續行非因證據不足者為限,得提起再審之訴。<br>
再審之訴,於原判決執行完畢後,亦得提起之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十二條</font>
<font size=2>(再審之訴為原法院管轄)</font>
<table><tr><td> </td>
<td>
再審之訴專屬職務法庭管轄。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十三條</font>
<font size=2>(再審之訴期限)</font>
<table><tr><td> </td>
<td>
提起再審之訴,應於下列期間為之:<br>
一、以第六十一條第一項第一款、第二款、第五款為原因者,自判決書送達之翌日起三十日內。<br>
二、以第六十一條第一項第三款、第四款、第七款為原因者,自相關之裁判或處分確定之翌日起三十日內。<br>
三、以第六十一條第一項第六款為原因者,自發現新證據之翌日起三十日內。<br>
四、以第六十一條第一項第八款為原因者,自解釋公布之翌日起三十日內。<br>
為受懲戒法官之不利益提起再審之訴,於判決後,經過一年者不得為之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十四條</font>
<font size=2>(再審程序之裁判執行限制)</font>
<table><tr><td> </td>
<td>
提起再審之訴,無停止裁判執行之效力。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十五條</font>
<font size=2>(不合再審之訴之駁回)</font>
<table><tr><td> </td>
<td>
職務法庭認為再審之訴不合法者,應以裁定駁回之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十六條</font>
<font size=2>(無再審理由之駁回)</font>
<table><tr><td> </td>
<td>
職務法庭認為再審之訴顯無再審理由者,得不經言詞辯論,以判決駁回之。<br>
再審之訴雖有理由,職務法庭如認原判決為正當者,應以判決駁回之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十七條</font>
<font size=2>(再審之訴之辯論及裁判範圍)</font>
<table><tr><td> </td>
<td>
再審之訴之辯論及裁判,以聲明不服之部分為限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十八條</font>
<font size=2>(不得提起再審之訴規定)</font>
<table><tr><td> </td>
<td>
再審之訴,於職務法庭裁判前得撤回之。<br>
再審之訴,經撤回或裁判者,不得更以同一原因提起再審之訴。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十九條</font>
<font size=2>(裁判書之送達與執行)</font>
<table><tr><td> </td>
<td>
職務法庭於裁判後,應將裁判書送達法官所屬法院院長,院長於收受裁判書後應即執行之。但無須執行者不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十條</font>
<font size=2>(大法官之懲戒)</font>
<table><tr><td> </td>
<td>
司法院大法官之懲戒,得經司法院大法官現有總額三分之二以上之出席及出席人數三分之二以上之決議,由司法院移送監察院審查。<br>
監察院審查後認應彈劾者,移送職務法庭審理。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第八章 法官之給與</font>
<table><tr><td> </td><td><font color=8000ff>第七十一條</font>
<font size=2>(法官之俸給)</font>
<table><tr><td> </td>
<td>
法官不列官等、職等。其俸給,分本俸、專業加給、職務加給及地域加給,均以月計之。<br>
前項本俸之級數及點數,依法官俸表之規定。<br>
本俸按法官俸表俸點依公務人員俸表相同俸點折算俸額標準折算俸額。<br>
法官之俸級區分如下:<br>
一、實任法官本俸分二十級,從第一級至第二十級,並自第二十級起敘。<br>
二、試署法官本俸分九級,從第十四級至第二十二級,並自第二十二級起敘。依本法第五條第二項第七款轉任法官者,準用現職法官改任換敘辦法敘薪。<br>
三、候補法官本俸分六級,從第十九級至第二十四級,並自第二十四級起敘。<br>
律師、教授、副教授、助理教授及中央研究院研究員、副研究員、助研究員轉任法官者,依其執業、任教或服務年資六年、八年、十年、十四年及十八年以上者,分別自第二十二級、二十一級、二十級、十七級及第十五級起敘。<br>
法官各種加給之給與條件、適用對象及支給數額,依行政院所定各種加給表規定辦理。但全國公務人員各種加給年度通案調整時,以具法官身分者為限,其各種加給應按各該加給通案調幅調整之。<br>
法官生活津貼及年終工作獎金等其他給與,準用公務人員相關法令規定。<br>
法官曾任公務年資,如與現任職務等級相當、性質相近且服務成績優良者,得按年核計加級至所任職務最高俸級為止。<br>
前項所稱等級相當、性質相近、服務成績優良年資提敘俸級之認定,其辦法由考試院會同司法院、行政院定之。<br>
<a href=http://lis.ly.gov.tw/lgcgi/lylawatt?cfcbcac9cacecfcfcfc9cecbcfce target=pdf ><font size=2>附表:法官俸表</font></a><br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十二條</font>
<font size=2>(司法院長、副院長、大法官、特任庭長之俸給支給)</font>
<table><tr><td> </td>
<td>
司法院院長、副院長、大法官、最高法院院長、最高行政法院院長及公務員懲戒委員會委員長之俸給,按下列標準支給之:<br>
一、司法院院長準用政務人員院長級標準支給。<br>
二、司法院副院長準用政務人員副院長級標準支給。<br>
三、司法院大法官、最高法院院長、最高行政法院院長及公務員懲戒委員會委員長準用政務人員部長級標準支給。<br>
前項人員並給與前條第一項規定之專業加給。<br>
司法院秘書長由法官、檢察官轉任者,其俸給依第一項第三款及第二項標準支給。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十三條</font>
<font size=2>(法官之職務評定)</font>
<table><tr><td> </td>
<td>
法官現辦事務所在之法院院長或機關首長應於每年年終,辦理法官之職務評定,報送司法院核定。法院院長評定時,應先徵詢該法院相關庭長、法官之意見。<br>
法官職務評定項目包括學識能力、品德操守、敬業精神及裁判品質;其評定及救濟程序等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十四條</font>
<font size=2>(法官考核之獎勵)</font>
<table><tr><td> </td>
<td>
法官任職至年終滿一年,經職務評定為良好,且未受有刑事處罰、懲戒處分者,晉一級,並給與一個月俸給總額之獎金;已達所敘職務最高俸級者,給與二個月俸給總額之獎金。但任職不滿一年已達六個月,未受有刑事處罰、懲戒處分者,獎金折半發給。<br>
法官連續四年職務評定為良好,且未受有刑事處罰、懲戒處分者,除給與前項之獎金外,晉二級。<br>
法官及司法行政人員於年度中相互轉(回)任時,其轉(回)任當年之年資,得合併計算參加年終考績或職務評定。<br>
第一項及第二項有關晉級之規定於候補、試署服務成績審查不及格者不適用之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十五條</font>
<font size=2>(法官改任及轉任之規定)</font>
<table><tr><td> </td>
<td>
現職法官之改任換敘及行政、教育、研究人員與法官之轉任提敘辦法,由考試院會同司法院、行政院定之。<br>
依法官俸表所支俸給如較原支俸給為低者,補足其差額,並隨同待遇調整而併銷。<br>
前項所稱待遇調整,指全國軍公教員工待遇之調整、職務調動(升)、職務評定晉級所致之待遇調整。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十六條</font>
<font size=2>(實任法官轉任司法行政職務之保障與限制)</font>
<table><tr><td> </td>
<td>
實任法官轉任司法行政人員者,視同法官,其年資及待遇,依相當職務之法官規定列計,並得不受公務人員任用法,有關晉升簡任官等訓練合格之限制;轉任期間三年,得延長一次;其達司法行政人員命令退休年齡三個月前,應予回任法官。<br>
前項任期於該實任法官有兼任各法院院長情事者,二者任期合計以六年為限。但司法院認確有必要者,得延任之,延任期間不得逾三年。<br>
第十一條第一項及前二項所定任期,於免兼或回任法官本職逾二年時,重行起算。<br>
曾任實任法官之第七十二條人員回任法官者,不受公務人員任用法第二十七條之限制。<br>
第一項轉任、回任、換敘辦法由考試院會同司法院、行政院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十七條</font>
<font size=2>(法官之優遇)</font>
<table><tr><td> </td>
<td>
實任法官任職十五年以上年滿七十歲者,應停止辦理審判案件,得從事研究、調解或其他司法行政工作;滿六十五歲者,得申請調任地方法院辦理簡易案件。<br>
實任法官任職十五年以上年滿六十五歲,經中央衛生主管機關評鑑合格之醫院證明身體衰弱,難以勝任職務者,得申請停止辦理審判案件。<br>
前二項停止辦理審判案件法官,仍為現職法官,但不計入該機關所定員額之內,支領俸給總額之三分之二,並得依公務人員退休法及公務人員撫卹法辦理自願退休及撫卹。<br>
第一項、第二項停止辦理審判案件之申請程序、從事研究之方法項目、業務種類等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十八條</font>
<font size=2>(法官之自願退休)</font>
<table><tr><td> </td>
<td>
法官自願退休時,除依公務人員退休法規定給與一次退休金總額或月退休金外,其為實任法官者,另按下列標準給與一次退養金或月退養金:<br>
一、任職法官年資十年以上十五年未滿者,給與百分之二十,十五年以上者,給與百分之三十。<br>
二、五十五歲以上未滿六十歲者,任職法官年資十五年以上二十年未滿者,給與百分之四十,二十年以上者,給與百分之五十。<br>
三、六十歲以上未滿七十歲,且任職法官年資滿二十年者,給與百分之六十,其每逾一年之年資,加發百分之八,最高給與百分之一百四十。滿二十年以上之年資,尾數不滿六個月者,給與百分之四,滿六個月以上者,以一年計。但本法施行前,年滿六十五歲者,於年滿七十歲前辦理自願退休時,給與百分之一百四十。<br>
四、七十歲以上者,給與百分之五。<br>
依前項給與標準支領之月退養金與依法支領之月退休金、公保養老給付之每月優惠存款利息合計,超過同俸級現職法官每月俸給之百分之九十八者,減少其月退養金給與數額,使每月所得,不超過同俸級現職法官每月俸給之百分之九十八。<br>
第二項退養金給與辦法由司法院會同考試院、行政院定之。<br>
司法院大法官、最高法院院長、最高行政法院院長及公務員懲戒委員會委員長退職時,除準用政務人員退職撫卹條例規定給與離職儲金外,並依前三項規定給與退養金。但非由實任法官、檢察官轉任者,不適用退養金之規定。<br>
司法院秘書長由法官、檢察官轉任者,準用前項規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十九條</font>
<font size=2>(法官之資遣)</font>
<table><tr><td> </td>
<td>
法官經中央衛生主管機關評鑑合格之醫院證明身體衰弱,不堪工作者,得準用公務人員有關資遣之規定申請資遣。<br>
法官經中央衛生主管機關評鑑合格之醫院證明身心障礙難以回復或依第四十三條第一項第七款之規定停止職務超過三年者,得準用公務人員有關資遣之規定資遣之。<br>
前二項資遣人員除依法給與資遣費外,並比照前條之規定,發給一次退養金。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十條</font>
<font size=2>(法官之撫卹)</font>
<table><tr><td> </td>
<td>
法官之撫卹,適用公務人員撫卹法之規定。<br>
司法院大法官、最高法院院長、最高行政法院院長及公務員懲戒委員會委員長,其在職死亡之撫卹,準用政務人員退職撫卹條例之規定。<br>
司法院秘書長由法官、檢察官轉任者,準用前項規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第九章 法官之考察、進修及請假</font>
<table><tr><td> </td><td><font color=8000ff>第八十一條</font>
<font size=2>(法官之在職進修)</font>
<table><tr><td> </td>
<td>
法官每年度應從事在職進修。<br>
司法院應逐年編列預算,遴選各級法院法官,分派國內外從事司法考察或進修。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十二條</font>
<font size=2>(法官進修之申請規則)</font>
<table><tr><td> </td>
<td>
實任法官每連續服務滿七年者,得提出具體研究計畫,向司法院申請自行進修一年,進修期間支領全額薪給,期滿六個月內應提出研究報告送請司法院審核。<br>
前項自行進修之人數,以不超過當年度各該機關法官人數百分之七為限。但人數不足一人時,以一人計。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十三條</font>
<font size=2>(法官留職停薪進修及年限)</font>
<table><tr><td> </td>
<td>
實任法官於任職期間,得向司法院提出入學許可證明文件,經同意後,聲請留職停薪。<br>
前項留職停薪之期間,除經司法院准許外,以三年為限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十四條</font>
<font size=2>(法官考察及進修規則之訂定)</font>
<table><tr><td> </td>
<td>
前三條之考察及進修,其期間、資格條件、遴選程序、進修人員比例及研究報告之著作財產權歸屬等有關事項之辦法,由司法院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十五條</font>
<font size=2>(法官之請假規則)</font>
<table><tr><td> </td>
<td>
法官之請假,適用公務人員有關請假之規定。<br>
除本法另有規定外,法官之留職停薪,準用公務人員有關留職停薪之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第十章 檢察官</font>
<table><tr><td> </td><td><font color=8000ff>第八十六條</font>
<font size=2>(檢察官之定義)</font>
<table><tr><td> </td>
<td>
檢察官代表國家依法追訴處罰犯罪,為維護社會秩序之公益代表人。檢察官須超出黨派以外,維護憲法及法律保護之公共利益,公正超然、勤慎執行檢察職務。<br>
本法所稱檢察官,指下列各款人員:<br>
一、最高法院檢察署檢察總長、主任檢察官、檢察官。<br>
二、高等法院以下各級法院及其分院檢察署檢察長、主任檢察官、檢察官。<br>
前項第二款所稱之檢察官,除有特別規定外,包括試署檢察官、候補檢察官。<br>
本法所稱實任檢察官,係指試署服務成績審查及格,予以實授者。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十七條</font>
<font size=2>(檢察官之任用資格)</font>
<table><tr><td> </td>
<td>
地方法院或其分院檢察署檢察官,應就具有下列資格之一者任用之:<br>
一、經法官、檢察官考試及格。<br>
二、曾任法官。<br>
三、曾任檢察官。<br>
四、曾任公設辯護人六年以上。<br>
五、曾實際執行律師職務六年以上,成績優良,具擬任職務任用資格。<br>
六、公立或經立案之私立大學、獨立學院法律學系或其研究所畢業,曾任教育部審定合格之大學或獨立學院專任教授、副教授或助理教授合計六年以上,講授主要法律科目二年以上,有法律專門著作,具擬任職務任用資格。<br>
高等法院或其分院檢察署檢察官,應就具有下列資格之一者任用之:<br>
一、曾任地方法院或其分院實任法官、地方法院或其分院檢察署實任檢察官二年以上,成績優良。<br>
二、曾實際執行律師職務十四年以上,成績優良,具擬任職務任用資格。<br>
最高法院檢察署檢察官,應就具有下列資格之一者任用之:<br>
一、曾任高等法院或其分院實任法官、高等法院或其分院檢察署實任檢察官四年以上,成績優良。<br>
二、曾任高等法院或其分院實任法官、高等法院或其分院檢察署實任檢察官,並任地方法院或其分院兼任院長之法官、地方法院或其分院檢察署檢察長合計四年以上,成績優良。<br>
三、公立或經立案之私立大學、獨立學院法律學系或其研究所畢業,曾任教育部審定合格之大學或獨立學院專任教授,講授主要法律科目,有法律專門著作,並曾任高等法院或其分院法官、高等法院或其分院檢察署檢察官。<br>
第一項第六款、前項第三款所稱主要法律科目,指憲法、民法、刑法、國際私法、商事法、行政法、民事訴訟法、刑事訴訟法、行政訴訟法、強制執行法、破產法及其他經考試院指定為主要法律科目者。<br>
未具擬任職務任用資格之律師、教授、副教授及助理教授,其擬任職務任用資格取得之考試,得採筆試、口試及審查著作發明、審查知能有關學歷、經歷證明之考試方式行之,其考試辦法由考試院定之。<br>
經依前項通過擬任職務任用資格考試及格者,僅取得參加由考試院委託法務部依第八十八條辦理之檢察官遴選之資格。<br>
法務部為辦理前項檢察官遴選,其遴選標準、遴選程序、被遴選人員年齡之限制及其他應遵行事項之辦法,由行政院會同考試院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十八條</font>
<font size=2>(初任檢察官至取得實任檢察官之年限及審核程序)</font>
<table><tr><td> </td>
<td>
依前條第一項第一款之規定,任用為檢察官者,為候補檢察官,候補期間五年,候補期滿審查及格者,予以試署,試署期間一年。<br>
具前條第一項第四款至第六款資格經遴選者,為試署檢察官,試署期間二年。<br>
具前條第二項第二款資格經遴選者,為試署檢察官,試署期間一年。<br>
曾任候補、試署、實任法官或檢察官經遴選者,為候補、試署、實任檢察官。<br>
對於候補檢察官、試署檢察官,應考核其服務成績;候補、試署期滿時,應陳報法務部送請檢察官人事審議委員會審查。審查及格者,予以試署、實授;不及格者,應於二年內再予考核,報請審查,仍不及格時,停止其候補、試署並予以解職。<br>
前項服務成績項目包括學識能力、敬業精神、辦案品質、品德操守及身心健康情形。<br>
檢察官人事審議委員會為服務成績之審查時,除法官、檢察官考試及格任用者外,應徵詢檢察官遴選委員會意見;為不及格之決定前,應通知受審查之候補、試署檢察官陳述意見。<br>
法務部設檢察官遴選委員會,掌理檢察官之遴選;已具擬任職務任用資格之檢察官之遴選,其程序、檢察官年齡限制等有關事項之辦法,由法務部定之。<br>
經遴選為檢察官者,應經研習;其研習期間、期間縮短或免除、實施方式、津貼、費用、請假、考核、獎懲、研習資格之保留或廢止等有關事項之辦法,由法務部定之。<br>
候補、試署檢察官,於候補、試署期間辦理之事務、服務成績考核及再予考核等有關事項之辦法,由法務部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十九條</font>
<font size=2>(檢察官準用本法之部分規定)</font>
<table><tr><td> </td>
<td>
本法第一條第二項、第三項、第六條、第十二條、第十三條第二項、第十五條、第十六條第一款、第二款、第四款、第五款、第十七條、第十八條、第四十二條第一項、第二項、第四項、第四十三條第一項至第三項、第四十四條至第四十六條、第四十九條、第五十條、第七十一條、第七十三條至第七十五條、第七十六條第一項、第四項、第五項、第七十七條、第七十八條第一項至第三項、第七十九條、第八十條第一項、第五章、第九章有關法官之規定,於檢察官準用之;其有關司法院、司法院司法人員研習所及審判機關之規定,於法務部、法務部司法官訓練所及檢察機關準用之。<br>
高等法院以下各級法院及其分院檢察署檢察長、主任檢察官之職期調任辦法,由法務部定之。<br>
檢察官評鑑委員會由檢察官三人、法官一人、律師三人、學者及社會公正人士四人組成。<br>
檢察官有下列各款情事之一者,應付個案評鑑:<br>
一、裁判確定後或自第一審繫屬日起已逾六年未能裁判確定之案件、不起訴處分或緩起訴處分確定之案件,有事實足認因故意或重大過失,致有明顯重大違誤,而嚴重侵害人民權益者。<br>
二、有第九十五條第二款情事,情節重大。<br>
三、違反第十五條第二項、第三項規定。<br>
四、違反第十五條第一項、第十六條或第十八條規定,情節重大。<br>
五、嚴重違反偵查不公開等辦案程序規定或職務規定,情節重大。<br>
六、無正當理由遲延案件之進行,致影響當事人權益,情節重大。<br>
七、違反檢察官倫理規範,情節重大。<br>
適用法律之見解,不得據為檢察官個案評鑑之事由。<br>
第四項第七款檢察官倫理規範,由法務部定之。<br>
檢察官有第四項各款所列情事之一,有懲戒之必要者,應受懲戒。<br>
檢察官之懲戒,由司法院職務法庭審理之。其移送及審理程序準用法官之懲戒程序。<br>
前項職務法庭之陪席法官,至少一人應與當事人檢察官為同一審級。<br>
法務部部長由法官、檢察官轉任者及最高法院檢察署檢察總長,其俸給準用第七十二條第一項第三款及第二項標準支給。法務部政務次長由法官、檢察官轉任者,其俸給準用政務人員次長級標準支給,並給與第七十一條第一項規定之專業加給。<br>
法務部部長、政務次長由法官、檢察官轉任者退職時,準用第七十八條第四項規定辦理。最高法院檢察署檢察總長退職時,亦同。<br>
最高法院檢察署檢察總長在職死亡之撫卹,準用第八十條第二項之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十條</font>
<font size=2>(檢察官人事審議委員會之設置及執掌)</font>
<table><tr><td> </td>
<td>
法務部設檢察官人事審議委員會,審議高等法院以下各級法院及其分院檢察署主任檢察官、檢察官之任免,轉任、停止職務、解職、陞遷、考核及獎懲事項。<br>
前項審議之決議,應報請法務部部長核定後公告之。<br>
第一項委員會之設置及審議規則,由法務部定之。<br>
法務部部長遴任檢察長前,檢察官人事審議委員會應提出職缺二倍人選,由法務部部長圈選之。檢察長之遷調應送檢察官人事審議委員會徵詢意見。<br>
檢察官人事審議委員會置委員十七人,由法務部部長指派代表四人、檢察總長及其指派之代表三人與全體檢察官所選出之代表九人組成之,由法務部部長指派具法官、檢察官身分之次長為主任委員。<br>
前項選任委員之任期,均為一年,連選得連任一次。<br>
全體檢察官代表,以全國為單一選區,以秘密、無記名及單記直接選舉產生,每一檢察署以一名代表為限。<br>
檢察官人事審議委員會之組成方式、審議對象、程序、決議方式及相關事項之審議規則,由法務部徵詢檢察官人事審議委員會後定之。但審議規則涉及檢察官任免、考績、級俸、陞遷及褒獎之事項者,由行政院會同考試院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十一條</font>
<font size=2>(檢察官會議之設置職權)</font>
<table><tr><td> </td>
<td>
各級法院及其分院檢察署設檢察官會議,由該署全體實際辦案之檢察官組成。<br>
檢察官會議之職權如下:<br>
一、年度檢察事務分配、代理順序及分案辦法之建議事項。<br>
二、檢察官考核、監督之建議事項。<br>
三、第九十五條所定對檢察官為監督處分之建議事項。<br>
四、統一法令適用及起訴標準之建議事項。<br>
五、其他與檢察事務有關之事項之建議事項。<br>
檢察總長、檢察長對於檢察官會議之決議有意見時,得交檢察官會議復議或以書面載明理由附於檢察官會議紀錄後,變更之。<br>
檢察官會議實施辦法,由法務部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十二條</font>
<font size=2>(書面指揮制度之建立)</font>
<table><tr><td> </td>
<td>
檢察官對法院組織法第六十三條第一項、第二項指揮監督長官之命令,除有違法之情事外,應服從之。<br>
前項指揮監督命令涉及強制處分權之行使、犯罪事實之認定或法律之適用者,其命令應以書面附理由為之。檢察官不同意該書面命令時,得以書面敘明理由,請求檢察總長或檢察長行使法院組織法第六十四條之權限,檢察總長或檢察長如未變更原命令者,應即依第九十三條規定處理。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十三條</font>
<font size=2>(明定檢察首長行使職務承繼權及職務移轉權之規定)</font>
<table><tr><td> </td>
<td>
檢察總長、檢察長於有下列各款情形之一者,得依法院組織法第六十四條親自處理其所指揮監督之檢察官之事務,並得將該事務移轉於其所指揮監督之其他檢察官處理:<br>
一、為求法律適用之妥適或統一追訴標準,認有必要時。<br>
二、有事實足認檢察官執行職務違背法令、顯有不當或有偏頗之虞時。<br>
三、檢察官不同意前條第二項之書面命令,經以書面陳述意見後,指揮監督長官維持原命令,其仍不遵從。<br>
四、特殊複雜或專業之案件,原檢察官無法勝任,認有移轉予其他檢察官處理之必要時。<br>
前項情形,檢察總長、檢察長之命令應以書面附理由為之。<br>
前二項指揮監督長官之命令,檢察官應服從之,但得以書面陳述不同意見。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十四條</font>
<font size=2>(各級法院及其分院檢察署行政監督權之行使範圍)</font>
<table><tr><td> </td>
<td>
各級法院及其分院檢察署行政之監督,依下列規定:<br>
一、法務部部長監督各級法院及分院檢察署。<br>
二、最高法院檢察署檢察總長監督該檢察署。<br>
三、高等法院檢察署檢察長監督該檢察署及其分院檢察署與所屬地方法院及其分院檢察署。<br>
四、高等法院檢察署智慧財產分署檢察長監督該分署。<br>
五、高等法院分院檢察署檢察長監督該檢察署與轄區內地方法院及其分院檢察署。<br>
六、地方法院檢察署檢察長監督該檢察署及其分院檢察署。<br>
七、地方法院分院檢察署檢察長監督該檢察署。<br>
前項行政監督權人為行使監督權,得就一般檢察行政事務頒布行政規則,督促全體檢察官注意辦理。但法務部部長不得就個別檢察案件對檢察總長、檢察長、主任檢察官、檢察官為具體之指揮、命令。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十五條</font>
<font size=2>(職務監督權人之處分權限及行使方式)</font>
<table><tr><td> </td>
<td>
前條所定監督權人,對於被監督之檢察官得為下列處分:<br>
一、關於職務上之事項,得發命令促其注意。<br>
二、有廢弛職務、侵越權限或行為不檢者,加以警告。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十六條</font>
<font size=2>(懲戒權與職務監督處分權行使之範疇)</font>
<table><tr><td> </td>
<td>
被監督之檢察官有前條第二款之情事,情節重大者,第九十四條所定監督權人得以所屬機關名義,請求檢察官評鑑委員會評鑑,或移由法務部準用第五十一條第二項、第三項規定辦理。<br>
被監督之檢察官有前條第二款之情事,經警告後一年內再犯,或經警告累計達三次者,視同情節重大。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第十一章 附則</font>
<table><tr><td> </td><td><font color=8000ff>第九十七條</font>
<font size=2>(實任法官、檢察官申請免試取得律師考試及格資格之時間與應繳驗之文件)</font>
<table><tr><td> </td>
<td>
實任法官、檢察官於自願退休或自願離職生效日前六個月起,得向考選部申請全部科目免試以取得律師考試及格資格。<br>
前項申請應繳驗司法院或法務部派令、銓敘部銓敘審定函及服務機關出具之服務紀錄良好證明等文件;服務紀錄良好證明之內容、標準及其他應遵循事項之辦法,由司法院、法務部分別定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十八條</font>
<font size=2>(本法施行前已取得法官、檢察官任用資格之規定)</font>
<table><tr><td> </td>
<td>
現職法官於本法施行前已任命為實任法官者,毋須經法官遴選程序,當然取得法官之任用資格,且其年資之計算不受影響,本法施行前已任命為實任檢察官者,亦同。<br>
法官、檢察官之年資相互併計。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十九條</font>
<font size=2>(本法施行前未取得法官、檢察官任用資格之規定)</font>
<table><tr><td> </td>
<td>
於本法施行前尚未取得實任法官、檢察官資格者,仍依施行前之相關法令取得其資格。但有關候補法官於候補期間僅得擔任陪席法官或受命法官之限制,仍依本法規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第一百條</font>
<font size=2>(本法施行前已優遇之法官、檢察官權益適用規定)</font>
<table><tr><td> </td>
<td>
本法施行前已依司法人員人事條例第四十條第一項或第二項停止辦理案件之實任法官、檢察官,支領現職法官、檢察官之俸給,不適用第七十七條第三項之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第一百零一條</font>
<font size=2>(與本法牴觸之不適用情形)</font>
<table><tr><td> </td>
<td>
本法施行後,現行法律中有關法官、檢察官之相關規定,與本法牴觸者,不適用之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第一百零二條</font>
<font size=2>(施行細則之訂定)</font>
<table><tr><td> </td>
<td>
本法施行細則由司法院會同行政院、考試院定之。<br>
律師公會全國聯合會依本法授權訂定之辦法,其訂定、修正及廢止應經主管機關備查,並即送立法院。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第一百零三條</font>
<font size=2>(施行日)</font>
<table><tr><td> </td>
<td>
本法除第五章法官評鑑自公布後半年施行、第七十八條自公布後三年六個月施行外,自公布後一年施行。<br>
</td>
</table>
</table>
</table>
<hr border=1><table cellspacing=1 cellpadding=1>
<th align=left>附<tr><td>
<a href=http://lis.ly.gov.tw/lgcgi/lylawatt?cfcbcac9cacecfcfcfc9cecbcfce target=pdf ><font size=2>附表:法官俸表</font></a><br>
</td></table>
</left>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04565/04565100061400.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:24:39 GMT -->
</html>
| g0v/laweasyread-data | rawdata/utf8_lawstat/version2/04565/04565100061400.html | HTML | mit | 98,070 |
<!doctype html>
<!--
~ Copyright (c) 2017. MIT-license for Jari Van Melckebeke
~ Note that there was a lot of educational work in this project,
~ this project was (or is) used for an assignment from Realdolmen in Belgium.
~ Please just don't abuse my work
-->
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.2/raphael-min.js"></script>
<script src="../morris.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.js"></script>
<script src="lib/example.js"></script>
<link rel="stylesheet" href="lib/example.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.css">
<link rel="stylesheet" href="../morris.css">
</head>
<body>
<h1>Area charts</h1>
<div id="graph"></div>
<pre id="code" class="prettyprint linenums">
// Use Morris.Area instead of Morris.Line
Morris.Area({
element: 'graph',
data: [
{x: '2010 Q4', y: 3, z: 7},
{x: '2011 Q1', y: 3, z: 4},
{x: '2011 Q2', y: null, z: 1},
{x: '2011 Q3', y: 2, z: 5},
{x: '2011 Q4', y: 8, z: 2},
{x: '2012 Q1', y: 4, z: 4}
],
xkey: 'x',
ykeys: ['y', 'z'],
labels: ['Y', 'Z']
}).on('click', function(i, row){
console.log(i, row);
});
</pre>
</body>
| N00bface/Real-Dolmen-Stage-Opdrachten | stageopdracht/src/main/resources/static/vendors/morris.js/examples/area.html | HTML | mit | 1,353 |
<html>
<META HTTP-EQUIV=Content-Type Content="text/html; charset=big5">
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/03706/0370691051700.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:21:30 GMT -->
<head><title>ªk½s¸¹:03706 ª©¥»:091051700</title>
<link rel="stylesheet" type="text/css" href="../../version.css" >
</HEAD>
<body><left>
<table><tr><td><FONT COLOR=blue SIZE=5>¬r©Ê¤Æ¾Çª«½èºÞ²zªk(03706)</font>
<table><tr><td> </td><td>
<table><tr><td> </td><td>
<table><tr><td> </td>
<tr><td align=left valign=top>
<a href=0370675111400.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 75 ¦~ 11 ¤ë 14 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>¨î©w29±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 75 ¦~ 11 ¤ë 26 ¤é¤½¥¬</font></nobr></td>
<tr><td align=left valign=top>
<a href=0370677102700.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 77 ¦~ 10 ¤ë 27 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>×¥¿²Ä3±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 77 ¦~ 11 ¤ë 16 ¤é¤½¥¬</font></nobr></td>
<tr><td align=left valign=top>
<a href=0370686103000.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 86 ¦~ 10 ¤ë 30 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>×¥¿¥þ¤å44±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 86 ¦~ 11 ¤ë 19 ¤é¤½¥¬</font></nobr></td>
<tr><td align=left valign=top>
<a href=0370688113000.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 88 ¦~ 11 ¤ë 30 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>×¥¿²Ä3, 36±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 88 ¦~ 12 ¤ë 22 ¤é¤½¥¬</font></nobr></td>
<tr><td align=left valign=top>
<a href=0370691051700.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 91 ¦~ 5 ¤ë 17 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>×¥¿²Ä23, 34±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 91 ¦~ 6 ¤ë 12 ¤é¤½¥¬</font></nobr></td>
<tr><td align=left valign=top>
<a href=0370695121200.html target=law03706><nobr><font size=2>¤¤µØ¥Á°ê 95 ¦~ 12 ¤ë 12 ¤é</font></nobr></a>
</td>
<td valign=top><font size=2>×¥¿¥þ¤å44±ø</font></td>
<tr><td align=left valign=top><nobr><font size=2>¤¤µØ¥Á°ê 96 ¦~ 1 ¤ë 3 ¤é¤½¥¬</font></nobr></td>
</table></table></table></table>
<p><table><tr><td><font color=blue size=4>¥Á°ê91¦~5¤ë17¤é(«D²{¦æ±ø¤å)</font></td>
<td><a href=http://lis.ly.gov.tw/lghtml/lawstat/reason2/0370691051700.htm target=reason><font size=2>¥ßªk²z¥Ñ</font></a></td>
<td><a href=http://lis.ly.gov.tw/lgcgi/lglawproc?0370691051700 target=proc><font size=2>¥ßªk¬ö¿ý</font></a></td>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>²Ä¤@³¹ Á`«h</font>
<table><tr><td> </td><td><font color=8000ff>²Ä¤@±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬°¨¾¨î¬r©Ê¤Æ¾Çª«½è¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±d¡A¯S¨î©w¥»ªk¡F¥»ªk¥¼³W©wªÌ¡A¾A¥Î¨ä¥L¦³Ãöªk¥O¤§³W©w¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥»ªk±M¥Î¦Wµü©w¸q¦p¤U¡G<br>
¡@¡@¤@¡B¬r©Ê¤Æ¾Çª«½è¡G«ü¤H¬°²£»s©Î©ó²£»s¹Lµ{¤¤l¥Í¤§¤Æ¾Çª«½è¡A¸g¤¤¥¡¥DºÞ¾÷Ãö¤½§iªÌ¡C¨ä¤ÀÃþ¦p¤U¡G<br>
¡@¡@¡@¡]¤@¡^²Ä¤@Ãþ¬r©Ê¤Æ¾Çª«½è¡G¤Æ¾Çª«½è¦bÀô¹Ò¤¤¤£©ö¤À¸Ñ©Î¦]¥Íª«»W¿n¡B¥Íª«¿@ÁY¡B¥Íª«Âà¤Æµ¥§@¥Î¡AP¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±dªÌ¡C<br>
¡@¡@¡@¡]¤G¡^²Ä¤GÃþ¬r©Ê¤Æ¾Çª«½è¡G¤Æ¾Çª«½è¦³P¸~½F¡B¥Í¨|¯à¤O¨ü·l¡B·îL¡B¿ò¶Ç¦]¤l¬ðÅܩΨä¥LºC©Ê¯e¯fµ¥§@¥ÎªÌ¡C<br>
¡@¡@¡@¡]¤T¡^²Ä¤TÃþ¬r©Ê¤Æ¾Çª«½è¡G¤Æ¾Çª«½è¸g¼ÉÅS¡A±N¥ß§Y¦M®`¤HÅé°·±d©Î¥Íª«¥Í©RªÌ¡C<br>
¡@¡@¡@¡]¥|¡^²Ä¥|Ãþ¬r©Ê¤Æ¾Çª«½è¡G¤Æ¾Çª«½è¦³¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±d¤§¸·ªÌ¡C<br>
¡@¡@¤G¡B¹B§@¡G¹ï¤Æ¾Çª«½è¶i¦æ»s³y¡B¿é¤J¡B¿é¥X¡B³c½æ¡B¹B°e¡B¨Ï¥Î¡B¶J¦s©Î¼o±óµ¥¦æ¬°¡C<br>
¡@¡@¤T¡B¦Ã¬VÀô¹Ò¡G¦]¤Æ¾Çª«½è¤§¹B§@¦Ó§ïÅܪŮð¡B¤ô©Î¤gÄ[«~½è¡AP¼vÅT¨ä¥¿±`¥Î³~¡A¯}Ãa¦ÛµM¥ÍºA©Î·l®`°]ª«¡C<br>
¡@¡@¥|¡BÄÀ©ñ¶q¡G¤Æ¾Çª«½è¦]¹B§@¦Ó¬y¥¬©óªÅ®ð¡B¤ô©Î¤gÄ[¤¤¤§Á`¶q¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥»ªk©ÒºÙ¥DºÞ¾÷Ãö¡G¦b¤¤¥¡¬°¦æ¬F°|Àô¹Ò«OÅ@¸p¡F¦bª½ÁÒ¥«¬°ª½ÁÒ¥«¬F©²¡F¦b¿¤¡]¥«¡^¬°¿¤¡]¥«¡^¬F©²¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥DºÞ¾÷Ãö±o«ü©w©Î©e°U±M³d¾÷Ãö¡A¿ì²z¬r©Ê¤Æ¾Çª«½èºÞ²z¤§¬ã¨s¡B¤Hû°V½m¡B¦M®`µû¦ô¤Î¹w¨¾¦³Ãö¨Æ©y¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>²Ä¤G³¹ ¦M®`µû¦ô¤Î¹w¨¾</font>
<table><tr><td> </td><td><font color=8000ff>²Ä¤±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤¤¥¡¥DºÞ¾÷Ãö±o¨Ì¤Æ¾Çª«½è¤§¬r²z¯S©Ê¡A¤½§i¬°²Ä¤@Ãþ¡B²Ä¤GÃþ¡B²Ä¤TÃþ©Î²Ä¥|Ãþ¬r©Ê¤Æ¾Çª«½è¡C<br>
¡@¡@²Ä¤@Ãþ¡B²Ä¤GÃþ¤Î²Ä¤TÃþ¬r©Ê¤Æ¾Çª«½è¡A¤¤¥¡¥DºÞ¾÷Ãö±o¨î©Î¸T¤î¨ä¦³Ãö¤§¹B§@¡C<br>
¡@¡@²Ä¥|Ãþ¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡A°£À³¨Ì¥»ªk¤Î¤¤¥¡¥DºÞ¾÷Ãö³W©w¥Ó³ø¹B§@¬ö¿ý¡BÄÀ©ñ¶q¬ö¿ý¡B¸Ó¬r©Ê¤Æ¾Çª«½è¤§¬r²z¬ÛÃö¸ê®Æ¤Î¾A¥Î²Ä¤G¤Q¤T±ø¡B²Ä¤G¤Q¤E±ø¡B²Ä¤T¤Q¤T±ø¤Î²Ä¤T¤Q¥|±ø³W©w¥~¡A¤£¨ü¥»ªk¨ä¥L³W©w¤§¨î¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤»±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¹B§@¤Î¨äÄÀ©ñ¶q¡A¹B§@¤HÀ³¨Ì¤¤¥¡¥DºÞ¾÷Ãö¤§³W©w§@¦¨¬ö¿ý¡A§´µ½«O¦s³Æ¬d¡F¥DºÞ¾÷Ãö±o¥O¨ä©w´Á¥Ó³ø¬ö¿ý¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤C±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@²Ä¤@Ãþ¤Î²Ä¤GÃþ¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡A¤¤¥¡¥DºÞ¾÷Ãö±o·|°Ó¥Øªº¨Æ·~¥DºÞ¾÷Ãö¥HÄÀ©ñÁ`¶qºÞ¨î¤è¦¡ºÞ¨î¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤K±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@²Ä¤TÃþ¬r©Ê¤Æ¾Çª«½è¤§¹B§@¤H¡AÀ³¨Ì¤¤¥¡¥DºÞ¾÷Ãö³W©w¡AÀ˰e¸Ó¬r©Ê¤Æ¾Çª«½è¤§¬r²z¬ÛÃö¸ê®Æ¡B¦M®`¹w¨¾¤ÎÀ³ÅÜpµe¡A°e½Ð·í¦a¥DºÞ¾÷Ãö³Æ¬d¡A¨Ã¤½¶}¨Ñ¥Á²³¬d¾\¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>²Ä¤T³¹ ºÞ²z</font>
<table><tr><td> </td><td><font color=8000ff>²Ä¤E±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡A°£ªk«ß¥t¦³³W©w¥~¡AÀ³¨Ì·Ó¤¤¥¡¥DºÞ¾÷Ãö¤½§i©Î¼f©w¤§¤èªk¦æ¤§¡C<br>
¡@¡@«e¶µ¤½§i¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö·|°Ó¦³Ãö¾÷Ãö«á¬°¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¸g¬ì¾Ç§Þ³N©Î¹ê¦a½Õ¬d¬ã¨s¡AÃÒ¹ê줽§i¤§ºÞ²z¨Æ¶µ¤w¤£¦X»Ýn®É¡A¤¤¥¡¥DºÞ¾÷ÃöÀ³§Y¤½§iÅܧó©Îµù¾P¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤@±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤¤¥¡¥DºÞ¾÷Ãö±o«ü©wÀ³¥Ó½Ð®Öµo³\¥iÃҩεn°O³Æ¬d¤§¬r©Ê¤Æ¾Çª«½è¹B§@¦æ¬°¡C<br>
¡@¡@¸g«ü©wÀ³¥Ó½Ð®Öµo³\¥iÃÒ¤§¹B§@¦æ¬°¡A¹B§@¤HÀ³´£¥X¸Óª«½è¤§¦¨¤À¡B©Ê¯à¡BºÞ²z¤èªk¤Î¦³Ãö¸ê®Æ¡A¦V¥DºÞ¾÷Ãö¥Ó½Ð¼f¬d¡A®Öµo³\¥iÃÒ«á¡A©l±o¹B§@¡C<br>
¡@¡@¸g«ü©wÀ³µn°O³Æ¬d¤§¹B§@¦æ¬°¡A¹B§@¤HÀ³¨Ì¤¤¥¡¥DºÞ¾÷Ãö³W©w´£°e¬ÛÃö¸ê®Æ¡A³ø½Ð¥DºÞ¾÷Ãöµn°O³Æ¬d«á¡A©l±o¹B§@¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤G±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤¤¥¡¥DºÞ¾÷ÃöÀ³¤½§i«ü©w¹B§@¤H¹ï¨ä¹B§@·ÀI§ë«O²Ä¤T¤H³d¥ôÀI¡F¨ä«OÀI«´¬ù¶µ¥Ø¤Î¤º®e¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö·|°Ó¬ÛÃö¾÷Ãö«á©w¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤T±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@³\¥iÃÒ¤§¦³®Ä´Á¶¡¬°¤¦~¡A´Áº¡¤»Ó¤ë«e¡A±o¦VìµoÃÒ¾÷Ãö¥Ó½Ð®Öã®i©µ¡A¨C¦¸®i©µ¤£±o¶W¹L¤¦~¡C<br>
¡@¡@«e¶µ³\¥iÃÒ¦³®Ä´Á¶¡¤º¡A¬°¨¾¨î¬r©Ê¤Æ¾Çª«½è¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±d¡A¥DºÞ¾÷Ãö±oÅܧó³\¥i¨Æ¶µ©ÎºM¾P¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¥|±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¸g¨Ì¥»ªk³W©wºM¾P³\¥iÃÒ¡BºM¾Pµn°O©Î°Ç¥O·²·~ªÌ¡A¬r©Ê¤Æ¾Çª«½è¹B§@¤H¤G¦~¤º¤£±o¥Ó½Ð¸Ó¬r©Ê¤Æ¾Çª«½è¹B§@¤§³\¥iÃҩεn°O¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§®e¾¹¡B¥]¸Ë©Î¨ä¹B§@³õ©Ò¤Î³]¬Iµ¥¡AÀ³¨Ì¤¤¥¡¥DºÞ¾÷Ãö¤§³W©w¡A¼Ð¥Ü¨ä¬r©Ê¤Î¦Ã¬V¨¾¨î¦³Ãö¨Æ¶µ¡A¨Ã³Æ¸Ó¬r©Ê¤Æ¾Çª«½è¤§ª«½è¦w¥þ¸ê®Æªí¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤»±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§»s³y¡B¨Ï¥Î¤Î¶J¦s¡AÀ³¨Ì³W©w³]¸m±M·~§Þ³NºÞ²z¤Hû¡A±q¨Æ¬r©Ê¤Æ¾Çª«½è¤§¦Ã¬V¨¾¨î¡B¦M®`¹w¨¾¤Îºò«æ¨¾ªv¡C<br>
¡@¡@«e¶µ±M·~§Þ³NºÞ²z¤Hû¤§¸ê®æ¡BÃÒ·Ó¨ú±o¤ÎºM¾P¡B°V½m¡B¤H¼Æ¡B°õ¦æ·~°È¤Î¨ä³]¸mºÞ²z¿ìªk¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö©w¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤C±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¹B§@¹Lµ{¤¤¡AÀ³ºû«ù¨ä¨¾¤î±Æ©ñ©Î¬ªº|³]¬I¤§¥¿±`¾Þ§@¡A¨Ã³Æ¦³À³Åܾ¹§÷¡F¨ä°»´ú¤Îĵ³ø³]³Æ¤§³]¸m¤§¾Þ§@¡A¨ÃÀ³²Å¦X¤¤¥¡¥DºÞ¾÷Ãö¤§³W©w¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤K±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è°±¤î¹B§@´Á¶¡¶W¹L¤@Ó¤ëªÌ¡At³d¤HÀ³¦Û°±¤î¹B§@¤§¤é°_¤T¤Q¤é¤º¡A±N©Ò³Ñ¤§¬r©Ê¤Æ¾Çª«½è¦C¥U³ø½Ð¥DºÞ¾÷Ãö®Öã¡A¨Ã¨Ì¤U¦C¤è¦¡³B²z¤§¡G<br>
¡@¡@¤@¡B°h¦^ì»s³y©Î³c½æªÌ¡C<br>
¡@¡@¤G¡B³c½æ©ÎÂàÅý¥L¤H¡C<br>
¡@¡@¤T¡B°h¹B¥X¤f¡C<br>
¡@¡@¥|¡B¨Ì¼o±óª«²M²zªk³B¸m¡C<br>
¡@¡@¤¡B¨ä¥L¸g¤¤¥¡¥DºÞ¾÷Ãö¤½§i©Î¼f©w¤§¤è¦¡¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤Q¤E±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡A¦³¤U¦C±¡§Î¤§¤@ªÌ¡Aµø¬°°±¤î¹B§@¡G<br>
¡@¡@¤@¡B¥¼¸g¥DºÞ¾÷Ãö®Öã¡A¤¤¤î¹B§@¤@¦~¥H¤WªÌ¡C<br>
¡@¡@¤G¡B¤¤¤î¹B§@¤»Ó¤ë¥H¤W¡A¸g¥DºÞ¾÷Ãö»{©w¦³¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±d¤§¸·ªÌ¡C<br>
¡@¡@¤T¡B¨Ì¥»ªk³W©wºM¾P¨ä³\¥iÃÒ¡BºM¾Pµn°O©Î°Ç¥O·²·~ªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¹B°e¤§¦w¥þ¸Ë³Æ¡B¥Ó³ø¡B³\¥i¡BÀËÅç¡BÀˬdµ¥ºÞ²z¿ìªk¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö·|¦P¦³Ãö¾÷Ãö©w¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤@±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¸g¨Ì²Ä¤Q¤@±ø²Ä¤@¶µ«ü©w¤§¹B§@¦æ¬°¡A¹B§@¤H¤£±o±N¸Ó¬r©Ê¤Æ¾Çª«½è³c½æ©ÎÂàÅý¤©¥¼¸g¨Ì²Ä¤Q¤@±ø²Ä¤G¶µ¡B²Ä¤T¶µ³W©w¨ú±o³\¥iÃÒ¡Bµn°O³Æ¬d©Î¨Ì²Ä¤G¤Q¤C±ø²Ä¤G¶µ¨ú±o®Ö¥iªÌ¡C¦ý¨Æ¥ý³ø¸g¥DºÞ¾÷Ãö®ÖãªÌ¡A¤£¦b¦¹¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤G±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¡A¦³¤U¦C±¡§Î¤§¤@ªÌ¡A¹B§@¤HÀ³¥ß§Y±Ä¨úºò«æ¨¾ªv±¹¬I¡A¨Ã¦Ü¿ð©ó¤@¤p®É¤º¡A³øª¾·í¦a¥DºÞ¾÷Ãö¡G<br>
¡@¡@¤@¡B¦]¬ªº|¡B¤Æ¾Ç¤ÏÀ³©Î¨ä¥L¬ðµo¨Æ¬G¦Ó¦Ã¬V¹B§@³õ©Ò©P¬É¥~¤§Àô¹ÒªÌ¡C<br>
¡@¡@¤G¡B©ó¹B°e¹Lµ{¤¤¡Aµo¥Í¬ðµo¨Æ¬G¦Ó¦³¦Ã¬VÀô¹Ò©Î¦M®`¤HÅé°·±d¤§¸·ªÌ¡C<br>
¡@¡@«e¶µ±¡§Î¡A¥DºÞ¾÷Ãö°£©R¨ä±Ä¨ú¥²n±¹¬I¥~¡A¨Ã±o©R¨ä°±¤î»P¸Ó¨Æ¬G¦³Ãö¤§³¡¤À©Î¥þ³¡¹B§@¡C<br>
¡@¡@²Ä¤@¶µ¹B§@¤H°£À³©ó¨Æ¬Gµo¥Í«á¡A¨Ì¬ÛÃö³W©wt³d²M²z¤§¡A¨Ã¨Ì³W©w»s§@®Ñ±½Õ¬d³B²z³ø§i¡A³ø½Ð·í¦a¥DºÞ¾÷Ãö³Æ¬d¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤T±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥DºÞ¾÷Ãö±o¬£ûÄâ±aÃÒ©ú¤å¥ó¡A¶i¤J¤½¨p³õ©Ò¡A¬d®Ö¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡B¦³Ãöª««~¡B³õ©Ò©Î©R´£¨Ñ¦³Ãö¸ê®Æ¡F¥²n®É¡A±o¥X¨ã¦¬¾Ú¡A©â¨ú¬r©Ê¤Æ¾Çª«½è©Î¦³Ãöª««~¤§¼Ë«~¡A¹ê¬IÀËÅç¡A¨Ã±o¼È¦æ«Ê¦s¡A¥Ñt³d¤H«OºÞ¡C<br>
¡@¡@«e¶µ©â¨ú¤§¼Ë«~¡AÀ³¾¨³tÀËÅç¡A¨Ã±o©e°U¸g¤¤¥¡¥DºÞ¾÷Ãö¼f¬d¦X®æ¤§ÀËÅç´ú©w¾÷ºc¬°¤§¡A¨ä´Á¶¡¤£±o¶W¹L¤@Ó¤ë¡C¦ý¸g¤¤¥¡¥DºÞ¾÷Ãö®ÖãªÌ¡A¤£¦b¦¹¡C<br>
¡@¡@«e¶µÀËÅç´ú©w¾÷ºcÀ³¨ã³Æ¤§±ø¥ó¡B³]¬I¡B³\¥iÃÒ¤§¥Ó½Ð¡B¼f¬dµ{§Ç¡B®Ö¡]´«¡^µo¡BºM¾P¡B¼o¤î¡B°±·~¡B´_·~¡B¬d®Ö¡BµûŲµ{§Ç¤Î¨ä¥LÀ³¿í¦æ¨Æ¶µ¤§ºÞ²z¿ìªk¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö©w¤§¡C<br>
¡@¡@¬r©Ê¤Æ¾Çª«½èÀË´ú¤§¤èªk¤Î«~½èºÞ¨î¨Æ¶µ¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö«ü©w¤½§i¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¥|±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¨Ì«e±ø¬d®Ö¤§¬r©Ê¤Æ¾Çª«½è©Î¦³Ãöª««~¡A¨Ì¬d®Öµ²ªG¡A¬°¤U¦C³B¤À¡G<br>
¡@¡@¤@¡B¦³¹H¤Ï¥»ªk³W©w¤§±¡¨Æ¡A¨Ì¥»ªk³W©w³B»@¡F¨ä¬r©Ê¤Æ¾Çª«½è©Î¦³Ãöª««~¡A±o¨S¤J«á³B²z¤§©Î¥O¹B§@¤H´Á¨Ì¼o±óª«²M²zªk³W©w²M²z¤§¡C<br>
¡@¡@¤G¡B«Ê¦s¤§¬r©Ê¤Æ¾Çª«½è©Î¦³Ãöª««~¸g»{©w¬°¼o±óª«ªÌ¡A±o¥O¹B§@¤H´Á¨Ì¼o±óª«²M²zªk³W©w²M²z¤§¡C¸g»{©w±o§ïµ½©Î§ï»s¨ä¥Lª«½èªÌ¡A±Ò«Ê¥æÁ٨ôÁ·þ«P§ïµ½©Î§ï»s¡F¹O´Á¥¼§ïµ½©Î§ï»sªÌ¡A±o¨S¤J«á³B²z¤§©Î¥O¹B§@¤H´Á¨Ì¼o±óª«²M²zªk³W©w²M²z¤§¡C<br>
¡@¡@¤T¡B¥¼¹H¤Ï¥»ªk¤§³W©w¡A§Y¤©±Ò«Ê¥æÁÙ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¦Ã¬V§ïµ½¡A¥Ñ¦U¥Øªº¨Æ·~¥DºÞ¾÷Ãö»²¾É¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤»±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¬F©²¾÷Ãö©Î¾Ç³N¾÷ºc¡A¹B§@¬r©Ê¤Æ¾Çª«½è¡A¨Ì¤U¦C¤è¦¡¤§¤@ºÞ²z¤§¡G<br>
¡@¡@¤@¡B¥Ñ¸ÓºÞ¤¤¥¡¾÷Ãö·|¦P¤¤¥¡¥DºÞ¾÷Ãö¥t©w¿ìªk¡C<br>
¡@¡@¤G¡B¥Ñ¸ÓºÞ¤¤¥¡¾÷Ãö´NÓ§O¹B§@¨Æ¶µ´£¥XºÞ²z¤è¦¡¡A¸g¤¤¥¡¥DºÞ¾÷Ãö¦P·NªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤C±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤¤¥¡¥DºÞ¾÷Ãö±o¨ÌºÞ²z»Ýn¡A¤½§i¬r©Ê¤Æ¾Çª«½è¹B§@¤§³Ì§CºÞ¨î¶q¡C<br>
¡@¡@¬r©Ê¤Æ¾Çª«½è¤§¹B§@¡A¨ä¹B§@¶q§C©ó«e¶µ¶q¨Ã³ø¸g·í¦a¥DºÞ¾÷Ãö®Ö¥iªÌ¡A¤£¨ü²Ä¤K±ø¡B²Ä¤Q¤@±ø¡B²Ä¤Q¤»±ø¤Î²Ä¤Q¤C±ø³W©w¤§¨î¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>²Ä¥|³¹ »@«h</font>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤K±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¹H¤Ï²Ä¤±ø²Ä¤G¶µ¤§¨î©Î¸T¤î³W©w¡A©Î¥¼¨Ì²Ä¤Q¤@±ø²Ä¤G¶µ³W©w¨ú±o³\¥iÃÒ¦Ó¾Õ¦Û¹B§@¡A©Î¥¼¨Ì²Ä¤Q¤@±ø²Ä¤T¶µ³W©wµn°O³Æ¬d¦Ó¾Õ¦Û¹B§@¡A©Î¤£¿í¦æ¥DºÞ¾÷Ãö¨Ì²Ä¤G¤Q¤G±ø²Ä¤G¶µ©Ò¬°¤§©R¥O¡A¦]¦ÓP¤H©ó¦ºªÌ¡A³BµL´Á®{¦D©Î¤C¦~¥H¤W¦³´Á®{¦D¡A±o¨Ö¬ì·s»O¹ô¤@¤d¸U¤¸¥H¤U»@ª÷¡FP«¶ËªÌ¡A³B¤T¦~¥H¤W¤Q¦~¥H¤U¦³´Á®{¦D¡A±o¨Ö¬ì·s»O¹ô¤¦Ê¸U¤¸¥H¤U»@ª÷¡FP¦M®`¤HÅé°·±d¾ÉP¯e¯fªÌ¡A³B¤T¦~¥H¤U¦³´Á®{¦D¡A±o¨Ö¬ì·s»O¹ô¥|¦Ê¸U¤¸¥H¤U»@ª÷¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤G¤Q¤E±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¦³¤U¦C±¡§Î¤§¤@ªÌ¡A³B¤T¦~¥H¤U¦³´Á®{¦D¡B©ë§Ð©Î¬ì©Î¨Ö¬ì·s»O¹ô¤¦Ê¸U¤¸¥H¤U»@ª÷¡G<br>
¡@¡@¤@¡B¹H¤Ï²Ä¤±ø²Ä¤G¶µ¤§¨î©Î¸T¤î³W©wPÄY«¦Ã¬VÀô¹ÒªÌ¡C<br>
¡@¡@¤G¡B¥¼¨Ì²Ä¤Q¤@±ø²Ä¤G¶µ³W©w¨ú±o³\¥iÃÒ¡A¾Õ¦Û¹B§@©Î¥¼¨Ì³\¥iÃÒ©Ò¦C¨Æ¶µ¹B§@¡APÄY«¦Ã¬VÀô¹ÒªÌ¡C<br>
¡@¡@¤T¡B¥¼¨Ì²Ä¤Q¤@±ø²Ä¤T¶µ³W©wµn°O³Æ¬d¡A¾Õ¦Û¹B§@¡APÄY«¦Ã¬VÀô¹ÒªÌ¡C<br>
¡@¡@¥|¡B¤£¿í¦æ¥DºÞ¾÷Ãö¨Ì²Ä¤G¤Q¤G±ø²Ä¤G¶µ©Ò¬°¤§©R¥OªÌ¡C<br>
¡@¡@¤¡B¨Ì¥»ªk³W©w¦³¥Ó³ø¸q°È¡A©úª¾¬°¤£¹ê¤§¨Æ¶µ¦Ó¥Ó³ø¤£¹ê©Î©ó·~°È¤W§@¦¨¤§¤å®Ñ¬°µê°°°O¸üªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤£¿í¦æ¥DºÞ¾÷Ãö¨Ì¥»ªk©Ò¬°°±¤u¡B°±·~©Î·²·~¤§©R¥OªÌ¡A³B¤@¦~¥H¤U¦³´Á®{¦D¡B©ë§Ð©Î¬ì©Î¨Ö¬ì·s»O¹ô¤¦Ê¸U¤¸¥H¤U»@ª÷¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤@±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@ªk¤H¤§t³d¤H¡Bªk¤H©Î¦ÛµM¤H¤§¥N²z¤H¡B¨ü¶±¤H©Î¨ä¥L±q·~¤Hû¡A¦]°õ¦æ·~°È¥Ç²Ä¤G¤Q¤K±ø©Î²Ä¤G¤Q¤E±ø¤§¸oªÌ¡A°£³B»@¨ä¦æ¬°¤H¥~¡A¹ï¸Óªk¤H©Î¦ÛµM¤H¥ç¬ì¥H¦U¸Ó±ø¤§»@ª÷¡C¦ýªk¤H¤§t³d¤H©Î¦ÛµM¤H¹ï©ó¹H¤Ï¦æ¬°¤§µo¥Í¡A¤wºÉ¤O¨¾¤îªÌ¡A¤£¦b¦¹¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤G±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¦³¤U¦C±¡§Î¤§¤@ªÌ¡A³B·s»O¹ô¤@¦Ê¸U¤¸¥H¤W¤¦Ê¸U¤¸¥H¤U»@Áì¡A¨Ã¥O¨ä´Á§ïµ½¡F¹O´Á¤£§ïµ½ªÌ¡A±o¥O¨ä°±¤u©Î°±·~¡F¥²n®É¡A¨Ã±o°Ç¥O·²·~¡BºM¾Pµn°O©ÎºM¾P¨ä³\¥iÃÒ¡G<br>
¡@¡@¤@¡B¹H¤Ï²Ä¤±ø²Ä¤G¶µ¤§¨î©Î¸T¤î³W©wªÌ¡C<br>
¡@¡@¤G¡B¥¼¨Ì²Ä¤Q¤@±ø²Ä¤G¶µ³W©w¨ú±o³\¥iÃÒ¦Ó¾Õ¦Û¹B§@ªÌ¡C<br>
¡@¡@¤T¡B¥¼¨Ì²Ä¤Q¤G±ø³W©w¹ï¨ä¹B§@·ÀI§ë«O²Ä¤T¤H³d¥ôÀIªÌ¡C<br>
¡@¡@¥|¡B¹H¤Ï²Ä¤Q¤C±ø³W©w¦Ó¦Ã¬VÀô¹ÒªÌ¡C<br>
¡@¡@¤¡B¹H¤Ï²Ä¤Q¤K±ø³W©wªÌ¡C<br>
¡@¡@¤»¡B¹H¤Ï²Ä¤G¤Q¤G±ø²Ä¤@¶µ¡B²Ä¤G¶µ³W©w©Î¥¼¨Ì¦P±ø²Ä¤T¶µ³W©wt³d²M²zªÌ¡C<br>
¡@¡@¤C¡B¸g¥DºÞ¾÷Ãö¨Ì²Ä¤G¤Q¥|±ø²Ä¤@´Ú©Î²Ä¤G´Ú¥O¨ä´Á²M²z¡A¹O´Á¤£²M²zªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤T±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@³WÁסB§«Ãª©Î©Úµ´¥DºÞ¾÷Ãö¨Ì²Ä¤G¤Q¤T±ø²Ä¤@¶µ¤§¬d®Ö¡B©R¥O¡B©â¼ËÀËÅç©Î«Ê¦s«OºÞªÌ¡A³B·s»O¹ô¤T¤Q¸U¤¸¥H¤W¤@¦Ê¤¤Q¸U¤¸¥H¤U»@Áì¡A¨Ã±o«ö¦¸³B»@¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¥|±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¦³¤U¦C±¡§Î¤§¤@ªÌ¡A³B·s»O¹ô¤Q¸U¤¸¥H¤W¤¤Q¸U¤¸¥H¤U»@Áì¡A¨Ã¥O¨ä´Á§ïµ½¡F¹O´Á¤£§ïµ½ªÌ¡A±o¥O¨ä°±¤u©Î°±·~¡F¥²n®É¡A¨Ã±o°Ç¥O·²·~¡BºM¾P¡B¼o¤îµn°O©ÎºM¾P¡B¼o¤î¨ä³\¥iÃÒ¡G<br>
¡@¡@¤@¡B¨Ì²Ä¤±ø²Ä¤T¶µ¡B²Ä¤»±ø©Î²Ä¤G¤Q¤G±ø²Ä¤T¶µ³W©w¡A¦³³ø§i¡B°O¿ý©Î¥Ó³ø¸q°È¡A¤£¨Ì³W©w³ø§i¡B°O¿ý©Î¥Ó³øªÌ¡C<br>
¡@¡@¤G¡B¹H¤Ï²Ä¤Q¤@±ø²Ä¤T¶µ¡A¥¼¨Ì³W©wµn°O³Æ¬d¦Ó¾Õ¦Û¹B§@ªÌ¡C<br>
¡@¡@¤T¡B¹H¤Ï²Ä¤Q¤C±ø³W©wªÌ¡C<br>
¡@¡@¥|¡B¹H¤Ï¨Ì²Ä¤G¤Q±ø©Î¨Ì²Ä¤G¤Q¤T±ø²Ä¤T¶µ©Ò©w¤§¿ìªkªÌ¡C<br>
¡@¡@¤¡B¹H¤Ï²Ä¤G¤Q¤@±ø³W©wªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¦³¤U¦C±¡§Î¤§¤@ªÌ¡A³B·s»O¹ô¤»¸U¤¸¥H¤W¤T¤Q¸U¤¸¥H¤U»@Áì¡A¨Ã¥O¨ä´Á§ïµ½¡F¹O´Á¤£§ïµ½ªÌ¡A±o©R¨ä°±¤u©Î°±·~¡F¥²n®É¡A¨Ã±o°Ç¥O·²·~¡BºM¾Pµn°O©ÎºM¾P¨ä³\¥iÃÒ¡G<br>
¡@¡@¤@¡B¹H¤Ï²Ä¤C±ø¤§ÄÀ©ñÁ`¶qºÞ¨î¤è¦¡¹B§@ªÌ¡C<br>
¡@¡@¤G¡B¥¼¨Ì²Ä¤K±ø³W©w´£¨Ñ¸ê®Æ©Î´£°e¸ê®Æ¤£¹êªÌ¡C<br>
¡@¡@¤T¡B¹H¤Ï²Ä¤E±ø²Ä¤@¶µ³W©wªÌ¡C<br>
¡@¡@¥|¡B¥¼¨Ì²Ä¤Q¤@±ø²Ä¤G¶µ®Öµo³\¥iÃÒ©Ò¦C¨Æ¶µ¹B§@ªÌ¡C<br>
¡@¡@¤¡B¹H¤Ï²Ä¤Q¤±ø³W©wªÌ¡C<br>
¡@¡@¤»¡B¹H¤Ï¨Ì²Ä¤Q¤»±ø²Ä¤G¶µ©Ò©w¤§¿ìªkªÌ¡C<br>
¡@¡@¤C¡B¹H¤Ï²Ä¤G¤Q¤C±ø²Ä¤G¶µ³W©w¥¼¸g®Ö¥i¦Ó¾Õ¦Û¹B§@ªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤»±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥»ªk©Ò©w¤§³B»@¡A¦b¤¤¥¡¥Ñ¦æ¬F°|Àô¹Ò«OÅ@¸p¬°¤§¡F¦bª½ÁÒ¥«¥Ñª½ÁÒ¥«¬F©²¬°¤§¡F¦b¿¤¡]¥«¡^¥Ñ¿¤¡]¥«¡^¬F©²¬°¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤C±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¨Ì¥»ªk³qª¾´Á§ïµ½©Î¥Ó³øªÌ¡A¨ä§ïµ½©Î¥Ó³ø´Á¶¡¡A°£¦]¨Æ¹ê»Ýn¥B¸g¤¤¥¡¥DºÞ¾÷Ãö®Öã¥~¡A¤£±o¶W¹L¤T¤Q¤é¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤K±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¨Ì¥»ªk©Ò³B¤§»@Áì¡A¸g³qª¾´Áú¯Ç¡A¹O´Á¤´¥¼Ãº¯ÇªÌ¡A²¾°eªk°|±j¨î°õ¦æ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>²Ä¤³¹ ªþ«h</font>
<table><tr><td> </td><td><font color=8000ff>²Ä¤T¤Q¤E±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥¼¸g¤½§i¬°¬r©Ê¤Æ¾Çª«½è«e¤w¹B§@ªÌ¡A¸g¤¤¥¡¥DºÞ¾÷Ãö¤½§i«á¡A¹B§@¤HÀ³©ó¤½§i³W©w´Á¶¡¤º¡A¨Ì¥»ªk¨ú±o³\¥iÃҩεn°O³Æ¬d«á¡A©l±oÄ~Äò¬°¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|¤Q±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥DºÞ¾÷Ãö¹ï©ó¥Ó½Ð¬r©Ê¤Æ¾Çª«½è¹B§@³\¥i¤§¼f¬d¡BÀËÅç¤Î®ÖµoÃÒ·Ó¡A»P±M·~§Þ³NºÞ²z¤Hû¸ê®æ¤§¼f¬d¤Î®ÖµoÃÒ·Ó¡A±o¤À§O¦¬¨ú¼f¬d¡BÀËÅç¤ÎÃÒ·Ó¶O¡C<br>
¡@¡@«e¶µ¦¬¶O¼Ð·Ç¡A¥Ñ¤¤¥¡¥DºÞ¾÷ÃöÀÀq¡A³ø½Ð¦æ¬F°|®Ö©w¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|¤Q¤@±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¨Ì¥»ªk©Ò¬°¤§¼f¬d¡B¬d®Ö¤Î©â¼ËÀËÅç¡A¯A¤Î°ê¨¾©Î¤u°Ó¾÷±KªÌ¡AÀ³¤©«O±K¡C¦ý¦³Ãö¤Æ¾Çª«½è¤§ª«²z¡B¤Æ¾Ç¡B¬r²z¤Î¦w¥þ¬ÛÃö¸ê®Æ¡A¤£¦b¦¹¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|¤Q¤G±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¤Z¹B§@¤H©Ît³d¤H²Å¦X¤U¦C±ø¥óªÌ¡A¤¤¥¡¥DºÞ¾÷ÃöÀ³q©w¿ìªk¼úÀy¤§¡G<br>
¡@¡@¤@¡B³sÄò¤Q¦~¥¼¹H¤Ï¥»ªk³W©wªÌ¡C<br>
¡@¡@¤G¡BP¤O¬r©Ê¤Æ¾Çª«½è¤§¹w¨¾¤Î³]³Æ§ïµ½ÁZ®Ä¨ôµÛªÌ¡C<br>
¡@¡@¤T¡Bµo©ú©Î§ï¨}°§C¬r©Ê¤Æ¾Çª«½è»s³y¡B¹B°e¡B¶J¦s¡B¨Ï¥Î®É©Ò²£¥Í¦MÀI©Î¦Ã¬V¤§¤èªk¡A¨¬¸ê±À¼sªÌ¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|¤Q¤T±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥»ªk¬I¦æ²Ó«h¡A¥Ñ¤¤¥¡¥DºÞ¾÷Ãö©w¤§¡C<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>²Ä¥|¤Q¥|±ø</font>
</font>
<table><tr><td> </td>
<td>
¡@¡@¥»ªk¦Û¤½¥¬¤é¬I¦æ¡C<br>
</td>
</table>
</table>
</table>
</left>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/03706/0370691051700.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:21:30 GMT -->
</html>
| czchen/laweasyread-data | rawdata/lawstat/version2/03706/0370691051700.html | HTML | mit | 22,652 |
<!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_65) on Mon Mar 17 18:19:37 EDT 2014 -->
<TITLE>
MathCommandTests
</TITLE>
<META NAME="date" CONTENT="2014-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="MathCommandTests";
}
}
</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="class-use/MathCommandTests.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="../slogo_tests/InterpreterTest.html" title="class in slogo_tests"><B>PREV CLASS</B></A>
<A HREF="../slogo_tests/ProgramTester.html" title="class in slogo_tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?slogo_tests/MathCommandTests.html" target="_top"><B>FRAMES</B></A>
<A HREF="MathCommandTests.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">
slogo_tests</FONT>
<BR>
Class MathCommandTests</H2>
<PRE>
java.lang.Object
<IMG SRC="../resources/inherit.gif" ALT="extended by "><B>slogo_tests.MathCommandTests</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>MathCommandTests</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="../slogo_tests/MathCommandTests.html#MathCommandTests()">MathCommandTests</A></B>()</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="../slogo_tests/MathCommandTests.html#setUp()">setUp</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="../slogo_tests/MathCommandTests.html#testATan()">testATan</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="../slogo_tests/MathCommandTests.html#testCos()">testCos</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="../slogo_tests/MathCommandTests.html#testDifference()">testDifference</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="../slogo_tests/MathCommandTests.html#testLog()">testLog</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="../slogo_tests/MathCommandTests.html#testMinus()">testMinus</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="../slogo_tests/MathCommandTests.html#testPow()">testPow</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="../slogo_tests/MathCommandTests.html#testProduct()">testProduct</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="../slogo_tests/MathCommandTests.html#testQuotient()">testQuotient</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="../slogo_tests/MathCommandTests.html#testRandom()">testRandom</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="../slogo_tests/MathCommandTests.html#testRemainder()">testRemainder</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="../slogo_tests/MathCommandTests.html#testSin()">testSin</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="../slogo_tests/MathCommandTests.html#testSum()">testSum</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="../slogo_tests/MathCommandTests.html#testTan()">testTan</A></B>()</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>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="MathCommandTests()"><!-- --></A><H3>
MathCommandTests</H3>
<PRE>
public <B>MathCommandTests</B>()</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="setUp()"><!-- --></A><H3>
setUp</H3>
<PRE>
public void <B>setUp</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testATan()"><!-- --></A><H3>
testATan</H3>
<PRE>
public void <B>testATan</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testCos()"><!-- --></A><H3>
testCos</H3>
<PRE>
public void <B>testCos</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testDifference()"><!-- --></A><H3>
testDifference</H3>
<PRE>
public void <B>testDifference</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testLog()"><!-- --></A><H3>
testLog</H3>
<PRE>
public void <B>testLog</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testMinus()"><!-- --></A><H3>
testMinus</H3>
<PRE>
public void <B>testMinus</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testPow()"><!-- --></A><H3>
testPow</H3>
<PRE>
public void <B>testPow</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testProduct()"><!-- --></A><H3>
testProduct</H3>
<PRE>
public void <B>testProduct</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testQuotient()"><!-- --></A><H3>
testQuotient</H3>
<PRE>
public void <B>testQuotient</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testRandom()"><!-- --></A><H3>
testRandom</H3>
<PRE>
public void <B>testRandom</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testRemainder()"><!-- --></A><H3>
testRemainder</H3>
<PRE>
public void <B>testRemainder</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testSin()"><!-- --></A><H3>
testSin</H3>
<PRE>
public void <B>testSin</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testSum()"><!-- --></A><H3>
testSum</H3>
<PRE>
public void <B>testSum</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="testTan()"><!-- --></A><H3>
testTan</H3>
<PRE>
public void <B>testTan</B>()
throws java.lang.Exception</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE></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/MathCommandTests.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="../slogo_tests/InterpreterTest.html" title="class in slogo_tests"><B>PREV CLASS</B></A>
<A HREF="../slogo_tests/ProgramTester.html" title="class in slogo_tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?slogo_tests/MathCommandTests.html" target="_top"><B>FRAMES</B></A>
<A HREF="MathCommandTests.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>
| codylieu/slogo | doc/slogo_tests/MathCommandTests.html | HTML | mit | 16,719 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="{{StaticUrl "bootstrap/css/bootstrap.min.css"}}" />
<style type="text/css">
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signin {
max-width: 300px;
padding: 19px 29px 29px;
margin: 0 auto 20px;
background-color: #fff;
border: 1px solid #e5e5e5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin input[type="text"],
.form-signin input[type="password"] {
font-size: 16px;
height: auto;
margin-bottom: 15px;
padding: 7px 9px;
}
</style>
</head>
<body>
<div class="container">
<form class="form-signin" method="post">
{{XsrfFormHtml}}
<h2 class="form-signin-heading">登录</h2>
<input name="user.name" type="text" class="input-block-level" placeholder="默认账号为admin">
<input name="user.passwd" type="password" class="input-block-level" placeholder="默认密码为123">
<input type="submit" value="登录" class="btn btn-large btn-primary">
</form>
</div>
<div class="container text-center">
{{include "footer.html"}} | coscms/webx | examples/simple/templates/login.html | HTML | mit | 1,698 |
{% extends "admin/base.html" %}
{% load staticfiles %}
{% block title %}Acerca de Horarios{% endblock %}
{% block head %}
{% endblock %}
{% block article %}
<div class="col-xs-11">
<div class="page-header">
<h1>
Acerca de Horarios <small>¿Por dónde comenzar?</small>
</h1>
</div>
<p>
Primero establezcamos que queremos hacer y despues vemos
como conseguirlo. Para generar calendarios primero debemos
tener un espacio sobre el cual trabajar. Pero para tener un
espacio antes necesitamos tener especialidades y
profesionales, entonces empecemos por ahí...
</p>
<dl>
<dt>
<h3><i>Crear una especialidad</i></h3>
</dt>
<dd>
En el menú lateral izquierdo, clickea el ítem
Especialidad y selecciona la opción 'Crea nueva...' o
puedes acceder desde
<a href="{% url 'calendario:especialidad_add' %}">este link.</a>
<br>
<br>
Verás algo asi:
<br>
<br>
<img src="{% static 'calendario/img/acerca/addEspecialidad.png' %}" class="col-xs-12">
<strong>NOTA:</strong> El campo color determina la
representación que tendrá esa especialidad en el
calendario final.
</dd>
<dt>
<h3><i>Ver todas las especialidades</i></h3>
</dt>
<dd>
Para ver todas las especialidades cargadas, ve a la
opción 'Ver todas' en el ítem Especialidad o clickea en
<a href="{% url 'calendario:especialidad_all' %}">este link.</a>
<br>
<br>
Allí las verás listadas de la siguiente manera:
<br>
<br>
<img src="{% static 'calendario/img/acerca/allEspecialidad.png' %}" class="col-xs-12">
</dd>
</dl>
</div>
{% endblock %}
| yo-alan/TrabajoFinalIntegrador | calendario/templates/calendario/acerca.html | HTML | mit | 2,128 |
<ng-template key="filter-cell-number.tpl.html"
let-$cell
let-$view="$view">
<mat-form-field *ngIf="$cell.column.canFilter"
floatLabel="never">
<mat-placeholder>
<mat-icon class="q-grid-icon q-grid-placeholder">
filter_list
</mat-icon>
</mat-placeholder>
<input type="number"
matInput
#input
[value]="$view.filter.value($cell.column.model)"
(change)="$view.filter.column.execute($cell.column.model, input.value)" />
<mat-icon *ngIf="!!$view.filter.value($cell.column.model)"
(click)="$view.filter.column.execute($cell.column.model, null)"
class="q-grid-icon q-grid-close"
matSuffix>
close
</mat-icon>
</mat-form-field>
</ng-template> | azkurban/ng2 | projects/ng2-qgrid-theme-material/src/lib/templates/filter-cell-number.tpl.html | HTML | mit | 893 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GMaps.js — Map Types</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="../gmaps.js"></script>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="examples.css" />
<script type="text/javascript">
var map;
$(document).ready(function(){
map = new GMaps({
el: '#map',
lat: -12.043333,
lng: -77.028333,
mapTypeControlOptions: {
mapTypeIds : ["hybrid", "roadmap", "satellite", "terrain", "osm", "cloudmade"]
}
});
map.addMapType("osm", {
getTileUrl: function(coord, zoom) {
return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
},
tileSize: new google.maps.Size(256, 256),
name: "OpenStreetMap",
maxZoom: 18
});
map.addMapType("cloudmade", {
getTileUrl: function(coord, zoom) {
return "http://b.tile.cloudmade.com/8ee2a50541944fb9bcedded5165f09d9/1/256/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
},
tileSize: new google.maps.Size(256, 256),
name: "CloudMade",
maxZoom: 18
});
map.setMapTypeId("osm");
});
</script>
</head>
<body>
<h1>GMaps.js — Map Types</h1>
<div class="row">
<div class="col-md-11">
<div id="map"></div>
</div>
<div class="col-md-6">
<p>You can define many map types from external map services, like OpenStreetMap:</p>
<pre>map.addMapType("osm", {
getTileUrl: function(coord, zoom) {
return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
},
tileSize: new google.maps.Size(256, 256),
name: "OpenStreetMap",
maxZoom: 18
});</pre>
<p>You must define a function called <code>getTileUrl</code>, which returns a tile URL according the coordenates in the map.</p>
</div>
</div>
</body>
</html>
| GuillaumeCo/barme | src/Insset/Barme/AdminBundle/Resources/public/assets/gmaps/examples/map_types.html | HTML | mit | 2,217 |
<!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_72) on Wed Nov 05 20:55:56 EST 2014 -->
<title>Uses of Class org.apache.cassandra.thrift.Cassandra.AsyncProcessor.system_add_keyspace (apache-cassandra API)</title>
<meta name="date" content="2014-11-05">
<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="Uses of Class org.apache.cassandra.thrift.Cassandra.AsyncProcessor.system_add_keyspace (apache-cassandra API)";
}
//-->
</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><a href="../../../../../org/apache/cassandra/thrift/Cassandra.AsyncProcessor.system_add_keyspace.html" title="class in org.apache.cassandra.thrift">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.AsyncProcessor.system_add_keyspace.html" target="_top">Frames</a></li>
<li><a href="Cassandra.AsyncProcessor.system_add_keyspace.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 org.apache.cassandra.thrift.Cassandra.AsyncProcessor.system_add_keyspace" class="title">Uses of Class<br>org.apache.cassandra.thrift.Cassandra.AsyncProcessor.system_add_keyspace</h2>
</div>
<div class="classUseContainer">No usage of org.apache.cassandra.thrift.Cassandra.AsyncProcessor.system_add_keyspace</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><a href="../../../../../org/apache/cassandra/thrift/Cassandra.AsyncProcessor.system_add_keyspace.html" title="class in org.apache.cassandra.thrift">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.AsyncProcessor.system_add_keyspace.html" target="_top">Frames</a></li>
<li><a href="Cassandra.AsyncProcessor.system_add_keyspace.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>Copyright © 2014 The Apache Software Foundation</small></p>
</body>
</html>
| vangav/vos_backend | apache-cassandra-2.1.2/javadoc/org/apache/cassandra/thrift/class-use/Cassandra.AsyncProcessor.system_add_keyspace.html | HTML | mit | 4,682 |
This is irrelevant text.
| iclanzan/section-highlight | test/fixtures/text.html | HTML | mit | 25 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct deduce_domain</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../proto/reference.html#header.boost.proto.domain_hpp" title="Header <boost/proto/domain.hpp>">
<link rel="prev" href="basic_default_domain.html" title="Struct basic_default_domain">
<link rel="next" href="is_domain.html" title="Struct template is_domain">
</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="basic_default_domain.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.domain_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="is_domain.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.proto.deduce_domain"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct deduce_domain</span></h2>
<p>boost::proto::deduce_domain — A pseudo-domain for use in functions and metafunctions that require a domain parameter.
It indicates that the domain of the parent node should be inferred from the domains of the child nodes.</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="../../proto/reference.html#header.boost.proto.domain_hpp" title="Header <boost/proto/domain.hpp>">boost/proto/domain.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="deduce_domain.html" title="Struct deduce_domain">deduce_domain</a> <span class="special">{</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp370674576"></a><h2>Description</h2>
<p>
When <code class="computeroutput">proto::deduce_domain</code> is used as a domain — either
explicitly or implicitly by
<code class="computeroutput"><a class="link" href="make_expr_idp214404976.html" title="Function make_expr">proto::make_expr</a>()</code>,
<code class="computeroutput"><a class="link" href="unpack_expr_idp214436288.html" title="Function unpack_expr">proto::unpack_expr</a>()</code>,
or Proto's operator overloads — Proto will use the domains of the child expressions to
compute the domain of the parent. It is done in such a way that (A) expressions in domains
that share a common super-domain are interoperable, and (B) expressions that are in
the default domain (or a sub-domain thereof) are interoperable with <span class="emphasis"><em>all</em></span>
expressions. The rules are as follows:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
A sub-domain is <span class="emphasis"><em>stronger</em></span> than its super-domain.
</li>
<li class="listitem">
<code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code>,
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>
and all their sub-domains are <span class="emphasis"><em>weaker</em></span> than all other domains.
</li>
<li class="listitem">
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>
is weaker than
<code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code>.
</li>
<li class="listitem">
For each child, define a set of domains <span class="emphasis"><em>S<sub>N</sub></em></span>
that includes the child's domain and all its super-domains.
</li>
<li class="listitem">
Define a set <span class="emphasis"><em>I<sub>S</sub></em></span> that is the intersection of
all the individual sets <span class="emphasis"><em>S<sub>N</sub></em></span> that don't contain
<code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code> or
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>.
</li>
<li class="listitem">
Define a set <span class="emphasis"><em>I<sub>W</sub></em></span> that is the intersection of
all the individual sets <span class="emphasis"><em>S<sub>N</sub></em></span> that contain
<code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code> or
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>.
</li>
<li class="listitem">
Define a set <span class="emphasis"><em>P</em></span> that is the union of
<span class="emphasis"><em>I<sub>S</sub></em></span> and
<span class="emphasis"><em>I<sub>W</sub></em></span>.
</li>
<li class="listitem">
The common domain is the strongest domain in set <span class="emphasis"><em>P</em></span>, with the
following caveats.
</li>
<li class="listitem">
Let <span class="emphasis"><em>U</em></span> be the union of all sets
<span class="emphasis"><em>S<sub>N</sub></em></span>. If the result is
<code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code> or
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>
and <span class="emphasis"><em>U</em></span> contains an element that is <span class="emphasis"><em>not </em></span><code class="computeroutput"><a class="link" href="default_domain.html" title="Struct default_domain">proto::default_domain</a></code> or
<code class="computeroutput"><a class="link" href="basic_default_domain.html" title="Struct basic_default_domain">proto::basic_default_domain</a></code>,
it is an error.
</li>
</ul></div>
<p>
</p>
<p>
Note: the above description sounds like it would be expensive to compute at compile time.
In fact, it can all be done using C++ function overloading.
</p>
</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 © 2008 Eric Niebler<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="basic_default_domain.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.domain_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="is_domain.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| rkq/cxxexp | third-party/src/boost_1_56_0/doc/html/boost/proto/deduce_domain.html | HTML | mit | 9,068 |
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}Bijgeschaafd{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bijgeschaafd.nl geeft een overzicht van alle wijzigingen die er gemaakt zijn in nieuwsartikelen.">
<meta name="author" content="Alexander Schrijver">
<link href="{% static 'bower_components/bootstrap/dist/css/bootstrap.css' %}" rel="stylesheet" media ="screen">
<script src="{% static 'bower_components/jquery/dist/jquery.min.js' %}"></script>
<script src="{% static 'bower_components/bootstrap/dist/js/bootstrap.min.js' %}"></script>
{% block head %} {% endblock %}
</head>
<body>
<div class="navbar navbar-dark bg-primary navbar-static-top m-b-2">
<a class="navbar-brand" href="{% url 'root' %}">Bijgeschaafd</a>
<ul class="nav navbar-nav">
<li class="nav-item"><a class="nav-link{% block active_browse %}{% endblock %}" href="{% url 'browse' %}">Veranderingen</a></li>
<li class="nav-item"><a class="nav-link{% block active_verwant %}{% endblock %}" href="{% url 'similararticle_list' %}">Verwant</a></li>
<li class="nav-item"><a class="nav-link{% block active_about %}{% endblock %}" href="{% url 'about' %}">Over bijgeschaafd</a></li>
<li class="nav-item"><a class="nav-link{% block active_search %}{% endblock %}" href="{% url 'search' %}">Zoeken</a></li>
</ul>
</div>
<div class="container">
<div class="row">
{% block content %} {% endblock content%}
</div>
</div>
</body>
</html>
| flupzor/newsdiffs | news/templates/template.html | HTML | mit | 1,688 |
<!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>ArduinoRCLib: PPMIn.h 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="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="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="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">ArduinoRCLib
</div>
<div id="projectbrief">Arduino RC Lib</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.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="annotated.html"><span>Classes</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>
</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('_p_p_m_in_8h_source.html','');});
</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="header">
<div class="headertitle">
<div class="title">PPMIn.h</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="preprocessor">#ifndef INC_RC_PPMIN_H</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="preprocessor">#define INC_RC_PPMIN_H</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> </div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment">/* ---------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment">** This software is in the public domain, furnished "as is", without technical</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment">** support, and with no warranty, express or implied, as to its usefulness for</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment">** any purpose.</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment">**</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">** PPMIn.h</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment">** Pulse Position Modulation Input functionality</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment">**</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment">** Author: Daniel van den Ouden</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment">** Project: ArduinoRCLib</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment">** Website: http://sourceforge.net/p/arduinorclib/</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment">** -------------------------------------------------------------------------*/</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> </div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="preprocessor">#include <inttypes.h></span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> </div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="preprocessor">#define PPMIN_WORK_SIZE(channels) ((channels) * 2)</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> </div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> </div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="keyword">namespace </span><a class="code" href="namespacerc.html">rc</a></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> {</div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> </div>
<div class="line"><a name="l00034"></a><span class="lineno"><a class="line" href="classrc_1_1_p_p_m_in.html"> 34</a></span> <span class="keyword">class </span><a class="code" href="classrc_1_1_p_p_m_in.html">PPMIn</a></div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> {</div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> <span class="keyword">public</span>:</div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>  <a class="code" href="classrc_1_1_p_p_m_in.html#ae74241b717122000afa45c8be54eee31">PPMIn</a>(uint16_t* p_results, uint8_t* p_work, uint8_t p_maxChannels);</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>  </div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>  <span class="keywordtype">void</span> <a class="code" href="classrc_1_1_p_p_m_in.html#a92bc01785329eb128782038a367531ae">start</a>(<span class="keywordtype">bool</span> p_high = <span class="keyword">false</span>);</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>  </div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>  <span class="keywordtype">void</span> <a class="code" href="classrc_1_1_p_p_m_in.html#a4019b712fdd9ba39c453c27e4baddffb">setPauseLength</a>(uint16_t p_length);</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>  </div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  uint16_t <a class="code" href="classrc_1_1_p_p_m_in.html#a06d9867ca467b13c63fa306481ecc402">getPauseLength</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>  </div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  <span class="keywordtype">void</span> <a class="code" href="classrc_1_1_p_p_m_in.html#ad442007cf7a5eda21403502f72a56c8f">setTimeout</a>(uint16_t p_length);</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>  </div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  uint16_t <a class="code" href="classrc_1_1_p_p_m_in.html#ad4968071fcbea580dbc638838b230fe9">getTimeout</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  </div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span>  <span class="keywordtype">bool</span> <a class="code" href="classrc_1_1_p_p_m_in.html#a4cdcc726ce9b7171a44d894a30d90cd8">isStable</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span>  </div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span>  <span class="keywordtype">bool</span> <a class="code" href="classrc_1_1_p_p_m_in.html#af21a55fcc41838919823bdb560e483a6">isLost</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span>  </div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>  uint8_t <a class="code" href="classrc_1_1_p_p_m_in.html#ac45c5a672155809a354b11b4620aa2af">getChannels</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>  </div>
<div class="line"><a name="l00086"></a><span class="lineno"> 86</span>  <span class="keywordtype">void</span> <a class="code" href="classrc_1_1_p_p_m_in.html#a2d7eb0d4460c2758fce93168e254506b">pinChanged</a>(<span class="keywordtype">bool</span> p_high);</div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span>  </div>
<div class="line"><a name="l00091"></a><span class="lineno"> 91</span>  <span class="keywordtype">bool</span> <a class="code" href="classrc_1_1_p_p_m_in.html#a30dbb67db98329d7d528c429ae34a59a">update</a>();</div>
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span>  </div>
<div class="line"><a name="l00093"></a><span class="lineno"> 93</span> <span class="keyword">private</span>:</div>
<div class="line"><a name="l00094"></a><span class="lineno"> 94</span>  <span class="keyword">enum</span> State</div>
<div class="line"><a name="l00095"></a><span class="lineno"> 95</span>  {</div>
<div class="line"><a name="l00096"></a><span class="lineno"> 96</span>  State_Startup, </div>
<div class="line"><a name="l00097"></a><span class="lineno"> 97</span>  State_Listening, </div>
<div class="line"><a name="l00098"></a><span class="lineno"> 98</span>  State_Stable, </div>
<div class="line"><a name="l00099"></a><span class="lineno"> 99</span>  State_Confused, </div>
<div class="line"><a name="l00100"></a><span class="lineno"> 100</span>  State_Lost </div>
<div class="line"><a name="l00101"></a><span class="lineno"> 101</span>  };</div>
<div class="line"><a name="l00102"></a><span class="lineno"> 102</span>  </div>
<div class="line"><a name="l00103"></a><span class="lineno"> 103</span>  State m_state; </div>
<div class="line"><a name="l00104"></a><span class="lineno"> 104</span>  uint8_t m_channels; </div>
<div class="line"><a name="l00105"></a><span class="lineno"> 105</span>  uint16_t m_pauseLength; </div>
<div class="line"><a name="l00106"></a><span class="lineno"> 106</span>  uint16_t m_timeout; </div>
<div class="line"><a name="l00107"></a><span class="lineno"> 107</span>  </div>
<div class="line"><a name="l00108"></a><span class="lineno"> 108</span>  uint16_t* m_results; </div>
<div class="line"><a name="l00109"></a><span class="lineno"> 109</span>  uint16_t* m_work; </div>
<div class="line"><a name="l00110"></a><span class="lineno"> 110</span>  uint8_t m_maxChannels; </div>
<div class="line"><a name="l00111"></a><span class="lineno"> 111</span>  uint8_t m_idx; </div>
<div class="line"><a name="l00112"></a><span class="lineno"> 112</span>  </div>
<div class="line"><a name="l00113"></a><span class="lineno"> 113</span>  <span class="keyword">volatile</span> <span class="keywordtype">bool</span> m_newFrame; </div>
<div class="line"><a name="l00114"></a><span class="lineno"> 114</span>  uint16_t m_lastFrameTime; </div>
<div class="line"><a name="l00115"></a><span class="lineno"> 115</span>  </div>
<div class="line"><a name="l00116"></a><span class="lineno"> 116</span>  uint16_t m_lastTime; </div>
<div class="line"><a name="l00117"></a><span class="lineno"> 117</span>  <span class="keywordtype">bool</span> m_high; </div>
<div class="line"><a name="l00118"></a><span class="lineno"> 118</span> };</div>
<div class="line"><a name="l00124"></a><span class="lineno"> 124</span> } <span class="comment">// namespace end</span></div>
<div class="line"><a name="l00125"></a><span class="lineno"> 125</span> </div>
<div class="line"><a name="l00126"></a><span class="lineno"> 126</span> <span class="preprocessor">#endif // INC_RC_PPMIN_H</span></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a30dbb67db98329d7d528c429ae34a59a"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a30dbb67db98329d7d528c429ae34a59a">rc::PPMIn::update</a></div><div class="ttdeci">bool update()</div><div class="ttdoc">Updates the result buffer with new values. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:175</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_af21a55fcc41838919823bdb560e483a6"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#af21a55fcc41838919823bdb560e483a6">rc::PPMIn::isLost</a></div><div class="ttdeci">bool isLost() const </div><div class="ttdoc">Checks if the input signal has been lost. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:88</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_ac45c5a672155809a354b11b4620aa2af"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#ac45c5a672155809a354b11b4620aa2af">rc::PPMIn::getChannels</a></div><div class="ttdeci">uint8_t getChannels() const </div><div class="ttdoc">Gets the number of channels in the signal. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:94</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a4cdcc726ce9b7171a44d894a30d90cd8"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a4cdcc726ce9b7171a44d894a30d90cd8">rc::PPMIn::isStable</a></div><div class="ttdeci">bool isStable() const </div><div class="ttdoc">Checks if the input signal is stable. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:82</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html">rc::PPMIn</a></div><div class="ttdoc">Class to encapsulate PPM Input functionality. </div><div class="ttdef"><b>Definition:</b> PPMIn.h:34</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a4019b712fdd9ba39c453c27e4baddffb"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a4019b712fdd9ba39c453c27e4baddffb">rc::PPMIn::setPauseLength</a></div><div class="ttdeci">void setPauseLength(uint16_t p_length)</div><div class="ttdoc">Sets minimum pause length, including pulse, in microseconds. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:58</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_ad442007cf7a5eda21403502f72a56c8f"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#ad442007cf7a5eda21403502f72a56c8f">rc::PPMIn::setTimeout</a></div><div class="ttdeci">void setTimeout(uint16_t p_length)</div><div class="ttdoc">Sets minimum amount of time without signal after which the signal is considered lost. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:70</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a2d7eb0d4460c2758fce93168e254506b"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a2d7eb0d4460c2758fce93168e254506b">rc::PPMIn::pinChanged</a></div><div class="ttdeci">void pinChanged(bool p_high)</div><div class="ttdoc">Handles pin change interrupt, call in your interrupt handler. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:100</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_ad4968071fcbea580dbc638838b230fe9"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#ad4968071fcbea580dbc638838b230fe9">rc::PPMIn::getTimeout</a></div><div class="ttdeci">uint16_t getTimeout() const </div><div class="ttdoc">Gets amount of time without signal after which the signal is considered lost. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:76</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a92bc01785329eb128782038a367531ae"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a92bc01785329eb128782038a367531ae">rc::PPMIn::start</a></div><div class="ttdeci">void start(bool p_high=false)</div><div class="ttdoc">Starts measuring. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:49</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_ae74241b717122000afa45c8be54eee31"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#ae74241b717122000afa45c8be54eee31">rc::PPMIn::PPMIn</a></div><div class="ttdeci">PPMIn(uint16_t *p_results, uint8_t *p_work, uint8_t p_maxChannels)</div><div class="ttdoc">Constructs a PPMIn object. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:30</div></div>
<div class="ttc" id="classrc_1_1_p_p_m_in_html_a06d9867ca467b13c63fa306481ecc402"><div class="ttname"><a href="classrc_1_1_p_p_m_in.html#a06d9867ca467b13c63fa306481ecc402">rc::PPMIn::getPauseLength</a></div><div class="ttdeci">uint16_t getPauseLength() const </div><div class="ttdoc">Gets minimum pause length in microseconds. </div><div class="ttdef"><b>Definition:</b> PPMIn.cpp:64</div></div>
<div class="ttc" id="namespacerc_html"><div class="ttname"><a href="namespacerc.html">rc</a></div><div class="ttdef"><b>Definition:</b> AIPin.cpp:23</div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><b>PPMIn.h</b></li>
<li class="footer">Generated on Sun May 24 2015 18:44:48 for ArduinoRCLib 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>
| empireryan/arduinoMatlab | RC/reference/html/_p_p_m_in_8h_source.html | HTML | mit | 20,277 |
<% each(events, function(event){ %>
<div class="cal-event-row">
<div class="cal-cell<%= event.days%> cal-offset<%= event.start_day %> day-highlight dh-<%= event['class'] %>"
data-event-class="<%= event['class'] %>">
<a href="<%= event.url ? event.url : 'javascript:void(0)' %>"
data-event-id="<%= event.id %>"
class="cal-event-week event<%= event.id %>">
<%= event.title %>
</a>
</div>
</div>
<% }); %>
| slventures/calendar | tmpls/week-days.html | HTML | mit | 510 |
<!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>FindQt3 — CMake 3.8.1 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">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '3.8.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</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="FindQt4" href="FindQt4.html" />
<link rel="prev" title="FindPythonLibs" href="FindPythonLibs.html" />
</head>
<body role="document">
<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="FindQt4.html" title="FindQt4"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="FindPythonLibs.html" title="FindPythonLibs"
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.8.1 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="findqt3">
<span id="module:FindQt3"></span><h1>FindQt3<a class="headerlink" href="#findqt3" title="Permalink to this headline">¶</a></h1>
<p>Locate Qt include paths and libraries</p>
<p>This module defines:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">QT_INCLUDE_DIR</span> <span class="o">-</span> <span class="n">where</span> <span class="n">to</span> <span class="n">find</span> <span class="n">qt</span><span class="o">.</span><span class="n">h</span><span class="p">,</span> <span class="n">etc</span><span class="o">.</span>
<span class="n">QT_LIBRARIES</span> <span class="o">-</span> <span class="n">the</span> <span class="n">libraries</span> <span class="n">to</span> <span class="n">link</span> <span class="n">against</span> <span class="n">to</span> <span class="n">use</span> <span class="n">Qt</span><span class="o">.</span>
<span class="n">QT_DEFINITIONS</span> <span class="o">-</span> <span class="n">definitions</span> <span class="n">to</span> <span class="n">use</span> <span class="n">when</span>
<span class="n">compiling</span> <span class="n">code</span> <span class="n">that</span> <span class="n">uses</span> <span class="n">Qt</span><span class="o">.</span>
<span class="n">QT_FOUND</span> <span class="o">-</span> <span class="n">If</span> <span class="n">false</span><span class="p">,</span> <span class="n">don</span><span class="s1">'t try to use Qt.</span>
<span class="n">QT_VERSION_STRING</span> <span class="o">-</span> <span class="n">the</span> <span class="n">version</span> <span class="n">of</span> <span class="n">Qt</span> <span class="n">found</span>
</pre></div>
</div>
<p>If you need the multithreaded version of Qt, set QT_MT_REQUIRED to
TRUE</p>
<p>Also defined, but not for general use are:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">QT_MOC_EXECUTABLE</span><span class="p">,</span> <span class="n">where</span> <span class="n">to</span> <span class="n">find</span> <span class="n">the</span> <span class="n">moc</span> <span class="n">tool</span><span class="o">.</span>
<span class="n">QT_UIC_EXECUTABLE</span><span class="p">,</span> <span class="n">where</span> <span class="n">to</span> <span class="n">find</span> <span class="n">the</span> <span class="n">uic</span> <span class="n">tool</span><span class="o">.</span>
<span class="n">QT_QT_LIBRARY</span><span class="p">,</span> <span class="n">where</span> <span class="n">to</span> <span class="n">find</span> <span class="n">the</span> <span class="n">Qt</span> <span class="n">library</span><span class="o">.</span>
<span class="n">QT_QTMAIN_LIBRARY</span><span class="p">,</span> <span class="n">where</span> <span class="n">to</span> <span class="n">find</span> <span class="n">the</span> <span class="n">qtmain</span>
<span class="n">library</span><span class="o">.</span> <span class="n">This</span> <span class="ow">is</span> <span class="n">only</span> <span class="n">required</span> <span class="n">by</span> <span class="n">Qt3</span> <span class="n">on</span> <span class="n">Windows</span><span class="o">.</span>
</pre></div>
</div>
</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="FindPythonLibs.html"
title="previous chapter">FindPythonLibs</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="FindQt4.html"
title="next chapter">FindQt4</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/module/FindQt3.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</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="FindQt4.html" title="FindQt4"
>next</a> |</li>
<li class="right" >
<a href="FindPythonLibs.html" title="FindPythonLibs"
>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.8.1 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-2017 Kitware, Inc. and Contributors.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.5.2.
</div>
</body>
</html> | pipou/rae | builder/cmake/windows/doc/cmake/html/module/FindQt3.html | HTML | mit | 7,971 |
<!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.4.2_16) on Mon Mar 09 13:39:40 CET 2009 -->
<TITLE>
Voice (FreeTTS 1.2)
</TITLE>
<META NAME="keywords" CONTENT="com.sun.speech.freetts.Voice class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Voice (FreeTTS 1.2)";
}
</SCRIPT>
</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=3 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>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../com/sun/speech/freetts/Utterance.html" title="class in com.sun.speech.freetts"><B>PREV CLASS</B></A>
<A HREF="../../../../com/sun/speech/freetts/VoiceDirectory.html" title="class in com.sun.speech.freetts"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="Voice.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 | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <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.sun.speech.freetts</FONT>
<BR>
Class Voice</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.sun.speech.freetts.Voice</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/sun/speech/freetts/Dumpable.html" title="interface in com.sun.speech.freetts">Dumpable</A>, <A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html" title="interface in com.sun.speech.freetts">UtteranceProcessor</A></DD>
</DL>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../com/sun/speech/freetts/en/us/CMUVoice.html" title="class in com.sun.speech.freetts.en.us">CMUVoice</A></DD>
</DL>
<HR>
<DL>
<DT>public abstract class <B>Voice</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html" title="interface in com.sun.speech.freetts">UtteranceProcessor</A>, <A HREF="../../../../com/sun/speech/freetts/Dumpable.html" title="interface in com.sun.speech.freetts">Dumpable</A></DL>
<P>
Performs text-to-speech using a series of
<code>UtteranceProcessors</code>. It is the main conduit to the FreeTTS
speech synthesizer. It can perform TTS on ASCII text,
a JSML document, an <code>InputStream</code>, or a
<code>FreeTTSSpeakable</code>, by invoking the method <code>speak</code>.
<p>Before a Voice can perform TTS, it must have a
<code>Lexicon</code>, from which it gets the vocabulary, and
an <code>AudioPlayer</code>, to which it sends the synthesized output.
<p><b>Example</b> (using the <code>CMUDiphoneVoice</code>,
<code>CMULexicon</code> and <code>JavaClipAudioPlayer</code>):
<pre>
Voice voice = new CMUDiphoneVoice();
// sets the Lexicon
voice.setLexicon(new CMULexicon());
// sets the AudioPlayer
voice.setAudioPlayer(new JavaClipAudioPlayer());
// loads the Voice
voice.allocate();
// start talking
voice.speak("I can talk forever without getting tired!");
</pre>
<p>A user can override the AudioPlayer to use by defining the
"com.sun.speech.freetts.voice.defaultAudioPlayer" system property.
The value of this property must be the name of a class that
implements the AudioPlayer interface, and which also has a no-arg
constructor.
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/VoiceManager.html" title="class in com.sun.speech.freetts"><CODE>VoiceManager</CODE></A>,
<A HREF="../../../../com/sun/speech/freetts/VoiceDirectory.html" title="class in com.sun.speech.freetts"><CODE>VoiceDirectory</CODE></A></DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Field Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#DATABASE_NAME">DATABASE_NAME</A></B></CODE>
<BR>
Constant that describes the name of the unit database used by
this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#DEFAULT_AUDIO_PLAYER">DEFAULT_AUDIO_PLAYER</A></B></CODE>
<BR>
Feature name for the default AudioPlayer class to use.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#DEFAULT_AUDIO_PLAYER_DEFAULT">DEFAULT_AUDIO_PLAYER_DEFAULT</A></B></CODE>
<BR>
The default class to use for the DEFAULT_AUDIO_PLAYER.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#FEATURE_JOIN_TYPE">FEATURE_JOIN_TYPE</A></B></CODE>
<BR>
Feature name for the join type string.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#FEATURE_SILENCE">FEATURE_SILENCE</A></B></CODE>
<BR>
Feature name for the silence phone string.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#PROP_PREFIX">PROP_PREFIX</A></B></CODE>
<BR>
Prefix for System property names.</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#Voice()">Voice</A></B>()</CODE>
<BR>
Creates a new Voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#Voice(java.lang.String, com.sun.speech.freetts.Gender, com.sun.speech.freetts.Age, java.lang.String, java.util.Locale, java.lang.String, java.lang.String)">Voice</A></B>(java.lang.String name,
<A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A> gender,
<A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A> age,
java.lang.String description,
java.util.Locale locale,
java.lang.String domain,
java.lang.String organization)</CODE>
<BR>
Creates a new Voice like above, except that it also
stores the properties of the voice.</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">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></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/sun/speech/freetts/Voice.html#addFeatureProcessor(java.lang.String, com.sun.speech.freetts.FeatureProcessor)">addFeatureProcessor</A></B>(java.lang.String name,
<A HREF="../../../../com/sun/speech/freetts/FeatureProcessor.html" title="interface in com.sun.speech.freetts">FeatureProcessor</A> fp)</CODE>
<BR>
Adds a language/voice specific Feature Processor to the set of
FeatureProcessors supported by this voice.</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/sun/speech/freetts/Voice.html#allocate()">allocate</A></B>()</CODE>
<BR>
Allocate this Voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#createOutputThread()">createOutputThread</A></B>()</CODE>
<BR>
Creates an output thread that will asynchronously
output utterances that are generated by this voice (and other
voices).</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/sun/speech/freetts/Voice.html#deallocate()">deallocate</A></B>()</CODE>
<BR>
Shuts down the voice processing.</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/sun/speech/freetts/Voice.html#dump(java.io.PrintWriter, int, java.lang.String)">dump</A></B>(java.io.PrintWriter output,
int pad,
java.lang.String title)</CODE>
<BR>
Dumps the voice in textual form.</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/sun/speech/freetts/Voice.html#dumpProcessors(java.io.PrintWriter, int, java.lang.String)">dumpProcessors</A></B>(java.io.PrintWriter output,
int pad,
java.lang.String title)</CODE>
<BR>
Dumps the voice processors.</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/sun/speech/freetts/Voice.html#endBatch()">endBatch</A></B>()</CODE>
<BR>
Ends a batch of utterances.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getAge()">getAge</A></B>()</CODE>
<BR>
Get the age of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected abstract <A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html" title="interface in com.sun.speech.freetts">UtteranceProcessor</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getAudioOutput()">getAudioOutput</A></B>()</CODE>
<BR>
Returns the AudioOutput processor to be used by this voice.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getAudioPlayer()">getAudioPlayer</A></B>()</CODE>
<BR>
Gets the audio player associated with this voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getDefaultAudioPlayer()">getDefaultAudioPlayer</A></B>()</CODE>
<BR>
Gets the default audio player for this voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getDescription()">getDescription</A></B>()</CODE>
<BR>
Get the description of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getDomain()">getDomain</A></B>()</CODE>
<BR>
Get the domain of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getDurationStretch()">getDurationStretch</A></B>()</CODE>
<BR>
Gets the duration Stretch</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/FeatureProcessor.html" title="interface in com.sun.speech.freetts">FeatureProcessor</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getFeatureProcessor(java.lang.String)">getFeatureProcessor</A></B>(java.lang.String name)</CODE>
<BR>
Returns a language/voice specific Feature Processor.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/FeatureSet.html" title="interface in com.sun.speech.freetts">FeatureSet</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getFeatures()">getFeatures</A></B>()</CODE>
<BR>
Returns the feature set associated with this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getGender()">getGender</A></B>()</CODE>
<BR>
Get the gender of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/lexicon/Lexicon.html" title="interface in com.sun.speech.freetts.lexicon">Lexicon</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getLexicon()">getLexicon</A></B>()</CODE>
<BR>
Gets the lexicon for this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.Locale</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getLocale()">getLocale</A></B>()</CODE>
<BR>
Get the locale of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getName()">getName</A></B>()</CODE>
<BR>
Get the name of this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getOrganization()">getOrganization</A></B>()</CODE>
<BR>
Gets the organization which created this voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getOutputQueue()">getOutputQueue</A></B>()</CODE>
<BR>
Returns the output queue associated with this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getPhoneFeature(java.lang.String, java.lang.String)">getPhoneFeature</A></B>(java.lang.String phone,
java.lang.String featureName)</CODE>
<BR>
Given a phoneme and a feature name, returns the feature.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getPitch()">getPitch</A></B>()</CODE>
<BR>
Retreives the baseline pitch.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getPitchRange()">getPitchRange</A></B>()</CODE>
<BR>
Gets the pitch range.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getPitchShift()">getPitchShift</A></B>()</CODE>
<BR>
Gets the pitch shift.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getRate()">getRate</A></B>()</CODE>
<BR>
Gets the rate of speech.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected java.net.URL</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getResource(java.lang.String)">getResource</A></B>(java.lang.String resource)</CODE>
<BR>
Get a resource for this voice.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getRunTitle()">getRunTitle</A></B>()</CODE>
<BR>
Gets the title for this run.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getStyle()">getStyle</A></B>()</CODE>
<BR>
Gets the voice style. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>abstract <A HREF="../../../../com/sun/speech/freetts/Tokenizer.html" title="interface in com.sun.speech.freetts">Tokenizer</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getTokenizer()">getTokenizer</A></B>()</CODE>
<BR>
Returns the tokenizer associated with this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.List</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getUtteranceProcessors()">getUtteranceProcessors</A></B>()</CODE>
<BR>
Return the list of UtteranceProcessor instances. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> float</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getVolume()">getVolume</A></B>()</CODE>
<BR>
Gets the volume.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#getWaveDumpFile()">getWaveDumpFile</A></B>()</CODE>
<BR>
Gets the dumpfile for this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#isDetailedMetrics()">isDetailedMetrics</A></B>()</CODE>
<BR>
Gets the state of the detailedMetrics mode.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#isDumpRelations()">isDumpRelations</A></B>()</CODE>
<BR>
Gets the state of the dumpRelations mode.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#isDumpUtterance()">isDumpUtterance</A></B>()</CODE>
<BR>
Gets the state of the dumpUtterance mode.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#isLoaded()">isLoaded</A></B>()</CODE>
<BR>
Returns true if this voice is loaded.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#isMetrics()">isMetrics</A></B>()</CODE>
<BR>
Gets the state of the metrics mode.</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/sun/speech/freetts/Voice.html#load()">load</A></B>()</CODE>
<BR>
<B>Deprecated.</B> <I>As of FreeTTS 1.2, replaced by <A HREF="../../../../com/sun/speech/freetts/Voice.html#allocate()"><CODE>allocate()</CODE></A>.</I></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected abstract void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#loader()">loader</A></B>()</CODE>
<BR>
Loads voice specific data. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected java.lang.StringBuffer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#processNode(org.w3c.dom.Node, java.lang.StringBuffer)">processNode</A></B>(org.w3c.dom.Node n,
java.lang.StringBuffer buf)</CODE>
<BR>
Adds text for just this node and returns any text that might
be needed to undo the effects of this node after it is
processed.</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/sun/speech/freetts/Voice.html#processUtterance(com.sun.speech.freetts.Utterance)">processUtterance</A></B>(<A HREF="../../../../com/sun/speech/freetts/Utterance.html" title="class in com.sun.speech.freetts">Utterance</A> u)</CODE>
<BR>
Processes the given Utterance by passing it to each
UtteranceProcessor managed by this Voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setAge(com.sun.speech.freetts.Age)">setAge</A></B>(<A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A> age)</CODE>
<BR>
Set the age of this voice.</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/sun/speech/freetts/Voice.html#setAudioPlayer(com.sun.speech.freetts.audio.AudioPlayer)">setAudioPlayer</A></B>(<A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A> player)</CODE>
<BR>
Sets the audio player associated with this voice. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setDescription(java.lang.String)">setDescription</A></B>(java.lang.String description)</CODE>
<BR>
Set the description of this voice.</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/sun/speech/freetts/Voice.html#setDetailedMetrics(boolean)">setDetailedMetrics</A></B>(boolean detailedMetrics)</CODE>
<BR>
Sets the state of the detailedMetrics mode.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setDomain(java.lang.String)">setDomain</A></B>(java.lang.String domain)</CODE>
<BR>
Set the domain of this voice.</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/sun/speech/freetts/Voice.html#setDumpRelations(boolean)">setDumpRelations</A></B>(boolean dumpRelations)</CODE>
<BR>
Sets the state of the dumpRelations mode.</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/sun/speech/freetts/Voice.html#setDumpUtterance(boolean)">setDumpUtterance</A></B>(boolean dumpUtterance)</CODE>
<BR>
Sets the state of the dumpUtterance mode.</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/sun/speech/freetts/Voice.html#setDurationStretch(float)">setDurationStretch</A></B>(float stretch)</CODE>
<BR>
Sets the duration stretch</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setGender(com.sun.speech.freetts.Gender)">setGender</A></B>(<A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A> gender)</CODE>
<BR>
Set the gender of this voice.</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/sun/speech/freetts/Voice.html#setLexicon(com.sun.speech.freetts.lexicon.Lexicon)">setLexicon</A></B>(<A HREF="../../../../com/sun/speech/freetts/lexicon/Lexicon.html" title="interface in com.sun.speech.freetts.lexicon">Lexicon</A> lexicon)</CODE>
<BR>
Sets the lexicon to be used by this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setLoaded(boolean)">setLoaded</A></B>(boolean loaded)</CODE>
<BR>
Sets the loaded state</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setLocale(java.util.Locale)">setLocale</A></B>(java.util.Locale locale)</CODE>
<BR>
Set the locale of this voice.</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/sun/speech/freetts/Voice.html#setMetrics(boolean)">setMetrics</A></B>(boolean metrics)</CODE>
<BR>
Sets the metrics mode.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setName(java.lang.String)">setName</A></B>(java.lang.String name)</CODE>
<BR>
Set the name of this voice.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#setOrganization(java.lang.String)">setOrganization</A></B>(java.lang.String organization)</CODE>
<BR>
Sets the organization which created this voice. </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/sun/speech/freetts/Voice.html#setOutputQueue(com.sun.speech.freetts.OutputQueue)">setOutputQueue</A></B>(<A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A> queue)</CODE>
<BR>
Sets the output queue for this voice. </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/sun/speech/freetts/Voice.html#setPitch(float)">setPitch</A></B>(float hertz)</CODE>
<BR>
Sets the baseline pitch.</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/sun/speech/freetts/Voice.html#setPitchRange(float)">setPitchRange</A></B>(float range)</CODE>
<BR>
Sets the pitch range.</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/sun/speech/freetts/Voice.html#setPitchShift(float)">setPitchShift</A></B>(float shift)</CODE>
<BR>
Sets the pitch shift</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/sun/speech/freetts/Voice.html#setRate(float)">setRate</A></B>(float wpm)</CODE>
<BR>
Sets the rate of speech.</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/sun/speech/freetts/Voice.html#setRunTitle(java.lang.String)">setRunTitle</A></B>(java.lang.String runTitle)</CODE>
<BR>
Sets the title for this run.</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/sun/speech/freetts/Voice.html#setStyle(java.lang.String)">setStyle</A></B>(java.lang.String style)</CODE>
<BR>
Sets the voice style. </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/sun/speech/freetts/Voice.html#setVolume(float)">setVolume</A></B>(float vol)</CODE>
<BR>
Sets the volume.</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/sun/speech/freetts/Voice.html#setWaveDumpFile(java.lang.String)">setWaveDumpFile</A></B>(java.lang.String waveDumpFile)</CODE>
<BR>
Sets the dumpfile for this voice.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#speak(org.w3c.dom.Document)">speak</A></B>(org.w3c.dom.Document doc)</CODE>
<BR>
Speaks the given document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#speak(com.sun.speech.freetts.FreeTTSSpeakable)">speak</A></B>(<A HREF="../../../../com/sun/speech/freetts/FreeTTSSpeakable.html" title="interface in com.sun.speech.freetts">FreeTTSSpeakable</A> speakable)</CODE>
<BR>
Speak the given queue item. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#speak(java.io.InputStream)">speak</A></B>(java.io.InputStream inputStream)</CODE>
<BR>
Speaks the input stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#speak(java.lang.String)">speak</A></B>(java.lang.String text)</CODE>
<BR>
Speaks the given text.</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/sun/speech/freetts/Voice.html#startBatch()">startBatch</A></B>()</CODE>
<BR>
Starts a batch of utterances. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../com/sun/speech/freetts/Voice.html#toString()">toString</A></B>()</CODE>
<BR>
Returns the name of this Voice.</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">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Field Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="DATABASE_NAME"><!-- --></A><H3>
DATABASE_NAME</H3>
<PRE>
public static final java.lang.String <B>DATABASE_NAME</B></PRE>
<DL>
<DD>Constant that describes the name of the unit database used by
this voice.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.DATABASE_NAME">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PROP_PREFIX"><!-- --></A><H3>
PROP_PREFIX</H3>
<PRE>
public static final java.lang.String <B>PROP_PREFIX</B></PRE>
<DL>
<DD>Prefix for System property names.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.PROP_PREFIX">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="FEATURE_SILENCE"><!-- --></A><H3>
FEATURE_SILENCE</H3>
<PRE>
public static final java.lang.String <B>FEATURE_SILENCE</B></PRE>
<DL>
<DD>Feature name for the silence phone string.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.FEATURE_SILENCE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="FEATURE_JOIN_TYPE"><!-- --></A><H3>
FEATURE_JOIN_TYPE</H3>
<PRE>
public static final java.lang.String <B>FEATURE_JOIN_TYPE</B></PRE>
<DL>
<DD>Feature name for the join type string.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.FEATURE_JOIN_TYPE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DEFAULT_AUDIO_PLAYER"><!-- --></A><H3>
DEFAULT_AUDIO_PLAYER</H3>
<PRE>
public static final java.lang.String <B>DEFAULT_AUDIO_PLAYER</B></PRE>
<DL>
<DD>Feature name for the default AudioPlayer class to use.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.DEFAULT_AUDIO_PLAYER">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DEFAULT_AUDIO_PLAYER_DEFAULT"><!-- --></A><H3>
DEFAULT_AUDIO_PLAYER_DEFAULT</H3>
<PRE>
public static final java.lang.String <B>DEFAULT_AUDIO_PLAYER_DEFAULT</B></PRE>
<DL>
<DD>The default class to use for the DEFAULT_AUDIO_PLAYER.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.sun.speech.freetts.Voice.DEFAULT_AUDIO_PLAYER_DEFAULT">Constant Field Values</A></DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="Voice()"><!-- --></A><H3>
Voice</H3>
<PRE>
public <B>Voice</B>()</PRE>
<DL>
<DD>Creates a new Voice. Utterances are sent to an
output queue to be rendered as audio. Utterances are placed
on the queue by an output thread. This
queue is usually created via a call to 'createOutputThread,'
which creates a thread that waits on the queue and sends the
output to the audio player associated with this voice. If
the queue is null, the output is rendered in the calling
thread.
<P>
<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#createOutputThread()"><CODE>createOutputThread()</CODE></A></DL>
<HR>
<A NAME="Voice(java.lang.String, com.sun.speech.freetts.Gender, com.sun.speech.freetts.Age, java.lang.String, java.util.Locale, java.lang.String, java.lang.String)"><!-- --></A><H3>
Voice</H3>
<PRE>
public <B>Voice</B>(java.lang.String name,
<A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A> gender,
<A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A> age,
java.lang.String description,
java.util.Locale locale,
java.lang.String domain,
java.lang.String organization)</PRE>
<DL>
<DD>Creates a new Voice like above, except that it also
stores the properties of the voice.
<P>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the voice<DD><CODE>gender</CODE> - the gender of the voice<DD><CODE>age</CODE> - the age of the voice<DD><CODE>description</CODE> - a human-readable string providing a
description that can be displayed for the users.<DD><CODE>locale</CODE> - the locale of the voice<DD><CODE>domain</CODE> - the domain of this voice. For example,<DD><CODE>organization</CODE> - the organization which created the voice
"general", "time", or
"weather".<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#Voice()"><CODE>Voice()</CODE></A></DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="speak(java.lang.String)"><!-- --></A><H3>
speak</H3>
<PRE>
public boolean <B>speak</B>(java.lang.String text)</PRE>
<DL>
<DD>Speaks the given text.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>text</CODE> - the text to speak
<DT><B>Returns:</B><DD><code>true</code> if the given text is spoken properly;
otherwise <code>false</code></DL>
</DD>
</DL>
<HR>
<A NAME="speak(org.w3c.dom.Document)"><!-- --></A><H3>
speak</H3>
<PRE>
public boolean <B>speak</B>(org.w3c.dom.Document doc)</PRE>
<DL>
<DD>Speaks the given document.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>doc</CODE> - the JSML document to speak
<DT><B>Returns:</B><DD><code>true</code> if the given document is spoken properly;
otherwise <code>false</code></DL>
</DD>
</DL>
<HR>
<A NAME="speak(java.io.InputStream)"><!-- --></A><H3>
speak</H3>
<PRE>
public boolean <B>speak</B>(java.io.InputStream inputStream)</PRE>
<DL>
<DD>Speaks the input stream.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>inputStream</CODE> - the inputStream to speak
<DT><B>Returns:</B><DD><code>true</code> if the given input stream is spoken properly;
otherwise <code>false</code></DL>
</DD>
</DL>
<HR>
<A NAME="speak(com.sun.speech.freetts.FreeTTSSpeakable)"><!-- --></A><H3>
speak</H3>
<PRE>
public boolean <B>speak</B>(<A HREF="../../../../com/sun/speech/freetts/FreeTTSSpeakable.html" title="interface in com.sun.speech.freetts">FreeTTSSpeakable</A> speakable)</PRE>
<DL>
<DD>Speak the given queue item. This is a synchronous method that
does not return until the speakable is completely
spoken or has been cancelled.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>speakable</CODE> - the item to speak
<DT><B>Returns:</B><DD><code>true</code> if the utterance was spoken properly,
<code>false</code> otherwise</DL>
</DD>
</DL>
<HR>
<A NAME="load()"><!-- --></A><H3>
load</H3>
<PRE>
public void <B>load</B>()</PRE>
<DL>
<DD><B>Deprecated.</B> <I>As of FreeTTS 1.2, replaced by <A HREF="../../../../com/sun/speech/freetts/Voice.html#allocate()"><CODE>allocate()</CODE></A>.</I>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="allocate()"><!-- --></A><H3>
allocate</H3>
<PRE>
public void <B>allocate</B>()</PRE>
<DL>
<DD>Allocate this Voice. It loads the lexicon and the
audio output handler, and creates an audio output thread by
invoking <code>createOutputThread()</code>, if
one is not already created. It then calls the <code>loader()</code>
method to load Voice-specific data, which include utterance processors.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="isLoaded()"><!-- --></A><H3>
isLoaded</H3>
<PRE>
public boolean <B>isLoaded</B>()</PRE>
<DL>
<DD>Returns true if this voice is loaded.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if the voice is loaded;
otherwise <code>false</code></DL>
</DD>
</DL>
<HR>
<A NAME="setLoaded(boolean)"><!-- --></A><H3>
setLoaded</H3>
<PRE>
protected void <B>setLoaded</B>(boolean loaded)</PRE>
<DL>
<DD>Sets the loaded state
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>loaded</CODE> - the new loaded state
otherwise <code>false</code></DL>
</DD>
</DL>
<HR>
<A NAME="processUtterance(com.sun.speech.freetts.Utterance)"><!-- --></A><H3>
processUtterance</H3>
<PRE>
public void <B>processUtterance</B>(<A HREF="../../../../com/sun/speech/freetts/Utterance.html" title="class in com.sun.speech.freetts">Utterance</A> u)
throws <A HREF="../../../../com/sun/speech/freetts/ProcessException.html" title="class in com.sun.speech.freetts">ProcessException</A></PRE>
<DL>
<DD>Processes the given Utterance by passing it to each
UtteranceProcessor managed by this Voice. The
UtteranceProcessors are called in the order they were added to
the Voice.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html#processUtterance(com.sun.speech.freetts.Utterance)">processUtterance</A></CODE> in interface <CODE><A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html" title="interface in com.sun.speech.freetts">UtteranceProcessor</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>u</CODE> - the Utterance to process
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../com/sun/speech/freetts/ProcessException.html" title="class in com.sun.speech.freetts">ProcessException</A></CODE> - if an exception occurred while performing
operations on the Utterance</DL>
</DD>
</DL>
<HR>
<A NAME="createOutputThread()"><!-- --></A><H3>
createOutputThread</H3>
<PRE>
public static <A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A> <B>createOutputThread</B>()</PRE>
<DL>
<DD>Creates an output thread that will asynchronously
output utterances that are generated by this voice (and other
voices).
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the queue where utterances should be placed.</DL>
</DD>
</DL>
<HR>
<A NAME="getTokenizer()"><!-- --></A><H3>
getTokenizer</H3>
<PRE>
public abstract <A HREF="../../../../com/sun/speech/freetts/Tokenizer.html" title="interface in com.sun.speech.freetts">Tokenizer</A> <B>getTokenizer</B>()</PRE>
<DL>
<DD>Returns the tokenizer associated with this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the tokenizer</DL>
</DD>
</DL>
<HR>
<A NAME="getUtteranceProcessors()"><!-- --></A><H3>
getUtteranceProcessors</H3>
<PRE>
public java.util.List <B>getUtteranceProcessors</B>()</PRE>
<DL>
<DD>Return the list of UtteranceProcessor instances. Applications
should use this to obtain and modify the contents of the
UtteranceProcessor list.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a List containing UtteranceProcessor instances</DL>
</DD>
</DL>
<HR>
<A NAME="getFeatures()"><!-- --></A><H3>
getFeatures</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/FeatureSet.html" title="interface in com.sun.speech.freetts">FeatureSet</A> <B>getFeatures</B>()</PRE>
<DL>
<DD>Returns the feature set associated with this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the feature set.</DL>
</DD>
</DL>
<HR>
<A NAME="startBatch()"><!-- --></A><H3>
startBatch</H3>
<PRE>
public void <B>startBatch</B>()</PRE>
<DL>
<DD>Starts a batch of utterances. Utterances are sometimes
batched in groups for timing purposes.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#endBatch()"><CODE>endBatch()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="endBatch()"><!-- --></A><H3>
endBatch</H3>
<PRE>
public void <B>endBatch</B>()</PRE>
<DL>
<DD>Ends a batch of utterances.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#startBatch()"><CODE>startBatch()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="setOutputQueue(com.sun.speech.freetts.OutputQueue)"><!-- --></A><H3>
setOutputQueue</H3>
<PRE>
public void <B>setOutputQueue</B>(<A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A> queue)</PRE>
<DL>
<DD>Sets the output queue for this voice. If no output queue is set
for the voice when the voice is loaded, a queue and thread will
be created when the voice is loaded. If the outputQueue is set
by an external entity by calling setOutputQueue, the caller is
responsible for shutting down the output thread. That is, if
you call 'setOutputQueue' then you are responsible for shutting
down the output thread on your own. This is necessary since the
output queue may be shared by a number of voices.
<p>Utterances are placed on the
queue to be output by an output thread. This queue is
usually created via a call to 'createOutputThread' which
creates a thread that waits on the queue and sends the
output to the audio player associated with this voice. If
the queue is null, the output is rendered in the calling
thread.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>queue</CODE> - the output queue</DL>
</DD>
</DL>
<HR>
<A NAME="getOutputQueue()"><!-- --></A><H3>
getOutputQueue</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/OutputQueue.html" title="class in com.sun.speech.freetts">OutputQueue</A> <B>getOutputQueue</B>()</PRE>
<DL>
<DD>Returns the output queue associated with this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the output queue associated with this voice</DL>
</DD>
</DL>
<HR>
<A NAME="loader()"><!-- --></A><H3>
loader</H3>
<PRE>
protected abstract void <B>loader</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Loads voice specific data. Subclasses of voice should
implement this to perform class specific loading.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="processNode(org.w3c.dom.Node, java.lang.StringBuffer)"><!-- --></A><H3>
processNode</H3>
<PRE>
protected java.lang.StringBuffer <B>processNode</B>(org.w3c.dom.Node n,
java.lang.StringBuffer buf)</PRE>
<DL>
<DD>Adds text for just this node and returns any text that might
be needed to undo the effects of this node after it is
processed.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>n</CODE> - the node to traverse in depth-first order<DD><CODE>buf</CODE> - the buffer to append text to
<DT><B>Returns:</B><DD>a <code>String</code> containing text to undo the
effects of the node</DL>
</DD>
</DL>
<HR>
<A NAME="dump(java.io.PrintWriter, int, java.lang.String)"><!-- --></A><H3>
dump</H3>
<PRE>
public void <B>dump</B>(java.io.PrintWriter output,
int pad,
java.lang.String title)</PRE>
<DL>
<DD>Dumps the voice in textual form.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/sun/speech/freetts/Dumpable.html#dump(java.io.PrintWriter, int, java.lang.String)">dump</A></CODE> in interface <CODE><A HREF="../../../../com/sun/speech/freetts/Dumpable.html" title="interface in com.sun.speech.freetts">Dumpable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>output</CODE> - where to send the formatted output<DD><CODE>pad</CODE> - the initial padding<DD><CODE>title</CODE> - the title to print when dumping out</DL>
</DD>
</DL>
<HR>
<A NAME="dumpProcessors(java.io.PrintWriter, int, java.lang.String)"><!-- --></A><H3>
dumpProcessors</H3>
<PRE>
public void <B>dumpProcessors</B>(java.io.PrintWriter output,
int pad,
java.lang.String title)</PRE>
<DL>
<DD>Dumps the voice processors.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>output</CODE> - where to send the formatted output<DD><CODE>pad</CODE> - the initial padding<DD><CODE>title</CODE> - the title to print when dumping out</DL>
</DD>
</DL>
<HR>
<A NAME="getFeatureProcessor(java.lang.String)"><!-- --></A><H3>
getFeatureProcessor</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/FeatureProcessor.html" title="interface in com.sun.speech.freetts">FeatureProcessor</A> <B>getFeatureProcessor</B>(java.lang.String name)</PRE>
<DL>
<DD>Returns a language/voice specific Feature Processor.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the processor
<DT><B>Returns:</B><DD>the processor associated with the name or null if none
could be found</DL>
</DD>
</DL>
<HR>
<A NAME="addFeatureProcessor(java.lang.String, com.sun.speech.freetts.FeatureProcessor)"><!-- --></A><H3>
addFeatureProcessor</H3>
<PRE>
public void <B>addFeatureProcessor</B>(java.lang.String name,
<A HREF="../../../../com/sun/speech/freetts/FeatureProcessor.html" title="interface in com.sun.speech.freetts">FeatureProcessor</A> fp)</PRE>
<DL>
<DD>Adds a language/voice specific Feature Processor to the set of
FeatureProcessors supported by this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the processor<DD><CODE>fp</CODE> - the processor</DL>
</DD>
</DL>
<HR>
<A NAME="isMetrics()"><!-- --></A><H3>
isMetrics</H3>
<PRE>
public boolean <B>isMetrics</B>()</PRE>
<DL>
<DD>Gets the state of the metrics mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if metrics mode is on</DL>
</DD>
</DL>
<HR>
<A NAME="setMetrics(boolean)"><!-- --></A><H3>
setMetrics</H3>
<PRE>
public void <B>setMetrics</B>(boolean metrics)</PRE>
<DL>
<DD>Sets the metrics mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>metrics</CODE> - true if metrics mode should be on</DL>
</DD>
</DL>
<HR>
<A NAME="isDetailedMetrics()"><!-- --></A><H3>
isDetailedMetrics</H3>
<PRE>
public boolean <B>isDetailedMetrics</B>()</PRE>
<DL>
<DD>Gets the state of the detailedMetrics mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if detailedMetrics mode is on</DL>
</DD>
</DL>
<HR>
<A NAME="setDetailedMetrics(boolean)"><!-- --></A><H3>
setDetailedMetrics</H3>
<PRE>
public void <B>setDetailedMetrics</B>(boolean detailedMetrics)</PRE>
<DL>
<DD>Sets the state of the detailedMetrics mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>detailedMetrics</CODE> - true if detailedMetrics mode should be on</DL>
</DD>
</DL>
<HR>
<A NAME="isDumpUtterance()"><!-- --></A><H3>
isDumpUtterance</H3>
<PRE>
public boolean <B>isDumpUtterance</B>()</PRE>
<DL>
<DD>Gets the state of the dumpUtterance mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if dumpUtterance mode is on</DL>
</DD>
</DL>
<HR>
<A NAME="setDumpUtterance(boolean)"><!-- --></A><H3>
setDumpUtterance</H3>
<PRE>
public void <B>setDumpUtterance</B>(boolean dumpUtterance)</PRE>
<DL>
<DD>Sets the state of the dumpUtterance mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dumpUtterance</CODE> - true if dumpUtterance mode should be on</DL>
</DD>
</DL>
<HR>
<A NAME="isDumpRelations()"><!-- --></A><H3>
isDumpRelations</H3>
<PRE>
public boolean <B>isDumpRelations</B>()</PRE>
<DL>
<DD>Gets the state of the dumpRelations mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if dumpRelations mode is on</DL>
</DD>
</DL>
<HR>
<A NAME="setDumpRelations(boolean)"><!-- --></A><H3>
setDumpRelations</H3>
<PRE>
public void <B>setDumpRelations</B>(boolean dumpRelations)</PRE>
<DL>
<DD>Sets the state of the dumpRelations mode.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dumpRelations</CODE> - true if dumpRelations mode should be on</DL>
</DD>
</DL>
<HR>
<A NAME="setRunTitle(java.lang.String)"><!-- --></A><H3>
setRunTitle</H3>
<PRE>
public void <B>setRunTitle</B>(java.lang.String runTitle)</PRE>
<DL>
<DD>Sets the title for this run.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>runTitle</CODE> - the title for the run</DL>
</DD>
</DL>
<HR>
<A NAME="getRunTitle()"><!-- --></A><H3>
getRunTitle</H3>
<PRE>
public java.lang.String <B>getRunTitle</B>()</PRE>
<DL>
<DD>Gets the title for this run.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the title for the run</DL>
</DD>
</DL>
<HR>
<A NAME="getPhoneFeature(java.lang.String, java.lang.String)"><!-- --></A><H3>
getPhoneFeature</H3>
<PRE>
public java.lang.String <B>getPhoneFeature</B>(java.lang.String phone,
java.lang.String featureName)</PRE>
<DL>
<DD>Given a phoneme and a feature name, returns the feature.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>phone</CODE> - the phoneme of interest<DD><CODE>featureName</CODE> - the name of the feature of interest
<DT><B>Returns:</B><DD>the feature with the given name</DL>
</DD>
</DL>
<HR>
<A NAME="deallocate()"><!-- --></A><H3>
deallocate</H3>
<PRE>
public void <B>deallocate</B>()</PRE>
<DL>
<DD>Shuts down the voice processing.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPitch(float)"><!-- --></A><H3>
setPitch</H3>
<PRE>
public void <B>setPitch</B>(float hertz)</PRE>
<DL>
<DD>Sets the baseline pitch.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>hertz</CODE> - the baseline pitch in hertz</DL>
</DD>
</DL>
<HR>
<A NAME="getPitch()"><!-- --></A><H3>
getPitch</H3>
<PRE>
public float <B>getPitch</B>()</PRE>
<DL>
<DD>Retreives the baseline pitch.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the baseline pitch in hertz</DL>
</DD>
</DL>
<HR>
<A NAME="setPitchRange(float)"><!-- --></A><H3>
setPitchRange</H3>
<PRE>
public void <B>setPitchRange</B>(float range)</PRE>
<DL>
<DD>Sets the pitch range.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>range</CODE> - the range in hertz</DL>
</DD>
</DL>
<HR>
<A NAME="getPitchRange()"><!-- --></A><H3>
getPitchRange</H3>
<PRE>
public float <B>getPitchRange</B>()</PRE>
<DL>
<DD>Gets the pitch range.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the range in hertz</DL>
</DD>
</DL>
<HR>
<A NAME="setPitchShift(float)"><!-- --></A><H3>
setPitchShift</H3>
<PRE>
public void <B>setPitchShift</B>(float shift)</PRE>
<DL>
<DD>Sets the pitch shift
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>shift</CODE> - the pitch shift (1.0 is no shift)</DL>
</DD>
</DL>
<HR>
<A NAME="getPitchShift()"><!-- --></A><H3>
getPitchShift</H3>
<PRE>
public float <B>getPitchShift</B>()</PRE>
<DL>
<DD>Gets the pitch shift.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the pitch shift</DL>
</DD>
</DL>
<HR>
<A NAME="setDurationStretch(float)"><!-- --></A><H3>
setDurationStretch</H3>
<PRE>
public void <B>setDurationStretch</B>(float stretch)</PRE>
<DL>
<DD>Sets the duration stretch
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>stretch</CODE> - the duration stretch (1.0 is no stretch)</DL>
</DD>
</DL>
<HR>
<A NAME="getDurationStretch()"><!-- --></A><H3>
getDurationStretch</H3>
<PRE>
public float <B>getDurationStretch</B>()</PRE>
<DL>
<DD>Gets the duration Stretch
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the duration stretch</DL>
</DD>
</DL>
<HR>
<A NAME="setRate(float)"><!-- --></A><H3>
setRate</H3>
<PRE>
public void <B>setRate</B>(float wpm)</PRE>
<DL>
<DD>Sets the rate of speech.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>wpm</CODE> - words per minute</DL>
</DD>
</DL>
<HR>
<A NAME="getRate()"><!-- --></A><H3>
getRate</H3>
<PRE>
public float <B>getRate</B>()</PRE>
<DL>
<DD>Gets the rate of speech.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>words per minute</DL>
</DD>
</DL>
<HR>
<A NAME="setVolume(float)"><!-- --></A><H3>
setVolume</H3>
<PRE>
public void <B>setVolume</B>(float vol)</PRE>
<DL>
<DD>Sets the volume.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>vol</CODE> - the volume (0 to 1.0)</DL>
</DD>
</DL>
<HR>
<A NAME="getVolume()"><!-- --></A><H3>
getVolume</H3>
<PRE>
public float <B>getVolume</B>()</PRE>
<DL>
<DD>Gets the volume.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the volume (0 to 1.0)</DL>
</DD>
</DL>
<HR>
<A NAME="getLexicon()"><!-- --></A><H3>
getLexicon</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/lexicon/Lexicon.html" title="interface in com.sun.speech.freetts.lexicon">Lexicon</A> <B>getLexicon</B>()</PRE>
<DL>
<DD>Gets the lexicon for this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the lexicon (or null if there is no lexicon)</DL>
</DD>
</DL>
<HR>
<A NAME="setLexicon(com.sun.speech.freetts.lexicon.Lexicon)"><!-- --></A><H3>
setLexicon</H3>
<PRE>
public void <B>setLexicon</B>(<A HREF="../../../../com/sun/speech/freetts/lexicon/Lexicon.html" title="interface in com.sun.speech.freetts.lexicon">Lexicon</A> lexicon)</PRE>
<DL>
<DD>Sets the lexicon to be used by this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>lexicon</CODE> - the lexicon to use</DL>
</DD>
</DL>
<HR>
<A NAME="setWaveDumpFile(java.lang.String)"><!-- --></A><H3>
setWaveDumpFile</H3>
<PRE>
public void <B>setWaveDumpFile</B>(java.lang.String waveDumpFile)</PRE>
<DL>
<DD>Sets the dumpfile for this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>waveDumpFile</CODE> - the dumpfile</DL>
</DD>
</DL>
<HR>
<A NAME="getWaveDumpFile()"><!-- --></A><H3>
getWaveDumpFile</H3>
<PRE>
public java.lang.String <B>getWaveDumpFile</B>()</PRE>
<DL>
<DD>Gets the dumpfile for this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the dumpfile</DL>
</DD>
</DL>
<HR>
<A NAME="setAudioPlayer(com.sun.speech.freetts.audio.AudioPlayer)"><!-- --></A><H3>
setAudioPlayer</H3>
<PRE>
public void <B>setAudioPlayer</B>(<A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A> player)</PRE>
<DL>
<DD>Sets the audio player associated with this voice. The caller is
responsible for closing this player.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>player</CODE> - the audio player</DL>
</DD>
</DL>
<HR>
<A NAME="getDefaultAudioPlayer()"><!-- --></A><H3>
getDefaultAudioPlayer</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A> <B>getDefaultAudioPlayer</B>()
throws java.lang.InstantiationException</PRE>
<DL>
<DD>Gets the default audio player for this voice. The return
value will be non-null only if the DEFAULT_AUDIO_PLAYER
system property has been set to the name of an AudioPlayer
class, and that class is able to be instantiated via a
no arg constructor. getAudioPlayer will automatically set
the audio player for this voice to the default audio player
if the audio player has not yet been set.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the default AudioPlayer
<DT><B>Throws:</B>
<DD><CODE>java.lang.InstantiationException</CODE><DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#DEFAULT_AUDIO_PLAYER"><CODE>DEFAULT_AUDIO_PLAYER</CODE></A>,
<A HREF="../../../../com/sun/speech/freetts/Voice.html#getAudioPlayer()"><CODE>getAudioPlayer()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getAudioPlayer()"><!-- --></A><H3>
getAudioPlayer</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/audio/AudioPlayer.html" title="interface in com.sun.speech.freetts.audio">AudioPlayer</A> <B>getAudioPlayer</B>()</PRE>
<DL>
<DD>Gets the audio player associated with this voice. If the
audio player has not yet been set, the value will default
to the return value of getDefaultAudioPlayer.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the audio player<DT><B>See Also:</B><DD><A HREF="../../../../com/sun/speech/freetts/Voice.html#getDefaultAudioPlayer()"><CODE>getDefaultAudioPlayer()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getResource(java.lang.String)"><!-- --></A><H3>
getResource</H3>
<PRE>
protected java.net.URL <B>getResource</B>(java.lang.String resource)</PRE>
<DL>
<DD>Get a resource for this voice.
By default, the voice is searched for in the package
to which the voice class belongs. Subclasses are free to
override this behaviour.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setName(java.lang.String)"><!-- --></A><H3>
setName</H3>
<PRE>
protected void <B>setName</B>(java.lang.String name)</PRE>
<DL>
<DD>Set the name of this voice.
[[[TODO: any standard format to the name?]]]
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name to assign this voice</DL>
</DD>
</DL>
<HR>
<A NAME="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public java.lang.String <B>getName</B>()</PRE>
<DL>
<DD>Get the name of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the name</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public java.lang.String <B>toString</B>()</PRE>
<DL>
<DD>Returns the name of this Voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the name of this Voice</DL>
</DD>
</DL>
<HR>
<A NAME="setGender(com.sun.speech.freetts.Gender)"><!-- --></A><H3>
setGender</H3>
<PRE>
protected void <B>setGender</B>(<A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A> gender)</PRE>
<DL>
<DD>Set the gender of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>gender</CODE> - the gender to assign</DL>
</DD>
</DL>
<HR>
<A NAME="getGender()"><!-- --></A><H3>
getGender</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/Gender.html" title="class in com.sun.speech.freetts">Gender</A> <B>getGender</B>()</PRE>
<DL>
<DD>Get the gender of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the gender of this voice</DL>
</DD>
</DL>
<HR>
<A NAME="setAge(com.sun.speech.freetts.Age)"><!-- --></A><H3>
setAge</H3>
<PRE>
protected void <B>setAge</B>(<A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A> age)</PRE>
<DL>
<DD>Set the age of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>age</CODE> - the age to assign</DL>
</DD>
</DL>
<HR>
<A NAME="getAge()"><!-- --></A><H3>
getAge</H3>
<PRE>
public <A HREF="../../../../com/sun/speech/freetts/Age.html" title="class in com.sun.speech.freetts">Age</A> <B>getAge</B>()</PRE>
<DL>
<DD>Get the age of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the age of this voice</DL>
</DD>
</DL>
<HR>
<A NAME="setDescription(java.lang.String)"><!-- --></A><H3>
setDescription</H3>
<PRE>
protected void <B>setDescription</B>(java.lang.String description)</PRE>
<DL>
<DD>Set the description of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>description</CODE> - the human readable description to assign</DL>
</DD>
</DL>
<HR>
<A NAME="getDescription()"><!-- --></A><H3>
getDescription</H3>
<PRE>
public java.lang.String <B>getDescription</B>()</PRE>
<DL>
<DD>Get the description of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the human readable description of this voice</DL>
</DD>
</DL>
<HR>
<A NAME="setLocale(java.util.Locale)"><!-- --></A><H3>
setLocale</H3>
<PRE>
protected void <B>setLocale</B>(java.util.Locale locale)</PRE>
<DL>
<DD>Set the locale of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>locale</CODE> - the locale of this voice.</DL>
</DD>
</DL>
<HR>
<A NAME="getLocale()"><!-- --></A><H3>
getLocale</H3>
<PRE>
public java.util.Locale <B>getLocale</B>()</PRE>
<DL>
<DD>Get the locale of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the locale of this voice.</DL>
</DD>
</DL>
<HR>
<A NAME="setDomain(java.lang.String)"><!-- --></A><H3>
setDomain</H3>
<PRE>
protected void <B>setDomain</B>(java.lang.String domain)</PRE>
<DL>
<DD>Set the domain of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>domain</CODE> - the domain of this voice. For example,
"general", "time", or
"weather".</DL>
</DD>
</DL>
<HR>
<A NAME="getDomain()"><!-- --></A><H3>
getDomain</H3>
<PRE>
public java.lang.String <B>getDomain</B>()</PRE>
<DL>
<DD>Get the domain of this voice.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the domain of this voice. For example,
"general", "time", or
"weather".</DL>
</DD>
</DL>
<HR>
<A NAME="setStyle(java.lang.String)"><!-- --></A><H3>
setStyle</H3>
<PRE>
public void <B>setStyle</B>(java.lang.String style)</PRE>
<DL>
<DD>Sets the voice style. This parameter is designed for human
interpretation. Values might include "business", "casual",
"robotic", "breathy"
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>style</CODE> - the stile of this voice.</DL>
</DD>
</DL>
<HR>
<A NAME="getStyle()"><!-- --></A><H3>
getStyle</H3>
<PRE>
public java.lang.String <B>getStyle</B>()</PRE>
<DL>
<DD>Gets the voice style. This parameter is designed for human
interpretation. Values might include "business", "casual",
"robotic", "breathy".
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setOrganization(java.lang.String)"><!-- --></A><H3>
setOrganization</H3>
<PRE>
protected void <B>setOrganization</B>(java.lang.String organization)</PRE>
<DL>
<DD>Sets the organization which created this voice. For example
"cmu", "sun", ...
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>organization</CODE> - the name of the organization</DL>
</DD>
</DL>
<HR>
<A NAME="getOrganization()"><!-- --></A><H3>
getOrganization</H3>
<PRE>
public java.lang.String <B>getOrganization</B>()</PRE>
<DL>
<DD>Gets the organization which created this voice. For example
"cmu", "sun", ...
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the name of the organization</DL>
</DD>
</DL>
<HR>
<A NAME="getAudioOutput()"><!-- --></A><H3>
getAudioOutput</H3>
<PRE>
protected abstract <A HREF="../../../../com/sun/speech/freetts/UtteranceProcessor.html" title="interface in com.sun.speech.freetts">UtteranceProcessor</A> <B>getAudioOutput</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Returns the AudioOutput processor to be used by this voice.
Derived voices typically override this to customize behaviors.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the audio output processor
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an IO error occurs while getting
processor</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=3 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>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../com/sun/speech/freetts/Utterance.html" title="class in com.sun.speech.freetts"><B>PREV CLASS</B></A>
<A HREF="../../../../com/sun/speech/freetts/VoiceDirectory.html" title="class in com.sun.speech.freetts"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="Voice.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 | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <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>
| daniOrtiz11/SW-Comunication | src/freetts-1.2/javadoc/com/sun/speech/freetts/Voice.html | HTML | mit | 80,323 |
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="utf-8" />
<title></title>
<meta name="author" content="xli" />
<meta name="description" content="该睡觉的睡觉,该吃药的吃药。๑乛◡乛๑" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@gohugoio" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="该睡觉的睡觉,该吃药的吃药。๑乛◡乛๑" />
<meta name="twitter:image" content="https://xli.me/img/avatar.jpg" />
<meta property="og:type" content="article" />
<meta property="og:title" content="" />
<meta property="og:description" content="该睡觉的睡觉,该吃药的吃药。๑乛◡乛๑" />
<meta property="og:url" content="https://xli.me/post/s/2017/408/" />
<meta property="og:image" content="https://xli.me/img/avatar.jpg" />
<meta name="generator" content="Hugo 0.52" />
<link rel="canonical" href="https://xli.me/post/s/2017/408/" />
<link rel="alternative" href="https://xli.me/index.xml" title="Mr Fox" type="application/atom+xml" />
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="format-detection" content="telephone=no,email=no,adress=no" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta name="robots" content="index,follow" />
<meta name="referrer" content="origin-when-cross-origin" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Mr Fox" />
<meta name="msapplication-tooltip" content="Mr Fox" />
<meta name='msapplication-navbutton-color' content="#5fbf5e" />
<meta name="msapplication-TileColor" content="#5fbf5e" />
<meta name="msapplication-TileImage" content="/img/tile-image-windows.png" />
<link rel="icon" href="https://xli.me/img/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="https://xli.me/img/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="https://xli.me/img/favicon-32x32.png" />
<link rel="icon" sizes="192x192" href="https://xli.me/img/touch-icon-android.png" />
<link rel="apple-touch-icon" href="https://xli.me/img/touch-icon-apple.png" />
<link rel="mask-icon" href="https://xli.me/img/safari-pinned-tab.svg" color="#5fbf5e" />
<link rel="stylesheet" href="//cdn.bootcss.com/video.js/6.2.8/alt/video-js-cdn.min.css" />
<link rel="stylesheet" href="https://xli.me/css/bundle.css" />
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<script src="//cdn.bootcss.com/video.js/6.2.8/ie8/videojs-ie8.min.js"></script>
<![endif]-->
<!--[if lte IE 11]>
<script src="//cdn.bootcss.com/classlist/1.1.20170427/classList.min.js"></script>
<![endif]-->
<script src="//cdn.bootcss.com/object-fit-images/3.2.3/ofi.min.js"></script>
<script src="//cdn.bootcss.com/smooth-scroll/12.1.4/js/smooth-scroll.polyfills.min.js"></script>
</head>
<body>
<div class="suspension">
<a title="Go to top" class="to-top is-hide"><span class="icon icon-up"></span></a>
</div>
<header class="site-header">
<img class="avatar" src="https://xli.me/img/avatar.jpg" alt="Avatar">
<h2 class="title">Mr Fox</h2>
<p class="subtitle">brief is life but love is long~</p>
<button class="menu-toggle" type="button">
<span class="icon icon-menu"></span>
</button>
<nav class="site-menu collapsed">
<h2 class="offscreen">Main Menu</h2>
<ul class="menu-list">
<li class="menu-item
is-active
">
<a href="https://xli.me/">首页</a>
</li>
<li class="menu-item
">
<a href="https://xli.me/tags/%E6%8A%80%E6%9C%AF/">技术</a>
</li>
<li class="menu-item
">
<a href="https://xli.me/tags/">分类</a>
</li>
<li class="menu-item
">
<a href="https://xli.me/about/">关于</a>
</li>
</ul>
</nav>
<nav class="social-menu collapsed">
<h2 class="offscreen">Social Networks</h2>
<ul class="social-list">
<li class="social-item">
<a href="mailto:[email protected]" title="Email"><span class="icon icon-email"></span></a>
</li>
<li class="social-item">
<a href="//github.com/kaidiren" title="GitHub"><span class="icon icon-github"></span></a>
</li>
<li class="social-item">
<a href="https://xli.me/index.xml"><span class="icon icon-rss" title="RSS"></span></a>
</li>
</ul>
</nav>
</header>
<section class="main post-detail">
<header class="post-header">
<h1 class="post-title"></h1>
<p class="post-meta">@xli · Jun 20, 2015 · 1 min read</p>
</header>
<article class="post-content"><p>该睡觉的睡觉,该吃药的吃药。๑乛◡乛๑</p>
</article>
<footer class="post-footer">
<p class="post-copyright">
</p>
</footer>
</section>
<footer class="site-footer">
<p>© 2017-2018 Mr Fox</p>
<p>Powered by <a href="https://gohugo.io/" target="_blank">Hugo</a> with theme <a href="https://github.com/laozhu/hugo-nuo" target="_blank">Nuo</a>.</p>
</footer>
<script async src="//cdn.bootcss.com/video.js/6.2.8/alt/video.novtt.min.js"></script>
<script async src="//cdn.bootcss.com/mathjax/2.7.2/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [['$$','$$'], ['\[','\]']],
processEscapes: true,
processEnvironments: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
TeX: { equationNumbers: { autoNumber: "AMS" },
extensions: ["AMSmath.js", "AMSsymbols.js"] }
}
});
</script>
<script type="text/x-mathjax-config">
// Fix <code> tags after MathJax finishes running. This is a
// hack to overcome a shortcoming of Markdown. Discussion at
// https://github.com/mojombo/jekyll/issues/199
MathJax.Hub.Queue(() => {
MathJax.Hub.getAllJax().map(v => v.SourceElement().parentNode.className += ' has-jax');
});
</script>
<script src="https://xli.me/js/bundle.js"></script>
</body>
</html>
| kaidiren/D6 | public/post/s/2017/408/index.html | HTML | mit | 6,917 |
<!DOCTYPE html>
<html>
<head>
<title>PongNub</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<canvas id="game"></canvas>
<div class="modal fade bs-example-modal-sm" id="playAgain">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Play Again?</h4>
</div>
<div class="modal-body">
<button type="button" class="btn btn-default" data-dismiss="modal">Nah I'm good</button>
<button type="button" class="btn btn-primary" id="REMATCH">REMATCH NOW</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src=http://cdn.pubnub.com/pubnub.js ></script>
<script src="js/game.js" type="text/javascript"></script>
<script src="js/pong.js" type="text/javascript"></script>
<script src="js/pubgame.js" type="text/javascript"></script>
<script src="js/utils.js" type+"text/javascript"></script>
<script type="text/javascript">
$("#REMATCH").click(function() {window.location.reload()});
window.oldSchoolCool = true;
Game.ready(function() {
var pong = Game.start('game', Pong, {
sound: false,
});
// Game.addEvent(sound, 'change', function() { pong.enableSound(sound.checked); });
});
$("#game").show();
$(document).ready( function() {
setTimeout(function() {
window.PongGame.start(1);
}, 0);
});
</script>
<script src="./js/prefixfree.min.js" type="text/javascript"></script>
</body>
</html>
| rockmandew/pongnub | game.html | HTML | mit | 2,105 |
<div class="visual-editor-manage-theme">
<div class="tabbable-line">
<ul class="nav nav-tabs">
<li class="active"><a href="#tabManageTheme-ThemeList" data-toggle="tab">{{ "ThemeList" | trans }}</a></li>
<li><a href="#tabManageTheme-AutoBackupThemes" data-toggle="tab">{{ "AutoBackupThemes" | trans }}</a></li>
<li><a href="#tabManageTheme-UploadTheme" data-toggle="tab">{{ "UploadTheme" | trans }}</a></li>
<li><a href="#tabManageTheme-CreateTheme" data-toggle="tab">{{ "CreateTheme" | trans }}</a></li>
</ul>
<div class="tab-content">
<div id="tabManageTheme-ThemeList" class="tab-pane active">
{% for theme in themes %}
<div class="theme theme-box" data-filename="{{ theme.Filename }}">
<div class="image" title="{{ theme.Filename }}">
{% if theme.PreviewImageBase64 %}
<img src="data:image/png;base64,{{ theme.PreviewImageBase64 }}" alt="preview">
{% else %}
<img src="/static/template.visualeditor.images/default-preview.jpg" alt="preview">
{% endif %}
</div>
<div class="informations">
<div class="name" title="{{ theme.Name }}">{{ theme.Name }}</div>
<div class="description" title="{{ theme.Description }}">{{ theme.Description }}</div>
<div class="author" title="{{ theme.Author }}">{{ "Author" | trans }}: {{ theme.Author }}</div>
<div class="version" title="{{ theme.Version }}">{{ "Version" | trans }}: {{ theme.Version }}</div>
</div>
<div class="actions">
<div class="btn btn-xs btn-primary download-theme">{{ "DownloadTheme" | trans }}</div>
<div class="btn btn-xs btn-success apply-theme">{{ "ApplyTheme" | trans }}</div>
<div class="btn btn-xs btn-danger delete-theme">{{ "DeleteTheme" | trans }}</div>
</div>
</div>
{% endfor %}
{% if themes.size == 0 %}
<div class="text-center-row">
{{ "No themes exist, please create or upload a new theme" | trans }}
</div>
{% endif %}
</div>
<div id="tabManageTheme-AutoBackupThemes" class="tab-pane">
<ul class="backup-themes">
{% for theme in backupThemes %}
<li class="theme backup-theme" data-filename="{{ theme.Filename }}">
<div class="description pull-left">
<div class="name" title="{{ theme.Filename }}">{{ theme.Name }}</div>
</div>
<div class="actions pull-right">
<div class="btn btn-xs btn-primary download-theme">{{ "DownloadTheme" | trans }}</div>
<div class="btn btn-xs btn-success apply-theme">{{ "ApplyTheme" | trans }}</div>
</div>
<div class="clearfix"></div>
</li>
{% endfor %}
</ul>
</div>
<div id="tabManageTheme-UploadTheme" class="tab-pane">
{{ uploadThemeForm }}
</div>
<div id="tabManageTheme-CreateTheme" class="tab-pane">
{{ createThemeForm }}
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
| zkweb-framework/ZKWeb.Plugins | src/ZKWeb.Plugins/Theme.VisualEditor/templates/theme.visualeditor/manage_theme.html | HTML | mit | 2,926 |
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Jeremy Wong - Communications Designer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/main.css">
<link rel="stylesheet" href="../css/octopus.css">
<link rel="icon" type="image/png" href="../favicon.png">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="../owl/owl.carousel.css">
<link rel="stylesheet" href="../owl/owl.theme.default.css">
<link rel="stylesheet" type="text/css" href="../jCapSlide/css/style.css"/>
</head>
<body id="workpage">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div class="wrap">
<div class="header">
<a href="../">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 91.1 50.3" enable-background="new 0 0 91.1 50.3" xml:space="preserve" class="logo greylogo">
<g id="Background">
</g>
<g id="Guides" display="none">
</g>
<g id="_x31_._Loading">
<path d="M81,19.1C76.3,38,69,45.4,54.7,45.4h-8.8c6.9-5,11.6-14,14.8-27.7L65.5,0l-5.2,1.1l-4.8,18C50.7,38,43.3,45.4,29.1,45.4
h-8.2h-0.6c6.9-5,11.6-14,14.8-27.7L39.8,0l-5.2,1.1l-4.8,18C25.1,38,17.7,45.4,3.4,45.4h0L0,50.3h3.4c0.5,0,1.3,0,1.3,0h16.1h8.2
h25.6c16.8,0,26.3-9.7,31.7-32.6L91.1,0l-5.2,1.1L81,19.1z"/>
</g>
<g id="_x32_._Home_x2F_About">
</g>
<g id="_x33_._Work_Overview">
</g>
<g id="_x34_._Work_1">
</g>
<g id="_x34_._Work_2">
</g>
<g id="Navi">
</g>
</svg>
</a>
<div id="nav-icon3grey" class="nav-icon3grey">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<nav class="navmenu hide">
<ul>
<li><a class="selected" href="#">Work</a></li>
<li><a href="../">About</a></li>
</ul>
</nav>
</div> <!-- Header Close -->
<div id="carousel" class="owl-carousel owl-theme workcarousel" style="display:inline-block;width: 100%;">
<div class="workimage"> <!-- Project 1 -->
<a href="dare"><div class="workoverlay">
<div class="worktext">
<h1>01</h1>
<h2>Dare Creative</h2>
<h3>Packaging/Branding</h3>
</div>
</div></a>
<img src="img/dare-thumb.jpg" alt="Dare Creative"/>
</div>
<div class="workimage"> <!-- Project 2 -->
<a href="historia"><div class="workoverlay">
<div class="worktext">
<h1>02</h1>
<h2>Historia Ice Cream</h2>
<h3>Branding/Identity</h3>
</div>
</div></a>
<img src="img/historia-thumb.jpg" alt="Historia Ice Cream"/>
</div>
<div class="workimage"> <!-- Project 3 -->
<a href="peak164"><div class="workoverlay">
<div class="worktext">
<h1>03</h1>
<h2>Peak 164</h2>
<h3>Branding/Identity</h3>
</div>
</div></a>
<img src="img/peak164-thumb.jpg" alt="Peak 164"/>
</div>
<div class="workimage"> <!-- Project 4 -->
<a href="piercefulton"><div class="workoverlay">
<div class="worktext">
<h1>04</h1>
<h2>Pierce Fulton</h2>
<h3>Branding/Identity</h3>
</div>
</div></a>
<img src="img/piercefulton-thumb.jpg" alt="Pierce Fulton"/>
</div>
<div class="workimage"> <!-- Project 5 -->
<a href="m3evo"><div class="workoverlay">
<div class="worktext">
<h1>05</h1>
<h2>BMW M3 Evolution</h2>
<h3>Information Design</h3>
</div>
</div></a>
<img src="img/m3evo-thumb.png" alt="BMW M3 Evolution"/>
</div>
<div class="workimage"> <!-- Project 6 -->
<a href="m2/"><div class="workoverlay">
<div class="worktext">
<h1>06</h1>
<h2>BMW M2 Interactive Brochure</h2>
<h3>Interactive Website Development</h3>
</div>
</div></a>
<img src="m2/img/p3_thumb.jpg" alt="BMW M2 Interactive Brochure"/>
</div>
</div> <!-- Carousel Close -->
<div class="mobileworkitems noshow">
<div class="mobileworkimage"> <!-- Project 1 -->
<a href="dare"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>01</h1>
<h2>Dare Creative</h2>
<h3>Packaging/Branding</h3>
</div>
</div>-->
<img src="img/dare-thumb.jpg" alt="Dare Creative"/></a>
</div>
<div class="mobileworkimage"> <!-- Project 2 -->
<a href="historia"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>02</h1>
<h2>Historia Ice Cream</h2>
<h3>Branding/Identity</h3>
</div>
</div>-->
<img src="img/historia-thumb.jpg" alt="Historia Ice Cream"/></a>
</div>
<div class="mobileworkimage"> <!-- Project 3 -->
<a href="peak164"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>03</h1>
<h2>Peak 164</h2>
<h3>Branding/Identity</h3>
</div>
</div>-->
<img src="img/peak164-thumb.jpg" alt="Peak 164"/></a>
</div>
<div class="mobileworkimage"> <!-- Project 4 -->
<a href="piercefulton"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>04</h1>
<h2>Pierce Fulton</h2>
<h3>Branding/Identity</h3>
</div>
</div>-->
<img src="img/piercefulton-thumb.jpg" alt="Pierce Fulton"/></a>
</div>
<div class="mobileworkimage"> <!-- Project 5 -->
<a href="m3evo"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>05</h1>
<h2>BMW M3 Evolution</h2>
<h3>Information Design</h3>
</div>
</div>-->
<img src="img/m3evo-thumb.png" alt="BMW M3 Evolution"/></a>
</div>
<div class="mobileworkimage"> <!-- Project 6 -->
<a href="m2/"><!--<div class="mobileworkoverlay">
<div class="mobileworktext">
<h1>06</h1>
<h2>BMW M2 Interactive Brochure</h2>
<h3>Interactive Website Development</h3>
</div>
</div>-->
<img src="m2/img/p3_thumb.jpg" alt="BMW M2 Interactive Brochure"/></a>
</div>
</div> <!--mobileworkitems close-->
</div> <!--wrap close-->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>window.jQuery || document.write('<script src="../js/vendor/jquery-1.12.0.min.js"><\/script>')</script>
<script src="../js/plugins.js"></script>
<script src="../js/main.js"></script>
<script src="../owl/owl.carousel.min.js"></script>
<script src="../jCapSlide/jquery.capSlide.js"></script>
<script>
$(document).ready(function() {
$("#carousel").owlCarousel ({
autoplay: false,
autoplayHoverPause: false,
autoplayTimeout: 3500,
items: 3,
slideBy: 3,
loop: true,
margin: 3,
nav: true,
navText: [
"<i class='fa fa-arrow-left'></i>",
"<i class='fa fa-arrow-right'></i>"
],
animateOut:'fadeOut',
})
})
</script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-96578422-1','auto');ga('send','pageview');
</script>
</body>
</html>
| jw6644/jw6644.github.io | projects/index.html | HTML | mit | 9,161 |
<!--
Copyright 2013 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--><!DOCTYPE html><html><head><meta charset="UTF-8">
</head><body><div id="anim"></div>
<script src="../bootstrap.js"></script>
<script src="unit-test-delay.html.0.js"></script>
</body></html> | sunglim/csp_fixer | test_resource/core_elements_expected/src/web-animations-js/test/testcases/unit-test-delay.html | HTML | mit | 771 |
<html>
<head>
<title>String_score</title>
<script src="string_score.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>
var abrv = "";
var fuzzines = 0;
var sortable = [];
function sort_score(a,b)
{
b.score = b.name.score(abrv,fuzzines);
a.score = a.name.score(abrv,fuzzines);
return b.score - a.score;
}
function print_sort(arr,remove)
{
var list = $("ol");
list.html("");
$.each(sortable, function(i,v) {
if(!remove || (remove && v.score > 0))
{
list.append("<li>" + v.name + ", " + v.score +"</li>" );
}
});
}
function arrayfy(selector, arr) {
$(selector).children().each(function(){
arr.push( {name: $(this).html() ,score: 0});
});
}
$(function(){
arrayfy("ol",sortable);
print_sort(sortable);
$("#abrv").keyup(function(){
abrv = $(this).val();
fuzzines = $("#fuzzines").val();
sortable.sort(sort_score);
print_sort(sortable,$("#remove").is(':checked'));
});
});
</script>
</head>
<body>
<h2>How to add itens?</h2>
<p>Go to the index.html and add more <code>< li >'s</code></p>
<label for="abrv">Abbreviation: </label>
<input name="abrv" id="abrv" />
<label for="fuzzines">Fuzzines: (0 - 1)</label>
<input value="0" id="fuzzines" />
<label for="remove">Remove zero-values? </label>
<input type="checkbox" name="remove" id="remove" />
<ol>
<li>Hello</li>
<li>Hi</li>
<li>Hello World</li>
<li>Hi from Brazil</li>
<li>wxy</li>
<li>xwz</li>
</ol>
</body>
</html> | joshaven/string_score | tests/livefilter/index.html | HTML | mit | 1,631 |
<!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_112) on Tue Jan 24 09:55:30 CST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class play.templates.JavaExtensions (Play! API)</title>
<meta name="date" content="2017-01-24">
<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 play.templates.JavaExtensions (Play! API)";
}
}
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="../../../play/templates/JavaExtensions.html" title="class in play.templates">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-all.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?play/templates/class-use/JavaExtensions.html" target="_top">Frames</a></li>
<li><a href="JavaExtensions.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 play.templates.JavaExtensions" class="title">Uses of Class<br>play.templates.JavaExtensions</h2>
</div>
<div class="classUseContainer">No usage of play.templates.JavaExtensions</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="../../../play/templates/JavaExtensions.html" title="class in play.templates">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-all.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?play/templates/class-use/JavaExtensions.html" target="_top">Frames</a></li>
<li><a href="JavaExtensions.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><a href=http://guillaume.bort.fr>Guillaume Bort</a> & <a href=http://www.zenexity.fr>zenexity</a> - Distributed under <a href=http://www.apache.org/licenses/LICENSE-2.0.html>Apache 2 licence</a>, without any warrantly</small></p>
</body>
</html>
| chvrga/outdoor-explorer | java/play-1.4.4/documentation/api/play/templates/class-use/JavaExtensions.html | HTML | mit | 4,664 |
---
layout: default
title: Homepage
---
{% for post in paginator.posts %}
<div class="page-content">
<div class="post-heading">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
{% include article_info_bar.md cur_page=post %}
<div class="post-entry">
{{ post.content || split:'<!--more-->' | first }}
</div>
<div class="post-footer">
<div class="read-more">
<a href="{{ post.url }}">阅读更多 →</a>
</div>
</div>
</div>
{% endfor %}
<div class="page-pagination">
<ul class="pagination">
<li><span>页面导航:</span></li>
{% assign page_begin = paginator.page | minus: 5 %}
{% assign page_end = paginator.page | plus: 5 %}
{% if page_begin < 1 %}
{% assign page_begin = 1 %}
{% endif %}
{% if page_end > paginator.total_pages %}
{% assign page_end = paginator.total_pages %}
{% endif %}
<li><a href="/">第一页</a></li>
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<li><a href="/">←</a></li>
{% else %}
<li><a href="/page{{paginator.previous_page}}">←</a></li>
{% endif %}
{% endif %}
{% if 6 < paginator.page %}
<li><a class="disabled">...</a></li>
{% endif %}
{% for count in (page_begin..page_end) %}
{% if 1 == count %}
{% if paginator.page == 1 %}
<li><a href="/" class="active">1</a></li>
{% else %}
<li><a href="/">1</a></li>
{% endif %}
{% else %}
{% if count == paginator.page %}
<li><a href="/page{{count}}" class="active">{{count}}</a></li>
{% else %}
<li><a href="/page{{count}}">{{count}}</a></li>
{% endif %}
{% endif %}
{% endfor %}
{% if page_end < paginator.total_pages %}
<li><a class="disabled">...</a></li>
{% endif %}
{% if paginator.next_page %}
<li><a class="next" href="/page{{paginator.next_page}}">→</a></li>
{% endif %}
{% if paginator.page == 1 %}
<li><a href="/">最后页</a></li>
{% else %}
<li><a href="/page{{paginator.total_pages}}">最后页</a></li>
{% endif %}
<li><span>共{{ paginator.total_posts }}篇</span></li>
</ul>
</div>
| HackerMi/hackermi.github.com | index.html | HTML | mit | 2,279 |
<footer id='page-footer'>
<div class='container'>
<div class='row'>
<div class='span3'>
<h3>{{=T("Site Links")}}</h3>
<ul>
<li><a href='/{{=appname}}/default/index/updates'>{{=T("Latest Updates")}}</a></li>
<li><a href='/{{=appname}}/gis/index'>{{=T("Map")}}</a></li>
<li><a href='/{{=appname}}/org/resource'>{{=T("Resource Inventory")}}</a></li>
<li><a href='/{{=appname}}/project/project'>{{=T("Projects")}}</a></li>
<li><a href='/{{=appname}}/pr/person'>{{=T("Contact Directory")}}</a></li>
</ul>
</div>
<div class='span3'>
<h3>{{=T("Support")}}</h3>
<ul>
<li><a href='/{{=appname}}'>{{=T("User Manual")}}</a></li>
<!-- <li><a href='/{{=appname}}/static/themes/DRMP/DRMIS User Manual.pdf'>{{=T("User Manual")}}</a></li> -->
<li><a href='/{{=appname}}/default/index/glossary'>{{=T("Glossary")}}</a></li>
<li><a href='/{{=appname}}/default/contact'>{{=T("Email Us")}}</a></li>
<li><a href='/{{=appname}}/default/tos' target='_blank'>{{=T("Terms of Use")}}</a></li>
<li><a href='/{{=appname}}/default/privacy' target='_blank'>{{=T("Privacy Policy")}}</a></li>
</ul>
</div>
<div class='span3'>
<h3>{{=T("Community")}}</h3>
<ul>
<li><a href='https://twitter.com/NEREIDsProject' target='_blank'>{{=T("Twitter")}}</a></li>
<li><a href='https://www.facebook.com/pages/NEREIDs-Project/344819265632311' target='_blank'>{{=T("Facebook")}}</a></li>
</ul>
</div>
<div id='footer-partner-logos' class='span3 hide-on-mobile'>
<p class='pull-right'><a target='_blank' href='http://eden.sahanafoundation.org' title='A Sahana Eden Site'><img src='/{{=appname}}/static/img/sahanasmall_05.png' width='92' height='41' style='vertical-align:middle' alt='{{=T("A Sahana Eden Site")}}' /></a></p>
</div>
</div>
</div>
</footer> | gnarula/eden_deployment | private/templates/NEREIDS/views/footer.html | HTML | mit | 1,848 |
<?xml version="1.0" encoding="UTF-8"?>
<!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" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qwebinspector.cpp -->
<title>Qt 4.8: List of All Members for QWebInspector</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" />
<link rel="stylesheet" type="text/css" href="style/narrow.css" />
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/superfish.js" type="text/javascript"></script>
<script src="scripts/narrow.js" type="text/javascript"></script>
</head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="narrowsearch"></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li>
<li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul>
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul>
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="supported-platforms.html">Supported Platforms</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul>
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search" id="sidebarsearch">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
<div id="resultdialog">
<a href="#" id="resultclose">Close</a>
<p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p>
<p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span> results:</p>
<ul id="resultlist" class="all">
</ul>
</div>
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li><a href="qtwebkit.html">QtWebKit</a></li>
<li>QWebInspector</li>
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">List of All Members for QWebInspector</h1>
<p>This is the complete list of members for <a href="qwebinspector.html">QWebInspector</a>, including inherited members.</p>
<table class="propsummary">
<tr><td class="topAlign"><ul>
<li class="fn">enum <span class="name"><b><a href="qpaintdevice.html#PaintDeviceMetric-enum">PaintDeviceMetric</a></b></span></li>
<li class="fn">enum <span class="name"><b><a href="qwidget.html#RenderFlag-enum">RenderFlag</a></b></span></li>
<li class="fn">flags <span class="name"><b><a href="qwidget.html#RenderFlag-enum">RenderFlags</a></b></span></li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#QWebInspector">QWebInspector</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#dtor.QWebInspector">~QWebInspector</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#acceptDrops-prop">acceptDrops</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleDescription-prop">accessibleDescription</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleName-prop">accessibleName</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#actionEvent">actionEvent</a></b></span> ( QActionEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#actions">actions</a></b></span> () const : QList<QAction *></li>
<li class="fn"><span class="name"><b><a href="qwidget.html#activateWindow">activateWindow</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#addAction">addAction</a></b></span> ( QAction * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#addActions">addActions</a></b></span> ( QList<QAction *> )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#adjustSize">adjustSize</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#autoFillBackground-prop">autoFillBackground</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#backgroundRole">backgroundRole</a></b></span> () const : QPalette::ColorRole</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">baseSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qobject.html#blockSignals">blockSignals</a></b></span> ( bool ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#changeEvent">changeEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childAt">childAt</a></b></span> ( int, int ) const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childAt-4">childAt</a></b></span> ( const QPoint & ) const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#childEvent">childEvent</a></b></span> ( QChildEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#children">children</a></b></span> () const : const QObjectList &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childrenRect-prop">childrenRect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childrenRegion-prop">childrenRegion</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#clearFocus">clearFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#clearMask">clearMask</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#close">close</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#closeEvent">closeEvent</a></b></span> ( QCloseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#colorCount">colorCount</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect">connect</a></b></span> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect-2">connect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod &, Qt::ConnectionType ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect-3">connect</a></b></span> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connectNotify">connectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contentsMargins">contentsMargins</a></b></span> () const : QMargins</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contentsRect">contentsRect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contextMenuEvent">contextMenuEvent</a></b></span> ( QContextMenuEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contextMenuPolicy-prop">contextMenuPolicy</a></b></span> () const : Qt::ContextMenuPolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#create">create</a></b></span> ( WId, bool, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">cursor</a></b></span> () const : QCursor</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#customContextMenuRequested">customContextMenuRequested</a></b></span> ( const QPoint & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#customEvent">customEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#d_ptr-var">d_ptr</a></b></span> : QScopedPointer<QObjectData></li>
<li class="fn"><span class="name"><b><a href="qobject.html#deleteLater">deleteLater</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#depth">depth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#destroy">destroy</a></b></span> ( bool, bool )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#destroyed">destroyed</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect">disconnect</a></b></span> ( const QObject *, const char *, const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-2">disconnect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-3">disconnect</a></b></span> ( const char *, const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-4">disconnect</a></b></span> ( const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnectNotify">disconnectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragEnterEvent">dragEnterEvent</a></b></span> ( QDragEnterEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragLeaveEvent">dragLeaveEvent</a></b></span> ( QDragLeaveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragMoveEvent">dragMoveEvent</a></b></span> ( QDragMoveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dropEvent">dropEvent</a></b></span> ( QDropEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dumpObjectInfo">dumpObjectInfo</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dumpObjectTree">dumpObjectTree</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b></span> () const : QList<QByteArray></li>
<li class="fn"><span class="name"><b><a href="qwidget.html#effectiveWinId">effectiveWinId</a></b></span> () const : WId</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#ensurePolished">ensurePolished</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enterEvent">enterEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#event">event</a></b></span> ( QEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#eventFilter">eventFilter</a></b></span> ( QObject *, QEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#find">find</a></b></span> ( WId ) : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChild">findChild</a></b></span> ( const QString & ) const : T</li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChildren">findChildren</a></b></span> ( const QString & ) const : QList<T></li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChildren-2">findChildren</a></b></span> ( const QRegExp & ) const : QList<T></li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusInEvent">focusInEvent</a></b></span> ( QFocusEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusNextChild">focusNextChild</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusNextPrevChild">focusNextPrevChild</a></b></span> ( bool ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusOutEvent">focusOutEvent</a></b></span> ( QFocusEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPolicy-prop">focusPolicy</a></b></span> () const : Qt::FocusPolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPreviousChild">focusPreviousChild</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusProxy">focusProxy</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusWidget">focusWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#font-prop">font</a></b></span> () const : const QFont &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fontInfo">fontInfo</a></b></span> () const : QFontInfo</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fontMetrics">fontMetrics</a></b></span> () const : QFontMetrics</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#foregroundRole">foregroundRole</a></b></span> () const : QPalette::ColorRole</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#frameGeometry-prop">frameGeometry</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#frameSize-prop">frameSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">geometry</a></b></span> () const : const QRect &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#getContentsMargins">getContentsMargins</a></b></span> ( int *, int *, int *, int * ) const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#getDC">getDC</a></b></span> () const : HDC</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabGesture">grabGesture</a></b></span> ( Qt::GestureType, Qt::GestureFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabKeyboard">grabKeyboard</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabMouse">grabMouse</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabMouse-2">grabMouse</a></b></span> ( const QCursor & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabShortcut">grabShortcut</a></b></span> ( const QKeySequence &, Qt::ShortcutContext ) : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#graphicsEffect">graphicsEffect</a></b></span> () const : QGraphicsEffect *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#graphicsProxyWidget">graphicsProxyWidget</a></b></span> () const : QGraphicsProxyWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#hasEditFocus">hasEditFocus</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focus-prop">hasFocus</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseTracking-prop">hasMouseTracking</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#height-prop">height</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#heightForWidth">heightForWidth</a></b></span> ( int ) const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#heightMM">heightMM</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#hide">hide</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#hideEvent">hideEvent</a></b></span> ( QHideEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#inherits">inherits</a></b></span> ( const char * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputContext">inputContext</a></b></span> () : QInputContext *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodEvent">inputMethodEvent</a></b></span> ( QInputMethodEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodHints-prop">inputMethodHints</a></b></span> () const : Qt::InputMethodHints</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodQuery">inputMethodQuery</a></b></span> ( Qt::InputMethodQuery ) const : QVariant</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#insertAction">insertAction</a></b></span> ( QAction *, QAction * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#insertActions">insertActions</a></b></span> ( QAction *, QList<QAction *> )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#installEventFilter">installEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isActiveWindow-prop">isActiveWindow</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isAncestorOf">isAncestorOf</a></b></span> ( const QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enabled-prop">isEnabled</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isEnabledTo">isEnabledTo</a></b></span> ( QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fullScreen-prop">isFullScreen</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isHidden">isHidden</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximized-prop">isMaximized</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimized-prop">isMinimized</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#modal-prop">isModal</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#visible-prop">isVisible</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isVisibleTo">isVisibleTo</a></b></span> ( QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#isWidgetType">isWidgetType</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isWindow">isWindow</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModified-prop">isWindowModified</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#keyPressEvent">keyPressEvent</a></b></span> ( QKeyEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#keyReleaseEvent">keyReleaseEvent</a></b></span> ( QKeyEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#keyboardGrabber">keyboardGrabber</a></b></span> () : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#killTimer">killTimer</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layout">layout</a></b></span> () const : QLayout *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">layoutDirection</a></b></span> () const : Qt::LayoutDirection</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#leaveEvent">leaveEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">locale</a></b></span> () const : QLocale</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#logicalDpiX">logicalDpiX</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#logicalDpiY">logicalDpiY</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#lower">lower</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macCGHandle">macCGHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macEvent">macEvent</a></b></span> ( EventHandlerCallRef, EventRef ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macQDHandle">macQDHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFrom">mapFrom</a></b></span> ( QWidget *, const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFromGlobal">mapFromGlobal</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFromParent">mapFromParent</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapTo">mapTo</a></b></span> ( QWidget *, const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapToGlobal">mapToGlobal</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapToParent">mapToParent</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mask">mask</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumHeight-prop">maximumHeight</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">maximumSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumWidth-prop">maximumWidth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#metaObject">metaObject</a></b></span> () const : const QMetaObject *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#metric">metric</a></b></span> ( PaintDeviceMetric ) const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumHeight-prop">minimumHeight</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">minimumSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSizeHint-prop">minimumSizeHint</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumWidth-prop">minimumWidth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseDoubleClickEvent">mouseDoubleClickEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseGrabber">mouseGrabber</a></b></span> () : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseMoveEvent">mouseMoveEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mousePressEvent">mousePressEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseReleaseEvent">mouseReleaseEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">move</a></b></span> ( const QPoint & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">move</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#moveEvent">moveEvent</a></b></span> ( QMoveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#moveToThread">moveToThread</a></b></span> ( QThread * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#nativeParentWidget">nativeParentWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#nextInFocusChain">nextInFocusChain</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#normalGeometry-prop">normalGeometry</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#numColors">numColors</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#objectName-prop">objectName</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#overrideWindowFlags">overrideWindowFlags</a></b></span> ( Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#page">page</a></b></span> () const : QWebPage *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#paintEngine">paintEngine</a></b></span> () const : QPaintEngine *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#paintEvent">paintEvent</a></b></span> ( QPaintEvent * )</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#painters-var">painters</a></b></span> : ushort</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#paintingActive">paintingActive</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#palette-prop">palette</a></b></span> () const : const QPalette &</li>
<li class="fn"><span class="name"><b><a href="qobject.html#parent">parent</a></b></span> () const : QObject *</li>
</ul></td><td class="topAlign"><ul>
<li class="fn"><span class="name"><b><a href="qwidget.html#parentWidget">parentWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#physicalDpiX">physicalDpiX</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#physicalDpiY">physicalDpiY</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#platformWindow">platformWindow</a></b></span> () const : QPlatformWindow *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#platformWindowFormat">platformWindowFormat</a></b></span> () const : QPlatformWindowFormat</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">pos</a></b></span> () const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#previousInFocusChain">previousInFocusChain</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#property">property</a></b></span> ( const char * ) const : QVariant</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#qwsEvent">qwsEvent</a></b></span> ( QWSEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#raise">raise</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#receivers">receivers</a></b></span> ( const char * ) const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#rect-prop">rect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseDC">releaseDC</a></b></span> ( HDC ) const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseKeyboard">releaseKeyboard</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseMouse">releaseMouse</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseShortcut">releaseShortcut</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#removeAction">removeAction</a></b></span> ( QAction * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#removeEventFilter">removeEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#render">render</a></b></span> ( QPaintDevice *, const QPoint &, const QRegion &, RenderFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#render-2">render</a></b></span> ( QPainter *, const QPoint &, const QRegion &, RenderFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint">repaint</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-6">repaint</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-7">repaint</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-8">repaint</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">resize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">resize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#resizeEvent">resizeEvent</a></b></span> ( QResizeEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#restoreGeometry">restoreGeometry</a></b></span> ( const QByteArray & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#saveGeometry">saveGeometry</a></b></span> () const : QByteArray</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#scroll">scroll</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#scroll-2">scroll</a></b></span> ( int, int, const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#sender">sender</a></b></span> () const : QObject *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#senderSignalIndex">senderSignalIndex</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#acceptDrops-prop">setAcceptDrops</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleDescription-prop">setAccessibleDescription</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleName-prop">setAccessibleName</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setAttribute">setAttribute</a></b></span> ( Qt::WidgetAttribute, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#autoFillBackground-prop">setAutoFillBackground</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setBackgroundRole">setBackgroundRole</a></b></span> ( QPalette::ColorRole )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">setBaseSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">setBaseSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setContentsMargins">setContentsMargins</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setContentsMargins-2">setContentsMargins</a></b></span> ( const QMargins & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contextMenuPolicy-prop">setContextMenuPolicy</a></b></span> ( Qt::ContextMenuPolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">setCursor</a></b></span> ( const QCursor & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setDisabled">setDisabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setEditFocus">setEditFocus</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enabled-prop">setEnabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedHeight">setFixedHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedSize">setFixedSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedSize-2">setFixedSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedWidth">setFixedWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocus">setFocus</a></b></span> ( Qt::FocusReason )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocus-2">setFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPolicy-prop">setFocusPolicy</a></b></span> ( Qt::FocusPolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocusProxy">setFocusProxy</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#font-prop">setFont</a></b></span> ( const QFont & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setForegroundRole">setForegroundRole</a></b></span> ( QPalette::ColorRole )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">setGeometry</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">setGeometry</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setGraphicsEffect">setGraphicsEffect</a></b></span> ( QGraphicsEffect * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setHidden">setHidden</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setInputContext">setInputContext</a></b></span> ( QInputContext * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodHints-prop">setInputMethodHints</a></b></span> ( Qt::InputMethodHints )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setLayout">setLayout</a></b></span> ( QLayout * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">setLayoutDirection</a></b></span> ( Qt::LayoutDirection )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">setLocale</a></b></span> ( const QLocale & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setMask">setMask</a></b></span> ( const QBitmap & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setMask-2">setMask</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumHeight-prop">setMaximumHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">setMaximumSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">setMaximumSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumWidth-prop">setMaximumWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumHeight-prop">setMinimumHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">setMinimumSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">setMinimumSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumWidth-prop">setMinimumWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseTracking-prop">setMouseTracking</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#objectName-prop">setObjectName</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#setPage">setPage</a></b></span> ( QWebPage * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#palette-prop">setPalette</a></b></span> ( const QPalette & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setParent">setParent</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setParent-2">setParent</a></b></span> ( QWidget *, Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setPlatformWindow">setPlatformWindow</a></b></span> ( QPlatformWindow * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setPlatformWindowFormat">setPlatformWindowFormat</a></b></span> ( const QPlatformWindowFormat & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#setProperty">setProperty</a></b></span> ( const char *, const QVariant & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setShortcutAutoRepeat">setShortcutAutoRepeat</a></b></span> ( int, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setShortcutEnabled">setShortcutEnabled</a></b></span> ( int, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">setSizeIncrement</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">setSizeIncrement</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">setSizePolicy</a></b></span> ( QSizePolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">setSizePolicy</a></b></span> ( QSizePolicy::Policy, QSizePolicy::Policy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#statusTip-prop">setStatusTip</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setStyle">setStyle</a></b></span> ( QStyle * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#styleSheet-prop">setStyleSheet</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setTabOrder">setTabOrder</a></b></span> ( QWidget *, QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#toolTip-prop">setToolTip</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updatesEnabled-prop">setUpdatesEnabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#visible-prop">setVisible</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#whatsThis-prop">setWhatsThis</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFilePath-prop">setWindowFilePath</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFlags-prop">setWindowFlags</a></b></span> ( Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIcon-prop">setWindowIcon</a></b></span> ( const QIcon & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIconText-prop">setWindowIconText</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModality-prop">setWindowModality</a></b></span> ( Qt::WindowModality )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModified-prop">setWindowModified</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowOpacity-prop">setWindowOpacity</a></b></span> ( qreal )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowRole">setWindowRole</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowState">setWindowState</a></b></span> ( Qt::WindowStates )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowSurface">setWindowSurface</a></b></span> ( QWindowSurface * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowTitle-prop">setWindowTitle</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setupUi">setupUi</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#show">show</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#showEvent">showEvent</a></b></span> ( QShowEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showFullScreen">showFullScreen</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showMaximized">showMaximized</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showMinimized">showMinimized</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showNormal">showNormal</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#signalsBlocked">signalsBlocked</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">size</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwebinspector.html#sizeHint">sizeHint</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">sizeIncrement</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">sizePolicy</a></b></span> () const : QSizePolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#stackUnder">stackUnder</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#startTimer">startTimer</a></b></span> ( int ) : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#staticMetaObject-var">staticMetaObject</a></b></span> : const QMetaObject</li>
<li class="fn"><span class="name"><b><a href="qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b></span> : const QMetaObject</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#statusTip-prop">statusTip</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#style">style</a></b></span> () const : QStyle *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#styleSheet-prop">styleSheet</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#tabletEvent">tabletEvent</a></b></span> ( QTabletEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#testAttribute">testAttribute</a></b></span> ( Qt::WidgetAttribute ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#thread">thread</a></b></span> () const : QThread *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#timerEvent">timerEvent</a></b></span> ( QTimerEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#toolTip-prop">toolTip</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qobject.html#tr">tr</a></b></span> ( const char *, const char *, int ) : QString</li>
<li class="fn"><span class="name"><b><a href="qobject.html#trUtf8">trUtf8</a></b></span> ( const char *, const char *, int ) : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#underMouse">underMouse</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#ungrabGesture">ungrabGesture</a></b></span> ( Qt::GestureType )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">unsetCursor</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">unsetLayoutDirection</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">unsetLocale</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update">update</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-2">update</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-3">update</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-4">update</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updateGeometry">updateGeometry</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updateMicroFocus">updateMicroFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updatesEnabled-prop">updatesEnabled</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#visibleRegion">visibleRegion</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#whatsThis-prop">whatsThis</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#wheelEvent">wheelEvent</a></b></span> ( QWheelEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#width-prop">width</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#widthMM">widthMM</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#winEvent">winEvent</a></b></span> ( MSG *, long * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#winId">winId</a></b></span> () const : WId</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#window">window</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFilePath-prop">windowFilePath</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFlags-prop">windowFlags</a></b></span> () const : Qt::WindowFlags</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIcon-prop">windowIcon</a></b></span> () const : QIcon</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIconText-prop">windowIconText</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModality-prop">windowModality</a></b></span> () const : Qt::WindowModality</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowOpacity-prop">windowOpacity</a></b></span> () const : qreal</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowRole">windowRole</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowState">windowState</a></b></span> () const : Qt::WindowStates</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowSurface">windowSurface</a></b></span> () const : QWindowSurface *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowTitle-prop">windowTitle</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowType">windowType</a></b></span> () const : Qt::WindowType</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x-prop">x</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11Event">x11Event</a></b></span> ( XEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11Info">x11Info</a></b></span> () const : const QX11Info &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11PictureHandle">x11PictureHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#y-prop">y</a></b></span> () const : int</li>
</ul>
</td></tr>
</table>
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2013 Digia Plc and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
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.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Digia, Qt and their respective logos are trademarks of Digia Plc
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
| stephaneAG/PengPod700 | QtEsrc/qt-everywhere-opensource-src-4.8.5/doc/html/qwebinspector-members.html | HTML | mit | 53,611 |
{% extends "index.html" %}
{% load i18n %}
{% load static %}
{% block title %}FragDenStaat - Portal für Informationsfreiheit und Transparenz{% endblock %}
{% block index_content_row %}
{% include "snippets/homepage_how.html" %}
{% endblock %}
{% block index_requests_row %}
<div class="row">
<div class="col-md-6">
<div class="card">
{% if successful_foi_requests %}
<h4 class="card-header">
{% blocktrans %}Successful Requests{% endblocktrans %}
</h4>
<div class="card-body">
<ul class="list-unstyled">
{% for object in successful_foi_requests %}
<li class="media">
{% include "foirequest/snippets/request_item.html" %}
</li>
{% endfor %}
</ul>
<p>
<a class="btn btn-default" href="{% url "foirequest-list" %}">Weitere Anfragen</a>
</p>
</div>
{% endif %}
</div>
</div>
<div class="col-md-6">
<div class="card">
<h4 class="card-header">
Blog
</h4>
<div class="card-body">
{% for object in featured %}
<h5>
<a href="{{ object.url }}">{{ object.title }}</a>
</h5>
<p>
{{ object.text|truncatewords:55|linebreaksbr }}
</p>
{% if object.request %}
<p>
<a href="{% url 'foirequest-show' slug=object.request.slug %}">
<span class="glyphicon glyphicon-share-alt"></span>
{% blocktrans %}Visit this request{% endblocktrans %}
</a>
</p>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}
| fin/fragdenstaat.at | fragdenstaat_at/theme/templates/index.html | HTML | mit | 1,718 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Earth Addresser</title>
<link rel="stylesheet" type="text/css" href="../Help.css">
</head>
<body>
<div id="main">
<h1>Earth Addresser</h1>
<p>
Putting your addresses on the map.
</p>
<p>
Love <a href="http://earth.google.com/">Google Earth</a> and have all your friends’ contact information in your Mac’s Contacts application? Then you will like Earth Addresser! It takes your contacts’ addresses and writes them to a <a href="http://code.google.com/apis/kml/documentation/">KML Placemark file</a> which Google Earth can open to display your friends’ places right on the globe. If you have added photos for them in Contacts, those will appear instead of the usual drawing pin when viewing the file on your own computer.
</p>
<p>
For Google Earth to able to display your friends’ addresses in the correct location, they need to be converted to coordinates on the surface of the earth (longitude and latitude) first. That conversion is done by your Mac’s built-in Maps service which Earth Addresser send the addresses to. <strong>If you are not comfortable with sending all those addresses to Apple, be sure to <em>not</em> use Earth Addresser.</strong>
</p>
<p>
Please keep in mind that Apple’s Maps service may be unable to determine the coordinates for some of your contacts’ addresses. A complete list of those addresses can be seen by using the “List All Non-locatable Addresses” command in the Help menu. Typical reasons for addresses not being locatable are the following:
</p>
<dl>
<dt>Country Information:</dt>
<dd>Earth Addresser does <em>not</em> use the country you typed into the Contacts application when looking up addresses. This is done because there can be different styles, spellings and language versions of country names. Instead, Earth Addresser uses the <em>address format</em> which you have set up for the address – usually this defaults to the format of your home country. You can adjust the address format in the menu that appears when you click the address’ label while editing in the Contacts application.
</dd>
<dt>Unknown words in addresses:</dt>
<dd>Apple’s address lookup service may fail to correctly locate addresses which include auxiliary information like room numbers. Earth Addresser removes lines with terms like “Room” from the address to avoid that. You can edit the list of these terms in the Preferences window.
</dd>
<dt>Apple’s Coverage:</dt>
<dd>Apple’s maps service does not cover all countries on the planet to the same degree. In some countries their database will not know all the street names. In addition to that the native spelling of an addresses can differ from the one you may find logical. It may take a bit of tinkering to figure out whether Apple’s maps service can ultimately locate an address.
</dd>
</dl>
<p>
Thanks to Nat Bletter for starting a vaguely related discussion that eventually lead to this application, to Dan Wood for Cocoa advice and to Ronald Leroux for the French localisation.
</p>
<p>
Enjoy.
</p>
<h2>Links</h2>
<ul class="links">
<li class="i1"><a href="http://earthlingsoft.net/Earth%20Addresser">Earth Addresser website</a></li>
<li><a href="http://earthlingsoft.net/">earthlingsoft website</a></li>
<li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=earthlingsoft%40earthlingsoft.net&item_name=Earth%20Addresser&no_shipping=1&cn=Comments&tax=0&currency_code=EUR&lc=US">Donate</a></li>
<li><a href="mailto:[email protected]?subject=Earth%20Addresser">Send E-Mail</a></li>
<li><a href="https://github.com/earthlingsoft/Earth-Addresser">Source Code at github</a></li>
<li><a href="http://earthlingsoft.net/ssp/blog/2007/03/earth_addresser#comments">Leave a Comment</a></li>
</ul>
<h2>Version History</h2>
<dl class="versions" id="latestversion">
<dt>v3.1 (2016-01-??)</dt>
<dd>
<ul>
<li>Fix incorrect display in address lookup progress bar.</li>
<li>Simplify display of notice that agreement is required.</li>
<li>Improve localisations.</li>
<li>Fix group selection.</li>
</ul>
</dd>
<dt>v3 (2014-08-06)</dt>
<dd>
<ul>
<li>Improve address lookup.</li>
<li>Add French readme.</li>
<li>Improve readmes.</li>
</ul>
</dd>
<dt>v3b5 (2014-07-30)</dt>
<dd>
<ul>
<li>Localisation improvements.</li>
<li>Add menu item “Close”.</li>
<li>Add note about Google Earth preferences to “Link to Contacts card” checkbox.</li>
</ul>
</dd>
<dt>v3b4 (2014-07-30)</dt>
<dd>
<ul>
<li>Fix glitches in address lookup progress display.</li>
<li>Use default country (as set in Contacts preferences) for address lookups when no country code/address format information is present.</li>
<li>Use country-specific address formats as used in the Contacts application.</li>
<li>Further code modernisation.</li>
<li>Localisation improvements.</li>
</ul>
</dd>
<dt>v3b3 (2014-07-29)</dt>
<dd>
<ul>
<li>Hack: Use file: instead of addressbook: URL to open contact card (Google Earth will not open the latter).</li>
</ul>
</dd>
<dt>v3b2 (2014-07-29)</dt>
<dd>
<ul>
<li>Add preferences window to make the strings removed from addresses and the labels indicating old data configurable.</li>
<li>Modernise code.</li>
<li>Indent the XML output.</li>
<li>Require just Mac OS X.8.</li>
</ul>
</dd>
<dt>v3b1 (2014-07-15)</dt>
<dd>
<ul>
<li>Requires Mac OS X.9.</li>
<li>Use Apple’s CoreLocation framework for address look up instead of Google Maps.</li>
<li>Use Apple Maps icon.</li>
<li>Refer to Apple Maps in Readme.</li>
<li>Use Sparkle for automatic updating.</li>
<li>Avoid using deprecated methods.</li>
</ul>
</dd>
</dl>
<dl class="versions" id="oldversions">
<dt>v2.4 (2010-07-29)</dt>
<dd>
<ul>
<li>Includes 64bit executable.</li>
<li>More efficient memory usage.</li>
<li>Address Lookup and Placemark file creation can be cancelled on Mac OS X.5 and above.</li>
<li>Support for Sudden Termination in Mac OS X.6 and above.</li>
<li>Removed duplicate documentation.</li>
<li>Solves problem with images appearing too large when set to use the minimal size (Thanks to Steve Parker for pointing this out).</li>
<li>Doesn’t create image files when they are not needed (Thanks to Steve Parker for pointing this out).</li>
<li>Fixes failure of address grouping in some situations (Thanks to Steve Parker for his help).</li>
<li>Prevents application from being quit while performing lookups.</li>
<li>Placemarks can be created without the address and label.</li>
<li>Phone numbers, e-mail addresses and web pages labelled “old” are not included in placemarks.</li>
</ul>
</dd>
<dt>v2.3 (2009-04-01)</dt>
<dd>
<ul>
<li>New option to group addresses by label.</li>
<li>New option to hide addresses labelled “Old” or “Alt” or “Ancienne” by default.</li>
<li>New command to repeat look-ups which failed previously.</li>
<li>Improves address look-up progress display.</li>
<li>Slight accessibility Improvements.</li>
<li>Fixes tab order in the main window.</li>
<li>Fixes capitalisation of strings in English interface.</li>
</ul>
</dd>
<dt>v2.2 (2009-03-03)</dt>
<dd>
<ul>
<li>Uses own ‘home’ and ‘work’ icons for contacts without a photo.</li>
<li>Adapted icon to match Google Earth 5’s.</li>
<li>Improved handling of a lack of internet connection.</li>
</ul>
</dd>
<dt>v2.1 (2009-01-30)</dt>
<dd>
<ul>
<li>Resolves the excessive memory consumption when processing large address books. Thanks to Steve Parker for pointing out the problem.</li>
<li>Improved localisation of PayPal Links.</li>
</ul>
</dd>
<dt>v2 (2009-01-28)</dt>
<dd>
<ul>
<li>User Interface completely redesigned.</li>
<li>Addresses are now looked up – and cached – by Earth Addresser.</li>
<li>More options for what is written in the KML file.</li>
<li>Info bubbles appearing in Google Earth now contain photos.</li>
<li>Improved clickability of links to Address Book records in Google Earth.</li>
<li>A list of addresses which could not be located can be displayed.</li>
<li>Added English localisation for new user interface.</li>
</ul>
</dd>
<dt>v1r2 (2007-04-25)</dt>
<dd>
Fixed the version checker to do the right thing.
</dd>
<dt>v1 (2007-03-30)</dt>
<dd>
First public release.
</dd>
<dt>version 1b3 (2007-03-28)</dt>
<dd>
<ul>
<li>added checking for updates</li>
<li>added French localisation contributed by Ronald Leroux</li>
<li>added German localisation</li>
<li>minor UI improvements</li>
</ul>
</dd>
<dt>version 1b2 (2007-03-27)</dt>
<dd>
hopefully fixed a problem that made the application stall
</dd>
<dt>version 1b (2007-03-26)</dt>
<dd>
<ul>
<li>first testing release</li>
<li>more fixes and polish</li>
</ul>
</dd>
<dt>version 0.4 (unreleased)</dt>
<dd>
<ul>
<li>removed the 'smarts' again as they didn't work</li>
<li>new strategy: write image files to Application Support folder and output a KML file only</li>
<li>set size of images in Preferences</li>
</ul>
</dd>
<dt>version 0.3 (unreleased)</dt>
<dd>
<ul>
<li>introduced the 'smarts' to pack everything up in a nice KMZ file</li>
<li>unfortunately GoogleEarth doesn't load Icon href elements from within the KMZ file</li>
<li>also removed colons from id attributes and file names</li>
</ul>
</dd>
<dt>version 0.2 (unreleased)</dt>
<dd>
rewrote XML generation to use NSXML so we can have actual, properly-escaped XML
</dd>
<dt>version 0.1 (unreleased)</dt>
<dd>
initial build
</dd>
</dl>
<p id="morehistorylinks"><a href="#oldversions" id="showolder">Complete list</a></p>
<h2>License</h2>
<h3>
The MIT License (MIT)
</h3>
<p>
Copyright (c) 2006-2016 Sven-S. Porst, earthlingsoft
</p>
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
</p><p>
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
</p><p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</p>
</div>
</body>
</html> | earthlingsoft/Earth-Addresser | Resources/en.lproj/readme.html | HTML | mit | 11,682 |
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/debugger-test.js"></script>
<script src="../../http/tests/inspector/elements-test.js"></script>
<script>
function testFunction()
{
return testFunction2();
}
function testFunction2()
{
var x = Math.sqrt(10);
debugger;
return x;
}
var test = function()
{
InspectorTest.startDebuggerTest(step1);
var panel = WebInspector.panels.sources;
var sourceFrame;
function step1()
{
var testName = WebInspector.inspectedPageURL;
testName = testName.substring(testName.lastIndexOf('/') + 1);
InspectorTest.showScriptSource(testName, step2);
}
function step2(frame)
{
sourceFrame = frame;
InspectorTest.runTestFunctionAndWaitUntilPaused(step3);
}
function step3()
{
InspectorTest.completeDebuggerTest(); return;
WebInspector.debuggerModel.setSelectedCallFrame(WebInspector.debuggerModel.debuggerPausedDetails().callFrames[1]);
sourceFrame._toggleFormatSource(step4);
}
function step4()
{
InspectorTest.assertEquals("testFunction", WebInspector.debuggerModel.selectedCallFrame().functionName);
sourceFrame._toggleFormatSource(step5);
}
function step5()
{
InspectorTest.completeDebuggerTest();
}
}
</script>
</head>
<body onload="runTest()">
<p>Tests selected call frame does not change when pretty-print is toggled.</p>
<a href="https://bugs.webkit.org/show_bug.cgi?id=70906">Bug 70906</a>
</body>
</html>
| lordmos/blink | LayoutTests/inspector/debugger/selected-call-frame-after-formatting-source.html | HTML | mit | 1,598 |
---
layout: phplist_nocontents_layout_v2
---
<row class="am_body">
<columns>
<h1 class="am_header_small">Зміна тарифікаційної моделі на послугу «Колокейшн»</h1>
<h4>Інформаційний лист 08/2016</h4>
</columns>
</row>
<row class="am_body">
<columns>
<p>Компанія Старлінк інформує Вас про зміни у тарифікації послуги «Колокейшн».</p>
<p>Виходячи зі значних змін у вартості електроенергії і бажання продовжувати надавати послуги найвищої якості з привабливими цінами, ми змінили тарифну модель для послуги «Колокейшн»:</p>
</columns>
</row>
<row class="am_body am_smalldivider">
<columns large="9">
<ol>
<li>Базовим параметром для тарифікації залишається <em>розмір сервера у юнітах</em>. Чим більше юнітів Ви орендуєте, тим нижчою стає вартість одного юніта;</li>
<li>Другим параметром тарифікації стає <em>потужність блока живлення</em> сервера в кіловатах. Таким чином, з використанням більш потужних блоків живлення, вартість послуги збільшується. І навпаки, перехід на більш ефективну платформу з меншим використанням електроенергії дає Вам можливість знизити витрати на послуги Колокейшн.</li>
<li>Нарешті, <em>швидкість Інтернет-каналу в межах України і в межах світу</em> залишається третім компонентом вартості послуги. Звертаємо увагу, що швидкість каналу по Україні і світу Ви вибираєте окремо, виходячи з Ваших потреб.<br>
<em>Ціни на Інтернет-канали знижені на <strong>5-20%</strong> у порівнянні з попередніми цінами в залежності від пакету.</em></li>
</ol>
</columns>
<columns large="3">
<callout class="success">
<p>Незважаючи на врахування витрат електроенергії, наші тарифи залишаються дуже конкурентними. Більш того, ми майже єдиний оператор ринку, який надає прозору інформацію про чинникі, які впливають на вартість послуги «Колокейшн»</p>
</callout>
</columns>
</row>
<row class="am_body am_smalldivider">
<columns>
<p>В результаті зазначених змін нова тарифікаційна модель для послуги «Колокейшн» виглядає наступним чином:<br>
<img src="http://starlink.ua/design/starlink/images/new/20160725_collocation.png" alt="Нова тарифікація послуги Колокейшн" title="Нова тарифікація послуги Колокейшн"></p>
<img src="http://starlink.ua/design/starlink/images/new/spacer16px.png">
</columns>
</row>
<row class="am_body am_smalldivider">
<columns>
<h2>Детальний прайс-лист на послугу «Колокейшн»</h2>
<p>
<table class="am_price am_price_size">
<caption>I. Вартість оренди місця у шафі</caption>
<tr>
<th class="am_price_column1">Розмір сервера у юнітах</th>
<th>Ціна за юніт, грн</th>
</tr>
<tr>
<td>1-3 U</td>
<td>190</td>
</tr>
<tr>
<td>4-6 U</td>
<td>180</td>
</tr>
<tr>
<td>5-10 U</td>
<td>160</td>
</tr>
<tr>
<td>половина шафи і більше</td>
<td>за домовленістю</td>
</tr>
</table>
<br>
<table class="am_price am_price_electricity">
<caption>II. Вартість забезпечення електроенергією</caption>
<tr>
<th class="am_price_column1">Потужність блоку живлення *</th>
<th>Ціна за кожні 100 Вт, грн</th>
</tr>
<tr>
<td>до 200 Вт</td>
<td>65</td>
</tr>
<tr>
<td>201-400 Вт</td>
<td>70</td>
</tr>
<tr>
<td>401-800 Вт</td>
<td>75</td>
</tr>
<tr>
<td>> 800 Вт</td>
<td>70 </td>
</tr>
<tfoot>
<tr>
<td colspan="2"><em>* Другий блок живлення в якості резервного: додатково 50 грн в місяць</em></td>
</tr>
</tfoot>
</table>
<br>
<table class="am_price am_price_internet">
<caption>III. Вартість Інтернет-каналу</caption>
<tr>
<th class="am_price_internet_columnUA">UA (вхід = вихід)</th>
<th>Ціна, грн</th>
<th class="am_price_internet_columnWorld">World (вхід / вихід)</th>
<th>Ціна, грн</th>
</tr>
<tr>
<td rowspan="2" class="am_solid">100 Мбіт/с</td>
<td rowspan="2" class="am_solid">80</td>
<td>5/20 Мбіт/с</td>
<td>60</td>
</tr>
<tr>
<td class="am_solid">10/50 Мбіт/с</td>
<td class="am_solid">170</td>
</tr>
<tr>
<td rowspan="2" class="am_solid">200 Мбіт/с</td>
<td rowspan="2" class="am_solid">140</td>
<td>20/100 Мбіт/с</td>
<td>300</td>
</tr>
<tr>
<td class="am_solid">40/200 Мбіт/с</td>
<td class="am_solid">500</td>
</tr>
<tr>
<td rowspan="2" class="am_solid">1 Гбіт/с</td>
<td rowspan="2" class="am_solid">470</td>
<td>80/400 Мбіт/с</td>
<td>950</td>
</tr>
<tr>
<td class="am_solid">100/500 Мбіт/с</td>
<td class="am_solid">1350</td>
</tr>
<tr>
<td>> 1 Гбіт/с</td>
<td>за домовленістю</td>
<td>> 100/500 Мбіт/с</td>
<td>за домовленістю</td>
</tr>
<tfoot>
<tr>
<td colspan="4"><em>* Обмеження по середньому завантаженню каналу: до 30% в місяць</em></td>
</tr>
</tfoot>
</table>
<br>
<table class="am_price am_price_extra">
<caption>IV. Додаткові послуги</caption>
<tr>
<th class="am_price_column1">Опис послуги</th>
<th>Ціна, грн / місяць</th>
</tr>
<tr>
<td>підвищення швидкості порту до 1 Гбіт/с</td>
<td>20</td>
</tr>
<tr>
<td>додатковий порт 1 Гбіт/с</td>
<td>50</td>
</tr>
<tr>
<td>додаткова адреса IP v4</td>
<td>50</td>
</tr>
<tr>
<td>безпечний віддалений доступ до серверної консолі</td>
<td>40</td>
</tr>
<tr>
<td>система моніторінгу сервера</td>
<td>60</td>
</tr>
</table>
</p>
</columns>
</row>
<row class="am_body am_smalldivider">
<columns>
<p>Вищевказані зміни у тарифікації вступають в дію з <time datetime="2016-08-01" title="2016-08-01">1 серпня 2016 р.</time> для нових контрактів. Внесення змін у існуючі контракти буде відбуватись на протязі серпня-вересня 2016 р.</p>
<p></p>
<p>Звертайтесь до нас з питаннями за телефоном <a href="tel:+380443777090">+380 44 377-7090</a> або натисніть кнопку нижче для електронного повідомлення.</p>
<center>
<button class="large" href="mailto:[email protected]?subject=Зміна тарифікаційної моделі на послуги з колокейшн">Зв'язатись з нами</button>
</center>
</columns>
</row> | maoizm/email-sass | src/pages/20160725_letter_CollocationNew.html | HTML | mit | 8,829 |
<div class="footer">
<div class="container-fluid">
<div class="row-fluid">
<div class="col-md-12">
Copyright © 2017 {{ site.author.name }} - All rights reserved.
</div>
</div>
</div>
</div>
| flowstone/resume | _includes/footer.html | HTML | mit | 259 |
<html>
<META HTTP-EQUIV=Content-Type Content="text/html; charset=utf8">
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/02017/02017100010700.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:17:45 GMT -->
<head><title>法編號:02017 版本:100010700</title>
<link rel="stylesheet" type="text/css" href="../../version.css" >
</HEAD>
<body><left>
<table><tr><td><FONT COLOR=blue SIZE=5>道路交通管理處罰條例(02017)</font>
<table><tr><td> </td><td>
<table><tr><td> </td><td>
<table><tr><td> </td>
<tr><td align=left valign=top>
<a href=0201757012400.html target=law02017><nobr><font size=2>中華民國 57 年 1 月 24 日</font></nobr></a>
</td>
<td valign=top><font size=2>制定77條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 57 年 2 月 5 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 57 年 5 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201758011400.html target=law02017><nobr><font size=2>中華民國 58 年 1 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第14, 75條<br>
增訂第76至78條原第七十六條及第七十七條分別遞改為第七十九條及第八十條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 58 年 1 月 27 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201764071100.html target=law02017><nobr><font size=2>中華民國 64 年 7 月 11 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文93條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 64 年 7 月 24 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 65 年 1 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201770071700.html target=law02017><nobr><font size=2>中華民國 70 年 7 月 17 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第8, 21, 27, 31, 33, 54, 65, 66, 67, 89條<br>
增訂第37之1條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 70 年 7 月 29 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 71 年 1 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201775051300.html target=law02017><nobr><font size=2>中華民國 75 年 5 月 13 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正全文93條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 75 年 5 月 21 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 76 年 7 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201785123100.html target=law02017><nobr><font size=2>中華民國 85 年 12 月 31 日</font></nobr></a>
</td>
<td valign=top><font size=2>增訂第7之1, 63之1, 81之1, 82之1, 85之1條<br>
修正第3, 7, 8, 12, 15至17, 24, 27, 29, 30, 31, 33, 35至38, 44, 55, 56, 57, 59, 60, 62, 63, 64, 65, 67, 86, 87, 90條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 86 年 1 月 22 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 86 年 3 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201786040800.html target=law02017><nobr><font size=2>中華民國 86 年 4 月 8 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第12, 14條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 86 年 4 月 23 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 86 年 6 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201788033000.html target=law02017><nobr><font size=2>中華民國 88 年 3 月 30 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第37條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 88 年 4 月 21 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 88 年 7 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201790010200.html target=law02017><nobr><font size=2>中華民國 90 年 1 月 2 日</font></nobr></a>
</td>
<td valign=top><font size=2>增訂第18之1, 21之1, 29之1, 29之2, 31之1, 85之1至85之4, 90之1, 90之2條<br>
刪除第64, 77, 79條<br>
修正第8, 9, 12, 13, 14, 19, 21, 25, 28, 29, 30, 31, 33, 34, 35, 37, 39, 40, 41, 43, 45, 47, 51, 52, 53, 55, 56, 57, 60, 61, 63, 67, 75, 78, 80, 81, 82, 83, 84, 87, 90, 93條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 90 年 1 月 17 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 90 年 6 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201791060700.html target=law02017><nobr><font size=2>中華民國 91 年 6 月 7 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第4, 9, 12, 16, 21之1, 24, 29, 30, 33, 35, 37, 62, 82之1, 85之1, 85之2, 92條<br>
增訂第7之2, 9之1, 29之3, 29之4條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 91 年 7 月 3 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 91 年 9 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201791121300.html target=law02017><nobr><font size=2>中華民國 91 年 12 月 13 日</font></nobr></a>
</td>
<td valign=top><font size=2>增訂第92之1條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 92 年 1 月 2 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 92 年 6 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201793040900.html target=law02017><nobr><font size=2>中華民國 93 年 4 月 9 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第61條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 93 年 4 月 21 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 93 年 7 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201794012100.html target=law02017><nobr><font size=2>中華民國 94 年 1 月 21 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第56條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 94 年 2 月 5 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 94 年 9 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201794112200.html target=law02017><nobr><font size=2>中華民國 94 年 11 月 22 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第68條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 94 年 12 月 14 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 95 年 3 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201794120900.html target=law02017><nobr><font size=2>中華民國 94 年 12 月 9 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第3, 5, 7之2, 8至10, 12至16, 18, 20至26, 29, 29之2, 29之3, 30, 31, 32, 33, 35至38, 40, 42至50, 53至55, 57至63, 65至67, 69, 71至74, 76, 78, 80, 82, 83至85之1, 85之3, 90之2, 92條<br>
增訂第31之2, 32之1, 67之1, 90之3條<br>
刪除第28條<br>
第3、5、7之2、8至10、12至16、18、20至26、29、29之3、30、32、33、35至38、40、43至50、53至55、57至63、65至67之1、69、71、72、74、76、78、80、85、85之1、85之3、90之2、90之3、92條,及刪除第28條,定自95年7月1日施行;第29之2、31、31之2、32之1、42、73、82、83、84條,定自96年1月1日施行</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 94 年 12 月 28 日公布</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201796011200.html target=law02017><nobr><font size=2>中華民國 96 年 1 月 12 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第9之1, 92條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 96 年 1 月 29 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 96 年 11 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201796061400.html target=law02017><nobr><font size=2>中華民國 96 年 6 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第69條<br>
增訂第69之1條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 96 年 7 月 4 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 97 年 4 月 15 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201797050900.html target=law02017><nobr><font size=2>中華民國 97 年 5 月 9 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第65條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 97 年 5 月 28 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 97 年 9 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=0201799042000.html target=law02017><nobr><font size=2>中華民國 99 年 4 月 20 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第68條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 99 年 5 月 5 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 99 年 9 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017100010700.html target=law02017><nobr><font size=2>中華民國 100 年 1 月 7 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第35條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 1 月 19 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 2 月 15 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017100042200.html target=law02017><nobr><font size=2>中華民國 100 年 4 月 22 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第31條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 5 月 11 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 8 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017100050300.html target=law02017><nobr><font size=2>中華民國 100 年 5 月 3 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第45, 55, 78條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 5 月 18 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 101 年 8 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017100110400.html target=law02017><nobr><font size=2>中華民國 100 年 11 月 4 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第65, 85, 87條<br>
刪除第88, 89, 90之2條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 11 月 23 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 101 年 9 月 6 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017100110800.html target=law02017><nobr><font size=2>中華民國 100 年 11 月 8 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第92條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 100 年 11 月 23 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 101 年 7 月 1 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017101050800.html target=law02017><nobr><font size=2>中華民國 101 年 5 月 8 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第3, 4, 7之2, 21, 21之1, 22, 27, 31, 31之1, 33, 35, 43, 45, 54, 85之2, 90之3, 91, 92條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 101 年 5 月 30 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 101 年 10 月 15 日施行</font></nobr></td>
<tr><td align=left valign=top>
<a href=02017102011400.html target=law02017><nobr><font size=2>中華民國 102 年 1 月 14 日</font></nobr></a>
</td>
<td valign=top><font size=2>修正第8, 35, 67條</font></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 102 年 1 月 30 日公布</font></nobr></td>
<tr><td align=left valign=top><nobr><font size=2>中華民國 102 年 3 月 1 日施行</font></nobr></td>
</table></table></table></table>
<p><table><tr><td><font color=blue size=4>民國100年1月7日(非現行條文)</font></td>
<td><a href=http://lis.ly.gov.tw/lghtml/lawstat/reason2/02017100010700.htm target=reason><font size=2>立法理由</font></a></td>
<td><a href=http://lis.ly.gov.tw/lgcgi/lglawproc?02017100010700 target=proc><font size=2>立法紀錄</font></a></td>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第一章 總則</font>
<table><tr><td> </td><td><font color=8000ff>第一條</font>
</font>
<table><tr><td> </td>
<td>
為加強道路交通管理,維護交通秩序,確保交通安全,制定本條例。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二條</font>
</font>
<table><tr><td> </td>
<td>
道路交通管理、處罰,依本條例規定;本條例未規定者,依其他法律規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三條</font>
</font>
<table><tr><td> </td>
<td>
本條例所用名詞釋義如下:<br>
一、道路:指公路、街道、巷衖、廣場、騎樓、走廊或其他供公眾通行之地方。<br>
二、車道:指以劃分島、護欄或標線劃定道路之部分,及其他供車輛行駛之道路。<br>
三、人行道:指為專供行人通行之騎樓、走廊,及劃設供行人行走之地面道路,與人行天橋及人行地下道。<br>
四、行人穿越道:指在道路上以標線劃設,供行人穿越道路之地方。<br>
五、標誌:指管制道路交通,表示警告、禁制、指示,而以文字或圖案繪製之標牌。<br>
六、標線:指管制道路交通,表示警告、禁制、指示,而在路面或其他設施上劃設之線條、圖形或文字。<br>
七、號誌:指管制道路交通,表示行進、注意、停止,而以手勢、光色、音響、文字等指示之訊號。<br>
八、車輛:指在道路上以原動機行駛之汽車(包括機器腳踏車)或以人力、獸力行駛之車輛。<br>
九、臨時停車:指車輛因上、下人、客,裝卸物品,其引擎未熄火,停止時間未滿三分鐘,保持立即行駛之狀態。<br>
十、停車:指車輛停放於道路兩側或停車場所,而不立即行駛。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四條</font>
</font>
<table><tr><td> </td>
<td>
駕駛人駕駛車輛或行人在道路上,應遵守道路交通標誌、標線、號誌之指示、警告、禁制規定,並服從執行交通勤務之警察或依法令執行指揮交通及交通稽查任務人員之指揮。<br>
前項道路交通標誌、標線、號誌之指示、警告、禁制規定、樣式、標示方式、設置基準及設置地點等事項之規則,由交通部會同內政部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五條</font>
</font>
<table><tr><td> </td>
<td>
為維護道路交通安全與暢通,公路或警察機關於必要時,得就下列事項發布命令:<br>
一、指定某線道路或某線道路區段禁止或限制車輛、行人通行,或禁止穿越道路,或禁止停車及臨時停車。<br>
二、劃定行人徒步區。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六條</font>
</font>
<table><tr><td> </td>
<td>
道路因車輛或行人臨時通行量顯著增加,或遇突發事故,足使交通陷於停滯或混亂時,警察機關或執行交通勤務之警察,得調撥車道或禁止、限制車輛或行人通行。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七條</font>
</font>
<table><tr><td> </td>
<td>
道路交通管理之稽查,違規紀錄,由交通勤務警察,或依法令執行交通稽查任務人員執行之。<br>
前項稽查,得由交通助理人員協助執行,其稽查項目為違規停車者,並得由交通助理人員逕行執行之;其設置、訓練及執行之辦法,由內政部會同交通部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七條之一</font>
</font>
<table><tr><td> </td>
<td>
對於違反本條例之行為者,民眾得敘明違規事實或檢具違規證據資料,向公路主管或警察機關檢舉,經查證屬實者,應即舉發。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七條之二</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人之行為有下列情形之一,當場不能或不宜攔截製單舉發者,得逕行舉發:<br>
一、闖紅燈或平交道。<br>
二、搶越行人穿越道。<br>
三、在道路收費停車處所停車,不依規定繳費。<br>
四、不服指揮稽查而逃逸,或聞消防車、救護車、警備車、工程救險車之警號不立即避讓。<br>
五、違規停車或搶越行人穿越道,經各級學校交通服務隊現場導護人員簽證檢舉。<br>
六、行經設有收費站、地磅之道路,不依規定停車繳費或過磅。<br>
七、經以科學儀器取得證據資料證明其行為違規。<br>
前項第七款之科學儀器應採固定式,並定期於網站公布其設置地點。但汽車駕駛人之行為屬下列情形之一者,不在此限:<br>
一、蛇行、危險方式駕車或二輛以上之汽車競駛或競技。<br>
二、行駛路肩。<br>
三、違規超車。<br>
四、違規停車而駕駛人不在場。<br>
五、未依規定行駛車道。<br>
六、未依規定變換車道。<br>
七、未保持安全距離。<br>
八、跨越禁止變換車道線或槽化線。<br>
九、行車速度超過規定之最高速限或低於規定之最低速限。<br>
十、汽車駕駛人或乘客未依規定繫安全帶。<br>
十一、汽車駕駛人或附載座人未依規定戴安全帽。<br>
對於前項第九款之違規行為,採用固定或非固定式科學儀器取得證據資料證明者,於一般道路須至少於一百公尺,於高速公路、快速公路須至少於三百公尺前,明顯標示之。<br>
第一項逕行舉發,應記明車輛牌照號碼、車型等可資辨明之資料,以汽車所有人為被通知人製單舉發。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八條</font>
</font>
<table><tr><td> </td>
<td>
違反本條例之行為,由下列機關處罰之:<br>
一、第十二條至第六十八條由公路主管機關處罰。<br>
二、第六十九條至第八十四條由警察機關處罰。<br>
前項處罰於裁決前,應給予違規行為人陳述之機會。<br>
第一項第一款之處罰,公路主管機關應設置交通裁決單位辦理;其組織規程由交通部、直轄市政府定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九條</font>
</font>
<table><tr><td> </td>
<td>
本條例所定罰鍰之處罰,受處罰人接獲違反道路交通管理事件通知單後,於十五日內得不經裁決,逕依第九十二條第三項之罰鍰基準規定,向指定之處所繳納結案;不服舉發事實者,應於十五日內,向處罰機關陳述意見;其不依通知所定期限前往指定處所聽候裁決,且未依規定期限繳納罰鍰結案或向處罰機關陳述意見者,處罰機關得逕行裁決之。<br>
本條例之罰鍰,應提撥一定比例專款專用於改善道路交通;其分配、提撥比例及運用等事項之辦法,由交通部會同內政部、財政部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車所有人或駕駛人應於向公路監理機關辦理汽車檢驗、各項登記或換發牌照、執照前,繳清其所有違反本條例第二章、第三章尚未結案之罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十條</font>
</font>
<table><tr><td> </td>
<td>
車輛所有人、駕駛人、行人、道路障礙者,違反道路交通管理,依法應負刑事責任者,分別移送該管地方法院檢察署、地方法院少年法庭或軍事機關處理。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十一條</font>
</font>
<table><tr><td> </td>
<td>
軍用車輛及軍用車輛駕駛人,應遵守本條例有關道路交通管理之規定,並服從執行交通勤務之警察及憲兵指揮。<br>
國軍編制內之軍用車輛及軍用車輛駕駛人,違反前項規定之處罰,由國防部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第二章 汽車</font>
<table><tr><td> </td><td><font color=8000ff>第十二條</font>
</font>
<table><tr><td> </td>
<td>
汽車有下列情形之一者,處汽車所有人新臺幣三千六百元以上一萬零八百元以下罰鍰,並禁止其行駛:<br>
一、未領用牌照行駛。<br>
二、拼裝車輛未經核准領用牌證行駛,或已領用牌證而變更原登檢規格、不依原規定用途行駛。<br>
三、使用偽造、變造或矇領之牌照。<br>
四、使用吊銷、註銷之牌照行駛。<br>
五、牌照借供他車使用或使用他車牌照行駛。<br>
六、牌照吊扣期間行駛。<br>
七、已領有號牌而未懸掛或不依指定位置懸掛。<br>
八、牌照業經繳銷、報停、吊銷、註銷,無牌照仍行駛。<br>
九、報廢登記之汽車仍行駛。<br>
十、號牌遺失不報請公路主管機關補發,經舉發後仍不辦理而行駛。<br>
前項第一款中屬未依公路法規定取得安全審驗合格證明,及第二款、第九款之車輛並沒入之;第三款、第四款之牌照扣繳之;第五款至第七款之牌照吊銷之。<br>
第一項第四款、第六款及第八款之汽車當場移置保管,並通知汽車所有人限期領回之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車行駛有下列情形之一者,處汽車所有人新臺幣二千四百元以上四千八百元以下罰鍰,並責令申請換領牌照或改正:<br>
一、損毀或變造汽車牌照、塗抹污損牌照,或以安裝其他器具之方式,使不能辨認其牌號。<br>
二、塗改客、貨車身標明之載客人數、載重量、總重量或總聯結重量,與原核定數量不符。<br>
三、引擎號碼或車身號碼,與原登記位置或模型不符。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十四條</font>
</font>
<table><tr><td> </td>
<td>
汽車行駛有下列情形之一者,處汽車所有人新臺幣三百元以上六百元以下罰鍰,並責令改正、補換牌照或禁止其行駛:<br>
一、牌照遺失或破損,不報請公路主管機關補發、換發或重新申請。<br>
二、行車執照、拖車使用證或預備引擎使用證,未隨車攜帶。<br>
三、號牌污穢,不洗刷清楚或為他物遮蔽,非行車途中因遇雨、雪道路泥濘所致。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車有下列情形之一者,處汽車所有人或領用人新臺幣九百元以上一千八百元以下罰鍰:<br>
一、經通知而不依規定期限換領號牌,又未申請延期,仍使用。<br>
二、領用試車或臨時牌照,期滿未繳還。<br>
三、領用試車或臨時牌照,載運客貨,收費營業。<br>
四、領用試車牌照,不在指定路線或區域內試車。<br>
五、行車執照及拖車使用證有效期屆滿,不依規定換領而行駛。<br>
前項第一款情形經再通知後逾期仍不換領號牌,其牌照應予註銷;第二款、第三款之牌照應扣繳註銷;第四款應責令改正;第五款之牌照應扣繳並責令換領。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十六條</font>
</font>
<table><tr><td> </td>
<td>
汽車有下列情形之一者,處汽車所有人新臺幣九百元以上一千八百元以下罰鍰:<br>
一、各項異動,不依規定申報登記。<br>
二、除頭燈外之燈光、雨刮、喇叭、照後鏡、排氣管、消音器設備不全或損壞不予修復,或擅自增、減、變更原有規格致影響行車安全。<br>
三、未依規定於車身標明指定標識。<br>
四、計程車,未依規定裝置自動計費器、車頂燈、執業登記證插座或在前、後兩邊玻璃門上,黏貼不透明反光紙。<br>
五、裝置高音量喇叭或其他產生噪音器物。<br>
前項第一款至第四款並應責令改正、反光紙並應撤除;第五款除應依最高額處罰外,該高音量喇叭或噪音器物並應沒入。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十七條</font>
</font>
<table><tr><td> </td>
<td>
汽車不依限期參加定期檢驗或臨時檢驗者,處汽車所有人新臺幣九百元以上一千八百元以下罰鍰;逾期一個月以上者並吊扣其牌照,至檢驗合格後發還,逾期六個月以上者,註銷其牌照。<br>
經檢驗不合格之汽車,於一個月內仍未修復並申請覆驗,或覆驗仍不合格者,吊扣其牌照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十八條</font>
</font>
<table><tr><td> </td>
<td>
汽車車身、引擎、底盤、電系等重要設備變更或調換,或因交通事故遭受重大損壞修復後,不申請公路主管機關施行臨時檢驗而行駛者,處汽車所有人新臺幣二千四百元以上九千六百元以下罰鍰,並責令其檢驗。<br>
汽車所有人在一年內違反前項規定二次以上者,並吊扣牌照三個月;三年內經吊扣牌照二次,再違反前項規定者,吊銷牌照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十八條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車未依規定裝設行車紀錄器者,處汽車所有人新臺幣一萬二千元以上二萬四千元以下罰鍰。<br>
汽車裝設之行車紀錄器無法正常運作,未於行車前改善,仍繼續行車者,處汽車所有人新臺幣九千元以上一萬八千元以下罰鍰。<br>
未依規定保存行車紀錄卡或未依規定使用、不當使用行車紀錄器致無法正確記錄資料者,處汽車所有人新臺幣九千元以上一萬二千元以下罰鍰。<br>
違反前三項之行為,應責令其參加臨時檢驗。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第十九條</font>
</font>
<table><tr><td> </td>
<td>
汽車煞車,未調整完妥靈活有效,或方向盤未保持穩定準確,仍准駕駛人使用者,處汽車所有人新臺幣一千八百元以上三千六百元以下罰鍰,並責令調整或修復。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十條</font>
</font>
<table><tr><td> </td>
<td>
汽車引擎、底盤、電系、車門損壞,行駛時顯有危險而不即行停駛修復者,處汽車所有人新臺幣一千八百元以上三千六百元以下罰鍰,並扣留其牌照,責令修復檢驗合格後發還之。檢驗不合格,經確認不堪使用者,責令報廢。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十一條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,有下列情形之一者,處新臺幣六千元以上一萬二千元以下罰鍰,並當場禁止其駕駛:<br>
一、未領有駕駛執照駕駛小型車或機器腳踏車。<br>
二、領有機器腳踏車駕駛執照,駕駛小型車。<br>
三、使用偽造、變造或矇領之駕駛執照駕駛小型車或機器腳踏車。<br>
四、駕駛執照業經吊銷、註銷仍駕駛小型車或機器腳踏車。<br>
五、駕駛執照吊扣期間駕駛小型車或機器腳踏車。<br>
六、領有學習駕駛證,而無領有駕駛執照之駕駛人在旁指導,在駕駛學習場外學習駕車。<br>
七、領有學習駕駛證,在駕駛學習場外未經許可之學習駕駛道路或規定時間駕車。<br>
八、未領有駕駛執照,以教導他人學習駕車為業。<br>
九、其他未依駕駛執照之持照條件規定駕車。<br>
前項第九款駕駛執照之持照條件規定,由交通部定之。<br>
未滿十八歲之人,違反第一項第一款或第三款規定者,汽車駕駛人及其法定代理人或監護人,應同時施以道路交通安全講習。<br>
第一項第三款、第四款之駕駛執照,均應扣繳之;第五款並吊銷其駕駛執照。<br>
汽車所有人允許第一項第一款至第五款之違規駕駛人駕駛其汽車者,除依第一項規定之罰鍰處罰外,並記該汽車違規紀錄一次。但如其已善盡查證駕駛人駕駛執照資格之注意,或縱加以相當注意而仍不免發生違規者,不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十一條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人駕駛聯結車、大客車、大貨車,有下列情形之一者,汽車所有人及駕駛人各處新臺幣四萬元以上八萬元以下罰鍰,並當場禁止其駕駛:<br>
一、未領有駕駛執照駕車。<br>
二、領有機器腳踏車駕駛執照駕車。<br>
三、領有小型車駕駛執照駕車。<br>
四、領有大貨車駕駛執照,駕駛大客車、聯結車或持大客車駕駛執照,駕駛聯結車。<br>
五、駕駛執照業經吊銷、註銷仍駕車。<br>
六、使用偽造、變造或矇領之駕駛執照駕車。<br>
七、駕駛執照吊扣期間駕車。<br>
前項第五款、第六款之駕駛執照,均應扣繳之;第七款並吊銷其駕駛執照。<br>
違反第一項情形,並記該汽車違規紀錄一次。<br>
汽車所有人如已善盡查證駕駛人駕駛執照資格之注意,或縱加以相當之注意而仍不免發生違規者,汽車所有人不受本條之處罰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十二條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,有下列情形之一者,處新臺幣一千八百元以上三千六百元以下罰鍰,並禁止其駕駛:<br>
一、領有普通駕駛執照,駕駛營業汽車營業。<br>
二、領有普通駕駛執照,以駕駛為職業。<br>
三、領有軍用車駕駛執照,駕駛非軍用車。<br>
四、領有聯結車、大客車、大貨車或小型車駕駛執照,駕駛重型機器腳踏車。<br>
五、領有普通重型機器腳踏車駕駛執照,駕駛大型重型機器腳踏車。<br>
六、領有輕型機器腳踏車駕駛執照,駕駛重型機器腳踏車。<br>
七、駕駛執照逾有效期間仍駕車。<br>
前項第七款之駕駛執照並應扣繳之。<br>
汽車所有人允許第一項違規駕駛人駕駛其汽車者,除依第一項規定之罰鍰處罰外,並記該汽車違規紀錄一次。但如其已善盡查證駕駛人駕駛執照資格之注意,或縱加以相當注意而仍不免發生違規者,不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,有下列情形之一者,吊扣其駕駛執照三個月:<br>
一、將駕駛執照借供他人駕車。<br>
二、允許無駕駛執照之人,駕駛其車輛。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十四條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,有下列情形之一者,應接受道路交通安全講習:<br>
一、違規肇事受吊扣駕駛執照處分。<br>
二、有第三十五條第一項規定之情形。<br>
三、有第四十三條規定之情形。<br>
四、有第五十四條規定之情形。<br>
五、依第六十三條第三項前段規定受吊扣駕駛執照處分。<br>
六、其他違反本條例之行為,經該管公路主管機關基於轄區交通管理之必要,公告應接受講習。<br>
公路主管機關對於道路交通法規之重大修正或道路交通安全之重要措施,必要時,得通知職業汽車駕駛人參加道路交通安全講習。<br>
汽車駕駛人有第一項各款、第二項情形之一或本條例其他條款明定應接受道路交通安全講習者,無正當理由,不依規定接受道路交通安全講習者,處新臺幣一千八百元罰鍰。經再通知依限參加講習,逾期六個月以上仍不參加者,吊扣其駕駛執照六個月。<br>
前項如無駕駛執照可吊扣者,其於重領或新領駕駛執照後,執行吊扣駕駛執照六個月再發給。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,有下列情形之一者,處新臺幣三百元以上六百元以下罰鍰,並責令補辦登記、補照、換照或禁止駕駛:<br>
一、姓名、出生年、月、日、住址,依法更改而不報請變更登記。<br>
二、駕駛執照遺失或損毀,不報請公路主管機關補發或依限期申請換發。<br>
三、駕駛汽車未隨身攜帶駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十六條</font>
</font>
<table><tr><td> </td>
<td>
職業汽車駕駛人,不依規定期限,參加駕駛執照審驗者,處新臺幣三百元以上六百元以下罰鍰;逾期一年以上者,逕行註銷其駕駛執照。<br>
前項經逕行註銷駕駛執照之職業汽車駕駛人,得申請換發同等車類之普通駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十七條</font>
</font>
<table><tr><td> </td>
<td>
汽車行駛於應繳費之公路、橋樑、隧道或輪渡,不依規定繳費者,處汽車所有人或駕駛人新臺幣三千元以上六千元以下罰鍰,並追繳欠費。<br>
汽車駕駛人逃避繳費,致收費人員受傷或死亡者,吊銷其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十八條</font>
</font>
<table><tr><td> </td>
<td>
(刪除)<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條</font>
</font>
<table><tr><td> </td>
<td>
汽車裝載時,有下列情形之一者,處汽車所有人新臺幣三千元以上九千元以下罰鍰,並責令改正或禁止通行:<br>
一、裝載貨物超過規定之長度、寬度、高度。<br>
二、裝載整體物品有超重、超長、超寬、超高,而未請領臨時通行證,或未懸掛危險標識。<br>
三、裝載危險物品,未請領臨時通行證、未依規定懸掛或黏貼危險物品標誌及標示牌、罐槽車之罐槽體未檢驗合格、運送人員未經專業訓練合格或不遵守有關安全之規定。<br>
四、貨車或聯結汽車之裝載,不依規定。<br>
五、汽車牽引拖架或附掛拖車,不依規定。<br>
六、大貨車裝載貨櫃超出車身之外,或未依規定裝置聯鎖設備。<br>
七、未經核准,附掛拖車行駛。<br>
汽車裝載,違反前項第一款至第四款規定者,並記汽車違規紀錄一次。<br>
第一項第一款至第四款情形,應歸責於汽車駕駛人時,除依第一項處汽車駕駛人罰鍰及依第六十三條第一項第二款記點外;汽車所有人仍應依前項規定記該汽車違規紀錄一次。<br>
汽車駕駛人有第一項情形,因而致人受傷者,吊扣駕駛執照一年;致人重傷或死亡者,吊銷其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條之一</font>
</font>
<table><tr><td> </td>
<td>
裝載砂石、土方未依規定使用專用車輛或其專用車廂未合於規定或變更車廂者,處汽車所有人新臺幣四萬元以上八萬元以下罰鍰,並當場禁止通行。<br>
前項專用車廂未合於規定或變更車廂者,並處車廂打造或改裝業者新臺幣四萬元以上八萬元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條之二</font>
</font>
<table><tr><td> </td>
<td>
汽車裝載貨物超過核定之總重量、總聯結重量者,處汽車所有人罰鍰,並記汽車違規紀錄一次,其應歸責於汽車駕駛人時,除依第三項規定處汽車駕駛人罰鍰及依第六十三條第一項第二款規定記點外,並記該汽車違規紀錄一次。<br>
汽車裝載貨物超過所行駛橋樑規定之載重限制者,處汽車駕駛人罰鍰,其應歸責於汽車所有人時,除依第三項規定處汽車所有人罰鍰及記該汽車違規紀錄一次外,汽車駕駛人仍應依第六十三條第一項第二款規定記違規點數二點。<br>
有前二項規定之情形者,應責令改正或當場禁止通行,並處新臺幣一萬元罰鍰,超載十公噸以下者,以總超載部分,每一公噸加罰新臺幣一千元;超載逾十公噸至二十公噸以下者,以總超載部分,每一公噸加罰新臺幣二千元;超載逾二十公噸至三十公噸以下者,以總超載部分,每一公噸加罰新臺幣三千元;超載逾三十公噸者,以總超載部分,每一公噸加罰新臺幣五千元。未滿一公噸以一公噸計算。<br>
汽車裝載貨物行經設有地磅處所一公里內路段,未依標誌、標線、號誌指示或不服從交通勤務警察或依法令執行交通稽查任務人員之指揮過磅者,處汽車駕駛人新臺幣一萬元罰鍰,並得強制其過磅。<br>
汽車駕駛人有第一項、第二項情形,因而致人受傷者,吊扣其駕駛執照一年;致人重傷或死亡者,吊銷其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條之三</font>
</font>
<table><tr><td> </td>
<td>
危險物品運送人員,應經交通部許可之專業訓練機構訓練合格,並領有訓練證明書,始得駕駛裝載危險物品之汽車。<br>
前項危險物品運送人員專業訓練方式、專業訓練機構資格、訓練許可、訓練場所、設備、課程、訓練證明書格式、訓練有效期限、查核及管理等事項之辦法,由交通部會商有關機關定之。<br>
依本條例規定吊銷駕駛執照時,其領有之第一項訓練證明書亦失其效力,且其不得參加訓練之期間,依第六十七條不得考領駕駛執照之期限辦理。<br>
危險物品運送人員專業訓練機構未依規定辦理訓練、核發訓練證明書或不遵守有關訓練之規定者,依其情節,停止其辦理訓練三個月至六個月或廢止該專業訓練機構之訓練許可。<br>
前項未依規定核發之訓練證明書不生效力;經廢止訓練許可之訓練機構,三年內不得再申請訓練許可。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第二十九條之四</font>
</font>
<table><tr><td> </td>
<td>
罐槽車之罐槽體屬常壓液態罐槽車罐槽體者,應經交通部許可之檢驗機構檢驗合格並發給檢驗合格證明書,始得裝載危險物品。<br>
前項常壓液態罐槽車罐槽體檢驗方式、檢驗機構資格、檢驗許可、檢驗場所條件、檢測儀器設備、檢測人員資格、檢驗標準、檢驗合格證明書格式、檢驗有效期限、查核及管理等事項之辦法,由交通部會商有關機關定之。<br>
常壓液態罐槽車罐槽體檢驗機構未依規定辦理罐槽體檢驗、核發檢驗合格證明書或不遵守有關檢驗之規定者,依其情節,停止其辦理檢驗三個月至六個月或廢止該檢驗機構之檢驗許可。<br>
前項未依規定核發之檢驗合格證明書不生效力;經廢止檢驗許可之檢驗機構,三年內不得再申請檢驗許可。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十條</font>
</font>
<table><tr><td> </td>
<td>
汽車裝載時,有下列情形之一者,處汽車駕駛人新臺幣三千元以上九千元以下罰鍰,並責令改正或禁止通行:<br>
一、裝載整體物品有超重、超長、超寬、超高情形,而未隨車攜帶臨時通行證或未依規定路線、時間行駛。<br>
二、所載貨物滲漏、飛散或氣味惡臭。<br>
三、貨車運送途中附載作業人員,超過規定人數,或乘坐不依規定。<br>
四、載運人數超過核定數額。但公共汽車於尖峰時刻載重未超過核定總重量,不在此限。<br>
五、小客車前座或貨車駕駛室乘人超過規定人數。<br>
六、車廂以外載客。<br>
七、載運人客、貨物不穩妥,行駛時顯有危險。<br>
八、裝載危險物品未隨車攜帶臨時通行證、罐槽車之罐槽體檢驗合格證明書、運送人員訓練證明書或未依規定路線、時間行駛。<br>
前項各款情形,應歸責於汽車所有人時,除依前項處汽車所有人罰鍰及記該汽車違規紀錄一次外,汽車駕駛人仍應依第六十三條第一項第二款規定記違規點數二點。<br>
前二項情形,因而致人受傷者,吊扣其駕駛執照一年;致人重傷或死亡者,吊銷其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十一條</font>
</font>
<table><tr><td> </td>
<td>
汽車行駛於道路上,其駕駛人或前座乘客未繫安全帶者,處駕駛人新臺幣一千五百元罰鍰;其實施及宣導辦法,由交通部定之。<br>
汽車行駛於高速公路,違反前項規定者,處駕駛人新臺幣三千元以上六千元以下罰鍰。<br>
小客車附載幼童未依規定安置於安全椅者,處駕駛人新臺幣一千五百元以上三千元以下罰鍰;有關其幼童安置方式、宣導辦法及其他應遵行事項,由交通部會商內政部等有關機關定之。<br>
汽車駕駛人對於六歲以下或需要特別看護之兒童,單獨留置於車內者,處駕駛人新臺幣三千元罰鍰,並施以四小時道路交通安全講習。<br>
機器腳踏車附載人員或物品未依規定者,處駕駛人新臺幣三百元以上六百元以下罰鍰。<br>
機器腳踏車駕駛人或附載座人未依規定戴安全帽者,處駕駛人新臺幣五百元罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十一條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人於行駛道路時,使用手持式行動電話進行撥接或通話者,處新臺幣三千元罰鍰。<br>
機器腳踏車駕駛人行駛於道路時,使用手持式行動電話進行撥接或通話者,處新臺幣一千元罰鍰。<br>
前二項實施及宣導辦法,由交通部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十一條之二</font>
</font>
<table><tr><td> </td>
<td>
第三十一條第三項所稱幼童,係指年齡在四歲且體重在十八公斤以下之兒童。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十二條</font>
</font>
<table><tr><td> </td>
<td>
非屬汽車範圍而行駛於道路上之動力機械,未依規定請領臨時通行證,或其駕駛人未依規定領有駕駛執照者,處所有人或駕駛人新臺幣三千元以上九千元以下罰鍰,並禁止其行駛。<br>
前項動力機械駕駛人,未攜帶臨時通行證者,處新臺幣三百元罰鍰,並禁止其行駛。<br>
第一項動力機械行駛道路,違反本章汽車行駛規定條文者,依各該條規定處罰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十二條之一</font>
</font>
<table><tr><td> </td>
<td>
非屬汽車及動力機械範圍之動力載具、動力運動休閒器材或其他相類之動力器具,於道路上行駛或使用者,處行為人新臺幣一千二百元以上三千六百元以下罰鍰,並禁止其行駛或使用。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車行駛於高速公路、快速公路或設站管制之道路,不遵使用限制、禁止、行車管制及管理事項之管制規則而有下列行為者,處汽車駕駛人新臺幣三千元以上六千元以下罰鍰:<br>
一、行車速度超過規定之最高速限或低於規定之最低速限。<br>
二、未保持安全距離。<br>
三、未依規定行駛車道。<br>
四、未依規定變換車道。<br>
五、站立乘客。<br>
六、不依規定使用燈光。<br>
七、違規超車、迴車、倒車、逆向行駛。<br>
八、違規減速、臨時停車或停車。<br>
九、未依規定使用路肩。<br>
十、未依施工之安全設施指示行駛。<br>
十一、裝置貨物未依規定覆蓋、捆紮。<br>
十二、不繳交通行費闖越收費站。<br>
十三、未依標誌、標線、號誌指示行車。<br>
十四、進入或行駛禁止通行之路段。<br>
十五、連續密集按鳴喇叭、變換燈光或其他方式迫使前車讓道。<br>
十六、行駛中向車外丟棄物品或廢棄物。<br>
前項道路內車道應為超車道,超車後,如有安全距離未駛回原車道,致堵塞超車道行車者,處汽車駕駛人新臺幣六千元以上一萬二千元以下罰鍰。<br>
除前二項外,其他違反管制規定之行為,處駕駛人新臺幣六百元以上一千二百元以下罰鍰。<br>
不得行駛或進入第一項道路之人員、車輛或動力機械,而行駛或進入者,處新臺幣三千元以上六千元以下罰鍰。<br>
前三項之行為,本條例有較重之處罰規定者,適用該規定。<br>
第一項之管制規則,由交通部會同內政部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十四條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,連續駕車超過八小時經查屬實,或患病足以影響安全駕駛者,處新臺幣一千二百元以上二千四百元以下罰鍰,並禁止其駕駛;如應歸責於汽車所有人者,得吊扣其汽車牌照三個月。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車經測試檢定有下列情形之一者,處新臺幣一萬五千元以上六萬元以下罰鍰,並當場移置保管該汽車及吊扣其駕駛執照一年;因而肇事致人受傷者,並吊扣其駕駛執照二年;致人重傷或死亡者,吊銷其駕駛執照,並不得再考領:<br>
一、酒精濃度超過規定標準。<br>
二、吸食毒品、迷幻藥、麻醉藥品及其相類似之管制藥品。<br>
汽車駕駛人有前項應受吊扣情形時,駕駛營業大客車者,吊銷其駕駛執照;因而肇事且附載有未滿十四歲之人者,按其吊扣駕駛執照期間加倍處分。<br>
汽車駕駛人經依第一項規定吊扣駕駛執照,並於吊扣期間再有第一項情形者,處新臺幣六萬元罰鍰,並當場移置保管該汽車及吊銷其駕駛執照;如肇事致人重傷或死亡者,吊銷其駕駛執照,並不得再考領。<br>
汽車駕駛人拒絕接受第一項測試之檢定者,處新臺幣六萬元罰鍰,並當場移置保管該汽車及吊銷該駕駛執照;如肇事致人重傷或死亡者,吊銷該駕駛執照,並不得再考領。<br>
汽車駕駛人肇事拒絕接受或肇事無法實施第一項測試之檢定者,應由交通勤務警察或依法令執行交通稽查任務人員,將其強制移由受委託醫療或檢驗機構對其實施血液或其他檢體之採樣及測試檢定。<br>
汽車所有人,明知汽車駕駛人有第一項各款情形,而不予禁止駕駛者,依第一項規定之罰鍰處罰,並吊扣該汽車牌照三個月。<br>
汽車駕駛人有第一項、第三項或第四項之情形,同時違反刑事法律者,經移置保管汽車之領回,不受第八十五條之二第二項,應同時檢附繳納罰鍰收據之限制。<br>
前項汽車駕駛人,經裁判確定處以罰金低於本條例第九十二條第四項所訂最低罰鍰基準規定者,應依本條例裁決繳納不足最低罰鍰之部分。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十六條</font>
</font>
<table><tr><td> </td>
<td>
計程車駕駛人,未向警察機關辦理執業登記,領取執業登記證,即行執業者,處新臺幣一千五百元以上三千六百元以下罰鍰。<br>
計程車駕駛人,不依規定辦理執業登記,經依前項處罰仍不辦理者,吊銷其駕駛執照。<br>
計程車駕駛人,不依規定期限,辦理執業登記事項之異動申報,或參加年度查驗者,處新臺幣一千二百元罰鍰;逾期六個月以上仍不辦理者,廢止其執業登記。<br>
計程車駕駛人經依前項之規定廢止執業登記者,未滿一年不得再行辦理執業登記。<br>
第一項執業登記證,未依規定安置車內指定之插座或以他物遮蔽者,處新臺幣一千五百元罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十七條</font>
</font>
<table><tr><td> </td>
<td>
曾犯故意殺人、搶劫、搶奪、強盜、恐嚇取財、擄人勒贖或刑法第一百八十四條、第一百八十五條、第二百二十一條至第二百二十九條、兒童及少年性交易防制條例第二十四條至第二十七條、槍砲彈藥刀械管制條例、懲治走私條例或毒品危害防制條例之罪,經判決罪刑確定,或曾依檢肅流氓條例裁定應為交付感訓確定者,不得辦理計程車駕駛人執業登記。<br>
計程車駕駛人,在執業期中,犯前項所列各罪之一,經第一審法院判決有罪或依檢肅流氓條例裁定交付感訓處分後,吊扣其執業登記證。其經法院判處罪刑或交付感訓處分確定者,廢止其執業登記,並吊銷其駕駛執照。<br>
計程車駕駛人,在執業期中,犯竊盜、詐欺、贓物、妨害自由或刑法第二百三十條至第二百三十六條各罪之一,經第一審法院判決有期徒刑以上之刑後,吊扣其執業登記證。其經法院判決有期徒刑以上之刑確定者,廢止其執業登記,並吊銷其駕駛執照。<br>
計程車駕駛人,受前二項吊扣執業登記證之處分,未將執業登記證送交發證警察機關者,廢止其執業登記。<br>
計程車駕駛人違反前條及本條規定,應廢止其執業登記或吊扣其執業登記證者,由警察機關處罰,不適用第八條第一項第一款規定。<br>
經廢止執業登記者,其執業登記證由警察機關收繳之。<br>
計程車駕駛人執業資格、執業登記、測驗、執業前、在職講習與講習費用收取、登記證核發及管理等事項之辦法,由內政部會同交通部定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十八條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,於鐵路、公路車站或其他交通頻繁處所,違規攬客營運,妨害交通秩序者,處新臺幣一千五百元以上三千元以下罰鍰;其所駕駛之汽車,如屬營業大客車者,並記該汽車違規紀錄一次。<br>
計程車駕駛人,任意拒載乘客或故意繞道行駛者,處新臺幣六百元以上一千二百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第三十九條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,不在未劃分標線道路之中央右側部分駕車者,處新臺幣六百元以上一千二百元以下罰鍰。但單行道或依規定超車者,不在此限。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,行車速度,超過規定之最高時速,或低於規定之最低時速,除有第四十三條第一項第二款情形外,處新臺幣一千二百元以上二千四百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十一條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,按鳴喇叭不依規定,或按鳴喇叭超過規定音量者,處新臺幣三百元以上六百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十二條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,不依規定使用燈光者,處新臺幣一千二百元以上三千六百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車有下列情形之一者,處新臺幣六千元以上二萬四千元以下罰鍰,並當場禁止其駕駛:<br>
一、在道路上蛇行,或以其他危險方式駕車。<br>
二、行車速度,超過規定之最高時速六十公里以上。<br>
三、拆除消音器,或以其他方式造成噪音。<br>
前項情形因而肇事者,並吊銷其駕駛執照。<br>
二輛以上之汽車共同違反第一項規定,或在道路上競駛、競技者,處汽車駕駛人新臺幣三萬元以上九萬元以下罰鍰,並當場禁止其駕駛及吊銷其駕駛執照。<br>
汽車駕駛人有第一項第一款、第二款或前項行為者,並吊扣該汽車牌照三個月;經受吊扣牌照之汽車再次提供為違反第一項第一款或前項行為者,沒入該汽車。<br>
汽車駕駛人違反第一項、第三項規定者,應接受道路交通安全講習;未滿十八歲之人,其與法定代理人或監護人依第二十一條規定應同時施以道路交通安全講習,並得由警察機關公布其法定代理人或監護人姓名。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十四條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車有下列情形之一者,處新臺幣六百元以上一千八百元以下罰鍰:<br>
一、行近鐵路平交道,不將時速減至十五公里以下。<br>
二、行近未設行車管制號誌之行人穿越道,不減速慢行。<br>
三、行經設有彎道、坡路、狹路、狹橋或隧道標誌之路段或道路施工路段,不減速慢行。<br>
四、行經設有學校、醫院標誌之路段,不減速慢行。<br>
五、未依標誌、標線、號誌指示減速慢行。<br>
六、行經泥濘或積水道路,不減速慢行,致污濕他人身體、衣物。<br>
七、因雨、霧視線不清或道路上臨時發生障礙,不減速慢行。<br>
汽車駕駛人,駕駛汽車行經行人穿越道有行人穿越時,不暫停讓行人先行通過者,處新臺幣一千二百元以上三千六百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,爭道行駛有下列情形之一者,處新臺幣六百元以上一千八百元以下罰鍰:<br>
一、不按遵行之方向行駛。<br>
二、在單車道駕車與他車並行。<br>
三、不依規定駛入來車道。<br>
四、在多車道不依規定駕車。<br>
五、插入正在連貫行駛汽車之中間。<br>
六、駕車行駛人行道。<br>
七、行至無號誌之圓環路口,不讓已進入圓環之車輛先行。<br>
八、行經多車道之圓環,不讓內側車道之車輛先行。<br>
九、支線道車不讓幹線道車先行。少線道車不讓多線道車先行。車道數相同時,左方車不讓右方車先行。<br>
十、起駛前,不讓行進中之車輛、行人優先通行。<br>
十一、聞消防車、救護車、警備車、工程救險車之警號,不立即避讓或在後跟隨急駛,或駛過在救火時放置於路上之消防水帶。<br>
十二、任意駛出邊線,或任意跨越兩條車道行駛。<br>
十三、機器腳踏車,不在規定車道行駛。<br>
十四、遇幼童專用車、校車不依規定禮讓,或減速慢行。<br>
十五、行經無號誌交叉路口及巷道不依規定或標誌、標線指示。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十六條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人交會時,有下列情形之一者,處新臺幣六百元以上一千八百元以下罰鍰:<br>
一、未保持適當之間隔。<br>
二、在峻狹坡路,下坡車未讓上坡車先行,或上坡車在坡下未讓已駛至中途之下坡車駛過,而爭先上坡。<br>
三、在山路行車,靠山壁車輛,未讓道路外緣車優先通過。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十七條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人超車時,有下列情形之一者,處新臺幣一千二百元以上二千四百元以下罰鍰:<br>
一、駕車行經設有彎道、陡坡、狹橋、隧道、交岔路口標誌之路段或道路施工地段超車。<br>
二、在學校、醫院或其他設有禁止超車標誌、標線處所、地段或對面有來車交會或前行車連貫二輛以上超車。<br>
三、在前行車之右側超車,或超車時未保持適當之間隔,或未行至安全距離即行駛入原行路線。<br>
四、未經前行車表示允讓或靠邊慢行,即行超車。<br>
五、前行車聞後行車按鳴喇叭或見後行車顯示超車燈光,如車前路況無障礙,無正當理由,不表示允讓或靠邊慢行。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十八條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人轉彎時,有下列情形之一者,處新臺幣六百元以上一千八百元以下罰鍰:<br>
一、在轉彎或變換車道前,未使用方向燈或不注意來、往行人,或轉彎前未減速慢行。<br>
二、不依標誌、標線、號誌指示。<br>
三、行經交岔路口未達中心處,佔用來車道搶先左轉彎。<br>
四、在多車道右轉彎,不先駛入外側車道,或多車道左轉彎,不先駛入內側車道。<br>
五、道路設有劃分島,劃分快、慢車道,在慢車道上左轉彎或在快車道右轉彎。但另設有標誌、標線或號誌管制者,應依其指示行駛。<br>
六、轉彎車不讓直行車先行。<br>
七、設有左、右轉彎專用車道之交岔路口,直行車佔用最內側或最外側或專用車道。<br>
汽車駕駛人轉彎時,除禁止行人穿越路段外,不暫停讓行人優先通行者,處新臺幣一千二百元以上三千六百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第四十九條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人迴車時,有下列情形之一者,處新臺幣六百元以上一千八百元以下罰鍰:<br>
一、在設有彎道、坡路、狹路、狹橋或隧道標誌之路段迴車。<br>
二、在設有禁止迴車標誌或劃有分向限制線、禁止超車線或禁止變換車道線之路段迴車。<br>
三、在禁止左轉路段迴車。<br>
四、行經圓環路口,不繞行圓環迴車。<br>
五、迴車前,未依規定暫停,顯示左轉燈光,或不注意來、往車輛、行人,仍擅自迴轉。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人倒車時,有下列情形之一者,處新臺幣六百元以上一千二百元以下罰鍰:<br>
一、在設有彎道、坡路、狹路、狹橋、隧道、圓環、單行道標誌之路段或快車道倒車。<br>
二、倒車前未顯示倒車燈光,或倒車時不注意其他車輛或行人。<br>
三、大型汽車無人在後指引時,不先測明車後有足夠之地位,或促使行人避讓。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十一條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕車行經坡道,上坡時蛇行前進,或下坡時將引擎熄火、空檔滑行者,處新臺幣六百元以上一千二百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十二條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕車行經渡口不依規定者,處新臺幣六百元以上一千二百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,行經有燈光號誌管制之交岔路口闖紅燈者,處新臺幣一千八百元以上五千四百元以下罰鍰。<br>
前項紅燈右轉行為者,處新臺幣六百元以上一千八百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十四條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕車在鐵路平交道有下列情形之一者,處新臺幣六千元以上一萬二千元以下罰鍰。因而肇事者,並吊銷其駕駛執照:<br>
一、不遵守看守人員之指示,或遮斷器開始放下,或警鈴已響、閃光號誌已顯示,仍強行闖越。<br>
二、在無看守人員管理或無遮斷器、警鈴及閃光號誌設備之鐵路平交道,設有警告標誌或跳動路面,不依規定暫停,逕行通過。<br>
三、在鐵路平交道超車、迴車、倒車、臨時停車或停車。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,臨時停車有下列情形之一者,處新臺幣三百元以上六百元以下罰鍰:<br>
一、在橋樑、隧道、圓環、障礙物對面、人行道、行人穿越道、快車道臨時停車。<br>
二、在交岔路口、公共汽車招呼站十公尺內或消防車出、入口五公尺內臨時停車。<br>
三、在設有禁止臨時停車標誌、標線處所臨時停車。<br>
四、不依順行之方向,或不緊靠道路右側,或單行道不緊靠路邊,或併排臨時停車。<br>
五、在道路交通標誌前臨時停車,遮蔽標誌。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十六條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人停車時,有下列情形之一者,處新臺幣六百元以上一千二百元以下罰鍰:<br>
一、在禁止臨時停車處所停車。<br>
二、在彎道、陡坡、狹路、槽化線、交通島或道路修理地段停車。<br>
三、在機場、車站、碼頭、學校、娛樂、展覽、競技、市場、或其他公共場所出、入口或消防栓之前停車。<br>
四、在設有禁止停車標誌、標線之處所停車。<br>
五、在顯有妨礙其他人、車通行處所停車。<br>
六、不依順行方向,或不緊靠道路右側,或併排停車,或單行道不緊靠路邊停車。<br>
七、於路邊劃有停放車輛線之處所停車營業。<br>
八、自用汽車在營業汽車招呼站停車。<br>
九、停車時間、位置、方式、車種不依規定。<br>
十、於身心障礙專用停車位違規停車。<br>
汽車駕駛人在道路收費停車處所停車,未依規定繳費,主管機關應書面通知駕駛人於七日內補繳,並收取必要之工本費用,逾期再不繳納,處新臺幣三百元罰鍰。<br>
第一項情形,交通勤務警察、依法令執行交通稽查任務人員或交通助理人員,應責令汽車駕駛人將車移置適當處所;如汽車駕駛人不予移置或不在車內時,得由該交通勤務警察、依法令執行交通稽查任務人員或交通助理人員為之。<br>
第一項第十款應以最高額處罰之,第二項之欠費追繳之。<br>
在圓環、交岔路口十公尺內,公路主管機關、市區道路主管機關或警察機關得在不妨害行人通行或行車安全無虞之原則,設置必要之標誌或標線另行規定汽車之停車處所。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十七條</font>
</font>
<table><tr><td> </td>
<td>
汽車所有人、汽車買賣業或汽車修理業,在道路上停放待售或承修之車輛者,處新臺幣二千四百元以上四千八百元以下罰鍰。<br>
前項情形,交通勤務警察或依法令執行交通稽查任務人員於必要時,並應令汽車所有人、業者將車移置適當場所;如汽車所有人、業者不予移置,應由該交通勤務警察或依法令執行交通稽查任務人員逕為之,並收取移置費。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十八條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車有下列情形之一者,處新臺幣六百元以上一千二百元以下罰鍰:<br>
一、不依規定保持前、後車距離。<br>
二、行至有號誌之交岔路口,遇紅燈不依車道連貫暫停而逕行插入車道間,致交通擁塞,妨礙其他車輛通行。<br>
三、行至有號誌之交岔路口,遇有前行或轉彎之車道交通擁塞而逕行駛入交岔路口內,致號誌轉換後仍未能通過,妨礙其他車輛通行。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第五十九條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車發生故障不能行駛,不設法移置於無礙交通之處,或於移置前,未依規定在車輛前、後適當距離樹立車輛故障標誌或事後不除去者,處新臺幣一千五百元以上三千元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車有違反本條例之行為,經交通勤務警察或依法令執行交通稽查任務人員制止時,不聽制止或拒絕停車接受稽查而逃逸者,除按各該條規定處罰外,處新臺幣三千元以上六千元以下罰鍰。<br>
汽車駕駛人,駕駛汽車有下列情形之一,而本章各條無處罰之規定者,處新臺幣九百元以上一千八百元以下罰鍰:<br>
一、不服從交通勤務警察或依法令執行交通指揮、稽查任務人員之指揮或稽查。<br>
二、不遵守公路或警察機關,依第五條規定所發布命令。<br>
三、不遵守道路交通標誌、標線、號誌之指示。<br>
四、計程車之停車上客,不遵守主管機關之規定。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十一條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,駕駛汽車有下列情形之一者,吊銷其駕駛執照:<br>
一、利用汽車犯罪,經判決有期徒刑以上之刑確定。<br>
二、抗拒執行交通勤務之警察或依法令執行交通稽查人員之稽查,因而引起傷害或死亡。<br>
三、撞傷正執行交通勤務中之警察。<br>
四、違反道路交通安全規則、第三十三條之管制規則,因而肇事致人死亡。<br>
汽車駕駛人,駕駛汽車有前項第二款、第三款情形之一者,並處新臺幣三萬元以上六萬元以下罰鍰。<br>
汽車駕駛人,駕駛汽車違反道路交通安全規則、第三十三條之管制規則,因而肇事致人受傷者,記違規點數三點;致人重傷者,吊扣其駕駛執照三個月至六個月。<br>
第一項第一款情形,在判決確定前,得視情形暫扣其駕駛執照,禁止其駕駛。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十二條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人駕駛汽車肇事,無人受傷或死亡而未依規定處置者,處新臺幣一千元以上三千元以下罰鍰;逃逸者,並吊扣其駕駛執照一個月至三個月。<br>
前項之汽車尚能行駛,而不儘速將汽車位置標繪移置路邊,致妨礙交通者,處駕駛人新臺幣六百元以上一千八百元以下罰鍰。<br>
汽車駕駛人駕駛汽車肇事致人受傷或死亡者,應即採取救護措施及依規定處置,並通知警察機關處理,不得任意移動肇事汽車及現場痕跡證據,違反者處新臺幣三千元以上九千元以下罰鍰。但肇事致人受傷案件當事人均同意時,應將肇事汽車標繪後,移置不妨礙交通之處所。<br>
前項駕駛人肇事致人受傷而逃逸者,吊銷其駕駛執照;致人重傷或死亡而逃逸者,吊銷其駕駛執照,並不得再考領。<br>
第一項及前項肇事逃逸案件,經通知汽車所有人到場說明,無故不到場說明,或不提供汽車駕駛人相關資料者,吊扣該汽車牌照一個月至三個月。<br>
肇事車輛機件及車上痕跡證據尚須檢驗、鑑定或查證者,得予暫時扣留處理,其扣留期間不得超過三個月;未經扣留處理之車輛,其駕駛人或所有人不予或不能即時移置,致妨礙交通者,得逕行移置之。<br>
肇事車輛機件損壞,其行駛安全堪虞者,禁止其行駛。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十三條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人有下列各款所列條款之一者,除依原條款處罰鍰外,並予記點:<br>
一、有第三十三條第一項、第二項、第三十八條第一項、第四十條、第四十五條、第四十七條第一款至第三款、第四十八條、第四十九條或第六十條第一項、第二項第一款、第二款情形之一者,各記違規點數一點。<br>
二、有第二十九條第一項第一款至第四款、第二十九條之二第一項、第二項、第三十條第一項第一款、第二款情形之一者,各記違規點數二點。<br>
三、有第四十三條、第五十三條或第五十四條情形之一者,各記違規點數三點。<br>
依前項各條款,已受吊扣或吊銷駕駛執照處分者,不予記點。<br>
汽車駕駛人在六個月內,違規記點共達六點以上者,吊扣駕駛執照一個月;一年內經吊扣駕駛執照二次,再違反第一項各款所列條款之一者,吊銷其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十三條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車依本條例規定記違規紀錄於三個月內共達三次以上者,吊扣其汽車牌照一個月。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十四條</font>
</font>
<table><tr><td> </td>
<td>
(刪除)<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十五條</font>
</font>
<table><tr><td> </td>
<td>
汽車所有人、駕駛人違反本條例,經主管機關裁決後逾二十日未向管轄地方法院聲明異議,或其聲明異議經法院裁定確定,而不依裁決或裁定繳納罰鍰或不繳送汽車牌照、駕駛執照者,依下列規定處理之:<br>
一、經處分吊銷汽車牌照或駕駛執照者,由公路主管機關逕行註銷。<br>
二、經處分吊扣汽車牌照或駕駛執照者,按其吊扣期間加倍處分;仍不依限期繳送汽車牌照或駕駛執照者,吊銷其汽車牌照或駕駛執照。<br>
三、罰鍰不繳納者,依法移送強制執行。<br>
於九十五年六月三十日前,十年內,汽車所有人、駕駛人因違反前項第三款修正前罰鍰不繳納,經易處吊銷汽車牌照或駕駛執照者,得於五年內繳清罰款後,申請核發。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十六條</font>
</font>
<table><tr><td> </td>
<td>
汽車牌照,經吊銷或註銷者,非經公路主管機關檢驗合格,不得再行請領。但依前條第一款之規定註銷者,非滿六個月不得再行請領。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十七條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,曾依第二十七條第二項、第二十九條之二第五項、第三十五條第一項、第三項後段、第四項後段、第三十七條第二項、第五十四條、第六十一條第一項第一款、第二款、第六十二條第四項後段規定吊銷駕駛執照者,終身不得考領駕駛執照。但有第六十七條之一所定情形者,不在此限。<br>
汽車駕駛人,曾依第二十九條第四項、第三十條第三項、第三十五條第三項前段、第四項前段、第三十七條第三項、第四十三條、第六十一條第一項第三款、第四款後段規定吊銷駕駛執照者,三年內不得考領駕駛執照;汽車駕駛人駕駛營業大客車,曾依第三十五條第二項規定吊銷駕駛執照者,四年內不得考領駕駛執照。<br>
汽車駕駛人,曾依本條例其他各條規定吊銷駕駛執照者,一年內不得考領駕駛執照。<br>
汽車駕駛人,曾依第二項、第三項規定吊銷駕駛執照,不得考領駕駛執照期間計達六年以上者,終身不得考領駕駛執照。但有第六十七條之一所定情形者,不在此限。<br>
前四項不得考領駕駛執照規定,於汽車駕駛人係無駕駛執照駕車者,亦適用之。<br>
汽車駕駛人違反本條例規定,應受吊扣駕駛執照處分,於汽車駕駛人係無駕駛執照駕車者,在所規定最長吊扣期間內,不得考領駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十七條之一</font>
</font>
<table><tr><td> </td>
<td>
前條第一項及第四項規定情形,符合特定條件,得於下列各款所定期間後,向公路主管機關申請考領駕駛執照:<br>
一、肇事致人死亡案件,受處分人經吊銷駕駛執照處分執行已逾十二年。<br>
二、肇事致人重傷案件,受處分人經吊銷駕駛執照處分執行已逾十年。<br>
三、肇事致人受傷案件,受處分人經吊銷駕駛執照處分執行已逾八年。<br>
四、其他案件,受處分人經吊銷駕駛執照處分執行已逾六年。<br>
依前項規定申請者,公路主管機關得於其測驗合格後發給有效期間較短之駕駛執照,其期滿換領駕駛執照,應依主管機關所定條件辦理。<br>
前二項所定有關特定條件、換領駕駛執照之種類、駕駛執照有效期間、換領條件等事項之辦法,由交通部會商內政部及有關機關定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十八條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,因違反本條例及道路交通安全規則之規定,受吊銷駕駛執照處分時,吊銷其執有各級車類之駕駛執照。<br>
領有汽車駕駛執照之汽車駕駛人,除駕駛聯結車、大客車、大貨車外之非其駕駛執照種類之車輛,違反本條例及道路交通安全規則之規定,應受吊扣駕駛執照情形時,無因而肇事致人受傷或重傷者,記違規點數五點。但一年內違規點數共達六點以上或再次應受吊扣駕駛執照情形者,併依原違反本條例應受吊扣駕駛執照處分規定,吊扣其駕駛執照。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第三章 慢車</font>
<table><tr><td> </td><td><font color=8000ff>第六十九條</font>
</font>
<table><tr><td> </td>
<td>
慢車種類及名稱如下:<br>
一、自行車:<br>
(一)腳踏自行車。<br>
(二)電動輔助自行車:指經型式審驗合格,以人力為主、電力為輔,最大行駛速率在每小時二十五公里以下,且車重在四十公斤以下之二輪車輛。<br>
(三)電動自行車:指經型式審驗合格,以電力為主,最大行駛速率在每小時二十五公里以下,且車重(不含電池)在四十公斤以下之二輪車輛。<br>
二、三輪以上慢車:<br>
(一)人力行駛車輛:指三輪客、貨車、手拉(推)貨車等。<br>
(二)獸力行駛車輛:指牛車、馬車等。<br>
三輪以上慢車未依規定向直轄市、縣(市)政府辦理登記,領取證照即行駛道路者,處所有人新臺幣三百元罰鍰,並禁止其通行。<br>
前項慢車登記、發給證照及管理之辦法,由直轄市、縣(市)政府定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第六十九條之一</font>
</font>
<table><tr><td> </td>
<td>
電動輔助自行車及電動自行車應經檢測及型式審驗合格,並粘貼審驗合格標章後,始得行駛道路。<br>
前項電動輔助自行車及電動自行車之檢測基準、檢測方式、型式審驗、品質一致性、申請資格、審驗合格證明書有效期限、查核及監督管理等事項之辦法,由交通部定之。交通部並得委託車輛專業技術研究機構辦理之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十條</font>
</font>
<table><tr><td> </td>
<td>
慢車經依規定淘汰並公告禁止行駛後仍行駛者,沒入後銷毀之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十一條</font>
</font>
<table><tr><td> </td>
<td>
慢車證照,未隨身攜帶者,處慢車所有人新臺幣一百八十元罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十二條</font>
</font>
<table><tr><td> </td>
<td>
慢車未經核准,擅自變更裝置,或不依規定保持煞車、鈴號、燈光及反光裝置等安全設備之良好與完整者,處慢車所有人新臺幣一百八十元罰鍰,並責令限期安裝或改正。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十三條</font>
</font>
<table><tr><td> </td>
<td>
慢車駕駛人,有下列情形之一者,處新臺幣三百元以上六百元以下罰鍰:<br>
一、不在劃設之慢車道通行,或無正當理由在未劃設慢車道之道路不靠右側路邊行駛。<br>
二、不在規定之地區路線或時間內行駛。<br>
三、不依規定轉彎、超車、停車或通過交岔路口。<br>
四、在道路上爭先、爭道或其他危險方式駕車。<br>
五、有燈光設備而在夜間行車未開啟燈光。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十四條</font>
</font>
<table><tr><td> </td>
<td>
慢車駕駛人,有下列情形之一者,處新臺幣三百元以上六百元以下罰鍰:<br>
一、不服從執行交通勤務警察之指揮或不依標誌、標線、號誌之指示。<br>
二、在同一慢車道上,不按遵行之方向行駛。<br>
三、不依規定,擅自穿越快車道。<br>
四、不依規定停放車輛。<br>
五、在人行道或快車道行駛。<br>
六、聞消防車、警備車、救護車或工程救險車警號不立即避讓。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十五條</font>
</font>
<table><tr><td> </td>
<td>
慢車駕駛人,駕車在鐵路平交道有第五十四條各款情形之一者,處新臺幣一千二百元以上二千四百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十六條</font>
</font>
<table><tr><td> </td>
<td>
慢車駕駛人,載運客、貨有下列情形之一者,處新臺幣三百元以上六百元以下罰鍰:<br>
一、乘坐人數超過規定數額。<br>
二、裝載貨物超過規定重量或超出車身一定限制。<br>
三、裝載容易滲漏、飛散、有惡臭氣味及危險性貨物不嚴密封固或不為適當之裝置。<br>
四、裝載禽、畜重疊或倒置。<br>
五、裝載貨物不捆紮結實。<br>
六、上、下乘客或裝卸貨物不緊靠路邊妨礙交通。<br>
七、牽引其他車輛或攀附汽車隨行。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十七條</font>
</font>
<table><tr><td> </td>
<td>
(刪除)<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第四章 行人</font>
<table><tr><td> </td><td><font color=8000ff>第七十八條</font>
</font>
<table><tr><td> </td>
<td>
行人在道路上有下列情形之一者,處新臺幣三百元罰鍰:<br>
一、不依標誌、標線、號誌之指示或警察指揮。<br>
二、不在劃設之人行道通行,或無正當理由,在未劃設人行道之道路不靠邊通行。<br>
三、不依規定,擅自穿越車道。<br>
四、於交通頻繁之道路或鐵路平交道附近任意奔跑、追逐、嬉遊或坐、臥、蹲、立,足以阻礙交通。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第七十九條</font>
</font>
<table><tr><td> </td>
<td>
(刪除)<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十條</font>
</font>
<table><tr><td> </td>
<td>
行人行近鐵路平交道,有下列情形之一者,處新臺幣一千二百元罰鍰:<br>
一、不遵守看守人員之指示,或遮斷器開始放下,或警鈴已響、閃光號誌已顯示,仍強行闖越。<br>
二、在無看守人員管理或無遮斷器、警鈴及閃光號誌設備之鐵路平交道,不依規定暫停、看、聽、有無火車駛來,逕行通過。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十一條</font>
</font>
<table><tr><td> </td>
<td>
在車輛行駛中攀登、跳車或攀附隨行者,處新臺幣五百元罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十一條之一</font>
</font>
<table><tr><td> </td>
<td>
於鐵路公路車站或其他交通頻繁處所,違規攬客,妨害交通秩序者,處新臺幣一千五百元以上三千元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第五章 道路障礙</font>
<table><tr><td> </td><td><font color=8000ff>第八十二條</font>
</font>
<table><tr><td> </td>
<td>
有下列情形之一者,除責令行為人即時停止並消除障礙外,處行為人或其雇主新臺幣一千二百元以上二千四百元以下罰鍰:<br>
一、在道路堆積、置放、設置或拋擲足以妨礙交通之物。<br>
二、在道路兩旁附近燃燒物品,發生濃煙,足以妨礙行車視線。<br>
三、利用道路為工作場所。<br>
四、利用道路放置拖車、貨櫃或動力機械。<br>
五、興修房屋使用道路未經許可,或經許可超出限制。<br>
六、經主管機關許可挖掘道路而不依規定樹立警告標誌,或於事後未將障礙物清除。<br>
七、擅自設置或變更道路交通標誌、標線、號誌或其類似之標識。<br>
八、未經許可在道路設置石碑、廣告牌、綵坊或其他類似物。<br>
九、未經許可在道路舉行賽會或擺設筵席、演戲、拍攝電影或其他類似行為。<br>
十、未經許可在道路擺設攤位。<br>
前項第一款妨礙交通之物、第八款之廣告牌、經勸導行為人不即時清除或行為人不在場,視同廢棄物,依廢棄物法令清除之。第十款之攤棚、攤架得沒入之。<br>
行為人在高速公路或高速公路兩旁,有第一項第一款、第二款情事者,處新臺幣三千元以上六千元以下罰鍰;致發生交通事故者,加倍處罰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十二條之一</font>
</font>
<table><tr><td> </td>
<td>
占用道路之廢棄車輛,經民眾檢舉或由警察機關、環境保護主管機關查報後,由警察機關通知車輛所有人限期清理;車輛所有人屆期未清理,或有車輛所有人行方不明無法通知或無法查明該車輛所有人情形,環境保護主管機關應先行移置或委託民間單位移置,並得向車輛所有人收取移置費及保管費。該車輛經公告一個月仍無人認領者,由該環境保護主管機關依廢棄物清除。<br>
前項廢棄車輛之認定基準與查報處理辦法,由交通部會同內政部、法務部、行政院環境保護署定之;收取移置費及保管費之基準,由直轄市、縣(市)政府定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十三條</font>
</font>
<table><tr><td> </td>
<td>
有下列情形之一不聽勸阻者,處行為人或雇主新臺幣三百元以上六百元以下罰鍰,並責令撤除:<br>
一、在車道或交通島上散發廣告物、宣傳單或其相類之物。<br>
二、在車道上、車站內、高速公路服務區休息站,任意販賣物品妨礙交通。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十四條</font>
</font>
<table><tr><td> </td>
<td>
疏縱或牽繫禽、畜、寵物在道路奔走,妨害交通者,處所有人或行為人新臺幣三百元以上六百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td>
<td><font color=4000ff size=4>第六章 附則</font>
<table><tr><td> </td><td><font color=8000ff>第八十五條</font>
</font>
<table><tr><td> </td>
<td>
本條例之處罰,受舉發違反道路交通管理事件之受處罰人,認為受舉發之違規行為應歸責他人者,應於舉發違反道路交通管理事件通知單應到案日期前,檢附相關證據及應歸責人相關證明文件,向處罰機關告知應歸責人,處罰機關應即另行通知應歸責人到案依法處理。逾期未依規定辦理者,仍依本條例各該違反條款規定處罰。<br>
本條例之處罰,其為吊扣或吊銷車輛牌照者,不因處分後該車輛所有權移轉、質押、租賃他人或租賃關係終止而免於執行。<br>
本條例規定沒入之物,不問屬於受處罰人與否,沒入之。<br>
依本條例規定逕行舉發或同時併處罰其他人之案件,推定受逕行舉發人或該其他人有過失。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十五條之一</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人、汽車所有人、汽車買賣業或汽車修理業違反第五十六條第一項或第五十七條規定,經舉發後,不遵守交通勤務警察或依法令執行交通稽查任務人員責令改正者,得連續舉發之。<br>
第七條之二之逕行舉發案件有下列情形之一者,得連續舉發:<br>
一、逕行舉發汽車行車速度超過規定之最高速限或低於規定之最低速度或有第三十三條第一項、第二項之情形,其違規地點相距六公里以上、違規時間相隔六分鐘以上或行駛經過一個路口以上。但其違規地點在隧道內者,不在此限。<br>
二、逕行舉發汽車有第五十六條第一項或第五十七條規定之情形,而駕駛人、汽車所有人、汽車買賣業、汽車修理業不在場或未能將汽車移置每逾二小時。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十五條之二</font>
</font>
<table><tr><td> </td>
<td>
車輛所有人或駕駛人依本條例規定應予禁止通行、禁止其行駛、禁止其駕駛者,交通勤務警察或依法令執行交通稽查任務人員應當場執行之,必要時,得逕行移置保管其車輛。<br>
前項車輛所有人或其委託之第三人得於保管原因消失後,持保管收據及行車執照領回車輛。其違反本條例第三十五條規定者,應同時檢附繳納罰鍰收據。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十五條之三</font>
</font>
<table><tr><td> </td>
<td>
第十二條第三項、第三十五條、第五十六條第三項、第五十七條第二項、第六十二條第六項及前條第一項之移置或扣留,得由交通勤務警察、依法令執行交通稽查任務人員逕行移置或扣留,其屬第五十六條第三項之移置,得由交通助理人員逕行為之。上述之移置或扣留,得使用民間拖吊車拖離之。<br>
前項移置或扣留,得向汽車所有人收取移置費及保管費;其不繳納者,追繳之。<br>
第一項移置保管或扣留之車輛,經通知車輛所有人限期領回;屆期未領回或無法查明車輛所有人,經公告三個月,仍無人認領者,由移置保管機關拍賣之,拍賣所得價款應扣除違反本條例規定應行繳納之罰鍰、移置費、保管費及其他必要費用後,依法提存。<br>
前項公告無人認領之車輛,符合廢棄車輛認定標準者,依廢棄物清理法及其相關法規規定清除之。依本條例應沒入之車輛或其他之物經裁決或裁定確定者,視同廢棄物,依廢棄物清理法及其相關法規規定清除。<br>
前四項有關移置保管、收取費用、公告拍賣、移送處理之辦法,在中央由交通部及內政部,在地方由直轄市、縣(市)政府依其權責分別定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十五條之四</font>
</font>
<table><tr><td> </td>
<td>
未滿十四歲之人違反本條例之規定,處罰其法定代理人或監護人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十六條</font>
</font>
<table><tr><td> </td>
<td>
汽車駕駛人,無駕駛執照駕車、酒醉駕車、吸食毒品或迷幻藥駕車、行駛人行道或行經行人穿越道不依規定讓行人優先通行,因而致人受傷或死亡,依法應負刑事責任者,加重其刑至二分之一。<br>
汽車駕駛人,在快車道依規定駕車行駛,因行人或慢車不依規定,擅自進入快車道,而致人受傷或死亡,依法應負刑事責任者,減輕其刑。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十七條</font>
</font>
<table><tr><td> </td>
<td>
受處分人,不服第八條主管機關所為之處罰,得於接到裁決書之翌日起二十日內,向管轄地方法院聲明異議。<br>
法院受理前項異議,以裁定為之。<br>
不服前項裁定,受處分人或原處分機關得為抗告。但對抗告之裁定不得再抗告。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十八條</font>
</font>
<table><tr><td> </td>
<td>
法院為處理有關交通事件,得設立專庭或指定專人辦理之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第八十九條</font>
</font>
<table><tr><td> </td>
<td>
法院受理有關交通事件,準用刑事訴訟法之規定;其處理辦法,由司法院會同行政院定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十條</font>
</font>
<table><tr><td> </td>
<td>
違反本條例之行為,自行為成立之日起;行為有連續或繼續之狀態者,自行為終了之日起,逾三個月不得舉發。但汽車肇事致人受傷或死亡案件,因肇事責任不明,已送鑑定者,其期間自鑑定終結之日起算。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十條之一</font>
</font>
<table><tr><td> </td>
<td>
慢車駕駛人、行人不依規定接受道路交通安全講習者,處新臺幣六百元以上一千二百元以下罰鍰。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十條之二</font>
</font>
<table><tr><td> </td>
<td>
慢車所有人、駕駛人、行人、道路障礙者,依本條例所處罰鍰裁決或裁定確定,經通知限期繳納,屆期不繳納者,依法移送執行。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十條之三</font>
</font>
<table><tr><td> </td>
<td>
在圓環、人行道、交岔路口十公尺內,公路主管機關、市區道路主管機關或警察機關得在不妨害行人通行或行車安全無虞之原則,設置必要之標誌或標線另行規定機器腳踏車、慢車之停車處所。<br>
公路主管機關、市區道路主管機關或警察機關得在不妨害行人通行或行車安全無虞之原則,於人行道設置必要之標誌或標線供慢車行駛。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十一條</font>
</font>
<table><tr><td> </td>
<td>
左列機構或人員,應予獎勵;其辦法由交通部、內政部會同有關機關定之:<br>
一、對促進交通安全著有成效之學校、大眾傳播業及公、私汽車駕駛人訓練機構。<br>
二、檢舉汽車肇事或協助救護汽車肇事受傷者之人員。<br>
三、優良駕駛人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十二條</font>
</font>
<table><tr><td> </td>
<td>
車輛分類、汽車牌照申領、異動、管理規定、汽車載重噸位、座位立位之核定、汽車檢驗項目、基準、檢驗週期規定、汽車駕駛人執照考驗、換發、證照效期與登記規定、車輛裝載、行駛規定、汽車設備變更規定、動力機械之範圍、駕駛資格與行駛規定、車輛行駛車道之劃分、行人通行、道路障礙及其他有關道路交通安全等事項之規則,由交通部會同內政部定之。<br>
機器腳踏車禁止行駛國道高速公路。汽缸排氣量550立方公分以上之大型重型機器腳踏車,可行駛之路權除交通部另有規定外,應比照小型汽車;其駕駛執照考驗及行駛規定,由交通部會同內政部定之。<br>
道路交通安全講習之方式、內容、時機、時數、執行單位等事項之辦法,由交通部會同內政部定之。<br>
本條例之罰鍰基準、舉發或輕微違規勸導、罰鍰繳納、向處罰機關陳述意見或裁決之處理程序、分期繳納之申請條件、分期期數、不依限期繳納之處理、分期處理規定及繳納機構等事項之處理細則,由交通部會同內政部定之。<br>
道路交通事故駕駛人、肇事人應處置作為、現場傷患救護、管制疏導、肇事車輛扣留、移置與發還及調查處理之辦法,由內政部會同交通部、行政院衛生署定之。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十二條之一</font>
</font>
<table><tr><td> </td>
<td>
處罰機關裁決職業汽車駕駛人吊扣、吊(註)銷駕駛執照時,得應雇主之請求,以書面或其他方式通知違規當時所駕駛汽車之所有人。<br>
</td>
</table>
</table>
</table>
<table><tr><td> </td><td>
<table><tr><td> </td><td><font color=8000ff>第九十三條</font>
</font>
<table><tr><td> </td>
<td>
本條例施行日期,由行政院以命令定之。<br>
</td>
</table>
</table>
</table>
</left>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/02017/02017100010700.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:17:45 GMT -->
</html>
| g0v/laweasyread-data | rawdata/utf8_lawstat/version2/02017/02017100010700.html | HTML | mit | 109,893 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!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" lang="en" xml:lang="en">
<head>
<title>restful_form Element</title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="restful_form Element"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-11-12 19:50:51 CST"/>
<meta name="author" content="Steffen Panning"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
html { font-family: Times, serif; font-size: 12pt; }
.title { text-align: center; }
.todo { color: red; }
.done { color: green; }
.tag { background-color: #add8e6; font-weight:normal }
.target { }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.right {margin-left:auto; margin-right:0px; text-align:right;}
.left {margin-left:0px; margin-right:auto; text-align:left;}
.center {margin-left:auto; margin-right:auto; text-align:center;}
p.verse { margin-left: 3% }
pre {
border: 1pt solid #AEBDCC;
background-color: #F3F5F7;
padding: 5pt;
font-family: courier, monospace;
font-size: 90%;
overflow:auto;
}
table { border-collapse: collapse; }
td, th { vertical-align: top; }
th.right { text-align:center; }
th.left { text-align:center; }
th.center { text-align:center; }
td.right { text-align:right; }
td.left { text-align:left; }
td.center { text-align:center; }
dt { font-weight: bold; }
div.figure { padding: 0.5em; }
div.figure p { text-align: center; }
div.inlinetask {
padding:10px;
border:2px solid gray;
margin:10px;
background: #ffffcc;
}
textarea { overflow-x: auto; }
.linenr { font-size:smaller }
.code-highlighted {background-color:#ffff00;}
.org-info-js_info-navigation { border-style:none; }
#org-info-js_console-label { font-size:10px; font-weight:bold;
white-space:nowrap; }
.org-info-js_search-highlight {background-color:#ffff00; color:#000000;
font-weight:bold; }
/*]]>*/-->
</style>
<LINK href='../stylesheet.css' rel='stylesheet' type='text/css' />
<script type="text/javascript">
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="preamble">
</div>
<div id="content">
<h1 class="title">restful_form Element</h1>
<p><a href="http://nitrogenproject.com">Home</a> | <a href="../index.html">Getting Started</a> | <a href="../api.html">API</a> | <a href="../elements.html"><b>Elements</b></a> | <a href="../actions.html">Actions</a> | <a href="../validators.html">Validators</a> | <a href="../handlers.html">Handlers</a> | <a href="../config.html">Configuration Options</a> | <a href="../advanced.html">Advanced Guides</a> | <a href="../troubleshooting.html">Troubleshooting</a> | <a href="../about.html">About</a>
</p>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1 RESTful Form Element - #restful_form {}</a></li>
</ul>
</div>
</div>
<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> RESTful Form Element - #restful_form {}</h2>
<div class="outline-text-2" id="text-1">
<p>
The #restful_form{} element produces an HTML form element.
The form element is necessary if your website has to work without
javascript. It is <span style="text-decoration:underline;">not</span> necessary for a pure ajax/javascript driven
website.
</p>
</div>
<div id="outline-container-1-1" class="outline-3">
<h3 id="sec-1-1"><span class="section-number-3"></span> Usage</h3>
<div class="outline-text-3" id="text-1-1">
<pre class="src src-erlang">#<span class="org-type">restful_form</span> {
method=post|get,
action=<span class="org-string">"/formdest"</span>,
enctype=<span class="org-string">"multipart/form-data"</span>,
body=<span class="org-variable-name">FormElements</span>
}
</pre>
</div>
</div>
<div id="outline-container-1-2" class="outline-3">
<h3 id="sec-1-2"><span class="section-number-3"></span> Attributes</h3>
<div class="outline-text-3" id="text-1-2">
<dl>
<dt>method - (<i>string or atom</i>)</dt><dd>Set the HTTP request-method (typically
<code>post</code> or <code>get</code>).
</dd>
<dt>action - (<i>string</i>)</dt><dd>Set the target-url of the form submit. If
left blank, the same page module is used as
target.
</dd>
<dt>target - (<i>string or atom</i>)</dt><dd>Set the HTML <code>target</code> attribute, which can
be used for redirecting the form submission to a
new window, or to a frame. If left blank, will
just target the current window.
</dd>
<dt>enctype - (<i>string</i>)</dt><dd>Sets the encoding for the form transmission.
</dd>
<dt>body - (<i>string</i>)</dt><dd>Contains the elements of the form
</dd>
</dl>
</div>
</div>
<div id="outline-container-1-3" class="outline-3">
<h3 id="sec-1-3"><span class="section-number-3"></span> See Also</h3>
<div class="outline-text-3" id="text-1-3">
<ul>
<li><a href="./base.html">Base</a>
</li>
<li><a href="./link.html">Link</a>
</li>
<li><a href="./textbox.html">Textbox</a>
</li>
<li><a href="./password.html">Password</a>
</li>
<li><a href="./textarea.html">Textarea</a>
</li>
<li><a href="./checkbox.html">Checkbox</a>
</li>
<li><a href="./dropdown.html">Dropdown</a>
</li>
<li><a href="./option.html">Dropdown Option</a>
</li>
<li><a href="./restful_submit.html">RESTful Submit</a>
</li>
<li><a href="./restful_reset.html">RESTful Reset</a>
</li>
<li><a href="./restful_upload.html">RESTful Upload</a>
</li>
<li><a href="http://nitrogenproject.com/demos/restful">RESTful Forms Demo</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="postamble">
<p class="date">Date: 2014-11-12 19:50:51 CST</p>
<p class="author">Author: Steffen Panning</p>
<p class="creator">Org version 7.8.02 with Emacs version 23</p>
<a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a>
</div><h2>Comments</h2>
<b>Note:</b><!-- Disqus does not currently support Erlang for its syntax highlighting, so t-->To specify <!--Erlang--> code blocks, just use the generic code block syntax: <pre><b><pre><code>your code here</code></pre></b></pre>
<br />
<br />
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'nitrogenproject'; // required: replace example with your forum shortname
var disqus_identifier = 'html/elements/restful_form.html'; //This will be replaced with the path part of the url
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</body>
</html>
| stuart-thackray/nitrogen_core | doc/html/elements/restful_form.html | HTML | mit | 8,118 |
<span class="color" style="background: hsl(0, 0%, 21%);"></span>
<code>hsl(0, 0%, 21%)</code>
| planswell/bulma | docs/_includes/color/grey-darker.html | HTML | mit | 95 |
<!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_17) on Mon Dec 02 20:33:04 CET 2013 -->
<title>Uses of Class org.lwjgl.opengles.EXTTextureCompressionDXT1 (LWJGL API)</title>
<meta name="date" content="2013-12-02">
<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="Uses of Class org.lwjgl.opengles.EXTTextureCompressionDXT1 (LWJGL API)";
}
//-->
</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><a href="../../../../org/lwjgl/opengles/EXTTextureCompressionDXT1.html" title="class in org.lwjgl.opengles">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html" target="_top">Frames</a></li>
<li><a href="EXTTextureCompressionDXT1.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 org.lwjgl.opengles.EXTTextureCompressionDXT1" class="title">Uses of Class<br>org.lwjgl.opengles.EXTTextureCompressionDXT1</h2>
</div>
<div class="classUseContainer">No usage of org.lwjgl.opengles.EXTTextureCompressionDXT1</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><a href="../../../../org/lwjgl/opengles/EXTTextureCompressionDXT1.html" title="class in org.lwjgl.opengles">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../overview-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html" target="_top">Frames</a></li>
<li><a href="EXTTextureCompressionDXT1.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><i>Copyright © 2002-2009 lwjgl.org. All Rights Reserved.</i></small></p>
</body>
</html>
| RobbertJongeling/ld29 | lib/lwjgl-docs-2.9.1/javadoc/org/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html | HTML | mit | 4,314 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt-->
<title>OpenGL.normalRenderTexture - multiple declarations</title>
<link rel="stylesheet" type="text/css" href="../../../../styles/ddox.css"/>
<link rel="stylesheet" href="../../../../prettify/prettify.css" type="text/css"/>
<script type="text/javascript" src="../../../../scripts/jquery.js">/**/</script>
<script type="text/javascript" src="../../../../prettify/prettify.js">/**/</script>
<script type="text/javascript" src="../../../../scripts/ddox.js">/**/</script>
</head>
<body onload="prettyPrint(); setupDdox();">
<nav id="main-nav"><!-- using block navigation in layout.dt-->
<ul class="tree-view">
<li class=" tree-view">
<a href="#" class="package">dash</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">components</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/components/animation.html" class=" module">animation</a>
</li>
<li>
<a href="../../../../dash/components/assets.html" class=" module">assets</a>
</li>
<li>
<a href="../../../../dash/components/camera.html" class=" module">camera</a>
</li>
<li>
<a href="../../../../dash/components/component.html" class=" module">component</a>
</li>
<li>
<a href="../../../../dash/components/lights.html" class=" module">lights</a>
</li>
<li>
<a href="../../../../dash/components/material.html" class=" module">material</a>
</li>
<li>
<a href="../../../../dash/components/mesh.html" class=" module">mesh</a>
</li>
<li>
<a href="../../../../dash/components/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">core</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/core/dgame.html" class=" module">dgame</a>
</li>
<li>
<a href="../../../../dash/core/gameobject.html" class=" module">gameobject</a>
</li>
<li>
<a href="../../../../dash/core/prefabs.html" class=" module">prefabs</a>
</li>
<li>
<a href="../../../../dash/core/properties.html" class=" module">properties</a>
</li>
<li>
<a href="../../../../dash/core/scene.html" class=" module">scene</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">editor</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/editor/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../../dash/editor/websockets.html" class=" module">websockets</a>
</li>
</ul>
</li>
<li class=" tree-view">
<a href="#" class="package">graphics</a>
<ul class="tree-view">
<li class=" tree-view">
<a href="#" class="package">adapters</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/graphics/adapters/adapter.html" class=" module">adapter</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/gl.html" class=" module">gl</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/linux.html" class=" module">linux</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/win32gl.html" class="selected module">win32gl</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">shaders</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">glsl</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/geometry.html" class=" module">geometry</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/shadowmap.html" class=" module">shadowmap</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl.html" class=" module">glsl</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/graphics/adapters.html" class=" module">adapters</a>
</li>
<li>
<a href="../../../../dash/graphics/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">net</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/net/connection.html" class=" module">connection</a>
</li>
<li>
<a href="../../../../dash/net/connectionmanager.html" class=" module">connectionmanager</a>
</li>
<li>
<a href="../../../../dash/net/packets.html" class=" module">packets</a>
</li>
<li>
<a href="../../../../dash/net/webconnection.html" class=" module">webconnection</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">utility</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/utility/awesomium.html" class=" module">awesomium</a>
</li>
<li>
<a href="../../../../dash/utility/concurrency.html" class=" module">concurrency</a>
</li>
<li>
<a href="../../../../dash/utility/config.html" class=" module">config</a>
</li>
<li>
<a href="../../../../dash/utility/input.html" class=" module">input</a>
</li>
<li>
<a href="../../../../dash/utility/output.html" class=" module">output</a>
</li>
<li>
<a href="../../../../dash/utility/resources.html" class=" module">resources</a>
</li>
<li>
<a href="../../../../dash/utility/soloud.html" class=" module">soloud</a>
</li>
<li>
<a href="../../../../dash/utility/string.html" class=" module">string</a>
</li>
<li>
<a href="../../../../dash/utility/tasks.html" class=" module">tasks</a>
</li>
<li>
<a href="../../../../dash/utility/time.html" class=" module">time</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/components.html" class=" module">components</a>
</li>
<li>
<a href="../../../../dash/core.html" class=" module">core</a>
</li>
<li>
<a href="../../../../dash/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../../dash/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../../dash/net.html" class=" module">net</a>
</li>
<li>
<a href="../../../../dash/utility.html" class=" module">utility</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash.html" class=" module">dash</a>
</li>
</ul>
<noscript>
<p style="color: red">The search functionality needs JavaScript enabled</p>
</noscript>
<div id="symbolSearchPane" style="display: none">
<p>
<input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</p>
<ul id="symbolSearchResults" style="display: none"></ul>
<script type="application/javascript" src="../../../../symbols.js"></script>
<script type="application/javascript">
//<![CDATA[
var symbolSearchRootDir = "../../../../"; $('#symbolSearchPane').show();
//]]>
</script>
</div>
<script type="text/javascript" src="../../../../scripts/mousetrap.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
Mousetrap.bind('s', function(e) {
$("#symbolSearch").focus();
return false;
});
});
//]]>
</script>
</nav>
<div id="main-contents">
<h1>OpenGL.normalRenderTexture - multiple declarations</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt-->
<ul>
<li>Function OpenGL.normalRenderTexture</li>
<li>Function OpenGL.normalRenderTexture</li>
</ul>
<section>
<h2>Function OpenGL.normalRenderTexture</h2>
<p></p>
<section>
<h3>Prototype</h3>
<pre class="code prettyprint lang-d prototype">
uint normalRenderTexture() pure nothrow @property @safe auto final;</pre>
</section>
</section>
<section>
<h2>Function OpenGL.normalRenderTexture</h2>
<p></p>
<section>
<h3>Prototype</h3>
<pre class="code prettyprint lang-d prototype">
void normalRenderTexture(
uint newVal
) pure nothrow @property @safe final;</pre>
</section>
</section>
<section>
<h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt-->
</section>
<section>
<h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt-->
</section>
<section>
<h2>License</h2><!-- using block ddox.license in ddox.layout.dt-->
</section>
</div>
</body>
</html> | Circular-Studios/Dash-Docs | api/v0.10.0/dash/graphics/adapters/win32gl/OpenGL.normalRenderTexture.html | HTML | mit | 10,366 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>remotectl</title>
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
<link rel="home" href="index.html" title="Cockpit Guide">
<link rel="up" href="cockpit-manual.html" title="Manual pages">
<link rel="prev" href="cockpit-desktop.1.html" title="cockpit-desktop">
<link rel="next" href="cockpit-bridge.1.html" title="cockpit-bridge">
<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="cockpit-desktop.1.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="cockpit-manual.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">Cockpit Guide</th>
<td><a accesskey="n" href="cockpit-bridge.1.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="remotectl.8"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle">remotectl</span></h2>
<p>remotectl — Remote Access Configuration</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<h2>Synopsis</h2>
<div class="cmdsynopsis"><p><code class="command">remotectl</code> {COMMAND} [OPTIONS...]</p></div>
</div>
<div class="refsect1">
<a name="remotectl-description"></a><h2>DESCRIPTION</h2>
<p>The <span class="command"><strong>remotectl</strong></span> program will configure remote access to the system. Currently it manages cockpit's SSL certificate.</p>
</div>
<div class="refsect1">
<a name="remotectl-commands"></a><h2>Commands</h2>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="command"><strong>certificate</strong></span></span></p></td>
<td>
<p>Manage Cockpit's SSL certificate. If used without options will check if cockpit has a valid certificate without making any changes.</p>
<p>
<code class="option">--ensure</code> Ensure that a certificate exists and can be loaded. Certificate will be created if it does not already exist.
</p>
<p>
<code class="option">--user username</code> The unix user that should own the certificate. Only takes effect if used with <code class="option">--ensure</code>.
</p>
<p>
<code class="option">--group groupname</code> The unix group that should read the certificate. Only takes effect if used with <code class="option">--ensure</code>.
</p>
<p>
If any additional arguments are given, they are treated as files that should be combined to create a certificate file. If the combined files validate, they will be saved in the appropriate location using the name of the first file given with the extension changed to .cert. For example:
</p>
<p><span class="command"><strong>remotectl certificate server.pem chain.pem key.pem</strong></span></p>
<p>will result in <code class="literal">server.cert</code>. If <code class="literal">server.cert</code> already exists it will be overwritten.
</p>
</td>
</tr></tbody>
</table></div>
</div>
<div class="refsect1">
<a name="remotectl-options"></a><h2>OPTIONS</h2>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><code class="option">--help</code></span></p></td>
<td><p>
Show help options.
</p></td>
</tr>
<tr>
<td><p><span class="term"><code class="option">--verbose</code></span></p></td>
<td><p>Print verbose messages about the task</p></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="remotectl-bugs"></a><h2>BUGS</h2>
<p>
Please send bug reports to either the distribution bug tracker or the
<a class="ulink" href="https://github.com/cockpit-project/cockpit/issues/new" target="_top">upstream bug tracker</a>.
</p>
</div>
<div class="refsect1">
<a name="remotectl-author"></a><h2>AUTHOR</h2>
<p>Cockpit has been written by many
<a class="ulink" href="https://github.com/cockpit-project/cockpit/" target="_top">contributors</a>.</p>
</div>
<div class="refsect1">
<a name="remotectl-see-also"></a><h2>SEE ALSO</h2>
<p>
<span class="citerefentry"><span class="refentrytitle">cockpit-ws</span>(8)</span>
</p>
</div>
</div>
<div class="footer"><hr></div>
</body>
</html>
| cockpit-project/cockpit-project.github.io | guide/195/remotectl.8.html | HTML | mit | 4,952 |
<!DOCTYPE html>
<!--
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>CKEditor Samples</title>
<link rel="stylesheet" href="sample.css">
</head>
<body>
<h1 class="samples">
CKEditor Samples
</h1>
<div class="twoColumns">
<div class="twoColumnsLeft">
<h2 class="samples">
Basic Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="replacebyclass.html">Replace textarea elements by class name</a></dt>
<dd>Automatic replacement of all textarea elements of a given class with a CKEditor instance.</dd>
<dt><a class="samples" href="replacebycode.html">Replace textarea elements by code</a></dt>
<dd>Replacement of textarea elements with CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="jquery.html">Create editors with jQuery</a></dt>
<dd>Creating standard and inline CKEditor instances with jQuery adapter.</dd>
</dl>
<h2 class="samples">
Basic Customization
</h2>
<dl class="samples">
<dt><a class="samples" href="uicolor.html">User Interface color</a></dt>
<dd>Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.</dd>
<dt><a class="samples" href="uilanguages.html">User Interface languages</a></dt>
<dd>Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.</dd>
</dl>
</div>
<div class="twoColumnsRight">
<h2 class="samples">
Inline Editing
</h2>
<dl class="samples">
<dt><a class="samples" href="inlineall.html">Massive inline editor creation</a></dt>
<dd>Turn all elements with <code>contentEditable = true</code> attribute into inline editors.</dd>
<dt><a class="samples" href="inlinebycode.html">Convert element into an inline editor by code</a></dt>
<dd>Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="inlinetextarea.html">Replace textarea with inline editor</a> <span class="new">New!</span></dt>
<dd>A form with a textarea that is replaced by an inline editor at runtime.</dd>
</dl>
<h2 class="samples">
Advanced Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="datafiltering.html">Data filtering and features activation</a> <span class="new">New!</span></dt>
<dd>Data filtering and automatic features activation basing on configuration.</dd>
<dt><a class="samples" href="divreplace.html">Replace DIV elements on the fly</a></dt>
<dd>Transforming a <code>div</code> element into an instance of CKEditor with a mouse click.</dd>
<dt><a class="samples" href="appendto.html">Append editor instances</a></dt>
<dd>Appending editor instances to existing DOM elements.</dd>
<dt><a class="samples" href="ajax.html">Create and destroy editor instances for Ajax applications</a></dt>
<dd>Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.</dd>
<dt><a class="samples" href="api.html">Basic usage of the API</a></dt>
<dd>Using the CKEditor JavaScript API to interact with the editor at runtime.</dd>
<dt><a class="samples" href="xhtmlstyle.html">XHTML-compliant style</a></dt>
<dd>Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.</dd>
<dt><a class="samples" href="readonly.html">Read-only mode</a></dt>
<dd>Using the readOnly API to block introducing changes to the editor contents.</dd>
<dt><a class="samples" href="tabindex.html">"Tab" key-based navigation</a></dt>
<dd>Navigating among editor instances with tab key.</dd>
<dt><a class="samples" href="plugins/dialog/dialog.html">Using the JavaScript API to customize dialog windows</a></dt>
<dd>Using the dialog windows API to customize dialog windows without changing the original editor code.</dd>
<dt><a class="samples" href="plugins/divarea/divarea.html">Replace Textarea with a "DIV-based" editor</a></dt>
<dd>Using <code>div</code> instead of <code>iframe</code> for rich editing.</dd>
<dt><a class="samples" href="plugins/enterkey/enterkey.html">Using the "Enter" key in CKEditor</a></dt>
<dd>Configuring the behavior of <em>Enter</em> and <em>Shift+Enter</em> keys.</dd>
<dt><a class="samples" href="plugins/toolbar/toolbar.html">Toolbar Configurations</a></dt>
<dd>Configuring CKEditor to display full or custom toolbar layout.</dd>
</dl>
</div>
</div>
<div id="footer">
<hr>
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2014, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| razzaghi/MessageCenter | web/bundles/app/js/ckeditor/samples/index.html | HTML | mit | 4,976 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Parky Park Park</title>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.8/pixi.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p2.js/0.7.1/p2.min.js"></script>
</head>
<body>
<script src="js/bundle.js"></script>
</body>
</html>
| Fishrock123/ParkyParkPark | dist/index.html | HTML | mit | 363 |
<!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_66-internal) on Tue Dec 08 09:26:31 GMT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.graph.Node_ANY (Apache Jena)</title>
<meta name="date" content="2015-12-08">
<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 org.apache.jena.graph.Node_ANY (Apache Jena)";
}
}
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="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">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-all.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?org/apache/jena/graph/class-use/Node_ANY.html" target="_top">Frames</a></li>
<li><a href="Node_ANY.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 org.apache.jena.graph.Node_ANY" class="title">Uses of Class<br>org.apache.jena.graph.Node_ANY</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="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</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="#org.apache.jena.graph">org.apache.jena.graph</a></td>
<td class="colLast">
<div class="block">This package defines the Graph and Node family of classes, which
form the underlying datatypes of the Jena system.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.jena.graph">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a> in <a href="../../../../../org/apache/jena/graph/package-summary.html">org.apache.jena.graph</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="../../../../../org/apache/jena/graph/package-summary.html">org.apache.jena.graph</a> with parameters of type <a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</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><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="typeNameLabel">NodeVisitor.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/jena/graph/NodeVisitor.html#visitAny-org.apache.jena.graph.Node_ANY-">visitAny</a></span>(<a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a> it)</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="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">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-all.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?org/apache/jena/graph/class-use/Node_ANY.html" target="_top">Frames</a></li>
<li><a href="Node_ANY.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
| manonsys/MVC | libs/Jena/javadoc-core/org/apache/jena/graph/class-use/Node_ANY.html | HTML | mit | 6,761 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body>
<h1>[name]</h1>
<div class="desc">
<p>
Geometry 是一个便于用户使用的 [page:BufferGeometry] 的替代品。Geometry 利用 [page:Vector3]
或 [page:Color] 存储了几何体的相关 attributes(如顶点位置,面信息,颜色等)比起 BufferGeometry
更容易读写,但是运行效率不如有类型的队列。
</p>
<p>
对于大型工程或正式工程,推荐采用 [page:BufferGeometry]。
</p>
</div>
<h2>示例</h2>
<div>[example:webgl_geometry_minecraft WebGL / geometry / minecraft ]</div>
<div>[example:webgl_geometry_minecraft_ao WebGL / geometry / minecraft / ao ]</div>
<div>[example:webgl_geometry_nurbs WebGL / geometry / nurbs ]</div>
<div>[example:webgl_geometry_spline_editor WebGL / geometry / spline / editor ]</div>
<div>[example:webgl_interactive_cubes_gpu WebGL / interactive / cubes / gpu ]</div>
<div>[example:webgl_interactive_lines WebGL / interactive / lines ]</div>
<div>[example:webgl_interactive_raycasting_points WebGL / interactive / raycasting / points ]</div>
<div>[example:webgl_interactive_voxelpainter WebGL / interactive / voxelpainter ]</div>
<div>[example:webgl_morphnormals WebGL / morphNormals ]</div>
<code>var geometry = new THREE.Geometry();
geometry.vertices.push(
new THREE.Vector3( -10, 10, 0 ),
new THREE.Vector3( -10, -10, 0 ),
new THREE.Vector3( 10, -10, 0 )
);
geometry.faces.push( new THREE.Face3( 0, 1, 2 ) );
geometry.computeBoundingSphere();
</code>
<h2>构造函数</h2>
<h3>[name]()</h3>
<p>
构造函数没有任何参数。
</p>
<h2>属性</h2>
<h3>[property:Box3 boundingBox]</h3>
<p>
Geometry 的外边界矩形,可以通过 [page:.computeBoundingBox]() 进行计算,默认值是 *null*。
</p>
<h3>[property:Sphere boundingSphere]</h3>
<p>
Geometry 的外边界球形,可以通过 [page:.computeBoundingSphere]() 进行计算,默认值是 *null*。
</p>
<h3>[property:Array colors]</h3>
<p>
顶点 [page:Color colors] 队列,与顶点数量和顺序保持一致。<br /><br />
该属性用于 [page:Points] 、 [page:Line] 或派生自 [page:LineSegments] 的类。
对于 [page:Mesh Meshes],请使用 [page:Face3.vertexColors] 函数。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.colorsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Array faces]</h3>
<p>
[page:Face3 faces] 队列。<br />
描述每个顶点之间如何组成模型面的面队列。同时该队列保存面和顶点的法向量和颜色信息。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.elementsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Array faceVertexUvs]</h3>
<p>
面的 [link:https://en.wikipedia.org/wiki/UV_mapping UV] 层的队列,该队列用于将纹理和几何信息进行映射。<br />
每个 UV 层都是一个 [page:UV] 的队列,顺序和数量同面中的顶点相对用。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.uvsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Integer id]</h3>
<p>当前 geometry 实例的唯一标识符的数。</p>
<h3>[property:array lineDistances]</h3>
<p>
用于保存线型几何体中每个顶点间距离的。在正确渲染 [page:LineDashedMaterial] 时,需要用到该数据。
</p>
<h3>[property:Array morphTargets]</h3>
<p>
[link:https://en.wikipedia.org/wiki/Morph_target_animation morph targets] 的队列。每个
morph target 都是一个如下的 javascript 对象:
<code>{ name: "targetName", vertices: [ new THREE.Vector3(), ... ] }</code>
Morph 顶点和几何体原始顶点在数量和顺序上需要一一对应。
</p>
<h3>[property:Array morphNormals]</h3>
<p>
一个 morph 法向量的数组。Morph 法向量和 morph target 有类似的结构,每个法向量都是一个如下的 Javascript 对象:
<code>morphNormal = { name: "NormalName", normals: [ new THREE.Vector3(), ... ] }</code>
示例详见 [example:webgl_morphnormals WebGL / morphNormals]。
</p>
<h3>[property:String name]</h3>
<p>当前几何的可选别名。默认值是一个空字符串。</p>
<h3>[property:Array skinWeights]</h3>
<p>
当在处理一个 [page:SkinnedMesh] 时,每个顶点最多可以有 4 个相关的 [page:Bone bones] 来影响它。
skinWeights 属性是一个权重队列,顺序同几何体中的顶点保持一致。因而,队列中的第一个 skinWeight
就对应几何体中的第一个顶点。由于每个顶点可以被 4 个 [page:Bone bones] 营销,因而每个顶点的 skinWeights
就采用一个 [page:Vector4] 表示。
</p>
<p>
skinWeight 矢量中每个元素的取值范围应该在 0 到 1 之间。例如,当设置为 0,骨骼对该顶点的位置没有影响。当设置为 0.5,
则对顶点的影响为 50%。 当设置为 100% 则对顶点的影响是 100%。如果矢量中只有一个骨骼与顶点相关联,则你只需要关注矢量中的第一个元素,
剩余的元素可以忽略,他们的值可以都设置为 0。
</p>
<h3>[property:Array skinIndices]</h3>
<p>
就如同 skinWeights 属性一样。skinWeights 的值也是与几何体的顶点相对应。每个顶点可以最多有 4 个骨骼与之相关联。
因而第一个 skinIndex 就与几何体的第一个顶点相关联,skinIndex 的值就指明了影响该顶点的骨骼是哪个。例如,第一个顶点的值是
<strong>( 10.05, 30.10, 12.12 )</strong>,第一个 skinIndex 的值是<strong>( 10, 2, 0, 0 )</strong>,第一个 skinWeight
的值是 <strong>( 0.8, 0.2, 0, 0 )</strong>。上述值表明第一个顶点受到<strong>mesh.bones[10]</strong>骨骼的影响有 80%,
受到 <strong>skeleton.bones[2]</strong> 的影响是 20%,由于另外两个 skinWeight 的值是 0,因而他们对顶点没有任何影响。
</p>
<p>
下面以代码的形式展示示例:
<code>
// 例如
geometry.skinIndices[15] = new THREE.Vector4( 0, 5, 9, 10 );
geometry.skinWeights[15] = new THREE.Vector4( 0.2, 0.5, 0.3, 0 );
// 与该顶点相关
geometry.vertices[15];
// 相应骨骼可以这样被调用:
skeleton.bones[0]; // weight of 0.2
skeleton.bones[5]; // weight of 0.5
skeleton.bones[9]; // weight of 0.3
skeleton.bones[10]; // weight of 0
</code>
</p>
<h3>[property:String uuid]</h3>
<p>
当前对象实例的 [link:http://en.wikipedia.org/wiki/Universally_unique_identifier UUID]。
该值会被自动分配,请不要修改它。
</p>
<h3>[property:Array vertices]</h3>
<p>
[page:Vector3 vertices] 的队列。<br />
顶点的队列,保存了模型中每个顶点的位置信息。<br />
如果要标记队列中的数据已经更新,[page:.verticesNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Boolean verticesNeedUpdate]</h3>
<p> 如果顶点队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean elementsNeedUpdate]</h3>
<p> 如果面队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean uvsNeedUpdate]</h3>
<p> 如果 UV 队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean normalsNeedUpdate]</h3>
<p> 如果法向量队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean colorsNeedUpdate]</h3>
<p> 如果颜色队列或 face3 的颜色数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean groupsNeedUpdate]</h3>
<p> 如果 face3 的 materialIndex 被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean lineDistancesNeedUpdate]</h3>
<p> 如果 linedistances 队列中的数据被修改,该值需要被设置为 *true*。</p>
<h2>方法</h2>
<h3>[page:EventDispatcher EventDispatcher] 该类中可用的函数。</h3>
<h3>[method:null applyMatrix4]( [param:Matrix4 matrix] )</h3>
<p> 将矩阵信息直接应用于几何体顶点坐标。</p>
<h3>[method:Geometry center] ()</h3>
<p> 基于外边界矩形将几何体居中。</p>
<h3>[method:Geometry clone]()</h3>
<p>克隆当前几何体。<br /><br />
该方法除几何体的顶点、面信息和 UV 外不会复制其他属性。
</p>
<h3>[method:null computeBoundingBox]()</h3>
<p> 计算当前几何体的外边界矩形。该方法会更新 [page:Geometry Geometry.boundingBox] 属性值。</p>
<h3>[method:null computeBoundingSphere]()</h3>
<p> 计算当前几何体的外边界球。该方法会更新 [page:Geometry Geometry.boundingSphere] 属性值。</p>
<p>
计算外边界矩形或外边界球并不是默认会自动调用的方法,这两个函数需要被显示的调用才能天得到相应属性值,否则对应属性值保持默认值 *null*。
</p>
<h3>[method:null computeFaceNormals]()</h3>
<p> 计算 [page:Face3.normal face normals] 值。</p>
<h3>[method:null computeFlatVertexNormals]()</h3>
<p> 计算 flat [page:Face3.vertexNormals vertex normals] 值。
该方法会将顶点法向量的值赋值为相应面的法向量值。</p>
<h3>[method:null computeMorphNormals]()</h3>
<p> 计算 [page:.morphNormals] 值。</p>
<h3>[method:null computeVertexNormals]( [param:Boolean areaWeighted] )</h3>
<p>
areaWeighted - 如果该值设置为 true,则每个面的法向量对顶点法向量的影响按照面的面积大小来计算。默认值为 true.<br /><br />
通过周围面的法向量计算顶点的法向量。
</p>
<h3>[method:Geometry copy]( [param:Geometry geometry] )</h3>
<p>
将参数代表的几何体的顶点、面和 UV 复制到当前几何体。该方法不会复制除此以外的别的属性值。
</p>
<h3>[method:null dispose]()</h3>
<p>
将对象从内存中删除。 <br />
在你删除一个几何体时,不要忘记调用该方法,否则会造成内存泄漏。
</p>
<h3>[method:Geometry fromBufferGeometry]( [param:BufferGeometry geometry] )</h3>
<p> 将一个 [page:BufferGeometry] 对象,转换成一个 Geometry 对象。</p>
<h3>[method:Geometry lookAt] ( [param:Vector3 vector] )</h3>
<p>
vector - 当前几何体朝向的世界坐标。<br /><br />
该方法将几何体进行旋转,是的几何体朝向参数指定的世界坐标。该方法一般在一次处理中完成,但不在渲染过程中执行。<br>
一般使用 [page:Object3D.lookAt] 方法进行实时更改。
</p>
<h3>[method:null merge]( [param:Geometry geometry], [param:Matrix4 matrix], [param:Integer materialIndexOffset] )</h3>
<p> 将两个几何体,或一个几何体和一个从对象中通过变换获得的几何体进行合并。</p>
<h3>[method:null mergeMesh]( [param:Mesh mesh] )</h3>
<p> 将参数指定的面片信息与当前几何体进行合并。同样会使用到参数 mesh 的变换。</p>
<h3>[method:null mergeVertices]()</h3>
<p>
通过 hashmap 检查重复的顶点。<br />
重复的顶点将会被移除,面的顶点信息会被更新。
</p>
<h3>[method:null normalize]()</h3>
<p>
将当前几何体归一化。 <br />
将当前几何体居中,并且使得该几何体的外边界球半径为 *1.0*。
</p>
<h3>[method:Geometry rotateX] ( [param:Float radians] )</h3>
<p>
将几何体绕 X 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry rotateY] ( [param:Float radians] )</h3>
<p>
将几何体绕 Y 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry rotateZ] ( [param:Float radians] )</h3>
<p>
将几何体绕 Z 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry setFromPoints] ( [param:Array points] )</h3>
<p>通过点队列设置一个 Geometry 中的顶点。</p>
<h3>[method:null sortFacesByMaterialIndex] ( )</h3>
<p>
通过材质索引对面队列进行排序。对于复杂且有多个材质的几何体,该操作可以有效减少 draw call 从而提升性能。
</p>
<h3>[method:Geometry scale] ( [param:Float x], [param:Float y], [param:Float z] )</h3>
<p>
缩放几何体大小。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.scale] 对模型面片进行实时缩放处理。
</p>
<h3>[method:JSON toJSON] ( )</h3>
<p> 将 Geometry 对象转为 JSON 格式。<br />
将几何体转换为 three.js [link:https://github.com/mrdoob/three.js/wiki/JSON-Object-Scene-format-4 JSON Object/Scene format](three.js JSON 物体/场景格式)。
</p>
<h3>[method:Geometry translate] ( [param:Float x], [param:Float y], [param:Float z] )</h3>
<p>
移动当前几何体。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.position] 对模型面片进行实时移动处理。
</p>
<h2>源代码</h2>
<p>
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
</p>
</body>
</html>
| Itee/three.js | docs/api/zh/core/Geometry.html | HTML | mit | 13,887 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Nov 26 15:39:24 EST 2010 -->
<TITLE>
Xerces2 Implementation: Class XMLDocumentScannerImpl.ContentDispatcher
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</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="../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</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">
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.DTDDispatcher.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDocumentScannerImpl.ContentDispatcher.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | 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>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<A NAME="main"></A>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.xerces.impl</FONT>
<BR>
Class XMLDocumentScannerImpl.ContentDispatcher</H2>
<PRE>
java.lang.Object
|
+--<A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A>
|
+--<B>org.apache.xerces.impl.XMLDocumentScannerImpl.ContentDispatcher</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.Dispatcher.html">XMLDocumentFragmentScannerImpl.Dispatcher</A></DD>
</DL>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../org/apache/xerces/impl/XML11NSDocumentScannerImpl.NS11ContentDispatcher.html">XML11NSDocumentScannerImpl.NS11ContentDispatcher</A>, <A HREF="../../../../org/apache/xerces/impl/XMLNSDocumentScannerImpl.NSContentDispatcher.html">XMLNSDocumentScannerImpl.NSContentDispatcher</A></DD>
</DL>
<DL>
<DT><B>Enclosing class: </B><DD><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html">XMLDocumentScannerImpl</A></DD>
</DL>
<HR>
<DL>
<DT>protected class <B>XMLDocumentScannerImpl.ContentDispatcher</B><DT>extends <A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></DL>
<P>
Dispatcher to handle content scanning.
<P>
<DL>
<DT><B>Author: </B><DD>Andy Clark, IBM, Eric Ye, IBM</DD>
</DL>
<HR>
<P>
<!-- ======== INNER CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<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 ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected </CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#XMLDocumentScannerImpl.ContentDispatcher(org.apache.xerces.impl.XMLDocumentScannerImpl)">XMLDocumentScannerImpl.ContentDispatcher</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<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>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#elementDepthIsZeroHook()">elementDepthIsZeroHook</A></B>()</CODE>
<BR>
Element depth iz zero.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#endOfFileHook(java.io.EOFException)">endOfFileHook</A></B>(java.io.EOFException e)</CODE>
<BR>
End of file hook.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#resolveExternalSubsetAndRead()">resolveExternalSubsetAndRead</A></B>()</CODE>
<BR>
Attempt to locate an external subset for a document that does not otherwise
have one.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#scanForDoctypeHook()">scanForDoctypeHook</A></B>()</CODE>
<BR>
Scan for DOCTYPE hook.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#scanRootElementHook()">scanRootElementHook</A></B>()</CODE>
<BR>
Scan for root element hook.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.FragmentContentDispatcher"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.xerces.impl.<A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#dispatch(boolean)">dispatch</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<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>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="XMLDocumentScannerImpl.ContentDispatcher(org.apache.xerces.impl.XMLDocumentScannerImpl)"><!-- --></A><H3>
XMLDocumentScannerImpl.ContentDispatcher</H3>
<PRE>
protected <B>XMLDocumentScannerImpl.ContentDispatcher</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="scanForDoctypeHook()"><!-- --></A><H3>
scanForDoctypeHook</H3>
<PRE>
protected boolean <B>scanForDoctypeHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Scan for DOCTYPE hook. This method is a hook for subclasses
to add code to handle scanning for a the "DOCTYPE" string
after the string "<!" has been scanned.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#scanForDoctypeHook()">scanForDoctypeHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the "DOCTYPE" was scanned; false if "DOCTYPE"
was not scanned.</DL>
</DD>
</DL>
<HR>
<A NAME="elementDepthIsZeroHook()"><!-- --></A><H3>
elementDepthIsZeroHook</H3>
<PRE>
protected boolean <B>elementDepthIsZeroHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Element depth iz zero. This methos is a hook for subclasses
to add code to handle when the element depth hits zero. When
scanning a document fragment, an element depth of zero is
normal. However, when scanning a full XML document, the
scanner must handle the trailing miscellanous section of
the document after the end of the document's root element.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#elementDepthIsZeroHook()">elementDepthIsZeroHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the caller should stop and return true which
allows the scanner to switch to a new scanning
dispatcher. A return value of false indicates that
the content dispatcher should continue as normal.</DL>
</DD>
</DL>
<HR>
<A NAME="scanRootElementHook()"><!-- --></A><H3>
scanRootElementHook</H3>
<PRE>
protected boolean <B>scanRootElementHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Scan for root element hook. This method is a hook for
subclasses to add code that handles scanning for the root
element. When scanning a document fragment, there is no
"root" element. However, when scanning a full XML document,
the scanner must handle the root element specially.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#scanRootElementHook()">scanRootElementHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the caller should stop and return true which
allows the scanner to switch to a new scanning
dispatcher. A return value of false indicates that
the content dispatcher should continue as normal.</DL>
</DD>
</DL>
<HR>
<A NAME="endOfFileHook(java.io.EOFException)"><!-- --></A><H3>
endOfFileHook</H3>
<PRE>
protected void <B>endOfFileHook</B>(java.io.EOFException e)
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>End of file hook. This method is a hook for subclasses to
add code that handles the end of file. The end of file in
a document fragment is OK if the markup depth is zero.
However, when scanning a full XML document, an end of file
is always premature.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#endOfFileHook(java.io.EOFException)">endOfFileHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="resolveExternalSubsetAndRead()"><!-- --></A><H3>
resolveExternalSubsetAndRead</H3>
<PRE>
protected void <B>resolveExternalSubsetAndRead</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD><p>Attempt to locate an external subset for a document that does not otherwise
have one. If an external subset is located, then it is scanned.</p></DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</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="../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</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">
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.DTDDispatcher.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDocumentScannerImpl.ContentDispatcher.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | 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>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
| jsalla/jatintest | lib/xerces-2_11_0/docs/javadocs/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html | HTML | mit | 18,025 |
<div class="sidebar">
{% include widget-facebook-pages-iframe.html %}
{% if jekyll.environment == "production" %}{% include widget-postlist.html %}{% endif %}
</div>
| pureexe/pureapp-jekyll | _includes/sidebar.html | HTML | mit | 166 |
<?xml version="1.0" encoding="utf-8"?>
<!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">
<head>
<title>parser_extras.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.1.8</span><br />
<h1>
parser_extras.rb
</h1>
<ul class="files">
<li>
../../../../usr/local/share/gems/gems/actionpack-4.1.8/lib/action_dispatch/journey/parser_extras.rb
</li>
<li>Last modified: 2014-11-25 22:16:16 +0530</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- File only: requires -->
<div class="sectiontitle">Required Files</div>
<ul>
<li>action_dispatch/journey/scanner</li>
<li>action_dispatch/journey/nodes/node</li>
</ul>
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../../../../classes/ActionDispatch.html">ActionDispatch</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> | delta/DalalStreet | doc/api/files/__/__/__/__/usr/local/share/gems/gems/actionpack-4_1_8/lib/action_dispatch/journey/parser_extras_rb.html | HTML | mit | 2,377 |
<script src="http://code.highcharts.com/maps/highmaps.js"></script>
<script src="http://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="http://code.highcharts.com/mapdata/countries/kv/kv-all.js"></script>
<div id="container"></div>
| Oxyless/highcharts-export-image | lib/highcharts.com/samples/mapdata/countries/kv/kv-all/demo.html | HTML | mit | 255 |
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}BTT{% endblock %}
{% block page_content %}
<h2>Add Transaction: </h2>
<div class="row">
<div class="col-md-3">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}
| gregcowell/PFT | btt/templates/add_transaction.html | HTML | mit | 255 |
<!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_55) on Fri Jun 20 06:34:21 EDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.search.BoostQParserPlugin (Solr 4.9.0 API)</title>
<meta name="date" content="2014-06-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="Uses of Class org.apache.solr.search.BoostQParserPlugin (Solr 4.9.0 API)";
}
//-->
</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><a href="../../../../../org/apache/solr/search/BoostQParserPlugin.html" title="class in org.apache.solr.search">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="../../../../../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?org/apache/solr/search/class-use/BoostQParserPlugin.html" target="_top">Frames</a></li>
<li><a href="BoostQParserPlugin.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 org.apache.solr.search.BoostQParserPlugin" class="title">Uses of Class<br>org.apache.solr.search.BoostQParserPlugin</h2>
</div>
<div class="classUseContainer">No usage of org.apache.solr.search.BoostQParserPlugin</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><a href="../../../../../org/apache/solr/search/BoostQParserPlugin.html" title="class in org.apache.solr.search">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="../../../../../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?org/apache/solr/search/class-use/BoostQParserPlugin.html" target="_top">Frames</a></li>
<li><a href="BoostQParserPlugin.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>
<i>Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
| knittledan/solr_lxml_Example | thirdParty/solrSrc/docs/solr-core/org/apache/solr/search/class-use/BoostQParserPlugin.html | HTML | mit | 4,933 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `MAP_LOCKED` constant in crate `libc`.">
<meta name="keywords" content="rust, rustlang, rust-lang, MAP_LOCKED">
<title>libc::MAP_LOCKED - Rust</title>
<link rel="stylesheet" type="text/css" href="../main.css">
<link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a>
<p class='location'><a href='index.html'>libc</a></p><script>window.sidebarCurrent = {name: 'MAP_LOCKED', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='index.html'>libc</a>::<wbr><a class='constant' href=''>MAP_LOCKED</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-1607' class='srclink' href='../src/libc/unix/notbsd/linux/notmips/mod.rs.html#47' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const MAP_LOCKED: <a class='type' href='../libc/type.c_int.html' title='libc::c_int'>c_int</a><code> = </code><code>0x02000</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../";
window.currentCrate = "libc";
window.playgroundUrl = "";
</script>
<script src="../jquery.js"></script>
<script src="../main.js"></script>
<script async src="../search-index.js"></script>
</body>
</html> | ssgrn/Rust-Matrix-Computations | target/doc/libc/constant.MAP_LOCKED.html | HTML | mit | 4,081 |
<grid></grid> | dmusev/goaloflife | dist/app/modules/home/home.view.html | HTML | mit | 13 |
<?xml version="1.0" encoding="UTF-8"?>
<!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" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qt 4.8: sessionwidget.cpp Example File (network/bearermonitor/sessionwidget.cpp)</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" />
<link rel="stylesheet" type="text/css" href="style/narrow.css" />
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/superfish.js" type="text/javascript"></script>
<script src="scripts/narrow.js" type="text/javascript"></script>
</head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="narrowsearch"></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li>
<li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul>
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul>
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="supported-platforms.html">Supported Platforms</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul>
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search" id="sidebarsearch">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
<div id="resultdialog">
<a href="#" id="resultclose">Close</a>
<p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p>
<p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span> results:</p>
<ul id="resultlist" class="all">
</ul>
</div>
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">sessionwidget.cpp Example File</h1>
<span class="small-subtitle">network/bearermonitor/sessionwidget.cpp</span>
<!-- $$$network/bearermonitor/sessionwidget.cpp-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp"> <span class="comment">/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** 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 Digia Plc and its Subsidiary(-ies) 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 "sessionwidget.h"</span>
<span class="preprocessor">#include "qnetworkconfigmanager.h"</span>
SessionWidget<span class="operator">::</span>SessionWidget(<span class="keyword">const</span> <span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span> <span class="operator">&</span>config<span class="operator">,</span> <span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qwidget.html">QWidget</a></span>(parent)<span class="operator">,</span> statsTimer(<span class="operator">-</span><span class="number">1</span>)
{
setupUi(<span class="keyword">this</span>);
<span class="preprocessor">#ifdef QT_NO_NETWORKINTERFACE</span>
interfaceName<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceNameLabel<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceGuid<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceGuidLabel<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
<span class="preprocessor">#endif</span>
session <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span>(config<span class="operator">,</span> <span class="keyword">this</span>);
connect(session<span class="operator">,</span> SIGNAL(stateChanged(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>State))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(updateSession()));
connect(session<span class="operator">,</span> SIGNAL(error(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(updateSessionError(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError)));
updateSession();
sessionId<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">"0x%1"</span>)<span class="operator">.</span>arg(<span class="type"><a href="qtglobal.html#qulonglong-typedef">qulonglong</a></span>(session)<span class="operator">,</span> <span class="number">8</span><span class="operator">,</span> <span class="number">16</span><span class="operator">,</span> <span class="type"><a href="qchar.html">QChar</a></span>(<span class="char">'0'</span>)));
configuration<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>name());
connect(openSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(openSession()));
connect(openSyncSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(openSyncSession()));
connect(closeSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(closeSession()));
connect(stopSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(stopSession()));
<span class="preprocessor">#ifdef MAEMO_UI</span>
connect(deleteSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(deleteSession()));
<span class="preprocessor">#endif</span>
}
SessionWidget<span class="operator">::</span><span class="operator">~</span>SessionWidget()
{
<span class="keyword">delete</span> session;
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>timerEvent(<span class="type"><a href="qtimerevent.html">QTimerEvent</a></span> <span class="operator">*</span>e)
{
<span class="keyword">if</span> (e<span class="operator">-</span><span class="operator">></span>timerId() <span class="operator">=</span><span class="operator">=</span> statsTimer) {
rxData<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>bytesReceived()));
txData<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>bytesWritten()));
activeTime<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>activeTime()));
}
}
<span class="preprocessor">#ifdef MAEMO_UI</span>
<span class="type">void</span> SessionWidget<span class="operator">::</span>deleteSession()
{
<span class="keyword">delete</span> <span class="keyword">this</span>;
}
<span class="preprocessor">#endif</span>
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSession()
{
updateSessionState(session<span class="operator">-</span><span class="operator">></span>state());
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>state() <span class="operator">=</span><span class="operator">=</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connected)
statsTimer <span class="operator">=</span> startTimer(<span class="number">1000</span>);
<span class="keyword">else</span> <span class="keyword">if</span> (statsTimer <span class="operator">!</span><span class="operator">=</span> <span class="operator">-</span><span class="number">1</span>)
killTimer(statsTimer);
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>type() <span class="operator">=</span><span class="operator">=</span> <span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span><span class="operator">::</span>InternetAccessPoint)
bearer<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>bearerTypeName());
<span class="keyword">else</span> {
<span class="type"><a href="qnetworkconfigurationmanager.html">QNetworkConfigurationManager</a></span> mgr;
<span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span> c <span class="operator">=</span> mgr<span class="operator">.</span>configurationFromIdentifier(session<span class="operator">-</span><span class="operator">></span>sessionProperty(<span class="string">"ActiveConfiguration"</span>)<span class="operator">.</span>toString());
bearer<span class="operator">-</span><span class="operator">></span>setText(c<span class="operator">.</span>bearerTypeName());
}
<span class="preprocessor">#ifndef QT_NO_NETWORKINTERFACE</span>
interfaceName<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>interface()<span class="operator">.</span>humanReadableName());
interfaceGuid<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>interface()<span class="operator">.</span>name());
<span class="preprocessor">#endif</span>
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>openSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>open();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>openSyncSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>open();
session<span class="operator">-</span><span class="operator">></span>waitForOpened();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>closeSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>close();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>stopSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>stop();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSessionState(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>State state)
{
<span class="type"><a href="qstring.html">QString</a></span> s <span class="operator">=</span> tr(<span class="string">"%1 (%2)"</span>);
<span class="keyword">switch</span> (state) {
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Invalid:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Invalid"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>NotAvailable:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Not Available"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connecting:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Connecting"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connected:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Connected"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Closing:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Closing"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Disconnected:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Disconnected"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Roaming:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Roaming"</span>));
<span class="keyword">break</span>;
<span class="keyword">default</span>:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Unknown"</span>));
}
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>isOpen())
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Open"</span>));
<span class="keyword">else</span>
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Closed"</span>));
sessionState<span class="operator">-</span><span class="operator">></span>setText(s);
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSessionError(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError error)
{
lastError<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(error));
errorString<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>errorString());
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>clearError()
{
lastError<span class="operator">-</span><span class="operator">></span>clear();
errorString<span class="operator">-</span><span class="operator">></span>clear();
}</pre>
</div>
<!-- @@@network/bearermonitor/sessionwidget.cpp -->
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2013 Digia Plc and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
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.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Digia, Qt and their respective logos are trademarks of Digia Plc
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
| stephaneAG/PengPod700 | QtEsrc/qt-everywhere-opensource-src-4.8.5/doc/html/network-bearermonitor-sessionwidget-cpp.html | HTML | mit | 25,444 |
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Меню</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Ryo CDR</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav js-list">
</ul>
</div>
</div>
| antirek/ryocdr | public/js/templates/navbar.html | HTML | mit | 481 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>to_s (NeptuneJobData)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File neptune_job_data.rb, line 28</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
<span class="ruby-node">"#{@name}::#{@num_nodes}::#{Base64.encode64(@start_time._dump).chomp}::#{Base64.encode64(@end_time._dump).chomp}::#{total_time}::#{cost}"</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> | dcere/pfc | doc/Neptune/Appscale-rdoc/classes/NeptuneJobData.src/M000020.html | HTML | mit | 849 |
<!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Business_Blog a Blogging Category Flat Bootstrap Responsive Website Template | Singlepage :: w3layouts</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Business_Blog Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
<script type="applijewelleryion/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- Custom Theme files -->
<link href='//fonts.googleapis.com/css?family=Roboto+Condensed:400,700' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel='stylesheet' type='text/css' />
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!--start-main-->
<div class="header">
<div class="header-top">
<div class="container">
<div class="logo">
<a href="index.html"><h1>BUSINESS BLOG</h1></a>
</div>
<div class="search">
<form>
<input type="text" value="Search" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Search';}">
<input type="submit" value="">
</form>
</div>
<div class="social">
<ul>
<li><a href="#" class="facebook"> </a></li>
<li><a href="#" class="facebook twitter"> </a></li>
<li><a href="#" class="facebook chrome"> </a></li>
<li><a href="#" class="facebook in"> </a></li>
<li><a href="#" class="facebook beh"> </a></li>
<li><a href="#" class="facebook vem"> </a></li>
<li><a href="#" class="facebook yout"> </a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<!--head-bottom-->
<div class="head-bottom">
<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>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Tech <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="tech.html">Action</a></li>
<li><a href="tech.html">Action</a></li>
<li><a href="tech.html">Action</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Culture <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Science <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
</ul>
</li>
<li><a href="design.html">Design</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="world.html">World</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
</div>
<!--head-bottom-->
</div>
<!-- banner -->
<div class="banner1">
</div>
<!-- technology -->
<div class="technology-1">
<div class="container">
<div class="col-md-9 technology-left">
<div class="business">
<div class=" blog-grid2">
<img src="images/1.jpg" class="img-responsive" alt="">
<div class="blog-text">
<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit</h5>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas tristique orci ac sem. Duis ultricies pharetra magna. Donec accumsan malesuada orci. Donec sit amet eros. Lorem ipsum dolor sit amet, con sectetuer adipiscing elit. Mauris fermentum dictum magna. </p>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
</div>
</div>
<div class="comment-top">
<h2>Comment</h2>
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Richard Spark</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Joseph Goh</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Melinda Dee</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
</div>
</div>
</div>
</div>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Rackham</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
</div>
</div>
</div>
</div>
<div class="comment">
<h3>Leave a Comment</h3>
<div class=" comment-bottom">
<form>
<input type="text" placeholder="Name">
<input type="text" placeholder="Email">
<input type="text" placeholder="Subject">
<textarea placeholder="Message" required=""></textarea>
<input type="submit" value="Send">
</form>
</div>
</div>
</div>
</div>
<!-- technology-right -->
<div class="col-md-3 technology-right-1">
<div class="blo-top">
<div class="tech-btm">
<img src="images/banner1.jpg" class="img-responsive" alt=""/>
</div>
</div>
<div class="blo-top">
<div class="tech-btm">
<h4>Sign up to our newsletter</h4>
<p>Pellentesque dui, non felis. Maecenas male</p>
<div class="name">
<form>
<input type="text" placeholder="Email" required="">
</form>
</div>
<div class="button">
<form>
<input type="submit" value="Subscribe">
</form>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="blo-top1">
<div class="tech-btm">
<h4>Top stories of the week </h4>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/6.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/7.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/11.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/9.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/10.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<!-- technology-right -->
</div>
</div>
<!-- technology -->
<!-- footer -->
<div class="footer">
<div class="container">
<div class="col-md-4 footer-left">
<h6>THIS LOOKS GREAT</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt consectetur adipisicing elit,</p>
</div>
<div class="col-md-4 footer-middle">
<h4>Twitter Feed</h4>
<div class="mid-btm">
<p>Consectetur adipisicing</p>
<p>Sed do eiusmod tempor</p>
<a href="https://w3layouts.com/">https://w3layouts.com/</a>
</div>
<p>Consectetur adipisicing</p>
<p>Sed do eiusmod tempor</p>
<a href="https://w3layouts.com/">https://w3layouts.com/</a>
</div>
<div class="col-md-4 footer-right">
<h4>Quick Links</h4>
<li><a href="#">Eiusmod tempor</a></li>
<li><a href="#">Consectetur </a></li>
<li><a href="#">Adipisicing elit</a></li>
<li><a href="#">Eiusmod tempor</a></li>
<li><a href="#">Consectetur </a></li>
<li><a href="#">Adipisicing elit</a></li>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- footer -->
<!-- footer-bottom -->
<div class="foot-nav">
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="tech.html">Tech</a></li>
<li><a href="singlepage.html">Culture</a></li>
<li><a href="singlepage.html">Science</a></li>
<li><a href="design.html">Design</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="world.html">World</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="clearfix"></div>
</ul>
</div>
</div>
<!-- footer-bottom -->
<div class="copyright">
<div class="container">
<p>© 2016 Business_Blog. All rights reserved | Template by <a href="http://w3layouts.com/">W3layouts</a></p>
</div>
</div>
</body>
</html> | mochamadghany/dutika | dutika_inaicta/asset/singlepage.html | HTML | mit | 12,777 |
<!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">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>MultiBindingAssertionTest xref</title>
<link type="text/css" rel="stylesheet" href="../../stylesheet.css" />
</head>
<body>
<pre>
<a name="1" href="#1">1</a> <em class="jxr_comment">/*<em class="jxr_comment"> </em></em>
<a name="2" href="#2">2</a> <em class="jxr_comment"> * Copyright (c) 2004-2009 QOS.ch</em>
<a name="3" href="#3">3</a> <em class="jxr_comment"> * All rights reserved.</em>
<a name="4" href="#4">4</a> <em class="jxr_comment"> * </em>
<a name="5" href="#5">5</a> <em class="jxr_comment"> * Permission is hereby granted, free of charge, to any person obtaining</em>
<a name="6" href="#6">6</a> <em class="jxr_comment"> * a copy of this software and associated documentation files (the</em>
<a name="7" href="#7">7</a> <em class="jxr_comment"> * "Software"), to deal in the Software without restriction, including</em>
<a name="8" href="#8">8</a> <em class="jxr_comment"> * without limitation the rights to use, copy, modify, merge, publish,</em>
<a name="9" href="#9">9</a> <em class="jxr_comment"> * distribute, sublicense, and/or sell copies of the Software, and to</em>
<a name="10" href="#10">10</a> <em class="jxr_comment"> * permit persons to whom the Software is furnished to do so, subject to</em>
<a name="11" href="#11">11</a> <em class="jxr_comment"> * the following conditions:</em>
<a name="12" href="#12">12</a> <em class="jxr_comment"> * </em>
<a name="13" href="#13">13</a> <em class="jxr_comment"> * The above copyright notice and this permission notice shall be</em>
<a name="14" href="#14">14</a> <em class="jxr_comment"> * included in all copies or substantial portions of the Software.</em>
<a name="15" href="#15">15</a> <em class="jxr_comment"> * </em>
<a name="16" href="#16">16</a> <em class="jxr_comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</em>
<a name="17" href="#17">17</a> <em class="jxr_comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</em>
<a name="18" href="#18">18</a> <em class="jxr_comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</em>
<a name="19" href="#19">19</a> <em class="jxr_comment"> * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE</em>
<a name="20" href="#20">20</a> <em class="jxr_comment"> * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION</em>
<a name="21" href="#21">21</a> <em class="jxr_comment"> * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION</em>
<a name="22" href="#22">22</a> <em class="jxr_comment"> * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</em>
<a name="23" href="#23">23</a> <em class="jxr_comment"> */</em>
<a name="24" href="#24">24</a>
<a name="25" href="#25">25</a> <strong class="jxr_keyword">package</strong> org.slf4j;
<a name="26" href="#26">26</a>
<a name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.io.PrintStream;
<a name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.util.Random;
<a name="30" href="#30">30</a>
<a name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> junit.framework.TestCase;
<a name="32" href="#32">32</a>
<a name="33" href="#33">33</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../org/slf4j/MultiBindingAssertionTest.html">MultiBindingAssertionTest</a> <strong class="jxr_keyword">extends</strong> TestCase {
<a name="34" href="#34">34</a>
<a name="35" href="#35">35</a> <a href="../../org/slf4j/StringPrintStream.html">StringPrintStream</a> sps = <strong class="jxr_keyword">new</strong> <a href="../../org/slf4j/StringPrintStream.html">StringPrintStream</a>(System.err);
<a name="36" href="#36">36</a> PrintStream old = System.err;
<a name="37" href="#37">37</a> <strong class="jxr_keyword">int</strong> diff = 1024 + <strong class="jxr_keyword">new</strong> Random().nextInt(10000);
<a name="38" href="#38">38</a>
<a name="39" href="#39">39</a> <strong class="jxr_keyword">public</strong> <a href="../../org/slf4j/MultiBindingAssertionTest.html">MultiBindingAssertionTest</a>(String name) {
<a name="40" href="#40">40</a> <strong class="jxr_keyword">super</strong>(name);
<a name="41" href="#41">41</a> }
<a name="42" href="#42">42</a>
<a name="43" href="#43">43</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setUp() <strong class="jxr_keyword">throws</strong> Exception {
<a name="44" href="#44">44</a> <strong class="jxr_keyword">super</strong>.setUp();
<a name="45" href="#45">45</a> System.setErr(sps);
<a name="46" href="#46">46</a> }
<a name="47" href="#47">47</a>
<a name="48" href="#48">48</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> tearDown() <strong class="jxr_keyword">throws</strong> Exception {
<a name="49" href="#49">49</a> <strong class="jxr_keyword">super</strong>.tearDown();
<a name="50" href="#50">50</a> System.setErr(old);
<a name="51" href="#51">51</a> }
<a name="52" href="#52">52</a>
<a name="53" href="#53">53</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> test() <strong class="jxr_keyword">throws</strong> Exception {
<a name="54" href="#54">54</a> <strong class="jxr_keyword">try</strong> {
<a name="55" href="#55">55</a> Logger logger = LoggerFactory.getLogger(<strong class="jxr_keyword">this</strong>.getClass());
<a name="56" href="#56">56</a> String msg = <span class="jxr_string">"hello world "</span> + diff;
<a name="57" href="#57">57</a> logger.info(msg);
<a name="58" href="#58">58</a> fail(<span class="jxr_string">"was expecting NoSuchMethodError"</span>);
<a name="59" href="#59">59</a> } <strong class="jxr_keyword">catch</strong> (NoSuchMethodError e) {
<a name="60" href="#60">60</a> }
<a name="61" href="#61">61</a> List list = sps.stringList;
<a name="62" href="#62">62</a> assertMsgContains(list, 0, <span class="jxr_string">"Class path contains multiple SLF4J bindings."</span>);
<a name="63" href="#63">63</a> assertMsgContains(list, 1, <span class="jxr_string">"Found binding in"</span>);
<a name="64" href="#64">64</a> assertMsgContains(list, 2, <span class="jxr_string">"Found binding in"</span>);
<a name="65" href="#65">65</a> assertMsgContains(list, 3, <span class="jxr_string">"See http://www.slf4j.org/codes.html"</span>);
<a name="66" href="#66">66</a> assertMsgContains(list, 4,
<a name="67" href="#67">67</a> <span class="jxr_string">"slf4j-api 1.6.x (or later) is incompatible with this binding"</span>);
<a name="68" href="#68">68</a> assertMsgContains(list, 5, <span class="jxr_string">"Your binding is version 1.5.5 or earlier."</span>);
<a name="69" href="#69">69</a>
<a name="70" href="#70">70</a> }
<a name="71" href="#71">71</a>
<a name="72" href="#72">72</a> <strong class="jxr_keyword">void</strong> assertMsgContains(List strList, <strong class="jxr_keyword">int</strong> index, String msg) {
<a name="73" href="#73">73</a> assertTrue(((String) strList.get(index)).contains(msg));
<a name="74" href="#74">74</a> }
<a name="75" href="#75">75</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
| virtix/mut4j | lib/slf4j-1.6.0/site/xref-test/org/slf4j/MultiBindingAssertionTest.html | HTML | mit | 7,932 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.