code
stringlengths 1
1.05M
| repo_name
stringlengths 6
116
| path
stringlengths 4
995
| language
stringclasses 2
values | license
stringclasses 15
values | size
int64 2
1.05M
|
|---|---|---|---|---|---|
{% extends "admin/change_list.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load i18n %}
{% block object-tools %}
{% origin %}
{% if has_add_permission %}
<ul class="object-tools">
<li><a href="reminder/">SDO Authorized List Reminder</a></li>
<li>
<a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink">
{% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %}
</a>
</li>
</ul>
{% endif %}
{% endblock %}
|
wpjesus/codematch
|
ietf/templates/admin/group/group/change_list.html
|
HTML
|
bsd-3-clause
| 546
|
button::-moz-focus-inner{ border:0; padding:0; margin:0; }
.easyDialog_wrapper{ overflow:hidden; width:444px; color:#444; border:3px solid rgba(0,0,0,0); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 10px rgba(0,0,0,0.4); -moz-box-shadow:0 0 10px rgba(0,0,0,0.4); box-shadow:0 0 10px rgba(0,0,0,0.4); display:none; }
.easyDialog_wrapper .easyDialog_content{ -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; background:#fff; border:1px solid #e5e5e5; }
.easyDialog_wrapper .easyDialog_title{ height:30px; line-height:30px; overflow:hidden; color:#666; padding:0 10px; font-size:14px; border-bottom:1px solid #e5e5e5; background:#f7f7f7; border-radius:4px 4px 0 0; }
.easyDialog_wrapper .close_btn{ font-size:18px; _font-size:12px; font-weight:700; color:#999; text-decoration:none; float:right; }
.easyDialog_wrapper .close_btn:hover{ color:#333; }
.easyDialog_wrapper .easyDialog_text{ padding:25px; font-size:13px; line-height:22px; overflow:hidden;}
.easyDialog_wrapper .easyDialog_footer{ padding:0 10px; *zoom:1; }
.easyDialog_wrapper .easyDialog_footer:after{ content:''; display:block; height:0; overflow:hidden; visibility:hidden; clear:both; }
.easyDialog_wrapper .btn_highlight,
.easyDialog_wrapper .btn_normal{ border:1px solid; border-radius:2px; cursor:pointer; float:right; font-size:12px; padding:0 12px; height:24px; line-height:24px; margin-bottom:10px; }
.easyDialog_wrapper .btn_highlight{ background:#4787ed; background:-webkit-gradient(linear,center bottom,center top,from(#4787ed),to(#4d90fe)); background:-moz-linear-gradient(90deg, #4787ed, #4d90fe); border-color:#3079ed; color:#fff; }
.easyDialog_wrapper .btn_normal{ margin-left:10px; border-color:#c3c3c3; background:#ececec; color:#333; background:-webkit-gradient(linear,center bottom,center top,from(#ececec),to(#f4f4f4)); background:-moz-linear-gradient(90deg,#ececec,#f4f4f4); }
|
Letractively/fangtaitong
|
www/css/plugin/easydialog.css
|
CSS
|
bsd-3-clause
| 1,963
|
{% from "devhub/includes/macros.html" import tip, some_html_tip, empty_unless %}
<form method="post" action="{{ url('devhub.addons.section', addon.slug, 'details', 'edit') }}">
<h3>
{{ _('Add-on Details') }}
{% if not editable %}
<a href="#" data-editurl="{{ url('devhub.addons.section', addon.slug, 'details', 'edit') }}" class="button">
{{ _('Edit') }}</a>
{% endif %}
</h3>
<div class="item">
<div class="item_wrapper">
{% if editable %}{{ form.non_field_errors() }}{% endif %}
<table>
<caption>{{ _('Add-on Details for {0}')|fe(addon.name) }}</caption>
<tbody>
<tr>
<th>
<label data-for="description">
{{ _('Description') }}
{{ tip(None,
_("A longer explanation of features,
functionality, and other relevant information. This
field is only displayed on the add-on's details
page.")) }}
</label>
</th>
<td>
{% if editable %}
{{ form.description }}
{{ form.description.errors }}
{{ some_html_tip() }}
{% else %}
{% call empty_unless(addon.description) %}
<div id="addon-description" class="prose">
{{ addon|all_locales('description', nl2br=True) }}
</div>
{% endcall %}
{% endif %}
</td>
</tr>
<tr>
<th>
{{ tip(_("Default Locale"),
_("Information about your add-on is displayed in this locale
unless you override it with a locale-specific translation.")) }}
</th>
<td class="addon_edit_locale">
{% if editable %}
{{ form.default_locale }}
{{ form.default_locale.errors }}
{% else %}
{{ addon.language_ascii() }}
{% endif %}
</td>
</tr>
<tr>
<th>
<label data-for="homepage">
{{ _("Homepage") }}
{{ tip(None,
_("If your add-on has another homepage, enter its
address here. If your website is localized into other
languages multiple translations of this field can be
added.")) }}
</label>
</th>
<td>
{% if editable %}
{{ form.homepage }}
{{ form.homepage.errors }}
{% else %}
{% call empty_unless(addon.homepage) %}
{{ addon|all_locales('homepage') }}
{% endcall %}
{% endif %}
</td>
</tr>
</tbody>
</table>
</div>
{% if editable %}
<div class="listing-footer">
<button>{{ _('Save Changes') }}</button> {{ _('or') }}
<a href="{{ url('devhub.addons.section', addon.slug, 'details') }}"
class="addon-edit-cancel">
{{ _('Cancel') }}</a>
</div>
{% endif %}
</div>
</form>
|
SuriyaaKudoIsc/olympia
|
apps/devhub/templates/devhub/addons/edit/details.html
|
HTML
|
bsd-3-clause
| 3,279
|
<!DOCTYPE html>
<html xmlns:wicket="https://wicket.apache.org">
<body>
<wicket:extend>
<div class="container-fluid">
<form wicket:id="synchForm" role="form">
<button wicket:id="synchronize"></button>
</form>
</div>
</wicket:extend>
</body>
</html>
|
ursjoss/scipamato
|
core/core-web/src/main/java/ch/difty/scipamato/core/web/sync/RefDataSyncPage.html
|
HTML
|
bsd-3-clause
| 312
|
{% load wpf_sidebar_tags %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>{% block page_title %}{{blog_options.blogname}}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset={{blog_options.blog_charset}}" />
<link rel="stylesheet" href="{{blog.options.theme_url}}style.css" type="text/css" />
<link rel="alternate" type="application/atom+xml" title="Atom Feed, full entries" href="{% url wpf_feed %}" />
<script type="text/javascript">//<![CDATA[
function search_get() {
var q = document.getElementById('q');
var f = document.getElementById('searchform');
if (!q || !f)
return;
if (!q.value) {
q.className = 'error';
return;
}
location.href = f.action + encodeURIComponent(q.value) + '/';
return false;
}
//]]></script>
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="header">
<h1 id="title">{% block header_title %}<a href="{% url wpf_index %}" title="{{blog.options.blogname|striptags|escape}}">{{blog.options.blogname}}</a>{% endblock %}</h1>
</div>
<div id="page">
<div id="content">
<div class="right meta">
{% wpf_sb_pages %}
{% block sidebar %}
{% endblock %}
<!-- blogroll -->
<h3>powered by</h3>
<ul>
<li><a href="http://wp-frontman.com/">WP Frontman</a> + WP</li>
</ul>
<h3>elsewhere</h3>
<ul>
<li><a href="http://altroformato.it/">altroformato</a></li>
</ul>
<h3>friends</h3>
<ul>
<li><a href="http://arredarecasa-blog.it/">arredare casa</a></li>
</ul>
<h3>copyright</h3>
<ul>
<li>© 2004-2012<br />Ludovico Magnocavallo<br />tutti i diritti riservati</li>
</ul>
</div>
{% block content %}
{% endblock %}
</div>
</div>
</body>
</html>
|
ludoo/wpkit
|
attic/ngfrontman/templates/qix/wp_frontman/base.html
|
HTML
|
bsd-3-clause
| 2,381
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>OpenDPX: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<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_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="functions.html#index_a"><span>a</span></a></li>
<li><a href="functions_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_0x6b.html#index_k"><span>k</span></a></li>
<li><a href="functions_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_0x78.html#index_x"><span>x</span></a></li>
<li><a href="functions_0x79.html#index_y"><span>y</span></a></li>
<li class="current"><a href="functions_0x7a.html#index_z"><span>z</span></a></li>
<li><a href="functions_0x7e.html#index_~"><span>~</span></a></li>
</ul>
</div>
</div>
<div class="contents">
Here is a list of all class members with links to the classes they belong to:
<h3><a class="anchor" id="index_z">- z -</a></h3><ul>
<li>zero
: <a class="el" href="structdpx_1_1_industry_header.html#a64dc279baa1e2bd1d36df6c19da53dd5">dpx::IndustryHeader</a>
</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
</body>
</html>
|
inequation/dpx
|
doc/html/functions_0x7a.html
|
HTML
|
bsd-3-clause
| 3,977
|
<!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_24) on Tue May 01 09:56:12 CEST 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator (PMD 5.0.0 API)
</TITLE>
<META NAME="date" CONTENT="2012-05-01">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator (PMD 5.0.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?net/sourceforge/pmd/lang/java/ast//class-useASTAssignmentOperator.html" target="_top"><B>FRAMES</B></A>
<A HREF="ASTAssignmentOperator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#net.sourceforge.pmd.lang.java.ast"><B>net.sourceforge.pmd.lang.java.ast</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#net.sourceforge.pmd.lang.java.rule"><B>net.sourceforge.pmd.lang.java.rule</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="net.sourceforge.pmd.lang.java.ast"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A> in <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/package-summary.html">net.sourceforge.pmd.lang.java.ast</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/package-summary.html">net.sourceforge.pmd.lang.java.ast</A> with parameters of type <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD>
<TD><CODE><B>JavaParserVisitor.</B><B><A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/JavaParserVisitor.html#visit(net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator, java.lang.Object)">visit</A></B>(<A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A> node,
<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A> data)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD>
<TD><CODE><B>JavaParserVisitorAdapter.</B><B><A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/JavaParserVisitorAdapter.html#visit(net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator, java.lang.Object)">visit</A></B>(<A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A> node,
<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A> data)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<A NAME="net.sourceforge.pmd.lang.java.rule"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A> in <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/rule/package-summary.html">net.sourceforge.pmd.lang.java.rule</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/rule/package-summary.html">net.sourceforge.pmd.lang.java.rule</A> with parameters of type <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD>
<TD><CODE><B>AbstractJavaRule.</B><B><A HREF="../../../../../../../net/sourceforge/pmd/lang/java/rule/AbstractJavaRule.html#visit(net.sourceforge.pmd.lang.java.ast.ASTAssignmentOperator, java.lang.Object)">visit</A></B>(<A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTAssignmentOperator</A> node,
<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A> data)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTAssignmentOperator.html" title="class in net.sourceforge.pmd.lang.java.ast"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?net/sourceforge/pmd/lang/java/ast//class-useASTAssignmentOperator.html" target="_top"><B>FRAMES</B></A>
<A HREF="ASTAssignmentOperator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2002-2012 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All Rights Reserved.
</BODY>
</HTML>
|
daejunpark/jsaf
|
third_party/pmd/docs/apidocs/net/sourceforge/pmd/lang/java/ast/class-use/ASTAssignmentOperator.html
|
HTML
|
bsd-3-clause
| 12,065
|
.ui-pnotify{top:25px;right:25px;position:absolute;height:auto;z-index:9999}html>body>.ui-pnotify{position:fixed}.ui-pnotify .ui-pnotify-shadow{-webkit-box-shadow:0 2px 10px rgba(50,50,50,.5);-moz-box-shadow:0 2px 10px rgba(50,50,50,.5);box-shadow:0 2px 10px rgba(50,50,50,.5)}.ui-pnotify-container{background-position:0 0;padding:.8em;height:100%;margin:0}.ui-pnotify-sharp{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.ui-pnotify-title{display:block;margin-bottom:.4em;margin-top:0}.ui-pnotify-text{display:block}.ui-pnotify-icon,.ui-pnotify-icon span{display:block;float:left;margin-right:.2em}.ui-pnotify.stack-bottomleft,.ui-pnotify.stack-topleft{left:25px;right:auto}.ui-pnotify.stack-bottomleft,.ui-pnotify.stack-bottomright{bottom:25px;top:auto}
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background-color: #ffffff;
}
.alert h4 {
margin-top: 0;
color: inherit;
font-size: 17.5px;
}
.alert .alert-link {
font-weight: bold;
}
.alert > p,
.alert > ul {
margin-bottom: 0;
}
.alert > p + p {
margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert-success hr {
border-top-color: #c9e2b3;
}
.alert-success .alert-link {
color: #2b542c;
}
.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.alert-info hr {
border-top-color: #a6e1ec;
}
.alert-info .alert-link {
color: #245269;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert-warning hr {
border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
color: #66512c;
}
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert-danger hr {
border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
color: #843534;
}
|
pioto/dandelion
|
dandelion-core/src/main/resources/META-INF/resources/ddl-debugger/css/pnotify.custom.min.css
|
CSS
|
bsd-3-clause
| 2,185
|
<!DOCTYPE html>
<!--
Copyright (c) 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/extras/importer/trace2html_importer.html">
<script>
'use strict';
tv.b.unittest.testSuite(function() { // @suppress longLineCheck
test('simple', function() {
var html_lines = [
'<!DOCTYPE HTML>',
'<script id="viewer-data" type="application/json">',
btoa('hello'),
'<\/script>',
'<script id="viewer-data" type="application/json">',
btoa('world'),
'<\/script>',
'</html>'
];
var html_text = html_lines.join('\n');
assert.isTrue(tv.e.importer.Trace2HTMLImporter.canImport(html_text));
var m = new tv.c.TraceModel();
var imp = new tv.e.importer.Trace2HTMLImporter(m, html_text);
var subTracesAsBuffers = imp.extractSubtraces();
var subTracesAsStrings = subTracesAsBuffers.map(function(buffer) {
var str = '';
var ary = new Uint8Array(buffer);
for (var i = 0; i < ary.length; i++)
str += String.fromCharCode(ary[i]);
return str;
});
assert.deepEqual(subTracesAsStrings, ['hello', 'world']);
});
});
</script>
|
vmpstr/trace-viewer
|
trace_viewer/extras/importer/trace2html_importer_test.html
|
HTML
|
bsd-3-clause
| 1,243
|
<html><head>
<title>flibs/m_vfile - flibs </title>
</head>
<! -- Generated from file 'filedir/m_vfile.man' by tcllib/doctools with format 'html'
-->
<! -- Copyright © 2008 Michael Baudin [email protected] -- Copyright © 2008 Arjen Markus [email protected]
-->
<! -- CVS: $Id: m_vfile.html,v 1.2 2008/06/16 13:45:33 relaxmike Exp $ flibs/m_vfile.n
-->
<body>
<h1> flibs/m_vfile(n) 1.0 "flibs"</h1>
<h2><a name="name">NAME</a></h2>
<p>
<p> flibs/m_vfile - Processing files
<h2><a name="table_of_contents">TABLE OF CONTENTS</a></h2>
<p> <a href="#table_of_contents">TABLE OF CONTENTS</a><br>
<a href="#synopsis">SYNOPSIS</a><br>
<a href="#description">DESCRIPTION</a><br>
<a href="#overview">OVERVIEW</a><br>
<a href="#portability">Portability</a><br>
<a href="#how_to_use_it">How to use it</a><br>
<a href="#error_management">Error management</a><br>
<a href="#intel_fortran_portability">Intel Fortran portability</a><br>
<a href="#rename_and_getcwd_fortran_extension">RENAME and GETCWD fortran extension</a><br>
<a href="#dynamic_or_static_buffer">Dynamic or static buffer</a><br>
<a href="#preprocessing">Preprocessing</a><br>
<a href="#example_of_compiler_settings">Example of compiler settings</a><br>
<a href="#methods">METHODS</a><br>
<a href="#static_methods">STATIC METHODS</a><br>
<a href="#copyright">COPYRIGHT</a><br>
<h2><a name="synopsis">SYNOPSIS</a></h2>
<p>
<table border=1 width=100% cellspacing=0 cellpadding=0><tr bgcolor=lightyellow><td bgcolor=lightyellow><table 0 width=100% cellspacing=0 cellpadding=0><tr valign=top ><td ><a href="#1"><strong>vfile_rootname</strong> ( <i class='arg'>filename</i>) result ( rootname )</a></td></tr>
<tr valign=top ><td ><a href="#2"><strong>vfile_rootname</strong> ( <i class='arg'>filename</i>) result ( rootname )</a></td></tr>
<tr valign=top ><td ><a href="#3"><strong>vfile_extension</strong> ( <i class='arg'>filename</i>) result ( extension )</a></td></tr>
<tr valign=top ><td ><a href="#4"><strong>vfile_extension</strong> ( <i class='arg'>filename</i>) result ( extension )</a></td></tr>
<tr valign=top ><td ><a href="#5"><strong>vfile_tail</strong> ( <i class='arg'>filename</i>) result ( filetail )</a></td></tr>
<tr valign=top ><td ><a href="#6"><strong>vfile_tail</strong> ( <i class='arg'>filename</i>) result ( filetail )</a></td></tr>
<tr valign=top ><td ><a href="#7"><strong>vfile_dirname</strong> ( <i class='arg'>filename</i>) result ( dirname )</a></td></tr>
<tr valign=top ><td ><a href="#8"><strong>vfile_dirname</strong> ( <i class='arg'>filename</i>) result ( dirname )</a></td></tr>
<tr valign=top ><td ><a href="#9"><strong>vfile_first_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a></td></tr>
<tr valign=top ><td ><a href="#10"><strong>vfile_first_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a></td></tr>
<tr valign=top ><td ><a href="#11"><strong>vfile_last_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a></td></tr>
<tr valign=top ><td ><a href="#12"><strong>vfile_last_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a></td></tr>
<tr valign=top ><td ><a href="#13"><strong>vfile_join</strong> ( <i class='arg'>dirname</i> <i class='arg'>filename</i>) result ( fullname )</a></td></tr>
<tr valign=top ><td ><a href="#14"><strong>vfile_join</strong> ( <i class='arg'>dirname</i> <i class='arg'>, filename</i>) result ( fullname )</a></td></tr>
<tr valign=top ><td ><a href="#15"><strong>vfile_add_extension</strong> ( <i class='arg'>filename</i> <i class='arg'>, extension</i> ) result ( newname )</a></td></tr>
<tr valign=top ><td ><a href="#16"><strong>vfile_separator</strong> ( ) result ( separator )</a></td></tr>
<tr valign=top ><td ><a href="#17"><strong>vfile_pwd</strong> ( <i class='arg'>pwd</i> ?, status? )</a></td></tr>
<tr valign=top ><td ><a href="#18"><strong>vfile_exists</strong> ( <i class='arg'>filename</i> ) result ( exists )</a></td></tr>
<tr valign=top ><td ><a href="#19"><strong>vfile_exists</strong> ( <i class='arg'>filename</i> ) result ( exists )</a></td></tr>
<tr valign=top ><td ><a href="#20"><strong>vfile_rename</strong> ( <i class='arg'>filename</i> <i class='arg'>, newfn</i> ?, status? )</a></td></tr>
<tr valign=top ><td ><a href="#21"><strong>vfile_rename</strong> ( <i class='arg'>filename</i> <i class='arg'>, newfn</i> ?, status? )</a></td></tr>
<tr valign=top ><td ><a href="#22"><strong>vfile_copy</strong> ( <i class='arg'>filename</i> <i class='arg'>, targetfn</i> ?, status? ?, mode? ?, force? ?, trimline? )</a></td></tr>
<tr valign=top ><td ><a href="#23"><strong>vfile_copy</strong> ( <i class='arg'>filename</i> <i class='arg'>, targetfn</i> ?, status? ?, mode? ?, force? ?, trimline? )</a></td></tr>
<tr valign=top ><td ><a href="#24"><strong>vfile_delete</strong> ( <i class='arg'>filename</i> ?, force? ?, status? )</a></td></tr>
<tr valign=top ><td ><a href="#25"><strong>vfile_delete</strong> ( <i class='arg'>filename</i> ?, force? ?, status? )</a></td></tr>
<tr valign=top ><td ><a href="#26"><strong>vfile_isdirectory</strong> ( <i class='arg'>filename</i>) result ( isdirectory )</a></td></tr>
<tr valign=top ><td ><a href="#27"><strong>vfile_isdirectory</strong> ( <i class='arg'>filename</i>) result ( isdirectory )</a></td></tr>
<tr valign=top ><td ><a href="#28"><strong>vfile_isfile</strong> ( <i class='arg'>filename</i>) result ( isfile )</a></td></tr>
<tr valign=top ><td ><a href="#29"><strong>vfile_isfile</strong> ( <i class='arg'>filename</i>) result ( isfile )</a></td></tr>
<tr valign=top ><td ><a href="#30"><strong>vfile_size</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_size )</a></td></tr>
<tr valign=top ><td ><a href="#31"><strong>vfile_size</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_size )</a></td></tr>
<tr valign=top ><td ><a href="#32"><strong>vfile_atime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_atime )</a></td></tr>
<tr valign=top ><td ><a href="#33"><strong>vfile_atime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_atime )</a></td></tr>
<tr valign=top ><td ><a href="#34"><strong>vfile_mtime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_mtime )</a></td></tr>
<tr valign=top ><td ><a href="#35"><strong>vfile_mtime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_mtime )</a></td></tr>
<tr valign=top ><td ><a href="#36"><strong>vfile_normalize</strong> ( <i class='arg'>filename</i> ) result ( vfile_normalize )</a></td></tr>
<tr valign=top ><td ><a href="#37"><strong>vfile_normalize</strong> ( <i class='arg'>filename</i> ) result ( vfile_normalize )</a></td></tr>
<tr valign=top ><td ><a href="#38"><strong>vfile_find</strong> ( ?basedir? ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#39"><strong>vfile_find</strong> ( <i class='arg'>basedir</i> ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#40"><strong>vfile_find</strong> ( ?basedir? <i class='arg'>, filtercmd</i> ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#41"><strong>vfile_find</strong> ( <i class='arg'>basedir</i> <i class='arg'>, filtercmd</i> ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#42"><strong>vfile_findbypattern</strong> ( ?basedir? <i class='arg'>, pattern</i> ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#43"><strong>vfile_findbypattern</strong> ( ?basedir? <i class='arg'>, pattern</i> ) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#44"><strong>vfile_listfiles</strong> ( ?directory? ?, filetypes? ?, pattern? ?, tails?) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#45"><strong>vfile_listfiles</strong> ( <i class='arg'>directory</i> ?, filetypes? ?, pattern? ?, tails?) result ( listOfFiles )</a></td></tr>
<tr valign=top ><td ><a href="#46"><strong>vfile_type</strong> ( <i class='arg'>filename</i> ?, status?) result ( filetype )</a></td></tr>
<tr valign=top ><td ><a href="#47"><strong>vfile_type</strong> ( <i class='arg'>filename</i> ?, status?) result ( filetype )</a></td></tr>
<tr valign=top ><td ><a href="#48"><strong>vfile_split</strong> ( <i class='arg'>filename</i>) result ( listOfComponents )</a></td></tr>
<tr valign=top ><td ><a href="#49"><strong>vfile_split</strong> ( <i class='arg'>filename</i>) result ( listOfComponents )</a></td></tr>
<tr valign=top ><td ><a href="#50"><strong>vfile_touch</strong> ( <i class='arg'>filename</i> ?, status?)</a></td></tr>
<tr valign=top ><td ><a href="#51"><strong>vfile_touch</strong> ( <i class='arg'>filename</i> ?, status?)</a></td></tr>
<tr valign=top ><td ><a href="#52"><strong>vfile_pathtype</strong> ( <i class='arg'>filename</i>) result ( pathtype )</a></td></tr>
<tr valign=top ><td ><a href="#53"><strong>vfile_pathtype</strong> ( <i class='arg'>filename</i>) result ( pathtype )</a></td></tr>
<tr valign=top ><td ><a href="#54"><strong>vfile_nativename</strong> ( <i class='arg'>filename</i>) result ( nativename )</a></td></tr>
<tr valign=top ><td ><a href="#55"><strong>vfile_nativename</strong> ( <i class='arg'>filename</i>) result ( nativename )</a></td></tr>
<tr valign=top ><td ><a href="#56"><strong>vfile_mkdir</strong> ( <i class='arg'>filename</i> ?, status?)</a></td></tr>
<tr valign=top ><td ><a href="#57"><strong>vfile_mkdir</strong> ( <i class='arg'>filename</i> ?, status?)</a></td></tr>
<tr valign=top ><td ><a href="#58"><strong>vfile_open</strong> ( <i class='arg'>filename</i> ?, fileunit? ?, iostat? ?, status? ?, access? ?, form? ?, recl? ?, blank? ?, position? ?, action? ?, delim? ?, pad?) result ( fileunit_real )</a></td></tr>
<tr valign=top ><td ><a href="#59"><strong>vfile_open</strong> ( <i class='arg'>filename</i> ?, fileunit? ?, iostat? ?, status? ?, access? ?, form? ?, recl? ?, blank? ?, position? ?, action? ?, delim? ?, pad?) result ( fileunit_real )</a></td></tr>
<tr valign=top ><td ><a href="#60"><strong>vfile_startup</strong> ()</a></td></tr>
<tr valign=top ><td ><a href="#61"><strong>vfile_shutdown</strong> ()</a></td></tr>
<tr valign=top ><td ><a href="#62"><strong>vfile_set_stoponerror</strong> ( <i class='arg'>stoponerror</i> )</a></td></tr>
<tr valign=top ><td ><a href="#63"><strong>vfile_tempdir</strong> () result ( tempdir )</a></td></tr>
<tr valign=top ><td ><a href="#64"><strong>vfile_tempfile</strong> result ( tempfile )</a></td></tr>
<tr valign=top ><td ><a href="#65"><strong>vfile_volumes</strong> result ( listofvolumes )</a></td></tr>
</table></td></tr></table>
<h2><a name="description">DESCRIPTION</a></h2>
<p>
The module <em>m_vfile</em> provides OO services to process files and directories.
This component is based on a dynamic strings so that the
file or directory name may be defined with no limit in the
number of characters.
<h2><a name="overview">OVERVIEW</a></h2>
<p>
This component allows to manage the file system, by providing
services to create, move and destroy files and directories, and
to get informations about files and directories.
The services provided are based either on standard fortran,
or on fortran extensions.
<h3><a name="portability">Portability</a></h3>
<p>
One of the main interest of this component is to separate
the client-side application from platform-specific file
management or from compiler-specific fortran extensions.
<p>
This separation is possible because m_vfile
deals for the platform directly, by using the m_platform
module. This allows to design a client source code which
portable on several operating systems (for example windows,
linux) without any change. For example, the several file
separators used on the various operating systems are taken
into account internally : "/" on linux systems, "\" on
windows systems and ":" on Mac OS.
<p>
The portability is also ensured with respect to the
fortran compiler used to create the executable.
All fortran compilers provide commands to rename the files
or get the working directory. But not all fortran compilers
define these commands the same way : some provide subroutines,
some provide functions, etc... The current component can
be configured at compile-time with pre-processing commands.
This allows to configure the component with compiler
specific settings, to make so that the component know
what features your particular compiler knows about.
<p>
<your application> > m_vfile (operating system , fortran compiler) > m_platform (operating system , fortran compiler)
<h3><a name="how_to_use_it">How to use it</a></h3>
<p>
Before using the services provided by m_vfile, the client
code must call vfile_startup which initializes platform-specific
commands. After using these services, the client code should call
vfile_shutdown.
<p>
The commands vfile_delete, vfile_copy, vfile_rename
allow to delete, copy and rename files or directories.
To inquire about a file or directory, one can use
vfile_exists or vfile_isdirectory.
<p>
In the following example, one creates a new file with vfile_touch,
rename that file and finally delete it.
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
call vfile_startup ()
call vstring_new ( file , "foo.txt" )
call vfile_touch ( file )
call vfile_rename ( file , "toto.txt" )
call vfile_delete ( file )
call vstring_free ( file )
call vfile_shutdown ()
</pre></td></tr></table></p>
<p>
The component makes no differences between file names
and directory names, except for methods which are specific
for file or for directory.
<p>
The vfile_separator method returns the platform-specific character
used on the current operating system.
<p>
The commands vfile_nativename , vfile_normalize , vfile_pathtype
provide ways to manage file names and paths.
The vfile_nativename function returns the platform-specific name of the file.
The vfile_pathtype command returns one of VFILE_PATHTYPE_ABSOLUTE,
VFILE_PATHTYPE_RELATIVE, VFILE_PATHTYPE_VOLUMERELATIVE which correspond to
the current file. The VFILE_PATHTYPE_VOLUMERELATIVE only exist on
windows. The vfile_normalize command returns a unique normalized
path representation for the file-system object (file, directory, link,
etc), whose string value can be used as a unique identifier for it.
<p>
The vfile_split and vfile_join services allows to separate
or concatenate the components of a file. This can be useful
when dealing with relative file or directories.
The vfile_split command splits a file into pieces each time
the platform-specific separator is found.
The vfile_join command concatenate a list of strings with
the platform-specific separator and returns the concatenated
file name.
<p>
In the following example, extracted from the unit tests included in flibs,
the file "declaration.txt" is first normalized, so that the normalized
dynamic string may have the value
"/home/bill/flibs/tests/filedir/declaration.txt" under Windows
or "C:/workbench/flibs/tests/filedir/declaration.txt" under Linux.
Then the file name is split into a list of strings, for example "home",
"bill", "flibs", "tests", "filedir", "declaration.txt".
The number of strings in the list is then computed with the method
vstrlist_length.
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
use m_vstring
use m_vstringlist
use m_vfile
type ( t_vstring ) :: normalized
type ( t_vstringlist ) :: listOfFiles
integer :: numberOfStrings
normalized = vfile_normalize ( "declaration.txt" )
listOfFiles = vfile_split ( normalized )
numberOfStrings = vstrlist_length ( listOfFiles )
</pre></td></tr></table></p>
<p>
One particularly useful command when dealing with files is
vfile_findbypattern. The command takes a string as an input
file pattern. It then computes the list of all files which
match that pattern. The string matching system is based on
the vstring_match method of the m_vstring module.
<p>
In the following example, extracted again from the unit tests
of flibs, one computes the list of files in the directory "testfindbypattern"
matching the pattern "*dec*.txt".
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
type ( t_vstringlist ) :: listOfFiles
listOfFiles = vfile_findbypattern ( "testfindbypattern" , pattern = "*dec*.txt" )
</pre></td></tr></table></p>
<h3><a name="error_management">Error management</a></h3>
<p>
The file management may raise errors, for example when the
user want to rename a file which does not exist.
Many of the provided commands have an optional integer output
argument "status" which is zero when no error occurred
and non-zero in case of error.
If the status argument is not provided and an error is generated,
then the program stops and a message is displayed on standard
output.
These are the public error flags that the current component may generate :
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
VFILE_ERROR_OK
VFILE_ERROR_UNABLE_TO_OPEN_SOURCE
VFILE_ERROR_UNABLE_TO_OPEN_TARGET
VFILE_ERROR_UNABLE_TO_WRITE_TARGET
VFILE_ERROR_SOURCE_FILE_DOES_NOT_EXIST
</pre></td></tr></table></p>
<h3><a name="intel_fortran_portability">Intel Fortran portability</a></h3>
<p>
Several methods of this component are based on Fortran extensions,
which requires compiler-specific settings.
For Intel Fortran compiler, the current implementation was based on
IFPORT.F90 file in the Intel release for details on the interfaces provided.
If the client code use these routines, it must define the pre-processing
macro _VFILE_INTEL_FORTRAN_PORTABILITY_ROUTINES
<h3><a name="rename_and_getcwd_fortran_extension">RENAME and GETCWD fortran extension</a></h3>
<p>
Depending on the compiler, the "RENAME" fortran extension is
provided as a subroutine or a function.
For example, this is a short list of compilers and their particular
RENAME provided :
<ul>
<li> function : Intel Fortran, g95
<br><br>
<li> subroutine : gfortran
</ul>
To inform the m_vfile module of the particular RENAME extension,
one of the following pre-processing macro must be defined :
<ul>
<li> _VFILE_RENAME_FUNCTION
<br><br>
<li> _VFILE_RENAME_SUBROUTINE
</ul>
<p>
The same situation happens with the GETCWD fortran extension.
To inform the m_vfile module of the particular GETCWD extension,
one of the following pre-processing macro must be defined :
<ul>
<li> _VFILE_GETCWD_FUNCTION
<br><br>
<li> _VFILE_GETCWD_SUBROUTINE
</ul>
<h3><a name="dynamic_or_static_buffer">Dynamic or static buffer</a></h3>
<p>
The internal algorithms provided by m_vstrings are based on
basic fortran character strings. In several situations, the
dynamic vstring has to be converted into a basic fortran character
buffer string, which size has to be given explicitly in the source
code, with "character ( len = <something>)" statement.
Two solutions are provided, and the user can define the pre-processing macro
_VFILE_STATIC_BUFFER to configure that :
<ul>
<li> the first solution is to set the size of the buffer statically,
to a constant integer value VSTRING_BUFFER_SIZE.
<br><br>
<li> the second solution is to compute the size
of the buffer dynamically, with the fortran 90 len = vstring_length(this)
statement.
</ul>
If the _VFILE_STATIC_BUFFER is defined, then character strings of
constant size are used as buffers.
If the _VFILE_STATIC_BUFFER is not defined (which is the default),
then character strings of dynamic size are used as buffers.
The second solution is more efficient, because the strings are not
oversized or undersized, depending on the real number of characters
in the dynamic string. But the feature may not be provided
by the compiler at hand. For example, problems with the dynamic
length character string have been experienced with Intel Fortran 8.
<h3><a name="preprocessing">Preprocessing</a></h3>
<p>
The following preprocessing macro must be considered :
<ul>
<li> _VFILE_STATIC_BUFFER : see the section "Dynamic or static buffer"
<br><br>
<li> _VFILE_RENAME_FUNCTION or _VFILE_RENAME_SUBROUTINE : see the section "RENAME and GETCWD fortran extension"
<br><br>
<li> _VFILE_GETCWD_FUNCTION or _VFILE_GETCWD_SUBROUTINE : see the section "RENAME and GETCWD fortran extension"
</ul>
<h3><a name="example_of_compiler_settings">Example of compiler settings</a></h3>
<p>
This is an abstract of all macros for several compilers.
<p>
Compiler : <em>Intel Fortran V8.0</em>
<ul>
<li> _VFILE_INTEL_FORTRAN_PORTABILITY_ROUTINES
<br><br>
<li> _VFILE_RENAME_FUNCTION
<br><br>
<li> _VFILE_STATIC_BUFFER
<br><br>
<li> _VFILE_GETCWD_FUNCTION
</ul>
<p>
Compiler : <em>g95</em>
<ul>
<li> _VFILE_RENAME_FUNCTION
<br><br>
<li> _VFILE_GETCWD_FUNCTION
</ul>
<p>
Compiler : <em>gfortran</em>
<ul>
<li> _VFILE_RENAME_SUBROUTINE
<br><br>
<li> _VFILE_GETCWD_SUBROUTINE
</ul>
<h2><a name="methods">METHODS</a></h2>
<p>
<dl>
<dt><a name="1"><strong>vfile_rootname</strong> ( <i class='arg'>filename</i>) result ( rootname )</a><dd>
<dl>
<dt><strong>type ( t_vstring ) , intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>rootname</i><dd>
</dl>
Returns the name without the extension (if any), that is,
The part of the name _before_ the last "." in <i class='arg'>filename</i> or the whole name
if no "." is present in <i class='arg'>filename</i>.
Example : if filename is "declaration.txt", the file root name is "declaration".
<br><br>
<dt><a name="2"><strong>vfile_rootname</strong> ( <i class='arg'>filename</i>) result ( rootname )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>rootname</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="3"><strong>vfile_extension</strong> ( <i class='arg'>filename</i>) result ( extension )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>extension</i><dd>
</dl>
Returns the extension (if any), that is the part of the name
<em>after</em> and including the last "." or empty if none
present. Example : if filename is "declaration.txt", the file extension is ".txt".
<br><br>
<dt><a name="4"><strong>vfile_extension</strong> ( <i class='arg'>filename</i>) result ( extension )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>extension</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="5"><strong>vfile_tail</strong> ( <i class='arg'>filename</i>) result ( filetail )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>filetail</i><dd>
</dl>
Returns all of the characters in name after the last directory separator.
If <i class='arg'>filename</i> contains no separators then returns <i class='arg'>filename</i>.
Example : if filename is "dir1/declaration.txt", the file tail is "declaration.txt".
<br><br>
<dt><a name="6"><strong>vfile_tail</strong> ( <i class='arg'>filename</i>) result ( filetail )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>filetail</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="7"><strong>vfile_dirname</strong> ( <i class='arg'>filename</i>) result ( dirname )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>dirname</i><dd>
</dl>
Return the directory, that is, the part of the name <em>before</em>
the last directory separator.
Example : if filename is "dir1/declaration.txt", the directory name
is "dir1".
<br><br>
<dt><a name="8"><strong>vfile_dirname</strong> ( <i class='arg'>filename</i>) result ( dirname )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>dirname</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="9"><strong>vfile_first_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>sepindex</i><dd>
</dl>
Returns the index of the first separator in the given filename
or 0 if there is no separator in the given file name.
<br><br>
<dt><a name="10"><strong>vfile_first_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>sepindex</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="11"><strong>vfile_last_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>sepindex</i><dd>
</dl>
Returns the index of the last separator in the given filename
or 0 if there is no separator in the given file name.
<br><br>
<dt><a name="12"><strong>vfile_last_separator_index</strong> ( <i class='arg'>filename</i>) result ( sepindex )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>sepindex</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="13"><strong>vfile_join</strong> ( <i class='arg'>dirname</i> <i class='arg'>filename</i>) result ( fullname )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>dirname</i><dd>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>fullname</i><dd>
</dl>
Join the current file with the given file name,
using the platform-specific separator as the joining character.
The result is always canonical for the current platform: / for
Unix and Windows, and : for Macintosh.
If a particular name is relative, then it will be joined to the previous
file name argument. Otherwise, any earlier arguments will be discarded,
and joining will proceed from the current argument.
<br><br>
<dt><a name="14"><strong>vfile_join</strong> ( <i class='arg'>dirname</i> <i class='arg'>, filename</i>) result ( fullname )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>dirname</i><dd>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>fullname</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="15"><strong>vfile_add_extension</strong> ( <i class='arg'>filename</i> <i class='arg'>, extension</i> ) result ( newname )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>extension</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>newname</i><dd>
</dl>
Return a new file name with the given extension concatenated.
If the given file name ends with a dot and the given extension begins
with a dot, only one dot is kept.
Note that the extension of one file begins with a dot : ".txt" is a file
extension while "txt" is not.
<br><br>
<dt><a name="16"><strong>vfile_separator</strong> ( ) result ( separator )</a><dd>
<dl>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>separator</i><dd>
</dl>
Return the native separator for the current platform
The separator depends on the platform :
<br><br>
<ul>
<li> "/" on Unix, Linux systems,
<br><br>
<li> "\" on Windows systems,
<br><br>
<li> ":" on Macintosh.
</ul>
<dt><a name="17"><strong>vfile_pwd</strong> ( <i class='arg'>pwd</i> ?, status? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>pwd</i><dd>
<dt><strong>integer , intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Returns the name of the current directory by using the fortran
extension GETCWD.
The separator used here is the platform-independent "/".
<br><br>
<dt><a name="18"><strong>vfile_exists</strong> ( <i class='arg'>filename</i> ) result ( exists )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>exists</i><dd>
</dl>
Returns .true. if file name exists, .false. otherwise.
<br><br>
<dt><a name="19"><strong>vfile_exists</strong> ( <i class='arg'>filename</i> ) result ( exists )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>exists</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="20"><strong>vfile_rename</strong> ( <i class='arg'>filename</i> <i class='arg'>, newfn</i> ?, status? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>newfn</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Renames the file ofdln to newfn by using the RENAME fortran extension.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
<br><br>
<dt><a name="21"><strong>vfile_rename</strong> ( <i class='arg'>filename</i> <i class='arg'>, newfn</i> ?, status? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>newfn</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Same as previous but with <i class='arg'>newfn</i> as a character string.
<br><br>
<dt><a name="22"><strong>vfile_copy</strong> ( <i class='arg'>filename</i> <i class='arg'>, targetfn</i> ?, status? ?, mode? ?, force? ?, trimline? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>targetfn</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>character(len=*), intent(in), optional ::</strong> <i class='arg'>mode</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>force</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>trimline</i><dd>
</dl>
Copy the ascii file ofdln to targetfn.
If the source file does not exists, generates an error.
If the target file allready exists and force option is undefined
or defined to false, generates an error.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return
<br><br>
<ul>
<li> status = 1 when one was unable to open the source file
<br><br>
<li> status = 2 when one was unable to open the target file
<br><br>
<li> status = 3 when there was a problem while writing the target file
<br><br>
<li> status = 4 when the source file does not exist
</ul>
If <i class='arg'>mode</i> is not supplied or supplied and equals to "system", then
the copy is made using an operating system command.
If <i class='arg'>mode</i> is supplied and equals to "ascii", then the copy is made using standard
fortran.
The <i class='arg'>force</i> option is available only in "ascii" mode.
If <i class='arg'>force</i> is supplied and true, if the target file allready exists, delete it before
making the copy.
The <i class='arg'>trimline</i> option is available only in "ascii" mode.
If <i class='arg'>trimline</i> is supplied and true, or not supplied, the lines of
the file copy are trimmed.
If <i class='arg'>trimline</i> is supplied and false, the number of columns in the file copy are all
of maximum possible length.
<br><br>
The "ascii" mode may not behave as expected :
<br><br>
<ul>
<li> The maximum number of columns in the source filename is 1000.
<br><br>
<li> After execution, the target file is not an exact copy of the source file.
Because of the fortran format used, all the lines of the target file are of length 1000 :
blank spaces are appended at the end of the string.
</ul>
<dt><a name="23"><strong>vfile_copy</strong> ( <i class='arg'>filename</i> <i class='arg'>, targetfn</i> ?, status? ?, mode? ?, force? ?, trimline? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>targetfn</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>character(len=*), intent(in), optional ::</strong> <i class='arg'>mode</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>force</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>trimline</i><dd>
</dl>
Same as previous but with <i class='arg'>targetfn</i> as a character string.
<br><br>
<dt><a name="24"><strong>vfile_delete</strong> ( <i class='arg'>filename</i> ?, force? ?, status? )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>force</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Removes the file or directory <i class='arg'>filename</i>.
Non-empty directories will be removed only if the <i class='arg'>force</i> option is specified.
If <i class='arg'>force</i> is supplied and true, forces to delete the directory, even if it is empty.
If <i class='arg'>force</i> is not supplied or supplied and false, the directory is not deleted if it is empty.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
<br><br>
<dt><a name="25"><strong>vfile_delete</strong> ( <i class='arg'>filename</i> ?, force? ?, status? )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical, intent(in) , optional ::</strong> <i class='arg'>force</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="26"><strong>vfile_isdirectory</strong> ( <i class='arg'>filename</i>) result ( isdirectory )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>isdirectory</i><dd>
</dl>
Returns .true. if file name is a directory, .false. otherwise.
<br><br>
<dt><a name="27"><strong>vfile_isdirectory</strong> ( <i class='arg'>filename</i>) result ( isdirectory )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>isdirectory</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="28"><strong>vfile_isfile</strong> ( <i class='arg'>filename</i>) result ( isfile )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>isfile</i><dd>
</dl>
Returns .true. if file name is a file, .false. otherwise.
<br><br>
<dt><a name="29"><strong>vfile_isfile</strong> ( <i class='arg'>filename</i>) result ( isfile )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>logical ::</strong> <i class='arg'>isfile</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="30"><strong>vfile_size</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_size )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_size</i><dd>
</dl>
Returns .true. if file name is a file, .false. otherwise.
Returns an integer giving the size of file name in bytes.
If the file doesn't exist or its size cannot be queried then an error is generated.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
<br><br>
<dt><a name="31"><strong>vfile_size</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_size )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_size</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="32"><strong>vfile_atime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_atime )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_atime</i><dd>
</dl>
Returns an integer representing the time at which file name was last accessed.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
<br><br>
<dt><a name="33"><strong>vfile_atime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_atime )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_atime</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="34"><strong>vfile_mtime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_mtime )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_mtime</i><dd>
</dl>
Returns an integer representing the time at which file name was last modified.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
<br><br>
<dt><a name="35"><strong>vfile_mtime</strong> ( <i class='arg'>filename</i> ?, status?) result ( vfile_mtime )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>vfile_mtime</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="36"><strong>vfile_normalize</strong> ( <i class='arg'>filename</i> ) result ( vfile_normalize )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>vfile_normalize</i><dd>
</dl>
Returns a unique normalized path representation for the
file-system object (file, directory, link, etc), whose string
value can be used as a unique identifier for it. A normalized path
is an absolute path which has all '../', './' removed. Also it is one which
is in the ``standard'' format for the native platform.
On Windows or Mac, any platform-specific separator in the path
is replaced by the platform-independent separator "/".
On Windows it also means we want the long form with that form's
case-dependence (which gives us a unique, case-dependent path).
<br><br>
<dt><a name="37"><strong>vfile_normalize</strong> ( <i class='arg'>filename</i> ) result ( vfile_normalize )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>vfile_normalize</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="38"><strong>vfile_find</strong> ( ?basedir? ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in), optional ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
An implementation of the unix command find.
Returns a list of files or directories which are located in the
given basedir directory, and, recursively, in all sub-directories.
Each file in the resulting list has a path relative to the given
basedir directory.
If <i class='arg'>basedir</i> is provided, this is the name of the base directory into which the search is done.
If <i class='arg'>basedir</i> is not provided, the current directory is used by default.
<br><br>
<dt><a name="39"><strong>vfile_find</strong> ( <i class='arg'>basedir</i> ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
Same as previous but with <i class='arg'>basedir</i> as a character string.
<br><br>
<dt><a name="40"><strong>vfile_find</strong> ( ?basedir? <i class='arg'>, filtercmd</i> ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in), optional ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
interface
function filtercmd ( filename ) result ( keepfile )
use m_vstring, only : t_vstring
type ( t_vstring ), intent(in) :: filename
logical :: keepfile
end function filtercmd
end interface</pre></td></tr></table></p>
An implementation of the unix command find.
Returns a list of files or directories which are located in the
given basedir directory, and, recursively, in all sub-directories.
Each file in the resulting list has a path relative to the given
basedir directory.
If <i class='arg'>basedir</i> is provided, this is the name of the base directory into which the search is done.
If <i class='arg'>basedir</i> is not provided, the current directory is used by default.
The <i class='arg'>filtercmd</i> command, if provided, is interpreted as a command prefix and
one argument is passed to it, the name of the file or directory find is currently
looking at. Note that this name is not fully qualified. It has to be joined it with
the result of pwd to get an absolute filename. The result of filtercmd is a boolean value
that indicates if the current file should be included in the list of interesting files.
<br><br>
<dt><a name="41"><strong>vfile_find</strong> ( <i class='arg'>basedir</i> <i class='arg'>, filtercmd</i> ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
interface
function filtercmd ( filename ) result ( keepfile )
use m_vstring, only : t_vstring
type ( t_vstring ), intent(in) :: filename
logical :: keepfile
end function filtercmd
end interface</pre></td></tr></table></p>
Same as previous but with <i class='arg'>basedir</i> as a character string.
<br><br>
<dt><a name="42"><strong>vfile_findbypattern</strong> ( ?basedir? <i class='arg'>, pattern</i> ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in), optional ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
Returns a list of files which match the given pattern.
Internally, this command is based on vfile_find, with a particular filter command applied.
If <i class='arg'>basedir</i> is provided, this is the name of the base directory into which the search is done.
If <i class='arg'>basedir</i> is not provided, the current directory is used by default.
The <i class='arg'>pattern</i> is the pattern for the file names (like: *.f90) against which
each file name is compared. The method used for string matching
is vstring_match, so that all features available is vstring_match are
available in vfile_findbypattern.
<br><br>
<dt><a name="43"><strong>vfile_findbypattern</strong> ( ?basedir? <i class='arg'>, pattern</i> ) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in), optional ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
Same as previous but with <i class='arg'>basedir</i> and <i class='arg'>pattern</i> as a character string.
<br><br>
<dt><a name="44"><strong>vfile_listfiles</strong> ( ?directory? ?, filetypes? ?, pattern? ?, tails?) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in), optional ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ), intent(in), optional ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>type ( t_vstring ), intent(in), optional ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>logical, intent(in), optional ::</strong> <i class='arg'>tails</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
Returns a list of files in one directory.
Only the file tails are in the list.
If <i class='arg'>directory</i> is provided, the directory into which the list is to be computed.
If <i class='arg'>directory</i> is not provided, the current directory is used and only the file names are file tails.
If <i class='arg'>directory</i> is provided, the computed files names are relative and begin with the given
directory (following the template directory/filetail).
If <i class='arg'>filetypes</i> is provided, only list files or directories which match filetypes,
with d (directory), f (plain file).
If <i class='arg'>filetypes</i> is not provided, the filetypes "d" , "f" list is used.
If <i class='arg'>pattern</i> is provided, only list files which match the given pattern.
If <i class='arg'>pattern</i> is not provided, the "*" pattern is used.
The vstring_match command is used to compare the file against the pattern so that
all the pattern types available in vstring_match are available in vfile_listfiles.
If <i class='arg'>tails</i> is provided and true, only return the part of each file found
which follows the last directory named in directory.
Thus the statement
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
listoffiles = vfile_listfile ( tails = .true. , directory = directory , pattern = "*" )
</pre></td></tr></table></p>
is equivalent to
<p><table><tr><td bgcolor=black> </td><td><pre class='sample'>
call vfile_pwd ( cwd )
call vstrplatform_cd ( directory )
listoffiles = vfile_listfile ( tails = .true. , pattern = "*" )
call vstrplatform_cd ( cwd )
</pre></td></tr></table></p>
If <i class='arg'>tails</i> is provided and false, or not provided, the files are left as specified by the
directory argument.
<br><br>
<dt><a name="45"><strong>vfile_listfiles</strong> ( <i class='arg'>directory</i> ?, filetypes? ?, pattern? ?, tails?) result ( listOfFiles )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>basedir</i><dd>
<dt><strong>type ( t_vstringlist ), intent(in), optional ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>character(len=*), intent(in), optional ::</strong> <i class='arg'>pattern</i><dd>
<dt><strong>logical, intent(in), optional ::</strong> <i class='arg'>tails</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfFiles</i><dd>
</dl>
Same as previous but with <i class='arg'>directory</i> and <i class='arg'>pattern</i> as a character string.
<br><br>
<dt><a name="46"><strong>vfile_type</strong> ( <i class='arg'>filename</i> ?, status?) result ( filetype )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer , intent(out), optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>filetype</i><dd>
</dl>
Returns a string giving the type of file name, which will be one of "file" or "directory".
If <i class='arg'>status</i> is provided and the file type could be computed,
the status is set to 0.
If <i class='arg'>status</i> is provided and the file type could not be computed,
the status is set to VFILE_ERROR_UNKNOWN_FILE_TYPE.
If <i class='arg'>status</i> is not provided and the file type could not be computed,
an error is generated.
<br><br>
<dt><a name="47"><strong>vfile_type</strong> ( <i class='arg'>filename</i> ?, status?) result ( filetype )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer , intent(out), optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>filetype</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="48"><strong>vfile_split</strong> ( <i class='arg'>filename</i>) result ( listOfComponents )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfComponents</i><dd>
</dl>
Returns a list of strings where elements are the path components in name.
<br><br>
<dt><a name="49"><strong>vfile_split</strong> ( <i class='arg'>filename</i>) result ( listOfComponents )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listOfComponents</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="50"><strong>vfile_touch</strong> ( <i class='arg'>filename</i> ?, status?)</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Implementation of touch. Alter the atime and mtime of the specified files.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
If <i class='arg'>status</i> is not provided and the process could not be done,
an error is generated.
<br><br>
<dt><a name="51"><strong>vfile_touch</strong> ( <i class='arg'>filename</i> ?, status?)</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="52"><strong>vfile_pathtype</strong> ( <i class='arg'>filename</i>) result ( pathtype )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>pathtype</i><dd>
</dl>
Returns one of VFILE_PATHTYPE_ABSOLUTE, VFILE_PATHTYPE_RELATIVE, VFILE_PATHTYPE_VOLUMERELATIVE.
If <i class='arg'>filename</i> refers to a specific file on a specific volume, the path
type will be absolute. If <i class='arg'>filename</i> refers to a file relative to the current
working directory, then the path type will be relative. If name refers to
a file relative to the current working directory on a specified volume, or to
a specific file on the current working volume, then the path type is volumerelative.
<br><br>
Examples :
<br><br>
<ul>
<li> "." is relative on all platforms
<br><br>
<li> ".." is relative on all platforms
<br><br>
<li> "/" is absolute on Linux/Unix
<br><br>
<li> "C:/" is absolute on Windows (if the C:/ exists)
<br><br>
<li> "/" is volumerelative on windows and refers to the current volume (for example C:/)
<br><br>
<li> "toto.txt" is relative on all platforms
<br><br>
<li> "./toto.txt" is relative on all platforms
</ul>
<dt><a name="53"><strong>vfile_pathtype</strong> ( <i class='arg'>filename</i>) result ( pathtype )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>pathtype</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="54"><strong>vfile_nativename</strong> ( <i class='arg'>filename</i>) result ( nativename )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>( t_vstring ) ::</strong> <i class='arg'>nativename</i><dd>
</dl>
Returns the platform-specific name of the file.
filename is useful if the filename is needed to pass to a platform-specific
call, such as the execution of a system command under Windows or
AppleScript on the Macintosh.
<br><br>
<dt><a name="55"><strong>vfile_nativename</strong> ( <i class='arg'>filename</i>) result ( nativename )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>( t_vstring ) ::</strong> <i class='arg'>nativename</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="56"><strong>vfile_mkdir</strong> ( <i class='arg'>filename</i> ?, status?)</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Create a directory.
If <i class='arg'>status</i> is supplied, it contains 0 on success or nonzero error code
upon return.
If <i class='arg'>status</i> is not provided and the process could not be done,
an error is generated.
<br><br>
<dt><a name="57"><strong>vfile_mkdir</strong> ( <i class='arg'>filename</i> ?, status?)</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>status</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
<br><br>
<dt><a name="58"><strong>vfile_open</strong> ( <i class='arg'>filename</i> ?, fileunit? ?, iostat? ?, status? ?, access? ?, form? ?, recl? ?, blank? ?, position? ?, action? ?, delim? ?, pad?) result ( fileunit_real )</a><dd>
<dl>
<dt><strong>type ( t_vstring ), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>fileunit</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>action</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>access</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>form</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>blank</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>position</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>delim</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>pad</i><dd>
<dt><strong>integer , intent(in) , optional ::</strong> <i class='arg'>recl</i><dd>
<dt><strong>integer , intent(out) , optional ::</strong> <i class='arg'>iostat</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>fileunit_real</i><dd>
</dl>
Open a file and returns the unit associated with the opened file.
The command is based on fortran intrinsic "open".
If the optional argument fileunit is provided, it is used to
open the file.
If not provided, a file unit is automatically computed
on the base of currently free logical units.
<br><br>
Note:
<br><br>
All the options of the intrinsic "open" are provided
with the same behaviour and default values, with some exceptions.
<br><br>
<ul>
<li> The file name is mandatory in vfile_open,
even if the "file=" specifier is not mandatory in fortran "open".
This behaviour allows the fortran to manage a status="scratch"
specifier, which provides a way to manage for temporary
files internally. Instead, the m_vfile component provides the
vfile_tempfile service.
<br><br>
<li> The "err=" option with an error label as argument is not
provided. The client code may use the iostat option instead.
</ul>
<dt><a name="59"><strong>vfile_open</strong> ( <i class='arg'>filename</i> ?, fileunit? ?, iostat? ?, status? ?, access? ?, form? ?, recl? ?, blank? ?, position? ?, action? ?, delim? ?, pad?) result ( fileunit_real )</a><dd>
<dl>
<dt><strong>character(len=*), intent(in) ::</strong> <i class='arg'>filename</i><dd>
<dt><strong>integer, intent(out) , optional ::</strong> <i class='arg'>fileunit</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>action</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>status</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>access</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>form</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>blank</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>position</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>delim</i><dd>
<dt><strong>character(len=*) , intent(in) , optional ::</strong> <i class='arg'>pad</i><dd>
<dt><strong>integer , intent(in) , optional ::</strong> <i class='arg'>recl</i><dd>
<dt><strong>integer , intent(out) , optional ::</strong> <i class='arg'>iostat</i><dd>
<dt><strong>integer ::</strong> <i class='arg'>fileunit_real</i><dd>
</dl>
Same as previous but with <i class='arg'>filename</i> as a character string.
</dl>
<h2><a name="static_methods">STATIC METHODS</a></h2>
<p>
<dl>
<dt><a name="60"><strong>vfile_startup</strong> ()</a><dd>
Initialize module internal state.
This routine must be called once before calling any method of the module.
<br><br>
<dt><a name="61"><strong>vfile_shutdown</strong> ()</a><dd>
Shutdown module internal state.
<br><br>
<dt><a name="62"><strong>vfile_set_stoponerror</strong> ( <i class='arg'>stoponerror</i> )</a><dd>
<dl>
<dt><strong>logical , intent(in) ::</strong> <i class='arg'>stoponerror</i><dd>
</dl>
Configure the behaviour of the component whenever an
error is met.
If <i class='arg'>stoponerror</i> is true, then the execution stops if an error is encountered.
If <i class='arg'>stoponerror</i> is false, then the execution continues if an error is encountered.
In both cases, a message is displayed on standard output.
<br><br>
<dt><a name="63"><strong>vfile_tempdir</strong> () result ( tempdir )</a><dd>
<dl>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>tempdir</i><dd>
</dl>
Returns the temporary directory for the current platform.
The command returns the path of a directory where the caller can
place temporary files, such as "/tmp" on Unix systems.
The algorithm we use to find the correct directory is as follows:
<br><br>
<ol>
<li> The directory named in the TMPDIR environment variable.
<br><br>
<li> The directory named in the TEMP environment variable.
<br><br>
<li> The directory named in the TMP environment variable.
<br><br>
<li> A platform specific location:
<br><br>
<ul>
<li> Windows
"C:\TEMP", "C:\TMP", "\TEMP", and "\TMP" are tried in that order.
(classic) Macintosh
The TRASH_FOLDER environment variable is used. filename is most likely not correct.
<br><br>
<li> Unix
The directories "/tmp", "/var/tmp", and "/usr/tmp" are tried in that order.
</ul>
</ol>
<dt><a name="64"><strong>vfile_tempfile</strong> result ( tempfile )</a><dd>
<dl>
<dt><strong>type ( t_vstring ) ::</strong> <i class='arg'>tempfile</i><dd>
</dl>
Returns the name of a temporary file name suitable for writing to.
The <i class='arg'>tempfile</i> name is unique, and the file will be writable and
contained in the appropriate system specific temp directory.
<br><br>
<dt><a name="65"><strong>vfile_volumes</strong> result ( listofvolumes )</a><dd>
<dl>
<dt><strong>type ( t_vstringlist ) ::</strong> <i class='arg'>listofvolumes</i><dd>
</dl>
Returns the absolute paths to the volumes mounted on the
system, as a proper string list.
On UNIX, the command will always return "/", since all filesystems are
locally mounted.
On Windows, it will return a list of the available
local drives (e.g. {a:/ c:/}).
<br><br>
Note:
<br><br>
With Intel Fortran, the portability routines provide the "GETDRIVESQQ" function,
which returns the list of current drive as a 26 letters string.
</dl>
<h2><a name="copyright">COPYRIGHT</a></h2>
<p>
Copyright © 2008 Michael Baudin [email protected]<br>
Copyright © 2008 Arjen Markus [email protected]<br>
</body></html>
|
mapmeld/fortran-machine
|
flibs-0.9/flibs/site/m_vfile.html
|
HTML
|
bsd-3-clause
| 63,812
|
<!--
Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="../ct-view.html">
<script>
(function () {
var assert = chai.assert;
describe('ct-view', function() {
var view;
beforeEach(function() {
view = document.createElement('ct-view');
view.appendChild(document.createElement('div'));
});
it('should match path', function(done) {
view.path = "/test/path";
setTimeout(function() {
var div = view.showView("/test/path");
assert.ok(div);
assert(!div.hidden);
done();
});
});
it('should not match incorrect path', function(done) {
view.path = "/other/path";
setTimeout(function() {
var div = view.showView("/test/path");
assert.notOk(div);
done();
});
});
it('should assign variables to child', function(done) {
view.path = "/{var1}/test/{var2}";
setTimeout(function() {
var div = view.showView("/value1/test/value2");
assert.ok(div);
assert.equal(div.getAttribute('var1'), 'value1');
assert.equal(div.getAttribute('var2'), 'value2');
done();
});
});
});
})();
</script>
|
smilusingjavascript/blink
|
Tools/GardeningServer/ui/test/ct-view-tests.html
|
HTML
|
bsd-3-clause
| 1,245
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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.20"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>PMDK C++ bindings: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">PMDK C++ bindings
 <span id="projectnumber">1.6.1</span>
</div>
<div id="projectbrief">This is the C++ bindings documentation for PMDK's libpmemobj.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.20 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a id="index_l"></a>- l -</h3><ul>
<li>length()
: <a class="el" href="classpmem_1_1obj_1_1experimental_1_1basic__string.html#ae7a0cf5046e565668645ce41bf8cefe3">pmem::obj::experimental::basic_string< CharT, Traits ></a>
</li>
<li>lock()
: <a class="el" href="classpmem_1_1obj_1_1mutex.html#a9ab48609b752c0b963f3ad2bacd50c86">pmem::obj::mutex</a>
, <a class="el" href="classpmem_1_1obj_1_1shared__mutex.html#aef1d143b637eec7e679d420e98a2f458">pmem::obj::shared_mutex</a>
, <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#a17f544211bcf905cd600295e4e47b757">pmem::obj::timed_mutex</a>
</li>
<li>lock_shared()
: <a class="el" href="classpmem_1_1obj_1_1shared__mutex.html#a016982730a6f61cd2acf53af986cdf03">pmem::obj::shared_mutex</a>
</li>
<li>lock_type()
: <a class="el" href="classpmem_1_1obj_1_1mutex.html#a4357943ecf5ce2745d517c1fe6f79136">pmem::obj::mutex</a>
, <a class="el" href="classpmem_1_1obj_1_1shared__mutex.html#a8e6044b942aa5f80070d26b699ef37cb">pmem::obj::shared_mutex</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="http://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.8.20
</small></address>
</body>
</html>
|
pbalcer/pbalcer.github.io
|
content/libpmemobj-cpp/v1.6/doxygen/functions_func_l.html
|
HTML
|
bsd-3-clause
| 3,927
|
<!--{
"Title": "The Go Programming Language Specification",
"Subtitle": "Version of June 11, 2015",
"Path": "/ref/spec"
}-->
<h2 id="Introduction">Introduction</h2>
<p>
This is a reference manual for the Go programming language. For
more information and other documents, see <a href="/">golang.org</a>.
</p>
<p>
Go is a general-purpose language designed with systems programming
in mind. It is strongly typed and garbage-collected and has explicit
support for concurrent programming. Programs are constructed from
<i>packages</i>, whose properties allow efficient management of
dependencies. The existing implementations use a traditional
compile/link model to generate executable binaries.
</p>
<p>
The grammar is compact and regular, allowing for easy analysis by
automatic tools such as integrated development environments.
</p>
<h2 id="Notation">Notation</h2>
<p>
The syntax is specified using Extended Backus-Naur Form (EBNF):
</p>
<pre class="grammar">
Production = production_name "=" [ Expression ] "." .
Expression = Alternative { "|" Alternative } .
Alternative = Term { Term } .
Term = production_name | token [ "…" token ] | Group | Option | Repetition .
Group = "(" Expression ")" .
Option = "[" Expression "]" .
Repetition = "{" Expression "}" .
</pre>
<p>
Productions are expressions constructed from terms and the following
operators, in increasing precedence:
</p>
<pre class="grammar">
| alternation
() grouping
[] option (0 or 1 times)
{} repetition (0 to n times)
</pre>
<p>
Lower-case production names are used to identify lexical tokens.
Non-terminals are in CamelCase. Lexical tokens are enclosed in
double quotes <code>""</code> or back quotes <code>``</code>.
</p>
<p>
The form <code>a … b</code> represents the set of characters from
<code>a</code> through <code>b</code> as alternatives. The horizontal
ellipsis <code>…</code> is also used elsewhere in the spec to informally denote various
enumerations or code snippets that are not further specified. The character <code>…</code>
(as opposed to the three characters <code>...</code>) is not a token of the Go
language.
</p>
<h2 id="Source_code_representation">Source code representation</h2>
<p>
Source code is Unicode text encoded in
<a href="http://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
canonicalized, so a single accented code point is distinct from the
same character constructed from combining an accent and a letter;
those are treated as two code points. For simplicity, this document
will use the unqualified term <i>character</i> to refer to a Unicode code point
in the source text.
</p>
<p>
Each code point is distinct; for instance, upper and lower case letters
are different characters.
</p>
<p>
Implementation restriction: For compatibility with other tools, a
compiler may disallow the NUL character (U+0000) in the source text.
</p>
<p>
Implementation restriction: For compatibility with other tools, a
compiler may ignore a UTF-8-encoded byte order mark
(U+FEFF) if it is the first Unicode code point in the source text.
A byte order mark may be disallowed anywhere else in the source.
</p>
<h3 id="Characters">Characters</h3>
<p>
The following terms are used to denote specific Unicode character classes:
</p>
<pre class="ebnf">
newline = /* the Unicode code point U+000A */ .
unicode_char = /* an arbitrary Unicode code point except newline */ .
unicode_letter = /* a Unicode code point classified as "Letter" */ .
unicode_digit = /* a Unicode code point classified as "Decimal Digit" */ .
</pre>
<p>
In <a href="http://www.unicode.org/versions/Unicode6.3.0/">The Unicode Standard 6.3</a>,
Section 4.5 "General Category"
defines a set of character categories. Go treats
those characters in category Lu, Ll, Lt, Lm, or Lo as Unicode letters,
and those in category Nd as Unicode digits.
</p>
<h3 id="Letters_and_digits">Letters and digits</h3>
<p>
The underscore character <code>_</code> (U+005F) is considered a letter.
</p>
<pre class="ebnf">
letter = unicode_letter | "_" .
decimal_digit = "0" … "9" .
octal_digit = "0" … "7" .
hex_digit = "0" … "9" | "A" … "F" | "a" … "f" .
</pre>
<h2 id="Lexical_elements">Lexical elements</h2>
<h3 id="Comments">Comments</h3>
<p>
There are two forms of comments:
</p>
<ol>
<li>
<i>Line comments</i> start with the character sequence <code>//</code>
and stop at the end of the line. A line comment acts like a newline.
</li>
<li>
<i>General comments</i> start with the character sequence <code>/*</code>
and continue through the character sequence <code>*/</code>. A general
comment containing one or more newlines acts like a newline, otherwise it acts
like a space.
</li>
</ol>
<p>
Comments do not nest.
</p>
<h3 id="Tokens">Tokens</h3>
<p>
Tokens form the vocabulary of the Go language.
There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
and delimiters</i>, and <i>literals</i>. <i>White space</i>, formed from
spaces (U+0020), horizontal tabs (U+0009),
carriage returns (U+000D), and newlines (U+000A),
is ignored except as it separates tokens
that would otherwise combine into a single token. Also, a newline or end of file
may trigger the insertion of a <a href="#Semicolons">semicolon</a>.
While breaking the input into tokens,
the next token is the longest sequence of characters that form a
valid token.
</p>
<h3 id="Semicolons">Semicolons</h3>
<p>
The formal grammar uses semicolons <code>";"</code> as terminators in
a number of productions. Go programs may omit most of these semicolons
using the following two rules:
</p>
<ol>
<li>
<p>
When the input is broken into tokens, a semicolon is automatically inserted
into the token stream at the end of a non-blank line if the line's final
token is
</p>
<ul>
<li>an
<a href="#Identifiers">identifier</a>
</li>
<li>an
<a href="#Integer_literals">integer</a>,
<a href="#Floating-point_literals">floating-point</a>,
<a href="#Imaginary_literals">imaginary</a>,
<a href="#Rune_literals">rune</a>, or
<a href="#String_literals">string</a> literal
</li>
<li>one of the <a href="#Keywords">keywords</a>
<code>break</code>,
<code>continue</code>,
<code>fallthrough</code>, or
<code>return</code>
</li>
<li>one of the <a href="#Operators_and_Delimiters">operators and delimiters</a>
<code>++</code>,
<code>--</code>,
<code>)</code>,
<code>]</code>, or
<code>}</code>
</li>
</ul>
</li>
<li>
To allow complex statements to occupy a single line, a semicolon
may be omitted before a closing <code>")"</code> or <code>"}"</code>.
</li>
</ol>
<p>
To reflect idiomatic use, code examples in this document elide semicolons
using these rules.
</p>
<h3 id="Identifiers">Identifiers</h3>
<p>
Identifiers name program entities such as variables and types.
An identifier is a sequence of one or more letters and digits.
The first character in an identifier must be a letter.
</p>
<pre class="ebnf">
identifier = letter { letter | unicode_digit } .
</pre>
<pre>
a
_x9
ThisVariableIsExported
αβ
</pre>
<p>
Some identifiers are <a href="#Predeclared_identifiers">predeclared</a>.
</p>
<h3 id="Keywords">Keywords</h3>
<p>
The following keywords are reserved and may not be used as identifiers.
</p>
<pre class="grammar">
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
</pre>
<h3 id="Operators_and_Delimiters">Operators and Delimiters</h3>
<p>
The following character sequences represent <a href="#Operators">operators</a>, delimiters, and other special tokens:
</p>
<pre class="grammar">
+ & += &= && == != ( )
- | -= |= || < <= [ ]
* ^ *= ^= <- > >= { }
/ << /= <<= ++ = := , ;
% >> %= >>= -- ! ... . :
&^ &^=
</pre>
<h3 id="Integer_literals">Integer literals</h3>
<p>
An integer literal is a sequence of digits representing an
<a href="#Constants">integer constant</a>.
An optional prefix sets a non-decimal base: <code>0</code> for octal, <code>0x</code> or
<code>0X</code> for hexadecimal. In hexadecimal literals, letters
<code>a-f</code> and <code>A-F</code> represent values 10 through 15.
</p>
<pre class="ebnf">
int_lit = decimal_lit | octal_lit | hex_lit .
decimal_lit = ( "1" … "9" ) { decimal_digit } .
octal_lit = "0" { octal_digit } .
hex_lit = "0" ( "x" | "X" ) hex_digit { hex_digit } .
</pre>
<pre>
42
0600
0xBadFace
170141183460469231731687303715884105727
</pre>
<h3 id="Floating-point_literals">Floating-point literals</h3>
<p>
A floating-point literal is a decimal representation of a
<a href="#Constants">floating-point constant</a>.
It has an integer part, a decimal point, a fractional part,
and an exponent part. The integer and fractional part comprise
decimal digits; the exponent part is an <code>e</code> or <code>E</code>
followed by an optionally signed decimal exponent. One of the
integer part or the fractional part may be elided; one of the decimal
point or the exponent may be elided.
</p>
<pre class="ebnf">
float_lit = decimals "." [ decimals ] [ exponent ] |
decimals exponent |
"." decimals [ exponent ] .
decimals = decimal_digit { decimal_digit } .
exponent = ( "e" | "E" ) [ "+" | "-" ] decimals .
</pre>
<pre>
0.
72.40
072.40 // == 72.40
2.71828
1.e+0
6.67428e-11
1E6
.25
.12345E+5
</pre>
<h3 id="Imaginary_literals">Imaginary literals</h3>
<p>
An imaginary literal is a decimal representation of the imaginary part of a
<a href="#Constants">complex constant</a>.
It consists of a
<a href="#Floating-point_literals">floating-point literal</a>
or decimal integer followed
by the lower-case letter <code>i</code>.
</p>
<pre class="ebnf">
imaginary_lit = (decimals | float_lit) "i" .
</pre>
<pre>
0i
011i // == 11i
0.i
2.71828i
1.e+0i
6.67428e-11i
1E6i
.25i
.12345E+5i
</pre>
<h3 id="Rune_literals">Rune literals</h3>
<p>
A rune literal represents a <a href="#Constants">rune constant</a>,
an integer value identifying a Unicode code point.
A rune literal is expressed as one or more characters enclosed in single quotes.
Within the quotes, any character may appear except single
quote and newline. A single quoted character represents the Unicode value
of the character itself,
while multi-character sequences beginning with a backslash encode
values in various formats.
</p>
<p>
The simplest form represents the single character within the quotes;
since Go source text is Unicode characters encoded in UTF-8, multiple
UTF-8-encoded bytes may represent a single integer value. For
instance, the literal <code>'a'</code> holds a single byte representing
a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while
<code>'ä'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing
a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>.
</p>
<p>
Several backslash escapes allow arbitrary values to be encoded as
ASCII text. There are four ways to represent the integer value
as a numeric constant: <code>\x</code> followed by exactly two hexadecimal
digits; <code>\u</code> followed by exactly four hexadecimal digits;
<code>\U</code> followed by exactly eight hexadecimal digits, and a
plain backslash <code>\</code> followed by exactly three octal digits.
In each case the value of the literal is the value represented by
the digits in the corresponding base.
</p>
<p>
Although these representations all result in an integer, they have
different valid ranges. Octal escapes must represent a value between
0 and 255 inclusive. Hexadecimal escapes satisfy this condition
by construction. The escapes <code>\u</code> and <code>\U</code>
represent Unicode code points so within them some values are illegal,
in particular those above <code>0x10FFFF</code> and surrogate halves.
</p>
<p>
After a backslash, certain single-character escapes represent special values:
</p>
<pre class="grammar">
\a U+0007 alert or bell
\b U+0008 backspace
\f U+000C form feed
\n U+000A line feed or newline
\r U+000D carriage return
\t U+0009 horizontal tab
\v U+000b vertical tab
\\ U+005c backslash
\' U+0027 single quote (valid escape only within rune literals)
\" U+0022 double quote (valid escape only within string literals)
</pre>
<p>
All other sequences starting with a backslash are illegal inside rune literals.
</p>
<pre class="ebnf">
rune_lit = "'" ( unicode_value | byte_value ) "'" .
unicode_value = unicode_char | little_u_value | big_u_value | escaped_char .
byte_value = octal_byte_value | hex_byte_value .
octal_byte_value = `\` octal_digit octal_digit octal_digit .
hex_byte_value = `\` "x" hex_digit hex_digit .
little_u_value = `\` "u" hex_digit hex_digit hex_digit hex_digit .
big_u_value = `\` "U" hex_digit hex_digit hex_digit hex_digit
hex_digit hex_digit hex_digit hex_digit .
escaped_char = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
</pre>
<pre>
'a'
'ä'
'本'
'\t'
'\000'
'\007'
'\377'
'\x07'
'\xff'
'\u12e4'
'\U00101234'
'aa' // illegal: too many characters
'\xa' // illegal: too few hexadecimal digits
'\0' // illegal: too few octal digits
'\uDFFF' // illegal: surrogate half
'\U00110000' // illegal: invalid Unicode code point
</pre>
<h3 id="String_literals">String literals</h3>
<p>
A string literal represents a <a href="#Constants">string constant</a>
obtained from concatenating a sequence of characters. There are two forms:
raw string literals and interpreted string literals.
</p>
<p>
Raw string literals are character sequences between back quotes
<code>``</code>. Within the quotes, any character is legal except
back quote. The value of a raw string literal is the
string composed of the uninterpreted (implicitly UTF-8-encoded) characters
between the quotes;
in particular, backslashes have no special meaning and the string may
contain newlines.
Carriage return characters ('\r') inside raw string literals
are discarded from the raw string value.
</p>
<p>
Interpreted string literals are character sequences between double
quotes <code>""</code>. The text between the quotes,
which may not contain newlines, forms the
value of the literal, with backslash escapes interpreted as they
are in <a href="#Rune_literals">rune literals</a> (except that <code>\'</code> is illegal and
<code>\"</code> is legal), with the same restrictions.
The three-digit octal (<code>\</code><i>nnn</i>)
and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual
<i>bytes</i> of the resulting string; all other escapes represent
the (possibly multi-byte) UTF-8 encoding of individual <i>characters</i>.
Thus inside a string literal <code>\377</code> and <code>\xFF</code> represent
a single byte of value <code>0xFF</code>=255, while <code>ÿ</code>,
<code>\u00FF</code>, <code>\U000000FF</code> and <code>\xc3\xbf</code> represent
the two bytes <code>0xc3</code> <code>0xbf</code> of the UTF-8 encoding of character
U+00FF.
</p>
<pre class="ebnf">
string_lit = raw_string_lit | interpreted_string_lit .
raw_string_lit = "`" { unicode_char | newline } "`" .
interpreted_string_lit = `"` { unicode_value | byte_value } `"` .
</pre>
<pre>
`abc` // same as "abc"
`\n
\n` // same as "\\n\n\\n"
"\n"
""
"Hello, world!\n"
"日本語"
"\u65e5本\U00008a9e"
"\xff\u00FF"
"\uD800" // illegal: surrogate half
"\U00110000" // illegal: invalid Unicode code point
</pre>
<p>
These examples all represent the same string:
</p>
<pre>
"日本語" // UTF-8 input text
`日本語` // UTF-8 input text as a raw literal
"\u65e5\u672c\u8a9e" // the explicit Unicode code points
"\U000065e5\U0000672c\U00008a9e" // the explicit Unicode code points
"\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e" // the explicit UTF-8 bytes
</pre>
<p>
If the source code represents a character as two code points, such as
a combining form involving an accent and a letter, the result will be
an error if placed in a rune literal (it is not a single code
point), and will appear as two code points if placed in a string
literal.
</p>
<h2 id="Constants">Constants</h2>
<p>There are <i>boolean constants</i>,
<i>rune constants</i>,
<i>integer constants</i>,
<i>floating-point constants</i>, <i>complex constants</i>,
and <i>string constants</i>. Rune, integer, floating-point,
and complex constants are
collectively called <i>numeric constants</i>.
</p>
<p>
A constant value is represented by a
<a href="#Rune_literals">rune</a>,
<a href="#Integer_literals">integer</a>,
<a href="#Floating-point_literals">floating-point</a>,
<a href="#Imaginary_literals">imaginary</a>,
or
<a href="#String_literals">string</a> literal,
an identifier denoting a constant,
a <a href="#Constant_expressions">constant expression</a>,
a <a href="#Conversions">conversion</a> with a result that is a constant, or
the result value of some built-in functions such as
<code>unsafe.Sizeof</code> applied to any value,
<code>cap</code> or <code>len</code> applied to
<a href="#Length_and_capacity">some expressions</a>,
<code>real</code> and <code>imag</code> applied to a complex constant
and <code>complex</code> applied to numeric constants.
The boolean truth values are represented by the predeclared constants
<code>true</code> and <code>false</code>. The predeclared identifier
<a href="#Iota">iota</a> denotes an integer constant.
</p>
<p>
In general, complex constants are a form of
<a href="#Constant_expressions">constant expression</a>
and are discussed in that section.
</p>
<p>
Numeric constants represent values of arbitrary precision and do not overflow.
</p>
<p>
Constants may be <a href="#Types">typed</a> or <i>untyped</i>.
Literal constants, <code>true</code>, <code>false</code>, <code>iota</code>,
and certain <a href="#Constant_expressions">constant expressions</a>
containing only untyped constant operands are untyped.
</p>
<p>
A constant may be given a type explicitly by a <a href="#Constant_declarations">constant declaration</a>
or <a href="#Conversions">conversion</a>, or implicitly when used in a
<a href="#Variable_declarations">variable declaration</a> or an
<a href="#Assignments">assignment</a> or as an
operand in an <a href="#Expressions">expression</a>.
It is an error if the constant value
cannot be represented as a value of the respective type.
For instance, <code>3.0</code> can be given any integer or any
floating-point type, while <code>2147483648.0</code> (equal to <code>1<<31</code>)
can be given the types <code>float32</code>, <code>float64</code>, or <code>uint32</code> but
not <code>int32</code> or <code>string</code>.
</p>
<p>
An untyped constant has a <i>default type</i> which is the type to which the
constant is implicitly converted in contexts where a typed value is required,
for instance, in a <a href="#Short_variable_declarations">short variable declaration</a>
such as <code>i := 0</code> where there is no explicit type.
The default type of an untyped constant is <code>bool</code>, <code>rune</code>,
<code>int</code>, <code>float64</code>, <code>complex128</code> or <code>string</code>
respectively, depending on whether it is a boolean, rune, integer, floating-point,
complex, or string constant.
</p>
<p>
There are no constants denoting the IEEE-754 infinity and not-a-number values,
but the <a href="/pkg/math/"><code>math</code> package</a>'s
<a href="/pkg/math/#Inf">Inf</a>,
<a href="/pkg/math/#NaN">NaN</a>,
<a href="/pkg/math/#IsInf">IsInf</a>, and
<a href="/pkg/math/#IsNaN">IsNaN</a>
functions return and test for those values at run time.
</p>
<p>
Implementation restriction: Although numeric constants have arbitrary
precision in the language, a compiler may implement them using an
internal representation with limited precision. That said, every
implementation must:
</p>
<ul>
<li>Represent integer constants with at least 256 bits.</li>
<li>Represent floating-point constants, including the parts of
a complex constant, with a mantissa of at least 256 bits
and a signed exponent of at least 32 bits.</li>
<li>Give an error if unable to represent an integer constant
precisely.</li>
<li>Give an error if unable to represent a floating-point or
complex constant due to overflow.</li>
<li>Round to the nearest representable constant if unable to
represent a floating-point or complex constant due to limits
on precision.</li>
</ul>
<p>
These requirements apply both to literal constants and to the result
of evaluating <a href="#Constant_expressions">constant
expressions</a>.
</p>
<h2 id="Variables">Variables</h2>
<p>
A variable is a storage location for holding a <i>value</i>.
The set of permissible values is determined by the
variable's <i><a href="#Types">type</a></i>.
</p>
<p>
A <a href="#Variable_declarations">variable declaration</a>
or, for function parameters and results, the signature
of a <a href="#Function_declarations">function declaration</a>
or <a href="#Function_literals">function literal</a> reserves
storage for a named variable.
Calling the built-in function <a href="#Allocation"><code>new</code></a>
or taking the address of a <a href="#Composite_literals">composite literal</a>
allocates storage for a variable at run time.
Such an anonymous variable is referred to via a (possibly implicit)
<a href="#Address_operators">pointer indirection</a>.
</p>
<p>
<i>Structured</i> variables of <a href="#Array_types">array</a>, <a href="#Slice_types">slice</a>,
and <a href="#Struct_types">struct</a> types have elements and fields that may
be <a href="#Address_operators">addressed</a> individually. Each such element
acts like a variable.
</p>
<p>
The <i>static type</i> (or just <i>type</i>) of a variable is the
type given in its declaration, the type provided in the
<code>new</code> call or composite literal, or the type of
an element of a structured variable.
Variables of interface type also have a distinct <i>dynamic type</i>,
which is the concrete type of the value assigned to the variable at run time
(unless the value is the predeclared identifier <code>nil</code>,
which has no type).
The dynamic type may vary during execution but values stored in interface
variables are always <a href="#Assignability">assignable</a>
to the static type of the variable.
</p>
<pre>
var x interface{} // x is nil and has static type interface{}
var v *T // v has value nil, static type *T
x = 42 // x has value 42 and dynamic type int
x = v // x has value (*T)(nil) and dynamic type *T
</pre>
<p>
A variable's value is retrieved by referring to the variable in an
<a href="#Expressions">expression</a>; it is the most recent value
<a href="#Assignments">assigned</a> to the variable.
If a variable has not yet been assigned a value, its value is the
<a href="#The_zero_value">zero value</a> for its type.
</p>
<h2 id="Types">Types</h2>
<p>
A type determines the set of values and operations specific to values of that
type. Types may be <i>named</i> or <i>unnamed</i>. Named types are specified
by a (possibly <a href="#Qualified_identifiers">qualified</a>)
<a href="#Type_declarations"><i>type name</i></a>; unnamed types are specified
using a <i>type literal</i>, which composes a new type from existing types.
</p>
<pre class="ebnf">
Type = TypeName | TypeLit | "(" Type ")" .
TypeName = identifier | QualifiedIdent .
TypeLit = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
SliceType | MapType | ChannelType .
</pre>
<p>
Named instances of the boolean, numeric, and string types are
<a href="#Predeclared_identifiers">predeclared</a>.
<i>Composite types</i>—array, struct, pointer, function,
interface, slice, map, and channel types—may be constructed using
type literals.
</p>
<p>
Each type <code>T</code> has an <i>underlying type</i>: If <code>T</code>
is one of the predeclared boolean, numeric, or string types, or a type literal,
the corresponding underlying
type is <code>T</code> itself. Otherwise, <code>T</code>'s underlying type
is the underlying type of the type to which <code>T</code> refers in its
<a href="#Type_declarations">type declaration</a>.
</p>
<pre>
type T1 string
type T2 T1
type T3 []T1
type T4 T3
</pre>
<p>
The underlying type of <code>string</code>, <code>T1</code>, and <code>T2</code>
is <code>string</code>. The underlying type of <code>[]T1</code>, <code>T3</code>,
and <code>T4</code> is <code>[]T1</code>.
</p>
<h3 id="Method_sets">Method sets</h3>
<p>
A type may have a <i>method set</i> associated with it.
The method set of an <a href="#Interface_types">interface type</a> is its interface.
The method set of any other type <code>T</code> consists of all
<a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
The method set of the corresponding <a href="#Pointer_types">pointer type</a> <code>*T</code>
is the set of all methods declared with receiver <code>*T</code> or <code>T</code>
(that is, it also contains the method set of <code>T</code>).
Further rules apply to structs containing anonymous fields, as described
in the section on <a href="#Struct_types">struct types</a>.
Any other type has an empty method set.
In a method set, each method must have a
<a href="#Uniqueness_of_identifiers">unique</a>
non-<a href="#Blank_identifier">blank</a> <a href="#MethodName">method name</a>.
</p>
<p>
The method set of a type determines the interfaces that the
type <a href="#Interface_types">implements</a>
and the methods that can be <a href="#Calls">called</a>
using a receiver of that type.
</p>
<h3 id="Boolean_types">Boolean types</h3>
<p>
A <i>boolean type</i> represents the set of Boolean truth values
denoted by the predeclared constants <code>true</code>
and <code>false</code>. The predeclared boolean type is <code>bool</code>.
</p>
<h3 id="Numeric_types">Numeric types</h3>
<p>
A <i>numeric type</i> represents sets of integer or floating-point values.
The predeclared architecture-independent numeric types are:
</p>
<pre class="grammar">
uint8 the set of all unsigned 8-bit integers (0 to 255)
uint16 the set of all unsigned 16-bit integers (0 to 65535)
uint32 the set of all unsigned 32-bit integers (0 to 4294967295)
uint64 the set of all unsigned 64-bit integers (0 to 18446744073709551615)
int8 the set of all signed 8-bit integers (-128 to 127)
int16 the set of all signed 16-bit integers (-32768 to 32767)
int32 the set of all signed 32-bit integers (-2147483648 to 2147483647)
int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
float32 the set of all IEEE-754 32-bit floating-point numbers
float64 the set of all IEEE-754 64-bit floating-point numbers
complex64 the set of all complex numbers with float32 real and imaginary parts
complex128 the set of all complex numbers with float64 real and imaginary parts
byte alias for uint8
rune alias for int32
</pre>
<p>
The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using
<a href="http://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>.
</p>
<p>
There is also a set of predeclared numeric types with implementation-specific sizes:
</p>
<pre class="grammar">
uint either 32 or 64 bits
int same size as uint
uintptr an unsigned integer large enough to store the uninterpreted bits of a pointer value
</pre>
<p>
To avoid portability issues all numeric types are distinct except
<code>byte</code>, which is an alias for <code>uint8</code>, and
<code>rune</code>, which is an alias for <code>int32</code>.
Conversions
are required when different numeric types are mixed in an expression
or assignment. For instance, <code>int32</code> and <code>int</code>
are not the same type even though they may have the same size on a
particular architecture.
<h3 id="String_types">String types</h3>
<p>
A <i>string type</i> represents the set of string values.
A string value is a (possibly empty) sequence of bytes.
Strings are immutable: once created,
it is impossible to change the contents of a string.
The predeclared string type is <code>string</code>.
</p>
<p>
The length of a string <code>s</code> (its size in bytes) can be discovered using
the built-in function <a href="#Length_and_capacity"><code>len</code></a>.
The length is a compile-time constant if the string is a constant.
A string's bytes can be accessed by integer <a href="#Index_expressions">indices</a>
0 through <code>len(s)-1</code>.
It is illegal to take the address of such an element; if
<code>s[i]</code> is the <code>i</code>'th byte of a
string, <code>&s[i]</code> is invalid.
</p>
<h3 id="Array_types">Array types</h3>
<p>
An array is a numbered sequence of elements of a single
type, called the element type.
The number of elements is called the length and is never
negative.
</p>
<pre class="ebnf">
ArrayType = "[" ArrayLength "]" ElementType .
ArrayLength = Expression .
ElementType = Type .
</pre>
<p>
The length is part of the array's type; it must evaluate to a
non-negative <a href="#Constants">constant</a> representable by a value
of type <code>int</code>.
The length of array <code>a</code> can be discovered
using the built-in function <a href="#Length_and_capacity"><code>len</code></a>.
The elements can be addressed by integer <a href="#Index_expressions">indices</a>
0 through <code>len(a)-1</code>.
Array types are always one-dimensional but may be composed to form
multi-dimensional types.
</p>
<pre>
[32]byte
[2*N] struct { x, y int32 }
[1000]*float64
[3][5]int
[2][2][2]float64 // same as [2]([2]([2]float64))
</pre>
<h3 id="Slice_types">Slice types</h3>
<p>
A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
provides access to a numbered sequence of elements from that array.
A slice type denotes the set of all slices of arrays of its element type.
The value of an uninitialized slice is <code>nil</code>.
</p>
<pre class="ebnf">
SliceType = "[" "]" ElementType .
</pre>
<p>
Like arrays, slices are indexable and have a length. The length of a
slice <code>s</code> can be discovered by the built-in function
<a href="#Length_and_capacity"><code>len</code></a>; unlike with arrays it may change during
execution. The elements can be addressed by integer <a href="#Index_expressions">indices</a>
0 through <code>len(s)-1</code>. The slice index of a
given element may be less than the index of the same element in the
underlying array.
</p>
<p>
A slice, once initialized, is always associated with an underlying
array that holds its elements. A slice therefore shares storage
with its array and with other slices of the same array; by contrast,
distinct arrays always represent distinct storage.
</p>
<p>
The array underlying a slice may extend past the end of the slice.
The <i>capacity</i> is a measure of that extent: it is the sum of
the length of the slice and the length of the array beyond the slice;
a slice of length up to that capacity can be created by
<a href="#Slice_expressions"><i>slicing</i></a> a new one from the original slice.
The capacity of a slice <code>a</code> can be discovered using the
built-in function <a href="#Length_and_capacity"><code>cap(a)</code></a>.
</p>
<p>
A new, initialized slice value for a given element type <code>T</code> is
made using the built-in function
<a href="#Making_slices_maps_and_channels"><code>make</code></a>,
which takes a slice type
and parameters specifying the length and optionally the capacity.
A slice created with <code>make</code> always allocates a new, hidden array
to which the returned slice value refers. That is, executing
</p>
<pre>
make([]T, length, capacity)
</pre>
<p>
produces the same slice as allocating an array and <a href="#Slice_expressions">slicing</a>
it, so these two expressions are equivalent:
</p>
<pre>
make([]int, 50, 100)
new([100]int)[0:50]
</pre>
<p>
Like arrays, slices are always one-dimensional but may be composed to construct
higher-dimensional objects.
With arrays of arrays, the inner arrays are, by construction, always the same length;
however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
Moreover, the inner slices must be initialized individually.
</p>
<h3 id="Struct_types">Struct types</h3>
<p>
A struct is a sequence of named elements, called fields, each of which has a
name and a type. Field names may be specified explicitly (IdentifierList) or
implicitly (AnonymousField).
Within a struct, non-<a href="#Blank_identifier">blank</a> field names must
be <a href="#Uniqueness_of_identifiers">unique</a>.
</p>
<pre class="ebnf">
StructType = "struct" "{" { FieldDecl ";" } "}" .
FieldDecl = (IdentifierList Type | AnonymousField) [ Tag ] .
AnonymousField = [ "*" ] TypeName .
Tag = string_lit .
</pre>
<pre>
// An empty struct.
struct {}
// A struct with 6 fields.
struct {
x, y int
u float32
_ float32 // padding
A *[]int
F func()
}
</pre>
<p>
A field declared with a type but no explicit field name is an <i>anonymous field</i>,
also called an <i>embedded</i> field or an embedding of the type in the struct.
An embedded type must be specified as
a type name <code>T</code> or as a pointer to a non-interface type name <code>*T</code>,
and <code>T</code> itself may not be
a pointer type. The unqualified type name acts as the field name.
</p>
<pre>
// A struct with four anonymous fields of type T1, *T2, P.T3 and *P.T4
struct {
T1 // field name is T1
*T2 // field name is T2
P.T3 // field name is T3
*P.T4 // field name is T4
x, y int // field names are x and y
}
</pre>
<p>
The following declaration is illegal because field names must be unique
in a struct type:
</p>
<pre>
struct {
T // conflicts with anonymous field *T and *P.T
*T // conflicts with anonymous field T and *P.T
*P.T // conflicts with anonymous field T and *T
}
</pre>
<p>
A field or <a href="#Method_declarations">method</a> <code>f</code> of an
anonymous field in a struct <code>x</code> is called <i>promoted</i> if
<code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
that field or method <code>f</code>.
</p>
<p>
Promoted fields act like ordinary fields
of a struct except that they cannot be used as field names in
<a href="#Composite_literals">composite literals</a> of the struct.
</p>
<p>
Given a struct type <code>S</code> and a type named <code>T</code>,
promoted methods are included in the method set of the struct as follows:
</p>
<ul>
<li>
If <code>S</code> contains an anonymous field <code>T</code>,
the <a href="#Method_sets">method sets</a> of <code>S</code>
and <code>*S</code> both include promoted methods with receiver
<code>T</code>. The method set of <code>*S</code> also
includes promoted methods with receiver <code>*T</code>.
</li>
<li>
If <code>S</code> contains an anonymous field <code>*T</code>,
the method sets of <code>S</code> and <code>*S</code> both
include promoted methods with receiver <code>T</code> or
<code>*T</code>.
</li>
</ul>
<p>
A field declaration may be followed by an optional string literal <i>tag</i>,
which becomes an attribute for all the fields in the corresponding
field declaration. The tags are made
visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
and take part in <a href="#Type_identity">type identity</a> for structs
but are otherwise ignored.
</p>
<pre>
// A struct corresponding to the TimeStamp protocol buffer.
// The tag strings define the protocol buffer field numbers.
struct {
microsec uint64 "field 1"
serverIP6 uint64 "field 2"
process string "field 3"
}
</pre>
<h3 id="Pointer_types">Pointer types</h3>
<p>
A pointer type denotes the set of all pointers to <a href="#Variables">variables</a> of a given
type, called the <i>base type</i> of the pointer.
The value of an uninitialized pointer is <code>nil</code>.
</p>
<pre class="ebnf">
PointerType = "*" BaseType .
BaseType = Type .
</pre>
<pre>
*Point
*[4]int
</pre>
<h3 id="Function_types">Function types</h3>
<p>
A function type denotes the set of all functions with the same parameter
and result types. The value of an uninitialized variable of function type
is <code>nil</code>.
</p>
<pre class="ebnf">
FunctionType = "func" Signature .
Signature = Parameters [ Result ] .
Result = Parameters | Type .
Parameters = "(" [ ParameterList [ "," ] ] ")" .
ParameterList = ParameterDecl { "," ParameterDecl } .
ParameterDecl = [ IdentifierList ] [ "..." ] Type .
</pre>
<p>
Within a list of parameters or results, the names (IdentifierList)
must either all be present or all be absent. If present, each name
stands for one item (parameter or result) of the specified type and
all non-<a href="#Blank_identifier">blank</a> names in the signature
must be <a href="#Uniqueness_of_identifiers">unique</a>.
If absent, each type stands for one item of that type.
Parameter and result
lists are always parenthesized except that if there is exactly
one unnamed result it may be written as an unparenthesized type.
</p>
<p>
The final parameter in a function signature may have
a type prefixed with <code>...</code>.
A function with such a parameter is called <i>variadic</i> and
may be invoked with zero or more arguments for that parameter.
</p>
<pre>
func()
func(x int) int
func(a, _ int, z float32) bool
func(a, b int, z float32) (bool)
func(prefix string, values ...int)
func(a, b int, z float64, opt ...interface{}) (success bool)
func(int, int, float64) (float64, *[]int)
func(n int) func(p *T)
</pre>
<h3 id="Interface_types">Interface types</h3>
<p>
An interface type specifies a <a href="#Method_sets">method set</a> called its <i>interface</i>.
A variable of interface type can store a value of any type with a method set
that is any superset of the interface. Such a type is said to
<i>implement the interface</i>.
The value of an uninitialized variable of interface type is <code>nil</code>.
</p>
<pre class="ebnf">
InterfaceType = "interface" "{" { MethodSpec ";" } "}" .
MethodSpec = MethodName Signature | InterfaceTypeName .
MethodName = identifier .
InterfaceTypeName = TypeName .
</pre>
<p>
As with all method sets, in an interface type, each method must have a
<a href="#Uniqueness_of_identifiers">unique</a>
non-<a href="#Blank_identifier">blank</a> name.
</p>
<pre>
// A simple File interface
interface {
Read(b Buffer) bool
Write(b Buffer) bool
Close()
}
</pre>
<p>
More than one type may implement an interface.
For instance, if two types <code>S1</code> and <code>S2</code>
have the method set
</p>
<pre>
func (p T) Read(b Buffer) bool { return … }
func (p T) Write(b Buffer) bool { return … }
func (p T) Close() { … }
</pre>
<p>
(where <code>T</code> stands for either <code>S1</code> or <code>S2</code>)
then the <code>File</code> interface is implemented by both <code>S1</code> and
<code>S2</code>, regardless of what other methods
<code>S1</code> and <code>S2</code> may have or share.
</p>
<p>
A type implements any interface comprising any subset of its methods
and may therefore implement several distinct interfaces. For
instance, all types implement the <i>empty interface</i>:
</p>
<pre>
interface{}
</pre>
<p>
Similarly, consider this interface specification,
which appears within a <a href="#Type_declarations">type declaration</a>
to define an interface called <code>Locker</code>:
</p>
<pre>
type Locker interface {
Lock()
Unlock()
}
</pre>
<p>
If <code>S1</code> and <code>S2</code> also implement
</p>
<pre>
func (p T) Lock() { … }
func (p T) Unlock() { … }
</pre>
<p>
they implement the <code>Locker</code> interface as well
as the <code>File</code> interface.
</p>
<p>
An interface <code>T</code> may use a (possibly qualified) interface type
name <code>E</code> in place of a method specification. This is called
<i>embedding</i> interface <code>E</code> in <code>T</code>; it adds
all (exported and non-exported) methods of <code>E</code> to the interface
<code>T</code>.
</p>
<pre>
type ReadWriter interface {
Read(b Buffer) bool
Write(b Buffer) bool
}
type File interface {
ReadWriter // same as adding the methods of ReadWriter
Locker // same as adding the methods of Locker
Close()
}
type LockedFile interface {
Locker
File // illegal: Lock, Unlock not unique
Lock() // illegal: Lock not unique
}
</pre>
<p>
An interface type <code>T</code> may not embed itself
or any interface type that embeds <code>T</code>, recursively.
</p>
<pre>
// illegal: Bad cannot embed itself
type Bad interface {
Bad
}
// illegal: Bad1 cannot embed itself using Bad2
type Bad1 interface {
Bad2
}
type Bad2 interface {
Bad1
}
</pre>
<h3 id="Map_types">Map types</h3>
<p>
A map is an unordered group of elements of one type, called the
element type, indexed by a set of unique <i>keys</i> of another type,
called the key type.
The value of an uninitialized map is <code>nil</code>.
</p>
<pre class="ebnf">
MapType = "map" "[" KeyType "]" ElementType .
KeyType = Type .
</pre>
<p>
The <a href="#Comparison_operators">comparison operators</a>
<code>==</code> and <code>!=</code> must be fully defined
for operands of the key type; thus the key type must not be a function, map, or
slice.
If the key type is an interface type, these
comparison operators must be defined for the dynamic key values;
failure will cause a <a href="#Run_time_panics">run-time panic</a>.
</p>
<pre>
map[string]int
map[*T]struct{ x, y float64 }
map[string]interface{}
</pre>
<p>
The number of map elements is called its length.
For a map <code>m</code>, it can be discovered using the
built-in function <a href="#Length_and_capacity"><code>len</code></a>
and may change during execution. Elements may be added during execution
using <a href="#Assignments">assignments</a> and retrieved with
<a href="#Index_expressions">index expressions</a>; they may be removed with the
<a href="#Deletion_of_map_elements"><code>delete</code></a> built-in function.
</p>
<p>
A new, empty map value is made using the built-in
function <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
which takes the map type and an optional capacity hint as arguments:
</p>
<pre>
make(map[string]int)
make(map[string]int, 100)
</pre>
<p>
The initial capacity does not bound its size:
maps grow to accommodate the number of items
stored in them, with the exception of <code>nil</code> maps.
A <code>nil</code> map is equivalent to an empty map except that no elements
may be added.
<h3 id="Channel_types">Channel types</h3>
<p>
A channel provides a mechanism for
<a href="#Go_statements">concurrently executing functions</a>
to communicate by
<a href="#Send_statements">sending</a> and
<a href="#Receive_operator">receiving</a>
values of a specified element type.
The value of an uninitialized channel is <code>nil</code>.
</p>
<pre class="ebnf">
ChannelType = ( "chan" | "chan" "<-" | "<-" "chan" ) ElementType .
</pre>
<p>
The optional <code><-</code> operator specifies the channel <i>direction</i>,
<i>send</i> or <i>receive</i>. If no direction is given, the channel is
<i>bidirectional</i>.
A channel may be constrained only to send or only to receive by
<a href="#Conversions">conversion</a> or <a href="#Assignments">assignment</a>.
</p>
<pre>
chan T // can be used to send and receive values of type T
chan<- float64 // can only be used to send float64s
<-chan int // can only be used to receive ints
</pre>
<p>
The <code><-</code> operator associates with the leftmost <code>chan</code>
possible:
</p>
<pre>
chan<- chan int // same as chan<- (chan int)
chan<- <-chan int // same as chan<- (<-chan int)
<-chan <-chan int // same as <-chan (<-chan int)
chan (<-chan int)
</pre>
<p>
A new, initialized channel
value can be made using the built-in function
<a href="#Making_slices_maps_and_channels"><code>make</code></a>,
which takes the channel type and an optional <i>capacity</i> as arguments:
</p>
<pre>
make(chan int, 100)
</pre>
<p>
The capacity, in number of elements, sets the size of the buffer in the channel.
If the capacity is zero or absent, the channel is unbuffered and communication
succeeds only when both a sender and receiver are ready. Otherwise, the channel
is buffered and communication succeeds without blocking if the buffer
is not full (sends) or not empty (receives).
A <code>nil</code> channel is never ready for communication.
</p>
<p>
A channel may be closed with the built-in function
<a href="#Close"><code>close</code></a>.
The multi-valued assignment form of the
<a href="#Receive_operator">receive operator</a>
reports whether a received value was sent before
the channel was closed.
</p>
<p>
A single channel may be used in
<a href="#Send_statements">send statements</a>,
<a href="#Receive_operator">receive operations</a>,
and calls to the built-in functions
<a href="#Length_and_capacity"><code>cap</code></a> and
<a href="#Length_and_capacity"><code>len</code></a>
by any number of goroutines without further synchronization.
Channels act as first-in-first-out queues.
For example, if one goroutine sends values on a channel
and a second goroutine receives them, the values are
received in the order sent.
</p>
<h2 id="Properties_of_types_and_values">Properties of types and values</h2>
<h3 id="Type_identity">Type identity</h3>
<p>
Two types are either <i>identical</i> or <i>different</i>.
</p>
<p>
Two <a href="#Types">named types</a> are identical if their type names originate in the same
<a href="#Type_declarations">TypeSpec</a>.
A named and an <a href="#Types">unnamed type</a> are always different. Two unnamed types are identical
if the corresponding type literals are identical, that is, if they have the same
literal structure and corresponding components have identical types. In detail:
</p>
<ul>
<li>Two array types are identical if they have identical element types and
the same array length.</li>
<li>Two slice types are identical if they have identical element types.</li>
<li>Two struct types are identical if they have the same sequence of fields,
and if corresponding fields have the same names, and identical types,
and identical tags.
Two anonymous fields are considered to have the same name. Lower-case field
names from different packages are always different.</li>
<li>Two pointer types are identical if they have identical base types.</li>
<li>Two function types are identical if they have the same number of parameters
and result values, corresponding parameter and result types are
identical, and either both functions are variadic or neither is.
Parameter and result names are not required to match.</li>
<li>Two interface types are identical if they have the same set of methods
with the same names and identical function types. Lower-case method names from
different packages are always different. The order of the methods is irrelevant.</li>
<li>Two map types are identical if they have identical key and value types.</li>
<li>Two channel types are identical if they have identical value types and
the same direction.</li>
</ul>
<p>
Given the declarations
</p>
<pre>
type (
T0 []string
T1 []string
T2 struct{ a, b int }
T3 struct{ a, c int }
T4 func(int, float64) *T0
T5 func(x int, y float64) *[]string
)
</pre>
<p>
these types are identical:
</p>
<pre>
T0 and T0
[]int and []int
struct{ a, b *T5 } and struct{ a, b *T5 }
func(x int, y float64) *[]string and func(int, float64) (result *[]string)
</pre>
<p>
<code>T0</code> and <code>T1</code> are different because they are named types
with distinct declarations; <code>func(int, float64) *T0</code> and
<code>func(x int, y float64) *[]string</code> are different because <code>T0</code>
is different from <code>[]string</code>.
</p>
<h3 id="Assignability">Assignability</h3>
<p>
A value <code>x</code> is <i>assignable</i> to a <a href="#Variables">variable</a> of type <code>T</code>
("<code>x</code> is assignable to <code>T</code>") in any of these cases:
</p>
<ul>
<li>
<code>x</code>'s type is identical to <code>T</code>.
</li>
<li>
<code>x</code>'s type <code>V</code> and <code>T</code> have identical
<a href="#Types">underlying types</a> and at least one of <code>V</code>
or <code>T</code> is not a <a href="#Types">named type</a>.
</li>
<li>
<code>T</code> is an interface type and
<code>x</code> <a href="#Interface_types">implements</a> <code>T</code>.
</li>
<li>
<code>x</code> is a bidirectional channel value, <code>T</code> is a channel type,
<code>x</code>'s type <code>V</code> and <code>T</code> have identical element types,
and at least one of <code>V</code> or <code>T</code> is not a named type.
</li>
<li>
<code>x</code> is the predeclared identifier <code>nil</code> and <code>T</code>
is a pointer, function, slice, map, channel, or interface type.
</li>
<li>
<code>x</code> is an untyped <a href="#Constants">constant</a> representable
by a value of type <code>T</code>.
</li>
</ul>
<h2 id="Blocks">Blocks</h2>
<p>
A <i>block</i> is a possibly empty sequence of declarations and statements
within matching brace brackets.
</p>
<pre class="ebnf">
Block = "{" StatementList "}" .
StatementList = { Statement ";" } .
</pre>
<p>
In addition to explicit blocks in the source code, there are implicit blocks:
</p>
<ol>
<li>The <i>universe block</i> encompasses all Go source text.</li>
<li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all
Go source text for that package.</li>
<li>Each file has a <i>file block</i> containing all Go source text
in that file.</li>
<li>Each <a href="#If_statements">"if"</a>,
<a href="#For_statements">"for"</a>, and
<a href="#Switch_statements">"switch"</a>
statement is considered to be in its own implicit block.</li>
<li>Each clause in a <a href="#Switch_statements">"switch"</a>
or <a href="#Select_statements">"select"</a> statement
acts as an implicit block.</li>
</ol>
<p>
Blocks nest and influence <a href="#Declarations_and_scope">scoping</a>.
</p>
<h2 id="Declarations_and_scope">Declarations and scope</h2>
<p>
A <i>declaration</i> binds a non-<a href="#Blank_identifier">blank</a> identifier to a
<a href="#Constant_declarations">constant</a>,
<a href="#Type_declarations">type</a>,
<a href="#Variable_declarations">variable</a>,
<a href="#Function_declarations">function</a>,
<a href="#Labeled_statements">label</a>, or
<a href="#Import_declarations">package</a>.
Every identifier in a program must be declared.
No identifier may be declared twice in the same block, and
no identifier may be declared in both the file and package block.
</p>
<p>
The <a href="#Blank_identifier">blank identifier</a> may be used like any other identifier
in a declaration, but it does not introduce a binding and thus is not declared.
In the package block, the identifier <code>init</code> may only be used for
<a href="#Package_initialization"><code>init</code> function</a> declarations,
and like the blank identifier it does not introduce a new binding.
</p>
<pre class="ebnf">
Declaration = ConstDecl | TypeDecl | VarDecl .
TopLevelDecl = Declaration | FunctionDecl | MethodDecl .
</pre>
<p>
The <i>scope</i> of a declared identifier is the extent of source text in which
the identifier denotes the specified constant, type, variable, function, label, or package.
</p>
<p>
Go is lexically scoped using <a href="#Blocks">blocks</a>:
</p>
<ol>
<li>The scope of a <a href="#Predeclared_identifiers">predeclared identifier</a> is the universe block.</li>
<li>The scope of an identifier denoting a constant, type, variable,
or function (but not method) declared at top level (outside any
function) is the package block.</li>
<li>The scope of the package name of an imported package is the file block
of the file containing the import declaration.</li>
<li>The scope of an identifier denoting a method receiver, function parameter,
or result variable is the function body.</li>
<li>The scope of a constant or variable identifier declared
inside a function begins at the end of the ConstSpec or VarSpec
(ShortVarDecl for short variable declarations)
and ends at the end of the innermost containing block.</li>
<li>The scope of a type identifier declared inside a function
begins at the identifier in the TypeSpec
and ends at the end of the innermost containing block.</li>
</ol>
<p>
An identifier declared in a block may be redeclared in an inner block.
While the identifier of the inner declaration is in scope, it denotes
the entity declared by the inner declaration.
</p>
<p>
The <a href="#Package_clause">package clause</a> is not a declaration; the package name
does not appear in any scope. Its purpose is to identify the files belonging
to the same <a href="#Packages">package</a> and to specify the default package name for import
declarations.
</p>
<h3 id="Label_scopes">Label scopes</h3>
<p>
Labels are declared by <a href="#Labeled_statements">labeled statements</a> and are
used in the <a href="#Break_statements">"break"</a>,
<a href="#Continue_statements">"continue"</a>, and
<a href="#Goto_statements">"goto"</a> statements.
It is illegal to define a label that is never used.
In contrast to other identifiers, labels are not block scoped and do
not conflict with identifiers that are not labels. The scope of a label
is the body of the function in which it is declared and excludes
the body of any nested function.
</p>
<h3 id="Blank_identifier">Blank identifier</h3>
<p>
The <i>blank identifier</i> is represented by the underscore character <code>_</code>.
It serves as an anonymous placeholder instead of a regular (non-blank)
identifier and has special meaning in <a href="#Declarations_and_scope">declarations</a>,
as an <a href="#Operands">operand</a>, and in <a href="#Assignments">assignments</a>.
</p>
<h3 id="Predeclared_identifiers">Predeclared identifiers</h3>
<p>
The following identifiers are implicitly declared in the
<a href="#Blocks">universe block</a>:
</p>
<pre class="grammar">
Types:
bool byte complex64 complex128 error float32 float64
int int8 int16 int32 int64 rune string
uint uint8 uint16 uint32 uint64 uintptr
Constants:
true false iota
Zero value:
nil
Functions:
append cap close complex copy delete imag len
make new panic print println real recover
</pre>
<h3 id="Exported_identifiers">Exported identifiers</h3>
<p>
An identifier may be <i>exported</i> to permit access to it from another package.
An identifier is exported if both:
</p>
<ol>
<li>the first character of the identifier's name is a Unicode upper case
letter (Unicode class "Lu"); and</li>
<li>the identifier is declared in the <a href="#Blocks">package block</a>
or it is a <a href="#Struct_types">field name</a> or
<a href="#MethodName">method name</a>.</li>
</ol>
<p>
All other identifiers are not exported.
</p>
<h3 id="Uniqueness_of_identifiers">Uniqueness of identifiers</h3>
<p>
Given a set of identifiers, an identifier is called <i>unique</i> if it is
<i>different</i> from every other in the set.
Two identifiers are different if they are spelled differently, or if they
appear in different <a href="#Packages">packages</a> and are not
<a href="#Exported_identifiers">exported</a>. Otherwise, they are the same.
</p>
<h3 id="Constant_declarations">Constant declarations</h3>
<p>
A constant declaration binds a list of identifiers (the names of
the constants) to the values of a list of <a href="#Constant_expressions">constant expressions</a>.
The number of identifiers must be equal
to the number of expressions, and the <i>n</i>th identifier on
the left is bound to the value of the <i>n</i>th expression on the
right.
</p>
<pre class="ebnf">
ConstDecl = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
ConstSpec = IdentifierList [ [ Type ] "=" ExpressionList ] .
IdentifierList = identifier { "," identifier } .
ExpressionList = Expression { "," Expression } .
</pre>
<p>
If the type is present, all constants take the type specified, and
the expressions must be <a href="#Assignability">assignable</a> to that type.
If the type is omitted, the constants take the
individual types of the corresponding expressions.
If the expression values are untyped <a href="#Constants">constants</a>,
the declared constants remain untyped and the constant identifiers
denote the constant values. For instance, if the expression is a
floating-point literal, the constant identifier denotes a floating-point
constant, even if the literal's fractional part is zero.
</p>
<pre>
const Pi float64 = 3.14159265358979323846
const zero = 0.0 // untyped floating-point constant
const (
size int64 = 1024
eof = -1 // untyped integer constant
)
const a, b, c = 3, 4, "foo" // a = 3, b = 4, c = "foo", untyped integer and string constants
const u, v float32 = 0, 3 // u = 0.0, v = 3.0
</pre>
<p>
Within a parenthesized <code>const</code> declaration list the
expression list may be omitted from any but the first declaration.
Such an empty list is equivalent to the textual substitution of the
first preceding non-empty expression list and its type if any.
Omitting the list of expressions is therefore equivalent to
repeating the previous list. The number of identifiers must be equal
to the number of expressions in the previous list.
Together with the <a href="#Iota"><code>iota</code> constant generator</a>
this mechanism permits light-weight declaration of sequential values:
</p>
<pre>
const (
Sunday = iota
Monday
Tuesday
Wednesday
Thursday
Friday
Partyday
numberOfDays // this constant is not exported
)
</pre>
<h3 id="Iota">Iota</h3>
<p>
Within a <a href="#Constant_declarations">constant declaration</a>, the predeclared identifier
<code>iota</code> represents successive untyped integer <a href="#Constants">
constants</a>. It is reset to 0 whenever the reserved word <code>const</code>
appears in the source and increments after each <a href="#ConstSpec">ConstSpec</a>.
It can be used to construct a set of related constants:
</p>
<pre>
const ( // iota is reset to 0
c0 = iota // c0 == 0
c1 = iota // c1 == 1
c2 = iota // c2 == 2
)
const (
a = 1 << iota // a == 1 (iota has been reset)
b = 1 << iota // b == 2
c = 1 << iota // c == 4
)
const (
u = iota * 42 // u == 0 (untyped integer constant)
v float64 = iota * 42 // v == 42.0 (float64 constant)
w = iota * 42 // w == 84 (untyped integer constant)
)
const x = iota // x == 0 (iota has been reset)
const y = iota // y == 0 (iota has been reset)
</pre>
<p>
Within an ExpressionList, the value of each <code>iota</code> is the same because
it is only incremented after each ConstSpec:
</p>
<pre>
const (
bit0, mask0 = 1 << iota, 1<<iota - 1 // bit0 == 1, mask0 == 0
bit1, mask1 // bit1 == 2, mask1 == 1
_, _ // skips iota == 2
bit3, mask3 // bit3 == 8, mask3 == 7
)
</pre>
<p>
This last example exploits the implicit repetition of the
last non-empty expression list.
</p>
<h3 id="Type_declarations">Type declarations</h3>
<p>
A type declaration binds an identifier, the <i>type name</i>, to a new type
that has the same <a href="#Types">underlying type</a> as an existing type,
and operations defined for the existing type are also defined for the new type.
The new type is <a href="#Type_identity">different</a> from the existing type.
</p>
<pre class="ebnf">
TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
TypeSpec = identifier Type .
</pre>
<pre>
type IntArray [16]int
type (
Point struct{ x, y float64 }
Polar Point
)
type TreeNode struct {
left, right *TreeNode
value *Comparable
}
type Block interface {
BlockSize() int
Encrypt(src, dst []byte)
Decrypt(src, dst []byte)
}
</pre>
<p>
The declared type does not inherit any <a href="#Method_declarations">methods</a>
bound to the existing type, but the <a href="#Method_sets">method set</a>
of an interface type or of elements of a composite type remains unchanged:
</p>
<pre>
// A Mutex is a data type with two methods, Lock and Unlock.
type Mutex struct { /* Mutex fields */ }
func (m *Mutex) Lock() { /* Lock implementation */ }
func (m *Mutex) Unlock() { /* Unlock implementation */ }
// NewMutex has the same composition as Mutex but its method set is empty.
type NewMutex Mutex
// The method set of the <a href="#Pointer_types">base type</a> of PtrMutex remains unchanged,
// but the method set of PtrMutex is empty.
type PtrMutex *Mutex
// The method set of *PrintableMutex contains the methods
// Lock and Unlock bound to its anonymous field Mutex.
type PrintableMutex struct {
Mutex
}
// MyBlock is an interface type that has the same method set as Block.
type MyBlock Block
</pre>
<p>
A type declaration may be used to define a different boolean, numeric, or string
type and attach methods to it:
</p>
<pre>
type TimeZone int
const (
EST TimeZone = -(5 + iota)
CST
MST
PST
)
func (tz TimeZone) String() string {
return fmt.Sprintf("GMT+%dh", tz)
}
</pre>
<h3 id="Variable_declarations">Variable declarations</h3>
<p>
A variable declaration creates one or more variables, binds corresponding
identifiers to them, and gives each a type and an initial value.
</p>
<pre class="ebnf">
VarDecl = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) .
VarSpec = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) .
</pre>
<pre>
var i int
var U, V, W float64
var k = 0
var x, y float32 = -1, -2
var (
i int
u, v, s = 2.0, 3.0, "bar"
)
var re, im = complexSqrt(-1)
var _, found = entries[name] // map lookup; only interested in "found"
</pre>
<p>
If a list of expressions is given, the variables are initialized
with the expressions following the rules for <a href="#Assignments">assignments</a>.
Otherwise, each variable is initialized to its <a href="#The_zero_value">zero value</a>.
</p>
<p>
If a type is present, each variable is given that type.
Otherwise, each variable is given the type of the corresponding
initialization value in the assignment.
If that value is an untyped constant, it is first
<a href="#Conversions">converted</a> to its <a href="#Constants">default type</a>;
if it is an untyped boolean value, it is first converted to type <code>bool</code>.
The predeclared value <code>nil</code> cannot be used to initialize a variable
with no explicit type.
</p>
<pre>
var d = math.Sin(0.5) // d is float64
var i = 42 // i is int
var t, ok = x.(T) // t is T, ok is bool
var n = nil // illegal
</pre>
<p>
Implementation restriction: A compiler may make it illegal to declare a variable
inside a <a href="#Function_declarations">function body</a> if the variable is
never used.
</p>
<h3 id="Short_variable_declarations">Short variable declarations</h3>
<p>
A <i>short variable declaration</i> uses the syntax:
</p>
<pre class="ebnf">
ShortVarDecl = IdentifierList ":=" ExpressionList .
</pre>
<p>
It is shorthand for a regular <a href="#Variable_declarations">variable declaration</a>
with initializer expressions but no types:
</p>
<pre class="grammar">
"var" IdentifierList = ExpressionList .
</pre>
<pre>
i, j := 0, 10
f := func() int { return 7 }
ch := make(chan int)
r, w := os.Pipe(fd) // os.Pipe() returns two values
_, y, _ := coord(p) // coord() returns three values; only interested in y coordinate
</pre>
<p>
Unlike regular variable declarations, a short variable declaration may redeclare variables provided they
were originally declared earlier in the same block with the same type, and at
least one of the non-<a href="#Blank_identifier">blank</a> variables is new. As a consequence, redeclaration
can only appear in a multi-variable short declaration.
Redeclaration does not introduce a new
variable; it just assigns a new value to the original.
</p>
<pre>
field1, offset := nextField(str, 0)
field2, offset := nextField(str, offset) // redeclares offset
a, a := 1, 2 // illegal: double declaration of a or no new variable if a was declared elsewhere
</pre>
<p>
Short variable declarations may appear only inside functions.
In some contexts such as the initializers for
<a href="#If_statements">"if"</a>,
<a href="#For_statements">"for"</a>, or
<a href="#Switch_statements">"switch"</a> statements,
they can be used to declare local temporary variables.
</p>
<h3 id="Function_declarations">Function declarations</h3>
<p>
A function declaration binds an identifier, the <i>function name</i>,
to a function.
</p>
<pre class="ebnf">
FunctionDecl = "func" FunctionName ( Function | Signature ) .
FunctionName = identifier .
Function = Signature FunctionBody .
FunctionBody = Block .
</pre>
<p>
If the function's <a href="#Function_types">signature</a> declares
result parameters, the function body's statement list must end in
a <a href="#Terminating_statements">terminating statement</a>.
</p>
<pre>
func findMarker(c <-chan int) int {
for i := range c {
if x := <-c; isMarker(x) {
return x
}
}
// invalid: missing return statement.
}
</pre>
<p>
A function declaration may omit the body. Such a declaration provides the
signature for a function implemented outside Go, such as an assembly routine.
</p>
<pre>
func min(x int, y int) int {
if x < y {
return x
}
return y
}
func flushICache(begin, end uintptr) // implemented externally
</pre>
<h3 id="Method_declarations">Method declarations</h3>
<p>
A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
A method declaration binds an identifier, the <i>method name</i>, to a method,
and associates the method with the receiver's <i>base type</i>.
</p>
<pre class="ebnf">
MethodDecl = "func" Receiver MethodName ( Function | Signature ) .
Receiver = Parameters .
</pre>
<p>
The receiver is specified via an extra parameter section preceeding the method
name. That parameter section must declare a single parameter, the receiver.
Its type must be of the form <code>T</code> or <code>*T</code> (possibly using
parentheses) where <code>T</code> is a type name. The type denoted by <code>T</code> is called
the receiver <i>base type</i>; it must not be a pointer or interface type and
it must be declared in the same package as the method.
The method is said to be <i>bound</i> to the base type and the method name
is visible only within selectors for that type.
</p>
<p>
A non-<a href="#Blank_identifier">blank</a> receiver identifier must be
<a href="#Uniqueness_of_identifiers">unique</a> in the method signature.
If the receiver's value is not referenced inside the body of the method,
its identifier may be omitted in the declaration. The same applies in
general to parameters of functions and methods.
</p>
<p>
For a base type, the non-blank names of methods bound to it must be unique.
If the base type is a <a href="#Struct_types">struct type</a>,
the non-blank method and field names must be distinct.
</p>
<p>
Given type <code>Point</code>, the declarations
</p>
<pre>
func (p *Point) Length() float64 {
return math.Sqrt(p.x * p.x + p.y * p.y)
}
func (p *Point) Scale(factor float64) {
p.x *= factor
p.y *= factor
}
</pre>
<p>
bind the methods <code>Length</code> and <code>Scale</code>,
with receiver type <code>*Point</code>,
to the base type <code>Point</code>.
</p>
<p>
The type of a method is the type of a function with the receiver as first
argument. For instance, the method <code>Scale</code> has type
</p>
<pre>
func(p *Point, factor float64)
</pre>
<p>
However, a function declared this way is not a method.
</p>
<h2 id="Expressions">Expressions</h2>
<p>
An expression specifies the computation of a value by applying
operators and functions to operands.
</p>
<h3 id="Operands">Operands</h3>
<p>
Operands denote the elementary values in an expression. An operand may be a
literal, a (possibly <a href="#Qualified_identifiers">qualified</a>)
non-<a href="#Blank_identifier">blank</a> identifier denoting a
<a href="#Constant_declarations">constant</a>,
<a href="#Variable_declarations">variable</a>, or
<a href="#Function_declarations">function</a>,
a <a href="#Method_expressions">method expression</a> yielding a function,
or a parenthesized expression.
</p>
<p>
The <a href="#Blank_identifier">blank identifier</a> may appear as an
operand only on the left-hand side of an <a href="#Assignments">assignment</a>.
</p>
<pre class="ebnf">
Operand = Literal | OperandName | MethodExpr | "(" Expression ")" .
Literal = BasicLit | CompositeLit | FunctionLit .
BasicLit = int_lit | float_lit | imaginary_lit | rune_lit | string_lit .
OperandName = identifier | QualifiedIdent.
</pre>
<h3 id="Qualified_identifiers">Qualified identifiers</h3>
<p>
A qualified identifier is an identifier qualified with a package name prefix.
Both the package name and the identifier must not be
<a href="#Blank_identifier">blank</a>.
</p>
<pre class="ebnf">
QualifiedIdent = PackageName "." identifier .
</pre>
<p>
A qualified identifier accesses an identifier in a different package, which
must be <a href="#Import_declarations">imported</a>.
The identifier must be <a href="#Exported_identifiers">exported</a> and
declared in the <a href="#Blocks">package block</a> of that package.
</p>
<pre>
math.Sin // denotes the Sin function in package math
</pre>
<h3 id="Composite_literals">Composite literals</h3>
<p>
Composite literals construct values for structs, arrays, slices, and maps
and create a new value each time they are evaluated.
They consist of the type of the value
followed by a brace-bound list of composite elements. An element may be
a single expression or a key-value pair.
</p>
<pre class="ebnf">
CompositeLit = LiteralType LiteralValue .
LiteralType = StructType | ArrayType | "[" "..." "]" ElementType |
SliceType | MapType | TypeName .
LiteralValue = "{" [ ElementList [ "," ] ] "}" .
ElementList = Element { "," Element } .
Element = [ Key ":" ] Value .
Key = FieldName | Expression | LiteralValue .
FieldName = identifier .
Value = Expression | LiteralValue .
</pre>
<p>
The LiteralType must be a struct, array, slice, or map type
(the grammar enforces this constraint except when the type is given
as a TypeName).
The types of the expressions must be <a href="#Assignability">assignable</a>
to the respective field, element, and key types of the LiteralType;
there is no additional conversion.
The key is interpreted as a field name for struct literals,
an index for array and slice literals, and a key for map literals.
For map literals, all elements must have a key. It is an error
to specify multiple elements with the same field name or
constant key value.
</p>
<p>
For struct literals the following rules apply:
</p>
<ul>
<li>A key must be a field name declared in the LiteralType.
</li>
<li>An element list that does not contain any keys must
list an element for each struct field in the
order in which the fields are declared.
</li>
<li>If any element has a key, every element must have a key.
</li>
<li>An element list that contains keys does not need to
have an element for each struct field. Omitted fields
get the zero value for that field.
</li>
<li>A literal may omit the element list; such a literal evaluates
to the zero value for its type.
</li>
<li>It is an error to specify an element for a non-exported
field of a struct belonging to a different package.
</li>
</ul>
<p>
Given the declarations
</p>
<pre>
type Point3D struct { x, y, z float64 }
type Line struct { p, q Point3D }
</pre>
<p>
one may write
</p>
<pre>
origin := Point3D{} // zero value for Point3D
line := Line{origin, Point3D{y: -4, z: 12.3}} // zero value for line.q.x
</pre>
<p>
For array and slice literals the following rules apply:
</p>
<ul>
<li>Each element has an associated integer index marking
its position in the array.
</li>
<li>An element with a key uses the key as its index; the
key must be a constant integer expression.
</li>
<li>An element without a key uses the previous element's index plus one.
If the first element has no key, its index is zero.
</li>
</ul>
<p>
<a href="#Address_operators">Taking the address</a> of a composite literal
generates a pointer to a unique <a href="#Variables">variable</a> initialized
with the literal's value.
</p>
<pre>
var pointer *Point3D = &Point3D{y: 1000}
</pre>
<p>
The length of an array literal is the length specified in the LiteralType.
If fewer elements than the length are provided in the literal, the missing
elements are set to the zero value for the array element type.
It is an error to provide elements with index values outside the index range
of the array. The notation <code>...</code> specifies an array length equal
to the maximum element index plus one.
</p>
<pre>
buffer := [10]string{} // len(buffer) == 10
intSet := [6]int{1, 2, 3, 5} // len(intSet) == 6
days := [...]string{"Sat", "Sun"} // len(days) == 2
</pre>
<p>
A slice literal describes the entire underlying array literal.
Thus, the length and capacity of a slice literal are the maximum
element index plus one. A slice literal has the form
</p>
<pre>
[]T{x1, x2, … xn}
</pre>
<p>
and is shorthand for a slice operation applied to an array:
</p>
<pre>
tmp := [n]T{x1, x2, … xn}
tmp[0 : n]
</pre>
<p>
Within a composite literal of array, slice, or map type <code>T</code>,
elements or map keys that are themselves composite literals may elide the respective
literal type if it is identical to the element or key type of <code>T</code>.
Similarly, elements or keys that are addresses of composite literals may elide
the <code>&T</code> when the element or key type is <code>*T</code>.
</p>
<pre>
[...]Point{{1.5, -3.5}, {0, 0}} // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
[][]int{{1, 2, 3}, {4, 5}} // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
[][]Point{{{0, 1}, {1, 2}}} // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
map[string]Point{"orig": {0, 0}} // same as map[string]Point{"orig": Point{0, 0}}
[...]*Point{{1.5, -3.5}, {0, 0}} // same as [...]*Point{&Point{1.5, -3.5}, &Point{0, 0}}
map[Point]string{{0, 0}: "orig"} // same as map[Point]string{Point{0, 0}: "orig"}
</pre>
<p>
A parsing ambiguity arises when a composite literal using the
TypeName form of the LiteralType appears as an operand between the
<a href="#Keywords">keyword</a> and the opening brace of the block
of an "if", "for", or "switch" statement, and the composite literal
is not enclosed in parentheses, square brackets, or curly braces.
In this rare case, the opening brace of the literal is erroneously parsed
as the one introducing the block of statements. To resolve the ambiguity,
the composite literal must appear within parentheses.
</p>
<pre>
if x == (T{a,b,c}[i]) { … }
if (x == T{a,b,c}[i]) { … }
</pre>
<p>
Examples of valid array, slice, and map literals:
</p>
<pre>
// list of prime numbers
primes := []int{2, 3, 5, 7, 9, 2147483647}
// vowels[ch] is true if ch is a vowel
vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}
// the array [10]float32{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1}
filter := [10]float32{-1, 4: -0.1, -0.1, 9: -1}
// frequencies in Hz for equal-tempered scale (A4 = 440Hz)
noteFrequency := map[string]float32{
"C0": 16.35, "D0": 18.35, "E0": 20.60, "F0": 21.83,
"G0": 24.50, "A0": 27.50, "B0": 30.87,
}
</pre>
<h3 id="Function_literals">Function literals</h3>
<p>
A function literal represents an anonymous <a href="#Function_declarations">function</a>.
</p>
<pre class="ebnf">
FunctionLit = "func" Function .
</pre>
<pre>
func(a, b int, z float64) bool { return a*b < int(z) }
</pre>
<p>
A function literal can be assigned to a variable or invoked directly.
</p>
<pre>
f := func(x, y int) int { return x + y }
func(ch chan int) { ch <- ACK }(replyChan)
</pre>
<p>
Function literals are <i>closures</i>: they may refer to variables
defined in a surrounding function. Those variables are then shared between
the surrounding function and the function literal, and they survive as long
as they are accessible.
</p>
<h3 id="Primary_expressions">Primary expressions</h3>
<p>
Primary expressions are the operands for unary and binary expressions.
</p>
<pre class="ebnf">
PrimaryExpr =
Operand |
Conversion |
PrimaryExpr Selector |
PrimaryExpr Index |
PrimaryExpr Slice |
PrimaryExpr TypeAssertion |
PrimaryExpr Arguments .
Selector = "." identifier .
Index = "[" Expression "]" .
Slice = "[" ( [ Expression ] ":" [ Expression ] ) |
( [ Expression ] ":" Expression ":" Expression )
"]" .
TypeAssertion = "." "(" Type ")" .
Arguments = "(" [ ( ExpressionList | Type [ "," ExpressionList ] ) [ "..." ] [ "," ] ] ")" .
</pre>
<pre>
x
2
(s + ".txt")
f(3.1415, true)
Point{1, 2}
m["foo"]
s[i : j + 1]
obj.color
f.p[i].x()
</pre>
<h3 id="Selectors">Selectors</h3>
<p>
For a <a href="#Primary_expressions">primary expression</a> <code>x</code>
that is not a <a href="#Package_clause">package name</a>, the
<i>selector expression</i>
</p>
<pre>
x.f
</pre>
<p>
denotes the field or method <code>f</code> of the value <code>x</code>
(or sometimes <code>*x</code>; see below).
The identifier <code>f</code> is called the (field or method) <i>selector</i>;
it must not be the <a href="#Blank_identifier">blank identifier</a>.
The type of the selector expression is the type of <code>f</code>.
If <code>x</code> is a package name, see the section on
<a href="#Qualified_identifiers">qualified identifiers</a>.
</p>
<p>
A selector <code>f</code> may denote a field or method <code>f</code> of
a type <code>T</code>, or it may refer
to a field or method <code>f</code> of a nested
<a href="#Struct_types">anonymous field</a> of <code>T</code>.
The number of anonymous fields traversed
to reach <code>f</code> is called its <i>depth</i> in <code>T</code>.
The depth of a field or method <code>f</code>
declared in <code>T</code> is zero.
The depth of a field or method <code>f</code> declared in
an anonymous field <code>A</code> in <code>T</code> is the
depth of <code>f</code> in <code>A</code> plus one.
</p>
<p>
The following rules apply to selectors:
</p>
<ol>
<li>
For a value <code>x</code> of type <code>T</code> or <code>*T</code>
where <code>T</code> is not a pointer or interface type,
<code>x.f</code> denotes the field or method at the shallowest depth
in <code>T</code> where there
is such an <code>f</code>.
If there is not exactly <a href="#Uniqueness_of_identifiers">one <code>f</code></a>
with shallowest depth, the selector expression is illegal.
</li>
<li>
For a value <code>x</code> of type <code>I</code> where <code>I</code>
is an interface type, <code>x.f</code> denotes the actual method with name
<code>f</code> of the dynamic value of <code>x</code>.
If there is no method with name <code>f</code> in the
<a href="#Method_sets">method set</a> of <code>I</code>, the selector
expression is illegal.
</li>
<li>
As an exception, if the type of <code>x</code> is a named pointer type
and <code>(*x).f</code> is a valid selector expression denoting a field
(but not a method), <code>x.f</code> is shorthand for <code>(*x).f</code>.
</li>
<li>
In all other cases, <code>x.f</code> is illegal.
</li>
<li>
If <code>x</code> is of pointer type and has the value
<code>nil</code> and <code>x.f</code> denotes a struct field,
assigning to or evaluating <code>x.f</code>
causes a <a href="#Run_time_panics">run-time panic</a>.
</li>
<li>
If <code>x</code> is of interface type and has the value
<code>nil</code>, <a href="#Calls">calling</a> or
<a href="#Method_values">evaluating</a> the method <code>x.f</code>
causes a <a href="#Run_time_panics">run-time panic</a>.
</li>
</ol>
<p>
For example, given the declarations:
</p>
<pre>
type T0 struct {
x int
}
func (*T0) M0()
type T1 struct {
y int
}
func (T1) M1()
type T2 struct {
z int
T1
*T0
}
func (*T2) M2()
type Q *T2
var t T2 // with t.T0 != nil
var p *T2 // with p != nil and (*p).T0 != nil
var q Q = p
</pre>
<p>
one may write:
</p>
<pre>
t.z // t.z
t.y // t.T1.y
t.x // (*t.T0).x
p.z // (*p).z
p.y // (*p).T1.y
p.x // (*(*p).T0).x
q.x // (*(*q).T0).x (*q).x is a valid field selector
p.M2() // p.M2() M2 expects *T2 receiver
p.M1() // ((*p).T1).M1() M1 expects T1 receiver
p.M0() // ((&(*p).T0)).M0() M0 expects *T0 receiver, see section on Calls
</pre>
<p>
but the following is invalid:
</p>
<pre>
q.M0() // (*q).M0 is valid but not a field selector
</pre>
<h3 id="Method_expressions">Method expressions</h3>
<p>
If <code>M</code> is in the <a href="#Method_sets">method set</a> of type <code>T</code>,
<code>T.M</code> is a function that is callable as a regular function
with the same arguments as <code>M</code> prefixed by an additional
argument that is the receiver of the method.
</p>
<pre class="ebnf">
MethodExpr = ReceiverType "." MethodName .
ReceiverType = TypeName | "(" "*" TypeName ")" | "(" ReceiverType ")" .
</pre>
<p>
Consider a struct type <code>T</code> with two methods,
<code>Mv</code>, whose receiver is of type <code>T</code>, and
<code>Mp</code>, whose receiver is of type <code>*T</code>.
</p>
<pre>
type T struct {
a int
}
func (tv T) Mv(a int) int { return 0 } // value receiver
func (tp *T) Mp(f float32) float32 { return 1 } // pointer receiver
var t T
</pre>
<p>
The expression
</p>
<pre>
T.Mv
</pre>
<p>
yields a function equivalent to <code>Mv</code> but
with an explicit receiver as its first argument; it has signature
</p>
<pre>
func(tv T, a int) int
</pre>
<p>
That function may be called normally with an explicit receiver, so
these five invocations are equivalent:
</p>
<pre>
t.Mv(7)
T.Mv(t, 7)
(T).Mv(t, 7)
f1 := T.Mv; f1(t, 7)
f2 := (T).Mv; f2(t, 7)
</pre>
<p>
Similarly, the expression
</p>
<pre>
(*T).Mp
</pre>
<p>
yields a function value representing <code>Mp</code> with signature
</p>
<pre>
func(tp *T, f float32) float32
</pre>
<p>
For a method with a value receiver, one can derive a function
with an explicit pointer receiver, so
</p>
<pre>
(*T).Mv
</pre>
<p>
yields a function value representing <code>Mv</code> with signature
</p>
<pre>
func(tv *T, a int) int
</pre>
<p>
Such a function indirects through the receiver to create a value
to pass as the receiver to the underlying method;
the method does not overwrite the value whose address is passed in
the function call.
</p>
<p>
The final case, a value-receiver function for a pointer-receiver method,
is illegal because pointer-receiver methods are not in the method set
of the value type.
</p>
<p>
Function values derived from methods are called with function call syntax;
the receiver is provided as the first argument to the call.
That is, given <code>f := T.Mv</code>, <code>f</code> is invoked
as <code>f(t, 7)</code> not <code>t.f(7)</code>.
To construct a function that binds the receiver, use a
<a href="#Function_literals">function literal</a> or
<a href="#Method_values">method value</a>.
</p>
<p>
It is legal to derive a function value from a method of an interface type.
The resulting function takes an explicit receiver of that interface type.
</p>
<h3 id="Method_values">Method values</h3>
<p>
If the expression <code>x</code> has static type <code>T</code> and
<code>M</code> is in the <a href="#Method_sets">method set</a> of type <code>T</code>,
<code>x.M</code> is called a <i>method value</i>.
The method value <code>x.M</code> is a function value that is callable
with the same arguments as a method call of <code>x.M</code>.
The expression <code>x</code> is evaluated and saved during the evaluation of the
method value; the saved copy is then used as the receiver in any calls,
which may be executed later.
</p>
<p>
The type <code>T</code> may be an interface or non-interface type.
</p>
<p>
As in the discussion of <a href="#Method_expressions">method expressions</a> above,
consider a struct type <code>T</code> with two methods,
<code>Mv</code>, whose receiver is of type <code>T</code>, and
<code>Mp</code>, whose receiver is of type <code>*T</code>.
</p>
<pre>
type T struct {
a int
}
func (tv T) Mv(a int) int { return 0 } // value receiver
func (tp *T) Mp(f float32) float32 { return 1 } // pointer receiver
var t T
var pt *T
func makeT() T
</pre>
<p>
The expression
</p>
<pre>
t.Mv
</pre>
<p>
yields a function value of type
</p>
<pre>
func(int) int
</pre>
<p>
These two invocations are equivalent:
</p>
<pre>
t.Mv(7)
f := t.Mv; f(7)
</pre>
<p>
Similarly, the expression
</p>
<pre>
pt.Mp
</pre>
<p>
yields a function value of type
</p>
<pre>
func(float32) float32
</pre>
<p>
As with <a href="#Selectors">selectors</a>, a reference to a non-interface method with a value receiver
using a pointer will automatically dereference that pointer: <code>pt.Mv</code> is equivalent to <code>(*pt).Mv</code>.
</p>
<p>
As with <a href="#Calls">method calls</a>, a reference to a non-interface method with a pointer receiver
using an addressable value will automatically take the address of that value: <code>t.Mp</code> is equivalent to <code>(&t).Mp</code>.
</p>
<pre>
f := t.Mv; f(7) // like t.Mv(7)
f := pt.Mp; f(7) // like pt.Mp(7)
f := pt.Mv; f(7) // like (*pt).Mv(7)
f := t.Mp; f(7) // like (&t).Mp(7)
f := makeT().Mp // invalid: result of makeT() is not addressable
</pre>
<p>
Although the examples above use non-interface types, it is also legal to create a method value
from a value of interface type.
</p>
<pre>
var i interface { M(int) } = myVal
f := i.M; f(7) // like i.M(7)
</pre>
<h3 id="Index_expressions">Index expressions</h3>
<p>
A primary expression of the form
</p>
<pre>
a[x]
</pre>
<p>
denotes the element of the array, pointer to array, slice, string or map <code>a</code> indexed by <code>x</code>.
The value <code>x</code> is called the <i>index</i> or <i>map key</i>, respectively.
The following rules apply:
</p>
<p>
If <code>a</code> is not a map:
</p>
<ul>
<li>the index <code>x</code> must be of integer type or untyped;
it is <i>in range</i> if <code>0 <= x < len(a)</code>,
otherwise it is <i>out of range</i></li>
<li>a <a href="#Constants">constant</a> index must be non-negative
and representable by a value of type <code>int</code>
</ul>
<p>
For <code>a</code> of <a href="#Array_types">array type</a> <code>A</code>:
</p>
<ul>
<li>a <a href="#Constants">constant</a> index must be in range</li>
<li>if <code>x</code> is out of range at run time,
a <a href="#Run_time_panics">run-time panic</a> occurs</li>
<li><code>a[x]</code> is the array element at index <code>x</code> and the type of
<code>a[x]</code> is the element type of <code>A</code></li>
</ul>
<p>
For <code>a</code> of <a href="#Pointer_types">pointer</a> to array type:
</p>
<ul>
<li><code>a[x]</code> is shorthand for <code>(*a)[x]</code></li>
</ul>
<p>
For <code>a</code> of <a href="#Slice_types">slice type</a> <code>S</code>:
</p>
<ul>
<li>if <code>x</code> is out of range at run time,
a <a href="#Run_time_panics">run-time panic</a> occurs</li>
<li><code>a[x]</code> is the slice element at index <code>x</code> and the type of
<code>a[x]</code> is the element type of <code>S</code></li>
</ul>
<p>
For <code>a</code> of <a href="#String_types">string type</a>:
</p>
<ul>
<li>a <a href="#Constants">constant</a> index must be in range
if the string <code>a</code> is also constant</li>
<li>if <code>x</code> is out of range at run time,
a <a href="#Run_time_panics">run-time panic</a> occurs</li>
<li><code>a[x]</code> is the non-constant byte value at index <code>x</code> and the type of
<code>a[x]</code> is <code>byte</code></li>
<li><code>a[x]</code> may not be assigned to</li>
</ul>
<p>
For <code>a</code> of <a href="#Map_types">map type</a> <code>M</code>:
</p>
<ul>
<li><code>x</code>'s type must be
<a href="#Assignability">assignable</a>
to the key type of <code>M</code></li>
<li>if the map contains an entry with key <code>x</code>,
<code>a[x]</code> is the map value with key <code>x</code>
and the type of <code>a[x]</code> is the value type of <code>M</code></li>
<li>if the map is <code>nil</code> or does not contain such an entry,
<code>a[x]</code> is the <a href="#The_zero_value">zero value</a>
for the value type of <code>M</code></li>
</ul>
<p>
Otherwise <code>a[x]</code> is illegal.
</p>
<p>
An index expression on a map <code>a</code> of type <code>map[K]V</code>
used in an <a href="#Assignments">assignment</a> or initialization of the special form
</p>
<pre>
v, ok = a[x]
v, ok := a[x]
var v, ok = a[x]
</pre>
<p>
yields an additional untyped boolean value. The value of <code>ok</code> is
<code>true</code> if the key <code>x</code> is present in the map, and
<code>false</code> otherwise.
</p>
<p>
Assigning to an element of a <code>nil</code> map causes a
<a href="#Run_time_panics">run-time panic</a>.
</p>
<h3 id="Slice_expressions">Slice expressions</h3>
<p>
Slice expressions construct a substring or slice from a string, array, pointer
to array, or slice. There are two variants: a simple form that specifies a low
and high bound, and a full form that also specifies a bound on the capacity.
</p>
<h4>Simple slice expressions</h4>
<p>
For a string, array, pointer to array, or slice <code>a</code>, the primary expression
</p>
<pre>
a[low : high]
</pre>
<p>
constructs a substring or slice. The <i>indices</i> <code>low</code> and
<code>high</code> select which elements of operand <code>a</code> appear
in the result. The result has indices starting at 0 and length equal to
<code>high</code> - <code>low</code>.
After slicing the array <code>a</code>
</p>
<pre>
a := [5]int{1, 2, 3, 4, 5}
s := a[1:4]
</pre>
<p>
the slice <code>s</code> has type <code>[]int</code>, length 3, capacity 4, and elements
</p>
<pre>
s[0] == 2
s[1] == 3
s[2] == 4
</pre>
<p>
For convenience, any of the indices may be omitted. A missing <code>low</code>
index defaults to zero; a missing <code>high</code> index defaults to the length of the
sliced operand:
</p>
<pre>
a[2:] // same as a[2 : len(a)]
a[:3] // same as a[0 : 3]
a[:] // same as a[0 : len(a)]
</pre>
<p>
If <code>a</code> is a pointer to an array, <code>a[low : high]</code> is shorthand for
<code>(*a)[low : high]</code>.
</p>
<p>
For arrays or strings, the indices are <i>in range</i> if
<code>0</code> <= <code>low</code> <= <code>high</code> <= <code>len(a)</code>,
otherwise they are <i>out of range</i>.
For slices, the upper index bound is the slice capacity <code>cap(a)</code> rather than the length.
A <a href="#Constants">constant</a> index must be non-negative and representable by a value of type
<code>int</code>; for arrays or constant strings, constant indices must also be in range.
If both indices are constant, they must satisfy <code>low <= high</code>.
If the indices are out of range at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
</p>
<p>
Except for <a href="#Constants">untyped strings</a>, if the sliced operand is a string or slice,
the result of the slice operation is a non-constant value of the same type as the operand.
For untyped string operands the result is a non-constant value of type <code>string</code>.
If the sliced operand is an array, it must be <a href="#Address_operators">addressable</a>
and the result of the slice operation is a slice with the same element type as the array.
</p>
<p>
If the sliced operand of a valid slice expression is a <code>nil</code> slice, the result
is a <code>nil</code> slice. Otherwise, the result shares its underlying array with the
operand.
</p>
<h4>Full slice expressions</h4>
<p>
For an array, pointer to array, or slice <code>a</code> (but not a string), the primary expression
</p>
<pre>
a[low : high : max]
</pre>
<p>
constructs a slice of the same type, and with the same length and elements as the simple slice
expression <code>a[low : high]</code>. Additionally, it controls the resulting slice's capacity
by setting it to <code>max - low</code>. Only the first index may be omitted; it defaults to 0.
After slicing the array <code>a</code>
</p>
<pre>
a := [5]int{1, 2, 3, 4, 5}
t := a[1:3:5]
</pre>
<p>
the slice <code>t</code> has type <code>[]int</code>, length 2, capacity 4, and elements
</p>
<pre>
t[0] == 2
t[1] == 3
</pre>
<p>
As for simple slice expressions, if <code>a</code> is a pointer to an array,
<code>a[low : high : max]</code> is shorthand for <code>(*a)[low : high : max]</code>.
If the sliced operand is an array, it must be <a href="#Address_operators">addressable</a>.
</p>
<p>
The indices are <i>in range</i> if <code>0 <= low <= high <= max <= cap(a)</code>,
otherwise they are <i>out of range</i>.
A <a href="#Constants">constant</a> index must be non-negative and representable by a value of type
<code>int</code>; for arrays, constant indices must also be in range.
If multiple indices are constant, the constants that are present must be in range relative to each
other.
If the indices are out of range at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
</p>
<h3 id="Type_assertions">Type assertions</h3>
<p>
For an expression <code>x</code> of <a href="#Interface_types">interface type</a>
and a type <code>T</code>, the primary expression
</p>
<pre>
x.(T)
</pre>
<p>
asserts that <code>x</code> is not <code>nil</code>
and that the value stored in <code>x</code> is of type <code>T</code>.
The notation <code>x.(T)</code> is called a <i>type assertion</i>.
</p>
<p>
More precisely, if <code>T</code> is not an interface type, <code>x.(T)</code> asserts
that the dynamic type of <code>x</code> is <a href="#Type_identity">identical</a>
to the type <code>T</code>.
In this case, <code>T</code> must <a href="#Method_sets">implement</a> the (interface) type of <code>x</code>;
otherwise the type assertion is invalid since it is not possible for <code>x</code>
to store a value of type <code>T</code>.
If <code>T</code> is an interface type, <code>x.(T)</code> asserts that the dynamic type
of <code>x</code> implements the interface <code>T</code>.
</p>
<p>
If the type assertion holds, the value of the expression is the value
stored in <code>x</code> and its type is <code>T</code>. If the type assertion is false,
a <a href="#Run_time_panics">run-time panic</a> occurs.
In other words, even though the dynamic type of <code>x</code>
is known only at run time, the type of <code>x.(T)</code> is
known to be <code>T</code> in a correct program.
</p>
<pre>
var x interface{} = 7 // x has dynamic type int and value 7
i := x.(int) // i has type int and value 7
type I interface { m() }
var y I
s := y.(string) // illegal: string does not implement I (missing method m)
r := y.(io.Reader) // r has type io.Reader and y must implement both I and io.Reader
</pre>
<p>
A type assertion used in an <a href="#Assignments">assignment</a> or initialization of the special form
</p>
<pre>
v, ok = x.(T)
v, ok := x.(T)
var v, ok = x.(T)
</pre>
<p>
yields an additional untyped boolean value. The value of <code>ok</code> is <code>true</code>
if the assertion holds. Otherwise it is <code>false</code> and the value of <code>v</code> is
the <a href="#The_zero_value">zero value</a> for type <code>T</code>.
No run-time panic occurs in this case.
</p>
<h3 id="Calls">Calls</h3>
<p>
Given an expression <code>f</code> of function type
<code>F</code>,
</p>
<pre>
f(a1, a2, … an)
</pre>
<p>
calls <code>f</code> with arguments <code>a1, a2, … an</code>.
Except for one special case, arguments must be single-valued expressions
<a href="#Assignability">assignable</a> to the parameter types of
<code>F</code> and are evaluated before the function is called.
The type of the expression is the result type
of <code>F</code>.
A method invocation is similar but the method itself
is specified as a selector upon a value of the receiver type for
the method.
</p>
<pre>
math.Atan2(x, y) // function call
var pt *Point
pt.Scale(3.5) // method call with receiver pt
</pre>
<p>
In a function call, the function value and arguments are evaluated in
<a href="#Order_of_evaluation">the usual order</a>.
After they are evaluated, the parameters of the call are passed by value to the function
and the called function begins execution.
The return parameters of the function are passed by value
back to the calling function when the function returns.
</p>
<p>
Calling a <code>nil</code> function value
causes a <a href="#Run_time_panics">run-time panic</a>.
</p>
<p>
As a special case, if the return values of a function or method
<code>g</code> are equal in number and individually
assignable to the parameters of another function or method
<code>f</code>, then the call <code>f(g(<i>parameters_of_g</i>))</code>
will invoke <code>f</code> after binding the return values of
<code>g</code> to the parameters of <code>f</code> in order. The call
of <code>f</code> must contain no parameters other than the call of <code>g</code>,
and <code>g</code> must have at least one return value.
If <code>f</code> has a final <code>...</code> parameter, it is
assigned the return values of <code>g</code> that remain after
assignment of regular parameters.
</p>
<pre>
func Split(s string, pos int) (string, string) {
return s[0:pos], s[pos:]
}
func Join(s, t string) string {
return s + t
}
if Join(Split(value, len(value)/2)) != value {
log.Panic("test fails")
}
</pre>
<p>
A method call <code>x.m()</code> is valid if the <a href="#Method_sets">method set</a>
of (the type of) <code>x</code> contains <code>m</code> and the
argument list can be assigned to the parameter list of <code>m</code>.
If <code>x</code> is <a href="#Address_operators">addressable</a> and <code>&x</code>'s method
set contains <code>m</code>, <code>x.m()</code> is shorthand
for <code>(&x).m()</code>:
</p>
<pre>
var p Point
p.Scale(3.5)
</pre>
<p>
There is no distinct method type and there are no method literals.
</p>
<h3 id="Passing_arguments_to_..._parameters">Passing arguments to <code>...</code> parameters</h3>
<p>
If <code>f</code> is <a href="#Function_types">variadic</a> with a final
parameter <code>p</code> of type <code>...T</code>, then within <code>f</code>
the type of <code>p</code> is equivalent to type <code>[]T</code>.
If <code>f</code> is invoked with no actual arguments for <code>p</code>,
the value passed to <code>p</code> is <code>nil</code>.
Otherwise, the value passed is a new slice
of type <code>[]T</code> with a new underlying array whose successive elements
are the actual arguments, which all must be <a href="#Assignability">assignable</a>
to <code>T</code>. The length and capacity of the slice is therefore
the number of arguments bound to <code>p</code> and may differ for each
call site.
</p>
<p>
Given the function and calls
</p>
<pre>
func Greeting(prefix string, who ...string)
Greeting("nobody")
Greeting("hello:", "Joe", "Anna", "Eileen")
</pre>
<p>
within <code>Greeting</code>, <code>who</code> will have the value
<code>nil</code> in the first call, and
<code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
</p>
<p>
If the final argument is assignable to a slice type <code>[]T</code>, it may be
passed unchanged as the value for a <code>...T</code> parameter if the argument
is followed by <code>...</code>. In this case no new slice is created.
</p>
<p>
Given the slice <code>s</code> and call
</p>
<pre>
s := []string{"James", "Jasmine"}
Greeting("goodbye:", s...)
</pre>
<p>
within <code>Greeting</code>, <code>who</code> will have the same value as <code>s</code>
with the same underlying array.
</p>
<h3 id="Operators">Operators</h3>
<p>
Operators combine operands into expressions.
</p>
<pre class="ebnf">
Expression = UnaryExpr | Expression binary_op Expression .
UnaryExpr = PrimaryExpr | unary_op UnaryExpr .
binary_op = "||" | "&&" | rel_op | add_op | mul_op .
rel_op = "==" | "!=" | "<" | "<=" | ">" | ">=" .
add_op = "+" | "-" | "|" | "^" .
mul_op = "*" | "/" | "%" | "<<" | ">>" | "&" | "&^" .
unary_op = "+" | "-" | "!" | "^" | "*" | "&" | "<-" .
</pre>
<p>
Comparisons are discussed <a href="#Comparison_operators">elsewhere</a>.
For other binary operators, the operand types must be <a href="#Type_identity">identical</a>
unless the operation involves shifts or untyped <a href="#Constants">constants</a>.
For operations involving constants only, see the section on
<a href="#Constant_expressions">constant expressions</a>.
</p>
<p>
Except for shift operations, if one operand is an untyped <a href="#Constants">constant</a>
and the other operand is not, the constant is <a href="#Conversions">converted</a>
to the type of the other operand.
</p>
<p>
The right operand in a shift expression must have unsigned integer type
or be an untyped constant that can be converted to unsigned integer type.
If the left operand of a non-constant shift expression is an untyped constant,
the type of the constant is what it would be if the shift expression were
replaced by its left operand alone.
</p>
<pre>
var s uint = 33
var i = 1<<s // 1 has type int
var j int32 = 1<<s // 1 has type int32; j == 0
var k = uint64(1<<s) // 1 has type uint64; k == 1<<33
var m int = 1.0<<s // 1.0 has type int
var n = 1.0<<s != i // 1.0 has type int; n == false if ints are 32bits in size
var o = 1<<s == 2<<s // 1 and 2 have type int; o == true if ints are 32bits in size
var p = 1<<s == 1<<33 // illegal if ints are 32bits in size: 1 has type int, but 1<<33 overflows int
var u = 1.0<<s // illegal: 1.0 has type float64, cannot shift
var u1 = 1.0<<s != 0 // illegal: 1.0 has type float64, cannot shift
var u2 = 1<<s != 1.0 // illegal: 1 has type float64, cannot shift
var v float32 = 1<<s // illegal: 1 has type float32, cannot shift
var w int64 = 1.0<<33 // 1.0<<33 is a constant shift expression
</pre>
<h3 id="Operator_precedence">Operator precedence</h3>
<p>
Unary operators have the highest precedence.
As the <code>++</code> and <code>--</code> operators form
statements, not expressions, they fall
outside the operator hierarchy.
As a consequence, statement <code>*p++</code> is the same as <code>(*p)++</code>.
<p>
There are five precedence levels for binary operators.
Multiplication operators bind strongest, followed by addition
operators, comparison operators, <code>&&</code> (logical AND),
and finally <code>||</code> (logical OR):
</p>
<pre class="grammar">
Precedence Operator
5 * / % << >> & &^
4 + - | ^
3 == != < <= > >=
2 &&
1 ||
</pre>
<p>
Binary operators of the same precedence associate from left to right.
For instance, <code>x / y * z</code> is the same as <code>(x / y) * z</code>.
</p>
<pre>
+x
23 + 3*x[i]
x <= f()
^a >> b
f() || g()
x == y+1 && <-chanPtr > 0
</pre>
<h3 id="Arithmetic_operators">Arithmetic operators</h3>
<p>
Arithmetic operators apply to numeric values and yield a result of the same
type as the first operand. The four standard arithmetic operators (<code>+</code>,
<code>-</code>, <code>*</code>, <code>/</code>) apply to integer,
floating-point, and complex types; <code>+</code> also applies
to strings. All other arithmetic operators apply to integers only.
</p>
<pre class="grammar">
+ sum integers, floats, complex values, strings
- difference integers, floats, complex values
* product integers, floats, complex values
/ quotient integers, floats, complex values
% remainder integers
& bitwise AND integers
| bitwise OR integers
^ bitwise XOR integers
&^ bit clear (AND NOT) integers
<< left shift integer << unsigned integer
>> right shift integer >> unsigned integer
</pre>
<p>
Strings can be concatenated using the <code>+</code> operator
or the <code>+=</code> assignment operator:
</p>
<pre>
s := "hi" + string(c)
s += " and good bye"
</pre>
<p>
String addition creates a new string by concatenating the operands.
</p>
<p>
For two integer values <code>x</code> and <code>y</code>, the integer quotient
<code>q = x / y</code> and remainder <code>r = x % y</code> satisfy the following
relationships:
</p>
<pre>
x = q*y + r and |r| < |y|
</pre>
<p>
with <code>x / y</code> truncated towards zero
(<a href="http://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
</p>
<pre>
x y x / y x % y
5 3 1 2
-5 3 -1 -2
5 -3 -1 2
-5 -3 1 -2
</pre>
<p>
As an exception to this rule, if the dividend <code>x</code> is the most
negative value for the int type of <code>x</code>, the quotient
<code>q = x / -1</code> is equal to <code>x</code> (and <code>r = 0</code>).
</p>
<pre>
x, q
int8 -128
int16 -32768
int32 -2147483648
int64 -9223372036854775808
</pre>
<p>
If the divisor is a <a href="#Constants">constant</a>, it must not be zero.
If the divisor is zero at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
If the dividend is non-negative and the divisor is a constant power of 2,
the division may be replaced by a right shift, and computing the remainder may
be replaced by a bitwise AND operation:
</p>
<pre>
x x / 4 x % 4 x >> 2 x & 3
11 2 3 2 3
-11 -2 -3 -3 1
</pre>
<p>
The shift operators shift the left operand by the shift count specified by the
right operand. They implement arithmetic shifts if the left operand is a signed
integer and logical shifts if it is an unsigned integer.
There is no upper limit on the shift count. Shifts behave
as if the left operand is shifted <code>n</code> times by 1 for a shift
count of <code>n</code>.
As a result, <code>x << 1</code> is the same as <code>x*2</code>
and <code>x >> 1</code> is the same as
<code>x/2</code> but truncated towards negative infinity.
</p>
<p>
For integer operands, the unary operators
<code>+</code>, <code>-</code>, and <code>^</code> are defined as
follows:
</p>
<pre class="grammar">
+x is 0 + x
-x negation is 0 - x
^x bitwise complement is m ^ x with m = "all bits set to 1" for unsigned x
and m = -1 for signed x
</pre>
<p>
For floating-point and complex numbers,
<code>+x</code> is the same as <code>x</code>,
while <code>-x</code> is the negation of <code>x</code>.
The result of a floating-point or complex division by zero is not specified beyond the
IEEE-754 standard; whether a <a href="#Run_time_panics">run-time panic</a>
occurs is implementation-specific.
</p>
<h3 id="Integer_overflow">Integer overflow</h3>
<p>
For unsigned integer values, the operations <code>+</code>,
<code>-</code>, <code>*</code>, and <code><<</code> are
computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
the <a href="#Numeric_types">unsigned integer</a>'s type.
Loosely speaking, these unsigned integer operations
discard high bits upon overflow, and programs may rely on ``wrap around''.
</p>
<p>
For signed integers, the operations <code>+</code>,
<code>-</code>, <code>*</code>, and <code><<</code> may legally
overflow and the resulting value exists and is deterministically defined
by the signed integer representation, the operation, and its operands.
No exception is raised as a result of overflow. A
compiler may not optimize code under the assumption that overflow does
not occur. For instance, it may not assume that <code>x < x + 1</code> is always true.
</p>
<h3 id="Comparison_operators">Comparison operators</h3>
<p>
Comparison operators compare two operands and yield an untyped boolean value.
</p>
<pre class="grammar">
== equal
!= not equal
< less
<= less or equal
> greater
>= greater or equal
</pre>
<p>
In any comparison, the first operand
must be <a href="#Assignability">assignable</a>
to the type of the second operand, or vice versa.
</p>
<p>
The equality operators <code>==</code> and <code>!=</code> apply
to operands that are <i>comparable</i>.
The ordering operators <code><</code>, <code><=</code>, <code>></code>, and <code>>=</code>
apply to operands that are <i>ordered</i>.
These terms and the result of the comparisons are defined as follows:
</p>
<ul>
<li>
Boolean values are comparable.
Two boolean values are equal if they are either both
<code>true</code> or both <code>false</code>.
</li>
<li>
Integer values are comparable and ordered, in the usual way.
</li>
<li>
Floating point values are comparable and ordered,
as defined by the IEEE-754 standard.
</li>
<li>
Complex values are comparable.
Two complex values <code>u</code> and <code>v</code> are
equal if both <code>real(u) == real(v)</code> and
<code>imag(u) == imag(v)</code>.
</li>
<li>
String values are comparable and ordered, lexically byte-wise.
</li>
<li>
Pointer values are comparable.
Two pointer values are equal if they point to the same variable or if both have value <code>nil</code>.
Pointers to distinct <a href="#Size_and_alignment_guarantees">zero-size</a> variables may or may not be equal.
</li>
<li>
Channel values are comparable.
Two channel values are equal if they were created by the same call to
<a href="#Making_slices_maps_and_channels"><code>make</code></a>
or if both have value <code>nil</code>.
</li>
<li>
Interface values are comparable.
Two interface values are equal if they have <a href="#Type_identity">identical</a> dynamic types
and equal dynamic values or if both have value <code>nil</code>.
</li>
<li>
A value <code>x</code> of non-interface type <code>X</code> and
a value <code>t</code> of interface type <code>T</code> are comparable when values
of type <code>X</code> are comparable and
<code>X</code> implements <code>T</code>.
They are equal if <code>t</code>'s dynamic type is identical to <code>X</code>
and <code>t</code>'s dynamic value is equal to <code>x</code>.
</li>
<li>
Struct values are comparable if all their fields are comparable.
Two struct values are equal if their corresponding
non-<a href="#Blank_identifier">blank</a> fields are equal.
</li>
<li>
Array values are comparable if values of the array element type are comparable.
Two array values are equal if their corresponding elements are equal.
</li>
</ul>
<p>
A comparison of two interface values with identical dynamic types
causes a <a href="#Run_time_panics">run-time panic</a> if values
of that type are not comparable. This behavior applies not only to direct interface
value comparisons but also when comparing arrays of interface values
or structs with interface-valued fields.
</p>
<p>
Slice, map, and function values are not comparable.
However, as a special case, a slice, map, or function value may
be compared to the predeclared identifier <code>nil</code>.
Comparison of pointer, channel, and interface values to <code>nil</code>
is also allowed and follows from the general rules above.
</p>
<pre>
const c = 3 < 4 // c is the untyped bool constant true
type MyBool bool
var x, y int
var (
// The result of a comparison is an untyped bool.
// The usual assignment rules apply.
b3 = x == y // b3 has type bool
b4 bool = x == y // b4 has type bool
b5 MyBool = x == y // b5 has type MyBool
)
</pre>
<h3 id="Logical_operators">Logical operators</h3>
<p>
Logical operators apply to <a href="#Boolean_types">boolean</a> values
and yield a result of the same type as the operands.
The right operand is evaluated conditionally.
</p>
<pre class="grammar">
&& conditional AND p && q is "if p then q else false"
|| conditional OR p || q is "if p then true else q"
! NOT !p is "not p"
</pre>
<h3 id="Address_operators">Address operators</h3>
<p>
For an operand <code>x</code> of type <code>T</code>, the address operation
<code>&x</code> generates a pointer of type <code>*T</code> to <code>x</code>.
The operand must be <i>addressable</i>,
that is, either a variable, pointer indirection, or slice indexing
operation; or a field selector of an addressable struct operand;
or an array indexing operation of an addressable array.
As an exception to the addressability requirement, <code>x</code> may also be a
(possibly parenthesized)
<a href="#Composite_literals">composite literal</a>.
If the evaluation of <code>x</code> would cause a <a href="#Run_time_panics">run-time panic</a>,
then the evaluation of <code>&x</code> does too.
</p>
<p>
For an operand <code>x</code> of pointer type <code>*T</code>, the pointer
indirection <code>*x</code> denotes the <a href="#Variables">variable</a> of type <code>T</code> pointed
to by <code>x</code>.
If <code>x</code> is <code>nil</code>, an attempt to evaluate <code>*x</code>
will cause a <a href="#Run_time_panics">run-time panic</a>.
</p>
<pre>
&x
&a[f(2)]
&Point{2, 3}
*p
*pf(x)
var x *int = nil
*x // causes a run-time panic
&*x // causes a run-time panic
</pre>
<h3 id="Receive_operator">Receive operator</h3>
<p>
For an operand <code>ch</code> of <a href="#Channel_types">channel type</a>,
the value of the receive operation <code><-ch</code> is the value received
from the channel <code>ch</code>. The channel direction must permit receive operations,
and the type of the receive operation is the element type of the channel.
The expression blocks until a value is available.
Receiving from a <code>nil</code> channel blocks forever.
A receive operation on a <a href="#Close">closed</a> channel can always proceed
immediately, yielding the element type's <a href="#The_zero_value">zero value</a>
after any previously sent values have been received.
</p>
<pre>
v1 := <-ch
v2 = <-ch
f(<-ch)
<-strobe // wait until clock pulse and discard received value
</pre>
<p>
A receive expression used in an <a href="#Assignments">assignment</a> or initialization of the special form
</p>
<pre>
x, ok = <-ch
x, ok := <-ch
var x, ok = <-ch
</pre>
<p>
yields an additional untyped boolean result reporting whether the
communication succeeded. The value of <code>ok</code> is <code>true</code>
if the value received was delivered by a successful send operation to the
channel, or <code>false</code> if it is a zero value generated because the
channel is closed and empty.
</p>
<h3 id="Conversions">Conversions</h3>
<p>
Conversions are expressions of the form <code>T(x)</code>
where <code>T</code> is a type and <code>x</code> is an expression
that can be converted to type <code>T</code>.
</p>
<pre class="ebnf">
Conversion = Type "(" Expression [ "," ] ")" .
</pre>
<p>
If the type starts with the operator <code>*</code> or <code><-</code>,
or if the type starts with the keyword <code>func</code>
and has no result list, it must be parenthesized when
necessary to avoid ambiguity:
</p>
<pre>
*Point(p) // same as *(Point(p))
(*Point)(p) // p is converted to *Point
<-chan int(c) // same as <-(chan int(c))
(<-chan int)(c) // c is converted to <-chan int
func()(x) // function signature func() x
(func())(x) // x is converted to func()
(func() int)(x) // x is converted to func() int
func() int(x) // x is converted to func() int (unambiguous)
</pre>
<p>
A <a href="#Constants">constant</a> value <code>x</code> can be converted to
type <code>T</code> in any of these cases:
</p>
<ul>
<li>
<code>x</code> is representable by a value of type <code>T</code>.
</li>
<li>
<code>x</code> is a floating-point constant,
<code>T</code> is a floating-point type,
and <code>x</code> is representable by a value
of type <code>T</code> after rounding using
IEEE 754 round-to-even rules.
The constant <code>T(x)</code> is the rounded value.
</li>
<li>
<code>x</code> is an integer constant and <code>T</code> is a
<a href="#String_types">string type</a>.
The <a href="#Conversions_to_and_from_a_string_type">same rule</a>
as for non-constant <code>x</code> applies in this case.
</li>
</ul>
<p>
Converting a constant yields a typed constant as result.
</p>
<pre>
uint(iota) // iota value of type uint
float32(2.718281828) // 2.718281828 of type float32
complex128(1) // 1.0 + 0.0i of type complex128
float32(0.49999999) // 0.5 of type float32
string('x') // "x" of type string
string(0x266c) // "♬" of type string
MyString("foo" + "bar") // "foobar" of type MyString
string([]byte{'a'}) // not a constant: []byte{'a'} is not a constant
(*int)(nil) // not a constant: nil is not a constant, *int is not a boolean, numeric, or string type
int(1.2) // illegal: 1.2 cannot be represented as an int
string(65.0) // illegal: 65.0 is not an integer constant
</pre>
<p>
A non-constant value <code>x</code> can be converted to type <code>T</code>
in any of these cases:
</p>
<ul>
<li>
<code>x</code> is <a href="#Assignability">assignable</a>
to <code>T</code>.
</li>
<li>
<code>x</code>'s type and <code>T</code> have identical
<a href="#Types">underlying types</a>.
</li>
<li>
<code>x</code>'s type and <code>T</code> are unnamed pointer types
and their pointer base types have identical underlying types.
</li>
<li>
<code>x</code>'s type and <code>T</code> are both integer or floating
point types.
</li>
<li>
<code>x</code>'s type and <code>T</code> are both complex types.
</li>
<li>
<code>x</code> is an integer or a slice of bytes or runes
and <code>T</code> is a string type.
</li>
<li>
<code>x</code> is a string and <code>T</code> is a slice of bytes or runes.
</li>
</ul>
<p>
Specific rules apply to (non-constant) conversions between numeric types or
to and from a string type.
These conversions may change the representation of <code>x</code>
and incur a run-time cost.
All other conversions only change the type but not the representation
of <code>x</code>.
</p>
<p>
There is no linguistic mechanism to convert between pointers and integers.
The package <a href="#Package_unsafe"><code>unsafe</code></a>
implements this functionality under
restricted circumstances.
</p>
<h4>Conversions between numeric types</h4>
<p>
For the conversion of non-constant numeric values, the following rules apply:
</p>
<ol>
<li>
When converting between integer types, if the value is a signed integer, it is
sign extended to implicit infinite precision; otherwise it is zero extended.
It is then truncated to fit in the result type's size.
For example, if <code>v := uint16(0x10F0)</code>, then <code>uint32(int8(v)) == 0xFFFFFFF0</code>.
The conversion always yields a valid value; there is no indication of overflow.
</li>
<li>
When converting a floating-point number to an integer, the fraction is discarded
(truncation towards zero).
</li>
<li>
When converting an integer or floating-point number to a floating-point type,
or a complex number to another complex type, the result value is rounded
to the precision specified by the destination type.
For instance, the value of a variable <code>x</code> of type <code>float32</code>
may be stored using additional precision beyond that of an IEEE-754 32-bit number,
but float32(x) represents the result of rounding <code>x</code>'s value to
32-bit precision. Similarly, <code>x + 0.1</code> may use more than 32 bits
of precision, but <code>float32(x + 0.1)</code> does not.
</li>
</ol>
<p>
In all non-constant conversions involving floating-point or complex values,
if the result type cannot represent the value the conversion
succeeds but the result value is implementation-dependent.
</p>
<h4 id="Conversions_to_and_from_a_string_type">Conversions to and from a string type</h4>
<ol>
<li>
Converting a signed or unsigned integer value to a string type yields a
string containing the UTF-8 representation of the integer. Values outside
the range of valid Unicode code points are converted to <code>"\uFFFD"</code>.
<pre>
string('a') // "a"
string(-1) // "\ufffd" == "\xef\xbf\xbd"
string(0xf8) // "\u00f8" == "ø" == "\xc3\xb8"
type MyString string
MyString(0x65e5) // "\u65e5" == "日" == "\xe6\x97\xa5"
</pre>
</li>
<li>
Converting a slice of bytes to a string type yields
a string whose successive bytes are the elements of the slice.
<pre>
string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}) // "hellø"
string([]byte{}) // ""
string([]byte(nil)) // ""
type MyBytes []byte
string(MyBytes{'h', 'e', 'l', 'l', '\xc3', '\xb8'}) // "hellø"
</pre>
</li>
<li>
Converting a slice of runes to a string type yields
a string that is the concatenation of the individual rune values
converted to strings.
<pre>
string([]rune{0x767d, 0x9d6c, 0x7fd4}) // "\u767d\u9d6c\u7fd4" == "白鵬翔"
string([]rune{}) // ""
string([]rune(nil)) // ""
type MyRunes []rune
string(MyRunes{0x767d, 0x9d6c, 0x7fd4}) // "\u767d\u9d6c\u7fd4" == "白鵬翔"
</pre>
</li>
<li>
Converting a value of a string type to a slice of bytes type
yields a slice whose successive elements are the bytes of the string.
<pre>
[]byte("hellø") // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
[]byte("") // []byte{}
MyBytes("hellø") // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
</pre>
</li>
<li>
Converting a value of a string type to a slice of runes type
yields a slice containing the individual Unicode code points of the string.
<pre>
[]rune(MyString("白鵬翔")) // []rune{0x767d, 0x9d6c, 0x7fd4}
[]rune("") // []rune{}
MyRunes("白鵬翔") // []rune{0x767d, 0x9d6c, 0x7fd4}
</pre>
</li>
</ol>
<h3 id="Constant_expressions">Constant expressions</h3>
<p>
Constant expressions may contain only <a href="#Constants">constant</a>
operands and are evaluated at compile time.
</p>
<p>
Untyped boolean, numeric, and string constants may be used as operands
wherever it is legal to use an operand of boolean, numeric, or string type,
respectively.
Except for shift operations, if the operands of a binary operation are
different kinds of untyped constants, the operation and, for non-boolean operations, the result use
the kind that appears later in this list: integer, rune, floating-point, complex.
For example, an untyped integer constant divided by an
untyped complex constant yields an untyped complex constant.
</p>
<p>
A constant <a href="#Comparison_operators">comparison</a> always yields
an untyped boolean constant. If the left operand of a constant
<a href="#Operators">shift expression</a> is an untyped constant, the
result is an integer constant; otherwise it is a constant of the same
type as the left operand, which must be of
<a href="#Numeric_types">integer type</a>.
Applying all other operators to untyped constants results in an untyped
constant of the same kind (that is, a boolean, integer, floating-point,
complex, or string constant).
</p>
<pre>
const a = 2 + 3.0 // a == 5.0 (untyped floating-point constant)
const b = 15 / 4 // b == 3 (untyped integer constant)
const c = 15 / 4.0 // c == 3.75 (untyped floating-point constant)
const Θ float64 = 3/2 // Θ == 1.0 (type float64, 3/2 is integer division)
const Π float64 = 3/2. // Π == 1.5 (type float64, 3/2. is float division)
const d = 1 << 3.0 // d == 8 (untyped integer constant)
const e = 1.0 << 3 // e == 8 (untyped integer constant)
const f = int32(1) << 33 // illegal (constant 8589934592 overflows int32)
const g = float64(2) >> 1 // illegal (float64(2) is a typed floating-point constant)
const h = "foo" > "bar" // h == true (untyped boolean constant)
const j = true // j == true (untyped boolean constant)
const k = 'w' + 1 // k == 'x' (untyped rune constant)
const l = "hi" // l == "hi" (untyped string constant)
const m = string(k) // m == "x" (type string)
const Σ = 1 - 0.707i // (untyped complex constant)
const Δ = Σ + 2.0e-4 // (untyped complex constant)
const Φ = iota*1i - 1/1i // (untyped complex constant)
</pre>
<p>
Applying the built-in function <code>complex</code> to untyped
integer, rune, or floating-point constants yields
an untyped complex constant.
</p>
<pre>
const ic = complex(0, c) // ic == 3.75i (untyped complex constant)
const iΘ = complex(0, Θ) // iΘ == 1i (type complex128)
</pre>
<p>
Constant expressions are always evaluated exactly; intermediate values and the
constants themselves may require precision significantly larger than supported
by any predeclared type in the language. The following are legal declarations:
</p>
<pre>
const Huge = 1 << 100 // Huge == 1267650600228229401496703205376 (untyped integer constant)
const Four int8 = Huge >> 98 // Four == 4 (type int8)
</pre>
<p>
The divisor of a constant division or remainder operation must not be zero:
</p>
<pre>
3.14 / 0.0 // illegal: division by zero
</pre>
<p>
The values of <i>typed</i> constants must always be accurately representable as values
of the constant type. The following constant expressions are illegal:
</p>
<pre>
uint(-1) // -1 cannot be represented as a uint
int(3.14) // 3.14 cannot be represented as an int
int64(Huge) // 1267650600228229401496703205376 cannot be represented as an int64
Four * 300 // operand 300 cannot be represented as an int8 (type of Four)
Four * 100 // product 400 cannot be represented as an int8 (type of Four)
</pre>
<p>
The mask used by the unary bitwise complement operator <code>^</code> matches
the rule for non-constants: the mask is all 1s for unsigned constants
and -1 for signed and untyped constants.
</p>
<pre>
^1 // untyped integer constant, equal to -2
uint8(^1) // illegal: same as uint8(-2), -2 cannot be represented as a uint8
^uint8(1) // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
int8(^1) // same as int8(-2)
^int8(1) // same as -1 ^ int8(1) = -2
</pre>
<p>
Implementation restriction: A compiler may use rounding while
computing untyped floating-point or complex constant expressions; see
the implementation restriction in the section
on <a href="#Constants">constants</a>. This rounding may cause a
floating-point constant expression to be invalid in an integer
context, even if it would be integral when calculated using infinite
precision.
</p>
<h3 id="Order_of_evaluation">Order of evaluation</h3>
<p>
At package level, <a href="#Package_initialization">initialization dependencies</a>
determine the evaluation order of individual initialization expressions in
<a href="#Variable_declarations">variable declarations</a>.
Otherwise, when evaluating the <a href="#Operands">operands</a> of an
expression, assignment, or
<a href="#Return_statements">return statement</a>,
all function calls, method calls, and
communication operations are evaluated in lexical left-to-right
order.
</p>
<p>
For example, in the (function-local) assignment
</p>
<pre>
y[f()], ok = g(h(), i()+x[j()], <-c), k()
</pre>
<p>
the function calls and communication happen in the order
<code>f()</code>, <code>h()</code>, <code>i()</code>, <code>j()</code>,
<code><-c</code>, <code>g()</code>, and <code>k()</code>.
However, the order of those events compared to the evaluation
and indexing of <code>x</code> and the evaluation
of <code>y</code> is not specified.
</p>
<pre>
a := 1
f := func() int { a++; return a }
x := []int{a, f()} // x may be [1, 2] or [2, 2]: evaluation order between a and f() is not specified
m := map[int]int{a: 1, a: 2} // m may be {2: 1} or {2: 2}: evaluation order between the two map assignments is not specified
n := map[int]int{a: f()} // n may be {2: 3} or {3: 3}: evaluation order between the key and the value is not specified
</pre>
<p>
At package level, initialization dependencies override the left-to-right rule
for individual initialization expressions, but not for operands within each
expression:
</p>
<pre>
var a, b, c = f() + v(), g(), sqr(u()) + v()
func f() int { return c }
func g() int { return a }
func sqr(x int) int { return x*x }
// functions u and v are independent of all other variables and functions
</pre>
<p>
The function calls happen in the order
<code>u()</code>, <code>sqr()</code>, <code>v()</code>,
<code>f()</code>, <code>v()</code>, and <code>g()</code>.
</p>
<p>
Floating-point operations within a single expression are evaluated according to
the associativity of the operators. Explicit parentheses affect the evaluation
by overriding the default associativity.
In the expression <code>x + (y + z)</code> the addition <code>y + z</code>
is performed before adding <code>x</code>.
</p>
<h2 id="Statements">Statements</h2>
<p>
Statements control execution.
</p>
<pre class="ebnf">
Statement =
Declaration | LabeledStmt | SimpleStmt |
GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
DeferStmt .
SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
</pre>
<h3 id="Terminating_statements">Terminating statements</h3>
<p>
A terminating statement is one of the following:
</p>
<ol>
<li>
A <a href="#Return_statements">"return"</a> or
<a href="#Goto_statements">"goto"</a> statement.
<!-- ul below only for regular layout -->
<ul> </ul>
</li>
<li>
A call to the built-in function
<a href="#Handling_panics"><code>panic</code></a>.
<!-- ul below only for regular layout -->
<ul> </ul>
</li>
<li>
A <a href="#Blocks">block</a> in which the statement list ends in a terminating statement.
<!-- ul below only for regular layout -->
<ul> </ul>
</li>
<li>
An <a href="#If_statements">"if" statement</a> in which:
<ul>
<li>the "else" branch is present, and</li>
<li>both branches are terminating statements.</li>
</ul>
</li>
<li>
A <a href="#For_statements">"for" statement</a> in which:
<ul>
<li>there are no "break" statements referring to the "for" statement, and</li>
<li>the loop condition is absent.</li>
</ul>
</li>
<li>
A <a href="#Switch_statements">"switch" statement</a> in which:
<ul>
<li>there are no "break" statements referring to the "switch" statement,</li>
<li>there is a default case, and</li>
<li>the statement lists in each case, including the default, end in a terminating
statement, or a possibly labeled <a href="#Fallthrough_statements">"fallthrough"
statement</a>.</li>
</ul>
</li>
<li>
A <a href="#Select_statements">"select" statement</a> in which:
<ul>
<li>there are no "break" statements referring to the "select" statement, and</li>
<li>the statement lists in each case, including the default if present,
end in a terminating statement.</li>
</ul>
</li>
<li>
A <a href="#Labeled_statements">labeled statement</a> labeling
a terminating statement.
</li>
</ol>
<p>
All other statements are not terminating.
</p>
<p>
A <a href="#Blocks">statement list</a> ends in a terminating statement if the list
is not empty and its final statement is terminating.
</p>
<h3 id="Empty_statements">Empty statements</h3>
<p>
The empty statement does nothing.
</p>
<pre class="ebnf">
EmptyStmt = .
</pre>
<h3 id="Labeled_statements">Labeled statements</h3>
<p>
A labeled statement may be the target of a <code>goto</code>,
<code>break</code> or <code>continue</code> statement.
</p>
<pre class="ebnf">
LabeledStmt = Label ":" Statement .
Label = identifier .
</pre>
<pre>
Error: log.Panic("error encountered")
</pre>
<h3 id="Expression_statements">Expression statements</h3>
<p>
With the exception of specific built-in functions,
function and method <a href="#Calls">calls</a> and
<a href="#Receive_operator">receive operations</a>
can appear in statement context. Such statements may be parenthesized.
</p>
<pre class="ebnf">
ExpressionStmt = Expression .
</pre>
<p>
The following built-in functions are not permitted in statement context:
</p>
<pre>
append cap complex imag len make new real
unsafe.Alignof unsafe.Offsetof unsafe.Sizeof
</pre>
<pre>
h(x+y)
f.Close()
<-ch
(<-ch)
len("foo") // illegal if len is the built-in function
</pre>
<h3 id="Send_statements">Send statements</h3>
<p>
A send statement sends a value on a channel.
The channel expression must be of <a href="#Channel_types">channel type</a>,
the channel direction must permit send operations,
and the type of the value to be sent must be <a href="#Assignability">assignable</a>
to the channel's element type.
</p>
<pre class="ebnf">
SendStmt = Channel "<-" Expression .
Channel = Expression .
</pre>
<p>
Both the channel and the value expression are evaluated before communication
begins. Communication blocks until the send can proceed.
A send on an unbuffered channel can proceed if a receiver is ready.
A send on a buffered channel can proceed if there is room in the buffer.
A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
A send on a <code>nil</code> channel blocks forever.
</p>
<pre>
ch <- 3 // send value 3 to channel ch
</pre>
<h3 id="IncDec_statements">IncDec statements</h3>
<p>
The "++" and "--" statements increment or decrement their operands
by the untyped <a href="#Constants">constant</a> <code>1</code>.
As with an assignment, the operand must be <a href="#Address_operators">addressable</a>
or a map index expression.
</p>
<pre class="ebnf">
IncDecStmt = Expression ( "++" | "--" ) .
</pre>
<p>
The following <a href="#Assignments">assignment statements</a> are semantically
equivalent:
</p>
<pre class="grammar">
IncDec statement Assignment
x++ x += 1
x-- x -= 1
</pre>
<h3 id="Assignments">Assignments</h3>
<pre class="ebnf">
Assignment = ExpressionList assign_op ExpressionList .
assign_op = [ add_op | mul_op ] "=" .
</pre>
<p>
Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
a map index expression, or (for <code>=</code> assignments only) the
<a href="#Blank_identifier">blank identifier</a>.
Operands may be parenthesized.
</p>
<pre>
x = 1
*p = f()
a[i] = 23
(k) = <-ch // same as: k = <-ch
</pre>
<p>
An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code>
<code>y</code> where <i>op</i> is a binary arithmetic operation is equivalent
to <code>x</code> <code>=</code> <code>x</code> <i>op</i>
<code>(y)</code> but evaluates <code>x</code>
only once. The <i>op</i><code>=</code> construct is a single token.
In assignment operations, both the left- and right-hand expression lists
must contain exactly one single-valued expression, and the left-hand
expression must not be the blank identifier.
</p>
<pre>
a[i] <<= 2
i &^= 1<<n
</pre>
<p>
A tuple assignment assigns the individual elements of a multi-valued
operation to a list of variables. There are two forms. In the
first, the right hand operand is a single multi-valued expression
such as a function call, a <a href="#Channel_types">channel</a> or
<a href="#Map_types">map</a> operation, or a <a href="#Type_assertions">type assertion</a>.
The number of operands on the left
hand side must match the number of values. For instance, if
<code>f</code> is a function returning two values,
</p>
<pre>
x, y = f()
</pre>
<p>
assigns the first value to <code>x</code> and the second to <code>y</code>.
In the second form, the number of operands on the left must equal the number
of expressions on the right, each of which must be single-valued, and the
<i>n</i>th expression on the right is assigned to the <i>n</i>th
operand on the left:
</p>
<pre>
one, two, three = '一', '二', '三'
</pre>
<p>
The <a href="#Blank_identifier">blank identifier</a> provides a way to
ignore right-hand side values in an assignment:
</p>
<pre>
_ = x // evaluate x but ignore it
x, _ = f() // evaluate f() but ignore second result value
</pre>
<p>
The assignment proceeds in two phases.
First, the operands of <a href="#Index_expressions">index expressions</a>
and <a href="#Address_operators">pointer indirections</a>
(including implicit pointer indirections in <a href="#Selectors">selectors</a>)
on the left and the expressions on the right are all
<a href="#Order_of_evaluation">evaluated in the usual order</a>.
Second, the assignments are carried out in left-to-right order.
</p>
<pre>
a, b = b, a // exchange a and b
x := []int{1, 2, 3}
i := 0
i, x[i] = 1, 2 // set i = 1, x[0] = 2
i = 0
x[i], i = 2, 1 // set x[0] = 2, i = 1
x[0], x[0] = 1, 2 // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
x[1], x[3] = 4, 5 // set x[1] = 4, then panic setting x[3] = 5.
type Point struct { x, y int }
var p *Point
x[2], p.x = 6, 7 // set x[2] = 6, then panic setting p.x = 7
i = 2
x = []int{3, 5, 7}
for i, x[i] = range x { // set i, x[2] = 0, x[0]
break
}
// after this loop, i == 0 and x == []int{3, 5, 3}
</pre>
<p>
In assignments, each value must be <a href="#Assignability">assignable</a>
to the type of the operand to which it is assigned, with the following special cases:
</p>
<ol>
<li>
Any typed value may be assigned to the blank identifier.
</li>
<li>
If an untyped constant
is assigned to a variable of interface type or the blank identifier,
the constant is first <a href="#Conversions">converted</a> to its
<a href="#Constants">default type</a>.
</li>
<li>
If an untyped boolean value is assigned to a variable of interface type or
the blank identifier, it is first converted to type <code>bool</code>.
</li>
</ol>
<h3 id="If_statements">If statements</h3>
<p>
"If" statements specify the conditional execution of two branches
according to the value of a boolean expression. If the expression
evaluates to true, the "if" branch is executed, otherwise, if
present, the "else" branch is executed.
</p>
<pre class="ebnf">
IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .
</pre>
<pre>
if x > max {
x = max
}
</pre>
<p>
The expression may be preceded by a simple statement, which
executes before the expression is evaluated.
</p>
<pre>
if x := f(); x < y {
return x
} else if x > z {
return z
} else {
return y
}
</pre>
<h3 id="Switch_statements">Switch statements</h3>
<p>
"Switch" statements provide multi-way execution.
An expression or type specifier is compared to the "cases"
inside the "switch" to determine which branch
to execute.
</p>
<pre class="ebnf">
SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
</pre>
<p>
There are two forms: expression switches and type switches.
In an expression switch, the cases contain expressions that are compared
against the value of the switch expression.
In a type switch, the cases contain types that are compared against the
type of a specially annotated switch expression.
</p>
<h4 id="Expression_switches">Expression switches</h4>
<p>
In an expression switch,
the switch expression is evaluated and
the case expressions, which need not be constants,
are evaluated left-to-right and top-to-bottom; the first one that equals the
switch expression
triggers execution of the statements of the associated case;
the other cases are skipped.
If no case matches and there is a "default" case,
its statements are executed.
There can be at most one default case and it may appear anywhere in the
"switch" statement.
A missing switch expression is equivalent to the boolean value
<code>true</code>.
</p>
<pre class="ebnf">
ExprSwitchStmt = "switch" [ SimpleStmt ";" ] [ Expression ] "{" { ExprCaseClause } "}" .
ExprCaseClause = ExprSwitchCase ":" StatementList .
ExprSwitchCase = "case" ExpressionList | "default" .
</pre>
<p>
In a case or default clause, the last non-empty statement
may be a (possibly <a href="#Labeled_statements">labeled</a>)
<a href="#Fallthrough_statements">"fallthrough" statement</a> to
indicate that control should flow from the end of this clause to
the first statement of the next clause.
Otherwise control flows to the end of the "switch" statement.
A "fallthrough" statement may appear as the last statement of all
but the last clause of an expression switch.
</p>
<p>
The expression may be preceded by a simple statement, which
executes before the expression is evaluated.
</p>
<pre>
switch tag {
default: s3()
case 0, 1, 2, 3: s1()
case 4, 5, 6, 7: s2()
}
switch x := f(); { // missing switch expression means "true"
case x < 0: return -x
default: return x
}
switch {
case x < y: f1()
case x < z: f2()
case x == 4: f3()
}
</pre>
<h4 id="Type_switches">Type switches</h4>
<p>
A type switch compares types rather than values. It is otherwise similar
to an expression switch. It is marked by a special switch expression that
has the form of a <a href="#Type_assertions">type assertion</a>
using the reserved word <code>type</code> rather than an actual type:
</p>
<pre>
switch x.(type) {
// cases
}
</pre>
<p>
Cases then match actual types <code>T</code> against the dynamic type of the
expression <code>x</code>. As with type assertions, <code>x</code> must be of
<a href="#Interface_types">interface type</a>, and each non-interface type
<code>T</code> listed in a case must implement the type of <code>x</code>.
</p>
<pre class="ebnf">
TypeSwitchStmt = "switch" [ SimpleStmt ";" ] TypeSwitchGuard "{" { TypeCaseClause } "}" .
TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
TypeCaseClause = TypeSwitchCase ":" StatementList .
TypeSwitchCase = "case" TypeList | "default" .
TypeList = Type { "," Type } .
</pre>
<p>
The TypeSwitchGuard may include a
<a href="#Short_variable_declarations">short variable declaration</a>.
When that form is used, the variable is declared at the beginning of
the <a href="#Blocks">implicit block</a> in each clause.
In clauses with a case listing exactly one type, the variable
has that type; otherwise, the variable has the type of the expression
in the TypeSwitchGuard.
</p>
<p>
The type in a case may be <a href="#Predeclared_identifiers"><code>nil</code></a>;
that case is used when the expression in the TypeSwitchGuard
is a <code>nil</code> interface value.
</p>
<p>
Given an expression <code>x</code> of type <code>interface{}</code>,
the following type switch:
</p>
<pre>
switch i := x.(type) {
case nil:
printString("x is nil") // type of i is type of x (interface{})
case int:
printInt(i) // type of i is int
case float64:
printFloat64(i) // type of i is float64
case func(int) float64:
printFunction(i) // type of i is func(int) float64
case bool, string:
printString("type is bool or string") // type of i is type of x (interface{})
default:
printString("don't know the type") // type of i is type of x (interface{})
}
</pre>
<p>
could be rewritten:
</p>
<pre>
v := x // x is evaluated exactly once
if v == nil {
i := v // type of i is type of x (interface{})
printString("x is nil")
} else if i, isInt := v.(int); isInt {
printInt(i) // type of i is int
} else if i, isFloat64 := v.(float64); isFloat64 {
printFloat64(i) // type of i is float64
} else if i, isFunc := v.(func(int) float64); isFunc {
printFunction(i) // type of i is func(int) float64
} else {
_, isBool := v.(bool)
_, isString := v.(string)
if isBool || isString {
i := v // type of i is type of x (interface{})
printString("type is bool or string")
} else {
i := v // type of i is type of x (interface{})
printString("don't know the type")
}
}
</pre>
<p>
The type switch guard may be preceded by a simple statement, which
executes before the guard is evaluated.
</p>
<p>
The "fallthrough" statement is not permitted in a type switch.
</p>
<h3 id="For_statements">For statements</h3>
<p>
A "for" statement specifies repeated execution of a block. The iteration is
controlled by a condition, a "for" clause, or a "range" clause.
</p>
<pre class="ebnf">
ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
Condition = Expression .
</pre>
<p>
In its simplest form, a "for" statement specifies the repeated execution of
a block as long as a boolean condition evaluates to true.
The condition is evaluated before each iteration.
If the condition is absent, it is equivalent to the boolean value
<code>true</code>.
</p>
<pre>
for a < b {
a *= 2
}
</pre>
<p>
A "for" statement with a ForClause is also controlled by its condition, but
additionally it may specify an <i>init</i>
and a <i>post</i> statement, such as an assignment,
an increment or decrement statement. The init statement may be a
<a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not.
Variables declared by the init statement are re-used in each iteration.
</p>
<pre class="ebnf">
ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] .
InitStmt = SimpleStmt .
PostStmt = SimpleStmt .
</pre>
<pre>
for i := 0; i < 10; i++ {
f(i)
}
</pre>
<p>
If non-empty, the init statement is executed once before evaluating the
condition for the first iteration;
the post statement is executed after each execution of the block (and
only if the block was executed).
Any element of the ForClause may be empty but the
<a href="#Semicolons">semicolons</a> are
required unless there is only a condition.
If the condition is absent, it is equivalent to the boolean value
<code>true</code>.
</p>
<pre>
for cond { S() } is the same as for ; cond ; { S() }
for { S() } is the same as for true { S() }
</pre>
<p>
A "for" statement with a "range" clause
iterates through all entries of an array, slice, string or map,
or values received on a channel. For each entry it assigns <i>iteration values</i>
to corresponding <i>iteration variables</i> if present and then executes the block.
</p>
<pre class="ebnf">
RangeClause = [ ExpressionList "=" | IdentifierList ":=" ] "range" Expression .
</pre>
<p>
The expression on the right in the "range" clause is called the <i>range expression</i>,
which may be an array, pointer to an array, slice, string, map, or channel permitting
<a href="#Receive_operator">receive operations</a>.
As with an assignment, if present the operands on the left must be
<a href="#Address_operators">addressable</a> or map index expressions; they
denote the iteration variables. If the range expression is a channel, at most
one iteration variable is permitted, otherwise there may be up to two.
If the last iteration variable is the <a href="#Blank_identifier">blank identifier</a>,
the range clause is equivalent to the same clause without that identifier.
</p>
<p>
The range expression is evaluated once before beginning the loop,
with one exception: if the range expression is an array or a pointer to an array
and at most one iteration variable is present, only the range expression's
length is evaluated; if that length is constant,
<a href="#Length_and_capacity">by definition</a>
the range expression itself will not be evaluated.
</p>
<p>
Function calls on the left are evaluated once per iteration.
For each iteration, iteration values are produced as follows
if the respective iteration variables are present:
</p>
<pre class="grammar">
Range expression 1st value 2nd value
array or slice a [n]E, *[n]E, or []E index i int a[i] E
string s string type index i int see below rune
map m map[K]V key k K m[k] V
channel c chan E, <-chan E element e E
</pre>
<ol>
<li>
For an array, pointer to array, or slice value <code>a</code>, the index iteration
values are produced in increasing order, starting at element index 0.
If at most one iteration variable is present, the range loop produces
iteration values from 0 up to <code>len(a)-1</code> and does not index into the array
or slice itself. For a <code>nil</code> slice, the number of iterations is 0.
</li>
<li>
For a string value, the "range" clause iterates over the Unicode code points
in the string starting at byte index 0. On successive iterations, the index value will be the
index of the first byte of successive UTF-8-encoded code points in the string,
and the second value, of type <code>rune</code>, will be the value of
the corresponding code point. If the iteration encounters an invalid
UTF-8 sequence, the second value will be <code>0xFFFD</code>,
the Unicode replacement character, and the next iteration will advance
a single byte in the string.
</li>
<li>
The iteration order over maps is not specified
and is not guaranteed to be the same from one iteration to the next.
If map entries that have not yet been reached are removed during iteration,
the corresponding iteration values will not be produced. If map entries are
created during iteration, that entry may be produced during the iteration or
may be skipped. The choice may vary for each entry created and from one
iteration to the next.
If the map is <code>nil</code>, the number of iterations is 0.
</li>
<li>
For channels, the iteration values produced are the successive values sent on
the channel until the channel is <a href="#Close">closed</a>. If the channel
is <code>nil</code>, the range expression blocks forever.
</li>
</ol>
<p>
The iteration values are assigned to the respective
iteration variables as in an <a href="#Assignments">assignment statement</a>.
</p>
<p>
The iteration variables may be declared by the "range" clause using a form of
<a href="#Short_variable_declarations">short variable declaration</a>
(<code>:=</code>).
In this case their types are set to the types of the respective iteration values
and their <a href="#Declarations_and_scope">scope</a> is the block of the "for"
statement; they are re-used in each iteration.
If the iteration variables are declared outside the "for" statement,
after execution their values will be those of the last iteration.
</p>
<pre>
var testdata *struct {
a *[7]int
}
for i, _ := range testdata.a {
// testdata.a is never evaluated; len(testdata.a) is constant
// i ranges from 0 to 6
f(i)
}
var a [10]string
for i, s := range a {
// type of i is int
// type of s is string
// s == a[i]
g(i, s)
}
var key string
var val interface {} // value type of m is assignable to val
m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6}
for key, val = range m {
h(key, val)
}
// key == last map key encountered in iteration
// val == map[key]
var ch chan Work = producer()
for w := range ch {
doWork(w)
}
// empty a channel
for range ch {}
</pre>
<h3 id="Go_statements">Go statements</h3>
<p>
A "go" statement starts the execution of a function call
as an independent concurrent thread of control, or <i>goroutine</i>,
within the same address space.
</p>
<pre class="ebnf">
GoStmt = "go" Expression .
</pre>
<p>
The expression must be a function or method call; it cannot be parenthesized.
Calls of built-in functions are restricted as for
<a href="#Expression_statements">expression statements</a>.
</p>
<p>
The function value and parameters are
<a href="#Calls">evaluated as usual</a>
in the calling goroutine, but
unlike with a regular call, program execution does not wait
for the invoked function to complete.
Instead, the function begins executing independently
in a new goroutine.
When the function terminates, its goroutine also terminates.
If the function has any return values, they are discarded when the
function completes.
</p>
<pre>
go Server()
go func(ch chan<- bool) { for { sleep(10); ch <- true; }} (c)
</pre>
<h3 id="Select_statements">Select statements</h3>
<p>
A "select" statement chooses which of a set of possible
<a href="#Send_statements">send</a> or
<a href="#Receive_operator">receive</a>
operations will proceed.
It looks similar to a
<a href="#Switch_statements">"switch"</a> statement but with the
cases all referring to communication operations.
</p>
<pre class="ebnf">
SelectStmt = "select" "{" { CommClause } "}" .
CommClause = CommCase ":" StatementList .
CommCase = "case" ( SendStmt | RecvStmt ) | "default" .
RecvStmt = [ ExpressionList "=" | IdentifierList ":=" ] RecvExpr .
RecvExpr = Expression .
</pre>
<p>
A case with a RecvStmt may assign the result of a RecvExpr to one or
two variables, which may be declared using a
<a href="#Short_variable_declarations">short variable declaration</a>.
The RecvExpr must be a (possibly parenthesized) receive operation.
There can be at most one default case and it may appear anywhere
in the list of cases.
</p>
<p>
Execution of a "select" statement proceeds in several steps:
</p>
<ol>
<li>
For all the cases in the statement, the channel operands of receive operations
and the channel and right-hand-side expressions of send statements are
evaluated exactly once, in source order, upon entering the "select" statement.
The result is a set of channels to receive from or send to,
and the corresponding values to send.
Any side effects in that evaluation will occur irrespective of which (if any)
communication operation is selected to proceed.
Expressions on the left-hand side of a RecvStmt with a short variable declaration
or assignment are not yet evaluated.
</li>
<li>
If one or more of the communications can proceed,
a single one that can proceed is chosen via a uniform pseudo-random selection.
Otherwise, if there is a default case, that case is chosen.
If there is no default case, the "select" statement blocks until
at least one of the communications can proceed.
</li>
<li>
Unless the selected case is the default case, the respective communication
operation is executed.
</li>
<li>
If the selected case is a RecvStmt with a short variable declaration or
an assignment, the left-hand side expressions are evaluated and the
received value (or values) are assigned.
</li>
<li>
The statement list of the selected case is executed.
</li>
</ol>
<p>
Since communication on <code>nil</code> channels can never proceed,
a select with only <code>nil</code> channels and no default case blocks forever.
</p>
<pre>
var a []int
var c, c1, c2, c3, c4 chan int
var i1, i2 int
select {
case i1 = <-c1:
print("received ", i1, " from c1\n")
case c2 <- i2:
print("sent ", i2, " to c2\n")
case i3, ok := (<-c3): // same as: i3, ok := <-c3
if ok {
print("received ", i3, " from c3\n")
} else {
print("c3 is closed\n")
}
case a[f()] = <-c4:
// same as:
// case t := <-c4
// a[f()] = t
default:
print("no communication\n")
}
for { // send random sequence of bits to c
select {
case c <- 0: // note: no statement, no fallthrough, no folding of cases
case c <- 1:
}
}
select {} // block forever
</pre>
<h3 id="Return_statements">Return statements</h3>
<p>
A "return" statement in a function <code>F</code> terminates the execution
of <code>F</code>, and optionally provides one or more result values.
Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
are executed before <code>F</code> returns to its caller.
</p>
<pre class="ebnf">
ReturnStmt = "return" [ ExpressionList ] .
</pre>
<p>
In a function without a result type, a "return" statement must not
specify any result values.
</p>
<pre>
func noResult() {
return
}
</pre>
<p>
There are three ways to return values from a function with a result
type:
</p>
<ol>
<li>The return value or values may be explicitly listed
in the "return" statement. Each expression must be single-valued
and <a href="#Assignability">assignable</a>
to the corresponding element of the function's result type.
<pre>
func simpleF() int {
return 2
}
func complexF1() (re float64, im float64) {
return -7.0, -4.0
}
</pre>
</li>
<li>The expression list in the "return" statement may be a single
call to a multi-valued function. The effect is as if each value
returned from that function were assigned to a temporary
variable with the type of the respective value, followed by a
"return" statement listing these variables, at which point the
rules of the previous case apply.
<pre>
func complexF2() (re float64, im float64) {
return complexF1()
}
</pre>
</li>
<li>The expression list may be empty if the function's result
type specifies names for its <a href="#Function_types">result parameters</a>.
The result parameters act as ordinary local variables
and the function may assign values to them as necessary.
The "return" statement returns the values of these variables.
<pre>
func complexF3() (re float64, im float64) {
re = 7.0
im = 4.0
return
}
func (devnull) Write(p []byte) (n int, _ error) {
n = len(p)
return
}
</pre>
</li>
</ol>
<p>
Regardless of how they are declared, all the result values are initialized to
the <a href="#The_zero_value">zero values</a> for their type upon entry to the
function. A "return" statement that specifies results sets the result parameters before
any deferred functions are executed.
</p>
<p>
Implementation restriction: A compiler may disallow an empty expression list
in a "return" statement if a different entity (constant, type, or variable)
with the same name as a result parameter is in
<a href="#Declarations_and_scope">scope</a> at the place of the return.
</p>
<pre>
func f(n int) (res int, err error) {
if _, err := f(n-1); err != nil {
return // invalid return statement: err is shadowed
}
return
}
</pre>
<h3 id="Break_statements">Break statements</h3>
<p>
A "break" statement terminates execution of the innermost
<a href="#For_statements">"for"</a>,
<a href="#Switch_statements">"switch"</a>, or
<a href="#Select_statements">"select"</a> statement
within the same function.
</p>
<pre class="ebnf">
BreakStmt = "break" [ Label ] .
</pre>
<p>
If there is a label, it must be that of an enclosing
"for", "switch", or "select" statement,
and that is the one whose execution terminates.
</p>
<pre>
OuterLoop:
for i = 0; i < n; i++ {
for j = 0; j < m; j++ {
switch a[i][j] {
case nil:
state = Error
break OuterLoop
case item:
state = Found
break OuterLoop
}
}
}
</pre>
<h3 id="Continue_statements">Continue statements</h3>
<p>
A "continue" statement begins the next iteration of the
innermost <a href="#For_statements">"for" loop</a> at its post statement.
The "for" loop must be within the same function.
</p>
<pre class="ebnf">
ContinueStmt = "continue" [ Label ] .
</pre>
<p>
If there is a label, it must be that of an enclosing
"for" statement, and that is the one whose execution
advances.
</p>
<pre>
RowLoop:
for y, row := range rows {
for x, data := range row {
if data == endOfRow {
continue RowLoop
}
row[x] = data + bias(x, y)
}
}
</pre>
<h3 id="Goto_statements">Goto statements</h3>
<p>
A "goto" statement transfers control to the statement with the corresponding label
within the same function.
</p>
<pre class="ebnf">
GotoStmt = "goto" Label .
</pre>
<pre>
goto Error
</pre>
<p>
Executing the "goto" statement must not cause any variables to come into
<a href="#Declarations_and_scope">scope</a> that were not already in scope at the point of the goto.
For instance, this example:
</p>
<pre>
goto L // BAD
v := 3
L:
</pre>
<p>
is erroneous because the jump to label <code>L</code> skips
the creation of <code>v</code>.
</p>
<p>
A "goto" statement outside a <a href="#Blocks">block</a> cannot jump to a label inside that block.
For instance, this example:
</p>
<pre>
if n%2 == 1 {
goto L1
}
for n > 0 {
f()
n--
L1:
f()
n--
}
</pre>
<p>
is erroneous because the label <code>L1</code> is inside
the "for" statement's block but the <code>goto</code> is not.
</p>
<h3 id="Fallthrough_statements">Fallthrough statements</h3>
<p>
A "fallthrough" statement transfers control to the first statement of the
next case clause in a <a href="#Expression_switches">expression "switch" statement</a>.
It may be used only as the final non-empty statement in such a clause.
</p>
<pre class="ebnf">
FallthroughStmt = "fallthrough" .
</pre>
<h3 id="Defer_statements">Defer statements</h3>
<p>
A "defer" statement invokes a function whose execution is deferred
to the moment the surrounding function returns, either because the
surrounding function executed a <a href="#Return_statements">return statement</a>,
reached the end of its <a href="#Function_declarations">function body</a>,
or because the corresponding goroutine is <a href="#Handling_panics">panicking</a>.
</p>
<pre class="ebnf">
DeferStmt = "defer" Expression .
</pre>
<p>
The expression must be a function or method call; it cannot be parenthesized.
Calls of built-in functions are restricted as for
<a href="#Expression_statements">expression statements</a>.
</p>
<p>
Each time a "defer" statement
executes, the function value and parameters to the call are
<a href="#Calls">evaluated as usual</a>
and saved anew but the actual function is not invoked.
Instead, deferred functions are invoked immediately before
the surrounding function returns, in the reverse order
they were deferred.
If a deferred function value evaluates
to <code>nil</code>, execution <a href="#Handling_panics">panics</a>
when the function is invoked, not when the "defer" statement is executed.
</p>
<p>
For instance, if the deferred function is
a <a href="#Function_literals">function literal</a> and the surrounding
function has <a href="#Function_types">named result parameters</a> that
are in scope within the literal, the deferred function may access and modify
the result parameters before they are returned.
If the deferred function has any return values, they are discarded when
the function completes.
(See also the section on <a href="#Handling_panics">handling panics</a>.)
</p>
<pre>
lock(l)
defer unlock(l) // unlocking happens before surrounding function returns
// prints 3 2 1 0 before surrounding function returns
for i := 0; i <= 3; i++ {
defer fmt.Print(i)
}
// f returns 1
func f() (result int) {
defer func() {
result++
}()
return 0
}
</pre>
<h2 id="Built-in_functions">Built-in functions</h2>
<p>
Built-in functions are
<a href="#Predeclared_identifiers">predeclared</a>.
They are called like any other function but some of them
accept a type instead of an expression as the first argument.
</p>
<p>
The built-in functions do not have standard Go types,
so they can only appear in <a href="#Calls">call expressions</a>;
they cannot be used as function values.
</p>
<h3 id="Close">Close</h3>
<p>
For a channel <code>c</code>, the built-in function <code>close(c)</code>
records that no more values will be sent on the channel.
It is an error if <code>c</code> is a receive-only channel.
Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
Closing the nil channel also causes a <a href="#Run_time_panics">run-time panic</a>.
After calling <code>close</code>, and after any previously
sent values have been received, receive operations will return
the zero value for the channel's type without blocking.
The multi-valued <a href="#Receive_operator">receive operation</a>
returns a received value along with an indication of whether the channel is closed.
</p>
<h3 id="Length_and_capacity">Length and capacity</h3>
<p>
The built-in functions <code>len</code> and <code>cap</code> take arguments
of various types and return a result of type <code>int</code>.
The implementation guarantees that the result always fits into an <code>int</code>.
</p>
<pre class="grammar">
Call Argument type Result
len(s) string type string length in bytes
[n]T, *[n]T array length (== n)
[]T slice length
map[K]T map length (number of defined keys)
chan T number of elements queued in channel buffer
cap(s) [n]T, *[n]T array length (== n)
[]T slice capacity
chan T channel buffer capacity
</pre>
<p>
The capacity of a slice is the number of elements for which there is
space allocated in the underlying array.
At any time the following relationship holds:
</p>
<pre>
0 <= len(s) <= cap(s)
</pre>
<p>
The length of a <code>nil</code> slice, map or channel is 0.
The capacity of a <code>nil</code> slice or channel is 0.
</p>
<p>
The expression <code>len(s)</code> is <a href="#Constants">constant</a> if
<code>s</code> is a string constant. The expressions <code>len(s)</code> and
<code>cap(s)</code> are constants if the type of <code>s</code> is an array
or pointer to an array and the expression <code>s</code> does not contain
<a href="#Receive_operator">channel receives</a> or (non-constant)
<a href="#Calls">function calls</a>; in this case <code>s</code> is not evaluated.
Otherwise, invocations of <code>len</code> and <code>cap</code> are not
constant and <code>s</code> is evaluated.
</p>
<pre>
const (
c1 = imag(2i) // imag(2i) = 2.0 is a constant
c2 = len([10]float64{2}) // [10]float64{2} contains no function calls
c3 = len([10]float64{c1}) // [10]float64{c1} contains no function calls
c4 = len([10]float64{imag(2i)}) // imag(2i) is a constant and no function call is issued
c5 = len([10]float64{imag(z)}) // invalid: imag(z) is a (non-constant) function call
)
var z complex128
</pre>
<h3 id="Allocation">Allocation</h3>
<p>
The built-in function <code>new</code> takes a type <code>T</code>,
allocates storage for a <a href="#Variables">variable</a> of that type
at run time, and returns a value of type <code>*T</code>
<a href="#Pointer_types">pointing</a> to it.
The variable is initialized as described in the section on
<a href="#The_zero_value">initial values</a>.
</p>
<pre class="grammar">
new(T)
</pre>
<p>
For instance
</p>
<pre>
type S struct { a int; b float64 }
new(S)
</pre>
<p>
allocates storage for a variable of type <code>S</code>,
initializes it (<code>a=0</code>, <code>b=0.0</code>),
and returns a value of type <code>*S</code> containing the address
of the location.
</p>
<h3 id="Making_slices_maps_and_channels">Making slices, maps and channels</h3>
<p>
The built-in function <code>make</code> takes a type <code>T</code>,
which must be a slice, map or channel type,
optionally followed by a type-specific list of expressions.
It returns a value of type <code>T</code> (not <code>*T</code>).
The memory is initialized as described in the section on
<a href="#The_zero_value">initial values</a>.
</p>
<pre class="grammar">
Call Type T Result
make(T, n) slice slice of type T with length n and capacity n
make(T, n, m) slice slice of type T with length n and capacity m
make(T) map map of type T
make(T, n) map map of type T with initial space for n elements
make(T) channel unbuffered channel of type T
make(T, n) channel buffered channel of type T, buffer size n
</pre>
<p>
The size arguments <code>n</code> and <code>m</code> must be of integer type or untyped.
A <a href="#Constants">constant</a> size argument must be non-negative and
representable by a value of type <code>int</code>.
If both <code>n</code> and <code>m</code> are provided and are constant, then
<code>n</code> must be no larger than <code>m</code>.
If <code>n</code> is negative or larger than <code>m</code> at run time,
a <a href="#Run_time_panics">run-time panic</a> occurs.
</p>
<pre>
s := make([]int, 10, 100) // slice with len(s) == 10, cap(s) == 100
s := make([]int, 1e3) // slice with len(s) == cap(s) == 1000
s := make([]int, 1<<63) // illegal: len(s) is not representable by a value of type int
s := make([]int, 10, 0) // illegal: len(s) > cap(s)
c := make(chan int, 10) // channel with a buffer size of 10
m := make(map[string]int, 100) // map with initial space for 100 elements
</pre>
<h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
<p>
The built-in functions <code>append</code> and <code>copy</code> assist in
common slice operations.
For both functions, the result is independent of whether the memory referenced
by the arguments overlaps.
</p>
<p>
The <a href="#Function_types">variadic</a> function <code>append</code>
appends zero or more values <code>x</code>
to <code>s</code> of type <code>S</code>, which must be a slice type, and
returns the resulting slice, also of type <code>S</code>.
The values <code>x</code> are passed to a parameter of type <code>...T</code>
where <code>T</code> is the <a href="#Slice_types">element type</a> of
<code>S</code> and the respective
<a href="#Passing_arguments_to_..._parameters">parameter passing rules</a> apply.
As a special case, <code>append</code> also accepts a first argument
assignable to type <code>[]byte</code> with a second argument of
string type followed by <code>...</code>. This form appends the
bytes of the string.
</p>
<pre class="grammar">
append(s S, x ...T) S // T is the element type of S
</pre>
<p>
If the capacity of <code>s</code> is not large enough to fit the additional
values, <code>append</code> allocates a new, sufficiently large underlying
array that fits both the existing slice elements and the additional values.
Otherwise, <code>append</code> re-uses the underlying array.
</p>
<pre>
s0 := []int{0, 0}
s1 := append(s0, 2) // append a single element s1 == []int{0, 0, 2}
s2 := append(s1, 3, 5, 7) // append multiple elements s2 == []int{0, 0, 2, 3, 5, 7}
s3 := append(s2, s0...) // append a slice s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
s4 := append(s3[3:6], s3[2:]...) // append overlapping slice s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
var t []interface{}
t = append(t, 42, 3.1415, "foo") // t == []interface{}{42, 3.1415, "foo"}
var b []byte
b = append(b, "bar"...) // append string contents b == []byte{'b', 'a', 'r' }
</pre>
<p>
The function <code>copy</code> copies slice elements from
a source <code>src</code> to a destination <code>dst</code> and returns the
number of elements copied.
Both arguments must have <a href="#Type_identity">identical</a> element type <code>T</code> and must be
<a href="#Assignability">assignable</a> to a slice of type <code>[]T</code>.
The number of elements copied is the minimum of
<code>len(src)</code> and <code>len(dst)</code>.
As a special case, <code>copy</code> also accepts a destination argument assignable
to type <code>[]byte</code> with a source argument of a string type.
This form copies the bytes from the string into the byte slice.
</p>
<pre class="grammar">
copy(dst, src []T) int
copy(dst []byte, src string) int
</pre>
<p>
Examples:
</p>
<pre>
var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
var s = make([]int, 6)
var b = make([]byte, 5)
n1 := copy(s, a[0:]) // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
n2 := copy(s, s[2:]) // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
n3 := copy(b, "Hello, World!") // n3 == 5, b == []byte("Hello")
</pre>
<h3 id="Deletion_of_map_elements">Deletion of map elements</h3>
<p>
The built-in function <code>delete</code> removes the element with key
<code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
type of <code>k</code> must be <a href="#Assignability">assignable</a>
to the key type of <code>m</code>.
</p>
<pre class="grammar">
delete(m, k) // remove element m[k] from map m
</pre>
<p>
If the map <code>m</code> is <code>nil</code> or the element <code>m[k]</code>
does not exist, <code>delete</code> is a no-op.
</p>
<h3 id="Complex_numbers">Manipulating complex numbers</h3>
<p>
Three functions assemble and disassemble complex numbers.
The built-in function <code>complex</code> constructs a complex
value from a floating-point real and imaginary part, while
<code>real</code> and <code>imag</code>
extract the real and imaginary parts of a complex value.
</p>
<pre class="grammar">
complex(realPart, imaginaryPart floatT) complexT
real(complexT) floatT
imag(complexT) floatT
</pre>
<p>
The type of the arguments and return value correspond.
For <code>complex</code>, the two arguments must be of the same
floating-point type and the return type is the complex type
with the corresponding floating-point constituents:
<code>complex64</code> for <code>float32</code>,
<code>complex128</code> for <code>float64</code>.
The <code>real</code> and <code>imag</code> functions
together form the inverse, so for a complex value <code>z</code>,
<code>z</code> <code>==</code> <code>complex(real(z),</code> <code>imag(z))</code>.
</p>
<p>
If the operands of these functions are all constants, the return
value is a constant.
</p>
<pre>
var a = complex(2, -2) // complex128
var b = complex(1.0, -1.4) // complex128
x := float32(math.Cos(math.Pi/2)) // float32
var c64 = complex(5, -x) // complex64
var im = imag(b) // float64
var rl = real(c64) // float32
</pre>
<h3 id="Handling_panics">Handling panics</h3>
<p> Two built-in functions, <code>panic</code> and <code>recover</code>,
assist in reporting and handling <a href="#Run_time_panics">run-time panics</a>
and program-defined error conditions.
</p>
<pre class="grammar">
func panic(interface{})
func recover() interface{}
</pre>
<p>
While executing a function <code>F</code>,
an explicit call to <code>panic</code> or a <a href="#Run_time_panics">run-time panic</a>
terminates the execution of <code>F</code>.
Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
are then executed as usual.
Next, any deferred functions run by <code>F's</code> caller are run,
and so on up to any deferred by the top-level function in the executing goroutine.
At that point, the program is terminated and the error
condition is reported, including the value of the argument to <code>panic</code>.
This termination sequence is called <i>panicking</i>.
</p>
<pre>
panic(42)
panic("unreachable")
panic(Error("cannot parse"))
</pre>
<p>
The <code>recover</code> function allows a program to manage behavior
of a panicking goroutine.
Suppose a function <code>G</code> defers a function <code>D</code> that calls
<code>recover</code> and a panic occurs in a function on the same goroutine in which <code>G</code>
is executing.
When the running of deferred functions reaches <code>D</code>,
the return value of <code>D</code>'s call to <code>recover</code> will be the value passed to the call of <code>panic</code>.
If <code>D</code> returns normally, without starting a new
<code>panic</code>, the panicking sequence stops. In that case,
the state of functions called between <code>G</code> and the call to <code>panic</code>
is discarded, and normal execution resumes.
Any functions deferred by <code>G</code> before <code>D</code> are then run and <code>G</code>'s
execution terminates by returning to its caller.
</p>
<p>
The return value of <code>recover</code> is <code>nil</code> if any of the following conditions holds:
</p>
<ul>
<li>
<code>panic</code>'s argument was <code>nil</code>;
</li>
<li>
the goroutine is not panicking;
</li>
<li>
<code>recover</code> was not called directly by a deferred function.
</li>
</ul>
<p>
The <code>protect</code> function in the example below invokes
the function argument <code>g</code> and protects callers from
run-time panics raised by <code>g</code>.
</p>
<pre>
func protect(g func()) {
defer func() {
log.Println("done") // Println executes normally even if there is a panic
if x := recover(); x != nil {
log.Printf("run time panic: %v", x)
}
}()
log.Println("start")
g()
}
</pre>
<h3 id="Bootstrapping">Bootstrapping</h3>
<p>
Current implementations provide several built-in functions useful during
bootstrapping. These functions are documented for completeness but are not
guaranteed to stay in the language. They do not return a result.
</p>
<pre class="grammar">
Function Behavior
print prints all arguments; formatting of arguments is implementation-specific
println like print but prints spaces between arguments and a newline at the end
</pre>
<h2 id="Packages">Packages</h2>
<p>
Go programs are constructed by linking together <i>packages</i>.
A package in turn is constructed from one or more source files
that together declare constants, types, variables and functions
belonging to the package and which are accessible in all files
of the same package. Those elements may be
<a href="#Exported_identifiers">exported</a> and used in another package.
</p>
<h3 id="Source_file_organization">Source file organization</h3>
<p>
Each source file consists of a package clause defining the package
to which it belongs, followed by a possibly empty set of import
declarations that declare packages whose contents it wishes to use,
followed by a possibly empty set of declarations of functions,
types, variables, and constants.
</p>
<pre class="ebnf">
SourceFile = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } .
</pre>
<h3 id="Package_clause">Package clause</h3>
<p>
A package clause begins each source file and defines the package
to which the file belongs.
</p>
<pre class="ebnf">
PackageClause = "package" PackageName .
PackageName = identifier .
</pre>
<p>
The PackageName must not be the <a href="#Blank_identifier">blank identifier</a>.
</p>
<pre>
package math
</pre>
<p>
A set of files sharing the same PackageName form the implementation of a package.
An implementation may require that all source files for a package inhabit the same directory.
</p>
<h3 id="Import_declarations">Import declarations</h3>
<p>
An import declaration states that the source file containing the declaration
depends on functionality of the <i>imported</i> package
(<a href="#Program_initialization_and_execution">§Program initialization and execution</a>)
and enables access to <a href="#Exported_identifiers">exported</a> identifiers
of that package.
The import names an identifier (PackageName) to be used for access and an ImportPath
that specifies the package to be imported.
</p>
<pre class="ebnf">
ImportDecl = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) .
ImportSpec = [ "." | PackageName ] ImportPath .
ImportPath = string_lit .
</pre>
<p>
The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a>
to access exported identifiers of the package within the importing source file.
It is declared in the <a href="#Blocks">file block</a>.
If the PackageName is omitted, it defaults to the identifier specified in the
<a href="#Package_clause">package clause</a> of the imported package.
If an explicit period (<code>.</code>) appears instead of a name, all the
package's exported identifiers declared in that package's
<a href="#Blocks">package block</a> will be declared in the importing source
file's file block and must be accessed without a qualifier.
</p>
<p>
The interpretation of the ImportPath is implementation-dependent but
it is typically a substring of the full file name of the compiled
package and may be relative to a repository of installed packages.
</p>
<p>
Implementation restriction: A compiler may restrict ImportPaths to
non-empty strings using only characters belonging to
<a href="http://www.unicode.org/versions/Unicode6.3.0/">Unicode's</a>
L, M, N, P, and S general categories (the Graphic characters without
spaces) and may also exclude the characters
<code>!"#$%&'()*,:;<=>?[\]^`{|}</code>
and the Unicode replacement character U+FFFD.
</p>
<p>
Assume we have compiled a package containing the package clause
<code>package math</code>, which exports function <code>Sin</code>, and
installed the compiled package in the file identified by
<code>"lib/math"</code>.
This table illustrates how <code>Sin</code> is accessed in files
that import the package after the
various types of import declaration.
</p>
<pre class="grammar">
Import declaration Local name of Sin
import "lib/math" math.Sin
import m "lib/math" m.Sin
import . "lib/math" Sin
</pre>
<p>
An import declaration declares a dependency relation between
the importing and imported package.
It is illegal for a package to import itself, directly or indirectly,
or to directly import a package without
referring to any of its exported identifiers. To import a package solely for
its side-effects (initialization), use the <a href="#Blank_identifier">blank</a>
identifier as explicit package name:
</p>
<pre>
import _ "lib/math"
</pre>
<h3 id="An_example_package">An example package</h3>
<p>
Here is a complete Go package that implements a concurrent prime sieve.
</p>
<pre>
package main
import "fmt"
// Send the sequence 2, 3, 4, … to channel 'ch'.
func generate(ch chan<- int) {
for i := 2; ; i++ {
ch <- i // Send 'i' to channel 'ch'.
}
}
// Copy the values from channel 'src' to channel 'dst',
// removing those divisible by 'prime'.
func filter(src <-chan int, dst chan<- int, prime int) {
for i := range src { // Loop over values received from 'src'.
if i%prime != 0 {
dst <- i // Send 'i' to channel 'dst'.
}
}
}
// The prime sieve: Daisy-chain filter processes together.
func sieve() {
ch := make(chan int) // Create a new channel.
go generate(ch) // Start generate() as a subprocess.
for {
prime := <-ch
fmt.Print(prime, "\n")
ch1 := make(chan int)
go filter(ch, ch1, prime)
ch = ch1
}
}
func main() {
sieve()
}
</pre>
<h2 id="Program_initialization_and_execution">Program initialization and execution</h2>
<h3 id="The_zero_value">The zero value</h3>
<p>
When storage is allocated for a <a href="#Variables">variable</a>,
either through a declaration or a call of <code>new</code>, or when
a new value is created, either through a composite literal or a call
of <code>make</code>,
and no explicit initialization is provided, the variable or value is
given a default value. Each element of such a variable or value is
set to the <i>zero value</i> for its type: <code>false</code> for booleans,
<code>0</code> for integers, <code>0.0</code> for floats, <code>""</code>
for strings, and <code>nil</code> for pointers, functions, interfaces, slices, channels, and maps.
This initialization is done recursively, so for instance each element of an
array of structs will have its fields zeroed if no value is specified.
</p>
<p>
These two simple declarations are equivalent:
</p>
<pre>
var i int
var i int = 0
</pre>
<p>
After
</p>
<pre>
type T struct { i int; f float64; next *T }
t := new(T)
</pre>
<p>
the following holds:
</p>
<pre>
t.i == 0
t.f == 0.0
t.next == nil
</pre>
<p>
The same would also be true after
</p>
<pre>
var t T
</pre>
<h3 id="Package_initialization">Package initialization</h3>
<p>
Within a package, package-level variables are initialized in
<i>declaration order</i> but after any of the variables
they <i>depend</i> on.
</p>
<p>
More precisely, a package-level variable is considered <i>ready for
initialization</i> if it is not yet initialized and either has
no <a href="#Variable_declarations">initialization expression</a> or
its initialization expression has no dependencies on uninitialized variables.
Initialization proceeds by repeatedly initializing the next package-level
variable that is earliest in declaration order and ready for initialization,
until there are no variables ready for initialization.
</p>
<p>
If any variables are still uninitialized when this
process ends, those variables are part of one or more initialization cycles,
and the program is not valid.
</p>
<p>
The declaration order of variables declared in multiple files is determined
by the order in which the files are presented to the compiler: Variables
declared in the first file are declared before any of the variables declared
in the second file, and so on.
</p>
<p>
Dependency analysis does not rely on the actual values of the
variables, only on lexical <i>references</i> to them in the source,
analyzed transitively. For instance, if a variable <code>x</code>'s
initialization expression refers to a function whose body refers to
variable <code>y</code> then <code>x</code> depends on <code>y</code>.
Specifically:
</p>
<ul>
<li>
A reference to a variable or function is an identifier denoting that
variable or function.
</li>
<li>
A reference to a method <code>m</code> is a
<a href="#Method_values">method value</a> or
<a href="#Method_expressions">method expression</a> of the form
<code>t.m</code>, where the (static) type of <code>t</code> is
not an interface type, and the method <code>m</code> is in the
<a href="#Method_sets">method set</a> of <code>t</code>.
It is immaterial whether the resulting function value
<code>t.m</code> is invoked.
</li>
<li>
A variable, function, or method <code>x</code> depends on a variable
<code>y</code> if <code>x</code>'s initialization expression or body
(for functions and methods) contains a reference to <code>y</code>
or to a function or method that depends on <code>y</code>.
</li>
</ul>
<p>
Dependency analysis is performed per package; only references referring
to variables, functions, and methods declared in the current package
are considered.
</p>
<p>
For example, given the declarations
</p>
<pre>
var (
a = c + b
b = f()
c = f()
d = 3
)
func f() int {
d++
return d
}
</pre>
<p>
the initialization order is <code>d</code>, <code>b</code>, <code>c</code>, <code>a</code>.
</p>
<p>
Variables may also be initialized using functions named <code>init</code>
declared in the package block, with no arguments and no result parameters.
</p>
<pre>
func init() { … }
</pre>
<p>
Multiple such functions may be defined, even within a single
source file. The <code>init</code> identifier is not
<a href="#Declarations_and_scope">declared</a> and thus
<code>init</code> functions cannot be referred to from anywhere
in a program.
</p>
<p>
A package with no imports is initialized by assigning initial values
to all its package-level variables followed by calling all <code>init</code>
functions in the order they appear in the source, possibly in multiple files,
as presented to the compiler.
If a package has imports, the imported packages are initialized
before initializing the package itself. If multiple packages import
a package, the imported package will be initialized only once.
The importing of packages, by construction, guarantees that there
can be no cyclic initialization dependencies.
</p>
<p>
Package initialization—variable initialization and the invocation of
<code>init</code> functions—happens in a single goroutine,
sequentially, one package at a time.
An <code>init</code> function may launch other goroutines, which can run
concurrently with the initialization code. However, initialization
always sequences
the <code>init</code> functions: it will not invoke the next one
until the previous one has returned.
</p>
<p>
To ensure reproducible initialization behavior, build systems are encouraged
to present multiple files belonging to the same package in lexical file name
order to a compiler.
</p>
<h3 id="Program_execution">Program execution</h3>
<p>
A complete program is created by linking a single, unimported package
called the <i>main package</i> with all the packages it imports, transitively.
The main package must
have package name <code>main</code> and
declare a function <code>main</code> that takes no
arguments and returns no value.
</p>
<pre>
func main() { … }
</pre>
<p>
Program execution begins by initializing the main package and then
invoking the function <code>main</code>.
When that function invocation returns, the program exits.
It does not wait for other (non-<code>main</code>) goroutines to complete.
</p>
<h2 id="Errors">Errors</h2>
<p>
The predeclared type <code>error</code> is defined as
</p>
<pre>
type error interface {
Error() string
}
</pre>
<p>
It is the conventional interface for representing an error condition,
with the nil value representing no error.
For instance, a function to read data from a file might be defined:
</p>
<pre>
func Read(f *File, b []byte) (n int, err error)
</pre>
<h2 id="Run_time_panics">Run-time panics</h2>
<p>
Execution errors such as attempting to index an array out
of bounds trigger a <i>run-time panic</i> equivalent to a call of
the built-in function <a href="#Handling_panics"><code>panic</code></a>
with a value of the implementation-defined interface type <code>runtime.Error</code>.
That type satisfies the predeclared interface type
<a href="#Errors"><code>error</code></a>.
The exact error values that
represent distinct run-time error conditions are unspecified.
</p>
<pre>
package runtime
type Error interface {
error
// and perhaps other methods
}
</pre>
<h2 id="System_considerations">System considerations</h2>
<h3 id="Package_unsafe">Package <code>unsafe</code></h3>
<p>
The built-in package <code>unsafe</code>, known to the compiler,
provides facilities for low-level programming including operations
that violate the type system. A package using <code>unsafe</code>
must be vetted manually for type safety and may not be portable.
The package provides the following interface:
</p>
<pre class="grammar">
package unsafe
type ArbitraryType int // shorthand for an arbitrary Go type; it is not a real type
type Pointer *ArbitraryType
func Alignof(variable ArbitraryType) uintptr
func Offsetof(selector ArbitraryType) uintptr
func Sizeof(variable ArbitraryType) uintptr
</pre>
<p>
A <code>Pointer</code> is a <a href="#Pointer_types">pointer type</a> but a <code>Pointer</code>
value may not be <a href="#Address_operators">dereferenced</a>.
Any pointer or value of <a href="#Types">underlying type</a> <code>uintptr</code> can be converted to
a <code>Pointer</code> type and vice versa.
The effect of converting between <code>Pointer</code> and <code>uintptr</code> is implementation-defined.
</p>
<pre>
var f float64
bits = *(*uint64)(unsafe.Pointer(&f))
type ptr unsafe.Pointer
bits = *(*uint64)(ptr(&f))
var p ptr = nil
</pre>
<p>
The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>
of any type and return the alignment or size, respectively, of a hypothetical variable <code>v</code>
as if <code>v</code> was declared via <code>var v = x</code>.
</p>
<p>
The function <code>Offsetof</code> takes a (possibly parenthesized) <a href="#Selectors">selector</a>
<code>s.f</code>, denoting a field <code>f</code> of the struct denoted by <code>s</code>
or <code>*s</code>, and returns the field offset in bytes relative to the struct's address.
If <code>f</code> is an <a href="#Struct_types">embedded field</a>, it must be reachable
without pointer indirections through fields of the struct.
For a struct <code>s</code> with field <code>f</code>:
</p>
<pre>
uintptr(unsafe.Pointer(&s)) + unsafe.Offsetof(s.f) == uintptr(unsafe.Pointer(&s.f))
</pre>
<p>
Computer architectures may require memory addresses to be <i>aligned</i>;
that is, for addresses of a variable to be a multiple of a factor,
the variable's type's <i>alignment</i>. The function <code>Alignof</code>
takes an expression denoting a variable of any type and returns the
alignment of the (type of the) variable in bytes. For a variable
<code>x</code>:
</p>
<pre>
uintptr(unsafe.Pointer(&x)) % unsafe.Alignof(x) == 0
</pre>
<p>
Calls to <code>Alignof</code>, <code>Offsetof</code>, and
<code>Sizeof</code> are compile-time constant expressions of type <code>uintptr</code>.
</p>
<h3 id="Size_and_alignment_guarantees">Size and alignment guarantees</h3>
<p>
For the <a href="#Numeric_types">numeric types</a>, the following sizes are guaranteed:
</p>
<pre class="grammar">
type size in bytes
byte, uint8, int8 1
uint16, int16 2
uint32, int32, float32 4
uint64, int64, float64, complex64 8
complex128 16
</pre>
<p>
The following minimal alignment properties are guaranteed:
</p>
<ol>
<li>For a variable <code>x</code> of any type: <code>unsafe.Alignof(x)</code> is at least 1.
</li>
<li>For a variable <code>x</code> of struct type: <code>unsafe.Alignof(x)</code> is the largest of
all the values <code>unsafe.Alignof(x.f)</code> for each field <code>f</code> of <code>x</code>, but at least 1.
</li>
<li>For a variable <code>x</code> of array type: <code>unsafe.Alignof(x)</code> is the same as
<code>unsafe.Alignof(x[0])</code>, but at least 1.
</li>
</ol>
<p>
A struct or array type has size zero if it contains no fields (or elements, respectively) that have a size greater than zero. Two distinct zero-size variables may have the same address in memory.
</p>
|
gorcz/go
|
doc/go_spec.html
|
HTML
|
bsd-3-clause
| 194,395
|
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>qgis._core.QgsVectorFileWriter.OptionType</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
qgis ::
_core ::
QgsVectorFileWriter ::
OptionType ::
Class OptionType
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="qgis._core.QgsVectorFileWriter.OptionType-class.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class OptionType</h1><p class="nomargin-top"></p>
<pre class="base-tree">
object --+
|
int --+
|
<strong class="uidshort">QgsVectorFileWriter.OptionType</strong>
</pre>
<hr />
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Instance Methods</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-InstanceMethods"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="qgis._core.QgsVectorFileWriter.OptionType-class.html#__reduce__" class="summary-sig-name">__reduce__</a>(<span class="summary-sig-arg">...</span>)</span><br />
helper for pickle</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>int</code></b>:
<code>__abs__</code>,
<code>__add__</code>,
<code>__and__</code>,
<code>__cmp__</code>,
<code>__coerce__</code>,
<code>__div__</code>,
<code>__divmod__</code>,
<code>__float__</code>,
<code>__floordiv__</code>,
<code>__format__</code>,
<code>__getattribute__</code>,
<code>__getnewargs__</code>,
<code>__hash__</code>,
<code>__hex__</code>,
<code>__index__</code>,
<code>__int__</code>,
<code>__invert__</code>,
<code>__long__</code>,
<code>__lshift__</code>,
<code>__mod__</code>,
<code>__mul__</code>,
<code>__neg__</code>,
<code>__new__</code>,
<code>__nonzero__</code>,
<code>__oct__</code>,
<code>__or__</code>,
<code>__pos__</code>,
<code>__pow__</code>,
<code>__radd__</code>,
<code>__rand__</code>,
<code>__rdiv__</code>,
<code>__rdivmod__</code>,
<code>__repr__</code>,
<code>__rfloordiv__</code>,
<code>__rlshift__</code>,
<code>__rmod__</code>,
<code>__rmul__</code>,
<code>__ror__</code>,
<code>__rpow__</code>,
<code>__rrshift__</code>,
<code>__rshift__</code>,
<code>__rsub__</code>,
<code>__rtruediv__</code>,
<code>__rxor__</code>,
<code>__str__</code>,
<code>__sub__</code>,
<code>__truediv__</code>,
<code>__trunc__</code>,
<code>__xor__</code>,
<code>bit_length</code>,
<code>conjugate</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__delattr__</code>,
<code>__init__</code>,
<code>__reduce_ex__</code>,
<code>__setattr__</code>,
<code>__sizeof__</code>,
<code>__subclasshook__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Properties</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Properties"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>int</code></b>:
<code>denominator</code>,
<code>imag</code>,
<code>numerator</code>,
<code>real</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__class__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Method Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-MethodDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="__reduce__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__reduce__</span>(<span class="sig-arg">...</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>helper for pickle</p>
<dl class="fields">
<dt>Overrides:
object.__reduce__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Tue Jun 14 13:29:21 2016
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
linz/QGIS-AIMS-Plugin
|
doc/Aims-Plugin_Doc/qgis._core.QgsVectorFileWriter.OptionType-class.html
|
HTML
|
bsd-3-clause
| 9,508
|
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<?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 lang="en-us" xml:lang="en-us">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="reference" name="DC.Type" />
<meta name="DC.Title" content="TableSubquery" />
<meta content="TableSubquery" name="DC.subject" />
<meta content="TableSubquery" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="rrefqueries.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rreftablesubquery" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>TableSubquery</title>
</head>
<body id="rreftablesubquery"><a name="rreftablesubquery"><!-- --></a>
<h1 class="topictitle1">TableSubquery</h1>
<div>
<div class="section">
<p>A <em>TableSubquery</em> is a subquery that returns
multiple rows.</p>
<div class="p">Unlike a <em><a href="rrefscalarsubquery.html#rrefscalarsubquery">ScalarSubquery</a>,</em> a <em>TableSubquery</em> is allowed only:
<ul>
<li>as a <em><a href="rreftableexpression.html#rreftableexpression">TableExpression</a></em> in
a <a href="rrefsqlj21583.html#rrefsqlj21583">FROM clause</a></li>
<li>with EXISTS, IN, or quantified comparisons.</li>
</ul>
</div>
<p>When used as a <em><a href="rreftableexpression.html#rreftableexpression">TableExpression</a></em> in a <a href="rrefsqlj21583.html#rrefsqlj21583">FROM clause</a>, it can return
multiple columns. When used with EXISTS, it returns multiple columns only
if you use * to return the multiple columns.</p>
<p>When used with IN or quantified
comparisons, it must return a single column.</p>
</div>
<div class="section"><h4 class="sectiontitle">Syntax</h4>
<pre><strong>( <em><a href="rrefsqlj21571.html#rrefsqlj21571">Query</a></em>
[ <em><a href="rrefsqlj13658.html#rrefsqlj13658">ORDER BY clause</a></em> ]
[ <em><a href="rrefsqljoffsetfetch.html#rrefsqljoffsetfetch">result offset clause</a></em> ]
[ <em><a href="rrefsqljoffsetfetch.html#rrefsqljoffsetfetch">fetch first clause</a></em> ]
)</strong></pre>
</div>
<div class="example"><h4 class="sectiontitle">Example</h4><pre><strong><span>-- a subquery used as a TableExpression in a FROM clause</span>
SELECT VirtualFlightTable.flight_ID
FROM
(SELECT flight_ID, orig_airport, dest_airport
FROM Flights
WHERE (orig_airport = 'SFO' OR dest_airport = 'SCL') )
AS VirtualFlightTable
<span>-- a subquery (values expression) used as a TableExpression
-- in a FROM clause</span>
SELECT mycol1
FROM
(VALUES (1, 2), (3, 4))
AS mytable (mycol1, mycol2)
<span>-- a subquery used with EXISTS</span>
SELECT *
FROM Flights
WHERE EXISTS
(SELECT * FROM Flights WHERE dest_airport = 'SFO'
AND orig_airport = 'GRU')
<span>-- a subquery used with IN</span>
SELECT flight_id, segment_number
FROM Flights
WHERE flight_id IN
(SELECT flight_ID
FROM Flights WHERE orig_airport = 'SFO'
OR dest_airport = 'SCL')
<span>-- a subquery with ORDER BY and FETCH FIRST clauses</span>
SELECT flight_id, segment_number
FROM Flights
WHERE flight_id IN
(SELECT flight_ID
FROM Flights WHERE orig_airport = 'SFO'
OR dest_airport = 'SCL' ORDER BY flight_id FETCH FIRST 12 ROWS ONLY)
<span>-- a subquery used with a quantified comparison</span>
SELECT NAME, COMM
FROM STAFF
WHERE COMM >
(SELECT AVG(BONUS + 800)
FROM EMPLOYEE
WHERE COMM < 5000)</strong></pre>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rrefqueries.html" title="">SQL queries</a></div>
</div>
</div>
</body>
</html>
|
armoredsoftware/protocol
|
measurer/hotspot-measurer/jdk1.6.0_45/db/docs/html/ref/rreftablesubquery.html
|
HTML
|
bsd-3-clause
| 5,093
|
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<?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 lang="en-us" xml:lang="en-us">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="reference" name="DC.Type" />
<meta name="DC.Title" content="CallableStatements and INOUT Parameters" />
<meta content="java.sql.CallableStatement, and INOUT parameters" name="DC.subject" />
<meta content="java.sql.CallableStatement, and INOUT parameters" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="rrefjdbc20485.html" />
<meta scheme="URI" name="DC.Relation" content="rrefjavcallstatout.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rrefjdbc75719" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>CallableStatements and INOUT Parameters </title>
</head>
<body id="rrefjdbc75719"><a name="rrefjdbc75719"><!-- --></a>
<h1 class="topictitle1">CallableStatements and INOUT Parameters </h1>
<div>
<div class="section"><p>INOUT parameters map to an <em>array</em> of the parameter type
in Java. (The method must take an array as its parameter.) This conforms to
the recommendations of the SQL standard.</p>
</div>
<div class="section"><div class="p">Given the following example: <pre><strong>CallableStatement call = conn.prepareCall(
"{CALL doubleMyInt(?)}");
<span>// for inout parameters, it is good practice to
// register the outparameter before setting the input value</span>
call.registerOutParameter(1, Types.INTEGER);
call.setInt(1,10);
call.execute();
int retval = call.getInt(1);</strong></pre>
</div>
</div>
<div class="section"><div class="p">The method <em>doubleIt</em> should take a one-dimensional array
of <samp class="codeph">ints</samp>. Here is sample source code for that method: <pre><strong>public static void doubleMyInt(int[] i) {
i[0] *=2;
<span>/* <span>Derby</span> returns the first element of the array.*/</span>
}</strong></pre>
<div class="note"><span class="notetitle">Note: </span>The return value is <em>not</em> wrapped in an array
even though the parameter to the method is.</div>
<div class="tablenoborder"><table summary="" cellspacing="0" cellpadding="4" frame="border" border="1" rules="all"><caption>Table 1. INOUT
Parameter Type Correspondence</caption>
<thead align="left">
<tr>
<th align="left" valign="bottom" width="39.39393939393939%" id="N100C9">JDBC Type</th>
<th align="left" valign="bottom" width="27.27272727272727%" id="N100D2">Array Type for Method Parameter</th>
<th align="left" valign="bottom" width="33.33333333333333%" id="N100DB">Value and Return Type</th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">BIGINT</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">long[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">long</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">BINARY</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">byte[][]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">byte[]</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">BIT</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">boolean[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">boolean</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">DATE</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 "><em>java.sql.Date[]</em></td>
<td valign="top" width="33.33333333333333%" headers="N100DB "><em>java.sql.Date</em></td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">DOUBLE</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">double[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">double</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">FLOAT</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">double[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">double</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">INTEGER</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">int[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">int</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">LONGVARBINARY</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">byte[][]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">byte[]</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">REAL</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">float[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">float</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">SMALLINT</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">short[]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">short</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">TIME</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 "><em>java.sql.Time[]</em></td>
<td valign="top" width="33.33333333333333%" headers="N100DB "><em>java.sql.Time</em></td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">TIMESTAMP</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 "><em>java.sql.Timestamp[]</em></td>
<td valign="top" width="33.33333333333333%" headers="N100DB "><em>java.sql.Timestamp</em></td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">VARBINARY</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 ">byte[][]</td>
<td valign="top" width="33.33333333333333%" headers="N100DB ">byte[]</td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">OTHER</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 "><em>yourType[]</em></td>
<td valign="top" width="33.33333333333333%" headers="N100DB "><em>yourType</em></td>
</tr>
<tr>
<td valign="top" width="39.39393939393939%" headers="N100C9 ">JAVA_OBJECT (only valid in Java2/JDBC 2.0 environments)</td>
<td valign="top" width="27.27272727272727%" headers="N100D2 "><em>yourType[]</em></td>
<td valign="top" width="33.33333333333333%" headers="N100DB "><em>yourType</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="section"><p>Register the output type of the parameter before executing the
call. For INOUT parameters, it is good practice to register the output parameter
before setting its input value.</p>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rrefjdbc20485.html" title="">java.sql.CallableStatement interface</a></div>
</div>
<div class="relref"><strong>Related reference</strong><br />
<div><a href="rrefjavcallstatout.html" title="">CallableStatements and OUT Parameters</a></div>
</div>
</div>
</body>
</html>
|
armoredsoftware/protocol
|
measurer/hotspot-measurer/jdk1.6.0_45/db/docs/html/ref/rrefjdbc75719.html
|
HTML
|
bsd-3-clause
| 8,674
|
body {
margin: 0;
background-color: rgb(32,39,49);
overflow: hidden;
}
.status {
height: 1.5em;
line-height: 1.5em;
background-color: orange;
color: white;
font-family: monospace;
cursor: pointer;
}
#message {
float: left;
width: 70%;
text-align: center;
}
#user-count {
float: left;
width: 15%;
text-align: left;
}
#time-left {
float: left;
width: 15%;
text-align: right;
}
#webchat {
width: 100%;
height: 100%;
}
.col {
position: relative;
min-height: 1px;
float: left;
margin-left: 0; margin-right: 0;
padding-left: 0; padding-right: 0;
}
.col.col-right {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 25%;
}
.col.col-right.hide-chat {
width: 0;
}
.col-left {
width: 75%;
height: 100vh;
}
.col-left.hide-chat {
width: 100%;
}
.canvas-container {
text-align: center;
position: absolute;
bottom: 0;
top: 0;
margin-top: 1.5em;
width: 100%;
}
canvas {
position: relative;
}
|
Ankoku/df-webfort
|
static/webfort.css
|
CSS
|
isc
| 982
|
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="account.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>
<!-- you don't need ignore=notused in your code, this is just here to trick the cache -->
<script src="../dist/angular-grid.js?ignore=notused8"></script>
<link rel="stylesheet" type="text/css" href="../dist/angular-grid.css?ignore=notused8">
<link rel="stylesheet" type="text/css" href="../dist/theme-fresh.css?ignore=notused8">
<script src="account.js"></script>
</head>
<body ng-app="account" style="padding: 10px">
<div ng-controller="accountController" style="width: 800px;">
<div ag-grid="gridOptions" style="height: 100%;" class="ag-account">
</div>
</div>
</body>
</html>
|
Leo-g/Flask-Scaffold
|
app/templates/static/node_modules/angular-grid/docs/example-account-report/account.html
|
HTML
|
mit
| 1,409
|
{% extends 'award.html' %}
{% block css %}
<link rel=stylesheet type=text/css href="{{ theme_static('css/style.css') }}">
<link rel=stylesheet type=text/css href="{{ theme_static('css/awards.css') }}">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
{% endblock %}
|
ml-learning/coins.media.mit.edu
|
cert_viewer/themes/default/templates/award.html
|
HTML
|
mit
| 330
|
<!DOCTYPE html>
<html>
<head>
<title>Christopher Columbus, Part 2 | Explorers | Wilbur F. Gordy | Lit2Go ETC</title>
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5574891-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$(document).ready(function() {
$('img').unveil();
$('#contactable').contactable({
url: 'http://etc.usf.edu/lit2go/welcome/feedback/',
subject: 'Lit2Go Feedback — Christopher Columbus, Part 2 | Explorers | Wilbur F. Gordy — http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/'
});
});
</script>
</head>
<body>
<div class="page"> <header>
<h1>
<a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a>
</h1>
<ul>
<li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li>
</ul>
</header>
<nav id="shell">
<ul>
<li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li>
<li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li>
<li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li>
<li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li>
<li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li>
</ul>
</nav>
<section id="content">
<div id="contactable"><!-- contactable html placeholder --></div>
<div id="page_content">
<header>
<h2>
<a href="http://etc.usf.edu/lit2go/162/explorers/">Explorers</a>
</h2>
<h3>
by <a href="http://etc.usf.edu/lit2go/authors/194/fcit/">FCIT</a>
</h3>
</header>
<h4>
Christopher Columbus, Part 2 </h4>
<h5>
by <a href="http://etc.usf.edu/lit2go/authors/187/wilbur-f-gordy/">Wilbur F. Gordy</a>
</h5>
<div id="default">
<details open>
<summary>
Additional Information
</summary>
<div id="columns">
<ul>
<li>
<strong>Year Published:</strong>
1917 </li>
<li>
<strong>Language:</strong>
English </li>
<li>
<strong>Country of Origin:</strong>
United States of America </li>
<li>
<strong>Source:</strong>
Gordy, W.F. (1917). <em>American Leaders and Heroes</em>. New York: Charles Scribner’s Sons. </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Readability:</strong>
<ul>
<li>
Flesch–Kincaid Level:
<a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/8/" title="Flesch–Kincaid Grade Level 8.8">8.8</a>
</li>
</ul>
</li>
<li>
<strong>Word Count:</strong>
1,293 </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Genre:</strong>
<a href="http://etc.usf.edu/lit2go/genres/14/history/">History</a>
</li>
<li>
<a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a>
</li>
<li>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&pub=roywinkelman" class="addthis_button_compact">Share</a>
<span class="addthis_separator">|</span>
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
</div>
<script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script>
<!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> -->
<!-- AddThis Button END -->
</li>
</ul>
</div>
<h4>Downloads</h4>
<ul id="downloads">
<li>
<a href="http://etc.usf.edu/lit2go/audio/mp3/explorers-002-christopher-columbus-part-2.4236.mp3">Audio</a>
</li>
<li>
<a href="http://etc.usf.edu/lit2go/pdf/passage/4236/explorers-002-christopher-columbus-part-2.pdf">Passage PDF</a>
</li>
<li><a href="http://etc.usf.edu/lit2go/pdf/student_activity/4236/4236-1.pdf">Student Activity</a></li>
</ul>
<hr>
</details>
<div class="modal hide" id="cite_this">
<script>
$($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');}));
</script>
<nav>
<ul id="myTab">
<li class="active">
<a href="#apa" data-toggle="tab">APA</a>
</li>
<li>
<a href="#mla" data-toggle="tab">MLA</a>
</li>
<li>
<a href="#chicago" data-toggle="tab">Chicago</a>
</li>
</ul>
</nav>
<div class="tab-content">
<div class="content tab-pane hide active" id="apa">
<p class="citation">
Gordy, W. (1917). Christopher Columbus, Part 2. <em>Explorers</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/</span>
</p>
</div>
<div class="content tab-pane" id="mla">
<p class="citation">
Gordy, Wilbur F.. "Christopher Columbus, Part 2." <em>Explorers</em>. Lit2Go Edition. 1917. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/</span>>. February 15, 2016.
</p>
</div>
<div class="content tab-pane" id="chicago">
<p class="citation">
Wilbur F. Gordy, "Christopher Columbus, Part 2," <em>Explorers</em>, Lit2Go Edition, (1917), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/</span>.
</p>
</div>
</div>
</div>
<span class="top"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/162/explorers/4232/christopher-columbus-part-1/" title="Christopher Columbus, Part 1" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/162/explorers/4239/hernando-de-soto/" title="Hernando de Soto" class="next">Next</a></li>
</ul>
</nav>
</span>
<div id="shrink_wrap">
<div id="i_apologize_for_the_soup">
<audio controls style="width:99%;">
<source src="http://etc.usf.edu/lit2go/audio/mp3/explorers-002-christopher-columbus-part-2.4236.mp3" type="audio/mpeg" />
<source src="http://etc.usf.edu/lit2go/audio/ogg/explorers-002-christopher-columbus-part-2.4236.ogg" type="audio/ogg" />
The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today!
</audio>
<p>
Columbus called the people he saw “Indians.” He thought he was in the East Indies. These people hid in the woods. They were afraid. Later they came back to worship the white men. They thought the white men came from he sky. They thought the ships were birds and the sails wings. Columbus and his men traded with the Indians. They gave tiny bells, red caps, and glass beads. They wanted the tame parrots, cotton yarn, and gold the natives wore in their noses.</p>
<p>
Columbus wrote in his journal saying they were very poor. Their skin was dark and they wore no clothes. They seemed to be young and strong. Their hair was long in back. It was cut short over in front. Colors were painted all over their bodies. The men carried sticks. The tips were made of pointed fish-bones. They rode in canoes with paddles that looked like wooden shovels.</p>
<p>
The canoes were made of tree trunks. Some were large enough to carry forty men. Homes were put in groups of twelve to fifteen. They were shaped like tents and had high chimneys. Inside the tents, hanging between posts, were nets used as beds and called “hammocks.”</p>
<p>
Columbus called the island where he landed San Salvador (Holy Savior). He wrote: “I know not where first to go, nor are my eyes ever weary . . .” of looking. The singing of the birds was so pretty he never wanted to leave. There were so many parrots he could hardly see the sun. In fact all of the birds were very different from any he had seen. The many kinds of trees had fruits of all different tastes.</p>
<p>
Columbus sailed about landing here and there. He sent parties to find out about the land and people. Everywhere he looked for the cities of Asia. He always believed that he was in East Indies.</p>
<p>
On Christmas morning (December 25, 1492), the Santa María ran up on a sandbar. It was still dark. The waves soon broke her in pieces. As the Pinta had already gone. Now the Niña was the only ship left. This little vessel was too small for all the men. Forty men wanted to stay where they were. They wanted to build a fort out of the wood from the Santa María. The ship’s guns would keep the fort safe. These men had supplies for one year. They began the first Spanish settlement.</p>
<p>
On January 4, 1493, the Niña sailed for Spain. On February 12th, a great storm began breaking up the little Niña. Poor Columbus! He was afraid. He and his men had gone through so many hard things. Were they going to die in this strange sea? Was the world never going to hear about his new world?</p>
<p>
Columbus wrote two papers about his discovery. He sealed them. He addressed them to Ferdinand and Isabella. He wrapped each in a cloth. He put big cakes of wax around them. Columbus placed them in barrels. One barrel he tossed into the sea. The other barrel stayed on deck with him. The Niña passed safely through the storm. On March 15th, seven and a half months after they left, the Niña came home.</p>
<p>
The king and queen welcomed him. There was a great parade. Six Indians whom Columbus had brought back with him walked in the parade. They were painted, wore feathers, and bits of gold. Next came men carrying birds and animal skins from the New Land. Columbus rode on horseback. Many of Spain’s great men rode horses beside him.</p>
<p>
The parade stopped at the house where King Ferdinand and Queen Isabella waited. Columbus went into the throne room. They stood up to honor him. When he bowed to kiss their hands they asked him to rise and sit by them.</p>
<p>
The poor sailor, once despised as an idle dreamer, had become a distinguished personage, honored alike by kings and princes and people. It was no longer necessary to force men by royal decree to sail with the great admiral. Many were now eager to go where they might reap wealth and honor.</p>
<p>
In September, 1493, Columbus again sailed, this time with a fleet of seventeen vessels and fifteen hundred men. Many of the latter were young men of noble birth, and belonged to families of wide influence. All supposed they were going to the East Indies, the land of jewels and spices and precious metals. With the purpose of founding a colony, Columbus took with him not only horses, mules, and cattle, but vines, vegetables, and seeds of many kinds.</p>
<p>
When the fleet reached the island of Hayti, and the place where he had in the previous winter left the little colony of forty men, he found that the fort and provisions had been destroyed, and that eleven corpses had been buried near by; but not one of the forty men was ever again seen alive. After building a little town, called Isabella in honor of the queen, Columbus began exploring by land and sea. He found much that was beautiful and interesting, but much more that was disappointing. Moreover, the Indians were sometimes unfriendly, and his own men were often unruly and treacherous. At length, after four years of varying fortune, he started home, and after a long, hard voyage, during which provisions gave out, he and his men, weak with hunger, finally reached Spain in June. He was kindly received and was promised more ships for another voyage.</p>
<p>
In May, 1498, with six vessels and two hundred men besides the sailors, Columbus started on a third voyage, this time directing his course more to the south than he had done before. He landed on an island, which he named Trinidad, and then sailed along the northern coast of South America.</p>
<p>
He was not well, however, and in August turned his course for Santo Domingo, where he found things were going badly. Trouble with the Indians had arisen, and even more serious trouble in the colony itself had broken out. For two years Columbus struggled to set things right. But he was not successful as a colonizer. Besides, many people were beginning to lose faith in him because he did not get expected treasures for Spain. Many others were jealous of his fame, and plotted to ruin him. At length an official was sent from Spain to Hayti to look into the situation. When he reached the island he confiscated Columbus’s property, put him in chains, and sent him as a prisoner to the country from which he had but recently sailed with high honor.</p>
<p>
In Spain the people were sympathy with the admiral in his disgrace; so too was the queen, who sent money and summoned him to court. She received him there with tears in her eyes, and he broke down and wept at her feet.</p>
<p>
In 1502 Columbus started on a fourth voyage, sailing along the eastern coast of Central America. But he was not able to accomplish much, and finally suffered a shipwreck on the island of Jamaica, where he spent a year of misery. At last he set out for home, arriving there only a short time before Queen Isabella, his only protector, died.</p>
<p>
Poor, sick, and discouraged, Columbus dragged out a weary life for eighteen months longer. He died in Spain of a broken heart, May 20, 1506, in utter ignorance of the greatness of his discovery. So little appreciated was he that the city annals make no mention of his death. It remained for succeeding generations to lift his name from obscurity and to give faithful acknowledgement of his achievements in the advance of human progress.</p>
</div>
</div>
<span class="bottom"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/162/explorers/4232/christopher-columbus-part-1/" title="Christopher Columbus, Part 1" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/162/explorers/4239/hernando-de-soto/" title="Hernando de Soto" class="next">Next</a></li>
</ul>
</nav>
</span>
</div>
</div>
</section>
<footer screen>
<div id="footer-text">
<p>
This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>.
</p>
<p>
Copyright © 2006—2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>.
</p>
</div>
<ul id="footer-links">
<li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li>
<li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li>
</ul>
</footer>
<footer print>
<div id="footer-text">
<p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/">http://etc.usf.edu/lit2go/162/explorers/4236/christopher-columbus-part-2/</a>.</p>
</div>
<div id="book-footer">
<p>Lit2Go: <em>Explorers</em></p>
<p>Christopher Columbus, Part 2</p>
</div>
</footer>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script>
</div>
</body>
</html>
|
adrianosb/HtmlToText
|
lit2go.ok/162/explorers/4236/christopher-columbus-part-2/index.html
|
HTML
|
mit
| 18,172
|
<!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_35) on Tue Oct 16 22:49:49 ICT 2012 -->
<TITLE>
Uses of Class org.apache.fop.render.rtf.rtflib.rtfdoc.RtfGenerator (Apache FOP 1.1 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-16">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.fop.render.rtf.rtflib.rtfdoc.RtfGenerator (Apache FOP 1.1 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfGenerator.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.1</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?org/apache/fop/render/rtf/rtflib/rtfdoc//class-useRtfGenerator.html" target="_top"><B>FRAMES</B></A>
<A HREF="RtfGenerator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.fop.render.rtf.rtflib.rtfdoc.RtfGenerator</B></H2>
</CENTER>
No usage of org.apache.fop.render.rtf.rtflib.rtfdoc.RtfGenerator
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfGenerator.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.1</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?org/apache/fop/render/rtf/rtflib/rtfdoc//class-useRtfGenerator.html" target="_top"><B>FRAMES</B></A>
<A HREF="RtfGenerator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
|
kardeiz/fop_wrapper
|
vendor/fop-1.1/javadocs/org/apache/fop/render/rtf/rtflib/rtfdoc/class-use/RtfGenerator.html
|
HTML
|
mit
| 6,325
|
<!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 content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>ASP.NET Boilerplate documentation</title>
<link type="text/css" rel="stylesheet" href="bootstrap.min.css" />
<style type="text/css">
</style>
</head>
<body>
<ul>
<li><a href="#DocIntroduction">Introduction</a></li>
<li><a href="#DocInjectingSession">Injecting session</a></li>
<li><a href="#DocUsingSession">Using session properties</a></li>
</ul>
<h3 id="DocIntroduction">Introduction</h3>
<p>If an application requires login, it also needs to know the current user
performing operations. While ASP.NET itself provides Session objects in the
presentation layer, ASP.NET Boilerplate provides <strong>IAbpSession</strong>
interface to obtain current user and tenant wherever needed.</p>
<div class="bs-callout bs-callout-warning">
<h4>About IAbpSession</h4>
<p><span class="auto-style1">IAbpSession</span>
interface must be implemented in order to get actual session informations. While you can
implement it in your own way, it's fully implemented in <strong>module-zero</strong>
project.</p>
</div>
<p>IAbpSession is also fully integrated and used by other structures in ASP.NET
Boilerplate (setting system and authorization system for instance).</p>
<h3 id="DocInjectingSession">Injecting session</h3>
<p>IAbpSession is generally <strong>
<a href="/Pages/Documents/Dependency-Injection#DocPropertyInjection">
property injected</a></strong> to needed classes unless it's not possible to
work without session informations. If we use property injection, we can use
<strong>NullAbpSession.Instance</strong> as default value as shown below:</p>
<pre lang="cs">public class MyClass : ITransientDependency
{
public IAbpSession AbpSession { get; set; }
public MyClass()
{
AbpSession = NullAbpSession.Instance;
}
public void MyMethod()
{
var currentUserId = AbpSession.UserId;
//...
}
}</pre>
<p>Since authorization is a application layer task, it's adviced to <strong>use
IAbpSession in application layer and upper layers</strong> (we don't use it in
domain layer normally). <strong>ApplicationService</strong>, <strong>
AbpController</strong> and <strong>AbpApiController</strong> base classes has
<strong>AbpSession</strong> already injected. So, you can directly use
AbpSession property in an application service method for instance.</p>
<h3 id="DocUsingSession">Using session properties</h3>
<p>AbpSession defines a few key properties:</p>
<ul>
<li><strong>UserId</strong>: Id of the current user or null if there
is no current user. It can not be null if the calling code is authorized.</li>
<li><strong>TenantId</strong>: Id of the current tenant or null if there is
no current tenant.</li>
<li><strong>MultiTenancySide</strong>: It may be Host or Tenant.</li>
</ul>
<p>UserId and TenantId is <strong>nullable</strong>. There is also non-nullable
<strong>GetUserId()</strong> and <strong>GetTenantId()</strong> methods. If
you're sure there is a current user, you can call GetUserId(). If current user
is null, this method throws exception. GetTenantId() is also similar.</p>
</body>
</html>
|
ibrahimonat/aspnetboilerplate-doc
|
src/tr/WebSiteContents/abp-session.html
|
HTML
|
mit
| 3,329
|
/* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript&plugins=line-numbers */
/**
* okaidia theme for JavaScript, CSS and HTML
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
* @author ocodia
*/
code[class*="language-"],
pre[class*="language-"] {
color: #f8f8f2;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
font-family: Consolas, Monaco, 'Andale Mono', monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 0.3em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #272822;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #f8f8f2;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #f92672;
}
.token.boolean,
.token.number {
color: #ae81ff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #a6e22e;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
color: #f8f8f2;
}
.token.atrule,
.token.attr-value,
.token.function {
color: #e6db74;
}
.token.keyword {
color: #66d9ef;
}
.token.regex,
.token.important {
color: #fd971f;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre.line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
display: inline-block;
/*font-size: 12px;*/
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
pre[data-line] {
position: relative;
padding: 1em 0 1em 3em;
}
.line-highlight {
position: absolute;
left: 0;
right: 0;
padding: inherit 0;
margin-top: 1em; /* Same as .prism’s padding-top */
/*background: hsla(24, 20%, 50%,.08);*/
background: rgba(255, 255, 255, 0.2);
pointer-events: none;
line-height: inherit;
white-space: pre;
}
.line-highlight:before,
.line-highlight[data-end]:after {
content: attr(data-start);
position: absolute;
top: .4em;
left: .6em;
min-width: 1em;
padding: 0 .5em;
background-color: hsla(24, 20%, 50%,.4);
color: hsl(24, 20%, 95%);
font: bold 65%/1.5 sans-serif;
text-align: center;
vertical-align: .3em;
border-radius: 999px;
text-shadow: none;
box-shadow: 0 1px white;
}
.line-highlight[data-end]:after {
content: attr(data-end);
top: auto;
bottom: .4em;
}
|
zalora/oms-capture
|
app/src/css/prism.css
|
CSS
|
mit
| 3,472
|
<div #container class="osd-toolbar" [ngStyle]="osdToolbarStyle">
<div fxHide fxShow.gt-sm="true">
<div
class="osd-toolbar-container"
fxLayout="column"
fxLayoutAlign="center center"
>
<div class="osd-toolbar-row"> </div>
<div class="osd-toolbar-row">
<ng-container *ngIf="invert">
<button
id="navigateBeforeButton"
mat-icon-button
[attr.aria-label]="intl.previousPageLabel"
[matTooltip]="intl.previousPageLabel"
[disabled]="isFirstCanvasGroup"
(click)="goToPreviousCanvasGroup()"
>
<mat-icon>navigate_before</mat-icon>
</button>
</ng-container>
<ng-container *ngIf="!invert">
<button
id="navigateNextButton"
mat-icon-button
[attr.aria-label]="intl.nextPageLabel"
[matTooltip]="intl.nextPageLabel"
[disabled]="isLastCanvasGroup"
(click)="goToNextCanvasGroup()"
>
<mat-icon>navigate_before</mat-icon>
</button>
</ng-container>
<button
(click)="home()"
id="homeButton"
mat-icon-button
[attr.aria-label]="intl.homeLabel"
[matTooltip]="intl.homeLabel"
>
<mat-icon>home</mat-icon>
</button>
<ng-container *ngIf="invert">
<button
id="navigateNextButton"
mat-icon-button
[attr.aria-label]="intl.nextPageLabel"
[matTooltip]="intl.nextPageLabel"
[disabled]="isLastCanvasGroup"
(click)="goToNextCanvasGroup()"
>
<mat-icon>navigate_next</mat-icon>
</button>
</ng-container>
<ng-container *ngIf="!invert">
<button
id="navigateBeforeButton"
mat-icon-button
[attr.aria-label]="intl.previousPageLabel"
[matTooltip]="intl.previousPageLabel"
[disabled]="isFirstCanvasGroup"
(click)="goToPreviousCanvasGroup()"
>
<mat-icon>navigate_next</mat-icon>
</button>
</ng-container>
</div>
<div class="osd-toolbar-row">
<button
(click)="zoomIn()"
id="zoomInButton"
mat-icon-button
[attr.aria-label]="intl.zoomInLabel"
[matTooltip]="intl.zoomInLabel"
>
<mat-icon>zoom_in</mat-icon>
</button>
<button
(click)="rotate()"
id="rotateButton"
mat-icon-button
[attr.aria-label]="intl.rotateCwLabel"
[matTooltip]="intl.rotateCwLabel"
>
<mat-icon>rotate_right</mat-icon>
</button>
<button
(click)="zoomOut()"
id="zoomOutButton"
mat-icon-button
[attr.aria-label]="intl.zoomOutLabel"
[matTooltip]="intl.zoomOutLabel"
>
<mat-icon>zoom_out</mat-icon>
</button>
</div>
</div>
</div>
</div>
|
raymondkarstensen/ngx-mime
|
libs/ngx-mime/src/lib/viewer/osd-toolbar/osd-toolbar.component.html
|
HTML
|
mit
| 3,068
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Antic+Slab|Fira+Sans" rel="stylesheet">
<link rel="stylesheet" media="screen" href="{{ site.baseurl }}/css/screen.css">
{% if page.print_stylesheet %}
<link rel="stylesheet" media="print" href="{{ site.baseurl }}/css/print.css">
{% endif %}
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicon.png">
{% seo %}
{% feed_meta %}
{% if jekyll.environment == 'production' and site.google_analytics_key != '' %}
<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", "{{ site.google_analytics_key }}", "auto");
ga("send", "pageview");
</script>
{% endif %}
</head>
<body>
{% include navigation.html %}
<header>
<a href="{{site.baseurl }}/">
<img src="{{ site.baseurl }}/images/logo.svg" width="180" alt="logo">
</a>
</header>
<div class="container main-content">
<section class="content">{{ content }}</section>
{% include sidebar.html %}
</div>
<footer>
<div class="container">
<hr>
© {{ site.title }} {{ site.time | date: "%Y" }}. All rights reserved.
</div>
</footer>
</body>
</html>
|
VB23/beaverbakewar.com
|
_layouts/default.html
|
HTML
|
mit
| 1,547
|
<!DOCTYPE html>
<html>
<head>
<title>Virtual Scrolling</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<link rel='stylesheet' href="support/common.css" />
<style type="text/css">
.gridx {
width: 700px;
height: 200px;
}
</style>
<script type="text/javascript" src="../../dojo/dojo.js" data-dojo-config="async: true"></script>
<script type="text/javascript" src='support/common.js'></script>
<script type="text/javascript" src='test_grid_virtualScroller.js'></script>
</head>
<body class='claro'>
<h1 class='title' tabindex='0' onfocus='this.style.color="blue"' onblur='this.style.color=""'>
Virtual Scrolling
</h1>
<h2>Big Client Store (2000 rows)</h2>
<div id='grid1' jsid='grid1' data-dojo-type='gridx.Grid' data-dojo-props='
cacheClass: "gridx/core/model/cache/Async",
store: clientStore,
structure: layout,
modules: [
"gridx/modules/ColumnResizer",
"gridx/modules/VirtualVScroller"
]
'></div>
<h2>Huge Server Store (100000 rows, lazy scroll)</h2>
<p>Please note - All data are loaded from a <a href="support/stores/QueryReadStore.php?start=0&count=100">third party server</a>, so loading speed will be highly dependent on the network and stability of the service.</p>
<div id='grid2' jsid='grid2' data-dojo-type='gridx.Grid' data-dojo-props='
cacheClass: "gridx/core/model/cache/Async",
store: serverStore,
structure: serverLayout,
pageSize: 30,
vScrollerLazy: true,
modules: [
"gridx/modules/ColumnResizer",
"gridx/modules/TouchScroll",
"gridx/modules/VirtualVScroller"
]
'></div>
</body>
</html>
|
mbouami/progiss
|
web/js/gridx/tests/test_grid_virtualScroller.html
|
HTML
|
mit
| 1,605
|
<html>
<head>
<title>libvorbis - function - vorbis_comment_init</title>
<link rel=stylesheet href="style.css" type="text/css">
</head>
<body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff">
<table border=0 width=100%>
<tr>
<td><p class=tiny>libvorbis documentation</p></td>
<td align=right><p class=tiny>libvorbis version 1.3.2 - 20101101</p></td>
</tr>
</table>
<h1>vorbis_comment_init</h1>
<p><i>declared in "vorbis/codec.h";</i></p>
<p>This function initializes a <a href="vorbis_comment.html">vorbis_comment</a>
structure for use. After calling this function, the vorbis_comment
structure contains no comments.</p>
<p><i>Note:</i> No internal storage is allocated by this function;
internal storage is allocated as needed by other libvorbis functions that
modify the vorbis_comment structure. If you modify the vorbis_comment
structure directly, without using libvorbis, you should <i>not</i>
call <a href="vorbis_comment_clear.html">vorbis_comment_clear</a> when
you are finished but instead clean up after it yourself. See the note
on the <a href="vorbis_comment_clear.html">vorbis_comment_clear</a>
page for more information.</p>
<table border=0 color=black cellspacing=0 cellpadding=7>
<tr bgcolor=#cccccc>
<td>
<pre><b>
extern void vorbis_comment_init(vorbis_comment *vc);
</b></pre>
</td>
</tr>
</table>
<h3>Parameters</h3>
<dl>
<dt><i>vc</i></dt>
<dd>Pointer to the <a href="vorbis_comment.html">vorbis_comment</a>
structure to initialize.</dd>
</dl>
<h3>Return Values</h3>
<blockquote>
<li>None.</li>
</blockquote>
<p>
<br><br>
<hr noshade>
<table border=0 width=100%>
<tr valign=top>
<td><p class=tiny>copyright © 2010 Xiph.Org</p></td>
<td align=right><p class=tiny><a href="https://xiph.org/vorbis/">Ogg Vorbis</a></p></td>
</tr><tr>
<td><p class=tiny>libvorbis documentation</p></td>
<td align=right><p class=tiny>libvorbis version 1.3.2 - 20101101</p></td>
</tr>
</table>
</body>
</html>
|
Jean-LouisH/LaniaEngine
|
thirdparty/libvorbis-1.3.7/doc/libvorbis/vorbis_comment_init.html
|
HTML
|
mit
| 1,954
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (1.8.0_171) on Mon Apr 22 17:36:00 CST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>类分层结构 (android API)</title>
<meta name="date" content="2019-04-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="\u7C7B\u5206\u5C42\u7ED3\u6784 (android API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>您的浏览器已禁用 JavaScript。</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="overview-summary.html">概览</a></li>
<li>程序包</li>
<li>类</li>
<li class="navBarCell1Rev">树</li>
<li><a href="deprecated-list.html">已过时</a></li>
<li><a href="index-files/index-1.html">索引</a></li>
<li><a href="help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="index.html?overview-tree.html" target="_top">框架</a></li>
<li><a href="overview-tree.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">所有类</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">所有程序包的分层结构</h1>
<span class="packageHierarchyLabel">程序包分层结构:</span>
<ul class="horizontal">
<li><a href="cn/jpush/im/android/api/package-tree.html">cn.jpush.im.android.api</a>, </li>
<li><a href="cn/jpush/im/android/api/callback/package-tree.html">cn.jpush.im.android.api.callback</a>, </li>
<li><a href="cn/jpush/im/android/api/content/package-tree.html">cn.jpush.im.android.api.content</a>, </li>
<li><a href="cn/jpush/im/android/api/content/subcontent/package-tree.html">cn.jpush.im.android.api.content.subcontent</a>, </li>
<li><a href="cn/jpush/im/android/api/enums/package-tree.html">cn.jpush.im.android.api.enums</a>, </li>
<li><a href="cn/jpush/im/android/api/event/package-tree.html">cn.jpush.im.android.api.event</a>, </li>
<li><a href="cn/jpush/im/android/api/exceptions/package-tree.html">cn.jpush.im.android.api.exceptions</a>, </li>
<li><a href="cn/jpush/im/android/api/jmrtc/package-tree.html">cn.jpush.im.android.api.jmrtc</a>, </li>
<li><a href="cn/jpush/im/android/api/model/package-tree.html">cn.jpush.im.android.api.model</a>, </li>
<li><a href="cn/jpush/im/android/api/options/package-tree.html">cn.jpush.im.android.api.options</a>, </li>
<li><a href="cn/jpush/im/api/package-tree.html">cn.jpush.im.api</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="类分层结构">类分层结构</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/BaseNotificationEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">BaseNotificationEvent</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ContactNotifyEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">ContactNotifyEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovalEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupApprovalEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovalRefuseEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupApprovalRefuseEvent</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/BaseNotificationEvent.Builder.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">BaseNotificationEvent.Builder</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ContactNotifyEvent.Builder.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">ContactNotifyEvent.Builder</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovalEvent.Builder.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupApprovalEvent.Builder</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovalRefuseEvent.Builder.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupApprovalRefuseEvent.Builder</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.api.<a href="cn/jpush/im/api/BasicCallback.html" title="cn.jpush.im.api中的类"><span class="typeNameLink">BasicCallback</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/CommandNotificationEvent.GetTargetInfoCallback.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">CommandNotificationEvent.GetTargetInfoCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/CreateGroupCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">CreateGroupCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/DownloadAvatarCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">DownloadAvatarCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/DownloadCompletionCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">DownloadCompletionCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetAvatarBitmapCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetAvatarBitmapCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetBlacklistCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetBlacklistCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetChatRoomSilencesCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetChatRoomSilencesCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetGroupIDListCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetGroupIDListCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetGroupInfoCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetGroupInfoCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetGroupInfoListCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetGroupInfoListCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetGroupMembersCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetGroupMembersCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetNoDisurbListCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetNoDisurbListCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetReceiptDetailsCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetReceiptDetailsCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetUserInfoCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetUserInfoCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetUserInfoListCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetUserInfoListCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/ImageContent.CreateImageContentCallback.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">ImageContent.CreateImageContentCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/IntegerCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">IntegerCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/ProgressUpdateCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">ProgressUpdateCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/PublishAnnouncementCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">PublishAnnouncementCallback</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/RequestCallback.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">RequestCallback</span></a><T></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/ChatRoomInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">ChatRoomInfo</span></a></li>
<li type="circle">cn.jpush.im.android.api.<a href="cn/jpush/im/android/api/ChatRoomManager.html" title="cn.jpush.im.android.api中的类"><span class="typeNameLink">ChatRoomManager</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ChatRoomNotificationEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">ChatRoomNotificationEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/CommandNotificationEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">CommandNotificationEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.<a href="cn/jpush/im/android/api/ContactManager.html" title="cn.jpush.im.android.api中的类"><span class="typeNameLink">ContactManager</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/Conversation.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">Conversation</span></a> (implements java.io.Serializable)</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ConversationRefreshEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">ConversationRefreshEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/DeviceInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">DeviceInfo</span></a></li>
<li type="circle">cn.jpush.im.android.api.callback.<a href="cn/jpush/im/android/api/callback/GetReceiptDetailsCallback.ReceiptDetails.html" title="cn.jpush.im.android.api.callback中的类"><span class="typeNameLink">GetReceiptDetailsCallback.ReceiptDetails</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupAnnouncement.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">GroupAnnouncement</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupAnnouncementChangedEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupAnnouncementChangedEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupAnnouncementChangedEvent.ChangeEntity.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupAnnouncementChangedEvent.ChangeEntity</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovedNotificationEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupApprovedNotificationEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupBasicInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">GroupBasicInfo</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">GroupInfo</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupBlackListChangedEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupBlackListChangedEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupBlackListChangedEvent.ChangeEntity.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupBlackListChangedEvent.ChangeEntity</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupMemberInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">GroupMemberInfo</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupMemNicknameChangedEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupMemNicknameChangedEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupMemNicknameChangedEvent.ChangeEntity.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">GroupMemNicknameChangedEvent.ChangeEntity</span></a></li>
<li type="circle">cn.jpush.im.android.api.<a href="cn/jpush/im/android/api/JMessageClient.html" title="cn.jpush.im.android.api中的类"><span class="typeNameLink">JMessageClient</span></a></li>
<li type="circle">cn.jpush.im.android.api.jmrtc.<a href="cn/jpush/im/android/api/jmrtc/JMRTCInternalUse.html" title="cn.jpush.im.android.api.jmrtc中的类"><span class="typeNameLink">JMRTCInternalUse</span></a></li>
<li type="circle">cn.jpush.im.android.api.jmrtc.<a href="cn/jpush/im/android/api/jmrtc/JMRtcNotificationEvent.html" title="cn.jpush.im.android.api.jmrtc中的类"><span class="typeNameLink">JMRtcNotificationEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/LoginStateChangeEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">LoginStateChangeEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/Message.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">Message</span></a> (implements java.io.Serializable)</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MessageBaseEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MessageBaseEvent</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ChatRoomMessageEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">ChatRoomMessageEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MessageEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MessageEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/NotificationClickEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">NotificationClickEvent</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/MessageContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">MessageContent</span></a> (implements java.lang.Cloneable)
<ul>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/CompoundContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">CompoundContent</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/VideoContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">VideoContent</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/CustomContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">CustomContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/EventNotificationContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">EventNotificationContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/LocationContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">LocationContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/MediaContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">MediaContent</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/FileContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">FileContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/ImageContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">ImageContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/VoiceContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">VoiceContent</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/PromptContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">PromptContent</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/TextContent.html" title="cn.jpush.im.android.api.content中的类"><span class="typeNameLink">TextContent</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MessageReceiptStatusChangeEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MessageReceiptStatusChangeEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MessageReceiptStatusChangeEvent.MessageReceiptMeta.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MessageReceiptStatusChangeEvent.MessageReceiptMeta</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MessageRetractEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MessageRetractEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.options.<a href="cn/jpush/im/android/api/options/MessageSendingOptions.html" title="cn.jpush.im.android.api.options中的类"><span class="typeNameLink">MessageSendingOptions</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/MyInfoUpdatedEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">MyInfoUpdatedEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/OfflineMessageEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">OfflineMessageEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.options.<a href="cn/jpush/im/android/api/options/RegisterOptionalUserInfo.html" title="cn.jpush.im.android.api.options中的类"><span class="typeNameLink">RegisterOptionalUserInfo</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/SilenceInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">SilenceInfo</span></a></li>
<li type="circle">java.lang.Throwable (implements java.io.Serializable)
<ul>
<li type="circle">java.lang.Exception
<ul>
<li type="circle">cn.jpush.im.android.api.exceptions.<a href="cn/jpush/im/android/api/exceptions/JMessageException.html" title="cn.jpush.im.android.api.exceptions中的类"><span class="typeNameLink">JMessageException</span></a>
<ul>
<li type="circle">cn.jpush.im.android.api.exceptions.<a href="cn/jpush/im/android/api/exceptions/JMFileSizeExceedException.html" title="cn.jpush.im.android.api.exceptions中的类"><span class="typeNameLink">JMFileSizeExceedException</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.content.subcontent.<a href="cn/jpush/im/android/api/content/subcontent/UploadObject.html" title="cn.jpush.im.android.api.content.subcontent中的类"><span class="typeNameLink">UploadObject</span></a> (implements java.lang.Cloneable)
<ul>
<li type="circle">cn.jpush.im.android.api.content.subcontent.<a href="cn/jpush/im/android/api/content/subcontent/FileObject.html" title="cn.jpush.im.android.api.content.subcontent中的类"><span class="typeNameLink">FileObject</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.subcontent.<a href="cn/jpush/im/android/api/content/subcontent/ImageObject.html" title="cn.jpush.im.android.api.content.subcontent中的类"><span class="typeNameLink">ImageObject</span></a></li>
</ul>
</li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/UserDeletedEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">UserDeletedEvent</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/UserInfo.html" title="cn.jpush.im.android.api.model中的类"><span class="typeNameLink">UserInfo</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/UserLogoutEvent.html" title="cn.jpush.im.android.api.event中的类"><span class="typeNameLink">UserLogoutEvent</span></a></li>
</ul>
</li>
</ul>
<h2 title="枚举分层结构">枚举分层结构</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
<ul>
<li type="circle">cn.jpush.im.android.api.enums.<a href="cn/jpush/im/android/api/enums/MessageStatus.html" title="cn.jpush.im.android.api.enums中的枚举"><span class="typeNameLink">MessageStatus</span></a></li>
<li type="circle">cn.jpush.im.android.api.enums.<a href="cn/jpush/im/android/api/enums/ConversationType.html" title="cn.jpush.im.android.api.enums中的枚举"><span class="typeNameLink">ConversationType</span></a></li>
<li type="circle">cn.jpush.im.android.api.enums.<a href="cn/jpush/im/android/api/enums/PlatformType.html" title="cn.jpush.im.android.api.enums中的枚举"><span class="typeNameLink">PlatformType</span></a></li>
<li type="circle">cn.jpush.im.android.api.enums.<a href="cn/jpush/im/android/api/enums/ContentType.html" title="cn.jpush.im.android.api.enums中的枚举"><span class="typeNameLink">ContentType</span></a></li>
<li type="circle">cn.jpush.im.android.api.enums.<a href="cn/jpush/im/android/api/enums/MessageDirect.html" title="cn.jpush.im.android.api.enums中的枚举"><span class="typeNameLink">MessageDirect</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/EventNotificationContent.EventNotificationType.html" title="cn.jpush.im.android.api.content中的枚举"><span class="typeNameLink">EventNotificationContent.EventNotificationType</span></a></li>
<li type="circle">cn.jpush.im.android.api.content.<a href="cn/jpush/im/android/api/content/PromptContent.PromptType.html" title="cn.jpush.im.android.api.content中的枚举"><span class="typeNameLink">PromptContent.PromptType</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/UserInfo.Gender.html" title="cn.jpush.im.android.api.model中的枚举"><span class="typeNameLink">UserInfo.Gender</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/UserInfo.Field.html" title="cn.jpush.im.android.api.model中的枚举"><span class="typeNameLink">UserInfo.Field</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupBasicInfo.Type.html" title="cn.jpush.im.android.api.model中的枚举"><span class="typeNameLink">GroupBasicInfo.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.model.<a href="cn/jpush/im/android/api/model/GroupMemberInfo.Type.html" title="cn.jpush.im.android.api.model中的枚举"><span class="typeNameLink">GroupMemberInfo.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ContactNotifyEvent.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">ContactNotifyEvent.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ChatRoomNotificationEvent.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">ChatRoomNotificationEvent.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/ConversationRefreshEvent.Reason.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">ConversationRefreshEvent.Reason</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/LoginStateChangeEvent.Reason.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">LoginStateChangeEvent.Reason</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupApprovalEvent.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">GroupApprovalEvent.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupBlackListChangedEvent.ChangeEntity.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">GroupBlackListChangedEvent.ChangeEntity.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/GroupAnnouncementChangedEvent.ChangeEntity.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">GroupAnnouncementChangedEvent.ChangeEntity.Type</span></a></li>
<li type="circle">cn.jpush.im.android.api.event.<a href="cn/jpush/im/android/api/event/CommandNotificationEvent.Type.html" title="cn.jpush.im.android.api.event中的枚举"><span class="typeNameLink">CommandNotificationEvent.Type</span></a></li>
</ul>
</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="跳过导航链接">跳过导航链接</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="overview-summary.html">概览</a></li>
<li>程序包</li>
<li>类</li>
<li class="navBarCell1Rev">树</li>
<li><a href="deprecated-list.html">已过时</a></li>
<li><a href="index-files/index-1.html">索引</a></li>
<li><a href="help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="index.html?overview-tree.html" target="_top">框架</a></li>
<li><a href="overview-tree.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">所有类</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>
|
raoxudong/jpush-docs
|
zh/jmessage/client/im_android_api_docs/overview-tree.html
|
HTML
|
mit
| 29,859
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="robots" content="index,follow"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer : Migrating Your PHP Dev Environment to Windows 10</title>
<meta name="description" content="">
<meta property="og:title" content="Home"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://developer.avalara.com/"/>
<meta property="og:site_name" content="Avalara Developer Network"/>
<meta property="og:description" content="Avalara AvaTax Accurate and easy sales tax calculation Automatically tie your non-taxable transactions directly to the correct exemption or reseller certificate. Determine accurate taxability & duties for millions of products and services in over 100 countries."/>
<link rel="apple-touch-icon" sizes="57x57" href="/public/images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/public/images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/public/images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/public/images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/public/images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/public/images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/public/images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/public/images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/public/images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/public/images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/public/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/public/images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/public/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/public/images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff ">
<meta name="msapplication-TileImage" content="/public/images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff ">
<link rel="stylesheet" href="/public/css/style.css">
</head>
<body id="top" data-spy="scroll" data-target="#bootstrap-scrollspy" data-product=avaTax>
<header>
<div class="pageTitle">
<a href="/">
<img src="/public/images/Avalara_logo.svg" alt="Avalara Developer Network">
<span>Developer</span>
</a>
<span class="slash">/ </span><a href="/avatax">avaTax</a>
</div>
<nav class="navbar navbar-default navbar-static">
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".js-navbar-collapse">
<span>Menu</span>
</button>
</div>
<div class="collapse navbar-collapse js-navbar-collapse">
<ul class="nav navbar-nav ">
<li class="home"><a href="/"><span class="text-uppercase">Welcome</span></a></li>
<li class="apis visible-xs-block"><a href="/avalara-apis"><span class="text-uppercase">API</span>s</a></li>
<li class="apis dropdown dropdown-large hidden-xs">
<a class="dropdown-toggle" data-toggle="dropdown"><span class="text-uppercase">API</span>s <i class="caret"></i></a>
<div class="dropdown-menu dropdown-menu-large">
<div class="row">
<div class="col-md-12"><a href="/avalara-apis">APIs overview</a></div>
</div>
<div class="row">
<div class="col-sm-8">
<h2>Tax calculation</h2>
<h4>Avalara AvaTax</h4>
<ul class="pipe">
<li><a href="/avatax">Overview</a></li>
<li><a href="/avatax/use-cases">Use cases</a></li>
<li><a href="/avatax/api-reference/tax/v1">API references</a></li>
<li><a href="/avatax/get-started">Set up your sandbox</a></li>
<li><a href="/avatax/testing-your-integration">Test your integration</a></li>
<li><a href="/avatax/certification">Integration checklists</a></li>
</ul>
<h4>Avalara Communications</h4>
<ul class="pipe">
<li><a href="/communications">Overview</a></li>
<li><a href="/communications/api-reference/saas/soap">API references</a></li>
<li><a href="/communications/certification">Integration checklists</a></li>
</ul>
<h4>Avalara Excise</h4>
<ul class="pipe">
<li><a href="/excise">Overview</a></li>
<li><a href="/excise/api-reference/tax-determination/v5_18_0">API references</a></li>
<li><a href="/excise/certification">Integration checklists</a></li>
</ul>
<h4>Avalara LandedCost</h4>
<ul class="pipe">
<li><a href="/landedcost">Overview</a></li>
<li><a href="/landedcost/api-reference/v3">API references</a></li>
</ul>
</div>
<div class="col-sm-4">
<h2>Compliance document management</h2>
<h4>Avalara CertCapture</h4>
<ul class="pipe">
<li><a href="/certcapture">Overview</a></li>
<li><a href="http://docs.certcapture6xrest.apiary.io/">API references</a></li>
<li><a href="/certcapture/certification">Integration checklists</a></li>
</ul>
<h2>Returns & filing</h2>
<h4>Avalara TrustFile</h4>
<ul class="pipe">
<li><a href="/trustfile">Overview</a></li>
<li><a href="/trustfile/api-reference/core/v3">API references</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="certification"><a href="/certification"><span class="text-uppercase">Become Certified</span></a></li>
<li class="resources dropdown dropdown-large hidden-xs">
<a class="dropdown-toggle" data-toggle="dropdown"><span class="text-uppercase">Resources</span> <b class="caret"></b></a>
<ul class="dropdown-menu dropdown-menu-large">
<li><a href="/blog">Developer Blog</a></li>
<li><a href="/resources/preferred-developers">Preferred developers</a></li>
<li><a href="https://community.avalara.com/avalara/category_sets/developers">Help Forum</a></li>
</ul>
</li>
<li class="resources visible-xs-block"><a href="/blog"><span class="text-uppercase">Developer Blog</span></a></li>
<li class="resources visible-xs-block"><a href="/resources/preferred-developers"><span class="text-uppercase">Preferred developers</span></a></li>
<li class="resources visible-xs-block"><a href="https://community.avalara.com/avalara/category_sets/developers"><span class="text-uppercase">Help Forum</span></a></li>
<li class="resources visible-xs-block"><a href="/search"><span class="text-uppercase">Search</span></a></li>
<li class="hdr-search-icon hidden-xs">
<i class="mouse glyphicon glyphicon-search mouse"></i>
</li>
<form class="hdr-search-form horizontal hidden-xs hidden">
<div class="row">
<div class="col-md-9"><label><input type="checkbox" id="filterSite"> Search entire site</label></div>
<div class="col-md-3">
<button type="button" class="close" aria-label="Close"><span>×</span></button>
</div>
</div>
<div class="row">
<div class="form-group col-md-9">
<input class="form-control" type="search" placeholder="Search Developer / Avatax" >
<span class="form-control-feedback">!</span>
</div>
<div class="form-group col-md-3">
<input type="submit" class="btn btn-primary" value="Search">
</div>
</div>
</form>
</ul>
</div>
</nav>
</header>
<div class="container-fluid blog">
<section class="row padding-sides">
<main class="col-md-12">
<div class="breadcrumbs blog">
<div class="col-md-12">
<ul class="pipe">
<li class="text-uppercase">Resources</li>
<li class="text-uppercase"><a href="/blog">Developer Blog</a></li>
<li class="text-uppercase">Migrating Your PHP Dev Environment to Windows 10</li>
</ul>
</div>
</div>
<div class="half">
<h1>Migrating Your PHP Dev Environment to Windows 10</h1>
<p class="byline">By greg.bulmash | August 12, 2015</p>
<p class="blog-content"><p>If you’ve been reading our blog, you might remember me posting about <a href="/blog/2015/06/02/avalara-php-windows">using our PHP samples for AvaTax</a> with PHP and Windows.</p>
<p>Once my personal machines were upgraded to Windows 10 (still waiting for corporate IT on the work machine), I decided to test the environment I’d previously set up on a Windows 7 machine. I used my backed-up installation of PHP 5.6.3, made sure I’d <a href="http://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/">added the PHP directory location to my machine’s path</a>, and ran the ping test.</p>
<p><img src="/public/images/blog/pingtest.jpg" alt="Screencap of PHP Ping Test Working in Windows 10" width="500" height="489" /></p>
<p>Went off without a hitch. To be honest, I didn’t expect anything different. But with a new OS upgrade, you never know where you’ll run into compatibility issues, so it’s always worth testing.</p>
<p>If you’ve got any questions about using our <a href="/avatax/sample-code">AvaTax Sample Code</a> for PHP or other issues you run into using our services with PHP, drop by our <a href="https://community.avalara.com/avalara/category_sets/developers">community site</a> and ask. We’ll try to get you an answer as quickly as we can.</p>
</p>
<p class="btn-callout"><a href="/blog" role="button">Back to posts</a></p>
</div>
</main>
</section>
</div>
<footer class="navbar navbar-default">
<ul class="social">
<li class="twitter"><a href="https://twitter.com/Avalara">Twitter</a></li>
<li class="facebook"><a href="https://www.facebook.com/avalara">Facebook</a></li>
<li class="linkedin"><a href="https://www.linkedin.com/company/avalara">LinkedIn</a></li>
<li class="youtube"><a href="https://www.youtube.com/user/Avalara1">Youtube</a></li>
</ul>
<ul class="github">
<li><a href="https://github.com/Avalara/developer-dot/edit/master/_posts/2015-08-12-migrating-your-php-dev-environment-to-windows-10.md">Edit this page on GitHub</a></li>
</ul>
<ul class="global">
<li><a href="https://www.avalara.com/"><span class="icon-sphere"></span>Avalara.com</a></li>
<li><a href="https://help.avalara.com/"><span class="icon-help"></span>Help Center</a></li>
</ul>
<ul class="legal">
<li>© Avalara, Inc. All rights reserved</li>
<li><a href="https://www.avalara.com/site-terms/">Terms of use</a></li>
<li><a href="https://www.avalara.com/privacy-policy/">Privacy Policy</a></li>
</ul>
</footer>
<script src="/public/js/vendor/jquery-2.2.4.min.js"></script>
<script src="/public/js/vendor/bootstrap.min.js"></script>
<script src="/public/js/site.js"></script>
<script src='/public/js/vendor/aws-sdk-2.5.3.min.js'></script>
<script>AWS.config.region = 'us-west-2';</script>
<!-- Google Tag Manager -->
<noscript>
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-MKB5LP" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'//www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MKB5LP');</script>
<!-- End Google Tag Manager -->
</body>
</html>
|
JeremyCraigMartinez/developer-dot
|
_test/jekyll/expected/blog/2015/08/12/migrating-your-php-dev-environment-to-windows-10/index.html
|
HTML
|
mit
| 15,453
|
<form class="form-horizontal">
<div class="form-group" error-display="startDate">
<label class="form-label col-sm-4" for="startDate" translate="SICK_DAYS.START_DATE"></label>
<div class="input-group col-sm-6">
<input type="text" id="startDate" class="form-control" ng-model="sickDays.startDate"
datepicker-popup="yyyy-MM-dd"
is-open="$parent.$parent.startDateOpened"
datepicker-options="dateOptions"
close-text="{{ 'ACTIONS.CLOSE' | translate }}"
current-text="{{ 'DATE.TODAY' | translate }}"
toggle-weeks-text="{{ 'DATE.WEEKS' | translate }}"
clear-text="{{ 'ACTIONS.CLEAR' | translate }}"/>
<span class="input-group-btn">
<button class="btn btn-default" ng-click="openDate($event, 'startDateOpened')">
<i class="glyphicon glyphicon-calendar"></i>
</button>
</span>
</div>
</div>
<div class="form-group" error-display="endDate">
<label class="form-label col-sm-4" for="endDate" translate="SICK_DAYS.END_DATE"></label>
<div class="input-group col-sm-6">
<input type="text" id="endDate" class="form-control" ng-model="sickDays.endDate"
datepicker-popup="yyyy-MM-dd"
is-open="$parent.$parent.endDateOpened"
datepicker-options="dateOptions"
close-text="{{ 'ACTIONS.CLOSE' | translate }}"
current-text="{{ 'DATE.TODAY' | translate }}"
toggle-weeks-text="{{ 'DATE.WEEKS' | translate }}"
clear-text="{{ 'ACTIONS.CLEAR' | translate }}"/>
<span class="input-group-btn">
<button class="btn btn-default" ng-click="openDate($event, 'endDateOpened')">
<i class="glyphicon glyphicon-calendar"></i>
</button>
</span>
</div>
</div>
</form>
|
agilemobiledev/trackr-frontend
|
src/modules/trackr/employee/sick_days/sick-days-edit.tpl.html
|
HTML
|
mit
| 2,031
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Form\CurrencyModificationForm | Thelia 2 API</title>
<link rel="stylesheet" type="text/css" href="../../css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="../../css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="../../css/sami.css">
<script src="../../js/jquery-1.11.1.min.js"></script>
<script src="../../js/bootstrap.min.js"></script>
<script src="../../js/typeahead.min.js"></script>
<script src="../../sami.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body id="class" data-name="class:Thelia_Form_CurrencyModificationForm" data-root-path="../../">
<div id="content">
<div id="left-column">
<div id="control-panel">
<form id="search-form" action="../../search.html" method="GET">
<span class="glyphicon glyphicon-search"></span>
<input name="search"
class="typeahead form-control"
type="search"
placeholder="Search">
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<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="../../index.html">Thelia 2 API</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="../../classes.html">Classes</a></li>
<li><a href="../../namespaces.html">Namespaces</a></li>
<li><a href="../../interfaces.html">Interfaces</a></li>
<li><a href="../../traits.html">Traits</a></li>
<li><a href="../../doc-index.html">Index</a></li>
<li><a href="../../search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div class="namespace-breadcrumbs">
<ol class="breadcrumb">
<li><span class="label label-default">class</span></li>
<li><a href="../../Thelia.html">Thelia</a></li>
<li><a href="../../Thelia/Form.html">Form</a></li>
<li>CurrencyModificationForm</li>
</ol>
</div>
<div id="page-content">
<div class="page-header">
<h1>CurrencyModificationForm</h1>
</div>
<p> class
<strong>CurrencyModificationForm</strong> extends <a href="../../Thelia/Form/CurrencyCreationForm.html"><abbr title="Thelia\Form\CurrencyCreationForm">CurrencyCreationForm</abbr></a>
</p>
<h2>Methods</h2>
<div class="container-fluid underlined">
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method___construct">__construct</a>(
<abbr title="Thelia\Form\Symfony\Component\HttpFoundation\Request">Request</abbr> $request, $type = 'form', $data = array(), $options = array())
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method___construct"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
bool
</div>
<div class="col-md-8 type">
<a href="#method_isTemplateDefinedHiddenField">isTemplateDefinedHiddenField</a>(
<abbr title="Symfony\Component\Form\FormView">FormView</abbr> $fieldView)
<p>Return true if the given field value is defined only in the HTML template, and its value is defined
in the template file, not the form builder.</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_isTemplateDefinedHiddenField"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_getRequest">getRequest</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_getRequest"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
string
</div>
<div class="col-md-8 type">
<a href="#method_getSuccessUrl">getSuccessUrl</a>(
string $default = null)
<p>Returns the absolute URL to redirect the user to if the form is successfully processed.</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_getSuccessUrl"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_createView">createView</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_createView"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
<abbr title="Symfony\Component\Form\FormView">FormView</abbr>
</div>
<div class="col-md-8 type">
<a href="#method_getView">getView</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_getView"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_setError">setError</a>(
boolean $has_error = true)
<p>Set the error status of the form.</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_setError"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
boolean
</div>
<div class="col-md-8 type">
<a href="#method_hasError">hasError</a>()
<p>Get the cuirrent error status of the form.</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_hasError"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_setErrorMessage">setErrorMessage</a>(
string $message)
<p>Set the error message related to global form error</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_setErrorMessage"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
string
</div>
<div class="col-md-8 type">
<a href="#method_getErrorMessage">getErrorMessage</a>()
<p>Get the form error message.</p> </div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_getErrorMessage"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
<abbr title="Symfony\Component\Form\Form">Form</abbr>
</div>
<div class="col-md-8 type">
<a href="#method_getForm">getForm</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/BaseForm.html#method_getForm"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
string
</div>
<div class="col-md-8 type">
<a href="#method_getName">getName</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_checkDuplicateCode">checkDuplicateCode</a>($value,
<abbr title="Thelia\Form\Symfony\Component\Validator\ExecutionContextInterface">ExecutionContextInterface</abbr> $context)
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../Thelia/Form/CurrencyCreationForm.html#method_checkDuplicateCode"><abbr title="Thelia\Form\CurrencyCreationForm">CurrencyCreationForm</abbr></a></small></div>
</div>
</div>
<h2>Details</h2>
<div id="method-details">
<div class="method-item">
<h3 id="method___construct">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method___construct"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 62</div>
<code>
<strong>__construct</strong>(
<abbr title="Thelia\Form\Symfony\Component\HttpFoundation\Request">Request</abbr> $request, $type = 'form', $data = array(), $options = array())</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Thelia\Form\Symfony\Component\HttpFoundation\Request">Request</abbr></td>
<td>$request</td>
<td></td>
</tr>
<tr>
<td></td>
<td>$type</td>
<td></td>
</tr>
<tr>
<td></td>
<td>$data</td>
<td></td>
</tr>
<tr>
<td></td>
<td>$options</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_isTemplateDefinedHiddenField">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_isTemplateDefinedHiddenField"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 124</div>
<code>
bool
<strong>isTemplateDefinedHiddenField</strong>(
<abbr title="Symfony\Component\Form\FormView">FormView</abbr> $fieldView)</code>
</h3>
<div class="details">
<div class="method-description">
<p>Return true if the given field value is defined only in the HTML template, and its value is defined
in the template file, not the form builder.</p> <p>Thus, it should not be included in the form hidden fields generated by form<em>hidden</em>fields
Smarty function, to prevent it from exiting twice in the form.</p> </div>
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Symfony\Component\Form\FormView">FormView</abbr></td>
<td>$fieldView</td>
<td></td>
</tr>
</table>
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
bool</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getRequest">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_getRequest"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 131</div>
<code>
<strong>getRequest</strong>()</code>
</h3>
<div class="details">
<div class="tags">
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getSuccessUrl">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_getSuccessUrl"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 150</div>
<code>
string
<strong>getSuccessUrl</strong>(
string $default = null)</code>
</h3>
<div class="details">
<div class="method-description">
<p>Returns the absolute URL to redirect the user to if the form is successfully processed.</p> </div>
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td>$default</td>
<td>the default URL. If not given, the configured base URL is used.</td>
</tr>
</table>
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td>an absolute URL</td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_createView">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_createView"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 164</div>
<code>
<strong>createView</strong>()</code>
</h3>
<div class="details">
<div class="tags">
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getView">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_getView"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 175</div>
<code>
<abbr title="Symfony\Component\Form\FormView">FormView</abbr>
<strong>getView</strong>()</code>
</h3>
<div class="details">
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Symfony\Component\Form\FormView">FormView</abbr></td>
<td></td>
</tr>
</table>
<h4>Exceptions</h4>
<table class="table table-condensed">
<tr>
<td><a target="_blank" href="http://php.net/LogicException"><abbr title="LogicException">LogicException</abbr></a></td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_setError">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_setError"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 188</div>
<code>
<strong>setError</strong>(
boolean $has_error = true)</code>
</h3>
<div class="details">
<div class="method-description">
<p>Set the error status of the form.</p> </div>
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
boolean</td>
<td>$has_error</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_hasError">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_hasError"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 200</div>
<code>
boolean
<strong>hasError</strong>()</code>
</h3>
<div class="details">
<div class="method-description">
<p>Get the cuirrent error status of the form.</p> </div>
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
boolean</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_setErrorMessage">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_setErrorMessage"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 210</div>
<code>
<strong>setErrorMessage</strong>(
string $message)</code>
</h3>
<div class="details">
<div class="method-description">
<p>Set the error message related to global form error</p> </div>
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td>$message</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getErrorMessage">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_getErrorMessage"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 223</div>
<code>
string
<strong>getErrorMessage</strong>()</code>
</h3>
<div class="details">
<div class="method-description">
<p>Get the form error message.</p> </div>
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getForm">
<div class="location">in
<a href="../../Thelia/Form/BaseForm.html#method_getForm"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> at line 231</div>
<code>
<abbr title="Symfony\Component\Form\Form">Form</abbr>
<strong>getForm</strong>()</code>
</h3>
<div class="details">
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Symfony\Component\Form\Form">Form</abbr></td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getName">
<div class="location">at line 28</div>
<code>
string
<strong>getName</strong>()</code>
</h3>
<div class="details">
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td>the name of you form. This name must be unique</td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_checkDuplicateCode">
<div class="location">in
<a href="../../Thelia/Form/CurrencyCreationForm.html#method_checkDuplicateCode"><abbr title="Thelia\Form\CurrencyCreationForm">CurrencyCreationForm</abbr></a> at line 83</div>
<code>
<strong>checkDuplicateCode</strong>($value,
<abbr title="Thelia\Form\Symfony\Component\Validator\ExecutionContextInterface">ExecutionContextInterface</abbr> $context)</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td></td>
<td>$value</td>
<td></td>
</tr>
<tr>
<td>
<abbr title="Thelia\Form\Symfony\Component\Validator\ExecutionContextInterface">ExecutionContextInterface</abbr></td>
<td>$context</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>.
</div>
</div>
</div>
</body>
</html>
|
sitecrafting/thelia.github.io
|
api/2.0/Thelia/Form/CurrencyModificationForm.html
|
HTML
|
mit
| 25,165
|
{% extends "monitoreo/base.html"%}
{%load unslugify %}
{%block extra_js%}
<link href="{{STATIC_URL}}monitoreo/css/dataTables.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="{{STATIC_URL}}monitoreo/js/highcharts.js"></script>
<script type="text/javascript" src="{{STATIC_URL}}monitoreo/js/exporting.js"></script>
<script type="text/javascript" src="{{STATIC_URL}}monitoreo/js/dataTables.js"></script>
<script type="text/javascript">
if ({{request.session.tipo}} == 1) {
$("a[href='/monitoreo/index/']").attr('href', '/monitoreo/index/linea/')
}else{
$("a[href='/monitoreo/index/linea/']").attr('href', '/monitoreo/index/')
}
var flag = true;
$(document).ready(function(){
$('#mas').click(function(){
if(flag==true){
$('.botonera').slideDown('slow');
$('#estado').html('<span class="glyphicon glyphicon-arrow-up"></span>');
flag = false;
}else if (flag==false){
$('.botonera').slideUp('slow');
$('#estado').html('<span class="glyphicon glyphicon-arrow-down"></span>');
flag = true;
}
return false;
});
$('#example').dataTable( {
"language": {
"search": "Buscar:"
},
"paging": false,
"ordering": false,
"info": false
});
$('#example1').dataTable( {
"language": {
"search": "Buscar:"
},
"paging": false,
"ordering": false,
"info": false
});
});
</script>
<script type="text/javascript">
var activo = 0;
function click_callback(id){
$.getJSON('/monitoreo/grafo/organizacion/' + id, function(data) {
if (activo!= id){
$("#grafo").html('<img src="' + data.url + '" />');
activo = id;
}else{
$("#grafo").html('');
activo = 0;
}
});
}
$(document).ready(function() {
$("#grafico1").click(function(){
$("#grafico1").addClass('enlace_seleccionado');
$("#grafico2").removeClass('enlace_seleccionado');
});
$("#grafico2").click(function(){
$("#grafico2").addClass('enlace_seleccionado');
$("#grafico1").removeClass('enlace_seleccionado');
});
});
</script>
{%endblock%}
{%block contenido%}
<div class="row no-gutter"><!-- row -->
<div id="k-sidebar" class="col-lg-12 col-md-12"><!-- sidebar wrapper -->
<div class="col-consulta col-shaded"><!-- inner custom column -->
<ul class="list-unstyled clear-margins"><!-- widgets -->
<div class="slide-indicadores">
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-left">
{% include "monitoreo/filtro-monitoreo.html" %}
<li><a href="">Familia >> Subindicador Org. Comunitaria</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li id="mas" class=" btnindicador">
<a href="">
<span id="estado">
<span class="glyphicon glyphicon-arrow-down"></span>
</span> Cambiar de Indicador
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
</div>
{% include "monitoreo/nav_org.html" %}
<div class="separador"></div>
<div id="mostrar">
{% include "monitoreo/menu.html" %}
</div>
<div class="subindicador"><a class="exportar guardarXLS" href="#" onclick="exportarXLS('modalidad'); return false;"></a>{% if request.user.is_authenticated %}<a class="exportar2" href="/exportar/7/"></a>{%endif%} </div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 graficos">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="panel panel-success panel-graficos">
<div class="panel-heading">Gráficos Organización Comunitaria </div>
<div class="panel-body graficos_widget">
<a id="grafico1" href="#" onCLick="onCLick=click_callback('beneficiorganizado')">¿Beneficios de estar organizado</a>
<a id="grafico2" href="#" onCLick="click_callback('norganizado')">¿Porque no esta organizado?</a>
<a id="grafico2" href="#" onCLick="click_callback('comunitario')">¿Organización comunitaria?</a>
</div>
</div>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<div id="grafo"></div>
<div class="table-responsive">
<table id="example" class="table table-bordered table-hover" cellspacing="0" width="100%">
<caption>¿Cuántas organizaciones están activas en la localidad o comunidad?</caption>
<thead>
<tr>
<th>Organizaciones</th>
<th>Cuantas</th>
</tr>
</thead>
<tbody>
<tr>
<td>De uno a cinco (1-5)</td>
<td>{{uno}}</td>
</tr>
<tr>
<td>De seis a diez (6-10)</td>
<td>{{dos}}</td>
</tr>
<tr>
<td>De once a más (> 11)</td>
<td>{{tres}}</td>
</tr>
</tbody>
</table>
</div>
<div class="table-responsive">
<table id="example1" class="table table-bordered table-hover"class="display" cellspacing="0" width="100%">
<caption>¿Pertenece a algunas organizaciones?</caption>
<thead>
<tr>
<th>Categoria</th>
<th>Frecuencia</th>
<th>porcentaje %</th>
</tr>
</thead>
<tbody>
<tr>
{% for key, value in tabla_pertenece.items %}
<td>{{key|unslugify}}</td>
<td>{{value.frecuencia|floatformat:2}}</td>
<td>{{value.porcentaje|floatformat:2}}</td>
</tr>
{% endfor %}
<tr>
<th>TOTAL</th>
<th>{{divisor|floatformat:2}}</th>
<th>100</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</ul><!-- widgets end -->
</div><!-- inner custom column end -->
</div><!-- sidebar wrapper end -->
</div><!-- sidebar row -->
{% endblock %}
|
shiminasai/ciat_plataforma
|
templates/monitoreo/comunitario.html
|
HTML
|
mit
| 9,820
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style type="text/css">
body {
margin: 0px;
overflow: hidden;
font-family: Monospace;
text-align: center;
}
#info {
color: #fff;
position: absolute;
top: 10px;
width: 100%;
}
a { color: #09f; }
#type-status { font-weight: bold; }
</style>
</head>
<body>
<div id="info">
<a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl ocean simulation<br/>
current simulation framebuffers type is <span id="type-status"></span><br/>
change type to <span id="change-type"></span>
</div>
<script src="../build/three.js"></script>
<script src="js/libs/stats.min.js"></script>
<script src="js/libs/dat.gui.min.js"></script>
<script src="js/controls/OrbitControls.js"></script>
<script src="js/shaders/OceanShaders.js"></script>
<script src="js/Ocean.js"></script>
<script>
var stats = new Stats();
document.body.appendChild( stats.dom );
var lastTime = ( new Date() ).getTime();
var types = { 'float': 'half-float', 'half-float': 'float' };
var hash = document.location.hash.substr( 1 );
if ( ! ( hash in types ) ) hash = 'half-float';
document.getElementById( 'type-status' ).innerHTML = hash;
document.getElementById( 'change-type' ).innerHTML = '<a href="#" onclick="return change(\'' + types[ hash ] + '\')">' + types[ hash ] + '</a>';
var lastTime = ( new Date() ).getTime();
function change( n ) {
location.hash = n;
location.reload();
return false;
}
var DEMO = {
ms_Renderer: null,
ms_Camera: null,
ms_Scene: null,
ms_Controls: null,
ms_Ocean: null,
Initialize: function () {
this.ms_Renderer = new THREE.WebGLRenderer();
this.ms_Renderer.setPixelRatio( window.devicePixelRatio );
this.ms_Renderer.context.getExtension( 'OES_texture_float' );
this.ms_Renderer.context.getExtension( 'OES_texture_float_linear' );
document.body.appendChild( this.ms_Renderer.domElement );
this.ms_Scene = new THREE.Scene();
this.ms_Camera = new THREE.PerspectiveCamera( 55.0, window.innerWidth / window.innerHeight, 0.5, 300000 );
this.ms_Camera.position.set( 450, 350, 450 );
this.ms_Camera.lookAt( 0, 0, 0 );
// Initialize Orbit control
this.ms_Controls = new THREE.OrbitControls( this.ms_Camera, this.ms_Renderer.domElement );
this.ms_Controls.userPan = false;
this.ms_Controls.userPanSpeed = 0.0;
this.ms_Controls.minDistance = 0;
this.ms_Controls.maxDistance = 2000.0;
this.ms_Controls.minPolarAngle = 0;
this.ms_Controls.maxPolarAngle = Math.PI * 0.495;
var gsize = 512;
var res = 1024;
var gres = res / 2;
var origx = - gsize / 2;
var origz = - gsize / 2;
this.ms_Ocean = new THREE.Ocean( this.ms_Renderer, this.ms_Camera, this.ms_Scene,
{
USE_HALF_FLOAT: hash === 'half-float',
INITIAL_SIZE: 256.0,
INITIAL_WIND: [ 10.0, 10.0 ],
INITIAL_CHOPPINESS: 1.5,
CLEAR_COLOR: [ 1.0, 1.0, 1.0, 0.0 ],
GEOMETRY_ORIGIN: [ origx, origz ],
SUN_DIRECTION: [ - 1.0, 1.0, 1.0 ],
OCEAN_COLOR: new THREE.Vector3( 0.004, 0.016, 0.047 ),
SKY_COLOR: new THREE.Vector3( 3.2, 9.6, 12.8 ),
EXPOSURE: 0.35,
GEOMETRY_RESOLUTION: gres,
GEOMETRY_SIZE: gsize,
RESOLUTION: res
} );
this.ms_Ocean.materialOcean.uniforms[ "u_projectionMatrix" ] = { value: this.ms_Camera.projectionMatrix };
this.ms_Ocean.materialOcean.uniforms[ "u_viewMatrix" ] = { value: this.ms_Camera.matrixWorldInverse };
this.ms_Ocean.materialOcean.uniforms[ "u_cameraPosition" ] = { value: this.ms_Camera.position };
this.ms_Scene.add( this.ms_Ocean.oceanMesh );
var gui = new dat.GUI();
gui.add( this.ms_Ocean, "size", 100, 5000 ).onChange( function ( v ) {
this.object.size = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "choppiness", 0.1, 4 ).onChange( function ( v ) {
this.object.choppiness = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "windX", - 15, 15 ).onChange( function ( v ) {
this.object.windX = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "windY", - 15, 15 ).onChange( function ( v ) {
this.object.windY = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "sunDirectionX", - 1.0, 1.0 ).onChange( function ( v ) {
this.object.sunDirectionX = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "sunDirectionY", - 1.0, 1.0 ).onChange( function ( v ) {
this.object.sunDirectionY = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "sunDirectionZ", - 1.0, 1.0 ).onChange( function ( v ) {
this.object.sunDirectionZ = v;
this.object.changed = true;
} );
gui.add( this.ms_Ocean, "exposure", 0.0, 0.5 ).onChange( function ( v ) {
this.object.exposure = v;
this.object.changed = true;
} );
},
Display: function () {
this.ms_Renderer.render( this.ms_Scene, this.ms_Camera );
},
Update: function () {
var currentTime = new Date().getTime();
this.ms_Ocean.deltaTime = ( currentTime - lastTime ) / 1000 || 0.0;
lastTime = currentTime;
this.ms_Ocean.render( this.ms_Ocean.deltaTime );
this.ms_Ocean.overrideMaterial = this.ms_Ocean.materialOcean;
if ( this.ms_Ocean.changed ) {
this.ms_Ocean.materialOcean.uniforms[ "u_size" ].value = this.ms_Ocean.size;
this.ms_Ocean.materialOcean.uniforms[ "u_sunDirection" ].value.set( this.ms_Ocean.sunDirectionX, this.ms_Ocean.sunDirectionY, this.ms_Ocean.sunDirectionZ );
this.ms_Ocean.materialOcean.uniforms[ "u_exposure" ].value = this.ms_Ocean.exposure;
this.ms_Ocean.changed = false;
}
this.ms_Ocean.materialOcean.uniforms[ "u_normalMap" ].value = this.ms_Ocean.normalMapFramebuffer.texture;
this.ms_Ocean.materialOcean.uniforms[ "u_displacementMap" ].value = this.ms_Ocean.displacementMapFramebuffer.texture;
this.ms_Ocean.materialOcean.uniforms[ "u_projectionMatrix" ].value = this.ms_Camera.projectionMatrix;
this.ms_Ocean.materialOcean.uniforms[ "u_viewMatrix" ].value = this.ms_Camera.matrixWorldInverse;
this.ms_Ocean.materialOcean.uniforms[ "u_cameraPosition" ].value = this.ms_Camera.position;
this.ms_Ocean.materialOcean.depthTest = true;
//this.ms_Scene.__lights[1].position.x = this.ms_Scene.__lights[1].position.x + 0.01;
this.Display();
},
Resize: function ( inWidth, inHeight ) {
this.ms_Camera.aspect = inWidth / inHeight;
this.ms_Camera.updateProjectionMatrix();
this.ms_Renderer.setSize( inWidth, inHeight );
this.Display();
}
};
DEMO.Initialize();
window.addEventListener( 'resize', function () {
DEMO.Resize( window.innerWidth, window.innerHeight );
} );
DEMO.Resize( window.innerWidth, window.innerHeight );
var render = function () {
requestAnimationFrame( render );
DEMO.Update();
stats.update();
};
render();
</script>
</body>
</html>
|
framelab/three.js
|
examples/webgl_shaders_ocean2.html
|
HTML
|
mit
| 7,345
|
<!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.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>My Project: 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>
<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">My Project
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></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 class members with links to the classes they belong to:</div><ul>
<li>Semaphore()
: <a class="el" href="class_semaphore.html#a0d9290d316636875ca85d1d78950a817">Semaphore</a>
</li>
<li>Signal()
: <a class="el" href="class_semaphore.html#a86f92f738b4486439b296d8e235895f2">Semaphore</a>
</li>
<li>Wait()
: <a class="el" href="class_semaphore.html#a72aabebf026e3a8b1f3e4d0fa8ee1eda">Semaphore</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
DeclanCarter/CDDLabs
|
Lab 4 Mutal Exclusion/html/functions.html
|
HTML
|
mit
| 2,920
|
<!DOCTYPE html>
<html>
<head>
<title>Part 3: Chapter 24 | Deductive Logic | George William Joseph Stock, M.A. | Lit2Go ETC</title>
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5574891-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$(document).ready(function() {
$('img').unveil();
$('#contactable').contactable({
url: 'http://etc.usf.edu/lit2go/welcome/feedback/',
subject: 'Lit2Go Feedback — Part 3: Chapter 24 | Deductive Logic | George William Joseph Stock, M.A. — http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/'
});
});
</script>
</head>
<body>
<div class="page"> <header>
<h1>
<a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a>
</h1>
<ul>
<li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li>
</ul>
</header>
<nav id="shell">
<ul>
<li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li>
<li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li>
<li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li>
<li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li>
<li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li>
</ul>
</nav>
<section id="content">
<div id="contactable"><!-- contactable html placeholder --></div>
<div id="page_content">
<header>
<h2>
<a href="http://etc.usf.edu/lit2go/189/deductive-logic/">Deductive Logic</a>
</h2>
<h3>
by <a href="http://etc.usf.edu/lit2go/authors/201/george-william-joseph-stock-ma/">George William Joseph Stock, M.A.</a>
</h3>
<h4>
Part 3: Chapter 24 </h4>
</header>
<div id="default">
<details open>
<summary>
Additional Information
</summary>
<div id="columns">
<ul>
<li>
<strong>Year Published:</strong>
1888 </li>
<li>
<strong>Language:</strong>
English </li>
<li>
<strong>Country of Origin:</strong>
England </li>
<li>
<strong>Source:</strong>
Stock, G. W. J. (1888). <em> Deductive Logic. </em> Oxford, England; Pembroke College. </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Readability:</strong>
<ul>
<li>
Flesch–Kincaid Level:
<a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/11/" title="Flesch–Kincaid Grade Level 11.0">11.0</a>
</li>
</ul>
</li>
<li>
<strong>Word Count:</strong>
555 </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Genre:</strong>
<a href="http://etc.usf.edu/lit2go/genres/15/informational/">Informational</a>
</li>
<li>
<strong>Keywords:</strong>
math, math history </li>
<li>
<a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a>
</li>
<li>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&pub=roywinkelman" class="addthis_button_compact">Share</a>
<span class="addthis_separator">|</span>
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
</div>
<script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script>
<!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> -->
<!-- AddThis Button END -->
</li>
</ul>
</div>
<h4>Downloads</h4>
<ul id="downloads">
<li>
<a href="http://etc.usf.edu/lit2go/audio/mp3/deductive-logic-039-part-3-chapter-24.3931.mp3">Audio</a>
</li>
<li>
<a href="http://etc.usf.edu/lit2go/pdf/passage/3931/deductive-logic-039-part-3-chapter-24.pdf">Passage PDF</a>
</li>
<li><a href="http://etc.usf.edu/lit2go/pdf/student_activity/3931/3931-1.pdf">Student Activity</a></li>
</ul>
<hr>
</details>
<div class="modal hide" id="cite_this">
<script>
$($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');}));
</script>
<nav>
<ul id="myTab">
<li class="active">
<a href="#apa" data-toggle="tab">APA</a>
</li>
<li>
<a href="#mla" data-toggle="tab">MLA</a>
</li>
<li>
<a href="#chicago" data-toggle="tab">Chicago</a>
</li>
</ul>
</nav>
<div class="tab-content">
<div class="content tab-pane hide active" id="apa">
<p class="citation">
Stock, G. (1888). Part 3: Chapter 24. <em>Deductive Logic</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/</span>
</p>
</div>
<div class="content tab-pane" id="mla">
<p class="citation">
Stock, George William Joseph. "Part 3: Chapter 24." <em>Deductive Logic</em>. Lit2Go Edition. 1888. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/</span>>. February 15, 2016.
</p>
</div>
<div class="content tab-pane" id="chicago">
<p class="citation">
George William Joseph Stock, "Part 3: Chapter 24," <em>Deductive Logic</em>, Lit2Go Edition, (1888), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/</span>.
</p>
</div>
</div>
</div>
<span class="top"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/189/deductive-logic/3930/part-3-chapter-23/" title="Part 3: Chapter 23" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/189/deductive-logic/3932/part-3-chapter-25/" title="Part 3: Chapter 25" class="next">Next</a></li>
</ul>
</nav>
</span>
<div id="shrink_wrap">
<div id="i_apologize_for_the_soup">
<audio controls style="width:99%;">
<source src="http://etc.usf.edu/lit2go/audio/mp3/deductive-logic-039-part-3-chapter-24.3931.mp3" type="audio/mpeg" />
<source src="http://etc.usf.edu/lit2go/audio/ogg/deductive-logic-039-part-3-chapter-24.3931.ogg" type="audio/ogg" />
The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today!
</audio>
<p>
PART III.—OF INFERENCES</p>
<p>
CHAPTER XXIV.</p>
<p>
Of the Reduction of the Disjunctive Syllogism.</p>
<p>
766. We have seen that in the disjunctive syllogism the two constructive moods alone are formally valid. The first of these, namely, the denial of the antecedent, will in all cases give a simple syllogism in the first figure; the second of them, namely, the denial of the consequent, will in all cases give a simple syllogism in the second figure.</p>
<p>
Denial of Antecedent = Barbara.</p>
<p>
Either A is B or C is D.<br />
A is not B.<br />
.’.C is D</p>
<p>
is equal to</p>
<p>
If A is not B, C is D.<br />
A is not B.<br />
.’. C is D.</p>
<p>
is equal to</p>
<p>
All cases of A not being B are cases of C being D.<br />
This is a case of A not being B.<br />
.’. This is a case of C being D.</p>
<p>
Denial of Consequent = Camestres.</p>
<p>
Either A is E or C is D.<br />
C is not D.<br />
.’. A is B.</p>
<p>
is equal to</p>
<p>
If A is not B, C is D.<br />
C is not D.<br />
.’. A is B.</p>
<p>
is equal to</p>
<p>
All cases of A not being B are cases of C being D.<br />
This is not a case of C being D.<br />
.’. This is not a case of A being B.</p>
<p>
767. The other moods of the first and second figures can be obtained by varying the quality of the antecedent and consequent in the major premiss and reducing the quantity of the minor.</p>
<p>
768. The invalid destructive moods correspond with the two invalid types of the partly conjunctive syllogism, and have the same fallacies of simple syllogism underlying them. Affirmation of the antecedent of a disjunctive is equivalent to the semi-conjunctive fallacy of denying the antecedent, and therefore involves the ordinary syllogistic fallacy of illicit process of the major.</p>
<p>
Affirmation of the consequent of a disjunctive is equivalent to the same fallacy in the semi-conjunctive form, and therefore involves the ordinary syllogistic fallacy of undistributed middle.</p>
<p>
Affirmation of Antecedent = Illicit Major.</p>
<p>
Either A is B or C is D.<br />
A is B.<br />
.’. C is not D.</p>
<p>
is equal to</p>
<p>
If A is not B, C is D.<br />
A is B.<br />
.’. C is not D.</p>
<p>
is equal to</p>
<p>
All cases of A not being B are cases of C being D.<br />
This is not a case of A not being B.<br />
.’. This is not a case of C not being D.</p>
<p>
Affirmation of Consequent = Undistributed Middle.</p>
<p>
Either A is B or C is D.<br />
C is D.</p>
<p>
is equal to</p>
<p>
If A is not B, C is D.<br />
C is D.</p>
<p>
is equal to</p>
<p>
All cases of A not being B are cases of C being D.<br />
This is a case of C being D.</p>
<p>
769. So far as regards the consequent, the two species of complex reasoning hitherto discussed are identical both in appearance and reality. The apparent difference of procedure in the case of the antecedent, namely, that it is affirmed in the partly conjunctive, but denied in the disjunctive syllogism, is due merely to the fact that in the disjunctive proposition the truth of the consequent is involved in the falsity of the antecedent, so that the antecedent being necessarily negative, to deny it in appearance is in reality to assert it.</p>
</div>
</div>
<span class="bottom"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/189/deductive-logic/3930/part-3-chapter-23/" title="Part 3: Chapter 23" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/189/deductive-logic/3932/part-3-chapter-25/" title="Part 3: Chapter 25" class="next">Next</a></li>
</ul>
</nav>
</span>
</div>
</div>
</section>
<footer screen>
<div id="footer-text">
<p>
This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>.
</p>
<p>
Copyright © 2006—2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>.
</p>
</div>
<ul id="footer-links">
<li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li>
<li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li>
</ul>
</footer>
<footer print>
<div id="footer-text">
<p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/">http://etc.usf.edu/lit2go/189/deductive-logic/3931/part-3-chapter-24/</a>.</p>
</div>
<div id="book-footer">
<p>Lit2Go: <em>Deductive Logic</em></p>
<p>Part 3: Chapter 24</p>
</div>
</footer>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script>
</div>
</body>
</html>
|
adrianosb/HtmlToText
|
lit2go.ok/189/deductive-logic/3931/part-3-chapter-24/index.html
|
HTML
|
mit
| 14,178
|
<div class="bs-docs-section">
<h1 id="modals" class="page-header">Modals <small>modal.js</small></h1>
<p>Modals are streamlined, but flexible, dialog prompts with the minimum required functionality and smart defaults.</p>
<div class="bs-callout bs-callout-warning" id="callout-stacked-modals">
<h4>Overlapping modals not supported</h4>
<p>Be sure not to open a modal while another is still visible. Showing more than one modal at a time requires custom code.</p>
</div>
<div class="bs-callout bs-callout-warning" id="callout-modal-markup-placement">
<h4>Modal markup placement</h4>
<p>Always try to place a modal's HTML code in a top-level position in your document to avoid other components affecting the modal's appearance and/or functionality.</p>
</div>
<div class="bs-callout bs-callout-warning" id="callout-modal-mobile-caveats">
<h4>Mobile device caveats</h4>
<p>There are some caveats regarding using modals on mobile devices. <a href="../getting-started/#support-fixed-position-keyboards">See our browser support docs</a> for details.</p>
</div>
<p><strong class="text-danger">Due to how HTML5 defines its semantics, the <code>autofocus</code> HTML attribute has no effect in Bootstrap modals.</strong> To achieve the same effect, use some custom JavaScript:</p>
{% highlight js %}
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').focus()
})
{% endhighlight %}
<h2 id="modals-examples">Examples</h2>
<h3>Static example</h3>
<p>A rendered modal with header, body, and set of actions in the footer.</p>
<div class="bs-example bs-example-modal" data-example-id="static-modal">
<div class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div><!-- /example -->
{% highlight html %}
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
{% endhighlight %}
<h3>Live demo</h3>
<p>Toggle a modal via JavaScript by clicking the button below. It will slide down and fade in from the top of the page.</p>
<!-- sample modal content -->
<div id="myModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
<h4>Text in a modal</h4>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<h4>Popover in a modal</h4>
<p>This <a href="#" role="button" class="btn btn-default popover-test" title="A Title" data-content="And here's some amazing content. It's very engaging. right?">button</a> should trigger a popover on click.</p>
<h4>Tooltips in a modal</h4>
<p><a href="#" class="tooltip-test" title="Tooltip">This link</a> and <a href="#" class="tooltip-test" title="Tooltip">that link</a> should have tooltips on hover.</p>
<hr>
<h4>Overflowing text to show scroll behavior</h4>
<p>Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
<p>Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus auctor fringilla.</p>
<p>Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
<p>Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus auctor fringilla.</p>
<p>Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
<p>Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus auctor fringilla.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="bs-example bs-example-padded-bottom">
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
</div><!-- /example -->
{% highlight html %}
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
{% endhighlight %}
<div class="bs-callout bs-callout-warning" id="callout-modal-accessibility">
<h4>Make modals accessible</h4>
<p>Be sure to add <code>role="dialog"</code> to <code>.modal</code>, <code>aria-labelledby="myModalLabel"</code> attribute to reference the modal title, and <code>aria-hidden="true"</code> to tell assistive technologies to skip the modal's DOM elements.</p>
<p>Additionally, you may give a description of your modal dialog with <code>aria-describedby</code> on <code>.modal</code>.</p>
</div>
<div class="bs-callout bs-callout-info" id="callout-modal-youtube">
<h4>Embedding YouTube videos</h4>
<p>Embedding YouTube videos in modals requires additional JavaScript not in Bootstrap to automatically stop playback and more. <a href="http://stackoverflow.com/questions/18622508/bootstrap-3-and-youtube-in-modal">See this helpful Stack Overflow post</a> for more information.</p>
</div>
<h2 id="modals-sizes">Optional sizes</h2>
<p>Modals have two optional sizes, available via modifier classes to be placed on a <code>.modal-dialog</code>.</p>
<div class="bs-example">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-lg">Large modal</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button>
</div>
{% highlight html %}
<!-- Large modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-lg">Large modal</button>
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
...
</div>
</div>
</div>
<!-- Small modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button>
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
...
</div>
</div>
</div>
{% endhighlight %}
<!-- Modal content for the above example -->
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myLargeModalLabel">Large modal</h4>
</div>
<div class="modal-body">
...
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="mySmallModalLabel">Small modal</h4>
</div>
<div class="modal-body">
...
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<h2 id="modals-remove-animation">Remove animation</h2>
<p>For modals that simply appear rather than fade in to view, remove the <code>.fade</code> class from your modal markup.</p>
{% highlight html %}
<div class="modal" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true">
...
</div>
{% endhighlight %}
<h2 id="modals-related-target">Varying modal content based on trigger button</h2>
<p>Have a bunch of buttons that all trigger the same modal, just with slightly different contents? Use <code>event.relatedTarget</code> and <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_data_attributes">HTML <code>data-*</code> attributes</a> (possibly <a href="http://api.jquery.com/data/">via jQuery</a>) to vary the contents of the modal depending on which button was clicked. See the Modal Events docs for details on <code>relatedTarget</code>,</p>
<div class="bs-example">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@twbootstrap">Open modal for @twbootstrap</button>
...more buttons...
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="exampleModalLabel">New message</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="recipient-name" class="control-label">Recipient:</label>
<input type="text" class="form-control" id="recipient-name">
</div>
<div class="form-group">
<label for="message-text" class="control-label">Message:</label>
<textarea class="form-control" id="message-text"></textarea>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
</div>
</div><!-- /.modal -->
</div><!-- /.bs-example -->
{% highlight html %}
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@twbootstrap">Open modal for @twbootstrap</button>
...more buttons...
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="exampleModalLabel">New message</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="recipient-name" class="control-label">Recipient:</label>
<input type="text" class="form-control" id="recipient-name">
</div>
<div class="form-group">
<label for="message-text" class="control-label">Message:</label>
<textarea class="form-control" id="message-text"></textarea>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
</div>
</div>
{% endhighlight %}
{% highlight js %}
$('#exampleModal').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget) // Button that triggered the modal
var recipient = button.data('whatever') // Extract info from data-* attributes
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
// Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
var modal = $(this)
modal.find('.modal-title').text('New message to ' + recipient)
modal.find('.modal-body input').val(recipient)
})
{% endhighlight %}
<h2 id="modals-usage">Usage</h2>
<p>The modal plugin toggles your hidden content on demand, via data attributes or JavaScript. It also adds <code>.modal-open</code> to the <code><body></code> to override default scrolling behavior and generates a <code>.modal-backdrop</code> to provide a click area for dismissing shown modals when clicking outside the modal.</p>
<h3>Via data attributes</h3>
<p>Activate a modal without writing JavaScript. Set <code>data-toggle="modal"</code> on a controller element, like a button, along with a <code>data-target="#foo"</code> or <code>href="#foo"</code> to target a specific modal to toggle.</p>
{% highlight html %}
<button type="button" data-toggle="modal" data-target="#myModal">Launch modal</button>
{% endhighlight %}
<h3>Via JavaScript</h3>
<p>Call a modal with id <code>myModal</code> with a single line of JavaScript:</p>
{% highlight js %}$('#myModal').modal(options){% endhighlight %}
<h3 id="modals-options">Options</h3>
<p>Options can be passed via data attributes or JavaScript. For data attributes, append the option name to <code>data-</code>, as in <code>data-backdrop=""</code>.</p>
<div class="table-responsive">
<table class="table table-bordered table-striped js-options-table">
<thead>
<tr>
<th>Name</th>
<th>type</th>
<th>default</th>
<th>description</th>
</tr>
</thead>
<tbody>
<tr>
<td>backdrop</td>
<td>boolean or the string <code>'static'</code></td>
<td>true</td>
<td>Includes a modal-backdrop element. Alternatively, specify <code>static</code> for a backdrop which doesn't close the modal on click.</td>
</tr>
<tr>
<td>keyboard</td>
<td>boolean</td>
<td>true</td>
<td>Closes the modal when escape key is pressed</td>
</tr>
<tr>
<td>show</td>
<td>boolean</td>
<td>true</td>
<td>Shows the modal when initialized.</td>
</tr>
<tr>
<td>remote</td>
<td>path</td>
<td>false</td>
<td>
<p><strong class="text-danger">This option is deprecated since v3.3.0 and will be removed in v4.</strong> We recommend instead using client-side templating or a data binding framework, or calling <a href="http://api.jquery.com/load/">jQuery.load</a> yourself.</p>
<p>If a remote URL is provided, <strong>content will be loaded one time</strong> via jQuery's <code>load</code> method and injected into the <code>.modal-content</code> div. If you're using the data-api, you may alternatively use the <code>href</code> attribute to specify the remote source. An example of this is shown below:</p>
{% highlight html %}
<a data-toggle="modal" href="remote.html" data-target="#modal">Click me</a>
{% endhighlight %}
</td>
</tr>
</tbody>
</table>
</div><!-- /.table-responsive -->
<h3 id="modals-methods">Methods</h3>
<h4>.modal(options)</h4>
<p>Activates your content as a modal. Accepts an optional options <code>object</code>.</p>
{% highlight js %}
$('#myModal').modal({
keyboard: false
})
{% endhighlight %}
<h4>.modal('toggle')</h4>
<p>Manually toggles a modal. <strong>Returns to the caller before the modal has actually been shown or hidden</strong> (i.e. before the <code>shown.bs.modal</code> or <code>hidden.bs.modal</code> event occurs).</p>
{% highlight js %}$('#myModal').modal('toggle'){% endhighlight %}
<h4>.modal('show')</h4>
<p>Manually opens a modal. <strong>Returns to the caller before the modal has actually been shown</strong> (i.e. before the <code>shown.bs.modal</code> event occurs).</p>
{% highlight js %}$('#myModal').modal('show'){% endhighlight %}
<h4>.modal('hide')</h4>
<p>Manually hides a modal. <strong>Returns to the caller before the modal has actually been hidden</strong> (i.e. before the <code>hidden.bs.modal</code> event occurs).</p>
{% highlight js %}$('#myModal').modal('hide'){% endhighlight %}
<h3 id="modals-events">Events</h3>
<p>Bootstrap's modal class exposes a few events for hooking into modal functionality.</p>
<p>All modal events are fired at the modal itself (i.e. at the <code><div class="modal"></code>).</p>
<div class="table-responsive">
<table class="table table-bordered table-striped bs-events-table">
<thead>
<tr>
<th>Event Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>show.bs.modal</td>
<td>This event fires immediately when the <code>show</code> instance method is called. If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
<tr>
<td>shown.bs.modal</td>
<td>This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
<tr>
<td>hide.bs.modal</td>
<td>This event is fired immediately when the <code>hide</code> instance method has been called.</td>
</tr>
<tr>
<td>hidden.bs.modal</td>
<td>This event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete).</td>
</tr>
<tr>
<td>loaded.bs.modal</td>
<td>This event is fired when the modal has loaded content using the <code>remote</code> option.</td>
</tr>
</tbody>
</table>
</div><!-- /.table-responsive -->
{% highlight js %}
$('#myModal').on('hidden.bs.modal', function (e) {
// do something...
})
{% endhighlight %}
</div>
|
peterblazejewicz/bootstrap-sass
|
docs/_includes/js/modal.html
|
HTML
|
mit
| 21,910
|
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="/bootstrap/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/bootstrap/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/bootstrap/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="/bootstrap/ico/apple-touch-icon-57-precomposed.png">
<style>
body {
font-family: Arial;
}
h1 {
margin-bottom: 5px;
margin-top: 5px;
font-size: 20px;
}
#results {
width: 650px;
}
#results .result_column {
width: 216px;
float: left;
}
#results .result {
float: left;
width: 200px;
padding: 5px;
cursor: pointer;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #eee;
margin: 2px;
}
#results .result:hover {
background: #ddd;
border-radius: 5px;
}
#results .result .img_holder {
width: 192px;
overflow: hidden;
margin: 0 5px;
}
#results .result img {
max-width: 192px;
}
#results .result .description {
color: #444;
font-size: 11px;
height: 13px;
margin-bottom: 3px;
margin-top: 5px;
overflow: hidden;
line-height: 12px;
}
#results .result .name {
color: #888;
font-size: 11px;
line-height: 13px;
width: 170px;
white-space: nowrap;
overflow: hidden;
padding-left: 15px;
}
#results .result .links {
font-size: 11px;
line-height: 13px;
text-align: right;
opacity: 0.3;
}
#results .result:hover .links {
opacity: 1.0;
}
</style>
</head>
<body>
<a id="header_img" href="http://pinterest.com/"><img src="logo.png" style="padding-right: 10px; vertical-align: middle; float: left;"/></a>
<h1>
Search Pinterest Images:
</h1>
<form id="search" class="form-inline">
<input type="text" id="query"/>
<button type="submit" class="btn"><span class="icon-search"></span> Search</button>
</form>
<b>NOTE:</b> Pinterest has disabled their third-party API. This tool won't work until Pinterest re-opens their API.<br/><br/>
<div style="clear: both;"></div>
<div id="message"></div>
<div id="results"></div>
<div id="result" style="display: none;" class="result">
<div class="img_holder">
<img src="about:blank" class="thumb"/>
</div>
<div class="description">
</div>
<div class="name">
author:
<span class="author"></span>
</div>
<div class="name">
repins:
<span class="views"></span>
</div>
<div class="links">
<a href="#" class="preview" target="_blank">preview</a> |
<a href="#" class="source" target="_blank">source</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>var lti = {tool_id: "pinterest"};</script>
<script src="/analytics.js"></script>
<script src="/lti.js"></script>
<script src="pinterest.js"></script>
</body>
</html>
|
ivanoats/lti_example
|
public/tools/pinterest/index.html
|
HTML
|
mit
| 3,371
|
<div>
供本電子郵件觸發程序使用的郵件主旨。
</div>
|
jenkinsci/email-ext-plugin
|
src/main/webapp/help/projectConfig/mailType/subject_zh_TW.html
|
HTML
|
mit
| 72
|
<!DOCTYPE html>
<html>
<head>
<title>Navigation</title>
</head>
<body>
<img src="http://this-is-not-a-real-domain.com/non-existent.jpg" />
</body>
</html>
|
The-Log/price-aggregator
|
node_modules/nightmare/test/fixtures/navigation/invalid-image.html
|
HTML
|
mit
| 171
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Header <boost/proto/domain.hpp></title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html" title="Chapter 1. Boost.Proto">
<link rel="up" href="../../../proto/reference.html" title="Reference">
<link rel="prev" href="../../../boost/proto/deep_copy_idp27708672.html" title="Function template deep_copy">
<link rel="next" href="../../../boost/proto/domain.html" title="Struct template 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="../../../boost/proto/deep_copy_idp27708672.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html"><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="../../../boost/proto/domain.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.domain_hpp"></a>Header <<a href="../../../../../../../boost/proto/domain.hpp" target="_top">boost/proto/domain.hpp</a>></h3></div></div></div>
<p>
Contains definition of the <code class="computeroutput"><a class="link" href="../../../boost/proto/domain.html" title="Struct template domain">proto::domain<></a>
</code> class template and helpers for defining domains with a generator for customizing expression
construction and a grammar for controlling operator overloading.
</p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">proto</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Generator <span class="special">=</span> <a class="link" href="../../../boost/proto/default_generator.html" title="Struct default_generator">proto::default_generator</a><span class="special">,</span>
<span class="keyword">typename</span> Grammar <span class="special">=</span> <a class="link" href="../../../boost/proto/_.html" title="Struct _">proto::_</a><span class="special">,</span> <span class="keyword">typename</span> Super <span class="special">=</span> <em class="replaceable"><code><span class="identifier">unspecified</span></code></em><span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="../../../boost/proto/domain.html" title="Struct template domain">domain</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../../../boost/proto/default_domain.html" title="Struct default_domain">default_domain</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../../../boost/proto/basic_default_domain.html" title="Struct basic_default_domain">basic_default_domain</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../../../boost/proto/deduce_domain.html" title="Struct deduce_domain">deduce_domain</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/proto/is_domain.html" title="Struct template is_domain">is_domain</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/proto/domain_of.html" title="Struct template domain_of">domain_of</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</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="../../../boost/proto/deep_copy_idp27708672.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html"><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="../../../boost/proto/domain.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
yinchunlong/abelkhan-1
|
ext/c++/thirdpart/c++/boost/libs/proto/doc/html/header/boost/proto/domain_hpp.html
|
HTML
|
mit
| 5,894
|
<!doctype html>
<html lang="en" ng-app="docsApp" ng-strict-di ng-controller="DocsController">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="Description"
content="AngularJS is what HTML would have been, had it been designed for building web-apps.
Declarative templates with data-binding, MVC, dependency injection and great
testability story all implemented with pure client-side JavaScript!">
<meta name="fragment" content="!">
<title ng-bind-template="AngularJS: {{ currentArea.name }}: {{ currentPage.name || 'Error: Page not found'}}">AngularJS</title>
<script type="text/javascript">
// dynamically add base tag as well as css and javascript files.
// we can't add css/js the usual way, because some browsers (FF) eagerly prefetch resources
// before the base attribute is added, causing 404 and terribly slow loading of the docs app.
(function() {
var indexFile = (location.pathname.match(/\/(index[^\.]*\.html)/) || ['', ''])[1],
rUrl = /(#!\/|api|guide|misc|tutorial|error|index[^\.]*\.html).*$/,
baseUrl = location.href.replace(rUrl, indexFile),
production = location.hostname === 'docs.angularjs.org',
headEl = document.getElementsByTagName('head')[0],
sync = true;
addTag('base', {href: baseUrl});
addTag('link', {rel: 'stylesheet', href: 'components/bootstrap-3.1.1/css/bootstrap.min.css', type: 'text/css'});
addTag('link', {rel: 'stylesheet', href: 'components/open-sans-fontface-1.0.4/open-sans.css', type: 'text/css'});
addTag('link', {rel: 'stylesheet', href: 'css/prettify-theme.css', type: 'text/css'});
addTag('link', {rel: 'stylesheet', href: 'css/docs.css', type: 'text/css'});
addTag('link', {rel: 'stylesheet', href: 'css/animations.css', type: 'text/css'});
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-resource.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-route.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-cookies.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-sanitize.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-touch.min.js' }, sync);
addTag('script', {src: '//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.2/angular-animate.min.js' }, sync);
addTag('script', {src: 'components/marked-0.3.2/lib/marked.js' }, sync);
addTag('script', {src: 'js/angular-bootstrap/bootstrap.min.js' }, sync);
addTag('script', {src: 'js/angular-bootstrap/dropdown-toggle.min.js' }, sync);
addTag('script', {src: 'components/lunr.js-0.4.2/lunr.min.js' }, sync);
addTag('script', {src: 'components/google-code-prettify-1.0.1/src/prettify.js' }, sync);
addTag('script', {src: 'components/google-code-prettify-1.0.1/src/lang-css.js' }, sync);
addTag('script', {src: 'js/versions-data.js' }, sync);
addTag('script', {src: 'js/pages-data.js' }, sync);
addTag('script', {src: 'js/nav-data.js' }, sync);
addTag('script', {src: 'js/docs.min.js' }, sync);
function addTag(name, attributes, sync) {
var el = document.createElement(name),
attrName;
for (attrName in attributes) {
el.setAttribute(attrName, attributes[attrName]);
}
sync ? document.write(outerHTML(el)) : headEl.appendChild(el);
}
function outerHTML(node){
// if IE, Chrome take the internal method otherwise build one
return node.outerHTML || (
function(n){
var div = document.createElement('div'), h;
div.appendChild(n);
h = div.innerHTML;
div = null;
return h;
})(node);
}
})();
// GA asynchronous tracker
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-8594346-3']);
_gaq.push(['_setDomainName', '.angularjs.org']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="wrapper">
<header scroll-y-offset-element class="header header-fixed">
<section class="navbar navbar-inverse docs-navbar-primary" ng-controller="DocsSearchCtrl">
<div class="container">
<div class="row">
<div class="col-md-9 header-branding">
<a class="brand navbar-brand" href="http://angularjs.org">
<img width="117" height="30" class="logo" ng-src="img/angularjs-for-header-only.svg">
</a>
<ul class="nav navbar-nav">
<li class="divider-vertical"></li>
<li><a href="http://angularjs.org"><i class="icon-home icon-white"></i> Home</a></li>
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-eye-open icon-white"></i> Learn <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li class="disabled"><a href="http://angularjs.org/">Why AngularJS?</a></li>
<li><a href="http://www.youtube.com/user/angularjs">Watch</a></li>
<li><a href="tutorial">Tutorial</a></li>
<li><a href="http://builtwith.angularjs.org/">Case Studies</a></li>
<li><a href="https://github.com/angular/angular-seed">Seed App project template</a></li>
<li><a href="misc/faq">FAQ</a></li>
</ul>
</li>
<li class="divider-vertical"></li>
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-book icon-white"></i> Develop <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="tutorial">Tutorial</a></li>
<li><a href="guide">Developer Guide</a></li>
<li><a href="api">API Reference</a></li>
<li><a href="error">Error Reference</a></li>
<li><a href="misc/contribute">Contribute</a></li>
<li><a href="http://code.angularjs.org/">Download</a></li>
</ul>
</li>
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-comment icon-white"></i> Discuss <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="http://blog.angularjs.org">Blog</a></li>
<li><a href="http://groups.google.com/group/angular">Mailing List</a></li>
<li><a href="http://webchat.freenode.net/?channels=angularjs&uio=d4">Chat Room</a></li>
<li class="divider"></li>
<li><a href="https://twitter.com/#!/angularjs">Twitter</a></li>
<li><a href="https://plus.google.com/110323587230527980117">Google+</a></li>
<li class="divider"></li>
<li><a href="https://github.com/angular/angular.js">GitHub</a></li>
<li><a href="https://github.com/angular/angular.js/issues">Issue Tracker</a></li>
</ul>
</li>
<li class="divider-vertical"></li>
</ul>
</div>
<form ng-class="{focus:focus}" class="navbar-search col-md-3 docs-search" ng-submit="submit()">
<span class="glyphicon glyphicon-search search-icon"></span>
<input type="text"
name="as_q"
class="search-query"
placeholder="Click or press / to search"
ng-focus="focus=true"
ng-blur="focus=false"
ng-change="search(q)"
ng-model="q"
docs-search-input
autocomplete="off" />
</form>
</div>
</div>
<div class="search-results-container" ng-show="hasResults">
<div class="container">
<div class="search-results-frame">
<div ng-repeat="(key, value) in results" class="search-results-group" ng-class="colClassName + ' col-group-' + key">
<h4 class="search-results-group-heading">{{ key }}</h4>
<div class="search-results">
<div ng-repeat="item in value" class="search-result">
- <a ng-click="hideResults()" ng-href="{{ item.path }}">{{ item.name }}</a>
</div>
</div>
</div>
</div>
<a href="" ng-click="hideResults()" class="search-close">
<span class="glyphicon glyphicon-remove search-close-icon"></span> Close
</a>
</div>
</div>
</section>
<section class="sup-header">
<div class="container main-grid main-header-grid">
<div class="grid-left">
<div ng-controller="DocsVersionsCtrl" class="picker version-picker">
<select ng-options="v as ('v' + v.version + (v.isSnapshot ? ' (snapshot)' : '')) group by getGroupName(v) for v in docs_versions"
ng-model="docs_version"
ng-change="jumpToDocsVersion(docs_version)"
class="docs-version-jump">
</select>
</div>
</div>
<div class="grid-right">
<ul class="nav-breadcrumb">
<li ng-repeat="crumb in breadcrumb" class="nav-breadcrumb-entry naked-list">
<span class="divider"> /</span>
<a ng-href="{{crumb.url}}">{{crumb.name}}</a>
</li>
</ul>
</div>
</div>
</section>
</header>
<section role="main" class="container main-body">
<div class="main-grid main-body-grid">
<div class="grid-left">
<a class="btn toc-toggle visible-xs" ng-click="toc=!toc">Show / Hide Table of Contents</a>
<div class="side-navigation" ng-show="toc==true">
<ul class="nav-list naked-list">
<li ng-repeat="navGroup in currentArea.navGroups track by navGroup.name" class="nav-index-group">
<a href="{{ navGroup.href }}" ng-class="navClass(navGroup)" class="nav-index-group-heading">{{ navGroup.name }}</a>
<ul class="aside-nav">
<li ng-repeat="navItem in navGroup.navItems" ng-class="navClass(navItem)" class="nav-index-listing">
<a ng-if="navItem.extra.href" ng-class="navClass(navItem.extra)" href="{{navItem.extra.href}}">
{{navItem.extra.text}}<i ng-if="navItem.extra.icon" class="icon-{{navItem.extra.icon}}"></i>
</a>
<a tabindex="2" ng-class="linkClass(navItem)" href="{{navItem.href}}">{{navItem.name}}</a>
</li>
</ul>
</li>
</ul>
<a href="" ng-click="toc=false" class="toc-close visible-xs">
<span class="glyphicon glyphicon-remove toc-close-icon"></span> Close
</a>
</div>
</div>
<div class="grid-right">
<div id="loading" ng-show="loading">Loading...</div>
<div ng-hide="loading" ng-include="partialPath" autoscroll></div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p class="pull-right"><a back-to-top>Back to top</a></p>
<p>
Super-powered by Google ©2010-2015
( <a id="version"
ng-href="https://github.com/angular/angular.js/blob/master/CHANGELOG.md#{{versionNumber}}"
ng-bind-template="v{{version}}">
</a>
)
</p>
<p>
Code licensed under the
<a href="https://github.com/angular/angular.js/blob/master/LICENSE" target="_blank">The
MIT License</a>. Documentation licensed under <a
href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.
</p>
</div>
</footer>
</div>
</body>
</html>
|
parinyacp/helpdesk
|
website/public_html/js/asset/angular/docs/index-production.html
|
HTML
|
mit
| 13,154
|
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeP1.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>總統副總統選舉 候選人在 雲林縣 北港鎮得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> 候選組數:3 <img src="../images/nav.gif" alt="應選組數" title="應選組數"> <img src="../images/nav.gif" alt="應選組數" title="應選組數"> 應選組數:1</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>登記方式</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>朱立倫<br>王如玄</td>
<td>男<br>女</td>
<td class="tdAlignRight">4,729</td>
<td class="tdAlignRight">22.1437</td>
<td>中國國民黨 推薦</td>
</tr>
<tr class="trT">
<td>◎</td>
<td>2</td>
<td>蔡英文<br>陳建仁</td>
<td>女<br>男</td>
<td class="tdAlignRight">14,214</td>
<td class="tdAlignRight">66.5574</td>
<td>民主進步黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>宋楚瑜<br>徐欣瑩</td>
<td>男<br>女</td>
<td class="tdAlignRight">2,413</td>
<td class="tdAlignRight">11.2989</td>
<td>親民黨 推薦</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 41/41 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>自然當選</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 23:15:12 +0800" title="Sat, 16 Jan 2016 23:15:12 +0800"> 資料更新時間: 01/16 23:15:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter" align=center>[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
|
gugod/vote-watch-2016
|
data/president/n705001100000000/20160116153125/page.html
|
HTML
|
cc0-1.0
| 6,575
|
<!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_25) on Thu Sep 12 10:52:52 BST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>OpLeftJoin (Apache Jena ARQ)</title>
<meta name="date" content="2013-09-12">
<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="OpLeftJoin (Apache Jena ARQ)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/OpLeftJoin.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLabel.html" title="class in com.hp.hpl.jena.sparql.algebra.op"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpList.html" title="class in com.hp.hpl.jena.sparql.algebra.op"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html" target="_top">Frames</a></li>
<li><a href="OpLeftJoin.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.hp.hpl.jena.sparql.algebra.op</div>
<h2 title="Class OpLeftJoin" class="title">Class OpLeftJoin</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializableBase.html" title="class in com.hp.hpl.jena.sparql.util">com.hp.hpl.jena.sparql.util.PrintSerializableBase</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html" title="class in com.hp.hpl.jena.sparql.algebra.op">com.hp.hpl.jena.sparql.algebra.op.OpBase</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">com.hp.hpl.jena.sparql.algebra.op.Op2</a></li>
<li>
<ul class="inheritance">
<li>com.hp.hpl.jena.sparql.algebra.op.OpLeftJoin</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/util/Named.html" title="interface in com.hp.hpl.jena.sparql.util">Named</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializable.html" title="interface in com.hp.hpl.jena.sparql.util">PrintSerializable</a>, <a href="../../../../../../../org/apache/jena/atlas/io/Printable.html" title="interface in org.apache.jena.atlas.io">Printable</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">OpLeftJoin</span>
extends <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#apply(com.hp.hpl.jena.sparql.algebra.Transform, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">apply</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Transform.html" title="interface in com.hp.hpl.jena.sparql.algebra">Transform</a> transform,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#copy(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">copy</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> newLeft,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> newRight)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#create(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.Expr)">create</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/Expr.html" title="interface in com.hp.hpl.jena.sparql.expr">Expr</a> expr)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#create(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.ExprList)">create</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a> exprs)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpLeftJoin</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#createLeftJoin(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.ExprList)">createLeftJoin</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a> exprs)</code>
<div class="block">Guaranteed to return a new left join</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#equalTo(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.util.NodeIsomorphismMap)">equalTo</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> op2,
<a href="../../../../../../../com/hp/hpl/jena/sparql/util/NodeIsomorphismMap.html" title="class in com.hp.hpl.jena.sparql.util">NodeIsomorphismMap</a> labelMap)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#getExprs()">getExprs</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#getName()">getName</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html#visit(com.hp.hpl.jena.sparql.algebra.OpVisitor)">visit</a></strong>(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/OpVisitor.html" title="interface in com.hp.hpl.jena.sparql.algebra">OpVisitor</a> opVisitor)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.hp.hpl.jena.sparql.algebra.op.Op2">
<!-- -->
</a>
<h3>Methods inherited from class com.hp.hpl.jena.sparql.algebra.op.<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a></h3>
<code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html#getLeft()">getLeft</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html#getRight()">getRight</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html#hashCode()">hashCode</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.hp.hpl.jena.sparql.algebra.op.OpBase">
<!-- -->
</a>
<h3>Methods inherited from class com.hp.hpl.jena.sparql.algebra.op.<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpBase</a></h3>
<code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html#equals(java.lang.Object)">equals</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html#output(org.apache.jena.atlas.io.IndentedWriter)">output</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html#output(org.apache.jena.atlas.io.IndentedWriter, com.hp.hpl.jena.sparql.serializer.SerializationContext)">output</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.hp.hpl.jena.sparql.util.PrintSerializableBase">
<!-- -->
</a>
<h3>Methods inherited from class com.hp.hpl.jena.sparql.util.<a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializableBase.html" title="class in com.hp.hpl.jena.sparql.util">PrintSerializableBase</a></h3>
<code><a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializableBase.html#toString()">toString</a>, <a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializableBase.html#toString(com.hp.hpl.jena.shared.PrefixMapping)">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.hp.hpl.jena.sparql.util.PrintSerializable">
<!-- -->
</a>
<h3>Methods inherited from interface com.hp.hpl.jena.sparql.util.<a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializable.html" title="interface in com.hp.hpl.jena.sparql.util">PrintSerializable</a></h3>
<code><a href="../../../../../../../com/hp/hpl/jena/sparql/util/PrintSerializable.html#toString(com.hp.hpl.jena.shared.PrefixMapping)">toString</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="createLeftJoin(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.ExprList)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createLeftJoin</h4>
<pre>public static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpLeftJoin</a> createLeftJoin(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a> exprs)</pre>
<div class="block">Guaranteed to return a new left join</div>
</li>
</ul>
<a name="create(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.ExprList)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> create(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a> exprs)</pre>
</li>
</ul>
<a name="create(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.expr.Expr)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> create(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right,
<a href="../../../../../../../com/hp/hpl/jena/sparql/expr/Expr.html" title="interface in com.hp.hpl.jena.sparql.expr">Expr</a> expr)</pre>
</li>
</ul>
<a name="getExprs()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExprs</h4>
<pre>public <a href="../../../../../../../com/hp/hpl/jena/sparql/expr/ExprList.html" title="class in com.hp.hpl.jena.sparql.expr">ExprList</a> getExprs()</pre>
</li>
</ul>
<a name="getName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getName</h4>
<pre>public <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> getName()</pre>
</li>
</ul>
<a name="apply(com.hp.hpl.jena.sparql.algebra.Transform, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>apply</h4>
<pre>public <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> apply(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Transform.html" title="interface in com.hp.hpl.jena.sparql.algebra">Transform</a> transform,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> left,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> right)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html#apply(com.hp.hpl.jena.sparql.algebra.Transform, com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">apply</a></code> in class <code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a></code></dd>
</dl>
</li>
</ul>
<a name="visit(com.hp.hpl.jena.sparql.algebra.OpVisitor)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>visit</h4>
<pre>public void visit(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/OpVisitor.html" title="interface in com.hp.hpl.jena.sparql.algebra">OpVisitor</a> opVisitor)</pre>
</li>
</ul>
<a name="copy(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>copy</h4>
<pre>public <a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a> copy(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> newLeft,
<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> newRight)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html#copy(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.algebra.Op)">copy</a></code> in class <code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/Op2.html" title="class in com.hp.hpl.jena.sparql.algebra.op">Op2</a></code></dd>
</dl>
</li>
</ul>
<a name="equalTo(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.util.NodeIsomorphismMap)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>equalTo</h4>
<pre>public boolean equalTo(<a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> op2,
<a href="../../../../../../../com/hp/hpl/jena/sparql/util/NodeIsomorphismMap.html" title="class in com.hp.hpl.jena.sparql.util">NodeIsomorphismMap</a> labelMap)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html#equalTo(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.util.NodeIsomorphismMap)">equalTo</a></code> in interface <code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></dd>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html#equalTo(com.hp.hpl.jena.sparql.algebra.Op, com.hp.hpl.jena.sparql.util.NodeIsomorphismMap)">equalTo</a></code> in class <code><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpBase.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpBase</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/OpLeftJoin.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpLabel.html" title="class in com.hp.hpl.jena.sparql.algebra.op"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpList.html" title="class in com.hp.hpl.jena.sparql.algebra.op"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html" target="_top">Frames</a></li>
<li><a href="OpLeftJoin.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
|
vuk/Clojure-Movies
|
resources/apache-jena/javadoc-arq/com/hp/hpl/jena/sparql/algebra/op/OpLeftJoin.html
|
HTML
|
epl-1.0
| 25,713
|
<!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_25) on Thu Sep 12 11:01:01 BST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>com.hp.hpl.jena.sdb.compiler (Apache Jena SDB)</title>
<meta name="date" content="2013-09-12">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../../../../com/hp/hpl/jena/sdb/compiler/package-summary.html" target="classFrame">com.hp.hpl.jena.sdb.compiler</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="ConditionCompiler.html" title="interface in com.hp.hpl.jena.sdb.compiler" target="classFrame"><i>ConditionCompiler</i></a></li>
<li><a href="QuadBlockCompiler.html" title="interface in com.hp.hpl.jena.sdb.compiler" target="classFrame"><i>QuadBlockCompiler</i></a></li>
<li><a href="QueryCompiler.html" title="interface in com.hp.hpl.jena.sdb.compiler" target="classFrame"><i>QueryCompiler</i></a></li>
<li><a href="QueryCompilerFactory.html" title="interface in com.hp.hpl.jena.sdb.compiler" target="classFrame"><i>QueryCompilerFactory</i></a></li>
<li><a href="SqlStage.html" title="interface in com.hp.hpl.jena.sdb.compiler" target="classFrame"><i>SqlStage</i></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ConditionCompilerNone.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">ConditionCompilerNone</a></li>
<li><a href="OpLibSDB.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">OpLibSDB</a></li>
<li><a href="OpSQL.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">OpSQL</a></li>
<li><a href="PatternTable.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">PatternTable</a></li>
<li><a href="QuadBlock.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">QuadBlock</a></li>
<li><a href="QuadBlockCompilerMain.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">QuadBlockCompilerMain</a></li>
<li><a href="QueryCompilerMain.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">QueryCompilerMain</a></li>
<li><a href="QueryIterOpSQL.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">QueryIterOpSQL</a></li>
<li><a href="SDB_QC.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SDB_QC</a></li>
<li><a href="SDBCompile.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SDBCompile</a></li>
<li><a href="SDBConstraint.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SDBConstraint</a></li>
<li><a href="SlotCompiler.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SlotCompiler</a></li>
<li><a href="SqlBuilder.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SqlBuilder</a></li>
<li><a href="SqlStageBasicQuad.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SqlStageBasicQuad</a></li>
<li><a href="SqlStageList.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">SqlStageList</a></li>
<li><a href="TransformSDB.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">TransformSDB</a></li>
<li><a href="TransformSliceProject.html" title="class in com.hp.hpl.jena.sdb.compiler" target="classFrame">TransformSliceProject</a></li>
</ul>
</div>
</body>
</html>
|
vuk/Clojure-Movies
|
resources/apache-jena/javadoc-sdb/com/hp/hpl/jena/sdb/compiler/package-frame.html
|
HTML
|
epl-1.0
| 3,595
|
<?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 lang="pt-br" xml:lang="pt-br">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="reference" name="DC.Type" />
<meta name="DC.Title" content="SYSCONGLOMERATES" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs38369.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs28114.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs26665.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs22441.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs23241.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs12813.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs40972.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs13420.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs33921.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs12085.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabslilanguageitemsysstatistics.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs33768.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs24269.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs79888.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabs24045.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rrefsistabs39391" name="DC.Identifier" />
<meta content="pt-br" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>SYSCONGLOMERATES</title>
</head>
<body id="rrefsistabs39391"><a name="rrefsistabs39391"><!-- --></a>
<h1 class="topictitle1">SYSCONGLOMERATES</h1>
<div>
<div class="section">
<div class="p">Descreve os conglomerados do banco de dados corrente.
O conglomerado é uma unidade de armazenamento, sendo uma tabela ou um índice.
<div class="tablenoborder"><table cellspacing="0" cellpadding="4" summary="" width="100%" frame="border" border="1" rules="all">
<thead align="left">
<tr>
<th align="left" valign="bottom" width="31.313131313131315%" id="N10063">Nome da coluna</th>
<th align="left" valign="bottom" width="22.22222222222222%" id="N1006C">Tipo</th>
<th align="left" valign="bottom" width="11.11111111111111%" id="N10075">Comprimento</th>
<th align="left" valign="bottom" width="12.121212121212121%" id="N1007E">Aceita nulo</th>
<th align="left" valign="bottom" width="23.232323232323232%" id="N10087">Conteúdo</th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">SCHEMAID</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">CHAR</td>
<td valign="top" width="11.11111111111111%" headers="N10075">36</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">falso</td>
<td valign="top" width="23.232323232323232%" headers="N10087">ID de esquema para o conglomerado</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">TABLEID</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">CHAR</td>
<td valign="top" width="11.11111111111111%" headers="N10075">36</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">falso</td>
<td valign="top" width="23.232323232323232%" headers="N10087">identificador da tabela (junção com <em>SYSTABLES.TABLEID</em>)</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">CONGLOMERATENUMBER</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">BIGINT</td>
<td valign="top" width="11.11111111111111%" headers="N10075">8</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">falso</td>
<td valign="top" width="23.232323232323232%" headers="N10087">ID de conglomerado para o conglomerado (<em>heap</em> ou índice)</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">CONGLOMERATENAME</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">VARCHAR</td>
<td valign="top" width="11.11111111111111%" headers="N10075">128</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">verdade</td>
<td valign="top" width="23.232323232323232%" headers="N10087">nome do índice, se o conglomerado for um índice, senão o
ID da tabela</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">ISINDEX</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">BOOLEAN</td>
<td valign="top" width="11.11111111111111%" headers="N10075">1</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">falso</td>
<td valign="top" width="23.232323232323232%" headers="N10087">indica se o conglomerado é um índice, ou não</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">DESCRIPTOR</td>
<td valign="top" width="22.22222222222222%" headers="N1006C"> <p>org.apache.derby.<br />
catalog.IndexDescriptor:</p>
Esta classe não faz parte da API pública.</td>
<td valign="top" width="11.11111111111111%" headers="N10075"> </td>
<td valign="top" width="12.121212121212121%" headers="N1007E">verdade</td>
<td valign="top" width="23.232323232323232%" headers="N10087">tipo do sistema descrevendo o índice</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">ISCONSTRAINT</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">BOOLEAN</td>
<td valign="top" width="11.11111111111111%" headers="N10075">1</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">verdade</td>
<td valign="top" width="23.232323232323232%" headers="N10087">indica se o conglomerado é um índice gerado pelo sistema para
impor uma restrição, ou não</td>
</tr>
<tr>
<td valign="top" width="31.313131313131315%" headers="N10063">CONGLOMERATEID</td>
<td valign="top" width="22.22222222222222%" headers="N1006C">CHAR</td>
<td valign="top" width="11.11111111111111%" headers="N10075">36</td>
<td valign="top" width="12.121212121212121%" headers="N1007E">falso</td>
<td valign="top" width="23.232323232323232%" headers="N10087">identificador único para o conglomerado</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Tópico pai:</strong> <a href="rrefsistabs38369.html" title="">Tabelas do sistema Derby</a></div>
</div>
<div class="relref"><strong>Referências relacionadas</strong><br />
<div><a href="rrefsistabs28114.html" title="">SYSALIASES</a></div>
<div><a href="rrefsistabs26665.html" title="">SYSCHECKS</a></div>
<div><a href="rrefsistabs22441.html" title="">SYSCOLUMNS</a></div>
<div><a href="rrefsistabs23241.html" title="">SYSCONSTRAINTS</a></div>
<div><a href="rrefsistabs12813.html" title="">SYSDEPENDS</a></div>
<div><a href="rrefsistabs40972.html" title="">SYSFILES</a></div>
<div><a href="rrefsistabs13420.html" title="">SYSFOREIGNKEYS</a></div>
<div><a href="rrefsistabs33921.html" title="">SYSKEYS</a></div>
<div><a href="rrefsistabs12085.html" title="">SYSSCHEMAS</a></div>
<div><a href="rrefsistabslilanguageitemsysstatistics.html" title="">SYSSTATISTICS</a></div>
<div><a href="rrefsistabs33768.html" title="">SYSSTATEMENTS</a></div>
<div><a href="rrefsistabs24269.html" title="">SYSTABLES</a></div>
<div><a href="rrefsistabs79888.html" title="">SYSTRIGGERS</a></div>
<div><a href="rrefsistabs24045.html" title="">SYSVIEWS</a></div>
</div>
</div>
</body>
</html>
|
acshea/edgware
|
bundle.apache.derby/db-derby-10.8.3.0-bin/docs/html/pt_BR/ref/rrefsistabs39391.html
|
HTML
|
epl-1.0
| 9,000
|
<html>
<head>
<title>
Scid Help:
Crosstable window
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<STYLE TYPE="text/css">
<!--
body { background: #ffffff; }
h1, h2, h3, h4, h5 { color: #990000; }
h1 { align: center; }
-->
</STYLE>
</head>
<body bgcolor="#ffffff">
<h1>The Crosstable window</h1>
<p>
The crosstable window shows the tournament crosstable for the
current game. Each time you refresh the crosstable window (by
pressing its Refresh button, by pressing the <b>Return</b> key in the
crosstable window, or by typing <b>Control+Shift+X</b> in the
<a href="MainWindow.html">main</a> or <a href="GameList.html">game list</a> windows), Scid
searches for all games in the same tournament as the current game.
</p>
<p>
Any game played up to <b>three months before or after</b> the current game,
with the <b>exact same Event and Site tags</b>, is considered to be in
the tournament.
</p>
<p>
A single left-mouse button click on any result in the crosstable
loads the corresponding game.
You can add all the games in the tournament to the
<a href="Searches.html\#Filter">filter</a>
with the <b>Add to filter</b> button in the crosstable window.
</p>
<h4>Crosstable window menus</h4>
<p>
The <b><font color="#007000">[File]</font></b> menu lets you print the current table to a file
in plain text, LaTeX or HTML table format.
</p>
<p>
The <b><font color="#007000">[Display]</font></b> menu allows you to choose the table format:
<b>All-play-all</b>, <b>Swiss</b> or <b>Knockout</b> or <b>Auto</b>.
</p>
<p>
The all-play-all format (for round-robin-type events) has a limit of 30
players, but the Swiss format (for tournaments with many players) can
display up to 200 players and up to 20 rounds. <b>Auto</b>, which chooses
the best format automatically for each tournament, is the default.
</p>
<p>
Note that Scid uses the <b>Round</b> tag of each game to produce a Swiss
crosstable, so you will not see any games in the Swiss table for a tournament
if its games do not have numeric round values: 1, 2, 3, etc.
</p>
<p>
The Display menu also lets you customize the data presented to
include or exclude ratings, countries and player titles. You can also
choose whether color allocations in Swiss tables are displayed.
</p>
<p>
The <b>Separate score groups</b> option only affects the layout of the table
when the players are sorted by score: it causes a blank line to be inserted
between each group of players with the same score.
</p>
<p>
The <b><font color="#007000">[Sort]</font></b> menu allows you to sort the players by name, rating
or score; by score is the default.
</p>
<p>
The <b><font color="#007000">[Color]</font></b> menu lets you turn color (hypertext) display on or off.
Since it can take a long time to format and display large crosstables in
hypertext, selecting <b>Plain text</b> for large events will save a
lot of time.
However, in plain text mode you cannot click on players or games.
</p>
<h4>Duplicate games in crosstables</h4>
<p>
To get good results with the crosstable, you should mark duplicate games
for deletion and your games should have consistent spelling of player,
site and event names.
See the <a href="Maintenance.html">database maintenance</a> page for help on
deleting duplicate games and editing (or spellchecking)
player/event/site names.
</p>
<p><center><font size=-1>(Updated: Scid 3.1, December 2001)</font></center></p>
</body>
</html>
|
Raimondi/scid
|
help/Crosstable.html
|
HTML
|
gpl-2.0
| 3,427
|
<div ng-controller="PhenomenonListCtrl">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="#/{{serviceId}}">back</a></li>
</ul>
<h3 class="muted">Phenomenons</h3>
</div>
<div class="span5 pull-left parameterList">
<input type="text" ng-model="search" placeholder="Filter by name...">
<ul class="phenomenons">
<li ng-repeat="phenomenon in phenomenons | filter:searchInRelevantProperties">
<!-- decode twice since browser decodes automatically when routing -->
<a href="#/{{serviceId}}/phenomenons/{{utils.doubleEncode(phenomenon.id)}}">{{phenomenon.label}}</a>
</li>
</ul>
</div>
</div>
|
ridoo/SensorWebClient
|
sensorwebclient-sos-rest/src/main/webapp/explorer/partials/phenomenon-list.html
|
HTML
|
gpl-2.0
| 656
|
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset {
margin: 0;
padding: 0;
border: 0;
background: transparent;
text-decoration: none;
width: auto;
height: auto;
vertical-align: baseline;
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
position: static;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
transition: none;
}
.cke_reset_all,.cke_reset_all * {
margin: 0;
padding: 0;
border: 0;
background: transparent;
text-decoration: none;
width: auto;
height: auto;
vertical-align: baseline;
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
position: static;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
transition: none;
border-collapse: collapse;
font: normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
color: #000;
text-align: left;
white-space: nowrap;
cursor: auto;
float: none;
}
.cke_reset_all .cke_rtl * {
text-align: right;
}
.cke_reset_all iframe {
vertical-align: inherit;
}
.cke_reset_all textarea {
white-space: pre;
}
.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"] {
cursor: text;
}
.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled] {
cursor: default;
}
.cke_reset_all fieldset {
padding: 10px;
border: 2px groove #e0dfe3;
}
.cke_reset_all select {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.cke_chrome {
display: block;
border: 1px solid #b6b6b6;
padding: 0;
-moz-box-shadow: 0 0 3px rgba(0,0,0,.15);
-webkit-box-shadow: 0 0 3px rgba(0,0,0,.15);
box-shadow: 0 0 3px rgba(0,0,0,.15);
}
.cke_inner {
display: block;
-webkit-touch-callout: none;
background: #fff;
padding: 0;
}
.cke_float {
border: 0;
}
.cke_float .cke_inner {
padding-bottom: 0;
}
.cke_top,.cke_contents,.cke_bottom {
display: block;
overflow: hidden;
}
.cke_top {
border-bottom: 1px solid #b6b6b6;
padding: 6px 8px 2px;
white-space: normal;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));
background-image: -moz-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -webkit-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -o-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -ms-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: linear-gradient(top,#f5f5f5,#cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf');
}
.cke_float .cke_top {
border: 1px solid #b6b6b6;
border-bottom-color: #999;
}
.cke_bottom {
padding: 6px 8px 2px;
position: relative;
border-top: 1px solid #bfbfbf;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));
background-image: -moz-linear-gradient(top,#ebebeb,#cfd1cf);
background-image: -webkit-linear-gradient(top,#ebebeb,#cfd1cf);
background-image: -o-linear-gradient(top,#ebebeb,#cfd1cf);
background-image: -ms-linear-gradient(top,#ebebeb,#cfd1cf);
background-image: linear-gradient(top,#ebebeb,#cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf');
}
.cke_browser_ios .cke_contents {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.cke_resizer {
width: 0;
height: 0;
overflow: hidden;
width: 0;
height: 0;
overflow: hidden;
border-width: 10px 10px 0 0;
border-color: transparent #666 transparent transparent;
border-style: dashed solid dashed dashed;
font-size: 0;
vertical-align: bottom;
margin-top: 6px;
margin-bottom: 2px;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.3);
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.3);
box-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.cke_hc .cke_resizer {
font-size: 15px;
width: auto;
height: auto;
border-width: 0;
}
.cke_resizer_ltr {
cursor: se-resize;
float: right;
margin-right: -4px;
}
.cke_resizer_rtl {
border-width: 10px 0 0 10px;
border-color: transparent transparent transparent #a5a5a5;
border-style: dashed dashed dashed solid;
cursor: sw-resize;
float: left;
margin-left: -4px;
right: auto;
}
.cke_wysiwyg_div {
display: block;
height: 100%;
overflow: auto;
padding: 0 8px;
outline-style: none;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.cke_panel {
visibility: visible;
width: 120px;
height: 100px;
overflow: hidden;
background-color: #fff;
border: 1px solid #b6b6b6;
border-bottom-color: #999;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 0 3px rgba(0,0,0,.15);
-webkit-box-shadow: 0 0 3px rgba(0,0,0,.15);
box-shadow: 0 0 3px rgba(0,0,0,.15);
}
.cke_menu_panel {
padding: 0;
margin: 0;
}
.cke_combopanel {
width: 150px;
height: 170px;
}
.cke_panel_frame {
width: 100%;
height: 100%;
font-size: 12px;
overflow: auto;
overflow-x: hidden;
}
.cke_panel_container {
overflow-y: auto;
overflow-x: hidden;
}
.cke_panel_list {
list-style-type: none;
margin: 3px;
padding: 0;
white-space: nowrap;
}
.cke_panel_listItem {
margin: 0;
padding-bottom: 1px;
}
.cke_panel_listItem a {
padding: 3px 4px;
display: block;
border: 1px solid #fff;
color: inherit!important;
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
* html .cke_panel_listItem a {
width: 100%;
color: #000;
}
*:first-child+html .cke_panel_listItem a {
color: #000;
}
.cke_panel_listItem.cke_selected a {
border: 1px solid #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
-webkit-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
}
.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active {
border-color: #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
-webkit-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
}
.cke_hc .cke_panel_listItem a {
border-style: none;
}
.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active {
border: 2px solid;
padding: 1px 2px;
}
.cke_panel_grouptitle {
font-size: 11px;
font-weight: bold;
white-space: nowrap;
margin: 0;
padding: 4px 6px;
color: #474747;
text-shadow: 0 1px 0 rgba(255,255,255,.75);
border-bottom: 1px solid #b6b6b6;
-moz-border-radius: 2px 2px 0 0;
-webkit-border-radius: 2px 2px 0 0;
border-radius: 2px 2px 0 0;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));
background-image: -moz-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -webkit-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -o-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: -ms-linear-gradient(top,#f5f5f5,#cfd1cf);
background-image: linear-gradient(top,#f5f5f5,#cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf');
}
.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre {
margin-top: 0;
margin-bottom: 0;
}
.cke_colorblock {
padding: 3px;
font-size: 11px;
font-family: 'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;
}
.cke_colorblock,.cke_colorblock a {
text-decoration: none;
color: #000;
}
span.cke_colorbox {
width: 10px;
height: 10px;
border: #808080 1px solid;
float: left;
}
.cke_rtl span.cke_colorbox {
float: right;
}
a.cke_colorbox {
border: #fff 1px solid;
padding: 2px;
float: left;
width: 12px;
height: 12px;
}
.cke_rtl a.cke_colorbox {
float: right;
}
a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox {
border: #b6b6b6 1px solid;
background-color: #e5e5e5;
}
a.cke_colorauto,a.cke_colormore {
border: #fff 1px solid;
padding: 2px;
display: block;
cursor: pointer;
}
a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore {
border: #b6b6b6 1px solid;
background-color: #e5e5e5;
}
.cke_toolbar {
float: left;
}
.cke_rtl .cke_toolbar {
float: right;
}
.cke_toolgroup {
float: left;
margin: 0 6px 5px 0;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));
background-image: -moz-linear-gradient(top,#fff,#e4e4e4);
background-image: -webkit-linear-gradient(top,#fff,#e4e4e4);
background-image: -o-linear-gradient(top,#fff,#e4e4e4);
background-image: -ms-linear-gradient(top,#fff,#e4e4e4);
background-image: linear-gradient(top,#fff,#e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');
}
.cke_hc .cke_toolgroup {
border: 0;
margin-right: 10px;
margin-bottom: 10px;
}
.cke_rtl .cke_toolgroup {
float: right;
margin-left: 6px;
margin-right: 0;
}
a.cke_button {
display: inline-block;
height: 18px;
padding: 4px 6px;
outline: 0;
cursor: default;
float: left;
border: 0;
}
.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child {
-moz-border-radius: 0 2px 2px 0;
-webkit-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}
.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child {
-moz-border-radius: 2px 0 0 2px;
-webkit-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}
.cke_rtl .cke_button {
float: right;
}
.cke_hc .cke_button {
border: 1px solid black;
padding: 3px 5px;
margin: -2px 4px 0 -2px;
}
.cke_button_on {
-moz-box-shadow: 0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: 0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);
box-shadow: 0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);
background: #b5b5b5;
background-image: -webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));
background-image: -moz-linear-gradient(top,#aaa,#cacaca);
background-image: -webkit-linear-gradient(top,#aaa,#cacaca);
background-image: -o-linear-gradient(top,#aaa,#cacaca);
background-image: -ms-linear-gradient(top,#aaa,#cacaca);
background-image: linear-gradient(top,#aaa,#cacaca);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca');
}
.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active {
border-width: 3px;
padding: 1px 3px;
}
.cke_button_disabled .cke_button_icon {
opacity: .3;
}
.cke_hc .cke_button_disabled {
opacity: .5;
}
a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active {
-moz-box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
}
a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active {
-moz-box-shadow: 0 0 1px rgba(0,0,0,.3) inset;
-webkit-box-shadow: 0 0 1px rgba(0,0,0,.3) inset;
box-shadow: 0 0 1px rgba(0,0,0,.3) inset;
background: #ccc;
background-image: -webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));
background-image: -moz-linear-gradient(top,#f2f2f2,#ccc);
background-image: -webkit-linear-gradient(top,#f2f2f2,#ccc);
background-image: -o-linear-gradient(top,#f2f2f2,#ccc);
background-image: -ms-linear-gradient(top,#f2f2f2,#ccc);
background-image: linear-gradient(top,#f2f2f2,#ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');
}
.cke_button_icon {
cursor: inherit;
background-repeat: no-repeat;
margin-top: 1px;
width: 16px;
height: 16px;
float: left;
display: inline-block;
}
.cke_rtl .cke_button_icon {
float: right;
}
.cke_hc .cke_button_icon {
display: none;
}
.cke_button_label {
display: none;
padding-left: 3px;
margin-top: 1px;
line-height: 17px;
vertical-align: middle;
float: left;
cursor: default;
color: #474747;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.cke_rtl .cke_button_label {
padding-right: 3px;
padding-left: 0;
float: right;
}
.cke_hc .cke_button_label {
padding: 0;
display: inline-block;
font-size: 12px;
}
.cke_button_arrow {
display: inline-block;
margin: 8px 0 0 1px;
width: 0;
height: 0;
cursor: default;
vertical-align: top;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid #474747;
}
.cke_rtl .cke_button_arrow {
margin-right: 5px;
margin-left: 0;
}
.cke_hc .cke_button_arrow {
font-size: 10px;
margin: 3px -2px 0 3px;
width: auto;
border: 0;
}
.cke_toolbar_separator {
float: left;
background-color: #c0c0c0;
background-color: rgba(0,0,0,.2);
margin: 5px 2px 0;
height: 18px;
width: 1px;
-webkit-box-shadow: 1px 0 1px rgba(255,255,255,.5);
-moz-box-shadow: 1px 0 1px rgba(255,255,255,.5);
box-shadow: 1px 0 1px rgba(255,255,255,.5);
}
.cke_rtl .cke_toolbar_separator {
float: right;
-webkit-box-shadow: -1px 0 1px rgba(255,255,255,.1);
-moz-box-shadow: -1px 0 1px rgba(255,255,255,.1);
box-shadow: -1px 0 1px rgba(255,255,255,.1);
}
.cke_hc .cke_toolbar_separator {
width: 0;
border-left: 1px solid;
margin: 1px 5px 0 0;
}
.cke_toolbar_break {
display: block;
clear: left;
}
.cke_rtl .cke_toolbar_break {
clear: right;
}
.cke_toolbox_collapser {
width: 12px;
height: 11px;
float: right;
margin: 11px 0 0;
font-size: 0;
cursor: default;
text-align: center;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));
background-image: -moz-linear-gradient(top,#fff,#e4e4e4);
background-image: -webkit-linear-gradient(top,#fff,#e4e4e4);
background-image: -o-linear-gradient(top,#fff,#e4e4e4);
background-image: -ms-linear-gradient(top,#fff,#e4e4e4);
background-image: linear-gradient(top,#fff,#e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');
}
.cke_toolbox_collapser:hover {
background: #ccc;
background-image: -webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));
background-image: -moz-linear-gradient(top,#f2f2f2,#ccc);
background-image: -webkit-linear-gradient(top,#f2f2f2,#ccc);
background-image: -o-linear-gradient(top,#f2f2f2,#ccc);
background-image: -ms-linear-gradient(top,#f2f2f2,#ccc);
background-image: linear-gradient(top,#f2f2f2,#ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');
}
.cke_toolbox_collapser.cke_toolbox_collapser_min {
margin: 0 2px 4px;
}
.cke_rtl .cke_toolbox_collapser {
float: left;
}
.cke_toolbox_collapser .cke_arrow {
display: inline-block;
height: 0;
width: 0;
font-size: 0;
margin-top: 1px;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-bottom: 3px solid #474747;
border-top: 3px solid transparent;
}
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow {
margin-top: 4px;
border-bottom-color: transparent;
border-top-color: #474747;
}
.cke_hc .cke_toolbox_collapser .cke_arrow {
font-size: 8px;
width: auto;
border: 0;
margin-top: 0;
margin-right: 2px;
}
.cke_menubutton {
display: block;
}
.cke_menuitem span {
cursor: default;
}
.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active {
background-color: #d3d3d3;
display: block;
}
.cke_hc .cke_menubutton {
padding: 2px;
}
.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active {
border: 2px solid;
padding: 0;
}
.cke_menubutton_inner {
display: table-row;
}
.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow {
display: table-cell;
}
.cke_menubutton_icon {
background-color: #d7d8d7;
opacity: .70;
filter: alpha(opacity=70);
padding: 4px;
}
.cke_hc .cke_menubutton_icon {
height: 16px;
width: 0;
padding: 4px 0;
}
.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon {
background-color: #d0d2d0;
}
.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon {
opacity: .3;
filter: alpha(opacity=30);
}
.cke_menubutton_label {
padding: 0 5px;
background-color: transparent;
width: 100%;
vertical-align: middle;
}
.cke_menubutton_disabled .cke_menubutton_label {
opacity: .3;
filter: alpha(opacity=30);
}
.cke_menubutton_on {
border: 1px solid #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
-webkit-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
}
.cke_menubutton_on .cke_menubutton_icon {
padding-right: 3px;
}
.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active {
background-color: #eff0ef;
}
.cke_panel_frame .cke_menubutton_label {
display: none;
}
.cke_menuseparator {
background-color: #d3d3d3;
height: 1px;
filter: alpha(opacity=70);
opacity: .70;
}
.cke_menuarrow {
background-image: url(images/arrow.png);
background-position: 0 10px;
background-repeat: no-repeat;
padding: 0 5px;
}
.cke_rtl .cke_menuarrow {
background-position: 5px -13px;
background-repeat: no-repeat;
}
.cke_menuarrow span {
display: none;
}
.cke_hc .cke_menuarrow span {
vertical-align: middle;
display: inline;
}
.cke_combo {
display: inline-block;
float: left;
}
.cke_rtl .cke_combo {
float: right;
}
.cke_hc .cke_combo {
margin-top: -2px;
}
.cke_combo_label {
display: none;
float: left;
line-height: 26px;
vertical-align: top;
margin-right: 5px;
}
.cke_rtl .cke_combo_label {
float: right;
margin-left: 5px;
margin-right: 0;
}
.cke_combo_button {
display: inline-block;
float: left;
margin: 0 6px 5px 0;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));
background-image: -moz-linear-gradient(top,#fff,#e4e4e4);
background-image: -webkit-linear-gradient(top,#fff,#e4e4e4);
background-image: -o-linear-gradient(top,#fff,#e4e4e4);
background-image: -ms-linear-gradient(top,#fff,#e4e4e4);
background-image: linear-gradient(top,#fff,#e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');
}
.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus {
background: #ccc;
background-image: -webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));
background-image: -moz-linear-gradient(top,#f2f2f2,#ccc);
background-image: -webkit-linear-gradient(top,#f2f2f2,#ccc);
background-image: -o-linear-gradient(top,#f2f2f2,#ccc);
background-image: -ms-linear-gradient(top,#f2f2f2,#ccc);
background-image: linear-gradient(top,#f2f2f2,#ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');
outline: 0;
}
.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button {
border: 1px solid #777;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;
background: #b5b5b5;
background-image: -webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));
background-image: -moz-linear-gradient(top,#aaa,#cacaca);
background-image: -webkit-linear-gradient(top,#aaa,#cacaca);
background-image: -o-linear-gradient(top,#aaa,#cacaca);
background-image: -ms-linear-gradient(top,#aaa,#cacaca);
background-image: linear-gradient(top,#aaa,#cacaca);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca');
}
.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active {
-moz-box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
box-shadow: 0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);
}
.cke_rtl .cke_combo_button {
float: right;
margin-left: 5px;
margin-right: 0;
}
.cke_hc a.cke_combo_button {
padding: 3px;
}
.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active {
border-width: 3px;
padding: 1px;
}
.cke_combo_text {
line-height: 26px;
padding-left: 10px;
text-overflow: ellipsis;
overflow: hidden;
float: left;
cursor: default;
color: #474747;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
width: 60px;
}
.cke_rtl .cke_combo_text {
float: right;
text-align: right;
padding-left: 0;
padding-right: 10px;
}
.cke_hc .cke_combo_text {
line-height: 18px;
font-size: 12px;
}
.cke_combo_open {
cursor: default;
display: inline-block;
font-size: 0;
height: 19px;
line-height: 17px;
margin: 1px 7px 1px;
width: 5px;
}
.cke_hc .cke_combo_open {
height: 12px;
}
.cke_combo_arrow {
margin: 11px 0 0;
float: left;
height: 0;
width: 0;
font-size: 0;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid #474747;
}
.cke_hc .cke_combo_arrow {
font-size: 10px;
width: auto;
border: 0;
margin-top: 3px;
}
.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open {
opacity: .3;
}
.cke_path {
float: left;
margin: -2px 0 2px;
}
.cke_path_item,.cke_path_empty {
display: inline-block;
float: left;
padding: 3px 4px;
margin-right: 2px;
cursor: default;
text-decoration: none;
outline: 0;
border: 0;
color: #4c4c4c;
text-shadow: 0 1px 0 #fff;
font-weight: bold;
font-size: 11px;
}
.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty {
float: right;
}
a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active {
background-color: #bfbfbf;
color: #333;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);
-webkit-box-shadow: 0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);
box-shadow: 0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);
}
.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active {
border: 2px solid;
padding: 1px 2px;
}
.cke_button__source_label,.cke_button__sourcedialog_label {
display: inline;
}
.cke_combo__fontsize .cke_combo_text {
width: 30px;
}
.cke_combopanel__fontsize {
width: 120px;
}
.cke_source {
font-family: 'Courier New',Monospace;
font-size: small;
background-color: #fff;
white-space: pre;
}
.cke_wysiwyg_frame,.cke_wysiwyg_div {
background-color: #fff;
}
.cke_chrome {
visibility: inherit;
}
.cke_voice_label {
display: none;
}
legend.cke_voice_label {
display: none;
}
a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active {
filter: alpha(opacity = 30);
}
.cke_button_disabled .cke_button_icon {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff);
}
.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active {
filter: alpha(opacity = 100);
}
.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open {
filter: alpha(opacity = 30);
}
.cke_toolbox_collapser {
border: 1px solid #a6a6a6;
}
.cke_toolbox_collapser .cke_arrow {
margin-top: 1px;
}
.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle {
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty {
float: none;
}
.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon, {
display: inline-block;
vertical-align: top;
}
.cke_toolbox {
display: inline-block;
padding-bottom: 5px;
height: 100%;
}
.cke_rtl .cke_toolbox {
padding-bottom: 0;
}
.cke_toolbar {
margin-bottom: 5px;
}
.cke_rtl .cke_toolbar {
margin-bottom: 0;
}
.cke_toolgroup {
height: 26px;
}
.cke_toolgroup,.cke_combo {
position: relative;
}
a.cke_button {
float: none;
vertical-align: top;
}
.cke_toolbar_separator {
display: inline-block;
float: none;
vertical-align: top;
background-color: #c0c0c0;
}
.cke_toolbox_collapser .cke_arrow {
margin-top: 0;
}
.cke_toolbox_collapser .cke_arrow {
border-width: 4px;
}
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow {
border-width: 3px;
}
.cke_rtl .cke_button_arrow {
padding-top: 8px;
margin-right: 2px;
}
.cke_rtl .cke_combo_inlinelabel {
display: table-cell;
vertical-align: middle;
}
.cke_menubutton {
display: block;
height: 24px;
}
.cke_menubutton_inner {
display: block;
position: relative;
}
.cke_menubutton_icon {
height: 16px;
width: 16px;
}
.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow {
display: inline-block;
}
.cke_menubutton_label {
width: auto;
vertical-align: top;
line-height: 24px;
height: 24px;
margin: 0 10px 0 0;
}
.cke_menuarrow {
width: 5px;
height: 6px;
padding: 0;
position: absolute;
right: 8px;
top: 10px;
background-position: 0 0;
}
.cke_rtl .cke_menubutton_icon {
position: absolute;
right: 0;
top: 0;
}
.cke_rtl .cke_menubutton_label {
float: right;
clear: both;
margin: 0 24px 0 10px;
}
.cke_hc .cke_rtl .cke_menubutton_label {
margin-right: 0;
}
.cke_rtl .cke_menuarrow {
left: 8px;
right: auto;
background-position: 0 -24px;
}
.cke_hc .cke_menuarrow {
top: 5px;
padding: 0 5px;
}
.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password {
position: relative;
}
.cke_wysiwyg_div {
padding-top: 0!important;
padding-bottom: 0!important;
}
|
hfjeldberg/rebekka-huy
|
wp-content/themes/semplice/content-editor/ckeditor/skins/moono/editor_ie7.css
|
CSS
|
gpl-2.0
| 31,878
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>register_db</title>
<link rel="stylesheet" href="apiReference.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB C++ Standard Template Library API Reference" />
<link rel="up" href="dbstl_global_functions.html" title="Chapter 1. Dbstl Global Public Functions" />
<link rel="prev" href="stldbstl_global_functionsset_current_txn_handle.html" title="set_current_txn_handle" />
<link rel="next" href="stldbstl_global_functionsregister_db_env.html" title="register_db_env" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">register_db</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="stldbstl_global_functionsset_current_txn_handle.html">Prev</a> </td>
<th width="60%" align="center">Chapter 1.
Dbstl Global Public Functions </th>
<td width="20%" align="right"> <a accesskey="n" href="stldbstl_global_functionsregister_db_env.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="stldbstl_global_functionsregister_db"></a>register_db</h2>
</div>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="stldbstl_global_functionsregister_db_details"></a>Function Details</h3>
</div>
</div>
</div>
<pre class="programlisting">
void register_db(Db *pdb1)
</pre>
<p>Register a Db handle "pdb1". </p>
<p>This handle and handles opened in it will be closed by ResourceManager
, so application code must not try to close or delete it. Users can do enough configuration before opening the Db then register it via this function. All database handles should be registered via this function in each thread using the handle. The only exception is the database handle opened by <a class="link" href="stldbstl_global_functionsopen_db.html" title="open_db">dbstl::open_db</a>
should not be registered in the thread of the <a class="link" href="stldbstl_global_functionsopen_db.html" title="open_db">dbstl::open_db</a>
call. </p>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="id3382491"></a>Parameters</h4>
</div>
</div>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="id3382494"></a>pdb1</h5>
</div>
</div>
</div>
<p>The database handle to register into dbstl for current thread. </p>
</div>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id3382394"></a>Class</h3>
</div>
</div>
</div>
<p>
<a class="link" href="dbstl_global_functions.html" title="Chapter 1. Dbstl Global Public Functions">dbstl_global_functions</a>
</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="stldbstl_global_functionsset_current_txn_handle.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="dbstl_global_functions.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="stldbstl_global_functionsregister_db_env.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">set_current_txn_handle </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> register_db_env</td>
</tr>
</table>
</div>
</body>
</html>
|
joglomedia/masedi.net
|
work/berkeley-db/docs/api_reference/STL/stldbstl_global_functionsregister_db.html
|
HTML
|
gpl-2.0
| 4,713
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>File Index</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Generated by Doxygen 1.3.4 -->
<div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
<h1>_EventQueue Struct Reference</h1><table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Data Fields</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>HWEventQueueType </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o0">head</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>HWEventQueueType </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o1">tail</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>CARD32 </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o2">lastEventTime</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>Bool </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o3">lastMotion</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="struct__Event.html">EventRec</a> </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o4">events</a> [QUEUE_SIZE]</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>DevicePtr </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o6">pPtr</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>ScreenPtr </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o7">pEnqueueScreen</a></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>ScreenPtr </td><td class="memItemRight" valign=bottom><a class="el" href="struct__EventQueue.html#o8">pDequeueScreen</a></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
Event queue.
<p>
<hr><h2>Field Documentation</h2>
<a class="anchor" name="o4" doxytag="_EventQueue::events" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="struct__Event.html">EventRec</a> <a class="el" href="struct__EventQueue.html#o4">_EventQueue::events</a>[QUEUE_SIZE]
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Static allocation for signals. </td>
</tr>
</table>
<a class="anchor" name="o0" doxytag="_EventQueue::head" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> HWEventQueueType <a class="el" href="struct__EventQueue.html#o0">_EventQueue::head</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Queue head; must be long for SetInputCheck. </td>
</tr>
</table>
<a class="anchor" name="o2" doxytag="_EventQueue::lastEventTime" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> CARD32 <a class="el" href="struct__EventQueue.html#o2">_EventQueue::lastEventTime</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
To avoid time running backwards. </td>
</tr>
</table>
<a class="anchor" name="o3" doxytag="_EventQueue::lastMotion" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> Bool <a class="el" href="struct__EventQueue.html#o3">_EventQueue::lastMotion</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
True if last event was motion. </td>
</tr>
</table>
<a class="anchor" name="o8" doxytag="_EventQueue::pDequeueScreen" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> ScreenPtr <a class="el" href="struct__EventQueue.html#o8">_EventQueue::pDequeueScreen</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Screen events are dispatched to. </td>
</tr>
</table>
<a class="anchor" name="o7" doxytag="_EventQueue::pEnqueueScreen" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> ScreenPtr <a class="el" href="struct__EventQueue.html#o7">_EventQueue::pEnqueueScreen</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Screen events are delivered to. </td>
</tr>
</table>
<a class="anchor" name="o6" doxytag="_EventQueue::pPtr" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> DevicePtr <a class="el" href="struct__EventQueue.html#o6">_EventQueue::pPtr</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Device pointers (to get funcs) </td>
</tr>
</table>
<a class="anchor" name="o1" doxytag="_EventQueue::tail" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> HWEventQueueType <a class="el" href="struct__EventQueue.html#o1">_EventQueue::tail</a>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Queue tail; must be long for SetInputCheck. </td>
</tr>
</table>
<hr>The documentation for this struct was generated from the following file:<ul>
<li><a class="el" href="dmxeq_8c.html">dmxeq.c</a></ul>
<hr>
<address>
<small>
Generated June 29, 2004 for <a
href="http://dmx.sourceforge.net">Distributed Multihead X</a> by
<a href="http://www.doxygen.org/index.html">doxygen</a>
1.3.4.
</small>
</addres>
</hr>
</body>
</html>
|
mcr/xorg-xvnc4
|
xorg-server/hw/dmx/doc/html/struct__EventQueue.html
|
HTML
|
gpl-2.0
| 7,591
|
{namespace mmf=Mittwald\Typo3Forum\ViewHelpers}
<div class="well well-activeUserBoxTop">
<f:for each="{dataset.users}" as="user" iteration="iteration">
<div class="row-fluid">
<div class="item">
<mmf:user.avatar user="{user}" width="30"
alt="{post.author.username}"
class="tx-typo3forum-topic-show-post-user-icon img-polaroid img-rounded pull-left"/>
<mmf:user.link user="{user}"/>
<p>
{user.helpfulCountSession} <f:translate key="User_Index_Helpful_Posts" />
</p>
</div>
</div>
</f:for>
</div>
<div class="well well-activeUserBoxBottom">
<f:link.page pageUid="{settings.pids.UserList}">
<i class="iconset-20-user"></i>
<f:translate key="User_Index_Display_All" />
</f:link.page>
</div>
|
SourceLounge/typo3-forum
|
Resources/Private/Partials/User/HelpfulBox.html
|
HTML
|
gpl-2.0
| 743
|
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
neuroinformatics/xcl-module-xoonips4
|
xoops_trust_path/modules/xoonips/language/english/cc/CC-BY-NC-SA-40.html
|
HTML
|
gpl-2.0
| 395
|
/* ------------------------------------------------------------------------------
*
* # Color system
*
* Keep all color classes in a separate file as it's quite heavy and still optional
*
* Version: 1.1
* Latest update: Feb 5, 2016
*
* ---------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------
*
* # Components
*
* Common less file with imports of plugins and pages
*
* Version: 1.0
* Latest update: Feb 5, 2016
*
* ---------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------
*
* # Custom color system
*
* Custom color system styles, includes background, border and text colors
*
* Version: 1.1
* Latest update: Oct 20, 2015
*
* ---------------------------------------------------------------------------- */
.bg-primary {
background-color: #2196F3;
border-color: #2196F3;
color: #fff;
}
.bg-primary-300 {
background-color: #64B5F6;
border-color: #64B5F6;
color: #fff;
}
.bg-primary-400 {
background-color: #42A5F5;
border-color: #42A5F5;
color: #fff;
}
.bg-primary-600 {
background-color: #1E88E5;
border-color: #1E88E5;
color: #fff;
}
.bg-primary-700 {
background-color: #1976D2;
border-color: #1976D2;
color: #fff;
}
.bg-primary-800 {
background-color: #1565C0;
border-color: #1565C0;
color: #fff;
}
.bg-danger {
background-color: #F44336;
border-color: #F44336;
color: #fff;
}
.bg-danger-300 {
background-color: #E57373;
border-color: #E57373;
color: #fff;
}
.bg-danger-400 {
background-color: #EF5350;
border-color: #EF5350;
color: #fff;
}
.bg-danger-600 {
background-color: #E53935;
border-color: #E53935;
color: #fff;
}
.bg-danger-700 {
background-color: #D32F2F;
border-color: #D32F2F;
color: #fff;
}
.bg-danger-800 {
background-color: #C62828;
border-color: #C62828;
color: #fff;
}
.bg-success {
background-color: #4CAF50;
border-color: #4CAF50;
color: #fff;
}
.bg-success-300 {
background-color: #81C784;
border-color: #81C784;
color: #fff;
}
.bg-success-400 {
background-color: #66BB6A;
border-color: #66BB6A;
color: #fff;
}
.bg-success-600 {
background-color: #43A047;
border-color: #43A047;
color: #fff;
}
.bg-success-700 {
background-color: #388E3C;
border-color: #388E3C;
color: #fff;
}
.bg-success-800 {
background-color: #2E7D32;
border-color: #2E7D32;
color: #fff;
}
.bg-warning {
background-color: #FF5722;
border-color: #FF5722;
color: #fff;
}
.bg-warning-300 {
background-color: #FF8A65;
border-color: #FF8A65;
color: #fff;
}
.bg-warning-400 {
background-color: #FF7043;
border-color: #FF7043;
color: #fff;
}
.bg-warning-600 {
background-color: #F4511E;
border-color: #F4511E;
color: #fff;
}
.bg-warning-700 {
background-color: #E64A19;
border-color: #E64A19;
color: #fff;
}
.bg-warning-800 {
background-color: #D84315;
border-color: #D84315;
color: #fff;
}
.bg-info {
background-color: #00BCD4;
border-color: #00BCD4;
color: #fff;
}
.bg-info-300 {
background-color: #4DD0E1;
border-color: #4DD0E1;
color: #fff;
}
.bg-info-400 {
background-color: #26C6DA;
border-color: #26C6DA;
color: #fff;
}
.bg-info-600 {
background-color: #00ACC1;
border-color: #00ACC1;
color: #fff;
}
.bg-info-700 {
background-color: #0097A7;
border-color: #0097A7;
color: #fff;
}
.bg-info-800 {
background-color: #00838F;
border-color: #00838F;
color: #fff;
}
.bg-pink {
background-color: #E91E63;
border-color: #E91E63;
color: #fff;
}
.bg-pink-300 {
background-color: #F06292;
border-color: #F06292;
color: #fff;
}
.bg-pink-400 {
background-color: #EC407A;
border-color: #EC407A;
color: #fff;
}
.bg-pink-600 {
background-color: #D81B60;
border-color: #D81B60;
color: #fff;
}
.bg-pink-700 {
background-color: #C2185B;
border-color: #C2185B;
color: #fff;
}
.bg-pink-800 {
background-color: #AD1457;
border-color: #AD1457;
color: #fff;
}
.bg-violet {
background-color: #9C27B0;
border-color: #9C27B0;
color: #fff;
}
.bg-violet-300 {
background-color: #BA68C8;
border-color: #BA68C8;
color: #fff;
}
.bg-violet-400 {
background-color: #AB47BC;
border-color: #AB47BC;
color: #fff;
}
.bg-violet-600 {
background-color: #8E24AA;
border-color: #8E24AA;
color: #fff;
}
.bg-violet-700 {
background-color: #7B1FA2;
border-color: #7B1FA2;
color: #fff;
}
.bg-violet-800 {
background-color: #6A1B9A;
border-color: #6A1B9A;
color: #fff;
}
.bg-purple {
background-color: #673AB7;
border-color: #673AB7;
color: #fff;
}
.bg-purple-300 {
background-color: #9575CD;
border-color: #9575CD;
color: #fff;
}
.bg-purple-400 {
background-color: #7E57C2;
border-color: #7E57C2;
color: #fff;
}
.bg-purple-600 {
background-color: #5E35B1;
border-color: #5E35B1;
color: #fff;
}
.bg-purple-700 {
background-color: #512DA8;
border-color: #512DA8;
color: #fff;
}
.bg-purple-800 {
background-color: #4527A0;
border-color: #4527A0;
color: #fff;
}
.bg-indigo {
background-color: #3F51B5;
border-color: #3F51B5;
color: #fff;
}
.bg-indigo-300 {
background-color: #7986CB;
border-color: #7986CB;
color: #fff;
}
.bg-indigo-400 {
background-color: #5C6BC0;
border-color: #5C6BC0;
color: #fff;
}
.bg-indigo-600 {
background-color: #3949AB;
border-color: #3949AB;
color: #fff;
}
.bg-indigo-700 {
background-color: #303F9F;
border-color: #303F9F;
color: #fff;
}
.bg-indigo-800 {
background-color: #283593;
border-color: #283593;
color: #fff;
}
.bg-blue {
background-color: #03A9F4;
border-color: #03A9F4;
color: #fff;
}
.bg-blue-300 {
background-color: #4FC3F7;
border-color: #4FC3F7;
color: #fff;
}
.bg-blue-400 {
background-color: #29B6F6;
border-color: #29B6F6;
color: #fff;
}
.bg-blue-600 {
background-color: #039BE5;
border-color: #039BE5;
color: #fff;
}
.bg-blue-700 {
background-color: #0288D1;
border-color: #0288D1;
color: #fff;
}
.bg-blue-800 {
background-color: #0277BD;
border-color: #0277BD;
color: #fff;
}
.bg-teal {
background-color: #009688;
border-color: #009688;
color: #fff;
}
.bg-teal-300 {
background-color: #4DB6AC;
border-color: #4DB6AC;
color: #fff;
}
.bg-teal-400 {
background-color: #26A69A;
border-color: #26A69A;
color: #fff;
}
.bg-teal-600 {
background-color: #00897B;
border-color: #00897B;
color: #fff;
}
.bg-teal-700 {
background-color: #00796B;
border-color: #00796B;
color: #fff;
}
.bg-teal-800 {
background-color: #00695C;
border-color: #00695C;
color: #fff;
}
.bg-green {
background-color: #8BC34A;
border-color: #8BC34A;
color: #fff;
}
.bg-green-300 {
background-color: #AED581;
border-color: #AED581;
color: #fff;
}
.bg-green-400 {
background-color: #9CCC65;
border-color: #9CCC65;
color: #fff;
}
.bg-green-600 {
background-color: #7CB342;
border-color: #7CB342;
color: #fff;
}
.bg-green-700 {
background-color: #689F38;
border-color: #689F38;
color: #fff;
}
.bg-green-800 {
background-color: #558B2F;
border-color: #558B2F;
color: #fff;
}
.bg-orange {
background-color: #FF9800;
border-color: #FF9800;
color: #fff;
}
.bg-orange-300 {
background-color: #FFB74D;
border-color: #FFB74D;
color: #fff;
}
.bg-orange-400 {
background-color: #FFA726;
border-color: #FFA726;
color: #fff;
}
.bg-orange-600 {
background-color: #FB8C00;
border-color: #FB8C00;
color: #fff;
}
.bg-orange-700 {
background-color: #F57C00;
border-color: #F57C00;
color: #fff;
}
.bg-orange-800 {
background-color: #EF6C00;
border-color: #EF6C00;
color: #fff;
}
.bg-brown {
background-color: #795548;
border-color: #795548;
color: #fff;
}
.bg-brown-300 {
background-color: #A1887F;
border-color: #A1887F;
color: #fff;
}
.bg-brown-400 {
background-color: #8D6E63;
border-color: #8D6E63;
color: #fff;
}
.bg-brown-600 {
background-color: #6D4C41;
border-color: #6D4C41;
color: #fff;
}
.bg-brown-700 {
background-color: #5D4037;
border-color: #5D4037;
color: #fff;
}
.bg-brown-800 {
background-color: #4E342E;
border-color: #4E342E;
color: #fff;
}
.bg-grey {
background-color: #777;
border-color: #777;
color: #fff;
}
.bg-grey-300 {
background-color: #999;
border-color: #999;
color: #fff;
}
.bg-grey-400 {
background-color: #888;
border-color: #888;
color: #fff;
}
.bg-grey-600 {
background-color: #666;
border-color: #666;
color: #fff;
}
.bg-grey-700 {
background-color: #555;
border-color: #555;
color: #fff;
}
.bg-grey-800 {
background-color: #444;
border-color: #444;
color: #fff;
}
.bg-slate {
background-color: #607D8B;
border-color: #607D8B;
color: #fff;
}
.bg-slate-300 {
background-color: #90A4AE;
border-color: #90A4AE;
color: #fff;
}
.bg-slate-400 {
background-color: #78909C;
border-color: #78909C;
color: #fff;
}
.bg-slate-600 {
background-color: #546E7A;
border-color: #546E7A;
color: #fff;
}
.bg-slate-700 {
background-color: #455A64;
border-color: #455A64;
color: #fff;
}
.bg-slate-800 {
background-color: #37474F;
border-color: #37474F;
color: #fff;
}
.bg-white {
background-color: #fff;
color: #333333;
}
.alpha-primary {
background-color: #E3F2FD;
border-color: #1E88E5;
}
.alpha-danger {
background-color: #FFEBEE;
border-color: #E53935;
}
.alpha-success {
background-color: #E8F5E9;
border-color: #43A047;
}
.alpha-warning {
background-color: #FBE9E7;
border-color: #F4511E;
}
.alpha-info {
background-color: #E0F7FA;
border-color: #00ACC1;
}
.alpha-pink {
background-color: #FCE4EC;
border-color: #D81B60;
}
.alpha-violet {
background-color: #F3E5F5;
border-color: #8E24AA;
}
.alpha-purple {
background-color: #EDE7F6;
border-color: #5E35B1;
}
.alpha-indigo {
background-color: #E8EAF6;
border-color: #3949AB;
}
.alpha-blue {
background-color: #E1F5FE;
border-color: #039BE5;
}
.alpha-teal {
background-color: #E0F2F1;
border-color: #00897B;
}
.alpha-green {
background-color: #F1F8E9;
border-color: #7CB342;
}
.alpha-orange {
background-color: #FFF3E0;
border-color: #FB8C00;
}
.alpha-brown {
background-color: #EFEBE9;
border-color: #6D4C41;
}
.alpha-grey {
background-color: #FAFAFA;
border-color: #666;
}
.alpha-slate {
background-color: #ECEFF1;
border-color: #546E7A;
}
.border-primary {
border-color: #2196F3;
}
.border-primary-300 {
border-color: #64B5F6;
}
.border-primary-400 {
border-color: #42A5F5;
}
.border-primary-600 {
border-color: #1E88E5;
}
.border-primary-700 {
border-color: #1976D2;
}
.border-primary-800 {
border-color: #1565C0;
}
.border-danger {
border-color: #F44336;
}
.border-danger-300 {
border-color: #E57373;
}
.border-danger-400 {
border-color: #EF5350;
}
.border-danger-600 {
border-color: #E53935;
}
.border-danger-700 {
border-color: #D32F2F;
}
.border-danger-800 {
border-color: #C62828;
}
.border-success {
border-color: #4CAF50;
}
.border-success-300 {
border-color: #81C784;
}
.border-success-400 {
border-color: #66BB6A;
}
.border-success-600 {
border-color: #43A047;
}
.border-success-700 {
border-color: #388E3C;
}
.border-success-800 {
border-color: #2E7D32;
}
.border-warning {
border-color: #FF5722;
}
.border-warning-300 {
border-color: #FF8A65;
}
.border-warning-400 {
border-color: #FF7043;
}
.border-warning-600 {
border-color: #F4511E;
}
.border-warning-700 {
border-color: #E64A19;
}
.border-warning-800 {
border-color: #D84315;
}
.border-info {
border-color: #00BCD4;
}
.border-info-300 {
border-color: #4DD0E1;
}
.border-info-400 {
border-color: #26C6DA;
}
.border-info-600 {
border-color: #00ACC1;
}
.border-info-700 {
border-color: #0097A7;
}
.border-info-800 {
border-color: #00838F;
}
.border-pink {
border-color: #E91E63;
}
.border-pink-300 {
border-color: #F06292;
}
.border-pink-400 {
border-color: #EC407A;
}
.border-pink-600 {
border-color: #D81B60;
}
.border-pink-700 {
border-color: #C2185B;
}
.border-pink-800 {
border-color: #AD1457;
}
.border-violet {
border-color: #9C27B0;
}
.border-violet-300 {
border-color: #BA68C8;
}
.border-violet-400 {
border-color: #AB47BC;
}
.border-violet-600 {
border-color: #8E24AA;
}
.border-violet-700 {
border-color: #7B1FA2;
}
.border-violet-800 {
border-color: #6A1B9A;
}
.border-purple {
border-color: #673AB7;
}
.border-purple-300 {
border-color: #9575CD;
}
.border-purple-400 {
border-color: #7E57C2;
}
.border-purple-600 {
border-color: #5E35B1;
}
.border-purple-700 {
border-color: #512DA8;
}
.border-purple-800 {
border-color: #4527A0;
}
.border-indigo {
border-color: #3F51B5;
}
.border-indigo-300 {
border-color: #7986CB;
}
.border-indigo-400 {
border-color: #5C6BC0;
}
.border-indigo-600 {
border-color: #3949AB;
}
.border-indigo-700 {
border-color: #303F9F;
}
.border-indigo-800 {
border-color: #283593;
}
.border-blue {
border-color: #03A9F4;
}
.border-blue-300 {
border-color: #4FC3F7;
}
.border-blue-400 {
border-color: #29B6F6;
}
.border-blue-600 {
border-color: #039BE5;
}
.border-blue-700 {
border-color: #0288D1;
}
.border-blue-800 {
border-color: #0277BD;
}
.border-teal {
border-color: #009688;
}
.border-teal-300 {
border-color: #4DB6AC;
}
.border-teal-400 {
border-color: #26A69A;
}
.border-teal-600 {
border-color: #00897B;
}
.border-teal-700 {
border-color: #00796B;
}
.border-teal-800 {
border-color: #00695C;
}
.border-green {
border-color: #8BC34A;
}
.border-green-300 {
border-color: #AED581;
}
.border-green-400 {
border-color: #9CCC65;
}
.border-green-600 {
border-color: #7CB342;
}
.border-green-700 {
border-color: #689F38;
}
.border-green-800 {
border-color: #558B2F;
}
.border-orange {
border-color: #FF9800;
}
.border-orange-300 {
border-color: #FFB74D;
}
.border-orange-400 {
border-color: #FFA726;
}
.border-orange-600 {
border-color: #FB8C00;
}
.border-orange-700 {
border-color: #F57C00;
}
.border-orange-800 {
border-color: #EF6C00;
}
.border-brown {
border-color: #795548;
}
.border-brown-300 {
border-color: #A1887F;
}
.border-brown-400 {
border-color: #8D6E63;
}
.border-brown-600 {
border-color: #6D4C41;
}
.border-brown-700 {
border-color: #5D4037;
}
.border-brown-800 {
border-color: #4E342E;
}
.border-grey {
border-color: #777;
}
.border-grey-300 {
border-color: #999;
}
.border-grey-400 {
border-color: #888;
}
.border-grey-600 {
border-color: #666;
}
.border-grey-700 {
border-color: #555;
}
.border-grey-800 {
border-color: #444;
}
.border-slate {
border-color: #607D8B;
}
.border-slate-300 {
border-color: #90A4AE;
}
.border-slate-400 {
border-color: #78909C;
}
.border-slate-600 {
border-color: #546E7A;
}
.border-slate-700 {
border-color: #455A64;
}
.border-slate-800 {
border-color: #37474F;
}
.border-white {
border-color: #fff;
}
.border-default {
border-color: #ddd;
}
.border-top-primary {
border-top-color: #2196F3;
}
.border-top-primary-300 {
border-top-color: #64B5F6;
}
.border-top-primary-400 {
border-top-color: #42A5F5;
}
.border-top-primary-600 {
border-top-color: #1E88E5;
}
.border-top-primary-700 {
border-top-color: #1976D2;
}
.border-top-primary-800 {
border-top-color: #1565C0;
}
.border-top-danger {
border-top-color: #F44336;
}
.border-top-danger-300 {
border-top-color: #E57373;
}
.border-top-danger-400 {
border-top-color: #EF5350;
}
.border-top-danger-600 {
border-top-color: #E53935;
}
.border-top-danger-700 {
border-top-color: #D32F2F;
}
.border-top-danger-800 {
border-top-color: #C62828;
}
.border-top-success {
border-top-color: #4CAF50;
}
.border-top-success-300 {
border-top-color: #81C784;
}
.border-top-success-400 {
border-top-color: #66BB6A;
}
.border-top-success-600 {
border-top-color: #43A047;
}
.border-top-success-700 {
border-top-color: #388E3C;
}
.border-top-success-800 {
border-top-color: #2E7D32;
}
.border-top-warning {
border-top-color: #FF5722;
}
.border-top-warning-300 {
border-top-color: #FF8A65;
}
.border-top-warning-400 {
border-top-color: #FF7043;
}
.border-top-warning-600 {
border-top-color: #F4511E;
}
.border-top-warning-700 {
border-top-color: #E64A19;
}
.border-top-warning-800 {
border-top-color: #D84315;
}
.border-top-info {
border-top-color: #00BCD4;
}
.border-top-info-300 {
border-top-color: #4DD0E1;
}
.border-top-info-400 {
border-top-color: #26C6DA;
}
.border-top-info-600 {
border-top-color: #00ACC1;
}
.border-top-info-700 {
border-top-color: #0097A7;
}
.border-top-info-800 {
border-top-color: #00838F;
}
.border-top-pink {
border-top-color: #E91E63;
}
.border-top-pink-300 {
border-top-color: #F06292;
}
.border-top-pink-400 {
border-top-color: #EC407A;
}
.border-top-pink-600 {
border-top-color: #D81B60;
}
.border-top-pink-700 {
border-top-color: #C2185B;
}
.border-top-pink-800 {
border-top-color: #AD1457;
}
.border-top-violet {
border-top-color: #9C27B0;
}
.border-top-violet-300 {
border-top-color: #BA68C8;
}
.border-top-violet-400 {
border-top-color: #AB47BC;
}
.border-top-violet-600 {
border-top-color: #8E24AA;
}
.border-top-violet-700 {
border-top-color: #7B1FA2;
}
.border-top-violet-800 {
border-top-color: #6A1B9A;
}
.border-top-purple {
border-top-color: #673AB7;
}
.border-top-purple-300 {
border-top-color: #9575CD;
}
.border-top-purple-400 {
border-top-color: #7E57C2;
}
.border-top-purple-600 {
border-top-color: #5E35B1;
}
.border-top-purple-700 {
border-top-color: #512DA8;
}
.border-top-purple-800 {
border-top-color: #4527A0;
}
.border-top-indigo {
border-top-color: #3F51B5;
}
.border-top-indigo-300 {
border-top-color: #7986CB;
}
.border-top-indigo-400 {
border-top-color: #5C6BC0;
}
.border-top-indigo-600 {
border-top-color: #3949AB;
}
.border-top-indigo-700 {
border-top-color: #303F9F;
}
.border-top-indigo-800 {
border-top-color: #283593;
}
.border-top-blue {
border-top-color: #03A9F4;
}
.border-top-blue-300 {
border-top-color: #4FC3F7;
}
.border-top-blue-400 {
border-top-color: #29B6F6;
}
.border-top-blue-600 {
border-top-color: #039BE5;
}
.border-top-blue-700 {
border-top-color: #0288D1;
}
.border-top-blue-800 {
border-top-color: #0277BD;
}
.border-top-teal {
border-top-color: #009688;
}
.border-top-teal-300 {
border-top-color: #4DB6AC;
}
.border-top-teal-400 {
border-top-color: #26A69A;
}
.border-top-teal-600 {
border-top-color: #00897B;
}
.border-top-teal-700 {
border-top-color: #00796B;
}
.border-top-teal-800 {
border-top-color: #00695C;
}
.border-top-green {
border-top-color: #8BC34A;
}
.border-top-green-300 {
border-top-color: #AED581;
}
.border-top-green-400 {
border-top-color: #9CCC65;
}
.border-top-green-600 {
border-top-color: #7CB342;
}
.border-top-green-700 {
border-top-color: #689F38;
}
.border-top-green-800 {
border-top-color: #558B2F;
}
.border-top-orange {
border-top-color: #FF9800;
}
.border-top-orange-300 {
border-top-color: #FFB74D;
}
.border-top-orange-400 {
border-top-color: #FFA726;
}
.border-top-orange-600 {
border-top-color: #FB8C00;
}
.border-top-orange-700 {
border-top-color: #F57C00;
}
.border-top-orange-800 {
border-top-color: #EF6C00;
}
.border-top-brown {
border-top-color: #795548;
}
.border-top-brown-300 {
border-top-color: #A1887F;
}
.border-top-brown-400 {
border-top-color: #8D6E63;
}
.border-top-brown-600 {
border-top-color: #6D4C41;
}
.border-top-brown-700 {
border-top-color: #5D4037;
}
.border-top-brown-800 {
border-top-color: #4E342E;
}
.border-top-grey {
border-top-color: #777;
}
.border-top-grey-300 {
border-top-color: #999;
}
.border-top-grey-400 {
border-top-color: #888;
}
.border-top-grey-600 {
border-top-color: #666;
}
.border-top-grey-700 {
border-top-color: #555;
}
.border-top-grey-800 {
border-top-color: #444;
}
.border-top-slate {
border-top-color: #607D8B;
}
.border-top-slate-300 {
border-top-color: #90A4AE;
}
.border-top-slate-400 {
border-top-color: #78909C;
}
.border-top-slate-600 {
border-top-color: #546E7A;
}
.border-top-slate-700 {
border-top-color: #455A64;
}
.border-top-slate-800 {
border-top-color: #37474F;
}
.border-top-white {
border-top-color: #fff;
}
.border-bottom-primary {
border-bottom-color: #2196F3;
}
.border-bottom-primary-300 {
border-bottom-color: #64B5F6;
}
.border-bottom-primary-400 {
border-bottom-color: #42A5F5;
}
.border-bottom-primary-600 {
border-bottom-color: #1E88E5;
}
.border-bottom-primary-700 {
border-bottom-color: #1976D2;
}
.border-bottom-primary-800 {
border-bottom-color: #1565C0;
}
.border-bottom-danger {
border-bottom-color: #F44336;
}
.border-bottom-danger-300 {
border-bottom-color: #E57373;
}
.border-bottom-danger-400 {
border-bottom-color: #EF5350;
}
.border-bottom-danger-600 {
border-bottom-color: #E53935;
}
.border-bottom-danger-700 {
border-bottom-color: #D32F2F;
}
.border-bottom-danger-800 {
border-bottom-color: #C62828;
}
.border-bottom-success {
border-bottom-color: #4CAF50;
}
.border-bottom-success-300 {
border-bottom-color: #81C784;
}
.border-bottom-success-400 {
border-bottom-color: #66BB6A;
}
.border-bottom-success-600 {
border-bottom-color: #43A047;
}
.border-bottom-success-700 {
border-bottom-color: #388E3C;
}
.border-bottom-success-800 {
border-bottom-color: #2E7D32;
}
.border-bottom-warning {
border-bottom-color: #FF5722;
}
.border-bottom-warning-300 {
border-bottom-color: #FF8A65;
}
.border-bottom-warning-400 {
border-bottom-color: #FF7043;
}
.border-bottom-warning-600 {
border-bottom-color: #F4511E;
}
.border-bottom-warning-700 {
border-bottom-color: #E64A19;
}
.border-bottom-warning-800 {
border-bottom-color: #D84315;
}
.border-bottom-info {
border-bottom-color: #00BCD4;
}
.border-bottom-info-300 {
border-bottom-color: #4DD0E1;
}
.border-bottom-info-400 {
border-bottom-color: #26C6DA;
}
.border-bottom-info-600 {
border-bottom-color: #00ACC1;
}
.border-bottom-info-700 {
border-bottom-color: #0097A7;
}
.border-bottom-info-800 {
border-bottom-color: #00838F;
}
.border-bottom-pink {
border-bottom-color: #E91E63;
}
.border-bottom-pink-300 {
border-bottom-color: #F06292;
}
.border-bottom-pink-400 {
border-bottom-color: #EC407A;
}
.border-bottom-pink-600 {
border-bottom-color: #D81B60;
}
.border-bottom-pink-700 {
border-bottom-color: #C2185B;
}
.border-bottom-pink-800 {
border-bottom-color: #AD1457;
}
.border-bottom-violet {
border-bottom-color: #9C27B0;
}
.border-bottom-violet-300 {
border-bottom-color: #BA68C8;
}
.border-bottom-violet-400 {
border-bottom-color: #AB47BC;
}
.border-bottom-violet-600 {
border-bottom-color: #8E24AA;
}
.border-bottom-violet-700 {
border-bottom-color: #7B1FA2;
}
.border-bottom-violet-800 {
border-bottom-color: #6A1B9A;
}
.border-bottom-purple {
border-bottom-color: #673AB7;
}
.border-bottom-purple-300 {
border-bottom-color: #9575CD;
}
.border-bottom-purple-400 {
border-bottom-color: #7E57C2;
}
.border-bottom-purple-600 {
border-bottom-color: #5E35B1;
}
.border-bottom-purple-700 {
border-bottom-color: #512DA8;
}
.border-bottom-purple-800 {
border-bottom-color: #4527A0;
}
.border-bottom-indigo {
border-bottom-color: #3F51B5;
}
.border-bottom-indigo-300 {
border-bottom-color: #7986CB;
}
.border-bottom-indigo-400 {
border-bottom-color: #5C6BC0;
}
.border-bottom-indigo-600 {
border-bottom-color: #3949AB;
}
.border-bottom-indigo-700 {
border-bottom-color: #303F9F;
}
.border-bottom-indigo-800 {
border-bottom-color: #283593;
}
.border-bottom-blue {
border-bottom-color: #03A9F4;
}
.border-bottom-blue-300 {
border-bottom-color: #4FC3F7;
}
.border-bottom-blue-400 {
border-bottom-color: #29B6F6;
}
.border-bottom-blue-600 {
border-bottom-color: #039BE5;
}
.border-bottom-blue-700 {
border-bottom-color: #0288D1;
}
.border-bottom-blue-800 {
border-bottom-color: #0277BD;
}
.border-bottom-teal {
border-bottom-color: #009688;
}
.border-bottom-teal-300 {
border-bottom-color: #4DB6AC;
}
.border-bottom-teal-400 {
border-bottom-color: #26A69A;
}
.border-bottom-teal-600 {
border-bottom-color: #00897B;
}
.border-bottom-teal-700 {
border-bottom-color: #00796B;
}
.border-bottom-teal-800 {
border-bottom-color: #00695C;
}
.border-bottom-green {
border-bottom-color: #8BC34A;
}
.border-bottom-green-300 {
border-bottom-color: #AED581;
}
.border-bottom-green-400 {
border-bottom-color: #9CCC65;
}
.border-bottom-green-600 {
border-bottom-color: #7CB342;
}
.border-bottom-green-700 {
border-bottom-color: #689F38;
}
.border-bottom-green-800 {
border-bottom-color: #558B2F;
}
.border-bottom-orange {
border-bottom-color: #FF9800;
}
.border-bottom-orange-300 {
border-bottom-color: #FFB74D;
}
.border-bottom-orange-400 {
border-bottom-color: #FFA726;
}
.border-bottom-orange-600 {
border-bottom-color: #FB8C00;
}
.border-bottom-orange-700 {
border-bottom-color: #F57C00;
}
.border-bottom-orange-800 {
border-bottom-color: #EF6C00;
}
.border-bottom-brown {
border-bottom-color: #795548;
}
.border-bottom-brown-300 {
border-bottom-color: #A1887F;
}
.border-bottom-brown-400 {
border-bottom-color: #8D6E63;
}
.border-bottom-brown-600 {
border-bottom-color: #6D4C41;
}
.border-bottom-brown-700 {
border-bottom-color: #5D4037;
}
.border-bottom-brown-800 {
border-bottom-color: #4E342E;
}
.border-bottom-grey {
border-bottom-color: #777;
}
.border-bottom-grey-300 {
border-bottom-color: #999;
}
.border-bottom-grey-400 {
border-bottom-color: #888;
}
.border-bottom-grey-600 {
border-bottom-color: #666;
}
.border-bottom-grey-700 {
border-bottom-color: #555;
}
.border-bottom-grey-800 {
border-bottom-color: #444;
}
.border-bottom-slate {
border-bottom-color: #607D8B;
}
.border-bottom-slate-300 {
border-bottom-color: #90A4AE;
}
.border-bottom-slate-400 {
border-bottom-color: #78909C;
}
.border-bottom-slate-600 {
border-bottom-color: #546E7A;
}
.border-bottom-slate-700 {
border-bottom-color: #455A64;
}
.border-bottom-slate-800 {
border-bottom-color: #37474F;
}
.border-bottom-white {
border-bottom-color: #fff;
}
.border-left-primary {
border-right-color: #2196F3;
}
.border-left-primary-300 {
border-right-color: #64B5F6;
}
.border-left-primary-400 {
border-right-color: #42A5F5;
}
.border-left-primary-600 {
border-right-color: #1E88E5;
}
.border-left-primary-700 {
border-right-color: #1976D2;
}
.border-left-primary-800 {
border-right-color: #1565C0;
}
.border-left-danger {
border-right-color: #F44336;
}
.border-left-danger-300 {
border-right-color: #E57373;
}
.border-left-danger-400 {
border-right-color: #EF5350;
}
.border-left-danger-600 {
border-right-color: #E53935;
}
.border-left-danger-700 {
border-right-color: #D32F2F;
}
.border-left-danger-800 {
border-right-color: #C62828;
}
.border-left-success {
border-right-color: #4CAF50;
}
.border-left-success-300 {
border-right-color: #81C784;
}
.border-left-success-400 {
border-right-color: #66BB6A;
}
.border-left-success-600 {
border-right-color: #43A047;
}
.border-left-success-700 {
border-right-color: #388E3C;
}
.border-left-success-800 {
border-right-color: #2E7D32;
}
.border-left-warning {
border-right-color: #FF5722;
}
.border-left-warning-300 {
border-right-color: #FF8A65;
}
.border-left-warning-400 {
border-right-color: #FF7043;
}
.border-left-warning-600 {
border-right-color: #F4511E;
}
.border-left-warning-700 {
border-right-color: #E64A19;
}
.border-left-warning-800 {
border-right-color: #D84315;
}
.border-left-info {
border-right-color: #00BCD4;
}
.border-left-info-300 {
border-right-color: #4DD0E1;
}
.border-left-info-400 {
border-right-color: #26C6DA;
}
.border-left-info-600 {
border-right-color: #00ACC1;
}
.border-left-info-700 {
border-right-color: #0097A7;
}
.border-left-info-800 {
border-right-color: #00838F;
}
.border-left-pink {
border-right-color: #E91E63;
}
.border-left-pink-300 {
border-right-color: #F06292;
}
.border-left-pink-400 {
border-right-color: #EC407A;
}
.border-left-pink-600 {
border-right-color: #D81B60;
}
.border-left-pink-700 {
border-right-color: #C2185B;
}
.border-left-pink-800 {
border-right-color: #AD1457;
}
.border-left-violet {
border-right-color: #9C27B0;
}
.border-left-violet-300 {
border-right-color: #BA68C8;
}
.border-left-violet-400 {
border-right-color: #AB47BC;
}
.border-left-violet-600 {
border-right-color: #8E24AA;
}
.border-left-violet-700 {
border-right-color: #7B1FA2;
}
.border-left-violet-800 {
border-right-color: #6A1B9A;
}
.border-left-purple {
border-right-color: #673AB7;
}
.border-left-purple-300 {
border-right-color: #9575CD;
}
.border-left-purple-400 {
border-right-color: #7E57C2;
}
.border-left-purple-600 {
border-right-color: #5E35B1;
}
.border-left-purple-700 {
border-right-color: #512DA8;
}
.border-left-purple-800 {
border-right-color: #4527A0;
}
.border-left-indigo {
border-right-color: #3F51B5;
}
.border-left-indigo-300 {
border-right-color: #7986CB;
}
.border-left-indigo-400 {
border-right-color: #5C6BC0;
}
.border-left-indigo-600 {
border-right-color: #3949AB;
}
.border-left-indigo-700 {
border-right-color: #303F9F;
}
.border-left-indigo-800 {
border-right-color: #283593;
}
.border-left-blue {
border-right-color: #03A9F4;
}
.border-left-blue-300 {
border-right-color: #4FC3F7;
}
.border-left-blue-400 {
border-right-color: #29B6F6;
}
.border-left-blue-600 {
border-right-color: #039BE5;
}
.border-left-blue-700 {
border-right-color: #0288D1;
}
.border-left-blue-800 {
border-right-color: #0277BD;
}
.border-left-teal {
border-right-color: #009688;
}
.border-left-teal-300 {
border-right-color: #4DB6AC;
}
.border-left-teal-400 {
border-right-color: #26A69A;
}
.border-left-teal-600 {
border-right-color: #00897B;
}
.border-left-teal-700 {
border-right-color: #00796B;
}
.border-left-teal-800 {
border-right-color: #00695C;
}
.border-left-green {
border-right-color: #8BC34A;
}
.border-left-green-300 {
border-right-color: #AED581;
}
.border-left-green-400 {
border-right-color: #9CCC65;
}
.border-left-green-600 {
border-right-color: #7CB342;
}
.border-left-green-700 {
border-right-color: #689F38;
}
.border-left-green-800 {
border-right-color: #558B2F;
}
.border-left-orange {
border-right-color: #FF9800;
}
.border-left-orange-300 {
border-right-color: #FFB74D;
}
.border-left-orange-400 {
border-right-color: #FFA726;
}
.border-left-orange-600 {
border-right-color: #FB8C00;
}
.border-left-orange-700 {
border-right-color: #F57C00;
}
.border-left-orange-800 {
border-right-color: #EF6C00;
}
.border-left-brown {
border-right-color: #795548;
}
.border-left-brown-300 {
border-right-color: #A1887F;
}
.border-left-brown-400 {
border-right-color: #8D6E63;
}
.border-left-brown-600 {
border-right-color: #6D4C41;
}
.border-left-brown-700 {
border-right-color: #5D4037;
}
.border-left-brown-800 {
border-right-color: #4E342E;
}
.border-left-grey {
border-right-color: #777;
}
.border-left-grey-300 {
border-right-color: #999;
}
.border-left-grey-400 {
border-right-color: #888;
}
.border-left-grey-600 {
border-right-color: #666;
}
.border-left-grey-700 {
border-right-color: #555;
}
.border-left-grey-800 {
border-right-color: #444;
}
.border-left-slate {
border-right-color: #607D8B;
}
.border-left-slate-300 {
border-right-color: #90A4AE;
}
.border-left-slate-400 {
border-right-color: #78909C;
}
.border-left-slate-600 {
border-right-color: #546E7A;
}
.border-left-slate-700 {
border-right-color: #455A64;
}
.border-left-slate-800 {
border-right-color: #37474F;
}
.border-left-white {
border-right-color: #fff;
}
.border-right-primary {
border-left-color: #2196F3;
}
.border-right-primary-300 {
border-left-color: #64B5F6;
}
.border-right-primary-400 {
border-left-color: #42A5F5;
}
.border-right-primary-600 {
border-left-color: #1E88E5;
}
.border-right-primary-700 {
border-left-color: #1976D2;
}
.border-right-primary-800 {
border-left-color: #1565C0;
}
.border-right-danger {
border-left-color: #F44336;
}
.border-right-danger-300 {
border-left-color: #E57373;
}
.border-right-danger-400 {
border-left-color: #EF5350;
}
.border-right-danger-600 {
border-left-color: #E53935;
}
.border-right-danger-700 {
border-left-color: #D32F2F;
}
.border-right-danger-800 {
border-left-color: #C62828;
}
.border-right-success {
border-left-color: #4CAF50;
}
.border-right-success-300 {
border-left-color: #81C784;
}
.border-right-success-400 {
border-left-color: #66BB6A;
}
.border-right-success-600 {
border-left-color: #43A047;
}
.border-right-success-700 {
border-left-color: #388E3C;
}
.border-right-success-800 {
border-left-color: #2E7D32;
}
.border-right-warning {
border-left-color: #FF5722;
}
.border-right-warning-300 {
border-left-color: #FF8A65;
}
.border-right-warning-400 {
border-left-color: #FF7043;
}
.border-right-warning-600 {
border-left-color: #F4511E;
}
.border-right-warning-700 {
border-left-color: #E64A19;
}
.border-right-warning-800 {
border-left-color: #D84315;
}
.border-right-info {
border-left-color: #00BCD4;
}
.border-right-info-300 {
border-left-color: #4DD0E1;
}
.border-right-info-400 {
border-left-color: #26C6DA;
}
.border-right-info-600 {
border-left-color: #00ACC1;
}
.border-right-info-700 {
border-left-color: #0097A7;
}
.border-right-info-800 {
border-left-color: #00838F;
}
.border-right-pink {
border-left-color: #E91E63;
}
.border-right-pink-300 {
border-left-color: #F06292;
}
.border-right-pink-400 {
border-left-color: #EC407A;
}
.border-right-pink-600 {
border-left-color: #D81B60;
}
.border-right-pink-700 {
border-left-color: #C2185B;
}
.border-right-pink-800 {
border-left-color: #AD1457;
}
.border-right-violet {
border-left-color: #9C27B0;
}
.border-right-violet-300 {
border-left-color: #BA68C8;
}
.border-right-violet-400 {
border-left-color: #AB47BC;
}
.border-right-violet-600 {
border-left-color: #8E24AA;
}
.border-right-violet-700 {
border-left-color: #7B1FA2;
}
.border-right-violet-800 {
border-left-color: #6A1B9A;
}
.border-right-purple {
border-left-color: #673AB7;
}
.border-right-purple-300 {
border-left-color: #9575CD;
}
.border-right-purple-400 {
border-left-color: #7E57C2;
}
.border-right-purple-600 {
border-left-color: #5E35B1;
}
.border-right-purple-700 {
border-left-color: #512DA8;
}
.border-right-purple-800 {
border-left-color: #4527A0;
}
.border-right-indigo {
border-left-color: #3F51B5;
}
.border-right-indigo-300 {
border-left-color: #7986CB;
}
.border-right-indigo-400 {
border-left-color: #5C6BC0;
}
.border-right-indigo-600 {
border-left-color: #3949AB;
}
.border-right-indigo-700 {
border-left-color: #303F9F;
}
.border-right-indigo-800 {
border-left-color: #283593;
}
.border-right-blue {
border-left-color: #03A9F4;
}
.border-right-blue-300 {
border-left-color: #4FC3F7;
}
.border-right-blue-400 {
border-left-color: #29B6F6;
}
.border-right-blue-600 {
border-left-color: #039BE5;
}
.border-right-blue-700 {
border-left-color: #0288D1;
}
.border-right-blue-800 {
border-left-color: #0277BD;
}
.border-right-teal {
border-left-color: #009688;
}
.border-right-teal-300 {
border-left-color: #4DB6AC;
}
.border-right-teal-400 {
border-left-color: #26A69A;
}
.border-right-teal-600 {
border-left-color: #00897B;
}
.border-right-teal-700 {
border-left-color: #00796B;
}
.border-right-teal-800 {
border-left-color: #00695C;
}
.border-right-green {
border-left-color: #8BC34A;
}
.border-right-green-300 {
border-left-color: #AED581;
}
.border-right-green-400 {
border-left-color: #9CCC65;
}
.border-right-green-600 {
border-left-color: #7CB342;
}
.border-right-green-700 {
border-left-color: #689F38;
}
.border-right-green-800 {
border-left-color: #558B2F;
}
.border-right-orange {
border-left-color: #FF9800;
}
.border-right-orange-300 {
border-left-color: #FFB74D;
}
.border-right-orange-400 {
border-left-color: #FFA726;
}
.border-right-orange-600 {
border-left-color: #FB8C00;
}
.border-right-orange-700 {
border-left-color: #F57C00;
}
.border-right-orange-800 {
border-left-color: #EF6C00;
}
.border-right-brown {
border-left-color: #795548;
}
.border-right-brown-300 {
border-left-color: #A1887F;
}
.border-right-brown-400 {
border-left-color: #8D6E63;
}
.border-right-brown-600 {
border-left-color: #6D4C41;
}
.border-right-brown-700 {
border-left-color: #5D4037;
}
.border-right-brown-800 {
border-left-color: #4E342E;
}
.border-right-grey {
border-left-color: #777;
}
.border-right-grey-300 {
border-left-color: #999;
}
.border-right-grey-400 {
border-left-color: #888;
}
.border-right-grey-600 {
border-left-color: #666;
}
.border-right-grey-700 {
border-left-color: #555;
}
.border-right-grey-800 {
border-left-color: #444;
}
.border-right-slate {
border-left-color: #607D8B;
}
.border-right-slate-300 {
border-left-color: #90A4AE;
}
.border-right-slate-400 {
border-left-color: #78909C;
}
.border-right-slate-600 {
border-left-color: #546E7A;
}
.border-right-slate-700 {
border-left-color: #455A64;
}
.border-right-slate-800 {
border-left-color: #37474F;
}
.border-right-white {
border-left-color: #fff;
}
.text-primary,
.text-primary:hover,
.text-primary:focus {
color: #2196F3 !important;
}
.text-primary-300,
.text-primary-300:hover,
.text-primary-300:focus {
color: #2196F3 !important;
}
.text-primary-400,
.text-primary-400:hover,
.text-primary-400:focus {
color: #42A5F5 !important;
}
.text-primary-600,
.text-primary-600:hover,
.text-primary-600:focus {
color: #1E88E5 !important;
}
.text-primary-700,
.text-primary-700:hover,
.text-primary-700:focus {
color: #1976D2 !important;
}
.text-primary-800,
.text-primary-800:hover,
.text-primary-800:focus {
color: #1565C0 !important;
}
.text-danger,
.text-danger:hover,
.text-danger:focus {
color: #F44336 !important;
}
.text-danger-300,
.text-danger-300:hover,
.text-danger-300:focus {
color: #E57373 !important;
}
.text-danger-400,
.text-danger-400:hover,
.text-danger-400:focus {
color: #EF5350 !important;
}
.text-danger-600,
.text-danger-600:hover,
.text-danger-600:focus {
color: #E53935 !important;
}
.text-danger-700,
.text-danger-700:hover,
.text-danger-700:focus {
color: #D32F2F !important;
}
.text-danger-800,
.text-danger-800:hover,
.text-danger-800:focus {
color: #C62828 !important;
}
.text-success,
.text-success:hover,
.text-success:focus {
color: #4CAF50 !important;
}
.text-success-300,
.text-success-300:hover,
.text-success-300:focus {
color: #81C784 !important;
}
.text-success-400,
.text-success-400:hover,
.text-success-400:focus {
color: #66BB6A !important;
}
.text-success-600,
.text-success-600:hover,
.text-success-600:focus {
color: #43A047 !important;
}
.text-success-700,
.text-success-700:hover,
.text-success-700:focus {
color: #388E3C !important;
}
.text-success-800,
.text-success-800:hover,
.text-success-800:focus {
color: #2E7D32 !important;
}
.text-warning,
.text-warning:hover,
.text-warning:focus {
color: #FF5722 !important;
}
.text-warning-300,
.text-warning-300:hover,
.text-warning-300:focus {
color: #FF8A65 !important;
}
.text-warning-400,
.text-warning-400:hover,
.text-warning-400:focus {
color: #FF7043 !important;
}
.text-warning-600,
.text-warning-600:hover,
.text-warning-600:focus {
color: #F4511E !important;
}
.text-warning-700,
.text-warning-700:hover,
.text-warning-700:focus {
color: #E64A19 !important;
}
.text-warning-800,
.text-warning-800:hover,
.text-warning-800:focus {
color: #D84315 !important;
}
.text-info,
.text-info:hover,
.text-info:focus {
color: #00BCD4 !important;
}
.text-info-300,
.text-info-300:hover,
.text-info-300:focus {
color: #4DD0E1 !important;
}
.text-info-400,
.text-info-400:hover,
.text-info-400:focus {
color: #26C6DA !important;
}
.text-info-600,
.text-info-600:hover,
.text-info-600:focus {
color: #00ACC1 !important;
}
.text-info-700,
.text-info-700:hover,
.text-info-700:focus {
color: #0097A7 !important;
}
.text-info-800,
.text-info-800:hover,
.text-info-800:focus {
color: #00838F !important;
}
.text-pink,
.text-pink:hover,
.text-pink:focus {
color: #E91E63 !important;
}
.text-pink-300,
.text-pink-300:hover,
.text-pink-300:focus {
color: #F06292 !important;
}
.text-pink-400,
.text-pink-400:hover,
.text-pink-400:focus {
color: #EC407A !important;
}
.text-pink-600,
.text-pink-600:hover,
.text-pink-600:focus {
color: #D81B60 !important;
}
.text-pink-700,
.text-pink-700:hover,
.text-pink-700:focus {
color: #C2185B !important;
}
.text-pink-800,
.text-pink-800:hover,
.text-pink-800:focus {
color: #AD1457 !important;
}
.text-violet,
.text-violet:hover,
.text-violet:focus {
color: #9C27B0 !important;
}
.text-violet-300,
.text-violet-300:hover,
.text-violet-300:focus {
color: #BA68C8 !important;
}
.text-violet-400,
.text-violet-400:hover,
.text-violet-400:focus {
color: #AB47BC !important;
}
.text-violet-600,
.text-violet-600:hover,
.text-violet-600:focus {
color: #8E24AA !important;
}
.text-violet-700,
.text-violet-700:hover,
.text-violet-700:focus {
color: #7B1FA2 !important;
}
.text-violet-800,
.text-violet-800:hover,
.text-violet-800:focus {
color: #6A1B9A !important;
}
.text-purple,
.text-purple:hover,
.text-purple:focus {
color: #673AB7 !important;
}
.text-purple-300,
.text-purple-300:hover,
.text-purple-300:focus {
color: #9575CD !important;
}
.text-purple-400,
.text-purple-400:hover,
.text-purple-400:focus {
color: #7E57C2 !important;
}
.text-purple-600,
.text-purple-600:hover,
.text-purple-600:focus {
color: #5E35B1 !important;
}
.text-purple-700,
.text-purple-700:hover,
.text-purple-700:focus {
color: #512DA8 !important;
}
.text-purple-800,
.text-purple-800:hover,
.text-purple-800:focus {
color: #4527A0 !important;
}
.text-indigo,
.text-indigo:hover,
.text-indigo:focus {
color: #3F51B5 !important;
}
.text-indigo-300,
.text-indigo-300:hover,
.text-indigo-300:focus {
color: #7986CB !important;
}
.text-indigo-400,
.text-indigo-400:hover,
.text-indigo-400:focus {
color: #5C6BC0 !important;
}
.text-indigo-600,
.text-indigo-600:hover,
.text-indigo-600:focus {
color: #3949AB !important;
}
.text-indigo-700,
.text-indigo-700:hover,
.text-indigo-700:focus {
color: #303F9F !important;
}
.text-indigo-800,
.text-indigo-800:hover,
.text-indigo-800:focus {
color: #283593 !important;
}
.text-blue,
.text-blue:hover,
.text-blue:focus {
color: #03A9F4 !important;
}
.text-blue-300,
.text-blue-300:hover,
.text-blue-300:focus {
color: #4FC3F7 !important;
}
.text-blue-400,
.text-blue-400:hover,
.text-blue-400:focus {
color: #29B6F6 !important;
}
.text-blue-600,
.text-blue-600:hover,
.text-blue-600:focus {
color: #039BE5 !important;
}
.text-blue-700,
.text-blue-700:hover,
.text-blue-700:focus {
color: #0288D1 !important;
}
.text-blue-800,
.text-blue-800:hover,
.text-blue-800:focus {
color: #0277BD !important;
}
.text-teal,
.text-teal:hover,
.text-teal:focus {
color: #009688 !important;
}
.text-teal-300,
.text-teal-300:hover,
.text-teal-300:focus {
color: #4DB6AC !important;
}
.text-teal-400,
.text-teal-400:hover,
.text-teal-400:focus {
color: #26A69A !important;
}
.text-teal-600,
.text-teal-600:hover,
.text-teal-600:focus {
color: #00897B !important;
}
.text-teal-700,
.text-teal-700:hover,
.text-teal-700:focus {
color: #00796B !important;
}
.text-teal-800,
.text-teal-800:hover,
.text-teal-800:focus {
color: #00695C !important;
}
.text-green,
.text-green:hover,
.text-green:focus {
color: #8BC34A !important;
}
.text-green-300,
.text-green-300:hover,
.text-green-300:focus {
color: #AED581 !important;
}
.text-green-400,
.text-green-400:hover,
.text-green-400:focus {
color: #9CCC65 !important;
}
.text-green-600,
.text-green-600:hover,
.text-green-600:focus {
color: #7CB342 !important;
}
.text-green-700,
.text-green-700:hover,
.text-green-700:focus {
color: #689F38 !important;
}
.text-green-800,
.text-green-800:hover,
.text-green-800:focus {
color: #558B2F !important;
}
.text-orange,
.text-orange:hover,
.text-orange:focus {
color: #FF9800 !important;
}
.text-orange-300,
.text-orange-300:hover,
.text-orange-300:focus {
color: #FFB74D !important;
}
.text-orange-400,
.text-orange-400:hover,
.text-orange-400:focus {
color: #FFA726 !important;
}
.text-orange-600,
.text-orange-600:hover,
.text-orange-600:focus {
color: #FB8C00 !important;
}
.text-orange-700,
.text-orange-700:hover,
.text-orange-700:focus {
color: #F57C00 !important;
}
.text-orange-800,
.text-orange-800:hover,
.text-orange-800:focus {
color: #EF6C00 !important;
}
.text-brown,
.text-brown:hover,
.text-brown:focus {
color: #795548 !important;
}
.text-brown-300,
.text-brown-300:hover,
.text-brown-300:focus {
color: #A1887F !important;
}
.text-brown-400,
.text-brown-400:hover,
.text-brown-400:focus {
color: #8D6E63 !important;
}
.text-brown-600,
.text-brown-600:hover,
.text-brown-600:focus {
color: #6D4C41 !important;
}
.text-brown-700,
.text-brown-700:hover,
.text-brown-700:focus {
color: #5D4037 !important;
}
.text-brown-800,
.text-brown-800:hover,
.text-brown-800:focus {
color: #4E342E !important;
}
.text-grey,
.text-grey:hover,
.text-grey:focus {
color: #777 !important;
}
.text-grey-300,
.text-grey-300:hover,
.text-grey-300:focus {
color: #999 !important;
}
.text-grey-400,
.text-grey-400:hover,
.text-grey-400:focus {
color: #888 !important;
}
.text-grey-600,
.text-grey-600:hover,
.text-grey-600:focus {
color: #666 !important;
}
.text-grey-700,
.text-grey-700:hover,
.text-grey-700:focus {
color: #555 !important;
}
.text-grey-800,
.text-grey-800:hover,
.text-grey-800:focus {
color: #444 !important;
}
.text-slate,
.text-slate:hover,
.text-slate:focus {
color: #607D8B !important;
}
.text-slate-300,
.text-slate-300:hover,
.text-slate-300:focus {
color: #90A4AE !important;
}
.text-slate-400,
.text-slate-400:hover,
.text-slate-400:focus {
color: #78909C !important;
}
.text-slate-600,
.text-slate-600:hover,
.text-slate-600:focus {
color: #546E7A !important;
}
.text-slate-700,
.text-slate-700:hover,
.text-slate-700:focus {
color: #455A64 !important;
}
.text-slate-800,
.text-slate-800:hover,
.text-slate-800:focus {
color: #37474F !important;
}
.text-white,
.text-white:hover,
.text-white:focus {
color: #fff!important;
}
.text-default,
.text-default:hover,
.text-default:focus {
color: #333333 !important;
}
|
MostafaEsmaeili/Iran-Marketer
|
Constant/Theme/material/material/starters/assets/css/colors.css
|
CSS
|
gpl-3.0
| 46,456
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>ns-3 PLC model: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ns-3 PLC model
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li 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><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>ns3</b> </li>
<li class="navelem"><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">PLC_PhyRatelessFrameControlHeader</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">ns3::PLC_PhyRatelessFrameControlHeader Member List</div> </div>
</div><!--header-->
<div class="contents">
This is the complete list of members for <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>ACK</b> enum value (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DATA</b> enum value (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DelimiterType</b> enum name (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>Deserialize</b>(Buffer::Iterator start) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetDelimiterType</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetFccs</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetInstanceTypeId</b>(void) const (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetNumBlocks</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetPayloadMcs</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetPayloadSymbols</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetPrngSeed</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetSerializedSize</b>(void) const (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>GetTypeId</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>NACK</b> enum value (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>PLC_PhyRatelessFrameControlHeader</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>Print</b>(std::ostream &os) const (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>Serialize</b>(Buffer::Iterator start) const (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetDelimiterType</b>(DelimiterType type) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetFccs</b>(uint8_t fccs) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetNumBlocks</b>(uint32_t num_blocks) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetPayloadMcs</b>(ModulationAndCodingType mcs) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetPayloadSymbols</b>(uint16_t symbols) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>SetPrngSeed</b>(uint16_t prng_seed) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~PLC_PhyRatelessFrameControlHeader</b>(void) (defined in <a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a>)</td><td><a class="el" href="classns3_1_1PLC__PhyRatelessFrameControlHeader.html">ns3::PLC_PhyRatelessFrameControlHeader</a></td><td></td></tr>
</table></div><!-- contents -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Enumerations</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Sat Mar 30 2013 21:36:38 for ns-3 PLC model by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>
</body>
</html>
|
daniel-brettschneider/SiENA
|
ns-3.26/src/plc/doc/html/classns3_1_1PLC__PhyRatelessFrameControlHeader-members.html
|
HTML
|
gpl-3.0
| 13,218
|
<div data-ui-field="widget" class="ui-overlay-shadow ui-corner-all ui-body-inherit hg-widget-b" style="min-height:170px">
<div class="ui-header ui-bar-inherit" style="padding-left:5px;padding-right:5px">
<div style="font-weight:bold">Earth Tools</div>
<div data-ui-field="last_updated_value">Waiting for data...</div>
<a data-ui-field="settings" data-role="button" data-icon="edit" data-iconshadow="false" data-iconpos="notext" class="ui-btn-right">Configuration</a>
</div>
<table border="0" cellpadding="3" cellspacing="0" style="background-repeat:no-repeat;background-image:url('pages/control/widgets/weather/earthtools/images/earthtools.png');background-position:0px 23px;">
<tr>
<td colspan="4"></td>
</tr>
<tr style="font-size:9pt;border-bottom:solid 1px gray">
<td style="width:120px;border-bottom:solid 1px gray;border-right:solid 1px gray" align="right">Twilight</td>
<td style="color:gray;width:120px;border-bottom:solid 1px gray" align="center">Civil</td>
<td style="color:gray;width:120px;border-bottom:solid 1px gray" align="center">Nautical</td>
<td style="color:gray;width:120px;border-bottom:solid 1px gray" align="center">Astronomical</td>
</tr>
<tr style="font-size:9pt">
<td style="color:gray;border-right:solid 1px gray" align="right">Morning</td>
<td data-ui-field="cm_twilight" align="center"></td>
<td data-ui-field="nm_twilight" align="center"></td>
<td data-ui-field="am_twilight" align="center"></td>
</tr>
<tr style="font-size:9pt">
<td style="color:gray;border-bottom:solid 3px gray;border-right:solid 1px gray" align="right">Evening</td>
<td data-ui-field="ce_twilight" align="center" style="border-bottom:solid 3px gray;"></td>
<td data-ui-field="ne_twilight" align="center" style="border-bottom:solid 3px gray;"></td>
<td data-ui-field="ae_twilight" align="center" style="border-bottom:solid 3px gray;"></td>
</tr>
<tr style="font-size:9pt">
<td style="border-right:solid 1px gray" align="right">Sunrise</td>
<td data-ui-field="a_sunrise" align="center"></td>
<td style="border-right:solid 1px gray" align="right">Sunset</td>
<td data-ui-field="a_sunset" align="center"></td>
</tr>
</table>
<div align="center" data-ui-field="name">Longitude <span data-ui-field="longitude" style="font-weight:bold"></span> Latitude <span data-ui-field="latitude" style="font-weight:bold"></span></div>
</div>
|
AdnanSattar/HomeGenie
|
BaseFiles/Common/html/pages/control/widgets/weather/earthtools/sundata.html
|
HTML
|
gpl-3.0
| 2,653
|
{% extends 'base.html' %}
{% block content %}
<div class='row-fluid'>
<div class='col-md-12 top-buffer'>
<p>An email has been sent to the address you supplied with instructions for completing your registration.</p>
<p>Return to <a href='{% url 'approval_polls:index' %}'>home</a></p>
</div>
</div>
{% endblock %}
|
kushankr/approval_frame
|
approval_frame/templates/registration/registration_complete.html
|
HTML
|
gpl-3.0
| 338
|
<style type="text/css">
input.date {
display: inline;
display: -webkit-inline-flex;
width: 150px;
padding-right: 4px;
margin-right: 5px;
}
input.time {
display: inline;
display: -webkit-inline-flex;
width: 140px;
padding-right: 4px;
margin-right: 5px;
}
</style>
{{#if useDate}}<input type="date" {{#if readonly}}disabled{{/if}} class="date" {{#if hasValue}}value="{{dateValue}}"{{/if}}>{{/if}}
{{#if useTime}}<input type="time" step="1" {{#if readonly}}disabled{{/if}} class="time" {{#if hasValue}}value="{{timeValue}}"{{/if}}>{{/if}}
{{#unless readonly}}<a class="now secondary-info">{{t "date_now"}}</a>{{/unless}}
<input class="merged" type="hidden" {{#if hasValue}}value="{{value}}"{{/if}} name="{{name}}" id="{{name}}">
|
SMC-digital/directus
|
app/core/uis/datetime/input.html
|
HTML
|
gpl-3.0
| 823
|
@CHARSET "UTF-8";
div.Tooltip div.body {
background-color: white;
border: 1px solid #AAA;
padding: 2px 10px;
word-wrap:break-word;
min-width: 36px;
min-height: 36px;
max-width: 350px;
max-height: 400px;
display: table-cell;
vertical-align: middle;
text-align: center;
}
/* Fancy border */
div.Tooltip div.body {
-moz-border-radius: 0 7px 0 7px;
-khtml-border-radius: 0 7px 0 7px;
-webkit-border-radius: 0 7px 0 7px;
border-radius: 7px 0 7px 0;
box-shadow: 3px 3px 4px #f3f3f3;
-moz-box-shadow: 3px 3px 4px #f3f3f3;
-khtml-box-shadow: 3px 3px 4px #f3f3f3;
-webkit-box-shadow: 3px 3px 4px #f3f3f3;
}
/* ARROW images */
div.Tooltip div.arrow {
background: url(images/arrows.png) no-repeat;
}
div.Tooltip div.left.arrow {
background-position: 0 -1px;
height: 12px;
width: 7px;
}
div.Tooltip div.right.arrow {
background-position: -12px -1px;
height: 12px;
width: 7px;
}
div.Tooltip div.top.arrow {
background-position: -37px -1px;
height: 7px;
width: 12px;
}
div.Tooltip div.bottom.arrow {
background-position: -21px -1px;
height: 7px;
width: 12px;
}
|
jppazmin/Gene
|
genesearch/target/registry/style/biojs.Tooltip.css
|
CSS
|
gpl-3.0
| 1,106
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Open Archive Changelog</title>
<style type="text/css">
/* global font and body settings */
body {
font-size: 100%;
background-color: #d3d6d9;
padding: 0;
margin: 0 0 30px 0;
}
body, td, th {
font-family: arial, helvetica, sans-serif;
font-size: 10pt;
}
pre, tt, code {
font-family: courier new, monospace;
font-size: 9pt;
}
#pageContainer {
display: block;
position: relative;
clear: both;
background-color: #fff;
border: 1px solid #999;
padding: 40px;
margin: 30px;
}
#pageHeader {
display: block;
position: relative;
height: 80px;
background-color: #e7eaee;
border: 1px solid #cccccc;
border-bottom: none;
margin: 10px 0 0 0;
}
#pageBody {
margin: 0 18px 0 20px;
}
/* anchors */
a:link {
color: #11568c;
}
a:visited {
color: #571c8d;
}
a:hover {
color: #7a1d42;
text-decoration: underline;
}
a:active {
color: #7a1d42;
}
/* page header elements (logo and navigation) */
.navigation {
display: block;
position: relative;
height: 20px;
background-color: #335588;
border: 1px solid #cccccc;
border-top: none;
color: #ffffff;
font-size: 11px;
line-height: 18px;
padding: 0 0 0 0;
margin: 0 0 25px 0;
overflow: hidden;
}
.navigation a {
margin: 0 20px 0 20px;
}
.navigation a:link {
color: #ffffff;
}
.navigation a:visited {
color: #ffffff;
}
.navigation a:hover {
color: #ffffff;
}
.navigation a:active {
color: #ffffff;
}
/* headings */
h1 {
display: block;
position: relative;
font-size: 1.7em;
font-weight: bold;
color: #670e15;
padding: 0;
margin: 30px 0 0 20px;
}
h2 {
font-size: 1.3em;
font-weight: bold;
margin: 40px 0 6px 0;
padding: 0;
color: #335588;
}
h3 {
font-size: 1.0em;
font-weight: bold;
margin: 25px 0 3px 0;
padding: 0;
color: #334466;
}
/* general elements */
p {
margin: 0 0 15px 0;
}
ul {
margin: 5px 0 15px 35px;
}
li {
padding-bottom: 4px;
}
tt {
font-family: courier new, monospace;
font-weight: bold;
color: #060;
}
hr {
display: block;
height: 1px;
background-color: #999999;
border: none;
margin: 40px 0 20px 0;
}
.footer {
font-size: 8pt;
color: #666;
text-align: center;
margin-top: 2em;
padding-top: 0.5em;
border-top: 1px #CCC solid;
}
</style>
</head>
<body>
<div id="pageContainer">
<div id="pageHeader">
<h1>Open Archive Changelog</h1>
</div>
<div id="pageBody">
<h2>1.0.0 -- <span style="font-weight: normal;">2017-4-3</span></h2>
<ul>
<li>测试版.</li>
</ul>
</div>
<div class="footer">
</div>
</div>
</body>
</html>
|
masach/FaceWhat
|
FacewhatFire/src/plugins/fwprintstanza/changelog.html
|
HTML
|
gpl-3.0
| 2,852
|
{% extends 'places_core/base.html' %}{% load i18n %}
{% block content %}<h1>{% trans "Message sent" %}</h1>
<p>{% trans "Thank you for your feedback!" %}</p>{% endblock %}
|
piotrek-golda/CivilHubIndependantCopy
|
civmail/templates/civmail/message_sent.html
|
HTML
|
gpl-3.0
| 172
|
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="script-src 'nonce-abc' 'sha256-Cb9N8BP42Neca22vQ9VaXlPU8oPF8HPxZHxRVcnLZJ4='; img-src *;">
<title>Event handlers should not be allowed if a matching hash is present without 'unsafe-hashes'</title>
<script src='/resources/testharness.js' nonce='abc'></script>
<script src='/resources/testharnessreport.js' nonce='abc'></script>
</head>
<body>
<div id='log'></div>
<script nonce='abc'>
var t1 = async_test("Test that the inline event handler is not allowed to run");
window.addEventListener('securitypolicyviolation', t1.step_func_done(function(e) {
assert_equals(e.violatedDirective, 'script-src');
assert_equals(e.blockedURI, 'inline');
}));
</script>
<img src='../support/pass.png'
onload='t1.unreached_func("Should not have executed handler");'>
</body>
</html>
|
ConnorGBrewster/servo
|
tests/wpt/web-platform-tests/content-security-policy/unsafe-hashes/script_event_handlers_denied_missing_unsafe_hashes.html
|
HTML
|
mpl-2.0
| 952
|
<HTML>
<BODY>
Utility classes for general logging and formating of logs
</BODY>
</HTML>
|
amagdenko/oiosaml.java
|
sp/trunk/src/dk/itst/oiosaml/logging/package.html
|
HTML
|
mpl-2.0
| 91
|
<button class="btn btn-devicecloud" ng-click="$state.go('devices')">Return to Devices List</button>
|
brucetsao/XBeeZigBeeCloudKit
|
src/app/xbee_network/footer.tpl.html
|
HTML
|
mpl-2.0
| 100
|
@font-face{
font-family: 'Open Sans';
font-weight: normal;
src: url('../fonts/OpenSans-Regular.woff') format('woff');
}
@font-face{
font-family: 'Open Sans';
src: url('../fonts/OpenSans-Bold.woff') format('woff');
font-weight: bold;
}
body {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
padding-top: 120px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
line-height: 1.2;
}
.alert {
margin-bottom: 0;
margin-top: 20px;
}
.label{
display: inline-block;
padding: 0.4em 0.6em 0.3em;
}
/**
* Adaptation pour bootstrap 3.2.0
***********************************/
.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox]{
margin-left: 0;
}
.text-right .checkbox input[type=checkbox]{
right: 0;
}
.text-right .checkbox label{
padding-left: 0;
padding-right: 20px;
}
.dropdown-menu {
right: 0px;
left: auto;
}
/***
* Header and navigation bar
*********************************/
.navbar-inverse {
background-color: #428bca;
border: none;
}
.navbar-inverse .navbar-brand {
color: #fff;
}
.navbar-inverse .navbar-nav>li>a {
color: #fff;
}
.navbar-inverse .navbar-header>a,
.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus {
background-color: transparent;
transition: background-color 0.2s;
}
.navbar-inverse .navbar-header>a:hover,
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>.active>a:hover {
background-color: #337AB7;
}
.navbar-inverse .navbar-nav>.active>a:after{
content: " ";
display: block;
position: absolute;
border-width: 7px;
border-style: solid;
border-color: transparent transparent #f8f8f8;
bottom: 0;
left: 50%;
margin-left: -7px;
}
nav .search .search-input{
height: 25px;
font-size: 13px;
margin-top: 4px;
transition: all 0.15s ease-in 0s;
}
.search .search-input {
width: 300px;
border: none;
}
.search-input{
background-image: url('../img/icon-search.png');
background-repeat: no-repeat;
background-position: 10px center;
padding: 4px 12px 4px 25px;
}
.search .search-input:focus {
width: 330px;
}
.navbar-nav li a.nav-avatar {
padding: 10px 15px;
}
.navbar-fixed-top .navbar-collapse {
max-height: none;
}
/***
* Player
*********************************/
.navbar-player{
margin-top: 50px;
height: 65px;
z-index: 1020;
border: none;
box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
}
ul.player-controls a {
color: #808080;
}
ul.player-controls{
text-align: center;
margin: 0;
padding: 0;
}
ul.player-controls li{
display: table-cell;
width: 1%;
height: 65px;
vertical-align: middle;
font-size: 20px;
line-height: 0;
cursor: default;
color: #808080;
}
ul.player-controls.volume li.volumeicon .glyphicon{
margin-right: 5px;
}
ul.player-controls.volume li.volumebar{
width: 15%;
}
ul.player-controls li span:hover{
color:#5a5a5a;
}
ul.player-controls li.disable span, ul.player-controls li.disable span:hover{
color: #dadada;
}
ul.player-controls li.active span, ul.player-controls li.active span:hover{
color: #428bca;
}
ul.player-controls li.active.single span::after{
content: "1";
font-size: 8px;
color: white;
background-color: #428bca;
border-radius: 50%;
display: inline-block;
position: absolute;
width: 10px;
height: 10px;
right: -8px;
bottom: -3px;
}
ul.player-controls li.play{
font-size: 30px;
}
.navbar-player .song-infos{
margin-top: 10px;
}
.navbar-player .song-infos .song-name{
font-weight: bold;
}
.navbar-player .song-infos .song-artist{
color: #808080;
}
.navbar-player ul.timebar{
margin: 0;
padding: 0;
list-style: none;
}
.navbar-player ul.timebar li{
display: table-cell;
width: 1%;
padding-right: 9px;
}
.navbar-player ul.timebar li.bar{
width: 100%;
}
.navbar-player ul.timebar li:last-child{
padding-right: 0;
}
.navbar-player .song-cover{
float: left;
width: 65px;
height: 65px;
margin-right: 10px;
}
.badge-timer{
background-color: #428BCA;
font-weight: normal;
}
.queue {
border-bottom: 1px solid transparent;
top: -196px;
left: 0;
position: fixed;
width: 100%;
box-sizing: border-box;
z-index: 1000;
transition: top 0.3s ease 0s;
}
.queue.queue-open {
top: 114px;
}
.queue > .queue-wrapper {
/*border-bottom: 1px solid #E7E7E7;*/
box-shadow: 0 2px 4px rgba(0,0,0,.25);
padding: 0;
}
.queue-wrapper {
position: relative;
}
.current-queue {
position: relative;
z-index: 1000;
}
.current-queue-inner {
height: 300px;
background-color: #F8F8F8;
color: #5A5A5A;
overflow: auto;
}
.current-queue-inner table {
border-collapse: separate;
}
.current-queue-inner table tbody tr td.playtime-cell {
width: 75px;
}
body, body.modal-open {
padding-right: 0px !important;
overflow-y: auto;
}
#flash{
position: fixed;
width: 250px;
z-index: 100;
bottom: 15px;
right: -300px;
}
/***
* Generics classes
*********************************/
.table>tbody>tr>td, .table>thead>tr>th {
padding: 15px 5px;
}
.table-album>tbody>tr>td, .table-album>thead>tr>th {
padding: 8px 5px;
}
.table>thead>tr>th {
font-size: 95%;
text-transform: uppercase;
}
tr[data-id]{
cursor: pointer;
}
.table>tbody>tr>td.track-number{
width: 35px;
color:#999;
padding-left: 15px;
}
.table>thead>tr>th.track-number {
padding-left: 15px;
}
.truncated-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.separator-right {
border-right: 1px solid #DDD;
}
.album-table-container {
padding-right: 0;
padding-left: 0;
}
.table-album {
table-layout: fixed;
}
.table-album-left {
margin-bottom: 0;
}
.playtime-cell {
width: 55px;
}
#album-expended .table>tbody>tr:hover {
background-color: #282828;
}
.table>tbody>tr.on-air,.table>tbody>tr.on-air:hover {
background-color: #fafafa;
}
#album-expended .table>tbody>tr.on-air, #album-expended .table>tbody>tr.on-air:hover {
background-color: #2D2D2D;
}
.on-air td {
font-weight: bold;
}
.on-air td.track-number {
font-weight: normal;
}
.on-air td.playtime-cell .song-playtime,
.on-air td.playtime-cell .action-play {
display: none;
}
.on-air td.playtime-cell .action-pause,
.on-air td.playtime-cell .action-add-to-playlist {
display: inline;
}
.on-air.paused td.playtime-cell .action-pause {
display: none;
}
.on-air.paused td.playtime-cell .action-play{
display: inline;
}
.btn-selecter {
padding: 9px 12px;
}
.input-group .selecter-selected {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group .selecter.open .selecter-selected {
border-top-right-radius: 0;
}
/***
* Artists view
*********************************/
.artist-name{
color: #999;
}
.band-name{
margin-bottom: 25px;
}
.band-stats{
margin: -8px auto;
font-style: italic;
color: #999;
}
.disc-number{
margin: 10px 0;
text-transform: uppercase;
}
.cover{
display: block;
float: none;
border-radius: 3px;
box-shadow: 0 2px 3px rgba(0,0,0, .5);
margin-top: 10px;
margin-bottom: 10px;
}
.song-controls {
color: #999;
margin: 0 2px;
padding: 0 2px;
cursor: pointer;
}
.song-controls:hover {
color: #555555;
}
.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
border: none;
}
.song-controls,
.album:hover h4 small.album-year,
table tbody tr:hover td span.song-playtime,
table tbody tr.on-air:hover td span.action-remove-from-queue {
display: none;
}
.band-name:hover h3 small span.song-controls,
.album:hover h4 small span.song-controls,
.album:hover h3 small span.song-controls,
.playlist-row:hover h4 small span.song-controls,
table tbody tr:hover td span.action-play,
table tbody tr:hover td span.action-add-to-playlist,
table tbody tr:hover td span.action-remove-from-queue,
table tbody tr:hover td span.action-remove-from-playlist{
display: inline;
cursor: pointer;
}
@media (min-width: 1200px) {
.artist-view-title-cell {
width: 301px;
max-width: 301px;
}
}
@media (max-width: 1200px) {
.artist-view-title-cell {
max-width: 561px;
min-width: 450px;
}
}
/***
* Albums view
**********************************/
.action-expend.active:after{
content: " ";
display: block;
position: absolute;
border-width: 11px;
border-color: transparent transparent #333333;
border-style: solid;
bottom: 0;
left: 50%;
margin-left: -10px;
}
.action-expend.active{
-webkit-transition: margin-bottom .2s ease;
-moz-transition: margin-bottom .2s ease;
-ms-transition: margin-bottom .2s ease;
-o-transition: margin-bottom .2s ease;
transition: margin-bottom .2s ease;
}
.action-expend.loading img{
opacity: 0.3;
}
.action-expend.loading .loader{
position: absolute;
left: 0;right: 0;
top: 50%;
margin-top: -30px;
text-align: center;
}
#album-expended{
position: absolute;
background-color: #333;
color: #aaa;
width: 100%;
left: 0;
}
#album-expended h3{
color: white;
}
#album-expended .close-album{
cursor: default;
}
#album-expended table .title{
color: white;
}
#album-expended .row{
margin-left: 0;
margin-right: 0;
}
/***
* Settings
*********************************/
.conversions-table, .conversions-table td {
width: 100%;
padding: 4px;
}
.conversions-table-left, .conversions-table-left thead th {
text-align: right;
}
#quality-slider{
margin-top: 7px;
}
.rootpath{
margin-bottom: 10px;
}
/***
* Users edition
*********************************/
.avatar-container{
width: 188px;
}
.avatar-remover{
position: absolute;
bottom: 0;
}
.avatar-selector{
height: 50px;
width: 100%;
overflow: hidden;
}
.avatar-remover-link {
background: linear-gradient(transparent, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.6) 100%) repeat scroll 0% 0% transparent;
width: 188px;
padding: 0;
height: 200%;
bottom: -140px;
right: 0;
left: 0;
transition: bottom 0.13s ease-out 0s;
}
.avatar-remover-icon{
display: block;
bottom: 8px;
left: 12px;
width: 32px;
line-height: 32px;
color: #FFF;
text-align: center;
font-size: 18px;
}
.avatar-selector-label{
padding-left: 52px;
height: 50px;
width: 188px;
line-height: 50px;
color: #FFF;
}
.avatar-container:hover .avatar-remover-link{
bottom: 0;
}
/**
* Playlist
***************************/
.panel-heading {
position: relative;
}
.btn-add-plst {
position: absolute;
top: 10px;
right: 10px;
}
.list-group-item {
overflow: hidden;
}
.btn-mgmt {
display: block;
position: absolute;
transition: all .5s ease 0s;
}
.btn-playlist-delete {
top: 10px;
right: -37px;
}
.btn-playlist-edit {
top: -32px;
right: 40px;
}
.list-group-item:hover .btn-playlist-edit{
top: 10px;
}
.list-group-item:hover .btn-playlist-delete{
right: 10px;
}
/**
* Animations
***************************/
.animated {
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
-ms-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
100% {
-webkit-transform: perspective(400px);
-ms-transform: perspective(400px);
transform: perspective(400px);
}
}
@-webkit-keyframes loader-ani1{
100%{
-webkit-transform:translate(20px);
transform:translate(20px);
opacity: 0;
}
}
@keyframes loader-ani1{
100%{
-webkit-transform:translate(20px);
transform:translate(20px);
opacity: 0;
}
}
@-webkit-keyframes loader-ani2{
100%{
-webkit-transform:translate(10px);
transform:translate(10px);
opacity: 1;
}
}
@keyframes loader-ani2{
100%{
-webkit-transform:translate(10px);
transform:translate(10px);
opacity: 1;
}
}
@-webkit-keyframes loader-ani3{
100%{
-webkit-transform:translate(10px);
transform:translate(10px);
}
}
@keyframes loader-ani3{
100%{
-webkit-transform:translate(10px);
transform:translate(10px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
.loader i{
width: 10px;
height: 10px;
display: inline-block;
border-radius: 50%;
background: #00b3d5;
}
.loader i:first-child{
-webkit-animation:loader-ani2 0.5s linear infinite;
animation:loader-ani2 0.5s linear infinite;
opacity: 0;
-webkit-transform:translate(-10px);
-ms-transform:translate(-10px);
transform:translate(-10px);
}
.loader i:nth-child(2),
.loader i:nth-child(3){
-webkit-animation:loader-ani3 0.5s linear infinite;
animation:loader-ani3 0.5s linear infinite;
}
.loader i:last-child{
-webkit-animation:loader-ani1 0.5s linear infinite;
animation:loader-ani1 0.5s linear infinite;
}
/* Lazyload */
.lzld {
width: 100%;
height: auto;
-webkit-transition: opacity 500ms ease-in-out;
-moz-transition: opacity 500ms ease-in-out;
-o-transition: opacity 500ms ease-in-out;
transition: opacity 500ms ease-in-out;
max-width: 100%;
opacity: 0;
}
.lzld.lzld-loaded {
opacity: 1;
}
|
gs11/sonerezh
|
app/webroot/css/style.css
|
CSS
|
agpl-3.0
| 14,558
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Function template ends_with</title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../../index.html" title="Chapter 1. Boost.Log v2">
<link rel="up" href="../../../expressions.html#header.boost.log.expressions.predicates.ends_with_hpp" title="Header <boost/log/expressions/predicates/ends_with.hpp>">
<link rel="prev" href="ends_with_idm29342.html" title="Function template ends_with">
<link rel="next" href="has_attribute.html" title="Class template has_attribute">
</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></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="ends_with_idm29342.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../expressions.html#header.boost.log.expressions.predicates.ends_with_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="has_attribute.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.expressions.ends_with_idm29357"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template ends_with</span></h2>
<p>boost::log::expressions::ends_with</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="../../../expressions.html#header.boost.log.expressions.predicates.ends_with_hpp" title="Header <boost/log/expressions/predicates/ends_with.hpp>">boost/log/expressions/predicates/ends_with.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> SubstringT<span class="special">></span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="identifier">ends_with</span><span class="special">(</span><span class="identifier">attribute_name</span> <span class="keyword">const</span> <span class="special">&</span> name<span class="special">,</span>
<span class="identifier">SubstringT</span> <span class="keyword">const</span> <span class="special">&</span> substring<span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idm52641"></a><h2>Description</h2>
<p>The function generates a terminal node in a template expression. The node will check if the attribute value, which is assumed to be a string, ends with the specified substring. </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 © 2007-2021 Andrey Semashev<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="ends_with_idm29342.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../expressions.html#header.boost.log.expressions.predicates.ends_with_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="has_attribute.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
qianqians/abelkhan
|
cpp_component/3rdparty/boost/libs/log/doc/html/boost/log/expressions/ends_with_idm29357.html
|
HTML
|
lgpl-2.1
| 4,338
|
<!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-Object'>/**
</span> * @author Jacky Nguyen <[email protected]>
* @docauthor Jacky Nguyen <[email protected]>
* @class Ext.Object
*
* A collection of useful static methods to deal with objects
*
* @singleton
*/
(function() {
var ExtObject = Ext.Object = {
<span id='Ext-Object-method-toQueryObjects'> /**
</span> * Convert a `name` - `value` pair to an array of objects with support for nested structures; useful to construct
* query strings. For example:
var objects = Ext.Object.toQueryObjects('hobbies', ['reading', 'cooking', 'swimming']);
// objects then equals:
[
{ name: 'hobbies', value: 'reading' },
{ name: 'hobbies', value: 'cooking' },
{ name: 'hobbies', value: 'swimming' },
];
var objects = Ext.Object.toQueryObjects('dateOfBirth', {
day: 3,
month: 8,
year: 1987,
extra: {
hour: 4
minute: 30
}
}, true); // Recursive
// objects then equals:
[
{ name: 'dateOfBirth[day]', value: 3 },
{ name: 'dateOfBirth[month]', value: 8 },
{ name: 'dateOfBirth[year]', value: 1987 },
{ name: 'dateOfBirth[extra][hour]', value: 4 },
{ name: 'dateOfBirth[extra][minute]', value: 30 },
];
* @param {String} name
* @param {Mixed} value
* @param {Boolean} recursive
* @markdown
*/
toQueryObjects: function(name, value, recursive) {
var self = ExtObject.toQueryObjects,
objects = [],
i, ln;
if (Ext.isArray(value)) {
for (i = 0, ln = value.length; i < ln; i++) {
if (recursive) {
objects = objects.concat(self(name + '[' + i + ']', value[i], true));
}
else {
objects.push({
name: name,
value: value[i]
});
}
}
}
else if (Ext.isObject(value)) {
for (i in value) {
if (value.hasOwnProperty(i)) {
if (recursive) {
objects = objects.concat(self(name + '[' + i + ']', value[i], true));
}
else {
objects.push({
name: name,
value: value[i]
});
}
}
}
}
else {
objects.push({
name: name,
value: value
});
}
return objects;
},
<span id='Ext-Object-method-toQueryString'> /**
</span> * Takes an object and converts it to an encoded query string
- Non-recursive:
Ext.Object.toQueryString({foo: 1, bar: 2}); // returns "foo=1&bar=2"
Ext.Object.toQueryString({foo: null, bar: 2}); // returns "foo=&bar=2"
Ext.Object.toQueryString({'some price': '$300'}); // returns "some%20price=%24300"
Ext.Object.toQueryString({date: new Date(2011, 0, 1)}); // returns "date=%222011-01-01T00%3A00%3A00%22"
Ext.Object.toQueryString({colors: ['red', 'green', 'blue']}); // returns "colors=red&colors=green&colors=blue"
- Recursive:
Ext.Object.toQueryString({
username: 'Jacky',
dateOfBirth: {
day: 1,
month: 2,
year: 1911
},
hobbies: ['coding', 'eating', 'sleeping', ['nested', 'stuff']]
}, true); // returns the following string (broken down and url-decoded for ease of reading purpose):
// username=Jacky
// &dateOfBirth[day]=1&dateOfBirth[month]=2&dateOfBirth[year]=1911
// &hobbies[0]=coding&hobbies[1]=eating&hobbies[2]=sleeping&hobbies[3][0]=nested&hobbies[3][1]=stuff
*
* @param {Object} object The object to encode
* @param {Boolean} recursive (optional) Whether or not to interpret the object in recursive format.
* (PHP / Ruby on Rails servers and similar). Defaults to false
* @return {String} queryString
* @markdown
*/
toQueryString: function(object, recursive) {
var paramObjects = [],
params = [],
i, j, ln, paramObject, value;
for (i in object) {
if (object.hasOwnProperty(i)) {
paramObjects = paramObjects.concat(ExtObject.toQueryObjects(i, object[i], recursive));
}
}
for (j = 0, ln = paramObjects.length; j < ln; j++) {
paramObject = paramObjects[j];
value = paramObject.value;
if (Ext.isEmpty(value)) {
value = '';
}
else if (Ext.isDate(value)) {
value = Ext.Date.toString(value);
}
params.push(encodeURIComponent(paramObject.name) + '=' + encodeURIComponent(String(value)));
}
return params.join('&');
},
<span id='Ext-Object-method-fromQueryString'> /**
</span> * Converts a query string back into an object.
*
- Non-recursive:
Ext.Object.fromQueryString(foo=1&bar=2); // returns {foo: 1, bar: 2}
Ext.Object.fromQueryString(foo=&bar=2); // returns {foo: null, bar: 2}
Ext.Object.fromQueryString(some%20price=%24300); // returns {'some price': '$300'}
Ext.Object.fromQueryString(colors=red&colors=green&colors=blue); // returns {colors: ['red', 'green', 'blue']}
- Recursive:
Ext.Object.fromQueryString("username=Jacky&dateOfBirth[day]=1&dateOfBirth[month]=2&dateOfBirth[year]=1911&hobbies[0]=coding&hobbies[1]=eating&hobbies[2]=sleeping&hobbies[3][0]=nested&hobbies[3][1]=stuff", true);
// returns
{
username: 'Jacky',
dateOfBirth: {
day: '1',
month: '2',
year: '1911'
},
hobbies: ['coding', 'eating', 'sleeping', ['nested', 'stuff']]
}
* @param {String} queryString The query string to decode
* @param {Boolean} recursive (Optional) Whether or not to recursively decode the string. This format is supported by
* PHP / Ruby on Rails servers and similar. Defaults to false
* @return {Object}
*/
fromQueryString: function(queryString, recursive) {
var parts = queryString.replace(/^\?/, '').split('&'),
object = {},
temp, components, name, value, i, ln,
part, j, subLn, matchedKeys, matchedName,
keys, key, nextKey;
for (i = 0, ln = parts.length; i < ln; i++) {
part = parts[i];
if (part.length > 0) {
components = part.split('=');
name = decodeURIComponent(components[0]);
value = (components[1] !== undefined) ? decodeURIComponent(components[1]) : '';
if (!recursive) {
if (object.hasOwnProperty(name)) {
if (!Ext.isArray(object[name])) {
object[name] = [object[name]];
}
object[name].push(value);
}
else {
object[name] = value;
}
}
else {
matchedKeys = name.match(/(\[):?([^\]]*)\]/g);
matchedName = name.match(/^([^\[]+)/);
//<debug error>
if (!matchedName) {
Ext.Error.raise({
sourceClass: "Ext.Object",
sourceMethod: "fromQueryString",
queryString: queryString,
recursive: recursive,
msg: 'Malformed query string given, failed parsing name from "' + part + '"'
});
}
//</debug>
name = matchedName[0];
keys = [];
if (matchedKeys === null) {
object[name] = value;
continue;
}
for (j = 0, subLn = matchedKeys.length; j < subLn; j++) {
key = matchedKeys[j];
key = (key.length === 2) ? '' : key.substring(1, key.length - 1);
keys.push(key);
}
keys.unshift(name);
temp = object;
for (j = 0, subLn = keys.length; j < subLn; j++) {
key = keys[j];
if (j === subLn - 1) {
if (Ext.isArray(temp) && key === '') {
temp.push(value);
}
else {
temp[key] = value;
}
}
else {
if (temp[key] === undefined || typeof temp[key] === 'string') {
nextKey = keys[j+1];
temp[key] = (Ext.isNumeric(nextKey) || nextKey === '') ? [] : {};
}
temp = temp[key];
}
}
}
}
}
return object;
},
<span id='Ext-Object-method-each'> /**
</span> * Iterate through an object and invoke the given callback function for each iteration. The iteration can be stop
* by returning `false` in the callback function. For example:
var person = {
name: 'Jacky'
hairColor: 'black'
loves: ['food', 'sleeping', 'wife']
};
Ext.Object.each(person, function(key, value, myself) {
console.log(key + ":" + value);
if (key === 'hairColor') {
return false; // stop the iteration
}
});
* @param {Object} object The object to iterate
* @param {Function} fn The callback function. Passed arguments for each iteration are:
- {String} `key`
- {Mixed} `value`
- {Object} `object` The object itself
* @param {Object} scope (Optional) The execution scope (`this`) of the callback function
* @markdown
*/
each: function(object, fn, scope) {
for (var property in object) {
if (object.hasOwnProperty(property)) {
if (fn.call(scope || object, property, object[property], object) === false) {
return;
}
}
}
},
<span id='Ext-Object-method-merge'> /**
</span> * Merges any number of objects recursively without referencing them or their children.
var extjs = {
companyName: 'Ext JS',
products: ['Ext JS', 'Ext GWT', 'Ext Designer'],
isSuperCool: true
office: {
size: 2000,
location: 'Palo Alto',
isFun: true
}
};
var newStuff = {
companyName: 'Sencha Inc.',
products: ['Ext JS', 'Ext GWT', 'Ext Designer', 'Sencha Touch', 'Sencha Animator'],
office: {
size: 40000,
location: 'Redwood City'
}
};
var sencha = Ext.Object.merge(extjs, newStuff);
// extjs and sencha then equals to
{
companyName: 'Sencha Inc.',
products: ['Ext JS', 'Ext GWT', 'Ext Designer', 'Sencha Touch', 'Sencha Animator'],
isSuperCool: true
office: {
size: 30000,
location: 'Redwood City'
isFun: true
}
}
* @param {Object} object,...
* @return {Object} merged The object that is created as a result of merging all the objects passed in.
* @markdown
*/
merge: function(source, key, value) {
if (typeof key === 'string') {
if (value && value.constructor === Object) {
if (source[key] && source[key].constructor === Object) {
ExtObject.merge(source[key], value);
}
else {
source[key] = Ext.clone(value);
}
}
else {
source[key] = value;
}
return source;
}
var i = 1,
ln = arguments.length,
object, property;
for (; i < ln; i++) {
object = arguments[i];
for (property in object) {
if (object.hasOwnProperty(property)) {
ExtObject.merge(source, property, object[property]);
}
}
}
return source;
},
<span id='Ext-Object-method-getKey'> /**
</span> * Returns the first matching key corresponding to the given value.
* If no matching value is found, null is returned.
var person = {
name: 'Jacky',
loves: 'food'
};
alert(Ext.Object.getKey(sencha, 'loves')); // alerts 'food'
* @param {Object} object
* @param {Object} value The value to find
* @markdown
*/
getKey: function(object, value) {
for (var property in object) {
if (object.hasOwnProperty(property) && object[property] === value) {
return property;
}
}
return null;
},
<span id='Ext-Object-method-getValues'> /**
</span> * Gets all values of the given object as an array.
var values = Ext.Object.getValues({
name: 'Jacky',
loves: 'food'
}); // ['Jacky', 'food']
* @param {Object} object
* @return {Array} An array of values from the object
* @markdown
*/
getValues: function(object) {
var values = [],
property;
for (property in object) {
if (object.hasOwnProperty(property)) {
values.push(object[property]);
}
}
return values;
},
<span id='Ext-Object-property-getKeys'> /**
</span> * Gets all keys of the given object as an array.
var values = Ext.Object.getKeys({
name: 'Jacky',
loves: 'food'
}); // ['name', 'loves']
* @param {Object} object
* @return {Array} An array of keys from the object
*/
getKeys: ('keys' in Object.prototype) ? Object.keys : function(object) {
var keys = [],
property;
for (property in object) {
if (object.hasOwnProperty(property)) {
keys.push(property);
}
}
return keys;
},
<span id='Ext-Object-method-getSize'> /**
</span> * Gets the total number of this object's own properties
var size = Ext.Object.getSize({
name: 'Jacky',
loves: 'food'
}); // size equals 2
* @param {Object} object
* @return {Number} size
* @markdown
*/
getSize: function(object) {
var size = 0,
property;
for (property in object) {
if (object.hasOwnProperty(property)) {
size++;
}
}
return size;
}
};
<span id='Ext-method-merge'>/**
</span> * A convenient alias method for {@link Ext.Object#merge}
*
* @member Ext
* @method merge
*/
Ext.merge = Ext.Object.merge;
<span id='Ext-method-urlEncode'>/**
</span> * A convenient alias method for {@link Ext.Object#toQueryString}
*
* @member Ext
* @method urlEncode
* @deprecated 4.0.0 Use {@link Ext.Object#toQueryString Ext.Object.toQueryString} instead
*/
Ext.urlEncode = function() {
var args = Ext.Array.from(arguments),
prefix = '';
// Support for the old `pre` argument
if ((typeof args[1] === 'string')) {
prefix = args[1] + '&';
args[1] = false;
}
return prefix + Ext.Object.toQueryString.apply(Ext.Object, args);
};
<span id='Ext-method-urlDecode'>/**
</span> * A convenient alias method for {@link Ext.Object#fromQueryString}
*
* @member Ext
* @method urlDecode
* @deprecated 4.0.0 Use {@link Ext.Object#fromQueryString Ext.Object.fromQueryString} instead
*/
Ext.urlDecode = function() {
return Ext.Object.fromQueryString.apply(Ext.Object, arguments);
};
})();
</pre></pre></body></html>
|
bibryam/lazyplanner
|
webapp/lazyplanner/ext-4.0.0/docs/source/Object.html
|
HTML
|
lgpl-2.1
| 16,876
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link href="assets/ratchet/css/ratchet.css" rel="stylesheet">
<link href="assets/css/pageslider.css" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
</head>
<body>
<script id="home-tpl" type="text/template">
<header class="bar bar-nav">
<h1 class="title">Directory</h1>
</header>
<div class="bar bar-standard bar-header-secondary">
<input class='search-key' type="search"/>
</div>
<div class="content"></div>
</script>
<script id="employee-list-tpl" type="text/template">
<ul class="table-view">
{{#each this}}
<li class="table-view-cell media">
<a href="#employees/{{ id }}">
<img class="media-object pull-left" src="assets/pics/{{pic}}">
<div class="media-body">
{{firstName}} {{lastName}}
<p>{{title}}</p>
</div>
</a>
</li>
{{/each}}
</ul>
</script>
<script id="employee-tpl" type="text/template">
<header class="bar bar-nav">
<a class="btn btn-link btn-nav pull-left" href="#">
<span class="icon icon-left-nav"></span>
</a>
<h1 class="title">Employee</h1>
</header>
<div class="content">
<div class="card">
<ul class="table-view">
<li class="table-view-cell media">
<a hre="#" class="push-right add-location-btn">
<span class="media-object pull-left"></span>
<div class="media-body">
Add location
</div>
</a>
</li>
<li class="table-view-cell media">
<a hre="#" class="push-right change-pic-btn">
<span class="media-object pull-left"></span>
<div class="media-body">
Change Picture
</div>
</a>
</li>
<li class="table-view-cell media">
<a hre="#" class="push-right add-contact-btn">
<span class="media-object pull-left"></span>
<div class="media-body">
Add to contacts
</div>
</a>
</li>
<li class="table-view-cell media">
<img class="media-object pull-left emp-pic" src="assets/pics/{{pic}}">
<div class="media-body">
{{ firstName }} {{ lastName }}
<p>{{ title }}</p>
</div>
</li>
<li class="table-view-cell media">
<a href="tel:{{ officePhone }}" class="push-right">
<span class="media-object pull-left icon icon-call"></span>
<div class="media-body">
Call Office
<p>{{ officePhone }}</p>
</div>
</a>
</li>
<li class="table-view-cell media">
<a href="tel:{{ cellPhone }}" class="push-right">
<span class="media-object pull-left icon icon-call"></span>
<div class="media-body">
Call Cell
<p>{{ cellPhone }}</p>
</div>
</a>
</li>
<li class="table-view-cell media">
<a href="sms:{{ cellPhone }}" class="push-right">
<span class="media-object pull-left icon icon-sms"></span>
<div class="media-body">
SMS
<p>{{ cellPhone }}</p>
</div>
</a>
</li>
<li class="table-view-cell media">
<a href="mailto:{{ email }}" class="push-right">
<span class="media-object pull-left icon icon-mail"></span>
<div class="media-body">
Email
<p>{{ email }}</p>
</div>
</a>
</li>
</ul>
</div>
</div>
</script>
<script src="cordova.js"></script>
<script src="lib/fastclick.js"></script>
<script src="lib/jquery.js"></script>
<script src="lib/handlebars.js"></script>
<script src="lib/router.js"></script>
<script src="lib/pageslider.js"></script>
<script src="js/services/websql/EmployeeService.js"></script>
<script src="js/EmployeeView.js"></script>
<script src="js/EmployeeListView.js"></script>
<script src="js/HomeView.js"></script>
<script src="js/app.js"></script>
</body>
</html>
|
genuinefafa/cordova-workshop
|
www/index.html
|
HTML
|
unlicense
| 4,267
|
<!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_67) on Thu Feb 04 13:28:41 CST 2016 -->
<title>SerializedMessageSerializer</title>
<meta name="date" content="2016-02-04">
<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="SerializedMessageSerializer";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/task/SerializedMessage$.html" title="class in io.gearpump.streaming.task"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/task/SerializerResolver$.html" title="class in io.gearpump.streaming.task"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/task/SerializedMessageSerializer.html" target="_top">Frames</a></li>
<li><a href="SerializedMessageSerializer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">io.gearpump.streaming.task</div>
<h2 title="Class SerializedMessageSerializer" class="title">Class SerializedMessageSerializer</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.task.SerializedMessageSerializer</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task">TaskMessageSerializer</a><<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a>></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">SerializedMessageSerializer</span>
extends java.lang.Object
implements <a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task">TaskMessageSerializer</a><<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a>></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../io/gearpump/streaming/task/SerializedMessageSerializer.html#SerializedMessageSerializer()">SerializedMessageSerializer</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/SerializedMessageSerializer.html#getLength(io.gearpump.streaming.task.SerializedMessage)">getLength</a></strong>(<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a> obj)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a></code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/SerializedMessageSerializer.html#read(java.io.DataInput)">read</a></strong>(java.io.DataInput dataInput)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/SerializedMessageSerializer.html#write(java.io.DataOutput,%20io.gearpump.streaming.task.SerializedMessage)">write</a></strong>(java.io.DataOutput dataOutput,
<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a> obj)</code> </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="SerializedMessageSerializer()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SerializedMessageSerializer</h4>
<pre>public SerializedMessageSerializer()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getLength(io.gearpump.streaming.task.SerializedMessage)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLength</h4>
<pre>public int getLength(<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a> obj)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html#getLength(T)">getLength</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task">TaskMessageSerializer</a><<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a>></code></dd>
</dl>
</li>
</ul>
<a name="write(java.io.DataOutput, io.gearpump.streaming.task.SerializedMessage)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>write</h4>
<pre>public void write(java.io.DataOutput dataOutput,
<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a> obj)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html#write(java.io.DataOutput,%20T)">write</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task">TaskMessageSerializer</a><<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a>></code></dd>
</dl>
</li>
</ul>
<a name="read(java.io.DataInput)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>read</h4>
<pre>public <a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a> read(java.io.DataInput dataInput)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html#read(java.io.DataInput)">read</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task">TaskMessageSerializer</a><<a href="../../../../io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a>></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/task/SerializedMessage$.html" title="class in io.gearpump.streaming.task"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/task/SerializerResolver$.html" title="class in io.gearpump.streaming.task"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/task/SerializedMessageSerializer.html" target="_top">Frames</a></li>
<li><a href="SerializedMessageSerializer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
gearpump/gearpump.github.io
|
releases/0.7.6/api/java/io/gearpump/streaming/task/SerializedMessageSerializer.html
|
HTML
|
apache-2.0
| 12,616
|
<ion-content>
<ion-refresher [enabled]="loaded" (ionRefresh)="refreshData($event)">
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
</ion-refresher>
<core-loading [hideUntil]="loaded" class="core-loading-center">
<ion-list no-margin>
<a ion-item text-wrap *ngFor="let request of requests" [title]="request.fullname" (click)="selectUser(request.id)" [class.core-split-item-selected]="request.id == selectedUserId" class="addon-messages-conversation-item">
<ion-avatar item-start core-user-avatar [user]="request" [linkProfile]="false"></ion-avatar>
<h2>{{ request.fullname }}</h2>
<p *ngIf="!request.iscontact && !request.confirmedOrDeclined">{{ 'addon.messages.wouldliketocontactyou' | translate }}</p>
</a>
</ion-list>
<core-empty-box *ngIf="!requests.length" icon="person" [message]="'addon.messages.nocontactrequests' | translate"></core-empty-box>
<core-infinite-loading [enabled]="canLoadMore" (action)="loadMore($event)" [error]="loadMoreError" position="bottom"></core-infinite-loading>
</core-loading>
</ion-content>
|
FMCorz/moodlemobile2
|
src/addon/messages/components/contact-requests/addon-messages-contact-requests.html
|
HTML
|
apache-2.0
| 1,206
|
<?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" lang="en-us" xml:lang="en-us">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="reference" name="DC.Type" />
<meta name="DC.Title" content="derby.authentication.builtin.algorithm" />
<meta content="derby.authentication.builtin.algorithm, authentication algorithm, configuring, message digest algorithm" name="DC.subject" />
<meta content="derby.authentication.builtin.algorithm, authentication algorithm, configuring, message digest algorithm" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="crefproper22250.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperiterations.html" />
<meta scheme="URI" name="DC.Relation" content="rrefpropersaltlength.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperauthdn.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperauthpw.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper26978.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper37341.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperpasswordmillis.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperpasswordthreshold.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper13766.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper25581.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper27467.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperclasspath.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper24846.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper81405.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper25025.html" />
<meta scheme="URI" name="DC.Relation" content="rrefpropernoautoboot.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper24390.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper39325.html" />
<meta scheme="URI" name="DC.Relation" content="rrefpropersqlauth.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper13217.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperxatrantimeout.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper43414.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper43517.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperpreallocator.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperstatementcachesize.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper10607.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper23835.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper40346.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper98166.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper46141.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperlogbuffersize.html" />
<meta scheme="URI" name="DC.Relation" content="rrefpropermaxlogshippinginterval.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperminlogshippinginterval.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperverbose.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperindexstatsauto.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperindexstatslog.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperindexstatstrace.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper27529.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperstormin.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper81359.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper28026.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper40688.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperrowlocking.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper34037.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperdefaultfileperms.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperextdiagsevlevel.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper33027.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper18151.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperlogboottrace.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper26985.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper35028.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperbootall.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperdurability.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper32066.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproper27355.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperdatadictversion.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rrefproperbuiltinalgorithm" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>derby.authentication.builtin.algorithm</title>
</head>
<body id="rrefproperbuiltinalgorithm"><a name="rrefproperbuiltinalgorithm"><!-- --></a>
<h1 class="topictitle1">derby.authentication.builtin.algorithm</h1>
<div>
<div class="section"><h2 class="sectiontitle">Function</h2>
<p>Specifies the message digest algorithm to use to protect the passwords that
are stored in the database when using NATIVE or BUILTIN authentication. The value is the
name of a message digest algorithm available from one of the Java Cryptography
Extension (JCE) providers registered in the JVM. Some examples of valid values
are MD5, SHA-256, and SHA-512.</p>
<p>The specified algorithm will be applied on the concatenation of the user name
and the password before it is stored in the database.</p>
</div>
<div class="section"><h2 class="sectiontitle">Syntax</h2>
<pre><strong>derby.authentication.builtin.algorithm=<em>algorithm</em></strong></pre>
<p>If the value of <em>algorithm</em> is NULL or an empty string, SHA-1 will be
used on the password only.</p>
</div>
<div class="section"><h2 class="sectiontitle">Default</h2>
<p>For a newly created database, the default value is SHA-256, if that algorithm
is available. If SHA-256 is not available, the default is SHA-1.</p>
</div>
<div class="example"><h2 class="sectiontitle">Example</h2>
<pre><strong><span>-- system-wide property</span>
derby.authentication.builtin.algorithm=SHA-512
<span>-- database-level property</span>
CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(
'derby.authentication.builtin.algorithm', 'SHA-512');</strong></pre>
</div>
<div class="section"><h2 class="sectiontitle">Dynamic or static</h2>
<p>Dynamic; the change takes effect immediately. For information about dynamic
changes to properties, see
<a href="crefproperdynstat.html#crefproperdynstat">Dynamic and static properties</a>.</p>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="crefproper22250.html" title="">Derby properties</a></div>
</div>
<div class="relref"><strong>Related reference</strong><br />
<div><a href="rrefproperiterations.html" title="">derby.authentication.builtin.iterations</a></div>
<div><a href="rrefpropersaltlength.html" title="">derby.authentication.builtin.saltLength</a></div>
<div><a href="rrefproperauthdn.html" title="">derby.authentication.ldap.searchAuthDN</a></div>
<div><a href="rrefproperauthpw.html" title="">derby.authentication.ldap.searchAuthPW</a></div>
<div><a href="rrefproper26978.html" title="">derby.authentication.ldap.searchBase</a></div>
<div><a href="rrefproper37341.html" title="">derby.authentication.ldap.searchFilter</a></div>
<div><a href="rrefproperpasswordmillis.html" title="">derby.authentication.native.passwordLifetimeMillis</a></div>
<div><a href="rrefproperpasswordthreshold.html" title="">derby.authentication.native.passwordLifetimeThreshold</a></div>
<div><a href="rrefproper13766.html" title="">derby.authentication.provider</a></div>
<div><a href="rrefproper25581.html" title="">derby.authentication.server</a></div>
<div><a href="rrefproper27467.html" title="">derby.connection.requireAuthentication</a></div>
<div><a href="rrefproperclasspath.html" title="">derby.database.classpath</a></div>
<div><a href="rrefproper24846.html" title="">derby.database.defaultConnectionMode</a></div>
<div><a href="rrefproper81405.html" title="">derby.database.forceDatabaseLock</a></div>
<div><a href="rrefproper25025.html" title="">derby.database.fullAccessUsers</a></div>
<div><a href="rrefpropernoautoboot.html" title="">derby.database.noAutoBoot</a></div>
<div><a href="rrefproper24390.html" title="">derby.database.propertiesOnly</a></div>
<div><a href="rrefproper39325.html" title="">derby.database.readOnlyAccessUsers</a></div>
<div><a href="rrefpropersqlauth.html" title="">derby.database.sqlAuthorization</a></div>
<div><a href="rrefproper13217.html" title="">derby.infolog.append</a></div>
<div><a href="rrefproperxatrantimeout.html" title="">derby.jdbc.xaTransactionTimeout</a></div>
<div><a href="rrefproper43414.html" title="">derby.language.logQueryPlan</a></div>
<div><a href="rrefproper43517.html" title="">derby.language.logStatementText</a></div>
<div><a href="rrefproperpreallocator.html" title="">derby.language.sequence.preallocator</a></div>
<div><a href="rrefproperstatementcachesize.html" title="">derby.language.statementCacheSize</a></div>
<div><a href="rrefproper10607.html" title="">derby.locks.deadlockTimeout</a></div>
<div><a href="rrefproper23835.html" title="">derby.locks.deadlockTrace</a></div>
<div><a href="rrefproper40346.html" title="">derby.locks.escalationThreshold</a></div>
<div><a href="rrefproper98166.html" title="">derby.locks.monitor</a></div>
<div><a href="rrefproper46141.html" title="">derby.locks.waitTimeout</a></div>
<div><a href="rrefproperlogbuffersize.html" title="">derby.replication.logBufferSize</a></div>
<div><a href="rrefpropermaxlogshippinginterval.html" title="">derby.replication.maxLogShippingInterval</a></div>
<div><a href="rrefproperminlogshippinginterval.html" title="">derby.replication.minLogShippingInterval</a></div>
<div><a href="rrefproperverbose.html" title="">derby.replication.verbose</a></div>
<div><a href="rrefproperindexstatsauto.html" title="">derby.storage.indexStats.auto</a></div>
<div><a href="rrefproperindexstatslog.html" title="">derby.storage.indexStats.log</a></div>
<div><a href="rrefproperindexstatstrace.html" title="">derby.storage.indexStats.trace</a></div>
<div><a href="rrefproper27529.html" title="">derby.storage.initialPages</a></div>
<div><a href="rrefproperstormin.html" title="">derby.storage.minimumRecordSize</a></div>
<div><a href="rrefproper81359.html" title="">derby.storage.pageCacheSize</a></div>
<div><a href="rrefproper28026.html" title="">derby.storage.pageReservedSpace</a></div>
<div><a href="rrefproper40688.html" title="">derby.storage.pageSize</a></div>
<div><a href="rrefproperrowlocking.html" title="">derby.storage.rowLocking</a></div>
<div><a href="rrefproper34037.html" title="">derby.storage.tempDirectory</a></div>
<div><a href="rrefproperdefaultfileperms.html" title="">derby.storage.useDefaultFilePermissions</a></div>
<div><a href="rrefproperextdiagsevlevel.html" title="">derby.stream.error.extendedDiagSeverityLevel</a></div>
<div><a href="rrefproper33027.html" title="">derby.stream.error.field</a></div>
<div><a href="rrefproper18151.html" title="">derby.stream.error.file</a></div>
<div><a href="rrefproperlogboottrace.html" title="">derby.stream.error.logBootTrace</a></div>
<div><a href="rrefproper26985.html" title="">derby.stream.error.logSeverityLevel</a></div>
<div><a href="rrefproper35028.html" title="">derby.stream.error.method</a></div>
<div><a href="rrefproperbootall.html" title="">derby.system.bootAll</a></div>
<div><a href="rrefproperdurability.html" title="">derby.system.durability</a></div>
<div><a href="rrefproper32066.html" title="">derby.system.home</a></div>
<div><a href="rrefproper27355.html" title="">derby.user.UserName</a></div>
<div><a href="rrefproperdatadictversion.html" title="">DataDictionaryVersion</a></div>
</div>
</div>
</body>
</html>
|
Kerensky256/Database
|
docs/html/ref/rrefproperbuiltinalgorithm.html
|
HTML
|
apache-2.0
| 13,651
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template feature_of<tag::weighted_covariance< VariateType, VariateTag >></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="../../accumulators/reference.html#header.boost.accumulators.statistics.covariance_hpp" title="Header <boost/accumulators/statistics/covariance.hpp>">
<link rel="prev" href="as_weighted_fe_idp33211288.html" title="Struct template as_weighted_feature<tag::covariance< VariateType, VariateTag >>">
<link rel="next" href="../numeric/functional/outer_product_base.html" title="Struct template outer_product_base">
</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="as_weighted_fe_idp33211288.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../accumulators/reference.html#header.boost.accumulators.statistics.covariance_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="../numeric/functional/outer_product_base.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.accumulators.feature_of_tag_idp33213064"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template feature_of<tag::weighted_covariance< VariateType, VariateTag >></span></h2>
<p>boost::accumulators::feature_of<tag::weighted_covariance< VariateType, VariateTag >></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="../../accumulators/reference.html#header.boost.accumulators.statistics.covariance_hpp" title="Header <boost/accumulators/statistics/covariance.hpp>">boost/accumulators/statistics/covariance.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> VariateType<span class="special">,</span> <span class="keyword">typename</span> VariateTag<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="feature_of_tag_idp33213064.html" title="Struct template feature_of<tag::weighted_covariance< VariateType, VariateTag >>">feature_of</a><span class="special"><</span><span class="identifier">tag</span><span class="special">::</span><span class="identifier">weighted_covariance</span><span class="special"><</span> <span class="identifier">VariateType</span><span class="special">,</span> <span class="identifier">VariateTag</span> <span class="special">></span><span class="special">></span> <span class="special">:</span> <span class="keyword">public</span> boost::accumulators::feature_of< tag::covariance< VariateType, VariateTag > >
<span class="special">{</span>
<span class="special">}</span><span class="special">;</span></pre></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2005, 2006 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="as_weighted_fe_idp33211288.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../accumulators/reference.html#header.boost.accumulators.statistics.covariance_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="../numeric/functional/outer_product_base.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
NixaSoftware/CVis
|
venv/bin/doc/html/boost/accumulators/feature_of_tag_idp33213064.html
|
HTML
|
apache-2.0
| 5,095
|
<!DOCTYPE html>
<html>
<head>
<script src="../build/react.js"></script> <!--React的核心库-->
<script src="../build/react-dom.js"></script> <!-- 提供与DOM相关的功能 -->
<script src="../build/browser.min.js"></script> <!-- 将JSX语法转化为Javascript语法,很消耗时间,实际上线的时候,应放到服务器完成 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div id="example"></div>
<script type="text/babel" src="test.js">
</script>
</body>
</html>
|
puyanLiu/LPYFramework
|
RN/react-demos-master/demo03/indexTest.html
|
HTML
|
apache-2.0
| 561
|
<!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_27) on Sat Oct 06 03:04:46 EDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.solr.util.VersionedFile (Solr 4.0.0 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-06">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.util.VersionedFile (Solr 4.0.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/solr/util/VersionedFile.html" title="class in org.apache.solr.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/solr/util//class-useVersionedFile.html" target="_top"><B>FRAMES</B></A>
<A HREF="VersionedFile.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.solr.util.VersionedFile</B></H2>
</CENTER>
No usage of org.apache.solr.util.VersionedFile
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/solr/util/VersionedFile.html" title="class in org.apache.solr.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/solr/util//class-useVersionedFile.html" target="_top"><B>FRAMES</B></A>
<A HREF="VersionedFile.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<address>Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.</address>
<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>
</BODY>
</HTML>
|
salvager/apache-solr-4.0.0
|
docs/solr-core/org/apache/solr/util/class-use/VersionedFile.html
|
HTML
|
apache-2.0
| 6,280
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function template none_of</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 Algorithm Library">
<link rel="up" href="../../header/boost/algorithm/cxx11/none_of_hpp.html" title="Header <boost/algorithm/cxx11/none_of.hpp>">
<link rel="prev" href="../../header/boost/algorithm/cxx11/none_of_hpp.html" title="Header <boost/algorithm/cxx11/none_of.hpp>">
<link rel="next" href="none_of_idp13986144.html" title="Function template none_of">
</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="../../header/boost/algorithm/cxx11/none_of_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/algorithm/cxx11/none_of_hpp.html"><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="none_of_idp13986144.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.algorithm.none_of_idp13982592"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template none_of</span></h2>
<p>boost::algorithm::none_of</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="../../header/boost/algorithm/cxx11/none_of_hpp.html" title="Header <boost/algorithm/cxx11/none_of.hpp>">boost/algorithm/cxx11/none_of.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> InputIterator<span class="special">,</span> <span class="keyword">typename</span> Predicate<span class="special">></span>
<span class="keyword">bool</span> <span class="identifier">none_of</span><span class="special">(</span><span class="identifier">InputIterator</span> first<span class="special">,</span> <span class="identifier">InputIterator</span> last<span class="special">,</span> <span class="identifier">Predicate</span> p<span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp10512016"></a><h2>Description</h2>
<p>
</p>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>returns true on an empty range</p></td></tr>
</table></div>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><code class="computeroutput">first</code></span></p></td>
<td><p>The start of the input sequence </p></td>
</tr>
<tr>
<td><p><span class="term"><code class="computeroutput">last</code></span></p></td>
<td><p>One past the end of the input sequence </p></td>
</tr>
<tr>
<td><p><span class="term"><code class="computeroutput">p</code></span></p></td>
<td><p>A predicate for testing the elements of the sequence </p></td>
</tr>
</tbody>
</table></div></td>
</tr>
<tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>true if none of the elements in [first, last) satisfy the predicate 'p' </p></td>
</tr>
</tbody>
</table></div>
</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 © 2010-2012 Marshall Clow<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="../../header/boost/algorithm/cxx11/none_of_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/algorithm/cxx11/none_of_hpp.html"><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="none_of_idp13986144.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
ryancoleman/autodock-vina
|
boost_1_54_0/libs/algorithm/doc/html/boost/algorithm/none_of_idp13982592.html
|
HTML
|
apache-2.0
| 5,685
|
<!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_67) on Thu Feb 04 13:28:42 CST 2016 -->
<title>DataSourceTask</title>
<meta name="date" content="2016-02-04">
<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="DataSourceTask";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/source/DataSourceProcessor$.html" title="class in io.gearpump.streaming.source"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/source/DataSourceTask$.html" title="class in io.gearpump.streaming.source"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/source/DataSourceTask.html" target="_top">Frames</a></li>
<li><a href="DataSourceTask.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">io.gearpump.streaming.source</div>
<h2 title="Class DataSourceTask" class="title">Class DataSourceTask</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">io.gearpump.streaming.task.Task</a></li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.source.DataSourceTask</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../io/gearpump/streaming/task/TaskInterface.html" title="interface in io.gearpump.streaming.task">TaskInterface</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">DataSourceTask</span>
extends <a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></pre>
<div class="block">general task that runs any <a href="../../../../io/gearpump/streaming/source/DataSource.html" title="interface in io.gearpump.streaming.source"><code>DataSource</code></a>
see <a href="../../../../io/gearpump/streaming/source/DataSourceProcessor.html" title="class in io.gearpump.streaming.source"><code>DataSourceProcessor</code></a> for its usage
<p>
DataSourceTask calls
- <code>DataSource.open</code> in <code>onStart</code> and pass in <a href="../../../../io/gearpump/streaming/task/TaskContext.html" title="interface in io.gearpump.streaming.task"><code>TaskContext</code></a> and application start time
- <code>DataSource.read</code> in each <code>onNext</code>, which reads a batch of messages whose size are defined by
<code>gearpump.source.read.batch.size</code>.
- <code>DataSource.close</code> in <code>onStop</code></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../io/gearpump/streaming/source/DataSourceTask.html#DataSourceTask(io.gearpump.streaming.task.TaskContext,%20io.gearpump.cluster.UserConfig)">DataSourceTask</a></strong>(<a href="../../../../io/gearpump/streaming/task/TaskContext.html" title="interface in io.gearpump.streaming.task">TaskContext</a> context,
io.gearpump.cluster.UserConfig conf)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/source/DataSourceTask.html#DATA_SOURCE()">DATA_SOURCE</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/source/DataSourceTask.html#onNext(io.gearpump.Message)">onNext</a></strong>(io.gearpump.Message message)</code>
<div class="block">Method called for each message received.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/source/DataSourceTask.html#onStart(io.gearpump.streaming.task.StartTime)">onStart</a></strong>(<a href="../../../../io/gearpump/streaming/task/StartTime.html" title="class in io.gearpump.streaming.task">StartTime</a> newStartTime)</code>
<div class="block">Method called with the task is initialized.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/source/DataSourceTask.html#onStop()">onStop</a></strong>()</code>
<div class="block">Method called when task is under clean up.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_io.gearpump.streaming.task.Task">
<!-- -->
</a>
<h3>Methods inherited from class io.gearpump.streaming.task.<a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></h3>
<code><a href="../../../../io/gearpump/streaming/task/Task.html#LOG()">LOG</a>, <a href="../../../../io/gearpump/streaming/task/Task.html#receiveUnManagedMessage()">receiveUnManagedMessage</a>, <a href="../../../../io/gearpump/streaming/task/Task.html#self()">self</a>, <a href="../../../../io/gearpump/streaming/task/Task.html#sender()">sender</a>, <a href="../../../../io/gearpump/streaming/task/Task.html#system()">system</a></code></li>
</ul>
<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="DataSourceTask(io.gearpump.streaming.task.TaskContext, io.gearpump.cluster.UserConfig)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DataSourceTask</h4>
<pre>public DataSourceTask(<a href="../../../../io/gearpump/streaming/task/TaskContext.html" title="interface in io.gearpump.streaming.task">TaskContext</a> context,
io.gearpump.cluster.UserConfig conf)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="DATA_SOURCE()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DATA_SOURCE</h4>
<pre>public static java.lang.String DATA_SOURCE()</pre>
</li>
</ul>
<a name="onStart(io.gearpump.streaming.task.StartTime)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onStart</h4>
<pre>public void onStart(<a href="../../../../io/gearpump/streaming/task/StartTime.html" title="class in io.gearpump.streaming.task">StartTime</a> newStartTime)</pre>
<div class="block"><strong>Description copied from interface: <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onStart(io.gearpump.streaming.task.StartTime)">TaskInterface</a></code></strong></div>
<div class="block">Method called with the task is initialized.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onStart(io.gearpump.streaming.task.StartTime)">onStart</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html" title="interface in io.gearpump.streaming.task">TaskInterface</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/Task.html#onStart(io.gearpump.streaming.task.StartTime)">onStart</a></code> in class <code><a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>newStartTime</code> - startTime that can be used to decide from when a source producer task should replay the data source, or from when a processor task should recover its checkpoint data in to in-memory state.</dd></dl>
</li>
</ul>
<a name="onNext(io.gearpump.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onNext</h4>
<pre>public void onNext(io.gearpump.Message message)</pre>
<div class="block"><strong>Description copied from interface: <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onNext(io.gearpump.Message)">TaskInterface</a></code></strong></div>
<div class="block">Method called for each message received.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onNext(io.gearpump.Message)">onNext</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html" title="interface in io.gearpump.streaming.task">TaskInterface</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/Task.html#onNext(io.gearpump.Message)">onNext</a></code> in class <code><a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - message send by upstream tasks</dd></dl>
</li>
</ul>
<a name="onStop()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>onStop</h4>
<pre>public void onStop()</pre>
<div class="block"><strong>Description copied from interface: <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onStop()">TaskInterface</a></code></strong></div>
<div class="block">Method called when task is under clean up.
This can be used to cleanup resource when the application finished.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html#onStop()">onStop</a></code> in interface <code><a href="../../../../io/gearpump/streaming/task/TaskInterface.html" title="interface in io.gearpump.streaming.task">TaskInterface</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../io/gearpump/streaming/task/Task.html#onStop()">onStop</a></code> in class <code><a href="../../../../io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/source/DataSourceProcessor$.html" title="class in io.gearpump.streaming.source"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/source/DataSourceTask$.html" title="class in io.gearpump.streaming.source"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/source/DataSourceTask.html" target="_top">Frames</a></li>
<li><a href="DataSourceTask.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
gearpump/gearpump.github.io
|
releases/0.7.6/api/java/io/gearpump/streaming/source/DataSourceTask.html
|
HTML
|
apache-2.0
| 15,916
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Wed Mar 30 21:34:44 CST 2011 -->
<TITLE>
Uses of Class org.apache.hadoop.examples.dancing.DistributedPentomino (Facebook's realtime distributed database, powered by Apache Hadoop based on 0.20-append branch 0.20.1-dev API)
</TITLE>
<META NAME="date" CONTENT="2011-03-30">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.examples.dancing.DistributedPentomino (Facebook's realtime distributed database, powered by Apache Hadoop based on 0.20-append branch 0.20.1-dev API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/examples/dancing/DistributedPentomino.html" title="class in org.apache.hadoop.examples.dancing"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/examples/dancing//class-useDistributedPentomino.html" target="_top"><B>FRAMES</B></A>
<A HREF="DistributedPentomino.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.examples.dancing.DistributedPentomino</B></H2>
</CENTER>
No usage of org.apache.hadoop.examples.dancing.DistributedPentomino
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/examples/dancing/DistributedPentomino.html" title="class in org.apache.hadoop.examples.dancing"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/examples/dancing//class-useDistributedPentomino.html" target="_top"><B>FRAMES</B></A>
<A HREF="DistributedPentomino.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
This release is based on the Facebook's version of Hadoop.<br>Copyright © 2009 The Apache Software Foundation.
</BODY>
</HTML>
|
submergerock/avatar-hadoop
|
docs/api/org/apache/hadoop/examples/dancing/class-use/DistributedPentomino.html
|
HTML
|
apache-2.0
| 6,464
|
{%- macro commentBlock(doc, level) -%}
{%- if doc.content | trim %}
{% if level > 1 %}{$ '/**' | indent(level-1, true) | replace(r/\n$/, "") $}{% else %}/**{% endif %}
{$ doc.content | trim | replace(r/^/gm, "* ") | indent(level, true) | replace(r/\n$/, "") $}
{$ '*/' | indent(level, true) | replace(r/\n$/, "") $}{% endif -%}
{%- endmacro -%}
{%- macro memberInfo(member) -%}
{$ commentBlock(member, 5) $}
{$ member.name $}{% if member.optional %}?{% endif -%}
{% if member.typeParameters %}<{% for typeParam in member.typeParameters %}{$ typeParam $}{% if not loop.last %}, {% endif %}{% endfor %}>{% endif -%}
{%- if member.parameters -%}({% for param in member.parameters %}{$ param $}{% if not loop.last %}, {% endif %}{% endfor %}){%- endif -%}
{%- if member.returnType == 'Directive' %}: DirectiveAnnotation{%- elif member.returnType -%}: {$ member.returnType $}{%- else -%}: void
{%- endif -%};
{%- endmacro -%}
// Type definitions for Angular v{$ versionInfo.currentVersion.full | replace(r/\+/, "_") $}
// Project: http://angular.io/
// Definitions by: angular team <https://github.com/angular/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
// ***********************************************************
// This file is generated by the Angular build process.
// Please do not create manual edits or send pull requests
// modifying this file.
// ***********************************************************
{% block staticDeclarations %}{% endblock %}
{% for alias, module in doc.moduleDocs %}
{$ commentBlock(module.doc, 1) $}
declare module ng {
{%- for export in module.doc.exports -%}
{%- if export.content -%}
{$ commentBlock(export, 3) $}
{%- endif %}
{$ export.docType $} {$ export.name $}{$ export.typeParams $}{%- if export.heritage == ' extends Directive' %} extends DirectiveAnnotation{% else %}{$ export.heritage $}{% endif %}
{%- if export.docType == 'class' or export.docType == 'interface' %} {
{%- if export.newMember %}
{$ memberInfo(export.newMember) $}
{% endif %}
{%- if export.callMember %}
{$ memberInfo(export.callMember) $}
{% endif -%}
{%- for member in export.members %}
{$ memberInfo(member) $}
{%- endfor %}
}
{%- elif export.docType == 'enum' %} {
{%- for member in export.members %}
{$ member $}{% if not loop.last %},
{%- endif -%}
{%- endfor %}
}
{%- else -%}
{% if export.parameters %}({% for param in export.parameters %}{$ param $}{% if not loop.last %}, {% endif %}{% endfor %}){%- endif %}
{%- if export.returnType %} : {$ export.returnType $} {% endif -%}
;
{%- endif %}
{% endfor %}
}
declare module "{$ alias $}" {
export = ng;
}
{% endfor %}
|
pedroha/angular
|
docs/typescript-definition-package/templates/type-definition.template.html
|
HTML
|
apache-2.0
| 2,708
|
<!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=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<style type="text/css">
body{
font-family: 'neristhin_italic';
}
</style>
<title>Neris Thin Italic Specimen</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#container').easyTabs({defaultContent:1});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
Neris Thin Italic </div>
<ul class="tabs">
<li><a href="#specimen">Specimen</a></li>
<li><a href="#layout">Sample Layout</a></li>
<li><a href="#installing">Installing Webfonts</a></li>
</ul>
<div id="main_content">
<div id="specimen">
<div class="section">
<div class="grid12 firstcol">
<div class="huge">AaBb</div>
</div>
</div>
<div class="section">
<div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div>
</div>
<div class="section">
<div class="grid12 firstcol">
<table class="sample_table">
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
</table>
</div>
</div>
<div class="section" id="bodycomparison">
<div id="xheight">
<div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
<div class="fontbody" style="z-index:1">
body<span>Neris Thin Italic</span>
</div>
<div class="arialbody" style="z-index:1">
body<span>Arial</span>
</div>
<div class="verdanabody" style="z-index:1">
body<span>Verdana</span>
</div>
<div class="georgiabody" style="z-index:1">
body<span>Georgia</span>
</div>
</div>
<div class="section psample psample_row1" id="">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row2" id="">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row4" id="">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="white_blend"></div>
</div>
<div class="section psample psample_row1 fullreverse">
<div class="grid2 firstcol">
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid3">
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample psample_row2 fullreverse">
<div class="grid3 firstcol">
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid4">
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid5">
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row3" id="">
<div class="grid5 firstcol">
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="grid7">
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
<div class="grid12 firstcol">
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<div class="black_blend"></div>
</div>
</div>
<div id="layout">
<div class="section">
<div class="grid12 firstcol">
<h1>Lorem Ipsum Dolor</h1>
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
</div>
</div>
<div class="section">
<div class="grid8 firstcol">
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<h3>Pellentesque ornare sem</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
<h3>Cras mattis consectetur</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
</div>
<div class="grid4 sidebar">
<div class="box reverse">
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
<p class="caption">Maecenas sed diam eget risus varius.</p>
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
</div>
</div>
</div>
<div id="specs">
</div>
<div id="installing">
<div class="section">
<div class="grid7 firstcol">
<h1>Installing Webfonts</h1>
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
<h2>1. Upload your webfonts</h2>
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
<h2>2. Include the webfont stylesheet</h2>
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
<code>
@font-face{
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?iefix') format('eot'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
</code>
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
<code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code>
<h2>3. Modify your own stylesheet</h2>
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
<code>p { font-family: 'MyWebFont', Arial, sans-serif; }</code>
<h2>4. Test</h2>
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
</div>
<div class="grid5 sidebar">
<div class="box">
<h2>Troubleshooting<br />Font-Face Problems</h2>
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
<h3>Fonts not showing in any browser</h3>
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
<h3>Fonts not loading in iPhone or iPad</h3>
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
<h3>Fonts not loading in Firefox</h3>
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
<h3>Fonts not loading in IE</h3>
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
<h3>Fonts not loading in IE9</h3>
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>©2010-2011 Fontspring. All rights reserved.</p>
</div>
</div>
</body>
</html>
|
ConceptHaus/Maniac
|
fonts/neris_thinitalic_macroman/Neris-ThinItalic-demo.html
|
HTML
|
apache-2.0
| 24,077
|
<?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" lang="en-us" xml:lang="en-us">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="reference" name="DC.Type" />
<meta name="DC.Title" content="SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE system function" />
<meta name="abstract" content="The SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE function allows users to observe the instantaneous current value of a sequence generator without having to query the SYSSEQUENCES system table." />
<meta name="description" content="The SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE function allows users to observe the instantaneous current value of a sequence generator without having to query the SYSSEQUENCES system table." />
<meta scheme="URI" name="DC.Relation" content="rrefsqljcreatesequence.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqljdropsequence.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabssyssequences.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperpreallocator.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqljcreatesequence.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqljdropsequence.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsistabssyssequences.html" />
<meta scheme="URI" name="DC.Relation" content="rrefproperpreallocator.html" />
<meta scheme="URI" name="DC.Relation" content="crefsqlbuiltinsystemfunctions.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rrefsyscspeeksequence" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE system function</title>
</head>
<body id="rrefsyscspeeksequence"><a name="rrefsyscspeeksequence"><!-- --></a>
<h1 class="topictitle1">SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE system function</h1>
<div><p>The <samp class="codeph">SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE</samp> function
allows users to observe the instantaneous current value of a sequence generator
without having to query the SYSSEQUENCES system table.</p>
<div class="section"><p>Querying the
<a href="rrefsistabssyssequences.html#rrefsistabssyssequences">SYSSEQUENCES system table</a> does
not actually return the current value; it only returns an upper bound on that
value, that is, the end of the chunk of sequence values which has been
preallocated but not actually used. The
<samp class="codeph">SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE</samp> function shows you the very
next value which will be returned by a NEXT VALUE FOR clause. Users should never
directly query the SYSSEQUENCES table, because that will cause sequence
generator concurrency to slow drastically.</p>
</div>
<div class="section"><h2 class="sectiontitle">Syntax</h2>
<pre>BIGINT SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE(IN SCHEMANAME VARCHAR(128),
IN SEQUENCENAME VARCHAR(128))</pre>
<p>As with all system functions, schema and object name arguments are
case-sensitive.</p>
</div>
<div class="section"><h2 class="sectiontitle">Execute privileges</h2>
<p>By default, all users have execute privileges on this function.</p>
</div>
<div class="example"><h2 class="sectiontitle">Example</h2>
<pre>VALUES SYSCS_UTIL.SYSCS_PEEK_AT_SEQUENCE('APP', 'order_entry_id');</pre>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="crefsqlbuiltinsystemfunctions.html" title="">Built-in system functions</a></div>
</div>
<div class="relref"><strong>Related reference</strong><br />
<div><a href="rrefsqljcreatesequence.html" title="">CREATE SEQUENCE statement</a></div>
<div><a href="rrefsqljdropsequence.html" title="">DROP SEQUENCE statement</a></div>
<div><a href="rrefsistabssyssequences.html" title="The SYSSEQUENCES table describes the sequence generators in the database.">SYSSEQUENCES system table</a></div>
<div><a href="rrefproperpreallocator.html" title="">derby.language.sequence.preallocator</a></div>
</div>
</div>
</body>
</html>
|
Kerensky256/Database
|
docs/html/ref/rrefsyscspeeksequence.html
|
HTML
|
apache-2.0
| 5,419
|
<!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.6.0_36) on Wed Jan 13 23:44:27 CST 2016 -->
<title>InitialAckRequest</title>
<meta name="date" content="2016-01-13">
<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="InitialAckRequest";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/task/GetUpstreamMinClock$.html" title="class in io.gearpump.streaming.task"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../io/gearpump/streaming/task/InitialAckRequest$.html" title="class in io.gearpump.streaming.task"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/task/InitialAckRequest.html" target="_top">FRAMES</a></li>
<li><a href="InitialAckRequest.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<p class="subTitle">io.gearpump.streaming.task</p>
<h2 title="Class InitialAckRequest" class="title">Class InitialAckRequest</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.task.InitialAckRequest</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, scala.Equals, scala.Product</dd>
</dl>
<hr>
<br>
<pre>public class <strong>InitialAckRequest</strong>
extends java.lang.Object
implements scala.Product, scala.Serializable</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../serialized-form.html#io.gearpump.streaming.task.InitialAckRequest">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../io/gearpump/streaming/task/InitialAckRequest.html#InitialAckRequest(io.gearpump.streaming.task.TaskId, int)">InitialAckRequest</a></strong>(<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId,
int sessionId)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/InitialAckRequest.html#sessionId()">sessionId</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a></code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/InitialAckRequest.html#taskId()">taskId</a></strong>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Product">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Product</h3>
<code>productArity, productElement, productIterator, productPrefix</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Equals">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Equals</h3>
<code>canEqual, equals</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="InitialAckRequest(io.gearpump.streaming.task.TaskId, int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>InitialAckRequest</h4>
<pre>public InitialAckRequest(<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId,
int sessionId)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="taskId()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>taskId</h4>
<pre>public <a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId()</pre>
</li>
</ul>
<a name="sessionId()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>sessionId</h4>
<pre>public int sessionId()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/task/GetUpstreamMinClock$.html" title="class in io.gearpump.streaming.task"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../io/gearpump/streaming/task/InitialAckRequest$.html" title="class in io.gearpump.streaming.task"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/task/InitialAckRequest.html" target="_top">FRAMES</a></li>
<li><a href="InitialAckRequest.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
gearpump/gearpump.github.io
|
releases/0.7.4/api/java/io/gearpump/streaming/task/InitialAckRequest.html
|
HTML
|
apache-2.0
| 10,024
|
<!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_45) on Thu Nov 13 21:21:58 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.hadoop.conf (Apache Hadoop Main 2.6.0 API)
</TITLE>
<META NAME="date" CONTENT="2014-11-13">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../../org/apache/hadoop/conf/package-summary.html" target="classFrame">org.apache.hadoop.conf</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Interfaces</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="Configurable.html" title="interface in org.apache.hadoop.conf" target="classFrame"><I>Configurable</I></A></FONT></TD>
</TR>
</TABLE>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="Configuration.html" title="class in org.apache.hadoop.conf" target="classFrame">Configuration</A>
<BR>
<A HREF="Configured.html" title="class in org.apache.hadoop.conf" target="classFrame">Configured</A>
<BR>
<A HREF="ReconfigurationTaskStatus.html" title="class in org.apache.hadoop.conf" target="classFrame">ReconfigurationTaskStatus</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
SAT-Hadoop/hadoop-2.6.0
|
share/doc/hadoop/api/org/apache/hadoop/conf/package-frame.html
|
HTML
|
apache-2.0
| 1,529
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:23 EDT 2015 -->
<title>StreamManager (apache-cassandra API)</title>
<meta name="date" content="2015-08-28">
<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="StreamManager (apache-cassandra API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StreamManager.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-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="../../../../org/apache/cassandra/streaming/StreamLockfile.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/streaming/StreamManager.StreamRateLimiter.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/streaming/StreamManager.html" target="_top">Frames</a></li>
<li><a href="StreamManager.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.class.summary">Nested</a> | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.cassandra.streaming</div>
<h2 title="Class StreamManager" class="title">Class StreamManager</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.streaming.StreamManager</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>javax.management.NotificationBroadcaster, javax.management.NotificationEmitter, <a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html" title="interface in org.apache.cassandra.streaming">StreamManagerMBean</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">StreamManager</span>
extends java.lang.Object
implements <a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html" title="interface in org.apache.cassandra.streaming">StreamManagerMBean</a></pre>
<div class="block">StreamManager manages currently running <a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming"><code>StreamResultFuture</code></a>s and provides status of all operation invoked.
All stream operation should be created through this class to track streaming status and progress.</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>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.StreamRateLimiter.html" title="class in org.apache.cassandra.streaming">StreamManager.StreamRateLimiter</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/streaming/StreamManager.html" title="class in org.apache.cassandra.streaming">StreamManager</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#instance">instance</a></span></code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.org.apache.cassandra.streaming.StreamManagerMBean">
<!-- -->
</a>
<h3>Fields inherited from interface org.apache.cassandra.streaming.<a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html" title="interface in org.apache.cassandra.streaming">StreamManagerMBean</a></h3>
<code><a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html#OBJECT_NAME">OBJECT_NAME</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="../../../../org/apache/cassandra/streaming/StreamManager.html#StreamManager--">StreamManager</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="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></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>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#addNotificationListener-javax.management.NotificationListener-javax.management.NotificationFilter-java.lang.Object-">addNotificationListener</a></span>(javax.management.NotificationListener listener,
javax.management.NotificationFilter filter,
java.lang.Object handback)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.util.Set<javax.management.openmbean.CompositeData></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#getCurrentStreams--">getCurrentStreams</a></span>()</code>
<div class="block">Returns the current state of all ongoing streams.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>javax.management.MBeanNotificationInfo[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#getNotificationInfo--">getNotificationInfo</a></span>()</code> </td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/streaming/StreamManager.StreamRateLimiter.html" title="class in org.apache.cassandra.streaming">StreamManager.StreamRateLimiter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#getRateLimiter-java.net.InetAddress-">getRateLimiter</a></span>(java.net.InetAddress peer)</code>
<div class="block">Gets streaming rate limiter.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#getReceivingStream-java.util.UUID-">getReceivingStream</a></span>(java.util.UUID planId)</code> </td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#register-org.apache.cassandra.streaming.StreamResultFuture-">register</a></span>(<a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a> result)</code> </td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#registerReceiving-org.apache.cassandra.streaming.StreamResultFuture-">registerReceiving</a></span>(<a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a> result)</code> </td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#removeNotificationListener-javax.management.NotificationListener-">removeNotificationListener</a></span>(javax.management.NotificationListener listener)</code> </td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamManager.html#removeNotificationListener-javax.management.NotificationListener-javax.management.NotificationFilter-java.lang.Object-">removeNotificationListener</a></span>(javax.management.NotificationListener listener,
javax.management.NotificationFilter filter,
java.lang.Object handback)</code> </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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="instance">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>instance</h4>
<pre>public static final <a href="../../../../org/apache/cassandra/streaming/StreamManager.html" title="class in org.apache.cassandra.streaming">StreamManager</a> instance</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="StreamManager--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>StreamManager</h4>
<pre>public StreamManager()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getRateLimiter-java.net.InetAddress-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRateLimiter</h4>
<pre>public static <a href="../../../../org/apache/cassandra/streaming/StreamManager.StreamRateLimiter.html" title="class in org.apache.cassandra.streaming">StreamManager.StreamRateLimiter</a> getRateLimiter(java.net.InetAddress peer)</pre>
<div class="block">Gets streaming rate limiter.
When stream_throughput_outbound_megabits_per_sec is 0, this returns rate limiter
with the rate of Double.MAX_VALUE bytes per second.
Rate unit is bytes per sec.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>StreamRateLimiter with rate limit set based on peer location.</dd>
</dl>
</li>
</ul>
<a name="getCurrentStreams--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCurrentStreams</h4>
<pre>public java.util.Set<javax.management.openmbean.CompositeData> getCurrentStreams()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html#getCurrentStreams--">StreamManagerMBean</a></code></span></div>
<div class="block">Returns the current state of all ongoing streams.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html#getCurrentStreams--">getCurrentStreams</a></code> in interface <code><a href="../../../../org/apache/cassandra/streaming/StreamManagerMBean.html" title="interface in org.apache.cassandra.streaming">StreamManagerMBean</a></code></dd>
</dl>
</li>
</ul>
<a name="register-org.apache.cassandra.streaming.StreamResultFuture-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>register</h4>
<pre>public void register(<a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a> result)</pre>
</li>
</ul>
<a name="registerReceiving-org.apache.cassandra.streaming.StreamResultFuture-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerReceiving</h4>
<pre>public void registerReceiving(<a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a> result)</pre>
</li>
</ul>
<a name="getReceivingStream-java.util.UUID-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getReceivingStream</h4>
<pre>public <a href="../../../../org/apache/cassandra/streaming/StreamResultFuture.html" title="class in org.apache.cassandra.streaming">StreamResultFuture</a> getReceivingStream(java.util.UUID planId)</pre>
</li>
</ul>
<a name="addNotificationListener-javax.management.NotificationListener-javax.management.NotificationFilter-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addNotificationListener</h4>
<pre>public void addNotificationListener(javax.management.NotificationListener listener,
javax.management.NotificationFilter filter,
java.lang.Object handback)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>addNotificationListener</code> in interface <code>javax.management.NotificationBroadcaster</code></dd>
</dl>
</li>
</ul>
<a name="removeNotificationListener-javax.management.NotificationListener-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeNotificationListener</h4>
<pre>public void removeNotificationListener(javax.management.NotificationListener listener)
throws javax.management.ListenerNotFoundException</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>removeNotificationListener</code> in interface <code>javax.management.NotificationBroadcaster</code></dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>javax.management.ListenerNotFoundException</code></dd>
</dl>
</li>
</ul>
<a name="removeNotificationListener-javax.management.NotificationListener-javax.management.NotificationFilter-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeNotificationListener</h4>
<pre>public void removeNotificationListener(javax.management.NotificationListener listener,
javax.management.NotificationFilter filter,
java.lang.Object handback)
throws javax.management.ListenerNotFoundException</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>removeNotificationListener</code> in interface <code>javax.management.NotificationEmitter</code></dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>javax.management.ListenerNotFoundException</code></dd>
</dl>
</li>
</ul>
<a name="getNotificationInfo--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getNotificationInfo</h4>
<pre>public javax.management.MBeanNotificationInfo[] getNotificationInfo()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getNotificationInfo</code> in interface <code>javax.management.NotificationBroadcaster</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StreamManager.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-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="../../../../org/apache/cassandra/streaming/StreamLockfile.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/streaming/StreamManager.StreamRateLimiter.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/streaming/StreamManager.html" target="_top">Frames</a></li>
<li><a href="StreamManager.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.class.summary">Nested</a> | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2015 The Apache Software Foundation</small></p>
</body>
</html>
|
mitch-kyle/message-board
|
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/streaming/StreamManager.html
|
HTML
|
apache-2.0
| 22,699
|
{% extends "deployment_base_left_sidebar.html" %}
|
superfluidity/RDCL3D
|
code/deploymenthandler/template/srv6_net_prog/srv6_net_prog_deployment_left_sidebar.html
|
HTML
|
apache-2.0
| 49
|
<!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.6.0_36) on Sat Jan 23 15:54:23 CST 2016 -->
<title>All Classes</title>
<meta name="date" content="2016-01-23">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar">All Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="io/gearpump/streaming/task/Ack.html" title="class in io.gearpump.streaming.task">Ack</a></li>
<li><a href="io/gearpump/streaming/task/Ack$.html" title="class in io.gearpump.streaming.task">Ack$</a></li>
<li><a href="io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task">AckRequest</a></li>
<li><a href="io/gearpump/streaming/task/AckRequest$.html" title="class in io.gearpump.streaming.task">AckRequest$</a></li>
<li><a href="io/gearpump/streaming/AckRequestSerializer.html" title="class in io.gearpump.streaming">AckRequestSerializer</a></li>
<li><a href="io/gearpump/streaming/AckSerializer.html" title="class in io.gearpump.streaming">AckSerializer</a></li>
<li><a href="io/gearpump/streaming/util/ActorPathUtil.html" title="class in io.gearpump.streaming.util">ActorPathUtil</a></li>
<li><a href="io/gearpump/streaming/util/ActorPathUtil$.html" title="class in io.gearpump.streaming.util">ActorPathUtil$</a></li>
<li><a href="io/gearpump/streaming/storage/AppDataStore.html" title="interface in io.gearpump.streaming.storage"><i>AppDataStore</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.html" title="class in io.gearpump.streaming.appmaster">AppMaster</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster$.html" title="class in io.gearpump.streaming.appmaster">AppMaster$</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.AllocateResourceTimeOut$.html" title="class in io.gearpump.streaming.appmaster">AppMaster.AllocateResourceTimeOut$</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.ExecutorBrief.html" title="class in io.gearpump.streaming.appmaster">AppMaster.ExecutorBrief</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.ExecutorBrief$.html" title="class in io.gearpump.streaming.appmaster">AppMaster.ExecutorBrief$</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.LookupTaskActorRef.html" title="class in io.gearpump.streaming.appmaster">AppMaster.LookupTaskActorRef</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.LookupTaskActorRef$.html" title="class in io.gearpump.streaming.appmaster">AppMaster.LookupTaskActorRef$</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.ServiceNotAvailableException.html" title="class in io.gearpump.streaming.appmaster">AppMaster.ServiceNotAvailableException</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.TaskActorRef.html" title="class in io.gearpump.streaming.appmaster">AppMaster.TaskActorRef</a></li>
<li><a href="io/gearpump/streaming/appmaster/AppMaster.TaskActorRef$.html" title="class in io.gearpump.streaming.appmaster">AppMaster.TaskActorRef$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.html" title="class in io.gearpump.streaming">AppMasterToExecutor</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor$.html" title="class in io.gearpump.streaming">AppMasterToExecutor$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.ChangeTask.html" title="class in io.gearpump.streaming">AppMasterToExecutor.ChangeTask</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.ChangeTask$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.ChangeTask$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.ChangeTasks.html" title="class in io.gearpump.streaming">AppMasterToExecutor.ChangeTasks</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.ChangeTasks$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.ChangeTasks$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.LaunchTasks.html" title="class in io.gearpump.streaming">AppMasterToExecutor.LaunchTasks</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.LaunchTasks$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.LaunchTasks$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.MsgLostException.html" title="class in io.gearpump.streaming">AppMasterToExecutor.MsgLostException</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.RestartClockService$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.RestartClockService$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartAllTasks.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartAllTasks</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartAllTasks$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartAllTasks$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartDynamicDag.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartDynamicDag</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartDynamicDag$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartDynamicDag$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartTask.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartTask</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.StartTask$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.StartTask$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskChanged.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskChanged</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskChanged$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskChanged$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsReady.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsReady</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsReady$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsReady$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsReceived.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsReceived</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsReceived$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsReceived$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsRejected.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsRejected</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskLocationsRejected$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskLocationsRejected$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskRegistered.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskRegistered</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskRegistered$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskRegistered$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskRejected.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskRejected</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TaskRejected$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TaskRejected$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TasksChanged.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TasksChanged</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TasksChanged$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TasksChanged$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToExecutor.TasksLaunched$.html" title="class in io.gearpump.streaming">AppMasterToExecutor.TasksLaunched$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToMaster.html" title="class in io.gearpump.streaming">AppMasterToMaster</a></li>
<li><a href="io/gearpump/streaming/AppMasterToMaster$.html" title="class in io.gearpump.streaming">AppMasterToMaster$</a></li>
<li><a href="io/gearpump/streaming/AppMasterToMaster.StallingTasks.html" title="class in io.gearpump.streaming">AppMasterToMaster.StallingTasks</a></li>
<li><a href="io/gearpump/streaming/AppMasterToMaster.StallingTasks$.html" title="class in io.gearpump.streaming">AppMasterToMaster.StallingTasks$</a></li>
<li><a href="io/gearpump/streaming/task/CheckpointClock.html" title="class in io.gearpump.streaming.task">CheckpointClock</a></li>
<li><a href="io/gearpump/streaming/task/CheckpointClock$.html" title="class in io.gearpump.streaming.task">CheckpointClock$</a></li>
<li><a href="io/gearpump/streaming/state/impl/CheckpointManager.html" title="class in io.gearpump.streaming.state.impl">CheckpointManager</a></li>
<li><a href="io/gearpump/streaming/transaction/api/CheckpointStore.html" title="interface in io.gearpump.streaming.transaction.api"><i>CheckpointStore</i></a></li>
<li><a href="io/gearpump/streaming/transaction/api/CheckpointStoreFactory.html" title="interface in io.gearpump.streaming.transaction.api"><i>CheckpointStoreFactory</i></a></li>
<li><a href="io/gearpump/streaming/task/ClockEvent.html" title="interface in io.gearpump.streaming.task"><i>ClockEvent</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.html" title="class in io.gearpump.streaming.appmaster">ClockService</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService$.html" title="class in io.gearpump.streaming.appmaster">ClockService$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ChangeToNewDAG.html" title="class in io.gearpump.streaming.appmaster">ClockService.ChangeToNewDAG</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ChangeToNewDAG$.html" title="class in io.gearpump.streaming.appmaster">ClockService.ChangeToNewDAG$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ChangeToNewDAGSuccess.html" title="class in io.gearpump.streaming.appmaster">ClockService.ChangeToNewDAGSuccess</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ChangeToNewDAGSuccess$.html" title="class in io.gearpump.streaming.appmaster">ClockService.ChangeToNewDAGSuccess$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.HealthCheck$.html" title="class in io.gearpump.streaming.appmaster">ClockService.HealthCheck$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.HealthChecker.html" title="class in io.gearpump.streaming.appmaster">ClockService.HealthChecker</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.HealthChecker$.html" title="class in io.gearpump.streaming.appmaster">ClockService.HealthChecker$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.HealthChecker.ClockValue.html" title="class in io.gearpump.streaming.appmaster">ClockService.HealthChecker.ClockValue</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.HealthChecker.ClockValue$.html" title="class in io.gearpump.streaming.appmaster">ClockService.HealthChecker.ClockValue$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ProcessorClock.html" title="class in io.gearpump.streaming.appmaster">ClockService.ProcessorClock</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.ProcessorClocks$.html" title="class in io.gearpump.streaming.appmaster">ClockService.ProcessorClocks$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.Report.html" title="class in io.gearpump.streaming.appmaster">ClockService.Report</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.Report$.html" title="class in io.gearpump.streaming.appmaster">ClockService.Report$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.SnapshotStartClock$.html" title="class in io.gearpump.streaming.appmaster">ClockService.SnapshotStartClock$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.StoredStartClock.html" title="class in io.gearpump.streaming.appmaster">ClockService.StoredStartClock</a></li>
<li><a href="io/gearpump/streaming/appmaster/ClockService.StoredStartClock$.html" title="class in io.gearpump.streaming.appmaster">ClockService.StoredStartClock$</a></li>
<li><a href="io/gearpump/streaming/dsl/CollectionDataSource.html" title="class in io.gearpump.streaming.dsl">CollectionDataSource</a></li>
<li><a href="io/gearpump/streaming/Constants.html" title="class in io.gearpump.streaming">Constants</a></li>
<li><a href="io/gearpump/streaming/Constants$.html" title="class in io.gearpump.streaming">Constants$</a></li>
<li><a href="io/gearpump/streaming/DAG.html" title="class in io.gearpump.streaming">DAG</a></li>
<li><a href="io/gearpump/streaming/DAG$.html" title="class in io.gearpump.streaming">DAG$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.html" title="class in io.gearpump.streaming.appmaster">DagManager</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager$.html" title="class in io.gearpump.streaming.appmaster">DagManager$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DagInitiated$.html" title="class in io.gearpump.streaming.appmaster">DagManager.DagInitiated$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DAGOperation.html" title="interface in io.gearpump.streaming.appmaster"><i>DagManager.DAGOperation</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DAGOperationFailed.html" title="class in io.gearpump.streaming.appmaster">DagManager.DAGOperationFailed</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DAGOperationFailed$.html" title="class in io.gearpump.streaming.appmaster">DagManager.DAGOperationFailed$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DAGOperationResult.html" title="interface in io.gearpump.streaming.appmaster"><i>DagManager.DAGOperationResult</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.DAGOperationSuccess$.html" title="class in io.gearpump.streaming.appmaster">DagManager.DAGOperationSuccess$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.GetLatestDAG$.html" title="class in io.gearpump.streaming.appmaster">DagManager.GetLatestDAG$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.GetTaskLaunchData.html" title="class in io.gearpump.streaming.appmaster">DagManager.GetTaskLaunchData</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.GetTaskLaunchData$.html" title="class in io.gearpump.streaming.appmaster">DagManager.GetTaskLaunchData$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.LatestDAG.html" title="class in io.gearpump.streaming.appmaster">DagManager.LatestDAG</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.LatestDAG$.html" title="class in io.gearpump.streaming.appmaster">DagManager.LatestDAG$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.NewDAGDeployed.html" title="class in io.gearpump.streaming.appmaster">DagManager.NewDAGDeployed</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.NewDAGDeployed$.html" title="class in io.gearpump.streaming.appmaster">DagManager.NewDAGDeployed$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.ReplaceProcessor.html" title="class in io.gearpump.streaming.appmaster">DagManager.ReplaceProcessor</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.ReplaceProcessor$.html" title="class in io.gearpump.streaming.appmaster">DagManager.ReplaceProcessor$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.TaskLaunchData.html" title="class in io.gearpump.streaming.appmaster">DagManager.TaskLaunchData</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.TaskLaunchData$.html" title="class in io.gearpump.streaming.appmaster">DagManager.TaskLaunchData$</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.WatchChange.html" title="class in io.gearpump.streaming.appmaster">DagManager.WatchChange</a></li>
<li><a href="io/gearpump/streaming/appmaster/DagManager.WatchChange$.html" title="class in io.gearpump.streaming.appmaster">DagManager.WatchChange$</a></li>
<li><a href="io/gearpump/streaming/sink/DataSink.html" title="interface in io.gearpump.streaming.sink"><i>DataSink</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/DataSinkOp.html" title="class in io.gearpump.streaming.dsl.op">DataSinkOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/DataSinkOp$.html" title="class in io.gearpump.streaming.dsl.op">DataSinkOp$</a></li>
<li><a href="io/gearpump/streaming/sink/DataSinkProcessor.html" title="class in io.gearpump.streaming.sink">DataSinkProcessor</a></li>
<li><a href="io/gearpump/streaming/sink/DataSinkProcessor$.html" title="class in io.gearpump.streaming.sink">DataSinkProcessor$</a></li>
<li><a href="io/gearpump/streaming/sink/DataSinkTask.html" title="class in io.gearpump.streaming.sink">DataSinkTask</a></li>
<li><a href="io/gearpump/streaming/sink/DataSinkTask$.html" title="class in io.gearpump.streaming.sink">DataSinkTask$</a></li>
<li><a href="io/gearpump/streaming/source/DataSource.html" title="interface in io.gearpump.streaming.source"><i>DataSource</i></a></li>
<li><a href="io/gearpump/streaming/source/DataSourceConfig.html" title="class in io.gearpump.streaming.source">DataSourceConfig</a></li>
<li><a href="io/gearpump/streaming/source/DataSourceConfig$.html" title="class in io.gearpump.streaming.source">DataSourceConfig$</a></li>
<li><a href="io/gearpump/streaming/dsl/op/DataSourceOp.html" title="class in io.gearpump.streaming.dsl.op">DataSourceOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/DataSourceOp$.html" title="class in io.gearpump.streaming.dsl.op">DataSourceOp$</a></li>
<li><a href="io/gearpump/streaming/source/DataSourceProcessor.html" title="class in io.gearpump.streaming.source">DataSourceProcessor</a></li>
<li><a href="io/gearpump/streaming/source/DataSourceProcessor$.html" title="class in io.gearpump.streaming.source">DataSourceProcessor$</a></li>
<li><a href="io/gearpump/streaming/source/DataSourceTask.html" title="class in io.gearpump.streaming.source">DataSourceTask</a></li>
<li><a href="io/gearpump/streaming/source/DataSourceTask$.html" title="class in io.gearpump.streaming.source">DataSourceTask$</a></li>
<li><a href="io/gearpump/streaming/source/DefaultTimeStampFilter.html" title="class in io.gearpump.streaming.source">DefaultTimeStampFilter</a></li>
<li><a href="io/gearpump/streaming/dsl/op/Direct.html" title="class in io.gearpump.streaming.dsl.op">Direct</a></li>
<li><a href="io/gearpump/streaming/dsl/op/Direct$.html" title="class in io.gearpump.streaming.dsl.op">Direct$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.html" title="class in io.gearpump.streaming.executor">Executor</a></li>
<li><a href="io/gearpump/streaming/executor/Executor$.html" title="class in io.gearpump.streaming.executor">Executor$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.DagVersionMismatchException.html" title="class in io.gearpump.streaming.executor">Executor.DagVersionMismatchException</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.ExecutorConfig.html" title="class in io.gearpump.streaming.executor">Executor.ExecutorConfig</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.ExecutorConfig$.html" title="class in io.gearpump.streaming.executor">Executor.ExecutorConfig$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.ExecutorSummary.html" title="class in io.gearpump.streaming.executor">Executor.ExecutorSummary</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.ExecutorSummary$.html" title="class in io.gearpump.streaming.executor">Executor.ExecutorSummary$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.GetExecutorSummary.html" title="class in io.gearpump.streaming.executor">Executor.GetExecutorSummary</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.GetExecutorSummary$.html" title="class in io.gearpump.streaming.executor">Executor.GetExecutorSummary$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.HealthCheck$.html" title="class in io.gearpump.streaming.executor">Executor.HealthCheck$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.QueryExecutorConfig.html" title="class in io.gearpump.streaming.executor">Executor.QueryExecutorConfig</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.QueryExecutorConfig$.html" title="class in io.gearpump.streaming.executor">Executor.QueryExecutorConfig$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.RestartTasks.html" title="class in io.gearpump.streaming.executor">Executor.RestartTasks</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.RestartTasks$.html" title="class in io.gearpump.streaming.executor">Executor.RestartTasks$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.State$.html" title="class in io.gearpump.streaming.executor">Executor.State$</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.TaskArgumentStore.html" title="class in io.gearpump.streaming.executor">Executor.TaskArgumentStore</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.TaskStopped.html" title="class in io.gearpump.streaming.executor">Executor.TaskStopped</a></li>
<li><a href="io/gearpump/streaming/executor/Executor.TaskStopped$.html" title="class in io.gearpump.streaming.executor">Executor.TaskStopped$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ExecutorManager$.html" title="class in io.gearpump.streaming.appmaster">ExecutorManager$</a></li>
<li><a href="io/gearpump/streaming/executor/ExecutorRestartPolicy.html" title="class in io.gearpump.streaming.executor">ExecutorRestartPolicy</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.html" title="class in io.gearpump.streaming">ExecutorToAppMaster</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster$</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.MessageLoss.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.MessageLoss</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.MessageLoss$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.MessageLoss$</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.RegisterExecutor.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterExecutor</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.RegisterExecutor$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterExecutor$</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.RegisterTask.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterTask</a></li>
<li><a href="io/gearpump/streaming/ExecutorToAppMaster.RegisterTask$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterTask$</a></li>
<li><a href="io/gearpump/streaming/task/ExpressTransport.html" title="interface in io.gearpump.streaming.task"><i>ExpressTransport</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/FlatMapOp.html" title="class in io.gearpump.streaming.dsl.op">FlatMapOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/FlatMapOp$.html" title="class in io.gearpump.streaming.dsl.op">FlatMapOp$</a></li>
<li><a href="io/gearpump/streaming/task/GetCheckpointClock.html" title="class in io.gearpump.streaming.task">GetCheckpointClock</a></li>
<li><a href="io/gearpump/streaming/task/GetCheckpointClock$.html" title="class in io.gearpump.streaming.task">GetCheckpointClock$</a></li>
<li><a href="io/gearpump/streaming/task/GetDAG.html" title="class in io.gearpump.streaming.task">GetDAG</a></li>
<li><a href="io/gearpump/streaming/task/GetDAG$.html" title="class in io.gearpump.streaming.task">GetDAG$</a></li>
<li><a href="io/gearpump/streaming/task/GetLatestMinClock.html" title="class in io.gearpump.streaming.task">GetLatestMinClock</a></li>
<li><a href="io/gearpump/streaming/task/GetLatestMinClock$.html" title="class in io.gearpump.streaming.task">GetLatestMinClock$</a></li>
<li><a href="io/gearpump/streaming/task/GetStartClock.html" title="class in io.gearpump.streaming.task">GetStartClock</a></li>
<li><a href="io/gearpump/streaming/task/GetStartClock$.html" title="class in io.gearpump.streaming.task">GetStartClock$</a></li>
<li><a href="io/gearpump/streaming/task/GetUpstreamMinClock.html" title="class in io.gearpump.streaming.task">GetUpstreamMinClock</a></li>
<li><a href="io/gearpump/streaming/task/GetUpstreamMinClock$.html" title="class in io.gearpump.streaming.task">GetUpstreamMinClock$</a></li>
<li><a href="io/gearpump/streaming/javaapi/Graph.html" title="class in io.gearpump.streaming.javaapi">Graph</a></li>
<li><a href="io/gearpump/streaming/state/api/Group.html" title="interface in io.gearpump.streaming.state.api"><i>Group</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/GroupByOp.html" title="class in io.gearpump.streaming.dsl.op">GroupByOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/GroupByOp$.html" title="class in io.gearpump.streaming.dsl.op">GroupByOp$</a></li>
<li><a href="io/gearpump/streaming/dsl/partitioner/GroupByPartitioner.html" title="class in io.gearpump.streaming.dsl.partitioner">GroupByPartitioner</a></li>
<li><a href="io/gearpump/streaming/dsl/partitioner/GroupByPartitioner$.html" title="class in io.gearpump.streaming.dsl.partitioner">GroupByPartitioner$</a></li>
<li><a href="io/gearpump/util/HadoopFSLogAppender.html" title="class in io.gearpump.util">HadoopFSLogAppender</a></li>
<li><a href="io/gearpump/streaming/task/InitialAckRequest.html" title="class in io.gearpump.streaming.task">InitialAckRequest</a></li>
<li><a href="io/gearpump/streaming/task/InitialAckRequest$.html" title="class in io.gearpump.streaming.task">InitialAckRequest$</a></li>
<li><a href="io/gearpump/streaming/InitialAckRequestSerializer.html" title="class in io.gearpump.streaming">InitialAckRequestSerializer</a></li>
<li><a href="io/gearpump/streaming/storage/InMemoryAppStoreOnMaster.html" title="class in io.gearpump.streaming.storage">InMemoryAppStoreOnMaster</a></li>
<li><a href="io/gearpump/streaming/state/impl/InMemoryCheckpointStore.html" title="class in io.gearpump.streaming.state.impl">InMemoryCheckpointStore</a></li>
<li><a href="io/gearpump/streaming/state/impl/InMemoryCheckpointStoreFactory.html" title="class in io.gearpump.streaming.state.impl">InMemoryCheckpointStoreFactory</a></li>
<li><a href="io/gearpump/streaming/state/impl/Interval.html" title="class in io.gearpump.streaming.state.impl">Interval</a></li>
<li><a href="io/gearpump/streaming/state/impl/Interval$.html" title="class in io.gearpump.streaming.state.impl">Interval$</a></li>
<li><a href="io/gearpump/streaming/executor/ITaskLauncher.html" title="interface in io.gearpump.streaming.executor"><i>ITaskLauncher</i></a></li>
<li><a href="io/gearpump/transport/netty/ITransportMessageSerializer.html" title="interface in io.gearpump.transport.netty"><i>ITransportMessageSerializer</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/JarScheduler.html" title="class in io.gearpump.streaming.appmaster">JarScheduler</a></li>
<li><a href="io/gearpump/streaming/appmaster/JarScheduler$.html" title="class in io.gearpump.streaming.appmaster">JarScheduler$</a></li>
<li><a href="io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html" title="class in io.gearpump.streaming.appmaster">JarScheduler.ResourceRequestDetail</a></li>
<li><a href="io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail$.html" title="class in io.gearpump.streaming.appmaster">JarScheduler.ResourceRequestDetail$</a></li>
<li><a href="io/gearpump/streaming/dsl/KVStream.html" title="class in io.gearpump.streaming.dsl">KVStream</a></li>
<li><a href="io/gearpump/streaming/task/LatencyProbe.html" title="class in io.gearpump.streaming.task">LatencyProbe</a></li>
<li><a href="io/gearpump/streaming/task/LatencyProbe$.html" title="class in io.gearpump.streaming.task">LatencyProbe$</a></li>
<li><a href="io/gearpump/streaming/LatencyProbeSerializer.html" title="class in io.gearpump.streaming">LatencyProbeSerializer</a></li>
<li><a href="io/gearpump/streaming/task/LatestMinClock.html" title="class in io.gearpump.streaming.task">LatestMinClock</a></li>
<li><a href="io/gearpump/streaming/task/LatestMinClock$.html" title="class in io.gearpump.streaming.task">LatestMinClock$</a></li>
<li><a href="io/gearpump/streaming/LifeTime.html" title="class in io.gearpump.streaming">LifeTime</a></li>
<li><a href="io/gearpump/streaming/LifeTime$.html" title="class in io.gearpump.streaming">LifeTime$</a></li>
<li><a href="io/gearpump/streaming/dsl/LoggerSink.html" title="class in io.gearpump.streaming.dsl">LoggerSink</a></li>
<li><a href="io/gearpump/streaming/dsl/op/MasterOp.html" title="interface in io.gearpump.streaming.dsl.op"><i>MasterOp</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/MergeOp.html" title="class in io.gearpump.streaming.dsl.op">MergeOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/MergeOp$.html" title="class in io.gearpump.streaming.dsl.op">MergeOp$</a></li>
<li><a href="io/gearpump/transport/netty/MessageBatch.html" title="class in io.gearpump.transport.netty">MessageBatch</a></li>
<li><a href="io/gearpump/streaming/transaction/api/MessageDecoder.html" title="interface in io.gearpump.streaming.transaction.api"><i>MessageDecoder</i></a></li>
<li><a href="io/gearpump/transport/netty/MessageDecoder.html" title="class in io.gearpump.transport.netty">MessageDecoder</a></li>
<li><a href="io/gearpump/transport/netty/MessageEncoder.html" title="class in io.gearpump.transport.netty">MessageEncoder</a></li>
<li><a href="io/gearpump/streaming/transaction/api/MessageFilter.html" title="interface in io.gearpump.streaming.transaction.api"><i>MessageFilter</i></a></li>
<li><a href="io/gearpump/streaming/state/api/Monoid.html" title="interface in io.gearpump.streaming.state.api"><i>Monoid</i></a></li>
<li><a href="io/gearpump/streaming/state/api/MonoidState.html" title="class in io.gearpump.streaming.state.api">MonoidState</a></li>
<li><a href="io/gearpump/transport/netty/NettyRenameThreadFactory.html" title="class in io.gearpump.transport.netty">NettyRenameThreadFactory</a></li>
<li><a href="io/gearpump/streaming/state/impl/NonWindowState.html" title="class in io.gearpump.streaming.state.impl">NonWindowState</a></li>
<li><a href="io/gearpump/streaming/state/impl/NonWindowState$.html" title="class in io.gearpump.streaming.state.impl">NonWindowState$</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetManager.html" title="interface in io.gearpump.streaming.transaction.api"><i>OffsetManager</i></a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.html" title="interface in io.gearpump.streaming.transaction.api"><i>OffsetStorage</i></a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage$.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage$</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.Overflow.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage.Overflow</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.Overflow$.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage.Overflow$</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.StorageEmpty$.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage.StorageEmpty$</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.Underflow.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage.Underflow</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorage.Underflow$.html" title="class in io.gearpump.streaming.transaction.api">OffsetStorage.Underflow$</a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetStorageFactory.html" title="interface in io.gearpump.streaming.transaction.api"><i>OffsetStorageFactory</i></a></li>
<li><a href="io/gearpump/streaming/transaction/api/OffsetTimeStampResolver.html" title="interface in io.gearpump.streaming.transaction.api"><i>OffsetTimeStampResolver</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/Op.html" title="interface in io.gearpump.streaming.dsl.op"><i>Op</i></a></li>
<li><a href="io/gearpump/streaming/dsl/op/OpChain.html" title="class in io.gearpump.streaming.dsl.op">OpChain</a></li>
<li><a href="io/gearpump/streaming/dsl/op/OpChain$.html" title="class in io.gearpump.streaming.dsl.op">OpChain$</a></li>
<li><a href="io/gearpump/streaming/dsl/op/OpEdge.html" title="interface in io.gearpump.streaming.dsl.op"><i>OpEdge</i></a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator$.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator$</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.AndThen.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.AndThen</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.DummyInputFunction.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.DummyInputFunction</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.FlatMapFunction.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.FlatMapFunction</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.GroupByTask.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.GroupByTask</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.ReduceFunction.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.ReduceFunction</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.SingleInputFunction.html" title="interface in io.gearpump.streaming.dsl.plan"><i>OpTranslator.SingleInputFunction</i></a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.SinkTask.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.SinkTask</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.SourceTask.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.SourceTask</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/OpTranslator.TransformTask.html" title="class in io.gearpump.streaming.dsl.plan">OpTranslator.TransformTask</a></li>
<li><a href="io/gearpump/streaming/dsl/op/ParameterizedOp.html" title="interface in io.gearpump.streaming.dsl.op"><i>ParameterizedOp</i></a></li>
<li><a href="io/gearpump/streaming/state/api/PersistentState.html" title="interface in io.gearpump.streaming.state.api"><i>PersistentState</i></a></li>
<li><a href="io/gearpump/streaming/state/impl/PersistentStateConfig.html" title="class in io.gearpump.streaming.state.impl">PersistentStateConfig</a></li>
<li><a href="io/gearpump/streaming/state/impl/PersistentStateConfig$.html" title="class in io.gearpump.streaming.state.impl">PersistentStateConfig$</a></li>
<li><a href="io/gearpump/streaming/state/api/PersistentTask.html" title="class in io.gearpump.streaming.state.api">PersistentTask</a></li>
<li><a href="io/gearpump/streaming/dsl/plan/Planner.html" title="class in io.gearpump.streaming.dsl.plan">Planner</a></li>
<li><a href="io/gearpump/streaming/javaapi/Processor.html" title="class in io.gearpump.streaming.javaapi">Processor</a></li>
<li><a href="io/gearpump/streaming/Processor.html" title="interface in io.gearpump.streaming"><i>Processor</i></a></li>
<li><a href="io/gearpump/streaming/Processor$.html" title="class in io.gearpump.streaming">Processor$</a></li>
<li><a href="io/gearpump/streaming/Processor.DefaultProcessor.html" title="class in io.gearpump.streaming">Processor.DefaultProcessor</a></li>
<li><a href="io/gearpump/streaming/Processor.DefaultProcessor$.html" title="class in io.gearpump.streaming">Processor.DefaultProcessor$</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator$.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator$</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.Aggregator.html" title="interface in io.gearpump.streaming.metrics"><i>ProcessorAggregator.Aggregator</i></a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.AggregatorFactory.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator.AggregatorFactory</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.HistogramAggregator.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator.HistogramAggregator</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.MeterAggregator.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator.MeterAggregator</a></li>
<li><a href="io/gearpump/streaming/metrics/ProcessorAggregator.MultiLayerMap.html" title="class in io.gearpump.streaming.metrics">ProcessorAggregator.MultiLayerMap</a></li>
<li><a href="io/gearpump/streaming/ProcessorDescription.html" title="class in io.gearpump.streaming">ProcessorDescription</a></li>
<li><a href="io/gearpump/streaming/ProcessorDescription$.html" title="class in io.gearpump.streaming">ProcessorDescription$</a></li>
<li><a href="io/gearpump/streaming/dsl/op/ProcessorOp.html" title="class in io.gearpump.streaming.dsl.op">ProcessorOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/ProcessorOp$.html" title="class in io.gearpump.streaming.dsl.op">ProcessorOp$</a></li>
<li><a href="io/gearpump/streaming/appmaster/ProcessorSummary.html" title="class in io.gearpump.streaming.appmaster">ProcessorSummary</a></li>
<li><a href="io/gearpump/streaming/appmaster/ProcessorSummary$.html" title="class in io.gearpump.streaming.appmaster">ProcessorSummary$</a></li>
<li><a href="io/gearpump/util/RecreateRollingFileAppender.html" title="class in io.gearpump.util">RecreateRollingFileAppender</a></li>
<li><a href="io/gearpump/streaming/dsl/op/ReduceOp.html" title="class in io.gearpump.streaming.dsl.op">ReduceOp</a></li>
<li><a href="io/gearpump/streaming/dsl/op/ReduceOp$.html" title="class in io.gearpump.streaming.dsl.op">ReduceOp$</a></li>
<li><a href="io/gearpump/streaming/task/ReportCheckpointClock.html" title="class in io.gearpump.streaming.task">ReportCheckpointClock</a></li>
<li><a href="io/gearpump/streaming/task/ReportCheckpointClock$.html" title="class in io.gearpump.streaming.task">ReportCheckpointClock$</a></li>
<li><a href="io/gearpump/streaming/task/SendMessageLoss.html" title="class in io.gearpump.streaming.task">SendMessageLoss</a></li>
<li><a href="io/gearpump/streaming/task/SendMessageLoss$.html" title="class in io.gearpump.streaming.task">SendMessageLoss$</a></li>
<li><a href="io/gearpump/streaming/task/SerializedMessage.html" title="class in io.gearpump.streaming.task">SerializedMessage</a></li>
<li><a href="io/gearpump/streaming/task/SerializedMessage$.html" title="class in io.gearpump.streaming.task">SerializedMessage$</a></li>
<li><a href="io/gearpump/streaming/task/SerializedMessageSerializer.html" title="class in io.gearpump.streaming.task">SerializedMessageSerializer</a></li>
<li><a href="io/gearpump/streaming/state/api/Serializer.html" title="interface in io.gearpump.streaming.state.api"><i>Serializer</i></a></li>
<li><a href="io/gearpump/streaming/task/SerializerResolver$.html" title="class in io.gearpump.streaming.task">SerializerResolver$</a></li>
<li><a href="io/gearpump/streaming/dsl/op/Shuffle.html" title="class in io.gearpump.streaming.dsl.op">Shuffle</a></li>
<li><a href="io/gearpump/streaming/dsl/op/Shuffle$.html" title="class in io.gearpump.streaming.dsl.op">Shuffle$</a></li>
<li><a href="io/gearpump/streaming/dsl/op/SlaveOp.html" title="interface in io.gearpump.streaming.dsl.op"><i>SlaveOp</i></a></li>
<li><a href="io/gearpump/streaming/task/StartClock.html" title="class in io.gearpump.streaming.task">StartClock</a></li>
<li><a href="io/gearpump/streaming/task/StartClock$.html" title="class in io.gearpump.streaming.task">StartClock$</a></li>
<li><a href="io/gearpump/streaming/task/StartTime.html" title="class in io.gearpump.streaming.task">StartTime</a></li>
<li><a href="io/gearpump/streaming/task/StartTime$.html" title="class in io.gearpump.streaming.task">StartTime$</a></li>
<li><a href="io/gearpump/streaming/dsl/Stream.html" title="class in io.gearpump.streaming.dsl">Stream</a></li>
<li><a href="io/gearpump/streaming/dsl/Stream$.html" title="class in io.gearpump.streaming.dsl">Stream$</a></li>
<li><a href="io/gearpump/streaming/dsl/Stream.Sink.html" title="class in io.gearpump.streaming.dsl">Stream.Sink</a></li>
<li><a href="io/gearpump/streaming/dsl/StreamApp.html" title="class in io.gearpump.streaming.dsl">StreamApp</a></li>
<li><a href="io/gearpump/streaming/dsl/StreamApp$.html" title="class in io.gearpump.streaming.dsl">StreamApp$</a></li>
<li><a href="io/gearpump/streaming/dsl/StreamApp.Source.html" title="class in io.gearpump.streaming.dsl">StreamApp.Source</a></li>
<li><a href="io/gearpump/streaming/javaapi/StreamApplication.html" title="class in io.gearpump.streaming.javaapi">StreamApplication</a></li>
<li><a href="io/gearpump/streaming/StreamApplication.html" title="class in io.gearpump.streaming">StreamApplication</a></li>
<li><a href="io/gearpump/streaming/StreamApplication$.html" title="class in io.gearpump.streaming">StreamApplication$</a></li>
<li><a href="io/gearpump/streaming/appmaster/StreamAppMasterSummary.html" title="class in io.gearpump.streaming.appmaster">StreamAppMasterSummary</a></li>
<li><a href="io/gearpump/streaming/appmaster/StreamAppMasterSummary$.html" title="class in io.gearpump.streaming.appmaster">StreamAppMasterSummary$</a></li>
<li><a href="io/gearpump/streaming/task/StreamingTransportSerializer.html" title="class in io.gearpump.streaming.task">StreamingTransportSerializer</a></li>
<li><a href="io/gearpump/streaming/task/Subscriber.html" title="class in io.gearpump.streaming.task">Subscriber</a></li>
<li><a href="io/gearpump/streaming/task/Subscriber$.html" title="class in io.gearpump.streaming.task">Subscriber$</a></li>
<li><a href="io/gearpump/streaming/task/Subscription.html" title="class in io.gearpump.streaming.task">Subscription</a></li>
<li><a href="io/gearpump/streaming/task/Subscription$.html" title="class in io.gearpump.streaming.task">Subscription$</a></li>
<li><a href="io/gearpump/streaming/javaapi/Task.html" title="class in io.gearpump.streaming.javaapi">Task</a></li>
<li><a href="io/gearpump/streaming/task/Task.html" title="class in io.gearpump.streaming.task">Task</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.html" title="class in io.gearpump.streaming.task">TaskActor</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor$.html" title="class in io.gearpump.streaming.task">TaskActor$</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.FLUSH$.html" title="class in io.gearpump.streaming.task">TaskActor.FLUSH$</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.MessageAndSender.html" title="class in io.gearpump.streaming.task">TaskActor.MessageAndSender</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.MessageAndSender$.html" title="class in io.gearpump.streaming.task">TaskActor.MessageAndSender$</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.SecurityChecker.html" title="class in io.gearpump.streaming.task">TaskActor.SecurityChecker</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.SendAck.html" title="class in io.gearpump.streaming.task">TaskActor.SendAck</a></li>
<li><a href="io/gearpump/streaming/task/TaskActor.SendAck$.html" title="class in io.gearpump.streaming.task">TaskActor.SendAck$</a></li>
<li><a href="io/gearpump/streaming/task/TaskContext.html" title="interface in io.gearpump.streaming.task"><i>TaskContext</i></a></li>
<li><a href="io/gearpump/streaming/task/TaskContextData.html" title="class in io.gearpump.streaming.task">TaskContextData</a></li>
<li><a href="io/gearpump/streaming/task/TaskContextData$.html" title="class in io.gearpump.streaming.task">TaskContextData$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskCount.html" title="class in io.gearpump.streaming.appmaster">TaskCount</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskCount$.html" title="class in io.gearpump.streaming.appmaster">TaskCount$</a></li>
<li><a href="io/gearpump/streaming/metrics/TaskFilterAggregator.html" title="class in io.gearpump.streaming.metrics">TaskFilterAggregator</a></li>
<li><a href="io/gearpump/streaming/metrics/TaskFilterAggregator$.html" title="class in io.gearpump.streaming.metrics">TaskFilterAggregator$</a></li>
<li><a href="io/gearpump/streaming/metrics/TaskFilterAggregator.Options.html" title="class in io.gearpump.streaming.metrics">TaskFilterAggregator.Options</a></li>
<li><a href="io/gearpump/streaming/metrics/TaskFilterAggregator.Options$.html" title="class in io.gearpump.streaming.metrics">TaskFilterAggregator.Options$</a></li>
<li><a href="io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a></li>
<li><a href="io/gearpump/streaming/task/TaskId$.html" title="class in io.gearpump.streaming.task">TaskId$</a></li>
<li><a href="io/gearpump/streaming/TaskIdSerializer.html" title="class in io.gearpump.streaming">TaskIdSerializer</a></li>
<li><a href="io/gearpump/streaming/task/TaskInterface.html" title="interface in io.gearpump.streaming.task"><i>TaskInterface</i></a></li>
<li><a href="io/gearpump/streaming/executor/TaskLauncher.html" title="class in io.gearpump.streaming.executor">TaskLauncher</a></li>
<li><a href="io/gearpump/streaming/executor/TaskLauncher$.html" title="class in io.gearpump.streaming.executor">TaskLauncher$</a></li>
<li><a href="io/gearpump/streaming/executor/TaskLauncher.TaskArgument.html" title="class in io.gearpump.streaming.executor">TaskLauncher.TaskArgument</a></li>
<li><a href="io/gearpump/streaming/executor/TaskLauncher.TaskArgument$.html" title="class in io.gearpump.streaming.executor">TaskLauncher.TaskArgument$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.html" title="class in io.gearpump.streaming.appmaster">TaskLocator</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator$.html" title="class in io.gearpump.streaming.appmaster">TaskLocator$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.Localities.html" title="class in io.gearpump.streaming.appmaster">TaskLocator.Localities</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.Localities$.html" title="class in io.gearpump.streaming.appmaster">TaskLocator.Localities$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.Locality.html" title="interface in io.gearpump.streaming.appmaster"><i>TaskLocator.Locality</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.NonLocality$.html" title="class in io.gearpump.streaming.appmaster">TaskLocator.NonLocality$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.WorkerLocality.html" title="class in io.gearpump.streaming.appmaster">TaskLocator.WorkerLocality</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskLocator.WorkerLocality$.html" title="class in io.gearpump.streaming.appmaster">TaskLocator.WorkerLocality$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskManager$.html" title="class in io.gearpump.streaming.appmaster">TaskManager$</a></li>
<li><a href="io/gearpump/transport/netty/TaskMessage.html" title="class in io.gearpump.transport.netty">TaskMessage</a></li>
<li><a href="io/gearpump/streaming/task/TaskMessageSerializer.html" title="interface in io.gearpump.streaming.task"><i>TaskMessageSerializer</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry$.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.Accept$.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.Accept$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.RegisterTaskStatus.html" title="interface in io.gearpump.streaming.appmaster"><i>TaskRegistry.RegisterTaskStatus</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.Reject$.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.Reject$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.TaskLocation.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.TaskLocation</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.TaskLocation$.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.TaskLocation$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.TaskLocations.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.TaskLocations</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskRegistry.TaskLocations$.html" title="class in io.gearpump.streaming.appmaster">TaskRegistry.TaskLocations$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskScheduler.html" title="interface in io.gearpump.streaming.appmaster"><i>TaskScheduler</i></a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskScheduler$.html" title="class in io.gearpump.streaming.appmaster">TaskScheduler$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskScheduler.Location.html" title="class in io.gearpump.streaming.appmaster">TaskScheduler.Location</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskScheduler.Location$.html" title="class in io.gearpump.streaming.appmaster">TaskScheduler.Location$</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskScheduler.TaskStatus.html" title="class in io.gearpump.streaming.appmaster">TaskScheduler.TaskStatus</a></li>
<li><a href="io/gearpump/streaming/appmaster/TaskSchedulerImpl.html" title="class in io.gearpump.streaming.appmaster">TaskSchedulerImpl</a></li>
<li><a href="io/gearpump/streaming/task/TaskUtil.html" title="class in io.gearpump.streaming.task">TaskUtil</a></li>
<li><a href="io/gearpump/streaming/task/TaskUtil$.html" title="class in io.gearpump.streaming.task">TaskUtil$</a></li>
<li><a href="io/gearpump/streaming/task/TaskWrapper.html" title="class in io.gearpump.streaming.task">TaskWrapper</a></li>
<li><a href="io/gearpump/streaming/transaction/api/TimeReplayableSource.html" title="interface in io.gearpump.streaming.transaction.api"><i>TimeReplayableSource</i></a></li>
<li><a href="io/gearpump/streaming/transaction/api/TimeStampFilter.html" title="interface in io.gearpump.streaming.transaction.api"><i>TimeStampFilter</i></a></li>
<li><a href="io/gearpump/streaming/task/UpdateClock.html" title="class in io.gearpump.streaming.task">UpdateClock</a></li>
<li><a href="io/gearpump/streaming/task/UpdateClock$.html" title="class in io.gearpump.streaming.task">UpdateClock$</a></li>
<li><a href="io/gearpump/streaming/task/UpstreamMinClock.html" title="class in io.gearpump.streaming.task">UpstreamMinClock</a></li>
<li><a href="io/gearpump/streaming/task/UpstreamMinClock$.html" title="class in io.gearpump.streaming.task">UpstreamMinClock$</a></li>
<li><a href="io/gearpump/streaming/state/impl/Window.html" title="class in io.gearpump.streaming.state.impl">Window</a></li>
<li><a href="io/gearpump/streaming/state/impl/WindowConfig.html" title="class in io.gearpump.streaming.state.impl">WindowConfig</a></li>
<li><a href="io/gearpump/streaming/state/impl/WindowConfig$.html" title="class in io.gearpump.streaming.state.impl">WindowConfig$</a></li>
<li><a href="io/gearpump/streaming/state/impl/WindowState.html" title="class in io.gearpump.streaming.state.impl">WindowState</a></li>
<li><a href="io/gearpump/streaming/state/impl/WindowState$.html" title="class in io.gearpump.streaming.state.impl">WindowState$</a></li>
<li><a href="io/gearpump/streaming/dsl/example/WordCount.html" title="class in io.gearpump.streaming.dsl.example">WordCount</a></li>
<li><a href="io/gearpump/streaming/dsl/example/WordCount$.html" title="class in io.gearpump.streaming.dsl.example">WordCount$</a></li>
<li><a href="io/gearpump/transport/netty/WrappedChannelBuffer.html" title="class in io.gearpump.transport.netty">WrappedChannelBuffer</a></li>
</ul>
</div>
</body>
</html>
|
stanleyxu2005/gearpump.github.io
|
releases/0.7.5/api/java/allclasses-noframe.html
|
HTML
|
apache-2.0
| 52,751
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-datetimelocal-input-directive-jquery</title>
<script src="../../components/jquery-3.1.1/jquery.js"></script>
<script src="../../../angular.js"></script>
</head>
<body ng-app="dateExample">
<script>
angular.module('dateExample', [])
.controller('DateController', ['$scope', function($scope) {
$scope.example = {
value: new Date(2010, 11, 28, 14, 57)
};
}]);
</script>
<form name="myForm" ng-controller="DateController as dateCtrl">
<label for="exampleInput">Pick a date between in 2013:</label>
<input type="datetime-local" id="exampleInput" name="input" ng-model="example.value"
placeholder="yyyy-MM-ddTHH:mm:ss" min="2001-01-01T00:00:00" max="2013-12-31T00:00:00" required />
<div role="alert">
<span class="error" ng-show="myForm.input.$error.required">
Required!</span>
<span class="error" ng-show="myForm.input.$error.datetimelocal">
Not a valid date!</span>
</div>
<tt>value = {{example.value | date: "yyyy-MM-ddTHH:mm:ss"}}</tt><br/>
<tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
<tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
<tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
<tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
</form>
</body>
</html>
|
chdyi/Angular.js
|
BookStore/app/framework/angular-1.6.2/docs/examples/example-datetimelocal-input-directive/index-jquery.html
|
HTML
|
apache-2.0
| 1,386
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>MemoryPackagePartOutputStream (POI API Documentation)</title>
<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="MemoryPackagePartOutputStream (POI API Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/MemoryPackagePartOutputStream.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePart.html" title="class in org.apache.poi.openxml4j.opc.internal"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/PackagePropertiesPart.html" title="class in org.apache.poi.openxml4j.opc.internal"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html" target="_top">FRAMES</a></li>
<li><a href="MemoryPackagePartOutputStream.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<p class="subTitle">org.apache.poi.openxml4j.opc.internal</p>
<h2 title="Class MemoryPackagePartOutputStream" class="title">Class MemoryPackagePartOutputStream</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.io.OutputStream</li>
<li>
<ul class="inheritance">
<li>org.apache.poi.openxml4j.opc.internal.MemoryPackagePartOutputStream</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Closeable, java.io.Flushable</dd>
</dl>
<hr>
<br>
<pre>public final class <strong>MemoryPackagePartOutputStream</strong>
extends java.io.OutputStream</pre>
<div class="block">Build an output stream for MemoryPackagePart.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Julien Chable</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#MemoryPackagePartOutputStream(org.apache.poi.openxml4j.opc.internal.MemoryPackagePart)">MemoryPackagePartOutputStream</a></strong>(<a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePart.html" title="class in org.apache.poi.openxml4j.opc.internal">MemoryPackagePart</a> part)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#close()">close</a></strong>()</code>
<div class="block">Close this stream and flush the content.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#flush()">flush</a></strong>()</code>
<div class="block">Flush this output stream.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#write(byte[])">write</a></strong>(byte[] b)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#write(byte[], int, int)">write</a></strong>(byte[] b,
int off,
int len)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#write(int)">write</a></strong>(int b)</code> </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="MemoryPackagePartOutputStream(org.apache.poi.openxml4j.opc.internal.MemoryPackagePart)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MemoryPackagePartOutputStream</h4>
<pre>public MemoryPackagePartOutputStream(<a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePart.html" title="class in org.apache.poi.openxml4j.opc.internal">MemoryPackagePart</a> part)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="write(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>write</h4>
<pre>public void write(int b)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>write</code> in class <code>java.io.OutputStream</code></dd>
</dl>
</li>
</ul>
<a name="close()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>close</h4>
<pre>public void close()
throws java.io.IOException</pre>
<div class="block">Close this stream and flush the content.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>close</code> in interface <code>java.io.Closeable</code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code>close</code> in class <code>java.io.OutputStream</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#flush()"><code>flush()</code></a></dd></dl>
</li>
</ul>
<a name="flush()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>flush</h4>
<pre>public void flush()
throws java.io.IOException</pre>
<div class="block">Flush this output stream. This method is called by the close() method.
Warning : don't call this method for output consistency.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>flush</code> in interface <code>java.io.Flushable</code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code>flush</code> in class <code>java.io.OutputStream</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html#close()"><code>close()</code></a></dd></dl>
</li>
</ul>
<a name="write(byte[], int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>write</h4>
<pre>public void write(byte[] b,
int off,
int len)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>write</code> in class <code>java.io.OutputStream</code></dd>
</dl>
</li>
</ul>
<a name="write(byte[])">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>write</h4>
<pre>public void write(byte[] b)
throws java.io.IOException</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>write</code> in class <code>java.io.OutputStream</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/MemoryPackagePartOutputStream.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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="../../../../../../org/apache/poi/openxml4j/opc/internal/MemoryPackagePart.html" title="class in org.apache.poi.openxml4j.opc.internal"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../../org/apache/poi/openxml4j/opc/internal/PackagePropertiesPart.html" title="class in org.apache.poi.openxml4j.opc.internal"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html" target="_top">FRAMES</a></li>
<li><a href="MemoryPackagePartOutputStream.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright 2014 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
|
RyoSaeba69/Bio-info
|
mylib/poi-3.11/docs/apidocs/org/apache/poi/openxml4j/opc/internal/MemoryPackagePartOutputStream.html
|
HTML
|
apache-2.0
| 13,479
|
<!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.6"/>
<title>Open SCAP Library: OVAL Definitions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Open SCAP Library
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<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><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#files">Files</a> |
<a href="#nested-classes">Data Structures</a> |
<a href="#define-members">Macros</a> |
<a href="#enum-members">Enumerations</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">OVAL Definitions<div class="ingroups"><a class="el" href="group__OVAL.html">OVAL</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>Interface for Definition model.
<a href="#details">More...</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a>
Files</h2></td></tr>
<tr class="memitem:oval__definitions_8h"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="oval__definitions_8h.html">oval_definitions.h</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="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__filter.html">oval_filter</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL filter. <a href="structoval__filter.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__definition__model.html">oval_definition_model</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Oval definition model. <a href="structoval__definition__model.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__definition.html">oval_definition</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Oval definition specification. <a href="structoval__definition.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__test.html">oval_test</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_test specifies a technical control by identifying an <a class="el" href="structoval__object.html">oval_object</a> that is evaluated on an instrumented host platform and, optionally, an Oval_state instance that matches the object query. <a href="structoval__test.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__test__iterator.html">oval_test_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__object.html">oval_object</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_object instance describes a set of items to look for on an instrumented host platform. <a href="structoval__object.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__object__iterator.html">oval_object_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__state.html">oval_state</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_state instance is a collection of one or more characteristics pertaining to a specific object type. <a href="structoval__state.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__state__iterator.html">oval_state_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__variable.html">oval_variable</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An oval variable resolves an <a class="el" href="structoval__value.html">oval_value</a> stream which specifies constraints for <a class="el" href="structoval__object.html">oval_object</a><b>s</b> and <a class="el" href="structoval__state.html">oval_state</a><b>s</b>. <a href="structoval__variable.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__affected.html">oval_affected</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Each OVAL Definition specifies certain type of affected system(s). <a href="structoval__affected.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__reference.html">oval_reference</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_reference links an Oval_definition to a definitive external reference. <a href="structoval__reference.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__criteria__node.html">oval_criteria_node</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Specify <a class="el" href="structoval__definition.html">oval_definition</a> dependencies. <a href="structoval__criteria__node.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__object__content.html">oval_object_content</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_object_content instance specifies an <a class="el" href="structoval__object.html">oval_object</a> field. <a href="structoval__object__content.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__behavior.html">oval_behavior</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL behavior. <a href="structoval__behavior.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__state__content.html">oval_state_content</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">An Oval_state_content instance specifies an <a class="el" href="structoval__state.html">oval_state</a> field. <a href="structoval__state__content.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__value.html">oval_value</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL object or item entity value. <a href="structoval__value.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__value__iterator.html">oval_value_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__entity.html">oval_entity</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL entity. <a href="structoval__entity.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__entity__iterator.html">oval_entity_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__record__field.html">oval_record_field</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__record__field__iterator.html">oval_record_field_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__setobject.html">oval_setobject</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL set object. <a href="structoval__setobject.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__setobject__iteraor.html">oval_setobject_iteraor</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__component.html">oval_component</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">OVAL variable component Oval_component instances specify evaluation constraints on local variables (see oval_variable_get_type). <a href="structoval__component.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__component__iterator.html">oval_component_iterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structoval__generator.html">oval_generator</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="define-members"></a>
Macros</h2></td></tr>
<tr class="memitem:gae38b2c7b7bd2e1085a5b4119d730c713"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae38b2c7b7bd2e1085a5b4119d730c713"></a>
#define </td><td class="memItemRight" valign="bottom"><b>OVAL_FUNCTION</b>   4</td></tr>
<tr class="separator:gae38b2c7b7bd2e1085a5b4119d730c713"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="enum-members"></a>
Enumerations</h2></td></tr>
<tr class="memitem:ga80d323a50a1976c7ecc926976b12af20"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a> { <br/>
  <b>OVAL_AFCFML_UNKNOWN</b> = 0,
<b>OVAL_AFCFML_CATOS</b> = 1,
<b>OVAL_AFCFML_IOS</b> = 2,
<b>OVAL_AFCFML_MACOS</b> = 3,
<br/>
  <b>OVAL_AFCFML_PIXOS</b> = 4,
<b>OVAL_AFCFML_UNDEFINED</b> = 5,
<b>OVAL_AFCFML_UNIX</b> = 6,
<b>OVAL_AFCFML_WINDOWS</b> = 7
<br/>
}</td></tr>
<tr class="memdesc:ga80d323a50a1976c7ecc926976b12af20"><td class="mdescLeft"> </td><td class="mdescRight">Affected family enumeration. <a href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">More...</a><br/></td></tr>
<tr class="separator:ga80d323a50a1976c7ecc926976b12af20"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6d0c5bdab379cdf9908e086efd4d9cca"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> { <b>OVAL_NODETYPE_UNKNOWN</b> = 0,
<b>OVAL_NODETYPE_CRITERIA</b> = 1,
<b>OVAL_NODETYPE_CRITERION</b> = 2,
<b>OVAL_NODETYPE_EXTENDDEF</b> = 3
}</td></tr>
<tr class="memdesc:ga6d0c5bdab379cdf9908e086efd4d9cca"><td class="mdescLeft"> </td><td class="mdescRight">Criteria node type. <br/></td></tr>
<tr class="separator:ga6d0c5bdab379cdf9908e086efd4d9cca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad5debd6ffe0c38c6de9108e86ee237e6"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> { <br/>
  <b>OVAL_OPERATOR_UNKNOWN</b> = 0,
<b>OVAL_OPERATOR_AND</b> = 1,
<b>OVAL_OPERATOR_ONE</b> = 2,
<b>OVAL_OPERATOR_OR</b> = 3,
<br/>
  <b>OVAL_OPERATOR_XOR</b> = 4
<br/>
}</td></tr>
<tr class="memdesc:gad5debd6ffe0c38c6de9108e86ee237e6"><td class="mdescLeft"> </td><td class="mdescRight">Boolean operators. <br/></td></tr>
<tr class="separator:gad5debd6ffe0c38c6de9108e86ee237e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3f00a63428c2b5db781a9c87ec73acd1"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a> { <br/>
  <b>OVAL_OPERATION_UNKNOWN</b> = 0,
<b>OVAL_OPERATION_BITWISE_AND</b>,
<b>OVAL_OPERATION_BITWISE_OR</b>,
<b>OVAL_OPERATION_CASE_INSENSITIVE_EQUALS</b>,
<br/>
  <b>OVAL_OPERATION_CASE_INSENSITIVE_NOT_EQUAL</b>,
<b>OVAL_OPERATION_EQUALS</b>,
<b>OVAL_OPERATION_GREATER_THAN</b>,
<b>OVAL_OPERATION_GREATER_THAN_OR_EQUAL</b>,
<br/>
  <b>OVAL_OPERATION_LESS_THAN</b>,
<b>OVAL_OPERATION_LESS_THAN_OR_EQUAL</b>,
<b>OVAL_OPERATION_NOT_EQUAL</b>,
<b>OVAL_OPERATION_PATTERN_MATCH</b>,
<br/>
  <b>OVAL_OPERATION_SUBSET_OF</b>,
<b>OVAL_OPERATION_SUPERSET_OF</b>
<br/>
}</td></tr>
<tr class="memdesc:ga3f00a63428c2b5db781a9c87ec73acd1"><td class="mdescLeft"> </td><td class="mdescRight">Operations. <br/></td></tr>
<tr class="separator:ga3f00a63428c2b5db781a9c87ec73acd1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga523a0461b03a564f296f54a73f99ade1"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga523a0461b03a564f296f54a73f99ade1">oval_existence_t</a> { <br/>
  <b>OVAL_EXISTENCE_UNKNOWN</b> = 0,
<b>OVAL_ALL_EXIST</b> = 1,
<b>OVAL_ANY_EXIST</b> = 2,
<b>OVAL_AT_LEAST_ONE_EXISTS</b> = 3,
<br/>
  <b>OVAL_ONLY_ONE_EXISTS</b> = 4,
<b>OVAL_NONE_EXIST</b> = 5
<br/>
}</td></tr>
<tr class="memdesc:ga523a0461b03a564f296f54a73f99ade1"><td class="mdescLeft"> </td><td class="mdescRight">Existence check enumeration. <br/></td></tr>
<tr class="separator:ga523a0461b03a564f296f54a73f99ade1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga926ba821c14d2faac9a23b8908c23d70"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> { <br/>
  <b>OVAL_CHECK_UNKNOWN</b> = 0,
<b>OVAL_CHECK_ALL</b> = 1,
<b>OVAL_CHECK_AT_LEAST_ONE</b> = 2,
<b>OVAL_CHECK_NONE_EXIST</b> = 3,
<br/>
  <b>OVAL_CHECK_NONE_SATISFY</b> = 4,
<b>OVAL_CHECK_ONLY_ONE</b> = 5
<br/>
}</td></tr>
<tr class="memdesc:ga926ba821c14d2faac9a23b8908c23d70"><td class="mdescLeft"> </td><td class="mdescRight">Check enumeration. <br/></td></tr>
<tr class="separator:ga926ba821c14d2faac9a23b8908c23d70"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf5a61d142a62eb195ad4483627e458b4"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf5a61d142a62eb195ad4483627e458b4">oval_object_content_type_t</a> { <b>OVAL_OBJECTCONTENT_UNKNOWN</b> = 0,
<b>OVAL_OBJECTCONTENT_ENTITY</b> = 1,
<b>OVAL_OBJECTCONTENT_SET</b> = 2,
<b>OVAL_OBJECTCONTENT_FILTER</b> = 3
}</td></tr>
<tr class="memdesc:gaf5a61d142a62eb195ad4483627e458b4"><td class="mdescLeft"> </td><td class="mdescRight">Type of object content. <br/></td></tr>
<tr class="separator:gaf5a61d142a62eb195ad4483627e458b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac9a4faa0d289b6b2dabb76d43b03b671"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac9a4faa0d289b6b2dabb76d43b03b671">oval_entity_type_t</a> { <br/>
  <b>OVAL_ENTITY_TYPE_UNKNOWN</b>,
<b>OVAL_ENTITY_TYPE_ANY</b>,
<b>OVAL_ENTITY_TYPE_BINARY</b>,
<b>OVAL_ENTITY_TYPE_BOOLEAN</b>,
<br/>
  <b>OVAL_ENTITY_TYPE_FLOAT</b>,
<b>OVAL_ENTITY_TYPE_INTEGER</b>,
<b>OVAL_ENTITY_TYPE_STRING</b>
<br/>
}</td></tr>
<tr class="memdesc:gac9a4faa0d289b6b2dabb76d43b03b671"><td class="mdescLeft"> </td><td class="mdescRight">Type of OVAL entity. <br/></td></tr>
<tr class="separator:gac9a4faa0d289b6b2dabb76d43b03b671"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga51591ee757727dbfa49795a8e4a771e5"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a> { <b>OVAL_FILTER_ACTION_UNKNOWN</b> = 0,
<b>OVAL_FILTER_ACTION_EXCLUDE</b>,
<b>OVAL_FILTER_ACTION_INCLUDE</b>
}</td></tr>
<tr class="memdesc:ga51591ee757727dbfa49795a8e4a771e5"><td class="mdescLeft"> </td><td class="mdescRight">Type of filter action. <br/></td></tr>
<tr class="separator:ga51591ee757727dbfa49795a8e4a771e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf069fe2fb2a9ae3abe47cab55b89827e"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> { <br/>
  <b>OVAL_DATATYPE_UNKNOWN</b> = 0,
<b>OVAL_DATATYPE_BINARY</b>,
<b>OVAL_DATATYPE_BOOLEAN</b>,
<b>OVAL_DATATYPE_EVR_STRING</b>,
<br/>
  <b>OVAL_DATATYPE_FILESET_REVISION</b>,
<b>OVAL_DATATYPE_FLOAT</b>,
<b>OVAL_DATATYPE_INTEGER</b>,
<b>OVAL_DATATYPE_IOS_VERSION</b>,
<br/>
  <b>OVAL_DATATYPE_IPV4ADDR</b>,
<b>OVAL_DATATYPE_IPV6ADDR</b>,
<b>OVAL_DATATYPE_RECORD</b>,
<b>OVAL_DATATYPE_SEXP</b>,
<br/>
  <b>OVAL_DATATYPE_STRING</b>,
<b>OVAL_DATATYPE_STRING_M</b>,
<b>OVAL_DATATYPE_VERSION</b>
<br/>
}</td></tr>
<tr class="memdesc:gaf069fe2fb2a9ae3abe47cab55b89827e"><td class="mdescLeft"> </td><td class="mdescRight">Datatypes. <br/></td></tr>
<tr class="separator:gaf069fe2fb2a9ae3abe47cab55b89827e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf188be33624f01de2946ce6e58b6bf53"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf188be33624f01de2946ce6e58b6bf53">oval_entity_varref_type_t</a> { <b>OVAL_ENTITY_VARREF_UNKNOWN</b>,
<b>OVAL_ENTITY_VARREF_NONE</b>,
<b>OVAL_ENTITY_VARREF_ATTRIBUTE</b>,
<b>OVAL_ENTITY_VARREF_ELEMENT</b>
}</td></tr>
<tr class="memdesc:gaf188be33624f01de2946ce6e58b6bf53"><td class="mdescLeft"> </td><td class="mdescRight">Varref types. <br/></td></tr>
<tr class="separator:gaf188be33624f01de2946ce6e58b6bf53"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad53b9e7bb7cfcb4f85f67e2f486469df"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad53b9e7bb7cfcb4f85f67e2f486469df">oval_setobject_type_t</a> { <b>OVAL_SET_UNKNOWN</b>,
<b>OVAL_SET_AGGREGATE</b>,
<b>OVAL_SET_COLLECTIVE</b>
}</td></tr>
<tr class="memdesc:gad53b9e7bb7cfcb4f85f67e2f486469df"><td class="mdescLeft"> </td><td class="mdescRight">OVAL set object types. <br/></td></tr>
<tr class="separator:gad53b9e7bb7cfcb4f85f67e2f486469df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga695dd73f42848ceb78bc9c9b3794e08c"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga695dd73f42848ceb78bc9c9b3794e08c">oval_setobject_operation_t</a> { <b>OVAL_SET_OPERATION_UNKNOWN</b>,
<b>OVAL_SET_OPERATION_COMPLEMENT</b> = 1,
<b>OVAL_SET_OPERATION_INTERSECTION</b> = 2,
<b>OVAL_SET_OPERATION_UNION</b> = 3
}</td></tr>
<tr class="memdesc:ga695dd73f42848ceb78bc9c9b3794e08c"><td class="mdescLeft"> </td><td class="mdescRight">Set operations. <br/></td></tr>
<tr class="separator:ga695dd73f42848ceb78bc9c9b3794e08c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga508c483d127b48e6190a40b401962db6"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga508c483d127b48e6190a40b401962db6">oval_variable_type_t</a> { <b>OVAL_VARIABLE_UNKNOWN</b>,
<b>OVAL_VARIABLE_EXTERNAL</b>,
<b>OVAL_VARIABLE_CONSTANT</b>,
<b>OVAL_VARIABLE_LOCAL</b>
}</td></tr>
<tr class="memdesc:ga508c483d127b48e6190a40b401962db6"><td class="mdescLeft"> </td><td class="mdescRight">OVAL variable types. <br/></td></tr>
<tr class="separator:ga508c483d127b48e6190a40b401962db6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab6ed49a929aed7027c01b143ced8ba2d"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> { <br/>
  <b>OVAL_COMPONENT_UNKNOWN</b> = 0,
<b>OVAL_COMPONENT_LITERAL</b> = 1,
<b>OVAL_COMPONENT_OBJECTREF</b> = 2,
<b>OVAL_COMPONENT_VARREF</b> = 3,
<br/>
  <b>OVAL_COMPONENT_FUNCTION</b> = 4,
<b>OVAL_FUNCTION_BEGIN</b> = OVAL_FUNCTION + 1,
<b>OVAL_FUNCTION_CONCAT</b> = OVAL_FUNCTION + 2,
<b>OVAL_FUNCTION_END</b> = OVAL_FUNCTION + 3,
<br/>
  <b>OVAL_FUNCTION_SPLIT</b> = OVAL_FUNCTION + 4,
<b>OVAL_FUNCTION_SUBSTRING</b> = OVAL_FUNCTION + 5,
<b>OVAL_FUNCTION_TIMEDIF</b> = OVAL_FUNCTION + 6,
<b>OVAL_FUNCTION_ESCAPE_REGEX</b> = OVAL_FUNCTION + 7,
<br/>
  <b>OVAL_FUNCTION_REGEX_CAPTURE</b> = OVAL_FUNCTION + 8,
<b>OVAL_FUNCTION_ARITHMETIC</b> = OVAL_FUNCTION + 9,
<b>OVAL_FUNCTION_COUNT</b> = OVAL_FUNCTION + 10,
<b>OVAL_FUNCTION_UNIQUE</b> = OVAL_FUNCTION + 11,
<br/>
  <b>OVAL_FUNCTION_LAST</b> = OVAL_FUNCTION + 12
<br/>
}</td></tr>
<tr class="memdesc:gab6ed49a929aed7027c01b143ced8ba2d"><td class="mdescLeft"> </td><td class="mdescRight">Component types. <br/></td></tr>
<tr class="separator:gab6ed49a929aed7027c01b143ced8ba2d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gadca2ff0881da30f974d92a549dc76c4c"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gadca2ff0881da30f974d92a549dc76c4c">oval_arithmetic_operation_t</a> { <br/>
  <b>OVAL_ARITHMETIC_UNKNOWN</b> = 0,
<b>OVAL_ARITHMETIC_ADD</b> = 1,
<b>OVAL_ARITHMETIC_MULTIPLY</b> = 2,
<b>OVAL_ARITHMETIC_SUBTRACT</b> = 3,
<br/>
  <b>OVAL_ARITHMETIC_DIVIDE</b> = 4
<br/>
}</td></tr>
<tr class="memdesc:gadca2ff0881da30f974d92a549dc76c4c"><td class="mdescLeft"> </td><td class="mdescRight">Arithmetic format enumeration. <br/></td></tr>
<tr class="separator:gadca2ff0881da30f974d92a549dc76c4c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaea41231bb5ff1482100866e5a0c5f7f7"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a> { <br/>
  <b>OVAL_DATETIME_UNKNOWN</b> = 0,
<b>OVAL_DATETIME_YEAR_MONTH_DAY</b> = 1,
<b>OVAL_DATETIME_MONTH_DAY_YEAR</b> = 2,
<b>OVAL_DATETIME_DAY_MONTH_YEAR</b> = 3,
<br/>
  <b>OVAL_DATETIME_WIN_FILETIME</b> = 4,
<b>OVAL_DATETIME_SECONDS_SINCE_EPOCH</b> = 5
<br/>
}</td></tr>
<tr class="memdesc:gaea41231bb5ff1482100866e5a0c5f7f7"><td class="mdescLeft"> </td><td class="mdescRight">Datetime format enumeration. <br/></td></tr>
<tr class="separator:gaea41231bb5ff1482100866e5a0c5f7f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga53d12ee660aac5b159b6f7e05f8423cb"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><b>oval_record_field_type_t</b> { <b>OVAL_RECORD_FIELD_UNKNOWN</b> = 0,
<b>OVAL_RECORD_FIELD_STATE</b> = 1,
<b>OVAL_RECORD_FIELD_ITEM</b> = 2
}</td></tr>
<tr class="separator:ga53d12ee660aac5b159b6f7e05f8423cb"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ga6cc95c76718208599e4231793d4b11f9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6cc95c76718208599e4231793d4b11f9"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="separator:ga6cc95c76718208599e4231793d4b11f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga36e968527a6fab4edd2fc1faee7d6170"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga36e968527a6fab4edd2fc1faee7d6170"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter_free</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter)</td></tr>
<tr class="separator:ga36e968527a6fab4edd2fc1faee7d6170"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf641e857d413b9fc11ab2a2e5eda67ff"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf641e857d413b9fc11ab2a2e5eda67ff"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter_clone</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__filter.html">oval_filter</a> *old_filter)</td></tr>
<tr class="separator:gaf641e857d413b9fc11ab2a2e5eda67ff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga38719ea940385091fb3ebdc2c4b2ba4c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga38719ea940385091fb3ebdc2c4b2ba4c"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_filter_iterator_has_more</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *oc_filter)</td></tr>
<tr class="separator:ga38719ea940385091fb3ebdc2c4b2ba4c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5dc029e6e73a884bfd025cff2b9b409c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5dc029e6e73a884bfd025cff2b9b409c"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter_iterator_next</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *oc_filter)</td></tr>
<tr class="separator:ga5dc029e6e73a884bfd025cff2b9b409c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5d562a68159dea0ad51b7a4c4fd97d15"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d562a68159dea0ad51b7a4c4fd97d15"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter_iterator_free</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *oc_filter)</td></tr>
<tr class="separator:ga5d562a68159dea0ad51b7a4c4fd97d15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac439edfa32dce51ea72c51b6e51e8077"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac439edfa32dce51ea72c51b6e51e8077"></a>
struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter_get_state</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter)</td></tr>
<tr class="separator:gac439edfa32dce51ea72c51b6e51e8077"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4a9564557d445ea5771211da1a3678ae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4a9564557d445ea5771211da1a3678ae"></a>
<a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_filter_get_filter_action</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter)</td></tr>
<tr class="separator:ga4a9564557d445ea5771211da1a3678ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabb4346853b20521760e10c05945ad2c3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabb4346853b20521760e10c05945ad2c3"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter_set_state</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter, struct <a class="el" href="structoval__state.html">oval_state</a> *state)</td></tr>
<tr class="separator:gabb4346853b20521760e10c05945ad2c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4da17ad04c0de19d1bad2a827d13049f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4da17ad04c0de19d1bad2a827d13049f"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter_set_filter_action</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter, <a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a> action)</td></tr>
<tr class="separator:ga4da17ad04c0de19d1bad2a827d13049f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga238b1ed7960995918cc6541bf280440c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga238b1ed7960995918cc6541bf280440c"></a>
int </td><td class="memItemRight" valign="bottom"><b>oval_filter_parse_tag</b> (xmlTextReaderPtr reader, struct <a class="el" href="structoval__parser__context.html">oval_parser_context</a> *context, oval_filter_consumer consumer, void *user)</td></tr>
<tr class="separator:ga238b1ed7960995918cc6541bf280440c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3f11438793c6c3bc7429cb55333742d0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3f11438793c6c3bc7429cb55333742d0"></a>
xmlNode * </td><td class="memItemRight" valign="bottom"><b>oval_filter_to_dom</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *filter, xmlDoc *doc, xmlNode *parent)</td></tr>
<tr class="separator:ga3f11438793c6c3bc7429cb55333742d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gacc440b72a2c5eee9199a95525dc4c39c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacc440b72a2c5eee9199a95525dc4c39c"></a>
<a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gacc440b72a2c5eee9199a95525dc4c39c">oval_subtype_get_family</a> (<a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a>)</td></tr>
<tr class="memdesc:gacc440b72a2c5eee9199a95525dc4c39c"><td class="mdescLeft"> </td><td class="mdescRight">Get the family associated with a given subtype. <br/></td></tr>
<tr class="separator:gacc440b72a2c5eee9199a95525dc4c39c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafa8ab37db0b579518c1a3c11d99955c3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafa8ab37db0b579518c1a3c11d99955c3"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_operator_get_text</b> (<a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a>)</td></tr>
<tr class="separator:gafa8ab37db0b579518c1a3c11d99955c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga97cb6b1962f9175f374022732b05951b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga97cb6b1962f9175f374022732b05951b"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_subtype_get_text</b> (<a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a>)</td></tr>
<tr class="separator:ga97cb6b1962f9175f374022732b05951b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad3a05fd84b862f1c40554cda4ae3e874"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad3a05fd84b862f1c40554cda4ae3e874"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_family_get_text</b> (<a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a>)</td></tr>
<tr class="separator:gad3a05fd84b862f1c40554cda4ae3e874"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaabec27fa27d75b32cd313e97ed3143e7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaabec27fa27d75b32cd313e97ed3143e7"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_check_get_text</b> (<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:gaabec27fa27d75b32cd313e97ed3143e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9afc0611d1b0a0792e76f9cd23dce748"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9afc0611d1b0a0792e76f9cd23dce748"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_existence_get_text</b> (<a class="el" href="group__OVALDEF.html#ga523a0461b03a564f296f54a73f99ade1">oval_existence_t</a>)</td></tr>
<tr class="separator:ga9afc0611d1b0a0792e76f9cd23dce748"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad449c6c9f76d061006dd7af82575a863"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad449c6c9f76d061006dd7af82575a863"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_affected_family_get_text</b> (<a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a>)</td></tr>
<tr class="separator:gad449c6c9f76d061006dd7af82575a863"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga144529f830ecc05ad284d43fb2352a69"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga144529f830ecc05ad284d43fb2352a69"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_datatype_get_text</b> (<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a>)</td></tr>
<tr class="separator:ga144529f830ecc05ad284d43fb2352a69"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga67e09dd7d942824671293a7e7fbfbbae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga67e09dd7d942824671293a7e7fbfbbae"></a>
<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_datatype_from_text</b> (const char *)</td></tr>
<tr class="separator:ga67e09dd7d942824671293a7e7fbfbbae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga90846ad99ba0e001dc30ef630668b44c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga90846ad99ba0e001dc30ef630668b44c"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_operation_get_text</b> (<a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a>)</td></tr>
<tr class="separator:ga90846ad99ba0e001dc30ef630668b44c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga25b3b8a88e72c1961c1b333884f167c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga25b3b8a88e72c1961c1b333884f167c8"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_set_operation_get_text</b> (<a class="el" href="group__OVALDEF.html#ga695dd73f42848ceb78bc9c9b3794e08c">oval_setobject_operation_t</a>)</td></tr>
<tr class="separator:ga25b3b8a88e72c1961c1b333884f167c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6ec8b58b744568902a8f4b25109eb79a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6ec8b58b744568902a8f4b25109eb79a"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_datetime_format_get_text</b> (<a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a>)</td></tr>
<tr class="separator:ga6ec8b58b744568902a8f4b25109eb79a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4a79ba3b622f145ad23f6c3b3720e0ca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4a79ba3b622f145ad23f6c3b3720e0ca"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_arithmetic_operation_get_text</b> (<a class="el" href="group__OVALDEF.html#gadca2ff0881da30f974d92a549dc76c4c">oval_arithmetic_operation_t</a>)</td></tr>
<tr class="separator:ga4a79ba3b622f145ad23f6c3b3720e0ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3d5dda28da1f7cb31ed5094196f24691"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3d5dda28da1f7cb31ed5094196f24691"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>oval_filter_action_get_text</b> (<a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a>)</td></tr>
<tr class="separator:ga3d5dda28da1f7cb31ed5094196f24691"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafc3e04509abf6b8c1a10fca01f229854"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafc3e04509abf6b8c1a10fca01f229854"></a>
struct <a class="el" href="structoval__generator.html">oval_generator</a> * </td><td class="memItemRight" valign="bottom"><b>oval_generator_new</b> (void)</td></tr>
<tr class="separator:gafc3e04509abf6b8c1a10fca01f229854"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1073191d86b28d59d0837348bd888d53"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1073191d86b28d59d0837348bd888d53"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_generator_free</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:ga1073191d86b28d59d0837348bd888d53"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac22db19871733f4f677d6b270c45c742"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac22db19871733f4f677d6b270c45c742"></a>
struct <a class="el" href="structoval__generator.html">oval_generator</a> * </td><td class="memItemRight" valign="bottom"><b>oval_generator_clone</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *old_generator)</td></tr>
<tr class="separator:gac22db19871733f4f677d6b270c45c742"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa63a7aee8976853bfb30588c94cdb6b4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa63a7aee8976853bfb30588c94cdb6b4"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_generator_get_product_name</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:gaa63a7aee8976853bfb30588c94cdb6b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad5c5746fad1d6f4b44e027399925ea7e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad5c5746fad1d6f4b44e027399925ea7e"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_generator_get_product_version</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:gad5c5746fad1d6f4b44e027399925ea7e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9a0ce49091cda6104f3e220e70d41604"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9a0ce49091cda6104f3e220e70d41604"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_generator_get_schema_version</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:ga9a0ce49091cda6104f3e220e70d41604"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa2746425a44e3882b062212d529faeef"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa2746425a44e3882b062212d529faeef"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_generator_get_timestamp</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:gaa2746425a44e3882b062212d529faeef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad719c063e6c03ed1a8096e6c96a738e4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad719c063e6c03ed1a8096e6c96a738e4"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_generator_set_product_name</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator, const char *product_name)</td></tr>
<tr class="separator:gad719c063e6c03ed1a8096e6c96a738e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa79e2d5ae2ea1894f0bc3686c4953c22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa79e2d5ae2ea1894f0bc3686c4953c22"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_generator_set_product_version</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator, const char *product_version)</td></tr>
<tr class="separator:gaa79e2d5ae2ea1894f0bc3686c4953c22"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga47e84e49d0a58ffc53947b83d3cdc50d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga47e84e49d0a58ffc53947b83d3cdc50d"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_generator_set_schema_version</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator, const char *schema_version)</td></tr>
<tr class="separator:ga47e84e49d0a58ffc53947b83d3cdc50d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaeaacbbc2c5dc1f940e1d272fb3e874a7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeaacbbc2c5dc1f940e1d272fb3e874a7"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_generator_set_timestamp</b> (struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator, const char *timestamp)</td></tr>
<tr class="separator:gaeaacbbc2c5dc1f940e1d272fb3e874a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9e86ce6215371e9ac00131719799ca2b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e86ce6215371e9ac00131719799ca2b"></a>
struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga9e86ce6215371e9ac00131719799ca2b">oval_definition_model::oval_definition_model_new</a> (void)</td></tr>
<tr class="memdesc:ga9e86ce6215371e9ac00131719799ca2b"><td class="mdescLeft"> </td><td class="mdescRight">Create an empty <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <br/></td></tr>
<tr class="separator:ga9e86ce6215371e9ac00131719799ca2b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2e22850b509823206ff6953d3ca9fd75"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2e22850b509823206ff6953d3ca9fd75">oval_definition_model::oval_definition_model_import_source</a> (struct <a class="el" href="structoscap__source.html">oscap_source</a> *source)</td></tr>
<tr class="memdesc:ga2e22850b509823206ff6953d3ca9fd75"><td class="mdescLeft"> </td><td class="mdescRight">Import the content of the <a class="el" href="structoscap__source.html">oscap_source</a> into the <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#ga2e22850b509823206ff6953d3ca9fd75">More...</a><br/></td></tr>
<tr class="separator:ga2e22850b509823206ff6953d3ca9fd75"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2931f8a8454c84703fb4e3e60a6c1552"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2931f8a8454c84703fb4e3e60a6c1552">oval_definition_model::oval_definition_model_import</a> (const char *file)</td></tr>
<tr class="memdesc:ga2931f8a8454c84703fb4e3e60a6c1552"><td class="mdescLeft"> </td><td class="mdescRight">Import the content from the file into an <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#ga2931f8a8454c84703fb4e3e60a6c1552">More...</a><br/></td></tr>
<tr class="separator:ga2931f8a8454c84703fb4e3e60a6c1552"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga10049d60252be9e682ba20fd9e64f43b"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga10049d60252be9e682ba20fd9e64f43b">oval_definition_model::oval_definition_model_merge</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *file)</td></tr>
<tr class="memdesc:ga10049d60252be9e682ba20fd9e64f43b"><td class="mdescLeft"> </td><td class="mdescRight">Merge the content from the file with specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#ga10049d60252be9e682ba20fd9e64f43b">More...</a><br/></td></tr>
<tr class="separator:ga10049d60252be9e682ba20fd9e64f43b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5b8cc50ce5f27ba93c752f011759c489"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5b8cc50ce5f27ba93c752f011759c489">oval_definition_model::oval_definition_model_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="memdesc:ga5b8cc50ce5f27ba93c752f011759c489"><td class="mdescLeft"> </td><td class="mdescRight">Copy an <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#ga5b8cc50ce5f27ba93c752f011759c489">More...</a><br/></td></tr>
<tr class="separator:ga5b8cc50ce5f27ba93c752f011759c489"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabd581bde7a247fcb53946325c8814670"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabd581bde7a247fcb53946325c8814670"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabd581bde7a247fcb53946325c8814670">oval_definition_model::oval_definition_model_export</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *file)</td></tr>
<tr class="memdesc:gabd581bde7a247fcb53946325c8814670"><td class="mdescLeft"> </td><td class="mdescRight">Export an <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a> into file. <br/></td></tr>
<tr class="separator:gabd581bde7a247fcb53946325c8814670"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0e919349120538ed3e9023703b146405"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0e919349120538ed3e9023703b146405"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0e919349120538ed3e9023703b146405">oval_definition_model::oval_definition_model_free</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:ga0e919349120538ed3e9023703b146405"><td class="mdescLeft"> </td><td class="mdescRight">Free OVAL object model and all binded variable models. <br/></td></tr>
<tr class="separator:ga0e919349120538ed3e9023703b146405"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6411a955e5d2f89b17115deba7a211ed"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6411a955e5d2f89b17115deba7a211ed">oval_definition::oval_definition_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *id)</td></tr>
<tr class="memdesc:ga6411a955e5d2f89b17115deba7a211ed"><td class="mdescLeft"> </td><td class="mdescRight">Construct an instance of <a class="el" href="structoval__definition.html">oval_definition</a>. <a href="#ga6411a955e5d2f89b17115deba7a211ed">More...</a><br/></td></tr>
<tr class="separator:ga6411a955e5d2f89b17115deba7a211ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga592e2bae997d55535e99ed6c55198210"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga592e2bae997d55535e99ed6c55198210">oval_definition::oval_definition_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__definition.html">oval_definition</a> *old_definition)</td></tr>
<tr class="memdesc:ga592e2bae997d55535e99ed6c55198210"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__definition.html">oval_definition</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. <a href="#ga592e2bae997d55535e99ed6c55198210">More...</a><br/></td></tr>
<tr class="separator:ga592e2bae997d55535e99ed6c55198210"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab2368745a29f1e3a4649f513231fee10"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab2368745a29f1e3a4649f513231fee10">oval_definition::oval_definition_free</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:gab2368745a29f1e3a4649f513231fee10"><td class="mdescLeft"> </td><td class="mdescRight">Release an instance of <a class="el" href="structoval__definition.html">oval_definition</a>. <a href="#gab2368745a29f1e3a4649f513231fee10">More...</a><br/></td></tr>
<tr class="separator:gab2368745a29f1e3a4649f513231fee10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6e9b5ff346e30f5aa7641725a6d9e9d8"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__test.html">oval_test</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6e9b5ff346e30f5aa7641725a6d9e9d8">oval_test::oval_test_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *id)</td></tr>
<tr class="memdesc:ga6e9b5ff346e30f5aa7641725a6d9e9d8"><td class="mdescLeft"> </td><td class="mdescRight">Construct new instance of <a class="el" href="structoval__test.html">oval_test</a>. <a href="#ga6e9b5ff346e30f5aa7641725a6d9e9d8">More...</a><br/></td></tr>
<tr class="separator:ga6e9b5ff346e30f5aa7641725a6d9e9d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1dc410d423d5560ae30f8cac0d818771"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__test.html">oval_test</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga1dc410d423d5560ae30f8cac0d818771">oval_test::oval_test_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__test.html">oval_test</a> *old_test)</td></tr>
<tr class="memdesc:ga1dc410d423d5560ae30f8cac0d818771"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__test.html">oval_test</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. <a href="#ga1dc410d423d5560ae30f8cac0d818771">More...</a><br/></td></tr>
<tr class="separator:ga1dc410d423d5560ae30f8cac0d818771"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae5e54ab1d82a1bd0f7adb6fab2e73ffd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae5e54ab1d82a1bd0f7adb6fab2e73ffd"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae5e54ab1d82a1bd0f7adb6fab2e73ffd">oval_test::oval_test_free</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:gae5e54ab1d82a1bd0f7adb6fab2e73ffd"><td class="mdescLeft"> </td><td class="mdescRight">Destruct instance of <a class="el" href="structoval__test.html">oval_test</a>. <br/></td></tr>
<tr class="separator:gae5e54ab1d82a1bd0f7adb6fab2e73ffd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0745d23ca1646b7e5de5015a6dbce333"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0745d23ca1646b7e5de5015a6dbce333">oval_object::oval_object_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *id)</td></tr>
<tr class="memdesc:ga0745d23ca1646b7e5de5015a6dbce333"><td class="mdescLeft"> </td><td class="mdescRight">Construct new intance of <a class="el" href="structoval__object.html">oval_object</a>. <a href="#ga0745d23ca1646b7e5de5015a6dbce333">More...</a><br/></td></tr>
<tr class="separator:ga0745d23ca1646b7e5de5015a6dbce333"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4ecf8898e68b0ce27be0e379e782051d"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4ecf8898e68b0ce27be0e379e782051d">oval_object::oval_object_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__object.html">oval_object</a> *old_object)</td></tr>
<tr class="memdesc:ga4ecf8898e68b0ce27be0e379e782051d"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__object.html">oval_object</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. <a href="#ga4ecf8898e68b0ce27be0e379e782051d">More...</a><br/></td></tr>
<tr class="separator:ga4ecf8898e68b0ce27be0e379e782051d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7f398a02efaaaa8962d68ad486c01a4e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7f398a02efaaaa8962d68ad486c01a4e"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7f398a02efaaaa8962d68ad486c01a4e">oval_object::oval_object_free</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga7f398a02efaaaa8962d68ad486c01a4e"><td class="mdescLeft"> </td><td class="mdescRight">Free instance of <a class="el" href="structoval__object.html">oval_object</a>. <br/></td></tr>
<tr class="separator:ga7f398a02efaaaa8962d68ad486c01a4e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga232ee583317c4e71772f75ff13d0f74c"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga232ee583317c4e71772f75ff13d0f74c">oval_state::oval_state_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *id)</td></tr>
<tr class="memdesc:ga232ee583317c4e71772f75ff13d0f74c"><td class="mdescLeft"> </td><td class="mdescRight">Construct new intance of <a class="el" href="structoval__state.html">oval_state</a>. <a href="#ga232ee583317c4e71772f75ff13d0f74c">More...</a><br/></td></tr>
<tr class="separator:ga232ee583317c4e71772f75ff13d0f74c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa7951fab775252622de5d3d1b2a8a0f0"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa7951fab775252622de5d3d1b2a8a0f0">oval_state::oval_state_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__state.html">oval_state</a> *old_state)</td></tr>
<tr class="memdesc:gaa7951fab775252622de5d3d1b2a8a0f0"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__state.html">oval_state</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. <a href="#gaa7951fab775252622de5d3d1b2a8a0f0">More...</a><br/></td></tr>
<tr class="separator:gaa7951fab775252622de5d3d1b2a8a0f0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae570dacf481fc02cfdf3420a53b91b29"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae570dacf481fc02cfdf3420a53b91b29"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae570dacf481fc02cfdf3420a53b91b29">oval_state::oval_state_free</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:gae570dacf481fc02cfdf3420a53b91b29"><td class="mdescLeft"> </td><td class="mdescRight">Free instance of <a class="el" href="structoval__state.html">oval_state</a>. <br/></td></tr>
<tr class="separator:gae570dacf481fc02cfdf3420a53b91b29"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf8e193bd514f8296466c3801bde2bb25"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf8e193bd514f8296466c3801bde2bb25">oval_variable::oval_variable_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *id, <a class="el" href="group__OVALDEF.html#ga508c483d127b48e6190a40b401962db6">oval_variable_type_t</a> type)</td></tr>
<tr class="memdesc:gaf8e193bd514f8296466c3801bde2bb25"><td class="mdescLeft"> </td><td class="mdescRight">Construct new instance of <a class="el" href="structoval__variable.html">oval_variable</a>. <a href="#gaf8e193bd514f8296466c3801bde2bb25">More...</a><br/></td></tr>
<tr class="separator:gaf8e193bd514f8296466c3801bde2bb25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga340cb9621c5af8d3e9ab6468cc1948e0"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga340cb9621c5af8d3e9ab6468cc1948e0">oval_variable::oval_variable_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__variable.html">oval_variable</a> *old_variable)</td></tr>
<tr class="memdesc:ga340cb9621c5af8d3e9ab6468cc1948e0"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__variable.html">oval_variable</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. <a href="#ga340cb9621c5af8d3e9ab6468cc1948e0">More...</a><br/></td></tr>
<tr class="separator:ga340cb9621c5af8d3e9ab6468cc1948e0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga03c2d5ac6ac55948d5e2862422a04e2b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga03c2d5ac6ac55948d5e2862422a04e2b"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga03c2d5ac6ac55948d5e2862422a04e2b">oval_variable::oval_variable_free</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga03c2d5ac6ac55948d5e2862422a04e2b"><td class="mdescLeft"> </td><td class="mdescRight">Free instance of <a class="el" href="structoval__variable.html">oval_variable</a>. <br/></td></tr>
<tr class="separator:ga03c2d5ac6ac55948d5e2862422a04e2b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac852abd08a4a3eb1fe6620ed15125d08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac852abd08a4a3eb1fe6620ed15125d08"></a>
struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac852abd08a4a3eb1fe6620ed15125d08">oval_affected::oval_affected_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="memdesc:gac852abd08a4a3eb1fe6620ed15125d08"><td class="mdescLeft"> </td><td class="mdescRight">Construct instance of <a class="el" href="structoval__affected.html">oval_affected</a>. <br/></td></tr>
<tr class="separator:gac852abd08a4a3eb1fe6620ed15125d08"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5fe063593c56be6a68971ca4370b3788"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5fe063593c56be6a68971ca4370b3788">oval_affected::oval_affected_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__affected.html">oval_affected</a> *old_affected)</td></tr>
<tr class="memdesc:ga5fe063593c56be6a68971ca4370b3788"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of <a class="el" href="structoval__affected.html">oval_affected</a>. <a href="#ga5fe063593c56be6a68971ca4370b3788">More...</a><br/></td></tr>
<tr class="separator:ga5fe063593c56be6a68971ca4370b3788"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4287b6237b907d038369121515b3b36c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4287b6237b907d038369121515b3b36c"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4287b6237b907d038369121515b3b36c">oval_affected::oval_affected_free</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *)</td></tr>
<tr class="memdesc:ga4287b6237b907d038369121515b3b36c"><td class="mdescLeft"> </td><td class="mdescRight">Release instance of <a class="el" href="structoval__affected.html">oval_affected</a>. <br/></td></tr>
<tr class="separator:ga4287b6237b907d038369121515b3b36c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa410bf73e8608575e7b2a7fcbe9bef8a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa410bf73e8608575e7b2a7fcbe9bef8a"></a>
struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td><td class="memItemRight" valign="bottom"><b>oval_reference::oval_reference_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:gaa410bf73e8608575e7b2a7fcbe9bef8a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4f5d8b84579a886cbc41cbf1d056135a"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4f5d8b84579a886cbc41cbf1d056135a">oval_reference::oval_reference_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__reference.html">oval_reference</a> *old_reference)</td></tr>
<tr class="separator:ga4f5d8b84579a886cbc41cbf1d056135a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4407eaefc688ce822d9038765ffd400b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4407eaefc688ce822d9038765ffd400b"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_reference::oval_reference_free</b> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *)</td></tr>
<tr class="separator:ga4407eaefc688ce822d9038765ffd400b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gacad9d0a710cdbbd4fa748bb92271e01f"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gacad9d0a710cdbbd4fa748bb92271e01f">oval_criteria_node::oval_criteria_node_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, <a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> type)</td></tr>
<tr class="memdesc:gacad9d0a710cdbbd4fa748bb92271e01f"><td class="mdescLeft"> </td><td class="mdescRight">Construct an instance of <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. <a href="#gacad9d0a710cdbbd4fa748bb92271e01f">More...</a><br/></td></tr>
<tr class="separator:gacad9d0a710cdbbd4fa748bb92271e01f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga536e612d001004c4807b44c1b39b7a1f"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga536e612d001004c4807b44c1b39b7a1f">oval_criteria_node::oval_criteria_node_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *old_node)</td></tr>
<tr class="memdesc:ga536e612d001004c4807b44c1b39b7a1f"><td class="mdescLeft"> </td><td class="mdescRight">Clone an instance of <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. <a href="#ga536e612d001004c4807b44c1b39b7a1f">More...</a><br/></td></tr>
<tr class="separator:ga536e612d001004c4807b44c1b39b7a1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabca64d5751a91835639f29cf043eb3d4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabca64d5751a91835639f29cf043eb3d4"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabca64d5751a91835639f29cf043eb3d4">oval_criteria_node::oval_criteria_node_free</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:gabca64d5751a91835639f29cf043eb3d4"><td class="mdescLeft"> </td><td class="mdescRight">Free an instance of <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. <br/></td></tr>
<tr class="separator:gabca64d5751a91835639f29cf043eb3d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4fbd4a25697327d43ccf8530bc79b950"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4fbd4a25697327d43ccf8530bc79b950"></a>
struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, <a class="el" href="group__OVALDEF.html#gaf5a61d142a62eb195ad4483627e458b4">oval_object_content_type_t</a> type)</td></tr>
<tr class="separator:ga4fbd4a25697327d43ccf8530bc79b950"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2f9667276e93ad35d76db1dcffc2fc79"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2f9667276e93ad35d76db1dcffc2fc79">oval_object_content::oval_object_content_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *old_content)</td></tr>
<tr class="separator:ga2f9667276e93ad35d76db1dcffc2fc79"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafb7f03c84ad7656013309383f602b195"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafb7f03c84ad7656013309383f602b195"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_free</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="separator:gafb7f03c84ad7656013309383f602b195"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6be6b2ac8bb2031d215ad722b34f6248"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6be6b2ac8bb2031d215ad722b34f6248"></a>
struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td><td class="memItemRight" valign="bottom"><b>oval_behavior::oval_behavior_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:ga6be6b2ac8bb2031d215ad722b34f6248"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa4a65b558963902ac1c5a67c9a820190"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa4a65b558963902ac1c5a67c9a820190">oval_behavior::oval_behavior_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *old_behavior)</td></tr>
<tr class="separator:gaa4a65b558963902ac1c5a67c9a820190"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6d5f5ad4147ea81c964f6c15722e3291"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6d5f5ad4147ea81c964f6c15722e3291"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_behavior::oval_behavior_free</b> (struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *)</td></tr>
<tr class="separator:ga6d5f5ad4147ea81c964f6c15722e3291"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3d6d2839aad19d0af8afa5cf72bccc08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3d6d2839aad19d0af8afa5cf72bccc08"></a>
struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:ga3d6d2839aad19d0af8afa5cf72bccc08"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga17c233368a8f030f4902904deaa4f7fd"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga17c233368a8f030f4902904deaa4f7fd">oval_state_content::oval_state_content_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *old_content)</td></tr>
<tr class="separator:ga17c233368a8f030f4902904deaa4f7fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad9a21c768b24635c711ec27e0f696f59"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad9a21c768b24635c711ec27e0f696f59"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_free</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *)</td></tr>
<tr class="separator:gad9a21c768b24635c711ec27e0f696f59"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa4709ee7da1c5848fd1e840cd58152d1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa4709ee7da1c5848fd1e840cd58152d1"></a>
struct <a class="el" href="structoval__value.html">oval_value</a> * </td><td class="memItemRight" valign="bottom"><b>oval_value::oval_value_new</b> (<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> datatype, char *text_value)</td></tr>
<tr class="separator:gaa4709ee7da1c5848fd1e840cd58152d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7fe14f1f36f8bcd9ed374c682d3553b7"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__value.html">oval_value</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7fe14f1f36f8bcd9ed374c682d3553b7">oval_value::oval_value_clone</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *old_value)</td></tr>
<tr class="separator:ga7fe14f1f36f8bcd9ed374c682d3553b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafd80c3c46b4772e95f2f91fd3794352e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd80c3c46b4772e95f2f91fd3794352e"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_value::oval_value_free</b> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="separator:gafd80c3c46b4772e95f2f91fd3794352e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga80eb2d54e2448319112517544410b3b2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga80eb2d54e2448319112517544410b3b2"></a>
struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:ga80eb2d54e2448319112517544410b3b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7aa93ac83325d4e43faff3f1a74a97db"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7aa93ac83325d4e43faff3f1a74a97db">oval_entity::oval_entity_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, struct <a class="el" href="structoval__entity.html">oval_entity</a> *old_entity)</td></tr>
<tr class="separator:ga7aa93ac83325d4e43faff3f1a74a97db"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad55792ea550c8eda41839b7e456df093"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad55792ea550c8eda41839b7e456df093"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_free</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="separator:gad55792ea550c8eda41839b7e456df093"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa2c6ffa226bddc973ae9d9b2f4f31d21"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa2c6ffa226bddc973ae9d9b2f4f31d21"></a>
struct <a class="el" href="structoval__record__field.html">oval_record_field</a> * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_new</b> (oval_record_field_type_t)</td></tr>
<tr class="separator:gaa2c6ffa226bddc973ae9d9b2f4f31d21"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac4370f76cd05745da8610d8c2056f32e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac4370f76cd05745da8610d8c2056f32e"></a>
struct <a class="el" href="structoval__record__field.html">oval_record_field</a> * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_clone</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gac4370f76cd05745da8610d8c2056f32e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9001f4824fba1494626877abb1ed4590"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9001f4824fba1494626877abb1ed4590"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_free</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga9001f4824fba1494626877abb1ed4590"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae8d4385022c3cd58d088b8cb530ceb1b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8d4385022c3cd58d088b8cb530ceb1b"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:gae8d4385022c3cd58d088b8cb530ceb1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gacd8842d1ba73389f721e3779fc92ebf4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacd8842d1ba73389f721e3779fc92ebf4"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_free</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *)</td></tr>
<tr class="separator:gacd8842d1ba73389f721e3779fc92ebf4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9f7fdba07ceb35a3dad8053b5a7962b9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9f7fdba07ceb35a3dad8053b5a7962b9"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_clone</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, struct <a class="el" href="structoval__filter.html">oval_filter</a> *)</td></tr>
<tr class="separator:ga9f7fdba07ceb35a3dad8053b5a7962b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf8b00668fafb12cd6397d090f8f5e53d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf8b00668fafb12cd6397d090f8f5e53d"></a>
struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_new</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:gaf8b00668fafb12cd6397d090f8f5e53d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaec13f21458a8aefbd1663d71a0d8f56e"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaec13f21458a8aefbd1663d71a0d8f56e">oval_setobject::oval_setobject_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *old_setobject)</td></tr>
<tr class="separator:gaec13f21458a8aefbd1663d71a0d8f56e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0f76b6ce49917a05b2b53ad998461554"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0f76b6ce49917a05b2b53ad998461554"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_free</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="separator:ga0f76b6ce49917a05b2b53ad998461554"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa96aefc959878666fcae52b5fa8e55a6"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__component.html">oval_component</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa96aefc959878666fcae52b5fa8e55a6">oval_component::oval_component_new</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, <a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> type)</td></tr>
<tr class="memdesc:gaa96aefc959878666fcae52b5fa8e55a6"><td class="mdescLeft"> </td><td class="mdescRight">Construct new intance of Oval_component. <a href="#gaa96aefc959878666fcae52b5fa8e55a6">More...</a><br/></td></tr>
<tr class="separator:gaa96aefc959878666fcae52b5fa8e55a6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf0b49cf939284308b61954c83db94971"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__component.html">oval_component</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf0b49cf939284308b61954c83db94971">oval_component::oval_component_clone</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *new_model, struct <a class="el" href="structoval__component.html">oval_component</a> *old_component)</td></tr>
<tr class="memdesc:gaf0b49cf939284308b61954c83db94971"><td class="mdescLeft"> </td><td class="mdescRight">Clone instance of Oval_component. <a href="#gaf0b49cf939284308b61954c83db94971">More...</a><br/></td></tr>
<tr class="separator:gaf0b49cf939284308b61954c83db94971"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga828edd910a6e940f6d3832c3a2ba69da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga828edd910a6e940f6d3832c3a2ba69da"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga828edd910a6e940f6d3832c3a2ba69da">oval_component::oval_component_free</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga828edd910a6e940f6d3832c3a2ba69da"><td class="mdescLeft"> </td><td class="mdescRight">Free instance of Oval_component. <br/></td></tr>
<tr class="separator:ga828edd910a6e940f6d3832c3a2ba69da"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="member-group"></a>
Setters</h2></td></tr>
<tr class="memitem:ga14af1d0297689b96f865098f3b11c0df"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga14af1d0297689b96f865098f3b11c0df"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_definition_model_set_generator</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, struct <a class="el" href="structoval__generator.html">oval_generator</a> *generator)</td></tr>
<tr class="separator:ga14af1d0297689b96f865098f3b11c0df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga12b73db79f292caf4d3fa5189bfd17f3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga12b73db79f292caf4d3fa5189bfd17f3"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_definition_model_clear_external_variables</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="separator:ga12b73db79f292caf4d3fa5189bfd17f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga957f8a911055ac5e8d6d6284991b6c79"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga957f8a911055ac5e8d6d6284991b6c79"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_variable_clear_values</b> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="separator:ga957f8a911055ac5e8d6d6284991b6c79"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gadecd5eaefbb82c7075b364e59ee16853"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadecd5eaefbb82c7075b364e59ee16853"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject_set_type</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *, <a class="el" href="group__OVALDEF.html#gad53b9e7bb7cfcb4f85f67e2f486469df">oval_setobject_type_t</a>)</td></tr>
<tr class="separator:gadecd5eaefbb82c7075b364e59ee16853"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac90e87e3a607abd49e731f5beb807b36"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac90e87e3a607abd49e731f5beb807b36">oval_definition_model::oval_definition_model_bind_variable_model</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, struct <a class="el" href="structoval__variable__model.html">oval_variable_model</a> *)</td></tr>
<tr class="memdesc:gac90e87e3a607abd49e731f5beb807b36"><td class="mdescLeft"> </td><td class="mdescRight">Bind an <a class="el" href="structoval__variable__model.html" title="The OVAL variable model facilitates access to external variable value bindings used to to constrain t...">oval_variable_model</a> to the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#gac90e87e3a607abd49e731f5beb807b36">More...</a><br/></td></tr>
<tr class="separator:gac90e87e3a607abd49e731f5beb807b36"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab2aee7edf52662652eb0fb9ddd8bef5e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab2aee7edf52662652eb0fb9ddd8bef5e">oval_definition::oval_definition_set_version</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, int version)</td></tr>
<tr class="memdesc:gab2aee7edf52662652eb0fb9ddd8bef5e"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->version. <a href="#gab2aee7edf52662652eb0fb9ddd8bef5e">More...</a><br/></td></tr>
<tr class="separator:gab2aee7edf52662652eb0fb9ddd8bef5e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab423431db12f7cba0953230648315c20"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab423431db12f7cba0953230648315c20">oval_definition::oval_definition_set_class</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, <a class="el" href="oval__types_8h.html#a3323efc68980168d0187c26dd22bfce1">oval_definition_class_t</a>)</td></tr>
<tr class="memdesc:gab423431db12f7cba0953230648315c20"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->class. <a href="#gab423431db12f7cba0953230648315c20">More...</a><br/></td></tr>
<tr class="separator:gab423431db12f7cba0953230648315c20"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa71ba1da6dc02c718878188a899014f3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa71ba1da6dc02c718878188a899014f3">oval_definition::oval_definition_set_deprecated</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, bool deprecated)</td></tr>
<tr class="memdesc:gaa71ba1da6dc02c718878188a899014f3"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->deprecated. <a href="#gaa71ba1da6dc02c718878188a899014f3">More...</a><br/></td></tr>
<tr class="separator:gaa71ba1da6dc02c718878188a899014f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6bf26fcb4a1a73cfc4cec902301298fe"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6bf26fcb4a1a73cfc4cec902301298fe">oval_definition::oval_definition_set_title</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, char *title)</td></tr>
<tr class="memdesc:ga6bf26fcb4a1a73cfc4cec902301298fe"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->title. <a href="#ga6bf26fcb4a1a73cfc4cec902301298fe">More...</a><br/></td></tr>
<tr class="separator:ga6bf26fcb4a1a73cfc4cec902301298fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2069e1282f02ebfb5a661eab90a229d6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2069e1282f02ebfb5a661eab90a229d6">oval_definition::oval_definition_set_description</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, char *description)</td></tr>
<tr class="memdesc:ga2069e1282f02ebfb5a661eab90a229d6"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->description. <a href="#ga2069e1282f02ebfb5a661eab90a229d6">More...</a><br/></td></tr>
<tr class="separator:ga2069e1282f02ebfb5a661eab90a229d6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac818befd3b159dfa5723e8d21054ab26"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac818befd3b159dfa5723e8d21054ab26">oval_definition::oval_definition_add_affected</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, struct <a class="el" href="structoval__affected.html">oval_affected</a> *affected)</td></tr>
<tr class="memdesc:gac818befd3b159dfa5723e8d21054ab26"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of <a class="el" href="structoval__affected.html">oval_affected</a> to attribute oval_definition->affected. <a href="#gac818befd3b159dfa5723e8d21054ab26">More...</a><br/></td></tr>
<tr class="separator:gac818befd3b159dfa5723e8d21054ab26"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5cc090c0f8d4c801a59ba6bb1af17e0a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5cc090c0f8d4c801a59ba6bb1af17e0a">oval_definition::oval_definition_add_reference</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, struct <a class="el" href="structoval__reference.html">oval_reference</a> *reference)</td></tr>
<tr class="memdesc:ga5cc090c0f8d4c801a59ba6bb1af17e0a"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of <a class="el" href="structoval__reference.html">oval_reference</a> to attribute oval_definition->references. <a href="#ga5cc090c0f8d4c801a59ba6bb1af17e0a">More...</a><br/></td></tr>
<tr class="separator:ga5cc090c0f8d4c801a59ba6bb1af17e0a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5edd2eb22f538f9dbe77e7b19c760a1d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5edd2eb22f538f9dbe77e7b19c760a1d">oval_definition::oval_definition_add_note</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, char *note)</td></tr>
<tr class="memdesc:ga5edd2eb22f538f9dbe77e7b19c760a1d"><td class="mdescLeft"> </td><td class="mdescRight">Append a copy of the note parameter to attribute Oval_definition->notes. <a href="#ga5edd2eb22f538f9dbe77e7b19c760a1d">More...</a><br/></td></tr>
<tr class="separator:ga5edd2eb22f538f9dbe77e7b19c760a1d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga44fb9c1aefb424c2b3e9c37e542ceff9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga44fb9c1aefb424c2b3e9c37e542ceff9">oval_definition::oval_definition_set_criteria</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *, struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *criteria)</td></tr>
<tr class="memdesc:ga44fb9c1aefb424c2b3e9c37e542ceff9"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute oval_definition->criteria. <a href="#ga44fb9c1aefb424c2b3e9c37e542ceff9">More...</a><br/></td></tr>
<tr class="separator:ga44fb9c1aefb424c2b3e9c37e542ceff9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1fce15f743d777ca44ebab29a1392157"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga1fce15f743d777ca44ebab29a1392157">oval_test::oval_test_set_subtype</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, <a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> subtype)</td></tr>
<tr class="memdesc:ga1fce15f743d777ca44ebab29a1392157"><td class="mdescLeft"> </td><td class="mdescRight">Sets attributes oval_test->subtype and Oval_test->family. <a href="#ga1fce15f743d777ca44ebab29a1392157">More...</a><br/></td></tr>
<tr class="separator:ga1fce15f743d777ca44ebab29a1392157"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5feb5d65b2e15e995ccd151e4eb5b873"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5feb5d65b2e15e995ccd151e4eb5b873">oval_test::oval_test_add_note</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, char *note)</td></tr>
<tr class="memdesc:ga5feb5d65b2e15e995ccd151e4eb5b873"><td class="mdescLeft"> </td><td class="mdescRight">Appends a copy of the note parameter to attribute oval_test->notes. <a href="#ga5feb5d65b2e15e995ccd151e4eb5b873">More...</a><br/></td></tr>
<tr class="separator:ga5feb5d65b2e15e995ccd151e4eb5b873"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2676ed1eb9bfacab4537781d9c8727c0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2676ed1eb9bfacab4537781d9c8727c0">oval_test::oval_test_set_comment</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, char *comment)</td></tr>
<tr class="memdesc:ga2676ed1eb9bfacab4537781d9c8727c0"><td class="mdescLeft"> </td><td class="mdescRight">Sets a copy of the comment parameter to attribute oval_test->comment. <a href="#ga2676ed1eb9bfacab4537781d9c8727c0">More...</a><br/></td></tr>
<tr class="separator:ga2676ed1eb9bfacab4537781d9c8727c0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga92846b3e7c818699421c8f2fc8b28eba"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga92846b3e7c818699421c8f2fc8b28eba"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga92846b3e7c818699421c8f2fc8b28eba">oval_test::oval_test_set_deprecated</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, bool deprecated)</td></tr>
<tr class="memdesc:ga92846b3e7c818699421c8f2fc8b28eba"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->deprecated. <br/></td></tr>
<tr class="separator:ga92846b3e7c818699421c8f2fc8b28eba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2851958564a793edf5762759cd536014"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2851958564a793edf5762759cd536014">oval_test::oval_test_set_version</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, int version)</td></tr>
<tr class="memdesc:ga2851958564a793edf5762759cd536014"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->version. <a href="#ga2851958564a793edf5762759cd536014">More...</a><br/></td></tr>
<tr class="separator:ga2851958564a793edf5762759cd536014"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2550bcc4557cc89afbdcd6e37530eefe"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2550bcc4557cc89afbdcd6e37530eefe"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2550bcc4557cc89afbdcd6e37530eefe">oval_test::oval_test_set_state_operator</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, <a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a>)</td></tr>
<tr class="memdesc:ga2550bcc4557cc89afbdcd6e37530eefe"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->state_operator. <br/></td></tr>
<tr class="separator:ga2550bcc4557cc89afbdcd6e37530eefe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7ea4584bce446992d713ee7b8fabdf6b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7ea4584bce446992d713ee7b8fabdf6b">oval_test::oval_test_set_existence</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, <a class="el" href="group__OVALDEF.html#ga523a0461b03a564f296f54a73f99ade1">oval_existence_t</a>)</td></tr>
<tr class="memdesc:ga7ea4584bce446992d713ee7b8fabdf6b"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->existence. <a href="#ga7ea4584bce446992d713ee7b8fabdf6b">More...</a><br/></td></tr>
<tr class="separator:ga7ea4584bce446992d713ee7b8fabdf6b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab8cb734092ee902043074b3d62752896"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab8cb734092ee902043074b3d62752896">oval_test::oval_test_set_check</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="memdesc:gab8cb734092ee902043074b3d62752896"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->check. <a href="#gab8cb734092ee902043074b3d62752896">More...</a><br/></td></tr>
<tr class="separator:gab8cb734092ee902043074b3d62752896"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga559dc4e8bfc39ef1aed3c6bac219d299"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga559dc4e8bfc39ef1aed3c6bac219d299">oval_test::oval_test_set_object</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga559dc4e8bfc39ef1aed3c6bac219d299"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_test->object. <a href="#ga559dc4e8bfc39ef1aed3c6bac219d299">More...</a><br/></td></tr>
<tr class="separator:ga559dc4e8bfc39ef1aed3c6bac219d299"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabc49f890db2a53ee625fe93511ec2b01"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabc49f890db2a53ee625fe93511ec2b01">oval_test::oval_test_add_state</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *, struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:gabc49f890db2a53ee625fe93511ec2b01"><td class="mdescLeft"> </td><td class="mdescRight">Add the specified state to the state list of the specified test. <a href="#gabc49f890db2a53ee625fe93511ec2b01">More...</a><br/></td></tr>
<tr class="separator:gabc49f890db2a53ee625fe93511ec2b01"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab8022028389fbea3d58ff68f259490ca"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab8022028389fbea3d58ff68f259490ca">oval_object::oval_object_set_subtype</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, <a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> subtype)</td></tr>
<tr class="memdesc:gab8022028389fbea3d58ff68f259490ca"><td class="mdescLeft"> </td><td class="mdescRight">Sets attributes oval_object->subtype and oval_object->family. <a href="#gab8022028389fbea3d58ff68f259490ca">More...</a><br/></td></tr>
<tr class="separator:gab8022028389fbea3d58ff68f259490ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6acf65fe782b64885a38a7f9ef88f854"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6acf65fe782b64885a38a7f9ef88f854">oval_object::oval_object_add_note</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, char *note)</td></tr>
<tr class="memdesc:ga6acf65fe782b64885a38a7f9ef88f854"><td class="mdescLeft"> </td><td class="mdescRight">Appends a copy of the note parameter to attribute oval_object->notes. <a href="#ga6acf65fe782b64885a38a7f9ef88f854">More...</a><br/></td></tr>
<tr class="separator:ga6acf65fe782b64885a38a7f9ef88f854"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa8c0c1dd2ba2400ebcbc896169d5666b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa8c0c1dd2ba2400ebcbc896169d5666b">oval_object::oval_object_set_comment</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, char *comment)</td></tr>
<tr class="memdesc:gaa8c0c1dd2ba2400ebcbc896169d5666b"><td class="mdescLeft"> </td><td class="mdescRight">Sets a copy of the comment parameter to attribute oval_object->comment. <a href="#gaa8c0c1dd2ba2400ebcbc896169d5666b">More...</a><br/></td></tr>
<tr class="separator:gaa8c0c1dd2ba2400ebcbc896169d5666b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaaa4cd7b065405e47cab4794eaf149962"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaaa4cd7b065405e47cab4794eaf149962"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaaa4cd7b065405e47cab4794eaf149962">oval_object::oval_object_set_deprecated</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, bool deprecated)</td></tr>
<tr class="memdesc:gaaa4cd7b065405e47cab4794eaf149962"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_object->deprecated. <br/></td></tr>
<tr class="separator:gaaa4cd7b065405e47cab4794eaf149962"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaba746d196149d499e10bde052158a474"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaba746d196149d499e10bde052158a474">oval_object::oval_object_set_version</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, int version)</td></tr>
<tr class="memdesc:gaba746d196149d499e10bde052158a474"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_object->version. <a href="#gaba746d196149d499e10bde052158a474">More...</a><br/></td></tr>
<tr class="separator:gaba746d196149d499e10bde052158a474"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab62165673d2479dd5d27cb437e7120b8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab62165673d2479dd5d27cb437e7120b8">oval_object::oval_object_add_object_content</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *content)</td></tr>
<tr class="memdesc:gab62165673d2479dd5d27cb437e7120b8"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of <a class="el" href="structoval__object__content.html">oval_object_content</a> to attribute oval_object->object_contents. <a href="#gab62165673d2479dd5d27cb437e7120b8">More...</a><br/></td></tr>
<tr class="separator:gab62165673d2479dd5d27cb437e7120b8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga01301c7353996e914cfddb52fb98a229"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga01301c7353996e914cfddb52fb98a229">oval_object::oval_object_add_behavior</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *, struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *behavior)</td></tr>
<tr class="memdesc:ga01301c7353996e914cfddb52fb98a229"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of <a class="el" href="structoval__behavior.html">oval_behavior</a> to attribute oval_object->behaviors. <a href="#ga01301c7353996e914cfddb52fb98a229">More...</a><br/></td></tr>
<tr class="separator:ga01301c7353996e914cfddb52fb98a229"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga312270d697ba5aec73b0765a0b572d57"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga312270d697ba5aec73b0765a0b572d57">oval_state::oval_state_set_subtype</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, <a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> subtype)</td></tr>
<tr class="memdesc:ga312270d697ba5aec73b0765a0b572d57"><td class="mdescLeft"> </td><td class="mdescRight">Sets attributes oval_state->subtype and oval_state->family. <a href="#ga312270d697ba5aec73b0765a0b572d57">More...</a><br/></td></tr>
<tr class="separator:ga312270d697ba5aec73b0765a0b572d57"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9371475d9d286345d880e24b7d6297ff"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga9371475d9d286345d880e24b7d6297ff">oval_state::oval_state_add_note</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, char *note)</td></tr>
<tr class="memdesc:ga9371475d9d286345d880e24b7d6297ff"><td class="mdescLeft"> </td><td class="mdescRight">Appends a copy of the note parameter to attribute oval_state->notes. <a href="#ga9371475d9d286345d880e24b7d6297ff">More...</a><br/></td></tr>
<tr class="separator:ga9371475d9d286345d880e24b7d6297ff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga81844120fd22784391967ae54f4815cd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga81844120fd22784391967ae54f4815cd">oval_state::oval_state_set_comment</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, char *comment)</td></tr>
<tr class="memdesc:ga81844120fd22784391967ae54f4815cd"><td class="mdescLeft"> </td><td class="mdescRight">Sets a copy of the comment parameter to attribute oval_state->comment. <a href="#ga81844120fd22784391967ae54f4815cd">More...</a><br/></td></tr>
<tr class="separator:ga81844120fd22784391967ae54f4815cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga81d256f6e88910ad6bf1c70ee3a73c1d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga81d256f6e88910ad6bf1c70ee3a73c1d"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga81d256f6e88910ad6bf1c70ee3a73c1d">oval_state::oval_state_set_deprecated</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, bool deprecated)</td></tr>
<tr class="memdesc:ga81d256f6e88910ad6bf1c70ee3a73c1d"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_state->deprecated. <br/></td></tr>
<tr class="separator:ga81d256f6e88910ad6bf1c70ee3a73c1d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4de8c320f537f7636691ea7bc1898ed2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4de8c320f537f7636691ea7bc1898ed2">oval_state::oval_state_set_version</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, int version)</td></tr>
<tr class="memdesc:ga4de8c320f537f7636691ea7bc1898ed2"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_state->version. <a href="#ga4de8c320f537f7636691ea7bc1898ed2">More...</a><br/></td></tr>
<tr class="separator:ga4de8c320f537f7636691ea7bc1898ed2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8b4a079d27e320bd135a8a3314a9b141"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8b4a079d27e320bd135a8a3314a9b141"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8b4a079d27e320bd135a8a3314a9b141">oval_state::oval_state_set_operator</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, <a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a>)</td></tr>
<tr class="memdesc:ga8b4a079d27e320bd135a8a3314a9b141"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute oval_state->operator. <br/></td></tr>
<tr class="separator:ga8b4a079d27e320bd135a8a3314a9b141"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4d65d2f430c82dd92d5822728aa86e1f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4d65d2f430c82dd92d5822728aa86e1f">oval_state::oval_state_add_content</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *, struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *content)</td></tr>
<tr class="memdesc:ga4d65d2f430c82dd92d5822728aa86e1f"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of <a class="el" href="structoval__state__content.html">oval_state_content</a> to attribute oval_state->state_contents. <a href="#ga4d65d2f430c82dd92d5822728aa86e1f">More...</a><br/></td></tr>
<tr class="separator:ga4d65d2f430c82dd92d5822728aa86e1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1936e1bd45e7fd22d11f7477bd5d8456"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga1936e1bd45e7fd22d11f7477bd5d8456">oval_variable::oval_variable_set_comment</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, char *comment)</td></tr>
<tr class="memdesc:ga1936e1bd45e7fd22d11f7477bd5d8456"><td class="mdescLeft"> </td><td class="mdescRight">set attribute oval_variable->comment. <a href="#ga1936e1bd45e7fd22d11f7477bd5d8456">More...</a><br/></td></tr>
<tr class="separator:ga1936e1bd45e7fd22d11f7477bd5d8456"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9c02ae430af80d08c398953cada67318"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga9c02ae430af80d08c398953cada67318">oval_variable::oval_variable_set_version</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, int version)</td></tr>
<tr class="memdesc:ga9c02ae430af80d08c398953cada67318"><td class="mdescLeft"> </td><td class="mdescRight">set attribute oval_variable->version. <a href="#ga9c02ae430af80d08c398953cada67318">More...</a><br/></td></tr>
<tr class="separator:ga9c02ae430af80d08c398953cada67318"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga59596758acd538be98ebd9b8775ab794"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga59596758acd538be98ebd9b8775ab794">oval_variable::oval_variable_set_deprecated</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, bool deprecated)</td></tr>
<tr class="memdesc:ga59596758acd538be98ebd9b8775ab794"><td class="mdescLeft"> </td><td class="mdescRight">set attribute oval_variable->deprecated. <a href="#ga59596758acd538be98ebd9b8775ab794">More...</a><br/></td></tr>
<tr class="separator:ga59596758acd538be98ebd9b8775ab794"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga838bbd211257461e7f354bf5f88a8a64"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga838bbd211257461e7f354bf5f88a8a64">oval_variable::oval_variable_set_datatype</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, <a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a>)</td></tr>
<tr class="memdesc:ga838bbd211257461e7f354bf5f88a8a64"><td class="mdescLeft"> </td><td class="mdescRight">set attribute oval_variable->datatype. <a href="#ga838bbd211257461e7f354bf5f88a8a64">More...</a><br/></td></tr>
<tr class="separator:ga838bbd211257461e7f354bf5f88a8a64"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4e2a5d7f39daee5edf747f568fa90e69"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4e2a5d7f39daee5edf747f568fa90e69">oval_variable::oval_variable_add_value</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:ga4e2a5d7f39daee5edf747f568fa90e69"><td class="mdescLeft"> </td><td class="mdescRight">Append an instance of Oval_value to the attribute Oval_constant->values. <a href="#ga4e2a5d7f39daee5edf747f568fa90e69">More...</a><br/></td></tr>
<tr class="separator:ga4e2a5d7f39daee5edf747f568fa90e69"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga61cb4fd268434eb7f82400806be6e245"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga61cb4fd268434eb7f82400806be6e245">oval_variable::oval_variable_set_component</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *, struct <a class="el" href="structoval__component.html">oval_component</a> *component)</td></tr>
<tr class="memdesc:ga61cb4fd268434eb7f82400806be6e245"><td class="mdescLeft"> </td><td class="mdescRight">Bind an instance of Oval_component to the attribute Oval_local->component. <a href="#ga61cb4fd268434eb7f82400806be6e245">More...</a><br/></td></tr>
<tr class="separator:ga61cb4fd268434eb7f82400806be6e245"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7a089f0bf5c07c14e6b332c4ba1e36b1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a089f0bf5c07c14e6b332c4ba1e36b1"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7a089f0bf5c07c14e6b332c4ba1e36b1">oval_affected::oval_affected_set_family</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *, <a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a> family)</td></tr>
<tr class="memdesc:ga7a089f0bf5c07c14e6b332c4ba1e36b1"><td class="mdescLeft"> </td><td class="mdescRight">Set <a class="el" href="structoval__affected.html">oval_affected</a> family. <br/></td></tr>
<tr class="separator:ga7a089f0bf5c07c14e6b332c4ba1e36b1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4c9f46f654ca1b45bd26ed5e85d46db9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4c9f46f654ca1b45bd26ed5e85d46db9"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4c9f46f654ca1b45bd26ed5e85d46db9">oval_affected::oval_affected_add_platform</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *, char *platform_name)</td></tr>
<tr class="memdesc:ga4c9f46f654ca1b45bd26ed5e85d46db9"><td class="mdescLeft"> </td><td class="mdescRight">Append name to <a class="el" href="structoval__affected.html">oval_affected</a> platform names. <br/></td></tr>
<tr class="separator:ga4c9f46f654ca1b45bd26ed5e85d46db9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabc040498092740e14143a60da141d484"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabc040498092740e14143a60da141d484"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabc040498092740e14143a60da141d484">oval_affected::oval_affected_add_product</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *, char *product_name)</td></tr>
<tr class="memdesc:gabc040498092740e14143a60da141d484"><td class="mdescLeft"> </td><td class="mdescRight">Append name to <a class="el" href="structoval__affected.html">oval_affected</a> product names. <br/></td></tr>
<tr class="separator:gabc040498092740e14143a60da141d484"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gadbe51ecd95ea885ed7d4333d6a91bbf1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadbe51ecd95ea885ed7d4333d6a91bbf1"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gadbe51ecd95ea885ed7d4333d6a91bbf1">oval_reference::oval_reference_set_source</a> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *, char *)</td></tr>
<tr class="memdesc:gadbe51ecd95ea885ed7d4333d6a91bbf1"><td class="mdescLeft"> </td><td class="mdescRight">Set OVAL reference source. <br/></td></tr>
<tr class="separator:gadbe51ecd95ea885ed7d4333d6a91bbf1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa2ece3adf7082800549c2ead731ddae7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa2ece3adf7082800549c2ead731ddae7"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_reference::oval_reference_set_id</b> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *, char *)</td></tr>
<tr class="separator:gaa2ece3adf7082800549c2ead731ddae7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8e62130ab7edada5b4e32b28c3daf54b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8e62130ab7edada5b4e32b28c3daf54b"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_reference::oval_reference_set_url</b> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *, char *)</td></tr>
<tr class="separator:ga8e62130ab7edada5b4e32b28c3daf54b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaae4cb3c12dcf9c81d9fe596edb84b98c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaae4cb3c12dcf9c81d9fe596edb84b98c">oval_criteria_node::oval_criteria_node_set_negate</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, bool negate)</td></tr>
<tr class="memdesc:gaae4cb3c12dcf9c81d9fe596edb84b98c"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute Oval_criteria_node->negate. <a href="#gaae4cb3c12dcf9c81d9fe596edb84b98c">More...</a><br/></td></tr>
<tr class="separator:gaae4cb3c12dcf9c81d9fe596edb84b98c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga44a40c73f62e81c9992d2a74303d5db3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga44a40c73f62e81c9992d2a74303d5db3">oval_criteria_node::oval_criteria_node_set_applicability_check</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, bool applicability_check)</td></tr>
<tr class="memdesc:ga44a40c73f62e81c9992d2a74303d5db3"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute Oval_criteria_node->applicability_check. <a href="#ga44a40c73f62e81c9992d2a74303d5db3">More...</a><br/></td></tr>
<tr class="separator:ga44a40c73f62e81c9992d2a74303d5db3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad1642b4d3d5f33566e0edf35b102db09"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad1642b4d3d5f33566e0edf35b102db09">oval_criteria_node::oval_criteria_set_node_type</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *node, <a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> type)</td></tr>
<tr class="memdesc:gad1642b4d3d5f33566e0edf35b102db09"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute Oval_criteria_node->type. <a href="#gad1642b4d3d5f33566e0edf35b102db09">More...</a><br/></td></tr>
<tr class="separator:gad1642b4d3d5f33566e0edf35b102db09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaecaaae0442a015acc45128e26176213b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaecaaae0442a015acc45128e26176213b">oval_criteria_node::oval_criteria_node_set_comment</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, char *comment)</td></tr>
<tr class="memdesc:gaecaaae0442a015acc45128e26176213b"><td class="mdescLeft"> </td><td class="mdescRight">set attribute Oval_criteria_node->comment. <a href="#gaecaaae0442a015acc45128e26176213b">More...</a><br/></td></tr>
<tr class="separator:gaecaaae0442a015acc45128e26176213b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga90203e4a08e36e5beabf3eed5bf90ef6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga90203e4a08e36e5beabf3eed5bf90ef6">oval_criteria_node::oval_criteria_node_set_operator</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, <a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> op)</td></tr>
<tr class="memdesc:ga90203e4a08e36e5beabf3eed5bf90ef6"><td class="mdescLeft"> </td><td class="mdescRight">Set attribute Oval_criteria->operator. <a href="#ga90203e4a08e36e5beabf3eed5bf90ef6">More...</a><br/></td></tr>
<tr class="separator:ga90203e4a08e36e5beabf3eed5bf90ef6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga375735a4f1a0129f23bc06a5dd8b6adf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga375735a4f1a0129f23bc06a5dd8b6adf">oval_criteria_node::oval_criteria_node_add_subnode</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *node)</td></tr>
<tr class="memdesc:ga375735a4f1a0129f23bc06a5dd8b6adf"><td class="mdescLeft"> </td><td class="mdescRight">Append instance of Oval_criteria_node to attribute Oval_criteria->subnodes. <a href="#ga375735a4f1a0129f23bc06a5dd8b6adf">More...</a><br/></td></tr>
<tr class="separator:ga375735a4f1a0129f23bc06a5dd8b6adf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6984b998b1ef14bbf344399513e0a1b3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6984b998b1ef14bbf344399513e0a1b3">oval_criteria_node::oval_criteria_node_set_test</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga6984b998b1ef14bbf344399513e0a1b3"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute Oval_criterion->test. <a href="#ga6984b998b1ef14bbf344399513e0a1b3">More...</a><br/></td></tr>
<tr class="separator:ga6984b998b1ef14bbf344399513e0a1b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga33164b3c1f3ed91632b70cbeccf9bc81"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga33164b3c1f3ed91632b70cbeccf9bc81">oval_criteria_node::oval_criteria_node_set_definition</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *, struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga33164b3c1f3ed91632b70cbeccf9bc81"><td class="mdescLeft"> </td><td class="mdescRight">Sets attribute Oval_extends->definition. <a href="#ga33164b3c1f3ed91632b70cbeccf9bc81">More...</a><br/></td></tr>
<tr class="separator:ga33164b3c1f3ed91632b70cbeccf9bc81"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf3b573bc09b9b836e8e9ab5340e1ee80"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf3b573bc09b9b836e8e9ab5340e1ee80"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_set_type</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *, <a class="el" href="group__OVALDEF.html#gaf5a61d142a62eb195ad4483627e458b4">oval_object_content_type_t</a>)</td></tr>
<tr class="separator:gaf3b573bc09b9b836e8e9ab5340e1ee80"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga71f9b3678c420a99fe85758149c705ba"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71f9b3678c420a99fe85758149c705ba"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_set_field_name</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *, char *)</td></tr>
<tr class="separator:ga71f9b3678c420a99fe85758149c705ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga97f968d3a803bba48282f6bb482ecd31"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga97f968d3a803bba48282f6bb482ecd31"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_set_entity</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *, struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="separator:ga97f968d3a803bba48282f6bb482ecd31"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf7b7aa56aae34b3fa94cc07a05095396"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf7b7aa56aae34b3fa94cc07a05095396"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_set_varCheck</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:gaf7b7aa56aae34b3fa94cc07a05095396"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab7619136a02d18bf08f86934894225e6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab7619136a02d18bf08f86934894225e6"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content::oval_object_content_set_setobject</b> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *, struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="separator:gab7619136a02d18bf08f86934894225e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae7dd9303342148ca4d37d2a9ac5cf926"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae7dd9303342148ca4d37d2a9ac5cf926"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_behavior::oval_behavior_set_keyval</b> (struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *behavior, const char *key, const char *value)</td></tr>
<tr class="separator:gae7dd9303342148ca4d37d2a9ac5cf926"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga81ba018925b4e6930a921c93e324dbc8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga81ba018925b4e6930a921c93e324dbc8"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_set_entity</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *, struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="separator:ga81ba018925b4e6930a921c93e324dbc8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga95d22aaaf67016d99cb56405eeffaf6f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga95d22aaaf67016d99cb56405eeffaf6f"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_add_record_field</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *, struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga95d22aaaf67016d99cb56405eeffaf6f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1824c375167f6211c7fae1a243e56f38"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1824c375167f6211c7fae1a243e56f38"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_set_varcheck</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:ga1824c375167f6211c7fae1a243e56f38"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa27765cdca213cfac83ad455ddd4c8eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa27765cdca213cfac83ad455ddd4c8eb"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_set_entcheck</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:gaa27765cdca213cfac83ad455ddd4c8eb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga71365c59e0701a5f1eae2143bec9e43e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71365c59e0701a5f1eae2143bec9e43e"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_value::oval_value_set_datatype</b> (struct <a class="el" href="structoval__value.html">oval_value</a> *, <a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a>)</td></tr>
<tr class="separator:ga71365c59e0701a5f1eae2143bec9e43e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga62129c97442d3e39cbd998495605d610"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga62129c97442d3e39cbd998495605d610"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_type</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, <a class="el" href="group__OVALDEF.html#gac9a4faa0d289b6b2dabb76d43b03b671">oval_entity_type_t</a>)</td></tr>
<tr class="separator:ga62129c97442d3e39cbd998495605d610"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga70e69756b8ebd5a36414d49c3d58b09c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga70e69756b8ebd5a36414d49c3d58b09c"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_datatype</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, <a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a>)</td></tr>
<tr class="separator:ga70e69756b8ebd5a36414d49c3d58b09c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6b672fbf30c7c265e2770f67fea1895a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6b672fbf30c7c265e2770f67fea1895a"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_mask</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, int)</td></tr>
<tr class="separator:ga6b672fbf30c7c265e2770f67fea1895a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga736f0b0cf2a151c8563b6113c3036365"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga736f0b0cf2a151c8563b6113c3036365"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_varref_type</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, <a class="el" href="group__OVALDEF.html#gaf188be33624f01de2946ce6e58b6bf53">oval_entity_varref_type_t</a>)</td></tr>
<tr class="separator:ga736f0b0cf2a151c8563b6113c3036365"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5cf3a420a07e6562668ddb6df19ce4bc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5cf3a420a07e6562668ddb6df19ce4bc"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_variable</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="separator:ga5cf3a420a07e6562668ddb6df19ce4bc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga79e318b7f27d0cc558af8153ad53474d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga79e318b7f27d0cc558af8153ad53474d"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_value</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="separator:ga79e318b7f27d0cc558af8153ad53474d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1cbc0afb10e52caaf287da1e4cb79fa1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1cbc0afb10e52caaf287da1e4cb79fa1"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_name</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, char *)</td></tr>
<tr class="separator:ga1cbc0afb10e52caaf287da1e4cb79fa1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3a51d3e90396c6e18bd730c4d7223947"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a51d3e90396c6e18bd730c4d7223947"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity::oval_entity_set_operation</b> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *, <a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a>)</td></tr>
<tr class="separator:ga3a51d3e90396c6e18bd730c4d7223947"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5d053bd5825f81fbea9ec761ddfa5029"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d053bd5825f81fbea9ec761ddfa5029"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_name</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, char *)</td></tr>
<tr class="separator:ga5d053bd5825f81fbea9ec761ddfa5029"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga85d403decd88bc042f2333589941b877"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga85d403decd88bc042f2333589941b877"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_value</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, char *)</td></tr>
<tr class="separator:ga85d403decd88bc042f2333589941b877"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa9fcc2051ff513523fa2413420986da8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa9fcc2051ff513523fa2413420986da8"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_datatype</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, <a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a>)</td></tr>
<tr class="separator:gaa9fcc2051ff513523fa2413420986da8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab0a19f71d944c7b0ba4f7ae70d66224c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab0a19f71d944c7b0ba4f7ae70d66224c"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_mask</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, int)</td></tr>
<tr class="separator:gab0a19f71d944c7b0ba4f7ae70d66224c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf0792df66390bec8679071058a99dceb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf0792df66390bec8679071058a99dceb"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_operation</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, <a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a>)</td></tr>
<tr class="separator:gaf0792df66390bec8679071058a99dceb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga03cd29f618f2c8442cc394866c67b822"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga03cd29f618f2c8442cc394866c67b822"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_variable</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="separator:ga03cd29f618f2c8442cc394866c67b822"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9e33e2ace7cc877d104a4624a33d9989"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e33e2ace7cc877d104a4624a33d9989"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_var_check</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:ga9e33e2ace7cc877d104a4624a33d9989"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga94a965bd262810606f4efe50e49eecf7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga94a965bd262810606f4efe50e49eecf7"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_set_ent_check</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *, <a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a>)</td></tr>
<tr class="separator:ga94a965bd262810606f4efe50e49eecf7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga35e8d90c9ebee67d2fff6d525698d9b9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga35e8d90c9ebee67d2fff6d525698d9b9"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_set_state</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *, struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="separator:ga35e8d90c9ebee67d2fff6d525698d9b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga43586ef7279d8ad0d0695e60024fc949"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga43586ef7279d8ad0d0695e60024fc949"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_set_filter_action</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *, <a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a>)</td></tr>
<tr class="separator:ga43586ef7279d8ad0d0695e60024fc949"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga16cd6aef8f9112d9e18064ee34f05fd1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga16cd6aef8f9112d9e18064ee34f05fd1"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_set_operation</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *, <a class="el" href="group__OVALDEF.html#ga695dd73f42848ceb78bc9c9b3794e08c">oval_setobject_operation_t</a>)</td></tr>
<tr class="separator:ga16cd6aef8f9112d9e18064ee34f05fd1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafab22fe2d7d8830f61293a303b1378f6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafab22fe2d7d8830f61293a303b1378f6"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_add_subset</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *, struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="separator:gafab22fe2d7d8830f61293a303b1378f6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac669598e93248a51982e5a55c9f4f979"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac669598e93248a51982e5a55c9f4f979"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_add_object</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *, struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="separator:gac669598e93248a51982e5a55c9f4f979"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0603bf74a372bb3b76cc484f72d56f25"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0603bf74a372bb3b76cc484f72d56f25"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_setobject::oval_setobject_add_filter</b> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *, struct <a class="el" href="structoval__filter.html">oval_filter</a> *)</td></tr>
<tr class="separator:ga0603bf74a372bb3b76cc484f72d56f25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf67af5d96085df7991854edeb04463b5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf67af5d96085df7991854edeb04463b5"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf67af5d96085df7991854edeb04463b5">oval_component::oval_component_set_type</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *component, <a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> type)</td></tr>
<tr class="memdesc:gaf67af5d96085df7991854edeb04463b5"><td class="mdescLeft"> </td><td class="mdescRight">Set type of component Oval_component->type. <br/></td></tr>
<tr class="separator:gaf67af5d96085df7991854edeb04463b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga616450ba90f74f9d3625ad5677c19f3f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga616450ba90f74f9d3625ad5677c19f3f">oval_component::oval_component_set_object</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *, struct <a class="el" href="structoval__object.html">oval_object</a> *object)</td></tr>
<tr class="memdesc:ga616450ba90f74f9d3625ad5677c19f3f"><td class="mdescLeft"> </td><td class="mdescRight">set attribute Oval_component_object->object. <a href="#ga616450ba90f74f9d3625ad5677c19f3f">More...</a><br/></td></tr>
<tr class="separator:ga616450ba90f74f9d3625ad5677c19f3f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8bc495fa304b1d90ec9487603bb247cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bc495fa304b1d90ec9487603bb247cc"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8bc495fa304b1d90ec9487603bb247cc">oval_component::oval_component_set_item_field</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="memdesc:ga8bc495fa304b1d90ec9487603bb247cc"><td class="mdescLeft"> </td><td class="mdescRight">set attribute Oval_component_object->item_field. <br/></td></tr>
<tr class="separator:ga8bc495fa304b1d90ec9487603bb247cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga03baa694cbed27c38e190afa581b3415"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga03baa694cbed27c38e190afa581b3415"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga03baa694cbed27c38e190afa581b3415">oval_component::oval_component_set_record_field</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="memdesc:ga03baa694cbed27c38e190afa581b3415"><td class="mdescLeft"> </td><td class="mdescRight">set attribute Oval_component_object->record_field. <br/></td></tr>
<tr class="separator:ga03baa694cbed27c38e190afa581b3415"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga01c134ccc83dabf51c3f5f13adc254fd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga01c134ccc83dabf51c3f5f13adc254fd">oval_component::oval_component_set_variable</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *, struct <a class="el" href="structoval__variable.html">oval_variable</a> *variable)</td></tr>
<tr class="memdesc:ga01c134ccc83dabf51c3f5f13adc254fd"><td class="mdescLeft"> </td><td class="mdescRight">set attribute Oval_component_object->variable. <a href="#ga01c134ccc83dabf51c3f5f13adc254fd">More...</a><br/></td></tr>
<tr class="separator:ga01c134ccc83dabf51c3f5f13adc254fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9779998c267be7fd628ee44f6be12403"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9779998c267be7fd628ee44f6be12403"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_add_function_component</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="separator:ga9779998c267be7fd628ee44f6be12403"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac0fa4d930d0f4aa58f47b817981cf8a4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac0fa4d930d0f4aa58f47b817981cf8a4"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_arithmetic_operation</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, <a class="el" href="group__OVALDEF.html#gadca2ff0881da30f974d92a549dc76c4c">oval_arithmetic_operation_t</a>)</td></tr>
<tr class="separator:gac0fa4d930d0f4aa58f47b817981cf8a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga622425949a0c57794f1eb340746b041d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga622425949a0c57794f1eb340746b041d"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_prefix</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="separator:ga622425949a0c57794f1eb340746b041d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabe96e05c2af580da13019f61b4d2437a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabe96e05c2af580da13019f61b4d2437a"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_suffix</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="separator:gabe96e05c2af580da13019f61b4d2437a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf7c8a9ef0119ea4de2ea9d914fc62e12"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf7c8a9ef0119ea4de2ea9d914fc62e12"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_split_delimiter</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="separator:gaf7c8a9ef0119ea4de2ea9d914fc62e12"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8096e3718d2c9c5e44fa045bba92b8cd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8096e3718d2c9c5e44fa045bba92b8cd"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_substring_start</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, int)</td></tr>
<tr class="separator:ga8096e3718d2c9c5e44fa045bba92b8cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga42ad82b6c60fd8e618f2d08df331425d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga42ad82b6c60fd8e618f2d08df331425d"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_substring_length</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, int)</td></tr>
<tr class="separator:ga42ad82b6c60fd8e618f2d08df331425d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1d0d9dfc579682af8265c620a205b718"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1d0d9dfc579682af8265c620a205b718"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_timedif_format_1</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, <a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a>)</td></tr>
<tr class="separator:ga1d0d9dfc579682af8265c620a205b718"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad7505a4f526116ca0e8b8027ab4880ed"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad7505a4f526116ca0e8b8027ab4880ed"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_timedif_format_2</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, <a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a>)</td></tr>
<tr class="separator:gad7505a4f526116ca0e8b8027ab4880ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga955452823f0322eb9fa3f24e7374ede0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga955452823f0322eb9fa3f24e7374ede0"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_regex_pattern</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, char *)</td></tr>
<tr class="separator:ga955452823f0322eb9fa3f24e7374ede0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad7149cee28c74dc18a82b604728a370c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad7149cee28c74dc18a82b604728a370c"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_component::oval_component_set_literal_value</b> (struct <a class="el" href="structoval__component.html">oval_component</a> *, struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="separator:gad7149cee28c74dc18a82b604728a370c"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="member-group"></a>
Getters</h2></td></tr>
<tr class="memitem:gaba36b2158f1e7f252216aca28d93b224"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaba36b2158f1e7f252216aca28d93b224"></a>
struct <a class="el" href="structoval__generator.html">oval_generator</a> * </td><td class="memItemRight" valign="bottom"><b>oval_definition_model_get_generator</b> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="separator:gaba36b2158f1e7f252216aca28d93b224"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafde45ea5a1f69dc8859fe3a60811311b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafde45ea5a1f69dc8859fe3a60811311b"></a>
oval_version_t </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gafde45ea5a1f69dc8859fe3a60811311b">oval_object_get_schema_version</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *object)</td></tr>
<tr class="memdesc:gafde45ea5a1f69dc8859fe3a60811311b"><td class="mdescLeft"> </td><td class="mdescRight">Returns schema version of the associated definition model. <br/></td></tr>
<tr class="separator:gafde45ea5a1f69dc8859fe3a60811311b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad8548d0af50e84b98325b4ddb28e2694"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad8548d0af50e84b98325b4ddb28e2694">oval_definition_model::oval_definition_model_get_definition</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *, const char *id)</td></tr>
<tr class="memdesc:gad8548d0af50e84b98325b4ddb28e2694"><td class="mdescLeft"> </td><td class="mdescRight">Returns the appended <a class="el" href="structoval__definition.html">oval_definition</a> having the specified id. <a href="#gad8548d0af50e84b98325b4ddb28e2694">More...</a><br/></td></tr>
<tr class="separator:gad8548d0af50e84b98325b4ddb28e2694"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4278f3ca4e6329a19c3ac06bf73489d0"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__test.html">oval_test</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4278f3ca4e6329a19c3ac06bf73489d0">oval_definition_model::oval_definition_model_get_test</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *id)</td></tr>
<tr class="memdesc:ga4278f3ca4e6329a19c3ac06bf73489d0"><td class="mdescLeft"> </td><td class="mdescRight">Get oval test by ID. <a href="#ga4278f3ca4e6329a19c3ac06bf73489d0">More...</a><br/></td></tr>
<tr class="separator:ga4278f3ca4e6329a19c3ac06bf73489d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa853307ec061645bf33840d146f27a8d"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa853307ec061645bf33840d146f27a8d">oval_definition_model::oval_definition_model_get_object</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *id)</td></tr>
<tr class="memdesc:gaa853307ec061645bf33840d146f27a8d"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL object by ID. <a href="#gaa853307ec061645bf33840d146f27a8d">More...</a><br/></td></tr>
<tr class="separator:gaa853307ec061645bf33840d146f27a8d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa1c70702d70206abbae0ca9bdef54799"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa1c70702d70206abbae0ca9bdef54799">oval_definition_model::oval_definition_model_get_state</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *id)</td></tr>
<tr class="memdesc:gaa1c70702d70206abbae0ca9bdef54799"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL state by ID. <a href="#gaa1c70702d70206abbae0ca9bdef54799">More...</a><br/></td></tr>
<tr class="separator:gaa1c70702d70206abbae0ca9bdef54799"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga54268c4bd0674ca69b9f97e338a0a58b"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga54268c4bd0674ca69b9f97e338a0a58b">oval_definition_model::oval_definition_model_get_variable</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model, const char *id)</td></tr>
<tr class="memdesc:ga54268c4bd0674ca69b9f97e338a0a58b"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL variable by ID. <a href="#ga54268c4bd0674ca69b9f97e338a0a58b">More...</a><br/></td></tr>
<tr class="separator:ga54268c4bd0674ca69b9f97e338a0a58b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab055de9725a0d9c5576bc97be253c0b0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab055de9725a0d9c5576bc97be253c0b0"></a>
struct <a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab055de9725a0d9c5576bc97be253c0b0">oval_definition_model::oval_definition_model_get_definitions</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:gab055de9725a0d9c5576bc97be253c0b0"><td class="mdescLeft"> </td><td class="mdescRight">Returns all appended <a class="el" href="structoval__definition.html">oval_definition</a> instances. <br/></td></tr>
<tr class="separator:gab055de9725a0d9c5576bc97be253c0b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga799f6aa6c3e8f78af3d5a74089b6a850"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__test__iterator.html">oval_test_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga799f6aa6c3e8f78af3d5a74089b6a850">oval_definition_model::oval_definition_model_get_tests</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:ga799f6aa6c3e8f78af3d5a74089b6a850"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL tests. <a href="#ga799f6aa6c3e8f78af3d5a74089b6a850">More...</a><br/></td></tr>
<tr class="separator:ga799f6aa6c3e8f78af3d5a74089b6a850"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7fc7c974c220e0d955f01295aaf636e4"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7fc7c974c220e0d955f01295aaf636e4">oval_definition_model::oval_definition_model_get_objects</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:ga7fc7c974c220e0d955f01295aaf636e4"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL objects. <a href="#ga7fc7c974c220e0d955f01295aaf636e4">More...</a><br/></td></tr>
<tr class="separator:ga7fc7c974c220e0d955f01295aaf636e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4f3d5bd5ebfe440f90a33272b7fb46c6"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4f3d5bd5ebfe440f90a33272b7fb46c6">oval_definition_model::oval_definition_model_get_states</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:ga4f3d5bd5ebfe440f90a33272b7fb46c6"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL states. <a href="#ga4f3d5bd5ebfe440f90a33272b7fb46c6">More...</a><br/></td></tr>
<tr class="separator:ga4f3d5bd5ebfe440f90a33272b7fb46c6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf89fe89094155a4ee46633489712e247"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf89fe89094155a4ee46633489712e247">oval_definition_model::oval_definition_model_get_variables</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *model)</td></tr>
<tr class="memdesc:gaf89fe89094155a4ee46633489712e247"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL variables. <a href="#gaf89fe89094155a4ee46633489712e247">More...</a><br/></td></tr>
<tr class="separator:gaf89fe89094155a4ee46633489712e247"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga80e2cee5cca6dee041a3ef6f289a320b"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga80e2cee5cca6dee041a3ef6f289a320b">oval_definition_model::oval_definition_model_supported</a> (void)</td></tr>
<tr class="memdesc:ga80e2cee5cca6dee041a3ef6f289a320b"><td class="mdescLeft"> </td><td class="mdescRight">Get supported version of OVAL XML. <a href="#ga80e2cee5cca6dee041a3ef6f289a320b">More...</a><br/></td></tr>
<tr class="separator:ga80e2cee5cca6dee041a3ef6f289a320b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6f9bac734358ca90312436cd68ca4494"><td class="memItemLeft" align="right" valign="top">struct <br class="typebreak"/>
<a class="el" href="structoval__variable__model__iterator.html">oval_variable_model_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6f9bac734358ca90312436cd68ca4494">oval_definition_model::oval_definition_model_get_variable_models</a> (struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> *)</td></tr>
<tr class="memdesc:ga6f9bac734358ca90312436cd68ca4494"><td class="mdescLeft"> </td><td class="mdescRight">Return the list of variable models bound to the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. <a href="#ga6f9bac734358ca90312436cd68ca4494">More...</a><br/></td></tr>
<tr class="separator:ga6f9bac734358ca90312436cd68ca4494"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga99081e73c5061713ad525ad5655a8256"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga99081e73c5061713ad525ad5655a8256"></a>
char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga99081e73c5061713ad525ad5655a8256">oval_definition::oval_definition_get_id</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga99081e73c5061713ad525ad5655a8256"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->id (identifier). <br/></td></tr>
<tr class="separator:ga99081e73c5061713ad525ad5655a8256"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga311335f5126c9713b5f862b64dc0431c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga311335f5126c9713b5f862b64dc0431c">oval_definition::oval_definition_get_version</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga311335f5126c9713b5f862b64dc0431c"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->version. <a href="#ga311335f5126c9713b5f862b64dc0431c">More...</a><br/></td></tr>
<tr class="separator:ga311335f5126c9713b5f862b64dc0431c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga673e679af81822caefa51b35904fd4b5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga673e679af81822caefa51b35904fd4b5"></a>
<a class="el" href="oval__types_8h.html#a3323efc68980168d0187c26dd22bfce1">oval_definition_class_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga673e679af81822caefa51b35904fd4b5">oval_definition::oval_definition_get_class</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga673e679af81822caefa51b35904fd4b5"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->class. <br/></td></tr>
<tr class="separator:ga673e679af81822caefa51b35904fd4b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad9ccbdb5e7d16da6f8ab0309a91359c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad9ccbdb5e7d16da6f8ab0309a91359c8"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad9ccbdb5e7d16da6f8ab0309a91359c8">oval_definition::oval_definition_get_deprecated</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:gad9ccbdb5e7d16da6f8ab0309a91359c8"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->deprecated. <br/></td></tr>
<tr class="separator:gad9ccbdb5e7d16da6f8ab0309a91359c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf256261a2bdf5097472a61696d528013"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf256261a2bdf5097472a61696d528013">oval_definition::oval_definition_get_title</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:gaf256261a2bdf5097472a61696d528013"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->title. <a href="#gaf256261a2bdf5097472a61696d528013">More...</a><br/></td></tr>
<tr class="separator:gaf256261a2bdf5097472a61696d528013"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5ee99958ccc7504e32fd6d41362c331b"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5ee99958ccc7504e32fd6d41362c331b">oval_definition::oval_definition_get_description</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga5ee99958ccc7504e32fd6d41362c331b"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->description. <a href="#ga5ee99958ccc7504e32fd6d41362c331b">More...</a><br/></td></tr>
<tr class="separator:ga5ee99958ccc7504e32fd6d41362c331b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga23b53971a6953e8f6e92385ea297bb5d"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga23b53971a6953e8f6e92385ea297bb5d">oval_definition::oval_definition_get_affected</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga23b53971a6953e8f6e92385ea297bb5d"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->affected. <a href="#ga23b53971a6953e8f6e92385ea297bb5d">More...</a><br/></td></tr>
<tr class="separator:ga23b53971a6953e8f6e92385ea297bb5d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga31a2cc76f167f1b436ab7f4d0b6a7b78"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga31a2cc76f167f1b436ab7f4d0b6a7b78">oval_definition::oval_definition_get_references</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:ga31a2cc76f167f1b436ab7f4d0b6a7b78"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->references. <a href="#ga31a2cc76f167f1b436ab7f4d0b6a7b78">More...</a><br/></td></tr>
<tr class="separator:ga31a2cc76f167f1b436ab7f4d0b6a7b78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa6d0f0af7d4f71c5c917a9d18debe997"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa6d0f0af7d4f71c5c917a9d18debe997">oval_definition::oval_definition_get_notes</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:gaa6d0f0af7d4f71c5c917a9d18debe997"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->notes. <a href="#gaa6d0f0af7d4f71c5c917a9d18debe997">More...</a><br/></td></tr>
<tr class="separator:gaa6d0f0af7d4f71c5c917a9d18debe997"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa771c9866e018d4445433c07a107abf4"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa771c9866e018d4445433c07a107abf4">oval_definition::oval_definition_get_criteria</a> (struct <a class="el" href="structoval__definition.html">oval_definition</a> *)</td></tr>
<tr class="memdesc:gaa771c9866e018d4445433c07a107abf4"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_definition->criteria. <a href="#gaa771c9866e018d4445433c07a107abf4">More...</a><br/></td></tr>
<tr class="separator:gaa771c9866e018d4445433c07a107abf4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9117f88bc22190b4259f4582e4bdf1ea"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9117f88bc22190b4259f4582e4bdf1ea"></a>
<a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga9117f88bc22190b4259f4582e4bdf1ea">oval_test::oval_test_get_family</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga9117f88bc22190b4259f4582e4bdf1ea"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_test->family. <br/></td></tr>
<tr class="separator:ga9117f88bc22190b4259f4582e4bdf1ea"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafb0d0e037ebdc3fb821f31b48b9cc971"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafb0d0e037ebdc3fb821f31b48b9cc971"></a>
<a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gafb0d0e037ebdc3fb821f31b48b9cc971">oval_test::oval_test_get_subtype</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:gafb0d0e037ebdc3fb821f31b48b9cc971"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_test->subtype. <br/></td></tr>
<tr class="separator:gafb0d0e037ebdc3fb821f31b48b9cc971"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5">oval_test::oval_test_get_notes</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->notes. <a href="#ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5">More...</a><br/></td></tr>
<tr class="separator:ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaaf2b6790594b8c9059e395b5728430d4"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaaf2b6790594b8c9059e395b5728430d4">oval_test::oval_test_get_comment</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:gaaf2b6790594b8c9059e395b5728430d4"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_test->comment. <a href="#gaaf2b6790594b8c9059e395b5728430d4">More...</a><br/></td></tr>
<tr class="separator:gaaf2b6790594b8c9059e395b5728430d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga61cf9cf8bb52f48b50e45cd9a688c186"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga61cf9cf8bb52f48b50e45cd9a688c186">oval_test::oval_test_get_id</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga61cf9cf8bb52f48b50e45cd9a688c186"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->id. <a href="#ga61cf9cf8bb52f48b50e45cd9a688c186">More...</a><br/></td></tr>
<tr class="separator:ga61cf9cf8bb52f48b50e45cd9a688c186"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga99fc23f8fee128ad33279a8395ed147c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga99fc23f8fee128ad33279a8395ed147c"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga99fc23f8fee128ad33279a8395ed147c">oval_test::oval_test_get_deprecated</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga99fc23f8fee128ad33279a8395ed147c"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->deprecated. <br/></td></tr>
<tr class="separator:ga99fc23f8fee128ad33279a8395ed147c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8c8c00d84d71525d403c4ef6497c7b15"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8c8c00d84d71525d403c4ef6497c7b15"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8c8c00d84d71525d403c4ef6497c7b15">oval_test::oval_test_get_version</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga8c8c00d84d71525d403c4ef6497c7b15"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->version. <br/></td></tr>
<tr class="separator:ga8c8c00d84d71525d403c4ef6497c7b15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0a8a7e53f517982abbe49bc531a4045c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0a8a7e53f517982abbe49bc531a4045c"></a>
<a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0a8a7e53f517982abbe49bc531a4045c">oval_test::oval_test_get_state_operator</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga0a8a7e53f517982abbe49bc531a4045c"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->state_operator. <br/></td></tr>
<tr class="separator:ga0a8a7e53f517982abbe49bc531a4045c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaaababad2d3e59cd49613ba81e49fc530"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaaababad2d3e59cd49613ba81e49fc530"></a>
<a class="el" href="group__OVALDEF.html#ga523a0461b03a564f296f54a73f99ade1">oval_existence_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaaababad2d3e59cd49613ba81e49fc530">oval_test::oval_test_get_existence</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:gaaababad2d3e59cd49613ba81e49fc530"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->existence. <br/></td></tr>
<tr class="separator:gaaababad2d3e59cd49613ba81e49fc530"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0d3de7d44b0a1f25a4f752dfc88ebfa7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0d3de7d44b0a1f25a4f752dfc88ebfa7"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0d3de7d44b0a1f25a4f752dfc88ebfa7">oval_test::oval_test_get_check</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga0d3de7d44b0a1f25a4f752dfc88ebfa7"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->check. <br/></td></tr>
<tr class="separator:ga0d3de7d44b0a1f25a4f752dfc88ebfa7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga630ee349c16490b939e0b0cacea2dd07"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga630ee349c16490b939e0b0cacea2dd07">oval_test::oval_test_get_object</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga630ee349c16490b939e0b0cacea2dd07"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->object. <a href="#ga630ee349c16490b939e0b0cacea2dd07">More...</a><br/></td></tr>
<tr class="separator:ga630ee349c16490b939e0b0cacea2dd07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga13f4792ecb3498cef35f4c32472d072a"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga13f4792ecb3498cef35f4c32472d072a">oval_test::oval_test_get_states</a> (struct <a class="el" href="structoval__test.html">oval_test</a> *)</td></tr>
<tr class="memdesc:ga13f4792ecb3498cef35f4c32472d072a"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_test->states. <a href="#ga13f4792ecb3498cef35f4c32472d072a">More...</a><br/></td></tr>
<tr class="separator:ga13f4792ecb3498cef35f4c32472d072a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga37ae5b026dae3ba19307bee4eabae755"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga37ae5b026dae3ba19307bee4eabae755"></a>
<a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga37ae5b026dae3ba19307bee4eabae755">oval_object::oval_object_get_family</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga37ae5b026dae3ba19307bee4eabae755"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->family. <br/></td></tr>
<tr class="separator:ga37ae5b026dae3ba19307bee4eabae755"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga84349daf1af6150c3cacdf5e1de6cd1e"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga84349daf1af6150c3cacdf5e1de6cd1e">oval_object::oval_object_get_name</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga84349daf1af6150c3cacdf5e1de6cd1e"><td class="mdescLeft"> </td><td class="mdescRight">Returns the name of an <a class="el" href="structoval__object.html">oval_object</a>. <a href="#ga84349daf1af6150c3cacdf5e1de6cd1e">More...</a><br/></td></tr>
<tr class="separator:ga84349daf1af6150c3cacdf5e1de6cd1e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0d345c0d277c3ddb7d3919eafbbbb1bd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0d345c0d277c3ddb7d3919eafbbbb1bd"></a>
<a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0d345c0d277c3ddb7d3919eafbbbb1bd">oval_object::oval_object_get_subtype</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga0d345c0d277c3ddb7d3919eafbbbb1bd"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->subtype. <br/></td></tr>
<tr class="separator:ga0d345c0d277c3ddb7d3919eafbbbb1bd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3c9bdd066ff355ac056618c3087e0fb1"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga3c9bdd066ff355ac056618c3087e0fb1">oval_object::oval_object_get_notes</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga3c9bdd066ff355ac056618c3087e0fb1"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->notes. <a href="#ga3c9bdd066ff355ac056618c3087e0fb1">More...</a><br/></td></tr>
<tr class="separator:ga3c9bdd066ff355ac056618c3087e0fb1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1f96b1099febf9cad3f8b8830be86b82"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga1f96b1099febf9cad3f8b8830be86b82">oval_object::oval_object_get_comment</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga1f96b1099febf9cad3f8b8830be86b82"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->comment. <a href="#ga1f96b1099febf9cad3f8b8830be86b82">More...</a><br/></td></tr>
<tr class="separator:ga1f96b1099febf9cad3f8b8830be86b82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7caf7a93229db23933ddb155db9314fa"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7caf7a93229db23933ddb155db9314fa">oval_object::oval_object_get_id</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga7caf7a93229db23933ddb155db9314fa"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->id. <a href="#ga7caf7a93229db23933ddb155db9314fa">More...</a><br/></td></tr>
<tr class="separator:ga7caf7a93229db23933ddb155db9314fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0e2c853a129e06691591d76f57ca7076"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0e2c853a129e06691591d76f57ca7076"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0e2c853a129e06691591d76f57ca7076">oval_object::oval_object_get_deprecated</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:ga0e2c853a129e06691591d76f57ca7076"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->deprecated. <br/></td></tr>
<tr class="separator:ga0e2c853a129e06691591d76f57ca7076"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf4bc6662c4a38bf0667d44a2ef3d837b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf4bc6662c4a38bf0667d44a2ef3d837b"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf4bc6662c4a38bf0667d44a2ef3d837b">oval_object::oval_object_get_version</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:gaf4bc6662c4a38bf0667d44a2ef3d837b"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->version. <br/></td></tr>
<tr class="separator:gaf4bc6662c4a38bf0667d44a2ef3d837b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaea7af3fbe1776527e8eef6233aebe3b5"><td class="memItemLeft" align="right" valign="top">struct <br class="typebreak"/>
<a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaea7af3fbe1776527e8eef6233aebe3b5">oval_object::oval_object_get_object_contents</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:gaea7af3fbe1776527e8eef6233aebe3b5"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->contents. <a href="#gaea7af3fbe1776527e8eef6233aebe3b5">More...</a><br/></td></tr>
<tr class="separator:gaea7af3fbe1776527e8eef6233aebe3b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab8bd2340de0758874def8c260fdd4054"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab8bd2340de0758874def8c260fdd4054">oval_object::oval_object_get_behaviors</a> (struct <a class="el" href="structoval__object.html">oval_object</a> *)</td></tr>
<tr class="memdesc:gab8bd2340de0758874def8c260fdd4054"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_object->behaviors. <a href="#gab8bd2340de0758874def8c260fdd4054">More...</a><br/></td></tr>
<tr class="separator:gab8bd2340de0758874def8c260fdd4054"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8693c2d07171ce7fa37cd41b253a9348"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8693c2d07171ce7fa37cd41b253a9348"></a>
<a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8693c2d07171ce7fa37cd41b253a9348">oval_state::oval_state_get_family</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga8693c2d07171ce7fa37cd41b253a9348"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->family. <br/></td></tr>
<tr class="separator:ga8693c2d07171ce7fa37cd41b253a9348"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga685f5e181ecde5479106f1b72030013d"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga685f5e181ecde5479106f1b72030013d">oval_state::oval_state_get_name</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga685f5e181ecde5479106f1b72030013d"><td class="mdescLeft"> </td><td class="mdescRight">Returns the name of an <a class="el" href="structoval__state.html">oval_state</a>. <a href="#ga685f5e181ecde5479106f1b72030013d">More...</a><br/></td></tr>
<tr class="separator:ga685f5e181ecde5479106f1b72030013d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gadb8affdb7564eff0b6b5ef3ee3f73512"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadb8affdb7564eff0b6b5ef3ee3f73512"></a>
<a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gadb8affdb7564eff0b6b5ef3ee3f73512">oval_state::oval_state_get_subtype</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:gadb8affdb7564eff0b6b5ef3ee3f73512"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->subtype. <br/></td></tr>
<tr class="separator:gadb8affdb7564eff0b6b5ef3ee3f73512"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2a3675893b4241ffdee4447f7d1aa3f2"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2a3675893b4241ffdee4447f7d1aa3f2">oval_state::oval_state_get_notes</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga2a3675893b4241ffdee4447f7d1aa3f2"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->notes. <a href="#ga2a3675893b4241ffdee4447f7d1aa3f2">More...</a><br/></td></tr>
<tr class="separator:ga2a3675893b4241ffdee4447f7d1aa3f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8edde47e7d781d442cbc8e5fdf37e9b7"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8edde47e7d781d442cbc8e5fdf37e9b7">oval_state::oval_state_get_comment</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga8edde47e7d781d442cbc8e5fdf37e9b7"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->comment. <a href="#ga8edde47e7d781d442cbc8e5fdf37e9b7">More...</a><br/></td></tr>
<tr class="separator:ga8edde47e7d781d442cbc8e5fdf37e9b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga72a7ee9bae3338e20ff89aa51b0d95d0"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga72a7ee9bae3338e20ff89aa51b0d95d0">oval_state::oval_state_get_id</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga72a7ee9bae3338e20ff89aa51b0d95d0"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->id. <a href="#ga72a7ee9bae3338e20ff89aa51b0d95d0">More...</a><br/></td></tr>
<tr class="separator:ga72a7ee9bae3338e20ff89aa51b0d95d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga272d726ebb434d85c0c9b084e88e3b17"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga272d726ebb434d85c0c9b084e88e3b17"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga272d726ebb434d85c0c9b084e88e3b17">oval_state::oval_state_get_deprecated</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga272d726ebb434d85c0c9b084e88e3b17"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->deprecated. <br/></td></tr>
<tr class="separator:ga272d726ebb434d85c0c9b084e88e3b17"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga989cf2ff0a094e5d1b7ee107cc0bfdc9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga989cf2ff0a094e5d1b7ee107cc0bfdc9"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga989cf2ff0a094e5d1b7ee107cc0bfdc9">oval_state::oval_state_get_version</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga989cf2ff0a094e5d1b7ee107cc0bfdc9"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->version. <br/></td></tr>
<tr class="separator:ga989cf2ff0a094e5d1b7ee107cc0bfdc9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaab999ca597b76309cc58214d2023a678"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaab999ca597b76309cc58214d2023a678"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaab999ca597b76309cc58214d2023a678">oval_state::oval_state_get_operator</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:gaab999ca597b76309cc58214d2023a678"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->operator. <br/></td></tr>
<tr class="separator:gaab999ca597b76309cc58214d2023a678"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6d38e6821748f4daf018ad5d02bbbb7d"><td class="memItemLeft" align="right" valign="top">struct <br class="typebreak"/>
<a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6d38e6821748f4daf018ad5d02bbbb7d">oval_state::oval_state_get_contents</a> (struct <a class="el" href="structoval__state.html">oval_state</a> *)</td></tr>
<tr class="memdesc:ga6d38e6821748f4daf018ad5d02bbbb7d"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_state->contents. <a href="#ga6d38e6821748f4daf018ad5d02bbbb7d">More...</a><br/></td></tr>
<tr class="separator:ga6d38e6821748f4daf018ad5d02bbbb7d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5af5f0a8f14194c6c95e8fed74c3ff2f"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5af5f0a8f14194c6c95e8fed74c3ff2f">oval_variable::oval_variable_get_id</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga5af5f0a8f14194c6c95e8fed74c3ff2f"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->id. <a href="#ga5af5f0a8f14194c6c95e8fed74c3ff2f">More...</a><br/></td></tr>
<tr class="separator:ga5af5f0a8f14194c6c95e8fed74c3ff2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad31a4444a5d7198cec1e25006854d352"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad31a4444a5d7198cec1e25006854d352">oval_variable::oval_variable_get_comment</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:gad31a4444a5d7198cec1e25006854d352"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->comment. <a href="#gad31a4444a5d7198cec1e25006854d352">More...</a><br/></td></tr>
<tr class="separator:gad31a4444a5d7198cec1e25006854d352"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5d08e8be95f5c17f67c00e3b7214bd23"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d08e8be95f5c17f67c00e3b7214bd23"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga5d08e8be95f5c17f67c00e3b7214bd23">oval_variable::oval_variable_get_version</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga5d08e8be95f5c17f67c00e3b7214bd23"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->version. <br/></td></tr>
<tr class="separator:ga5d08e8be95f5c17f67c00e3b7214bd23"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga593a9f421ff46ada989895bf11c80788"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga593a9f421ff46ada989895bf11c80788"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga593a9f421ff46ada989895bf11c80788">oval_variable::oval_variable_get_deprecated</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga593a9f421ff46ada989895bf11c80788"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->deprecated. <br/></td></tr>
<tr class="separator:ga593a9f421ff46ada989895bf11c80788"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga98d512ea3c2a9f50a2d1fc5337df30b2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga98d512ea3c2a9f50a2d1fc5337df30b2"></a>
<a class="el" href="group__OVALDEF.html#ga508c483d127b48e6190a40b401962db6">oval_variable_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga98d512ea3c2a9f50a2d1fc5337df30b2">oval_variable::oval_variable_get_type</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga98d512ea3c2a9f50a2d1fc5337df30b2"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->type. <br/></td></tr>
<tr class="separator:ga98d512ea3c2a9f50a2d1fc5337df30b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3305986237d5bff16d84e9bfb92fea36"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3305986237d5bff16d84e9bfb92fea36"></a>
<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga3305986237d5bff16d84e9bfb92fea36">oval_variable::oval_variable_get_datatype</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:ga3305986237d5bff16d84e9bfb92fea36"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute oval_variable->datatype. <br/></td></tr>
<tr class="separator:ga3305986237d5bff16d84e9bfb92fea36"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafb78c4dc3624c31dc87d4dfc4d12367e"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gafb78c4dc3624c31dc87d4dfc4d12367e">oval_variable::oval_variable_get_values</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:gafb78c4dc3624c31dc87d4dfc4d12367e"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_external/Oval_constant->values. <a href="#gafb78c4dc3624c31dc87d4dfc4d12367e">More...</a><br/></td></tr>
<tr class="separator:gafb78c4dc3624c31dc87d4dfc4d12367e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa34166a9c0f382ee5c8343dd48d704f2"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__component.html">oval_component</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa34166a9c0f382ee5c8343dd48d704f2">oval_variable::oval_variable_get_component</a> (struct <a class="el" href="structoval__variable.html">oval_variable</a> *)</td></tr>
<tr class="memdesc:gaa34166a9c0f382ee5c8343dd48d704f2"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_local->component. <a href="#gaa34166a9c0f382ee5c8343dd48d704f2">More...</a><br/></td></tr>
<tr class="separator:gaa34166a9c0f382ee5c8343dd48d704f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf0b9945f7d300e8f1f108bc9a59a0baf"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf0b9945f7d300e8f1f108bc9a59a0baf"></a>
const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf0b9945f7d300e8f1f108bc9a59a0baf">oval_variable::oval_component_type_get_text</a> (<a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> type)</td></tr>
<tr class="memdesc:gaf0b9945f7d300e8f1f108bc9a59a0baf"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component_type->text. <br/></td></tr>
<tr class="separator:gaf0b9945f7d300e8f1f108bc9a59a0baf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaece6f8a5be53f40d8f27cf6c6e7ca3e8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaece6f8a5be53f40d8f27cf6c6e7ca3e8">oval_affected::oval_affected_get_family</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *)</td></tr>
<tr class="memdesc:gaece6f8a5be53f40d8f27cf6c6e7ca3e8"><td class="mdescLeft"> </td><td class="mdescRight">Get member value <a class="el" href="structoval__affected.html">oval_affected</a> family. <a href="#gaece6f8a5be53f40d8f27cf6c6e7ca3e8">More...</a><br/></td></tr>
<tr class="separator:gaece6f8a5be53f40d8f27cf6c6e7ca3e8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa8d60e9521d33a23a45a226e2e1fd9e9"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa8d60e9521d33a23a45a226e2e1fd9e9">oval_affected::oval_affected_get_platforms</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *)</td></tr>
<tr class="memdesc:gaa8d60e9521d33a23a45a226e2e1fd9e9"><td class="mdescLeft"> </td><td class="mdescRight">Get member values <a class="el" href="structoval__affected.html">oval_affected</a> platform_names. <a href="#gaa8d60e9521d33a23a45a226e2e1fd9e9">More...</a><br/></td></tr>
<tr class="separator:gaa8d60e9521d33a23a45a226e2e1fd9e9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae6b67c6277ae893cedfc550c372146ae"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae6b67c6277ae893cedfc550c372146ae">oval_affected::oval_affected_get_products</a> (struct <a class="el" href="structoval__affected.html">oval_affected</a> *)</td></tr>
<tr class="memdesc:gae6b67c6277ae893cedfc550c372146ae"><td class="mdescLeft"> </td><td class="mdescRight">Get member values <a class="el" href="structoval__affected.html">oval_affected</a> product_names. <a href="#gae6b67c6277ae893cedfc550c372146ae">More...</a><br/></td></tr>
<tr class="separator:gae6b67c6277ae893cedfc550c372146ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0dd9435c7e89f26df629b1db9a5b6d4f"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0dd9435c7e89f26df629b1db9a5b6d4f">oval_reference::oval_reference_get_source</a> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *)</td></tr>
<tr class="memdesc:ga0dd9435c7e89f26df629b1db9a5b6d4f"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL reference source. <a href="#ga0dd9435c7e89f26df629b1db9a5b6d4f">More...</a><br/></td></tr>
<tr class="separator:ga0dd9435c7e89f26df629b1db9a5b6d4f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0156cabd1801258ef518c8d864c42bd9"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0156cabd1801258ef518c8d864c42bd9">oval_reference::oval_reference_get_id</a> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *)</td></tr>
<tr class="memdesc:ga0156cabd1801258ef518c8d864c42bd9"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL reference ID. <a href="#ga0156cabd1801258ef518c8d864c42bd9">More...</a><br/></td></tr>
<tr class="separator:ga0156cabd1801258ef518c8d864c42bd9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8ac0f7c3786be23fbb630903b05cd87c"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8ac0f7c3786be23fbb630903b05cd87c">oval_reference::oval_reference_get_url</a> (struct <a class="el" href="structoval__reference.html">oval_reference</a> *)</td></tr>
<tr class="memdesc:ga8ac0f7c3786be23fbb630903b05cd87c"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL reference URL. <a href="#ga8ac0f7c3786be23fbb630903b05cd87c">More...</a><br/></td></tr>
<tr class="separator:ga8ac0f7c3786be23fbb630903b05cd87c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga64e4b634779118c94ed7b23fbae89218"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga64e4b634779118c94ed7b23fbae89218"></a>
<a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga64e4b634779118c94ed7b23fbae89218">oval_criteria_node::oval_criteria_node_get_type</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga64e4b634779118c94ed7b23fbae89218"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria_node->type. <br/></td></tr>
<tr class="separator:ga64e4b634779118c94ed7b23fbae89218"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6d82f153fabe3b96b074683f79e166ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6d82f153fabe3b96b074683f79e166ce"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6d82f153fabe3b96b074683f79e166ce">oval_criteria_node::oval_criteria_node_get_negate</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga6d82f153fabe3b96b074683f79e166ce"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria_node->negate. <br/></td></tr>
<tr class="separator:ga6d82f153fabe3b96b074683f79e166ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga34851b5685f0a32ae4ebbd5ad93bd9b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga34851b5685f0a32ae4ebbd5ad93bd9b6"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga34851b5685f0a32ae4ebbd5ad93bd9b6">oval_criteria_node::oval_criteria_node_get_applicability_check</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga34851b5685f0a32ae4ebbd5ad93bd9b6"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria_node->applicability_check. <br/></td></tr>
<tr class="separator:ga34851b5685f0a32ae4ebbd5ad93bd9b6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa9e6d8dec72032c03edcc004d8f5bf16"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa9e6d8dec72032c03edcc004d8f5bf16">oval_criteria_node::oval_criteria_node_get_comment</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:gaa9e6d8dec72032c03edcc004d8f5bf16"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria_node->comment. <a href="#gaa9e6d8dec72032c03edcc004d8f5bf16">More...</a><br/></td></tr>
<tr class="separator:gaa9e6d8dec72032c03edcc004d8f5bf16"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1f87588362c7928e0370596653dc473a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga1f87588362c7928e0370596653dc473a">oval_criteria_node::oval_criteria_node_get_operator</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga1f87588362c7928e0370596653dc473a"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria->operator HOWDI. <a href="#ga1f87588362c7928e0370596653dc473a">More...</a><br/></td></tr>
<tr class="separator:ga1f87588362c7928e0370596653dc473a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3b9a165ff82bce2b97d7afe6d8bfb2c9"><td class="memItemLeft" align="right" valign="top">struct <br class="typebreak"/>
<a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga3b9a165ff82bce2b97d7afe6d8bfb2c9">oval_criteria_node::oval_criteria_node_get_subnodes</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga3b9a165ff82bce2b97d7afe6d8bfb2c9"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criteria_node->subnodes. <a href="#ga3b9a165ff82bce2b97d7afe6d8bfb2c9">More...</a><br/></td></tr>
<tr class="separator:ga3b9a165ff82bce2b97d7afe6d8bfb2c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6b4cf8fc8578641ad34d0146ab0deee8"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__test.html">oval_test</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6b4cf8fc8578641ad34d0146ab0deee8">oval_criteria_node::oval_criteria_node_get_test</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:ga6b4cf8fc8578641ad34d0146ab0deee8"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_criterion->test. <a href="#ga6b4cf8fc8578641ad34d0146ab0deee8">More...</a><br/></td></tr>
<tr class="separator:ga6b4cf8fc8578641ad34d0146ab0deee8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad4fe7468e7ecad66927d956657bca547"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad4fe7468e7ecad66927d956657bca547">oval_criteria_node::oval_criteria_node_get_definition</a> (struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> *)</td></tr>
<tr class="memdesc:gad4fe7468e7ecad66927d956657bca547"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_extends->definition. <a href="#gad4fe7468e7ecad66927d956657bca547">More...</a><br/></td></tr>
<tr class="separator:gad4fe7468e7ecad66927d956657bca547"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab9b8acc8417e50346277434664580d70"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gab9b8acc8417e50346277434664580d70">oval_object_content::oval_object_content_get_field_name</a> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="memdesc:gab9b8acc8417e50346277434664580d70"><td class="mdescLeft"> </td><td class="mdescRight">Get field name of a object content. <a href="#gab9b8acc8417e50346277434664580d70">More...</a><br/></td></tr>
<tr class="separator:gab9b8acc8417e50346277434664580d70"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga79f8fa287122993924a3fcb91e9c5f0a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga79f8fa287122993924a3fcb91e9c5f0a"></a>
<a class="el" href="group__OVALDEF.html#gaf5a61d142a62eb195ad4483627e458b4">oval_object_content_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga79f8fa287122993924a3fcb91e9c5f0a">oval_object_content::oval_object_content_get_type</a> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="memdesc:ga79f8fa287122993924a3fcb91e9c5f0a"><td class="mdescLeft"> </td><td class="mdescRight">Get type of a object content (entity or set). <br/></td></tr>
<tr class="separator:ga79f8fa287122993924a3fcb91e9c5f0a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga74d796e4b2e67c4365199ff25e4cbf3b"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga74d796e4b2e67c4365199ff25e4cbf3b">oval_object_content::oval_object_content_get_entity</a> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="memdesc:ga74d796e4b2e67c4365199ff25e4cbf3b"><td class="mdescLeft"> </td><td class="mdescRight">Get entity of a simple object content. <a href="#ga74d796e4b2e67c4365199ff25e4cbf3b">More...</a><br/></td></tr>
<tr class="separator:ga74d796e4b2e67c4365199ff25e4cbf3b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9e12c8f8a4b0abbfb4e2a87de61f0857"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e12c8f8a4b0abbfb4e2a87de61f0857"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga9e12c8f8a4b0abbfb4e2a87de61f0857">oval_object_content::oval_object_content_get_varCheck</a> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="memdesc:ga9e12c8f8a4b0abbfb4e2a87de61f0857"><td class="mdescLeft"> </td><td class="mdescRight">Get varCheck of a simple object content. <br/></td></tr>
<tr class="separator:ga9e12c8f8a4b0abbfb4e2a87de61f0857"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga34bbb9c642f068ee2804948a5aa6e0fa"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga34bbb9c642f068ee2804948a5aa6e0fa">oval_object_content::oval_object_content_get_setobject</a> (struct <a class="el" href="structoval__object__content.html">oval_object_content</a> *)</td></tr>
<tr class="memdesc:ga34bbb9c642f068ee2804948a5aa6e0fa"><td class="mdescLeft"> </td><td class="mdescRight">Get setobject of a set object content. <a href="#ga34bbb9c642f068ee2804948a5aa6e0fa">More...</a><br/></td></tr>
<tr class="separator:ga34bbb9c642f068ee2804948a5aa6e0fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaaf7c03fd0bc13fd34c9b43dd08bd5cbe"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaaf7c03fd0bc13fd34c9b43dd08bd5cbe">oval_behavior::oval_behavior_get_key</a> (struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *)</td></tr>
<tr class="memdesc:gaaf7c03fd0bc13fd34c9b43dd08bd5cbe"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL behavior name. <a href="#gaaf7c03fd0bc13fd34c9b43dd08bd5cbe">More...</a><br/></td></tr>
<tr class="separator:gaaf7c03fd0bc13fd34c9b43dd08bd5cbe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae4be80524201e69217f00446c3743f75"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae4be80524201e69217f00446c3743f75">oval_behavior::oval_behavior_get_value</a> (struct <a class="el" href="structoval__behavior.html">oval_behavior</a> *)</td></tr>
<tr class="memdesc:gae4be80524201e69217f00446c3743f75"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL behavior value. <a href="#gae4be80524201e69217f00446c3743f75">More...</a><br/></td></tr>
<tr class="separator:gae4be80524201e69217f00446c3743f75"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaabee367f5f661e05c1a6819524a2db2b"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaabee367f5f661e05c1a6819524a2db2b">oval_state_content::oval_state_content_get_entity</a> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *)</td></tr>
<tr class="memdesc:gaabee367f5f661e05c1a6819524a2db2b"><td class="mdescLeft"> </td><td class="mdescRight">Get entity of a state content. <a href="#gaabee367f5f661e05c1a6819524a2db2b">More...</a><br/></td></tr>
<tr class="separator:gaabee367f5f661e05c1a6819524a2db2b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga01097e8b7612353b7a22420120026c84"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga01097e8b7612353b7a22420120026c84"></a>
struct <a class="el" href="structoval__record__field__iterator.html">oval_record_field_iterator</a> * </td><td class="memItemRight" valign="bottom"><b>oval_state_content::oval_state_content_get_record_fields</b> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *)</td></tr>
<tr class="separator:ga01097e8b7612353b7a22420120026c84"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga055f786958d6bc875060e80ef6506c95"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga055f786958d6bc875060e80ef6506c95"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga055f786958d6bc875060e80ef6506c95">oval_state_content::oval_state_content_get_var_check</a> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *)</td></tr>
<tr class="memdesc:ga055f786958d6bc875060e80ef6506c95"><td class="mdescLeft"> </td><td class="mdescRight">Get multipe variable values processing of a state content. <br/></td></tr>
<tr class="separator:ga055f786958d6bc875060e80ef6506c95"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga559536d19241a4b7978a0314ff157b4a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga559536d19241a4b7978a0314ff157b4a"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga559536d19241a4b7978a0314ff157b4a">oval_state_content::oval_state_content_get_ent_check</a> (struct <a class="el" href="structoval__state__content.html">oval_state_content</a> *)</td></tr>
<tr class="memdesc:ga559536d19241a4b7978a0314ff157b4a"><td class="mdescLeft"> </td><td class="mdescRight">Get multipe entities processing of a state content. <br/></td></tr>
<tr class="separator:ga559536d19241a4b7978a0314ff157b4a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0f6246b022711228e2da00a6ace24c50"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0f6246b022711228e2da00a6ace24c50"></a>
<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0f6246b022711228e2da00a6ace24c50">oval_value::oval_value_get_datatype</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:ga0f6246b022711228e2da00a6ace24c50"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value datatype. <br/></td></tr>
<tr class="separator:ga0f6246b022711228e2da00a6ace24c50"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gada8afe096881f72f6ab3f44f31129be1"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gada8afe096881f72f6ab3f44f31129be1">oval_value::oval_value_get_text</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:gada8afe096881f72f6ab3f44f31129be1"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value as a text. <a href="#gada8afe096881f72f6ab3f44f31129be1">More...</a><br/></td></tr>
<tr class="separator:gada8afe096881f72f6ab3f44f31129be1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6fc144e2ea0cef2e43c2cb803ecc5de8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6fc144e2ea0cef2e43c2cb803ecc5de8"></a>
unsigned char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6fc144e2ea0cef2e43c2cb803ecc5de8">oval_value::oval_value_get_binary</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:ga6fc144e2ea0cef2e43c2cb803ecc5de8"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value as a piece of raw binary data. <br/></td></tr>
<tr class="separator:ga6fc144e2ea0cef2e43c2cb803ecc5de8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga569e211c05bd7df5af57956c0c073e6a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga569e211c05bd7df5af57956c0c073e6a"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga569e211c05bd7df5af57956c0c073e6a">oval_value::oval_value_get_boolean</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:ga569e211c05bd7df5af57956c0c073e6a"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value as a boolean. <br/></td></tr>
<tr class="separator:ga569e211c05bd7df5af57956c0c073e6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf2e020f7d2ef8ca9d471a8eab07bb57c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf2e020f7d2ef8ca9d471a8eab07bb57c"></a>
float </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf2e020f7d2ef8ca9d471a8eab07bb57c">oval_value::oval_value_get_float</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:gaf2e020f7d2ef8ca9d471a8eab07bb57c"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value as a floating point number. <br/></td></tr>
<tr class="separator:gaf2e020f7d2ef8ca9d471a8eab07bb57c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga71625ade717c998cbe9748b38b1e45b0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71625ade717c998cbe9748b38b1e45b0"></a>
long long </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga71625ade717c998cbe9748b38b1e45b0">oval_value::oval_value_get_integer</a> (struct <a class="el" href="structoval__value.html">oval_value</a> *)</td></tr>
<tr class="memdesc:ga71625ade717c998cbe9748b38b1e45b0"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL value as an integer. <br/></td></tr>
<tr class="separator:ga71625ade717c998cbe9748b38b1e45b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4e9767a32b9ce04039c055c699bfce87"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4e9767a32b9ce04039c055c699bfce87">oval_entity::oval_entity_get_name</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga4e9767a32b9ce04039c055c699bfce87"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity name. <a href="#ga4e9767a32b9ce04039c055c699bfce87">More...</a><br/></td></tr>
<tr class="separator:ga4e9767a32b9ce04039c055c699bfce87"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga012549e87cecbcb4775dbfe8cc394012"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga012549e87cecbcb4775dbfe8cc394012"></a>
<a class="el" href="group__OVALDEF.html#gac9a4faa0d289b6b2dabb76d43b03b671">oval_entity_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga012549e87cecbcb4775dbfe8cc394012">oval_entity::oval_entity_get_type</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga012549e87cecbcb4775dbfe8cc394012"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity type. <br/></td></tr>
<tr class="separator:ga012549e87cecbcb4775dbfe8cc394012"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga410c12432ef6b3b2ef2913f7fa77df02"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga410c12432ef6b3b2ef2913f7fa77df02"></a>
<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga410c12432ef6b3b2ef2913f7fa77df02">oval_entity::oval_entity_get_datatype</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga410c12432ef6b3b2ef2913f7fa77df02"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity datatype. <br/></td></tr>
<tr class="separator:ga410c12432ef6b3b2ef2913f7fa77df02"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga06dbde65d8560c1b02d812d333e0bf05"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga06dbde65d8560c1b02d812d333e0bf05"></a>
<a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga06dbde65d8560c1b02d812d333e0bf05">oval_entity::oval_entity_get_operation</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga06dbde65d8560c1b02d812d333e0bf05"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity operation type. <br/></td></tr>
<tr class="separator:ga06dbde65d8560c1b02d812d333e0bf05"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8fac7405ec41226f0d22e46e1b360ec8"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8fac7405ec41226f0d22e46e1b360ec8">oval_entity::oval_entity_get_variable</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga8fac7405ec41226f0d22e46e1b360ec8"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity varref variable. <a href="#ga8fac7405ec41226f0d22e46e1b360ec8">More...</a><br/></td></tr>
<tr class="separator:ga8fac7405ec41226f0d22e46e1b360ec8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga802ecb19ae32ee7a054a13e2c69ef12f"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__value.html">oval_value</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga802ecb19ae32ee7a054a13e2c69ef12f">oval_entity::oval_entity_get_value</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga802ecb19ae32ee7a054a13e2c69ef12f"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity value. <a href="#ga802ecb19ae32ee7a054a13e2c69ef12f">More...</a><br/></td></tr>
<tr class="separator:ga802ecb19ae32ee7a054a13e2c69ef12f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0bc760d469082dd92f11b78c52f911d4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0bc760d469082dd92f11b78c52f911d4"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0bc760d469082dd92f11b78c52f911d4">oval_entity::oval_entity_get_mask</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga0bc760d469082dd92f11b78c52f911d4"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity mask. <br/></td></tr>
<tr class="separator:ga0bc760d469082dd92f11b78c52f911d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2012e8b61b18c6ca0b7f793067e40106"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2012e8b61b18c6ca0b7f793067e40106"></a>
<a class="el" href="group__OVALDEF.html#gaf188be33624f01de2946ce6e58b6bf53">oval_entity_varref_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2012e8b61b18c6ca0b7f793067e40106">oval_entity::oval_entity_get_varref_type</a> (struct <a class="el" href="structoval__entity.html">oval_entity</a> *)</td></tr>
<tr class="memdesc:ga2012e8b61b18c6ca0b7f793067e40106"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL entity varref type. <br/></td></tr>
<tr class="separator:ga2012e8b61b18c6ca0b7f793067e40106"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae3116ca139832de20e8db3f850ee056c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae3116ca139832de20e8db3f850ee056c"></a>
oval_record_field_type_t </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_type</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gae3116ca139832de20e8db3f850ee056c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga68fd57feb7272822c876d715298bf6ea"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga68fd57feb7272822c876d715298bf6ea"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_name</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga68fd57feb7272822c876d715298bf6ea"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf81e87d93232b52479d17c4957c62541"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf81e87d93232b52479d17c4957c62541"></a>
char * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_value</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gaf81e87d93232b52479d17c4957c62541"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaddf13e6f5b6c1f0769b23d91ee6e4849"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaddf13e6f5b6c1f0769b23d91ee6e4849"></a>
<a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_datatype</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gaddf13e6f5b6c1f0769b23d91ee6e4849"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0ffb4446a13f88004a391872de365a16"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0ffb4446a13f88004a391872de365a16"></a>
int </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_mask</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga0ffb4446a13f88004a391872de365a16"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab625b236266d7e31bdb1d1436442cce7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab625b236266d7e31bdb1d1436442cce7"></a>
<a class="el" href="group__OVALDEF.html#ga3f00a63428c2b5db781a9c87ec73acd1">oval_operation_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_operation</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gab625b236266d7e31bdb1d1436442cce7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6cfa0671c024ef8d4f028c32972e41f3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6cfa0671c024ef8d4f028c32972e41f3"></a>
struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_variable</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga6cfa0671c024ef8d4f028c32972e41f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6221b15608e2eb4d429af5d74eb62be9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6221b15608e2eb4d429af5d74eb62be9"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_var_check</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:ga6221b15608e2eb4d429af5d74eb62be9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab4a137bea18223a2b6102e9748f97673"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab4a137bea18223a2b6102e9748f97673"></a>
<a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_get_ent_check</b> (struct <a class="el" href="structoval__record__field.html">oval_record_field</a> *)</td></tr>
<tr class="separator:gab4a137bea18223a2b6102e9748f97673"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3a28544a39ac1aee63e01c8484d4af27"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a28544a39ac1aee63e01c8484d4af27"></a>
struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_get_state</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *)</td></tr>
<tr class="separator:ga3a28544a39ac1aee63e01c8484d4af27"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga21f64609bf11bc0b4e04a09f05a01519"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga21f64609bf11bc0b4e04a09f05a01519"></a>
<a class="el" href="group__OVALDEF.html#ga51591ee757727dbfa49795a8e4a771e5">oval_filter_action_t</a> </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_get_filter_action</b> (struct <a class="el" href="structoval__filter.html">oval_filter</a> *)</td></tr>
<tr class="separator:ga21f64609bf11bc0b4e04a09f05a01519"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga554c9c234b6173d956646f5d6f3468b7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga554c9c234b6173d956646f5d6f3468b7"></a>
<a class="el" href="group__OVALDEF.html#gad53b9e7bb7cfcb4f85f67e2f486469df">oval_setobject_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga554c9c234b6173d956646f5d6f3468b7">oval_setobject::oval_setobject_get_type</a> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="memdesc:ga554c9c234b6173d956646f5d6f3468b7"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL set object type. <br/></td></tr>
<tr class="separator:ga554c9c234b6173d956646f5d6f3468b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6c138f7cc1471ec8f622ded0baf5fc74"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6c138f7cc1471ec8f622ded0baf5fc74"></a>
<a class="el" href="group__OVALDEF.html#ga695dd73f42848ceb78bc9c9b3794e08c">oval_setobject_operation_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6c138f7cc1471ec8f622ded0baf5fc74">oval_setobject::oval_setobject_get_operation</a> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="memdesc:ga6c138f7cc1471ec8f622ded0baf5fc74"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL set object operation type. <br/></td></tr>
<tr class="separator:ga6c138f7cc1471ec8f622ded0baf5fc74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaafd4a4312cf1d252aea30894e2c165af"><td class="memItemLeft" align="right" valign="top">struct oval_setobject_iterator * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaafd4a4312cf1d252aea30894e2c165af">oval_setobject::oval_setobject_get_subsets</a> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="memdesc:gaafd4a4312cf1d252aea30894e2c165af"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL set object subsets. <a href="#gaafd4a4312cf1d252aea30894e2c165af">More...</a><br/></td></tr>
<tr class="separator:gaafd4a4312cf1d252aea30894e2c165af"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga57f708074fd391255c67b352623d1ed5"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga57f708074fd391255c67b352623d1ed5">oval_setobject::oval_setobject_get_objects</a> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="memdesc:ga57f708074fd391255c67b352623d1ed5"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL set object referenced objects. <a href="#ga57f708074fd391255c67b352623d1ed5">More...</a><br/></td></tr>
<tr class="separator:ga57f708074fd391255c67b352623d1ed5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga040ca7cb64cf1c519e81074428ecf052"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga040ca7cb64cf1c519e81074428ecf052">oval_setobject::oval_setobject_get_filters</a> (struct <a class="el" href="structoval__setobject.html">oval_setobject</a> *)</td></tr>
<tr class="memdesc:ga040ca7cb64cf1c519e81074428ecf052"><td class="mdescLeft"> </td><td class="mdescRight">Get OVAL set object filters. <a href="#ga040ca7cb64cf1c519e81074428ecf052">More...</a><br/></td></tr>
<tr class="separator:ga040ca7cb64cf1c519e81074428ecf052"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga64787d54cceb698983d096ff7574817f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga64787d54cceb698983d096ff7574817f"></a>
<a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga64787d54cceb698983d096ff7574817f">oval_component::oval_component_get_type</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga64787d54cceb698983d096ff7574817f"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component->type. <br/></td></tr>
<tr class="separator:ga64787d54cceb698983d096ff7574817f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga94e7aa9c65ea008025fe9910dd0e5d65"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga94e7aa9c65ea008025fe9910dd0e5d65">oval_component::oval_component_get_object</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga94e7aa9c65ea008025fe9910dd0e5d65"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component_object->object. <a href="#ga94e7aa9c65ea008025fe9910dd0e5d65">More...</a><br/></td></tr>
<tr class="separator:ga94e7aa9c65ea008025fe9910dd0e5d65"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3a5d11a62f0090e8ccde753f4f123475"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga3a5d11a62f0090e8ccde753f4f123475">oval_component::oval_component_get_item_field</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga3a5d11a62f0090e8ccde753f4f123475"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component_object->item_field. <a href="#ga3a5d11a62f0090e8ccde753f4f123475">More...</a><br/></td></tr>
<tr class="separator:ga3a5d11a62f0090e8ccde753f4f123475"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga597b6da4bf23e3bc367530309658c4e0"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga597b6da4bf23e3bc367530309658c4e0">oval_component::oval_component_get_record_field</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga597b6da4bf23e3bc367530309658c4e0"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component_object->record_field. <a href="#ga597b6da4bf23e3bc367530309658c4e0">More...</a><br/></td></tr>
<tr class="separator:ga597b6da4bf23e3bc367530309658c4e0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8fc4993e588d1a9fd961c3241ea3cc67"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga8fc4993e588d1a9fd961c3241ea3cc67">oval_component::oval_component_get_variable</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga8fc4993e588d1a9fd961c3241ea3cc67"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_component_variable->variable. <a href="#ga8fc4993e588d1a9fd961c3241ea3cc67">More...</a><br/></td></tr>
<tr class="separator:ga8fc4993e588d1a9fd961c3241ea3cc67"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4a19b6533a293b7bfefbfe5c925f2516"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4a19b6533a293b7bfefbfe5c925f2516">oval_component::oval_component_get_function_components</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga4a19b6533a293b7bfefbfe5c925f2516"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function->components. <a href="#ga4a19b6533a293b7bfefbfe5c925f2516">More...</a><br/></td></tr>
<tr class="separator:ga4a19b6533a293b7bfefbfe5c925f2516"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaff496f0048251b388637fa56b1b112bb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__OVALDEF.html#gadca2ff0881da30f974d92a549dc76c4c">oval_arithmetic_operation_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaff496f0048251b388637fa56b1b112bb">oval_component::oval_component_get_arithmetic_operation</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gaff496f0048251b388637fa56b1b112bb"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_ARITHMETIC->arithmetic_operation. <a href="#gaff496f0048251b388637fa56b1b112bb">More...</a><br/></td></tr>
<tr class="separator:gaff496f0048251b388637fa56b1b112bb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa176e54037f1d6ead096af966fa1f4ee"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa176e54037f1d6ead096af966fa1f4ee">oval_component::oval_component_get_prefix</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gaa176e54037f1d6ead096af966fa1f4ee"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_BEGIN->prefix. <a href="#gaa176e54037f1d6ead096af966fa1f4ee">More...</a><br/></td></tr>
<tr class="separator:gaa176e54037f1d6ead096af966fa1f4ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga0931d436babb3e8bfa9ad3774bdbc46e"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga0931d436babb3e8bfa9ad3774bdbc46e">oval_component::oval_component_get_suffix</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga0931d436babb3e8bfa9ad3774bdbc46e"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_END->suffix. <a href="#ga0931d436babb3e8bfa9ad3774bdbc46e">More...</a><br/></td></tr>
<tr class="separator:ga0931d436babb3e8bfa9ad3774bdbc46e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf3dd22312275e9bb44633593777aceeb"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf3dd22312275e9bb44633593777aceeb">oval_component::oval_component_get_split_delimiter</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gaf3dd22312275e9bb44633593777aceeb"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_SPLIT->delimiter. <a href="#gaf3dd22312275e9bb44633593777aceeb">More...</a><br/></td></tr>
<tr class="separator:gaf3dd22312275e9bb44633593777aceeb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae29db7df204a6de04460d4d833dc0e06"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae29db7df204a6de04460d4d833dc0e06">oval_component::oval_component_get_substring_start</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gae29db7df204a6de04460d4d833dc0e06"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_SUBSTRING->start. <a href="#gae29db7df204a6de04460d4d833dc0e06">More...</a><br/></td></tr>
<tr class="separator:gae29db7df204a6de04460d4d833dc0e06"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabd9665d12c9395e71769d532b6d61499"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabd9665d12c9395e71769d532b6d61499">oval_component::oval_component_get_substring_length</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gabd9665d12c9395e71769d532b6d61499"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_SUBSTRING->length. <a href="#gabd9665d12c9395e71769d532b6d61499">More...</a><br/></td></tr>
<tr class="separator:gabd9665d12c9395e71769d532b6d61499"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaed40687ef2d737c3a94eca3d2f034d41"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaed40687ef2d737c3a94eca3d2f034d41">oval_component::oval_component_get_timedif_format_1</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:gaed40687ef2d737c3a94eca3d2f034d41"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_TIMEDIF->timedif_format_1. <a href="#gaed40687ef2d737c3a94eca3d2f034d41">More...</a><br/></td></tr>
<tr class="separator:gaed40687ef2d737c3a94eca3d2f034d41"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7783a012f5f1d13abcdc271e65462d23"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7783a012f5f1d13abcdc271e65462d23">oval_component::oval_component_get_timedif_format_2</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga7783a012f5f1d13abcdc271e65462d23"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_TIMEDIF->timedif_format_2. <a href="#ga7783a012f5f1d13abcdc271e65462d23">More...</a><br/></td></tr>
<tr class="separator:ga7783a012f5f1d13abcdc271e65462d23"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga46e56abea7bd752b9008b0273be9d79e"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga46e56abea7bd752b9008b0273be9d79e">oval_component::oval_component_get_regex_pattern</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga46e56abea7bd752b9008b0273be9d79e"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_function_REGEX_CAPTURE->pattern. <a href="#ga46e56abea7bd752b9008b0273be9d79e">More...</a><br/></td></tr>
<tr class="separator:ga46e56abea7bd752b9008b0273be9d79e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga6ab610166643dd32305be91e9fd586b6"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__value.html">oval_value</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga6ab610166643dd32305be91e9fd586b6">oval_component::oval_component_get_literal_value</a> (struct <a class="el" href="structoval__component.html">oval_component</a> *)</td></tr>
<tr class="memdesc:ga6ab610166643dd32305be91e9fd586b6"><td class="mdescLeft"> </td><td class="mdescRight">Returns attribute Oval_literal->literal. <a href="#ga6ab610166643dd32305be91e9fd586b6">More...</a><br/></td></tr>
<tr class="separator:ga6ab610166643dd32305be91e9fd586b6"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="member-group"></a>
Iterators</h2></td></tr>
<tr class="memitem:ga87536fd22dd266cf9019a7a71255c59e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga87536fd22dd266cf9019a7a71255c59e"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga87536fd22dd266cf9019a7a71255c59e">oval_definition_iterator::oval_definition_iterator_has_more</a> (struct <a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a> *)</td></tr>
<tr class="memdesc:ga87536fd22dd266cf9019a7a71255c59e"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if the iterator contains more instances of <a class="el" href="structoval__definition.html">oval_definition</a>. <br/></td></tr>
<tr class="separator:ga87536fd22dd266cf9019a7a71255c59e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4fc8f2192c748863eb0790326dbab998"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4fc8f2192c748863eb0790326dbab998">oval_definition_iterator::oval_definition_iterator_next</a> (struct <a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a> *)</td></tr>
<tr class="memdesc:ga4fc8f2192c748863eb0790326dbab998"><td class="mdescLeft"> </td><td class="mdescRight">Returns the next iterated instance of <a class="el" href="structoval__definition.html">oval_definition</a>. <a href="#ga4fc8f2192c748863eb0790326dbab998">More...</a><br/></td></tr>
<tr class="separator:ga4fc8f2192c748863eb0790326dbab998"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga856cde5959d3d29739e0647accfe82f4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga856cde5959d3d29739e0647accfe82f4"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga856cde5959d3d29739e0647accfe82f4">oval_definition_iterator::oval_definition_iterator_free</a> (struct <a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a> *)</td></tr>
<tr class="memdesc:ga856cde5959d3d29739e0647accfe82f4"><td class="mdescLeft"> </td><td class="mdescRight">Free the iterator. <br/></td></tr>
<tr class="separator:ga856cde5959d3d29739e0647accfe82f4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf875434233ac9c84a50ae9913bac6990"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf875434233ac9c84a50ae9913bac6990"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf875434233ac9c84a50ae9913bac6990">oval_test_iterator::oval_test_iterator_has_more</a> (struct <a class="el" href="structoval__test__iterator.html">oval_test_iterator</a> *)</td></tr>
<tr class="memdesc:gaf875434233ac9c84a50ae9913bac6990"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if the iterator is not exhausted. <br/></td></tr>
<tr class="separator:gaf875434233ac9c84a50ae9913bac6990"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga30d1b612928a0751f02f54068b5f50a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30d1b612928a0751f02f54068b5f50a5"></a>
struct <a class="el" href="structoval__test.html">oval_test</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga30d1b612928a0751f02f54068b5f50a5">oval_test_iterator::oval_test_iterator_next</a> (struct <a class="el" href="structoval__test__iterator.html">oval_test_iterator</a> *)</td></tr>
<tr class="memdesc:ga30d1b612928a0751f02f54068b5f50a5"><td class="mdescLeft"> </td><td class="mdescRight">Returns the next instance of <a class="el" href="structoval__test.html">oval_test</a>. <br/></td></tr>
<tr class="separator:ga30d1b612928a0751f02f54068b5f50a5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7f929225e0dd5e973dc1e461b7694706"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7f929225e0dd5e973dc1e461b7694706"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga7f929225e0dd5e973dc1e461b7694706">oval_test_iterator::oval_test_iterator_free</a> (struct <a class="el" href="structoval__test__iterator.html">oval_test_iterator</a> *)</td></tr>
<tr class="memdesc:ga7f929225e0dd5e973dc1e461b7694706"><td class="mdescLeft"> </td><td class="mdescRight">Frees the iterator. <br/></td></tr>
<tr class="separator:ga7f929225e0dd5e973dc1e461b7694706"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae735e9f01ab2c8396f8d6165450b65f2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae735e9f01ab2c8396f8d6165450b65f2"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae735e9f01ab2c8396f8d6165450b65f2">oval_object_iterator::oval_object_iterator_has_more</a> (struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> *)</td></tr>
<tr class="memdesc:gae735e9f01ab2c8396f8d6165450b65f2"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if the iterator is not exhausted. <br/></td></tr>
<tr class="separator:gae735e9f01ab2c8396f8d6165450b65f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae0321e780f1f8e410a407fe205166a76"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae0321e780f1f8e410a407fe205166a76"></a>
struct <a class="el" href="structoval__object.html">oval_object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae0321e780f1f8e410a407fe205166a76">oval_object_iterator::oval_object_iterator_next</a> (struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> *)</td></tr>
<tr class="memdesc:gae0321e780f1f8e410a407fe205166a76"><td class="mdescLeft"> </td><td class="mdescRight">Returns the next instance of <a class="el" href="structoval__object.html">oval_object</a>. <br/></td></tr>
<tr class="separator:gae0321e780f1f8e410a407fe205166a76"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga28ff6f6c3f65446f2da1d63885f27a1d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga28ff6f6c3f65446f2da1d63885f27a1d"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga28ff6f6c3f65446f2da1d63885f27a1d">oval_object_iterator::oval_object_iterator_free</a> (struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> *)</td></tr>
<tr class="memdesc:ga28ff6f6c3f65446f2da1d63885f27a1d"><td class="mdescLeft"> </td><td class="mdescRight">Frees the iterator. <br/></td></tr>
<tr class="separator:ga28ff6f6c3f65446f2da1d63885f27a1d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga40e63cb6da048bfda64611d37f4a11f0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga40e63cb6da048bfda64611d37f4a11f0"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga40e63cb6da048bfda64611d37f4a11f0">oval_state_iterator::oval_state_iterator_has_more</a> (struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> *)</td></tr>
<tr class="memdesc:ga40e63cb6da048bfda64611d37f4a11f0"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if the iterator is not exhausted. <br/></td></tr>
<tr class="separator:ga40e63cb6da048bfda64611d37f4a11f0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4e898526cc63fd3be73ede79048f2514"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4e898526cc63fd3be73ede79048f2514"></a>
struct <a class="el" href="structoval__state.html">oval_state</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4e898526cc63fd3be73ede79048f2514">oval_state_iterator::oval_state_iterator_next</a> (struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> *)</td></tr>
<tr class="memdesc:ga4e898526cc63fd3be73ede79048f2514"><td class="mdescLeft"> </td><td class="mdescRight">Returns the next instance of <a class="el" href="structoval__state.html">oval_state</a>. <br/></td></tr>
<tr class="separator:ga4e898526cc63fd3be73ede79048f2514"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga861f5ada4ea2fd2ef3e0c9e0e950bd15"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga861f5ada4ea2fd2ef3e0c9e0e950bd15"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga861f5ada4ea2fd2ef3e0c9e0e950bd15">oval_state_iterator::oval_state_iterator_free</a> (struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> *)</td></tr>
<tr class="memdesc:ga861f5ada4ea2fd2ef3e0c9e0e950bd15"><td class="mdescLeft"> </td><td class="mdescRight">Frees the iterator. <br/></td></tr>
<tr class="separator:ga861f5ada4ea2fd2ef3e0c9e0e950bd15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac1f3f205e941324dce4e7bd196ed69e3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac1f3f205e941324dce4e7bd196ed69e3"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac1f3f205e941324dce4e7bd196ed69e3">oval_variable_iterator::oval_variable_iterator_has_more</a> (struct <a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a> *)</td></tr>
<tr class="memdesc:gac1f3f205e941324dce4e7bd196ed69e3"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if iterator not exhausted. <br/></td></tr>
<tr class="separator:gac1f3f205e941324dce4e7bd196ed69e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga37f093ccd677a5daa944586a29bb1108"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga37f093ccd677a5daa944586a29bb1108"></a>
struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga37f093ccd677a5daa944586a29bb1108">oval_variable_iterator::oval_variable_iterator_next</a> (struct <a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a> *)</td></tr>
<tr class="memdesc:ga37f093ccd677a5daa944586a29bb1108"><td class="mdescLeft"> </td><td class="mdescRight">Returns next instance of <a class="el" href="structoval__variable.html">oval_variable</a>. <br/></td></tr>
<tr class="separator:ga37f093ccd677a5daa944586a29bb1108"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gabdeb522127f5f8db8bd4b669b4d6c6b9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabdeb522127f5f8db8bd4b669b4d6c6b9"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gabdeb522127f5f8db8bd4b669b4d6c6b9">oval_variable_iterator::oval_variable_iterator_free</a> (struct <a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a> *)</td></tr>
<tr class="memdesc:gabdeb522127f5f8db8bd4b669b4d6c6b9"><td class="mdescLeft"> </td><td class="mdescRight">Free iterator. <br/></td></tr>
<tr class="separator:gabdeb522127f5f8db8bd4b669b4d6c6b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad3f9bb8a6938bbb531445dc131e5b833"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad3f9bb8a6938bbb531445dc131e5b833"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad3f9bb8a6938bbb531445dc131e5b833">oval_affected_iterator::oval_affected_iterator_has_more</a> (struct <a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a> *)</td></tr>
<tr class="memdesc:gad3f9bb8a6938bbb531445dc131e5b833"><td class="mdescLeft"> </td><td class="mdescRight">Return <b>true</b> if iterator has more <a class="el" href="structoval__affected.html">oval_affected</a>. <br/></td></tr>
<tr class="separator:gad3f9bb8a6938bbb531445dc131e5b833"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae80524d73e0a7ca6cb086ae81319b522"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae80524d73e0a7ca6cb086ae81319b522"></a>
struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gae80524d73e0a7ca6cb086ae81319b522">oval_affected_iterator::oval_affected_iterator_next</a> (struct <a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a> *)</td></tr>
<tr class="memdesc:gae80524d73e0a7ca6cb086ae81319b522"><td class="mdescLeft"> </td><td class="mdescRight">Return next instance of <a class="el" href="structoval__affected.html">oval_affected</a> from iterator. <br/></td></tr>
<tr class="separator:gae80524d73e0a7ca6cb086ae81319b522"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga673dbbc8f16d0f8e6bb0916da2c2804f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga673dbbc8f16d0f8e6bb0916da2c2804f"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga673dbbc8f16d0f8e6bb0916da2c2804f">oval_affected_iterator::oval_affected_iterator_free</a> (struct <a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a> *)</td></tr>
<tr class="memdesc:ga673dbbc8f16d0f8e6bb0916da2c2804f"><td class="mdescLeft"> </td><td class="mdescRight">Release instance of oval_affected_ iterator. <br/></td></tr>
<tr class="separator:ga673dbbc8f16d0f8e6bb0916da2c2804f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga96b6a442f0eb58a61a61799abe091338"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga96b6a442f0eb58a61a61799abe091338"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_reference_iterator::oval_reference_iterator_has_more</b> (struct <a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a> *)</td></tr>
<tr class="separator:ga96b6a442f0eb58a61a61799abe091338"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8d161bc7a5b43366b8f46f760ad5adb7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8d161bc7a5b43366b8f46f760ad5adb7"></a>
struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td><td class="memItemRight" valign="bottom"><b>oval_reference_iterator::oval_reference_iterator_next</b> (struct <a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a> *)</td></tr>
<tr class="separator:ga8d161bc7a5b43366b8f46f760ad5adb7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga522f92d3ed742a4becadabc14c66b74e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga522f92d3ed742a4becadabc14c66b74e"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_reference_iterator::oval_reference_iterator_free</b> (struct <a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a> *)</td></tr>
<tr class="separator:ga522f92d3ed742a4becadabc14c66b74e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga2460172174d8771047f1696d56839ec6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2460172174d8771047f1696d56839ec6"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga2460172174d8771047f1696d56839ec6">oval_criteria_node_iterator::oval_criteria_node_iterator_has_more</a> (struct <a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> *)</td></tr>
<tr class="memdesc:ga2460172174d8771047f1696d56839ec6"><td class="mdescLeft"> </td><td class="mdescRight">Returns <b>true</b> if the iterator is not exhausted. <br/></td></tr>
<tr class="separator:ga2460172174d8771047f1696d56839ec6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaf1d81cd3ea091ae722e13e7742f9b27f"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaf1d81cd3ea091ae722e13e7742f9b27f">oval_criteria_node_iterator::oval_criteria_node_iterator_next</a> (struct <a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> *)</td></tr>
<tr class="memdesc:gaf1d81cd3ea091ae722e13e7742f9b27f"><td class="mdescLeft"> </td><td class="mdescRight">Returns the next instance of Oval_criteria_node from the iterator. <a href="#gaf1d81cd3ea091ae722e13e7742f9b27f">More...</a><br/></td></tr>
<tr class="separator:gaf1d81cd3ea091ae722e13e7742f9b27f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gad725355b8285868622ec54406439eeda"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad725355b8285868622ec54406439eeda"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gad725355b8285868622ec54406439eeda">oval_criteria_node_iterator::oval_criteria_node_iterator_free</a> (struct <a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> *)</td></tr>
<tr class="memdesc:gad725355b8285868622ec54406439eeda"><td class="mdescLeft"> </td><td class="mdescRight">Free the iterator. <br/></td></tr>
<tr class="separator:gad725355b8285868622ec54406439eeda"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae36adb655586bbf1df7418f06c345494"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae36adb655586bbf1df7418f06c345494"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_object_content_iterator::oval_object_content_iterator_has_more</b> (struct <a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a> *)</td></tr>
<tr class="separator:gae36adb655586bbf1df7418f06c345494"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gae27bc39e55ac9d44b5764b106efc0ea8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae27bc39e55ac9d44b5764b106efc0ea8"></a>
struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td><td class="memItemRight" valign="bottom"><b>oval_object_content_iterator::oval_object_content_iterator_next</b> (struct <a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a> *)</td></tr>
<tr class="separator:gae27bc39e55ac9d44b5764b106efc0ea8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5dbb9fdf1ca6ccbecf1741d9639c5e7d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5dbb9fdf1ca6ccbecf1741d9639c5e7d"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_object_content_iterator::oval_object_content_iterator_free</b> (struct <a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a> *)</td></tr>
<tr class="separator:ga5dbb9fdf1ca6ccbecf1741d9639c5e7d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga840f5a89d95622ca614e17d84d0a9a06"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga840f5a89d95622ca614e17d84d0a9a06"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_behavior_iterator::oval_behavior_iterator_has_more</b> (struct <a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a> *)</td></tr>
<tr class="separator:ga840f5a89d95622ca614e17d84d0a9a06"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac67397d3d677ac93c5b946a069cf5bda"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac67397d3d677ac93c5b946a069cf5bda"></a>
struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td><td class="memItemRight" valign="bottom"><b>oval_behavior_iterator::oval_behavior_iterator_next</b> (struct <a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a> *)</td></tr>
<tr class="separator:gac67397d3d677ac93c5b946a069cf5bda"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga53443a82e16bc4741fa1ccacfb31b08f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga53443a82e16bc4741fa1ccacfb31b08f"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_behavior_iterator::oval_behavior_iterator_free</b> (struct <a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a> *)</td></tr>
<tr class="separator:ga53443a82e16bc4741fa1ccacfb31b08f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga21bb35f445a4a52196a8a262c6e2532d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga21bb35f445a4a52196a8a262c6e2532d"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_state_content_iterator::oval_state_content_iterator_has_more</b> (struct <a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a> *)</td></tr>
<tr class="separator:ga21bb35f445a4a52196a8a262c6e2532d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab7b731f1af12838aedaa565f75e2a149"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab7b731f1af12838aedaa565f75e2a149"></a>
struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td><td class="memItemRight" valign="bottom"><b>oval_state_content_iterator::oval_state_content_iterator_next</b> (struct <a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a> *)</td></tr>
<tr class="separator:gab7b731f1af12838aedaa565f75e2a149"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga3a0ab6363f7111d16c496af1faeb9c81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a0ab6363f7111d16c496af1faeb9c81"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_state_content_iterator::oval_state_content_iterator_free</b> (struct <a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a> *)</td></tr>
<tr class="separator:ga3a0ab6363f7111d16c496af1faeb9c81"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga683c6a324747c0a05a14b01cd95c2690"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga683c6a324747c0a05a14b01cd95c2690"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_value_iterator::oval_value_iterator_has_more</b> (struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> *)</td></tr>
<tr class="separator:ga683c6a324747c0a05a14b01cd95c2690"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gafa6ac0c2db86f439505814eb6ce0ab1b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafa6ac0c2db86f439505814eb6ce0ab1b"></a>
struct <a class="el" href="structoval__value.html">oval_value</a> * </td><td class="memItemRight" valign="bottom"><b>oval_value_iterator::oval_value_iterator_next</b> (struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> *)</td></tr>
<tr class="separator:gafa6ac0c2db86f439505814eb6ce0ab1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga5a32cb52abd72ca7c460c83198716bdb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5a32cb52abd72ca7c460c83198716bdb"></a>
int </td><td class="memItemRight" valign="bottom"><b>oval_value_iterator::oval_value_iterator_remaining</b> (struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> *iterator)</td></tr>
<tr class="separator:ga5a32cb52abd72ca7c460c83198716bdb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4b538568033b8bb0e4fd918eb7a735ed"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4b538568033b8bb0e4fd918eb7a735ed"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_value_iterator::oval_value_iterator_free</b> (struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> *)</td></tr>
<tr class="separator:ga4b538568033b8bb0e4fd918eb7a735ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga837410709257a705bd6e3018458903b4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga837410709257a705bd6e3018458903b4"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_entity_iterator::oval_entity_iterator_has_more</b> (struct <a class="el" href="structoval__entity__iterator.html">oval_entity_iterator</a> *)</td></tr>
<tr class="separator:ga837410709257a705bd6e3018458903b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga65532e93301d69cc40cfee8421833cff"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga65532e93301d69cc40cfee8421833cff"></a>
struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td><td class="memItemRight" valign="bottom"><b>oval_entity_iterator::oval_entity_iterator_next</b> (struct <a class="el" href="structoval__entity__iterator.html">oval_entity_iterator</a> *)</td></tr>
<tr class="separator:ga65532e93301d69cc40cfee8421833cff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga8032d252b6f9500d9f8782e35452b763"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8032d252b6f9500d9f8782e35452b763"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_entity_iterator::oval_entity_iterator_free</b> (struct <a class="el" href="structoval__entity__iterator.html">oval_entity_iterator</a> *)</td></tr>
<tr class="separator:ga8032d252b6f9500d9f8782e35452b763"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab6a014e84da0da602e6774bbbe019616"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab6a014e84da0da602e6774bbbe019616"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_iterator_has_more</b> (struct <a class="el" href="structoval__record__field__iterator.html">oval_record_field_iterator</a> *)</td></tr>
<tr class="separator:gab6a014e84da0da602e6774bbbe019616"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7072e714a2ba18e92db6235deb390005"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7072e714a2ba18e92db6235deb390005"></a>
struct <a class="el" href="structoval__record__field.html">oval_record_field</a> * </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_iterator_next</b> (struct <a class="el" href="structoval__record__field__iterator.html">oval_record_field_iterator</a> *)</td></tr>
<tr class="separator:ga7072e714a2ba18e92db6235deb390005"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab2d647fa4f380e5b5c677fc477eb1a37"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab2d647fa4f380e5b5c677fc477eb1a37"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_record_field::oval_record_field_iterator_free</b> (struct <a class="el" href="structoval__record__field__iterator.html">oval_record_field_iterator</a> *)</td></tr>
<tr class="separator:gab2d647fa4f380e5b5c677fc477eb1a37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa27838a48827b6e8a6e28a2e3a444642"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa27838a48827b6e8a6e28a2e3a444642"></a>
bool </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_iterator_has_more</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *)</td></tr>
<tr class="separator:gaa27838a48827b6e8a6e28a2e3a444642"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga7e7aaf62045c86a50ffcf376a49265cd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7e7aaf62045c86a50ffcf376a49265cd"></a>
struct <a class="el" href="structoval__filter.html">oval_filter</a> * </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_iterator_next</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *)</td></tr>
<tr class="separator:ga7e7aaf62045c86a50ffcf376a49265cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga928bd61b3d3fc6d7c5994629b0bbac43"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga928bd61b3d3fc6d7c5994629b0bbac43"></a>
void </td><td class="memItemRight" valign="bottom"><b>oval_filter::oval_filter_iterator_free</b> (struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> *)</td></tr>
<tr class="separator:ga928bd61b3d3fc6d7c5994629b0bbac43"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga4e96d3917fefead608e6bb766f724205"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4e96d3917fefead608e6bb766f724205"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga4e96d3917fefead608e6bb766f724205">oval_component_iterator::oval_component_iterator_has_more</a> (struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> *)</td></tr>
<tr class="memdesc:ga4e96d3917fefead608e6bb766f724205"><td class="mdescLeft"> </td><td class="mdescRight">Return <b>true</b> if the iterator is not exhausted. <br/></td></tr>
<tr class="separator:ga4e96d3917fefead608e6bb766f724205"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac8eaa709cc7d5fe16e2fdb2a0a812904"><td class="memItemLeft" align="right" valign="top">struct <a class="el" href="structoval__component.html">oval_component</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gac8eaa709cc7d5fe16e2fdb2a0a812904">oval_component_iterator::oval_component_iterator_next</a> (struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> *)</td></tr>
<tr class="memdesc:gac8eaa709cc7d5fe16e2fdb2a0a812904"><td class="mdescLeft"> </td><td class="mdescRight">return the next instance of Oval_component. <a href="#gac8eaa709cc7d5fe16e2fdb2a0a812904">More...</a><br/></td></tr>
<tr class="separator:gac8eaa709cc7d5fe16e2fdb2a0a812904"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa296d28cf9bc9c54da84cdecd5f0c9d4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa296d28cf9bc9c54da84cdecd5f0c9d4"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#gaa296d28cf9bc9c54da84cdecd5f0c9d4">oval_component_iterator::oval_component_iterator_free</a> (struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> *)</td></tr>
<tr class="memdesc:gaa296d28cf9bc9c54da84cdecd5f0c9d4"><td class="mdescLeft"> </td><td class="mdescRight">Free the iterator. <br/></td></tr>
<tr class="separator:gaa296d28cf9bc9c54da84cdecd5f0c9d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga19ec8293e658f7c24ca6eda72c67dcc2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga19ec8293e658f7c24ca6eda72c67dcc2"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__OVALDEF.html#ga19ec8293e658f7c24ca6eda72c67dcc2">oval_component_iterator::oval_component_iterator_remaining</a> (struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> *)</td></tr>
<tr class="memdesc:ga19ec8293e658f7c24ca6eda72c67dcc2"><td class="mdescLeft"> </td><td class="mdescRight">How many remains. <br/></td></tr>
<tr class="separator:ga19ec8293e658f7c24ca6eda72c67dcc2"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<p>Interface for Definition model. </p>
<p>Class diagram </p>
<div class="image">
<img src="definition_model.png" alt="definition_model.png"/>
</div>
<h2 class="groupheader">Enumeration Type Documentation</h2>
<a class="anchor" id="ga80d323a50a1976c7ecc926976b12af20"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Affected family enumeration. </p>
<p>Since new family values can only be added with new version of the schema, the value OVAL_AFCFML_UNDEFINED is to be used when the desired family is not available </p>
</div>
</div>
<h2 class="groupheader">Function Documentation</h2>
<a class="anchor" id="ga5fe063593c56be6a68971ca4370b3788"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__affected.html">oval_affected</a> * oval_affected_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td>
<td class="paramname"><em>old_affected</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__affected.html">oval_affected</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__affected.html">oval_affected</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaece6f8a5be53f40d8f27cf6c6e7ca3e8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__OVALDEF.html#ga80d323a50a1976c7ecc926976b12af20">oval_affected_family_t</a> oval_affected_get_family </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get member value <a class="el" href="structoval__affected.html">oval_affected</a> family. </p>
<dl class="section note"><dt>Note</dt><dd>A family value of OVAL_AFCFML_UNDEFINED signifies some family other than one of the defined values is targeted. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa8d60e9521d33a23a45a226e2e1fd9e9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_affected_get_platforms </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get member values <a class="el" href="structoval__affected.html">oval_affected</a> platform_names. </p>
<p>If the returned iterator is empty, then the associated Oval_definition is not constrained to a specific platform choice. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the platforms attribute of the specified <a class="el" href="structoval__affected.html">oval_affected</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gae6b67c6277ae893cedfc550c372146ae"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_affected_get_products </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get member values <a class="el" href="structoval__affected.html">oval_affected</a> product_names. </p>
<p>If the returned iterator is empty, then the associated Oval_definition is not constrained to a specific product choice. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the products attribute of the specified <a class="el" href="structoval__affected.html">oval_affected</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa4a65b558963902ac1c5a67c9a820190"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * oval_behavior_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td>
<td class="paramname"><em>old_behavior</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__behavior.html">oval_behavior</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaaf7c03fd0bc13fd34c9b43dd08bd5cbe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_behavior_get_key </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL behavior name. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the key attribute of the specified <a class="el" href="structoval__behavior.html">oval_behavior</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gae4be80524201e69217f00446c3743f75"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_behavior_get_value </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL behavior value. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the value attribute of the specified <a class="el" href="structoval__behavior.html">oval_behavior</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaf0b49cf939284308b61954c83db94971"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__component.html">oval_component</a> * oval_component_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"><em>old_component</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of Oval_component. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaff496f0048251b388637fa56b1b112bb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__OVALDEF.html#gadca2ff0881da30f974d92a549dc76c4c">oval_arithmetic_operation_t</a> oval_component_get_arithmetic_operation </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_ARITHMETIC->arithmetic_operation. </p>
<p>IF component->type <> OVAL_FUNCTION_ARITHMETIC, this method shall return OVAL_ARITHMETIC_UNKNOWN. </p>
</div>
</div>
<a class="anchor" id="ga4a19b6533a293b7bfefbfe5c925f2516"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> * oval_component_get_function_components </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function->components. </p>
<p>IF component->type < OVAL_COMPONENT_FUNCTION, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the function_components attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga3a5d11a62f0090e8ccde753f4f123475"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_item_field </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_component_object->item_field. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the item_field attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="ga6ab610166643dd32305be91e9fd586b6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__value.html">oval_value</a> * oval_component_get_literal_value </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_literal->literal. </p>
<p>IF component->type <> OVAL_COMPONENT_LITERAL, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the value attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the Oval_value returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="ga94e7aa9c65ea008025fe9910dd0e5d65"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object.html">oval_object</a> * oval_component_get_object </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_component_object->object. </p>
<p>IF component->type <> OVAL_COMPONENT_OBJECTREF, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the object attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the Oval_object returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="gaa176e54037f1d6ead096af966fa1f4ee"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_prefix </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_BEGIN->prefix. </p>
<p>IF component->type <> OVAL_FUNCTION_BEGIN, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="ga597b6da4bf23e3bc367530309658c4e0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_record_field </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_component_object->record_field. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the record_field attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="ga46e56abea7bd752b9008b0273be9d79e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_regex_pattern </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_REGEX_CAPTURE->pattern. </p>
<p>IF component->type <> OVAL_FUNCTION_REGEX_CAPTURE, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="gaf3dd22312275e9bb44633593777aceeb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_split_delimiter </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_SPLIT->delimiter. </p>
<p>IF component->type <> OVAL_FUNCTION_SPLIT, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="gabd9665d12c9395e71769d532b6d61499"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int oval_component_get_substring_length </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_SUBSTRING->length. </p>
<p>IF component->type <> OVAL_FUNCTION_SUBSTRING, this method shall return 0 </p>
</div>
</div>
<a class="anchor" id="gae29db7df204a6de04460d4d833dc0e06"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int oval_component_get_substring_start </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_SUBSTRING->start. </p>
<p>IF component->type <> OVAL_FUNCTION_SUBSTRING, this method shall return 0 </p>
</div>
</div>
<a class="anchor" id="ga0931d436babb3e8bfa9ad3774bdbc46e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_component_get_suffix </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_END->suffix. </p>
<p>IF component->type <> OVAL_FUNCTION_END, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the char* returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="gaed40687ef2d737c3a94eca3d2f034d41"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a> oval_component_get_timedif_format_1 </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_TIMEDIF->timedif_format_1. </p>
<p>IF component->type <> OVAL_FUNCTION_TIMEDIF, this method shall return OVAL_TIMEDATE_UNKNOWN </p>
</div>
</div>
<a class="anchor" id="ga7783a012f5f1d13abcdc271e65462d23"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__OVALDEF.html#gaea41231bb5ff1482100866e5a0c5f7f7">oval_datetime_format_t</a> oval_component_get_timedif_format_2 </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_function_TIMEDIF->timedif_format_2. </p>
<p>IF component->type <> OVAL_FUNCTION_TIMEDIF, this method shall return OVAL_TIMEDATE_UNKNOWN </p>
</div>
</div>
<a class="anchor" id="ga8fc4993e588d1a9fd961c3241ea3cc67"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable.html">oval_variable</a> * oval_component_get_variable </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_component_variable->variable. </p>
<p>IF component->type <> OVAL_COMPONENT_VARREF, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the variable attribute of the specified <a class="el" href="structoval__component.html">oval_component</a>. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>applications should not free the Oval_variable returned by this method </dd></dl>
</div>
</div>
<a class="anchor" id="gac8eaa709cc7d5fe16e2fdb2a0a812904"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__component.html">oval_component</a> * oval_component_iterator_next </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component__iterator.html">oval_component_iterator</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>return the next instance of Oval_component. </p>
<p>If the iterator is exhausted this method shall return NULL. </p>
</div>
</div>
<a class="anchor" id="gaa96aefc959878666fcae52b5fa8e55a6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__component.html">oval_component</a> * oval_component_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#gab6ed49a929aed7027c01b143ced8ba2d">oval_component_type_t</a> </td>
<td class="paramname"><em>type</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct new intance of Oval_component. </p>
<p>Attribute values shall be initialized:</p>
<ul>
<li>type – initialized to the value of the type parameter.</li>
<li>If type == OVAL_FUNCTION_CONCAT<ul>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_COUNT<ul>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_ESCAPE_REGEX<ul>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_ARITHMETIC<ul>
<li>arithmetic_operation – initialized to OVAL_ARITHMETIC_UNKNOWN</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_BEGIN<ul>
<li>prefix – initialized to NULL</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_END<ul>
<li>suffix – initialized to NULL</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_SPLIT<ul>
<li>delimiter – initialized to NULL</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_SUBSTRING<ul>
<li>start, length – initialized to zero</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_TIMEDIF<ul>
<li>timedif_format_1, timedif_format_2 – initialized to OVAL_DATETIME_UNKNOWN</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_FUNCTION_REGEX_CAPTURE<ul>
<li>pattern – initialized to NULL</li>
<li>components – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_COMPONENT_LITERAL<ul>
<li>literal – initialized to NULL</li>
</ul>
</li>
<li>If type == OVAL_COMPONENT_OBJECTREF<ul>
<li>object – initialized to NULL</li>
<li>object_field – initialized to NULL</li>
</ul>
</li>
<li>If type == OVAL_COMPONENT_VARREF<ul>
<li>variable – initialized to NULL</li>
</ul>
</li>
</ul>
<p>This method shall not construct a new instance of Oval_object and shall return NULL if the type parameter is entered as OVAL_COMPONENT_UNKNOWN. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>- the required component type. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga616450ba90f74f9d3625ad5677c19f3f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_component_set_object </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"><em>object</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute Oval_component_object->object. </p>
<p>IF component->type <> OVAL_COMPONENT_OBJECTREF OR component->object <> NULL, this method does nothing . </p>
</div>
</div>
<a class="anchor" id="ga01c134ccc83dabf51c3f5f13adc254fd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_component_set_variable </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"><em>variable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute Oval_component_object->variable. </p>
<p>IF component->type <> OVAL_COMPONENT_OBJECTREF OR component->variable <> NULL, this method does nothing. </p>
</div>
</div>
<a class="anchor" id="ga375735a4f1a0129f23bc06a5dd8b6adf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_add_subnode </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"><em>node</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of Oval_criteria_node to attribute Oval_criteria->subnodes. </p>
<p>If Oval_criteria_node->type <> OVAL_NODETYPE_CRITERIA, this method shall return without changing the Oval_criteria_node state. </p>
<dl class="section note"><dt>Note</dt><dd>Instances of Oval_criteria_node bound to an Oval_criteria by this method should not be subsequently freed by the application using oval_criteria_node_free. These instances shall be freed by the API when the Oval_criteria is freed. </dd>
<dd>
An application should not bind a given Oval_criteria_node as a subnode to more than one Oval_criteria, nor should a given Oval_criteria_node be bound more than once to a single Oval_criteria. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">-</td><td>(Not NULL) the subnode to be appended. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga536e612d001004c4807b44c1b39b7a1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * oval_criteria_node_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"><em>old_node</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone an instance of <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa9e6d8dec72032c03edcc004d8f5bf16"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_criteria_node_get_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_criteria_node->comment. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the comment attribute of the specified <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gad4fe7468e7ecad66927d956657bca547"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition.html">oval_definition</a> * oval_criteria_node_get_definition </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_extends->definition. </p>
<p>If Oval_criteria_node->type <> OVAL_NODETYPE_EXTENDDEF, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the definition attribute of the specified <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga1f87588362c7928e0370596653dc473a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> oval_criteria_node_get_operator </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_criteria->operator HOWDI. </p>
<dl class="section note"><dt>Note</dt><dd>If Oval_criteria_node->type <> OVAL_NODETYPE_CRITERIA, this method shall return OVAL_OPERATOR_UNKNOWN. </dd></dl>
</div>
</div>
<a class="anchor" id="ga3b9a165ff82bce2b97d7afe6d8bfb2c9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> * oval_criteria_node_get_subnodes </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_criteria_node->subnodes. </p>
<p>If Oval_criteria_node->type <> OVAL_NODETYPE_CRITERIA, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the subnodes attribute of the specified <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga6b4cf8fc8578641ad34d0146ab0deee8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__test.html">oval_test</a> * oval_criteria_node_get_test </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_criterion->test. </p>
<p>If Oval_criteria_node->type <> OVAL_NODETYPE_CRITERION, this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the test attribute of the specified <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaf1d81cd3ea091ae722e13e7742f9b27f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * oval_criteria_node_iterator_next </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node__iterator.html">oval_criteria_node_iterator</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the next instance of Oval_criteria_node from the iterator. </p>
<p>Returns NULL if the iterator is exhausted. </p>
</div>
</div>
<a class="anchor" id="gacad9d0a710cdbbd4fa748bb92271e01f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * oval_criteria_node_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> </td>
<td class="paramname"><em>type</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct an instance of <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a>. </p>
<p>Initialized attribute values are:</p>
<ul>
<li>type initialized to value of type parameter.</li>
</ul>
<p>negate – initialized to <b>false</b></p>
<ul>
<li>comment – initialized to NULL</li>
<li>If type == OVAL_NODETYPE_CRITERIA (Oval_criteria):<ul>
<li>operator – initialized to OVAL_OPERATOR_UNKNOWN</li>
<li>subnodes – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_NODETYPE_CRITERION (Oval_criterion):<ul>
<li>test – initialized to NULL</li>
</ul>
</li>
<li>If type == OVAL_NODETYPE_EXTENDDEF (Oval_extends):<ul>
<li>definition – initialized to NULL Careful ! Calling this function with inappropriate number of arguments will cause undefined behavior !</li>
</ul>
</li>
</ul>
<p>If the type parameter is entered as OVAL_NODETYPE_UNKNOWN, no instance shall be constructed and the method shall return NULL. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>- the required node type. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga44a40c73f62e81c9992d2a74303d5db3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_applicability_check </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>applicability_check</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute Oval_criteria_node->applicability_check. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">applicability_check</td><td>- the required value of the applicability_check attribute </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaecaaae0442a015acc45128e26176213b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>comment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute Oval_criteria_node->comment. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">comm</td><td>- (Not NULL) a copy of the comment parameter is set as the comment attribute. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga33164b3c1f3ed91632b70cbeccf9bc81"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_definition </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute Oval_extends->definition. </p>
<p>If Oval_criteria_node->type == OVAL_NODETYPE_EXTENDDEF and the value of the definition attribute is NULL, this method shall overwrite the definition attribute value with the definition parameter. Otherwise the Oval_criteria_node state shall not be changed by this method. </p>
</div>
</div>
<a class="anchor" id="gaae4cb3c12dcf9c81d9fe596edb84b98c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_negate </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>negate</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute Oval_criteria_node->negate. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">negate</td><td>- the required value of the negate attribute </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga90203e4a08e36e5beabf3eed5bf90ef6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_operator </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#gad5debd6ffe0c38c6de9108e86ee237e6">oval_operator_t</a> </td>
<td class="paramname"><em>op</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute Oval_criteria->operator. </p>
<p>If Oval_criteria_node->type == OVAL_NODETYPE_CRITERIA and the value of the operator attribute is OVAL_OPERATOR_UNKNOWN, this method shall overwrite the operator attribute value with the operator parameter. Otherwise the Oval_criteria_node state shall not be changed by this method. </p>
</div>
</div>
<a class="anchor" id="ga6984b998b1ef14bbf344399513e0a1b3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_node_set_test </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute Oval_criterion->test. </p>
<p>If Oval_criteria_node->type == OVAL_NODETYPE_CRITERION and the value of the test attribute is NULL, this method shall overwrite the test attribute value with the test parameter. Otherwise the Oval_criteria_node state shall not be changed by this method. </p>
</div>
</div>
<a class="anchor" id="gad1642b4d3d5f33566e0edf35b102db09"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_criteria_set_node_type </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"><em>node</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#ga6d0c5bdab379cdf9908e086efd4d9cca">oval_criteria_node_type_t</a> </td>
<td class="paramname"><em>type</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute Oval_criteria_node->type. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>- the required value of the type attribute </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gac818befd3b159dfa5723e8d21054ab26"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_add_affected </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__affected.html">oval_affected</a> * </td>
<td class="paramname"><em>affected</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of <a class="el" href="structoval__affected.html">oval_affected</a> to attribute oval_definition->affected. </p>
<dl class="section note"><dt>Note</dt><dd>Instances of Oval_affected bound to Oval_definition by this method should not be subsequently freed by the application using oval_affected_free. These instances shall be freed by the API when the Oval_definition is freed. </dd>
<dd>
A given instance of Oval_affected should not be appended by an application to more than one instance of Oval_definition, nor should the given instance of Oval_affected be appended more than once to a single instance of Oval_definition. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">affected</td><td>- appended instance of Oval_affected. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga5edd2eb22f538f9dbe77e7b19c760a1d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_add_note </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>note</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append a copy of the note parameter to attribute Oval_definition->notes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">note</td><td>- the note text. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga5cc090c0f8d4c801a59ba6bb1af17e0a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_add_reference </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td>
<td class="paramname"><em>reference</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of <a class="el" href="structoval__reference.html">oval_reference</a> to attribute oval_definition->references. </p>
<dl class="section note"><dt>Note</dt><dd>Instances of Oval_reference bound to Oval_definition by this method should not be subsequently freed by the application using oval_reference_free. These instances shall be freed by the API when the Oval_definition is freed. </dd>
<dd>
A given instance of Oval_reference should not be appended by an application to more than one instance of Oval_definition, nor should the given instance of Oval_reference be appended more than once to a single instance of Oval_definition. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reference</td><td>- appended instance of Oval_reference. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga592e2bae997d55535e99ed6c55198210"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition.html">oval_definition</a> * oval_definition_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"><em>old_definition</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__definition.html">oval_definition</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gab2368745a29f1e3a4649f513231fee10"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_free </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Release an instance of <a class="el" href="structoval__definition.html">oval_definition</a>. </p>
<p>All attributes of the Oval_definition are also released.</p>
<dl class="section note"><dt>Note</dt><dd>Applications should not call this method to free an Oval_definition that is bound to an instance of <a class="el" href="group__OVALDEF.html">OVAL Definitions</a>. These bound definitions are released when the <a class="el" href="group__OVALDEF.html">OVAL Definitions</a> are released. </dd></dl>
</div>
</div>
<a class="anchor" id="ga23b53971a6953e8f6e92385ea297bb5d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__affected__iterator.html">oval_affected_iterator</a> * oval_definition_get_affected </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->affected. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the affected attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa771c9866e018d4445433c07a107abf4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * oval_definition_get_criteria </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->criteria. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the criteria attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga5ee99958ccc7504e32fd6d41362c331b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_definition_get_description </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->description. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the description attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa6d0f0af7d4f71c5c917a9d18debe997"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_definition_get_notes </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->notes. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the notes attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga31a2cc76f167f1b436ab7f4d0b6a7b78"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__reference__iterator.html">oval_reference_iterator</a> * oval_definition_get_references </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->references. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the reference attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaf256261a2bdf5097472a61696d528013"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_definition_get_title </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->title. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the title attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga311335f5126c9713b5f862b64dc0431c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int oval_definition_get_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_definition->version. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__definition.html">oval_definition</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga4fc8f2192c748863eb0790326dbab998"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition.html">oval_definition</a> * oval_definition_iterator_next </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__iterator.html">oval_definition_iterator</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the next iterated instance of <a class="el" href="structoval__definition.html">oval_definition</a>. </p>
<p>NULL is returned if the iterator is exhausted (<a class="el" href="group__OVALDEF.html#ga87536fd22dd266cf9019a7a71255c59e">oval_definition_iterator_has_more</a> == <b>false</b>) </p>
</div>
</div>
<a class="anchor" id="gac90e87e3a607abd49e731f5beb807b36"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int oval_definition_model_bind_variable_model </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__variable__model.html">oval_variable_model</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Bind an <a class="el" href="structoval__variable__model.html" title="The OVAL variable model facilitates access to external variable value bindings used to to constrain t...">oval_variable_model</a> to the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>zero on success or non zero value if an error occurred </dd></dl>
</div>
</div>
<a class="anchor" id="ga5b8cc50ce5f27ba93c752f011759c489"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * oval_definition_model_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy an <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gad8548d0af50e84b98325b4ddb28e2694"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition.html">oval_definition</a> * oval_definition_model_get_definition </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the appended <a class="el" href="structoval__definition.html">oval_definition</a> having the specified id. </p>
<p>IF the specified id does not resolve to an appended Oval_definition the method shall return NULL. </p>
<dl class="section see"><dt>See Also</dt><dd>oval_definition_add_definition </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>the definition id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaa853307ec061645bf33840d146f27a8d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object.html">oval_object</a> * oval_definition_model_get_object </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL object by ID. </p>
<p>Return a designated <a class="el" href="structoval__object.html" title="An Oval_object instance describes a set of items to look for on an instrumented host platform...">oval_object</a> from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. If the specified id does not resolve to an <a class="el" href="structoval__object.html" title="An Oval_object instance describes a set of items to look for on an instrumented host platform...">oval_object</a> the function returns NULL. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
<tr><td class="paramname">id</td><td>the object id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga7fc7c974c220e0d955f01295aaf636e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> * oval_definition_model_get_objects </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL objects. </p>
<p>Return all oval_objects from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaa1c70702d70206abbae0ca9bdef54799"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state.html">oval_state</a> * oval_definition_model_get_state </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL state by ID. </p>
<p>Return a designated <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. If the specified id does not resolve to an <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> the function returns NULL. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
<tr><td class="paramname">id</td><td>the state id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga4f3d5bd5ebfe440f90a33272b7fb46c6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> * oval_definition_model_get_states </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL states. </p>
<p>Return all oval_states from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga4278f3ca4e6329a19c3ac06bf73489d0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__test.html">oval_test</a> * oval_definition_model_get_test </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get oval test by ID. </p>
<p>Return a designated <a class="el" href="structoval__test.html" title="An Oval_test specifies a technical control by identifying an oval_object that is evaluated on an inst...">oval_test</a> from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. If the specified id does not resolve to an <a class="el" href="structoval__test.html" title="An Oval_test specifies a technical control by identifying an oval_object that is evaluated on an inst...">oval_test</a> the function returns NULL. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
<tr><td class="paramname">id</td><td>the test id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga799f6aa6c3e8f78af3d5a74089b6a850"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__test__iterator.html">oval_test_iterator</a> * oval_definition_model_get_tests </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL tests. </p>
<p>Return all oval_tests from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga54268c4bd0674ca69b9f97e338a0a58b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable.html">oval_variable</a> * oval_definition_model_get_variable </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL variable by ID. </p>
<p>Return a designated <a class="el" href="structoval__variable.html" title="An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_...">oval_variable</a> from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. If the specified id does not resolve to an <a class="el" href="structoval__variable.html" title="An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_...">oval_variable</a> the function returns NULL. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
<tr><td class="paramname">id</td><td>the variable id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga6f9bac734358ca90312436cd68ca4494"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable__model__iterator.html">oval_variable_model_iterator</a> * oval_definition_model_get_variable_models </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Return the list of variable models bound to the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>iterator over <a class="el" href="structoval__variable__model.html" title="The OVAL variable model facilitates access to external variable value bindings used to to constrain t...">oval_variable_model</a> collection </dd></dl>
</div>
</div>
<a class="anchor" id="gaf89fe89094155a4ee46633489712e247"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable__iterator.html">oval_variable_iterator</a> * oval_definition_model_get_variables </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL variables. </p>
<p>Return all oval_variables from the specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the queried model. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga2931f8a8454c84703fb4e3e60a6c1552"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * oval_definition_model_import </td>
<td>(</td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>file</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Import the content from the file into an <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">file</td><td>filename </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>new <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>, or NULL if an error occurred</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000018">Deprecated:</a></b></dt><dd>This function has been deprecated and it may be dropped from later OpenSCAP releases. Please use oval_definition_model_import_source instead. </dd></dl>
</div>
</div>
<a class="anchor" id="ga2e22850b509823206ff6953d3ca9fd75"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * oval_definition_model_import_source </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoscap__source.html">oscap_source</a> * </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Import the content of the <a class="el" href="structoscap__source.html">oscap_source</a> into the <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">source</td><td>The <a class="el" href="structoscap__source.html">oscap_source</a> to import from </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>newly build <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>, or NULL if something went wrong </dd></dl>
</div>
</div>
<a class="anchor" id="ga10049d60252be9e682ba20fd9e64f43b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int oval_definition_model_merge </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>file</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Merge the content from the file with specified <a class="el" href="structoval__definition__model.html" title="Oval definition model. ">oval_definition_model</a>. </p>
<p>If imported content specifies a model entity that is already registered within the model its content is overwritten. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">model</td><td>the merge target model </td></tr>
<tr><td class="paramname">file</td><td>filename </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>-1 if an error occurred</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000019">Deprecated:</a></b></dt><dd>This function has been deprecated and it may be dropped from later OpenSCAP releases. </dd></dl>
</div>
</div>
<a class="anchor" id="ga80e2cee5cca6dee041a3ef6f289a320b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const char * oval_definition_model_supported </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get supported version of OVAL XML. </p>
<dl class="section return"><dt>Returns</dt><dd>version of XML file format </dd></dl>
</div>
</div>
<a class="anchor" id="ga6411a955e5d2f89b17115deba7a211ed"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__definition.html">oval_definition</a> * oval_definition_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct an instance of <a class="el" href="structoval__definition.html">oval_definition</a>. </p>
<p>Initialized attribute values are</p>
<ul>
<li>id bound to value specified by id parameter.</li>
</ul>
<p>version bound to 0.</p>
<ul>
<li>class bound to <a class="el" href="oval__types_8h.html#a3323efc68980168d0187c26dd22bfce1ae324b2f34b6257eb16fd3b223b698393">OVAL_CLASS_UNKNOWN</a></li>
<li>deprecated bound to <b>false</b></li>
<li>title bound to NULL</li>
<li>description bound to NULL</li>
<li>criteria bound to NULL</li>
<li>affected bound to empty iterator</li>
<li>references bound to empty iterator</li>
<li>notes bound to empty iterator <dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>- (non-NULL) A copy of this string is bound to the id attribute of the created instance. </td></tr>
</table>
</dd>
</dl>
</li>
</ul>
</div>
</div>
<a class="anchor" id="gab423431db12f7cba0953230648315c20"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_class </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="oval__types_8h.html#a3323efc68980168d0187c26dd22bfce1">oval_definition_class_t</a> </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->class. </p>
<p>This method shall overwrite a <a class="el" href="oval__types_8h.html#a3323efc68980168d0187c26dd22bfce1ae324b2f34b6257eb16fd3b223b698393">OVAL_CLASS_UNKNOWN</a> class attribute value with the value of the class parameter. Valid values of the class attribute shall not be overwritten by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">class</td><td>- the required class </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga44fb9c1aefb424c2b3e9c37e542ceff9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_criteria </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__criteria__node.html">oval_criteria_node</a> * </td>
<td class="paramname"><em>criteria</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->criteria. </p>
<p>This method shall overwrite a NULL criteria attribute value with the criteria parameter only if the criteria parameter is an instance of Oval_criteria (i.e. criteria->type == OVAL_NODETYPE_CRITERIA). Other values of the criteria attribute shall not be overwritten by this method. </p>
<dl class="section note"><dt>Note</dt><dd>Instances of Oval_criteria bound to Oval_definition by this method should not be subsequently freed by the application using oval_criteria_node_free. These instances shall be freed by the API when the Oval_definition is freed.</dd>
<dd>
An application should not bind a given instance of Oval_criteria to more than one instance of Oval_definition, nor should a given instance of Oval_criteria be bound to both an Oval_definition and an Oval_criteria (using oval_criteria_node_add_subnode). </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">criteria</td><td>- the required instance of Oval_criteria </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaa71ba1da6dc02c718878188a899014f3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_deprecated </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>deprecated</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->deprecated. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">deprecated</td><td>- the required deprecation toggle. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga2069e1282f02ebfb5a661eab90a229d6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_description </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>description</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->description. </p>
<p>This method shall overwrite a NULL description attribute value with a copy of the description parameter. Valid values of the description attribute shall not be overwritten by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">description</td><td>- the required description </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga6bf26fcb4a1a73cfc4cec902301298fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_title </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>title</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->title. </p>
<p>This method shall overwrite a NULL title attribute value with a copy of the title parameter. Valid values of the title attribute shall not be overwritten by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>- the required title </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gab2aee7edf52662652eb0fb9ddd8bef5e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_definition_set_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition.html">oval_definition</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set attribute oval_definition->version. </p>
<p>This method shall overwrite a zero version attribute value with the value of the version parameter. Valid values of the version attribute shall not be overwritten by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">version</td><td>- the required version </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga7aa93ac83325d4e43faff3f1a74a97db"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__entity.html">oval_entity</a> * oval_entity_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td>
<td class="paramname"><em>old_entity</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__entity.html">oval_entity</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga4e9767a32b9ce04039c055c699bfce87"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_entity_get_name </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL entity name. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the name attribute of the specified <a class="el" href="structoval__entity.html">oval_entity</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga802ecb19ae32ee7a054a13e2c69ef12f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__value.html">oval_value</a> * oval_entity_get_value </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL entity value. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the value attribute of the specified <a class="el" href="structoval__entity.html">oval_entity</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga8fac7405ec41226f0d22e46e1b360ec8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable.html">oval_variable</a> * oval_entity_get_variable </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__entity.html">oval_entity</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL entity varref variable. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the variable attribute of the specified <a class="el" href="structoval__entity.html">oval_entity</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga01301c7353996e914cfddb52fb98a229"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_add_behavior </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__behavior.html">oval_behavior</a> * </td>
<td class="paramname"><em>behavior</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of <a class="el" href="structoval__behavior.html">oval_behavior</a> to attribute oval_object->behaviors. </p>
<p>Oval_behaviors appended to a given Oval_object shall be freed by the API when the Oval_object is freed.</p>
<dl class="section note"><dt>Note</dt><dd>A specific instance of Oval_behavior should not be appended to more than one Oval_object, and an instance of Oval_behavior should not be appended more than once to a single Oval_object. </dd>
<dd>
An instance of Oval_behavior that is appended to an Oval_object should not be freed independently by the application using oval_behavior_free. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">behavior</td><td>- (Not NULL) the Oval_behavior to be appended. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga6acf65fe782b64885a38a7f9ef88f854"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_add_note </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>note</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Appends a copy of the note parameter to attribute oval_object->notes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">note</td><td>- (Not NULL) the text of the appended note. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gab62165673d2479dd5d27cb437e7120b8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_add_object_content </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td>
<td class="paramname"><em>content</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of <a class="el" href="structoval__object__content.html">oval_object_content</a> to attribute oval_object->object_contents. </p>
<p>Oval_object_contents appended to a given Oval_object shall be freed by the API when the Oval_object is freed.</p>
<dl class="section note"><dt>Note</dt><dd>A specific instance of Oval_object_content should not be appended to more than one Oval_object, and an instance of Oval_object_content should not be appended more than once to a single Oval_object. </dd>
<dd>
An instance of Oval_object_content that is appended to an Oval_object should not be freed independently by the application using oval_object_content_free. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">content</td><td>- (Not NULL) the Oval_object_content to be appended. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga4ecf8898e68b0ce27be0e379e782051d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object.html">oval_object</a> * oval_object_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"><em>old_object</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__object.html">oval_object</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__object.html">oval_object</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga2f9667276e93ad35d76db1dcffc2fc79"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * oval_object_content_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td>
<td class="paramname"><em>old_content</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__object__content.html">oval_object_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga74d796e4b2e67c4365199ff25e4cbf3b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__entity.html">oval_entity</a> * oval_object_content_get_entity </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get entity of a simple object content. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the entity attribute of the specified <a class="el" href="structoval__object__content.html">oval_object_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gab9b8acc8417e50346277434664580d70"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_object_content_get_field_name </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get field name of a object content. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the fieldName attribute of the specified <a class="el" href="structoval__object__content.html">oval_object_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga34bbb9c642f068ee2804948a5aa6e0fa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * oval_object_content_get_setobject </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object__content.html">oval_object_content</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get setobject of a set object content. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the set attribute of the specified <a class="el" href="structoval__object__content.html">oval_object_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gab8bd2340de0758874def8c260fdd4054"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__behavior__iterator.html">oval_behavior_iterator</a> * oval_object_get_behaviors </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_object->behaviors. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the behaviors attribute of the specified <a class="el" href="structoval__object.html">oval_object</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga1f96b1099febf9cad3f8b8830be86b82"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_object_get_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_object->comment. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the comment attribute of the specified <a class="el" href="structoval__object.html">oval_object</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga7caf7a93229db23933ddb155db9314fa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_object_get_id </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_object->id. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__object.html">oval_object</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga84349daf1af6150c3cacdf5e1de6cd1e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const char * oval_object_get_name </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the name of an <a class="el" href="structoval__object.html">oval_object</a>. </p>
<p>This is a convenience method that is equivalent to oval_subtype_get_text (<a class="el" href="group__OVALDEF.html#ga0d345c0d277c3ddb7d3919eafbbbb1bd">oval_object_get_subtype</a>)+"_object". </p>
</div>
</div>
<a class="anchor" id="ga3c9bdd066ff355ac056618c3087e0fb1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_object_get_notes </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_object->notes. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the notes attribute of the specified <a class="el" href="structoval__object.html">oval_object</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaea7af3fbe1776527e8eef6233aebe3b5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object__content__iterator.html">oval_object_content_iterator</a> * oval_object_get_object_contents </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_object->contents. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the object_content attribute of the specified <a class="el" href="structoval__object.html">oval_object</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga0745d23ca1646b7e5de5015a6dbce333"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object.html">oval_object</a> * oval_object_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct new intance of <a class="el" href="structoval__object.html">oval_object</a>. </p>
<p>Attribute values shall be initialized:</p>
<ul>
<li>family – initialized to <a class="el" href="group__OVAL.html#gga83b7e728a31f7ad0a0306ec1408f0a1aac4dc6183466e5a02ae484055e6e250a0">OVAL_FAMILY_UNKNOWN</a></li>
<li>subtype – initialized to OVAL_SUBTYPE_UNKNOWN</li>
<li>notes – initialized to empty iterator</li>
<li>comment – initialized to NULL</li>
<li>id – initialized to a copy of the id parameter</li>
<li>deprecated – initialized to <b>false</b></li>
<li>version – initialized to zero</li>
<li>contents – initialized to empty iterator</li>
<li>behaviors – initialized to empty iterator</li>
</ul>
<dl class="section note"><dt>Note</dt><dd>This method shall not construct a new instance of Oval_object and shall return NULL if the text of the id parameter is not matched by the regular expression <b>^oval:[.A-Za-z0-9_-]+:obj:[1-9][0-9]*$</b>. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>- (Not NULL) the text of the required object id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaa8c0c1dd2ba2400ebcbc896169d5666b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_set_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>comment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets a copy of the comment parameter to attribute oval_object->comment. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">comment</td><td>- (Not NULL) the text of the comment. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gab8022028389fbea3d58ff68f259490ca"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_set_subtype </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td>
<td class="paramname"><em>subtype</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attributes oval_object->subtype and oval_object->family. </p>
<p>If Oval_object->subtype == OVAL_SUBTYPE_UNKNOWN and parameter subtype <> OVAL_SUBTYPE_UNKNOWN, this method shall overwrite Oval_object->subtype with the value of the subtype parameter and Oval_object->family with the value of <a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> corresponding to the specified subtype. Otherwise, the state of the Oval_object instance shall not be changed by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">subtype</td><td>- the required subtype value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaba746d196149d499e10bde052158a474"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_object_set_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_object->version. </p>
<p>If Oval_object->version == 0 and parameter version >0, this method shall overwrite Oval_object->version with the parameter value. Otherwise, the method shall leave the Oval_object state unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">version</td><td>- (>0) the required version </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga4f5d8b84579a886cbc41cbf1d056135a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__reference.html">oval_reference</a> * oval_reference_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td>
<td class="paramname"><em>old_reference</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__reference.html">oval_reference</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga0156cabd1801258ef518c8d864c42bd9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_reference_get_id </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL reference ID. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__reference.html">oval_reference</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga0dd9435c7e89f26df629b1db9a5b6d4f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_reference_get_source </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL reference source. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the source attribute of the specified <a class="el" href="structoval__reference.html">oval_reference</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga8ac0f7c3786be23fbb630903b05cd87c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_reference_get_url </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__reference.html">oval_reference</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL reference URL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the url attribute of the specified <a class="el" href="structoval__reference.html">oval_reference</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaec13f21458a8aefbd1663d71a0d8f56e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * oval_setobject_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td>
<td class="paramname"><em>old_setobject</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__setobject.html">oval_setobject</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga040ca7cb64cf1c519e81074428ecf052"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__filter__iterator.html">oval_filter_iterator</a> * oval_setobject_get_filters </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL set object filters. </p>
<p>This works only with sets of OVAL_SET_COLLECTIVE type. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the filters attribute of the specified <a class="el" href="structoval__setobject.html">oval_setobject</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga57f708074fd391255c67b352623d1ed5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object__iterator.html">oval_object_iterator</a> * oval_setobject_get_objects </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL set object referenced objects. </p>
<p>This works only with sets of OVAL_SET_COLLECTIVE type. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the objects attribute of the specified <a class="el" href="structoval__setobject.html">oval_setobject</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaafd4a4312cf1d252aea30894e2c165af"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct oval_setobject_iterator * oval_setobject_get_subsets </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__setobject.html">oval_setobject</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL set object subsets. </p>
<p>This works only with sets of OVAL_SET_AGGREGATE type. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the subsets attribute of the specified <a class="el" href="structoval__setobject.html">oval_setobject</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga4d65d2f430c82dd92d5822728aa86e1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_state_add_content </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td>
<td class="paramname"><em>content</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append instance of <a class="el" href="structoval__state__content.html">oval_state_content</a> to attribute oval_state->state_contents. </p>
<p>oval_state_contents appended to a given <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> shall be freed by the API when the <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> is freed.</p>
<dl class="section note"><dt>Note</dt><dd>A specific instance of <a class="el" href="structoval__state__content.html" title="An Oval_state_content instance specifies an oval_state field. ">oval_state_content</a> should not be appended to more than one <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a>, and an instance of <a class="el" href="structoval__state__content.html" title="An Oval_state_content instance specifies an oval_state field. ">oval_state_content</a> should not be appended more than once to a single <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a>. </dd>
<dd>
An instance of <a class="el" href="structoval__state__content.html" title="An Oval_state_content instance specifies an oval_state field. ">oval_state_content</a> that is appended to an <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> should not be freed independently by the application using oval_state_content_free. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">content</td><td>- (Not NULL) the <a class="el" href="structoval__state__content.html" title="An Oval_state_content instance specifies an oval_state field. ">oval_state_content</a> to be appended. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga9371475d9d286345d880e24b7d6297ff"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_state_add_note </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>note</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Appends a copy of the note parameter to attribute oval_state->notes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">note</td><td>- (Not NULL) the text of the appended note. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gaa7951fab775252622de5d3d1b2a8a0f0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state.html">oval_state</a> * oval_state_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"><em>old_state</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__state.html">oval_state</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__state.html">oval_state</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga17c233368a8f030f4902904deaa4f7fd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * oval_state_content_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td>
<td class="paramname"><em>old_content</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__state__content.html">oval_state_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaabee367f5f661e05c1a6819524a2db2b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__entity.html">oval_entity</a> * oval_state_content_get_entity </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state__content.html">oval_state_content</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get entity of a state content. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the entity attribute of the specified <a class="el" href="structoval__state__content.html">oval_state_content</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga8edde47e7d781d442cbc8e5fdf37e9b7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_state_get_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_state->comment. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the comment attribute of the specified <a class="el" href="structoval__state.html">oval_state</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga6d38e6821748f4daf018ad5d02bbbb7d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state__content__iterator.html">oval_state_content_iterator</a> * oval_state_get_contents </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_state->contents. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the contents attribute of the specified <a class="el" href="structoval__state.html">oval_state</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga72a7ee9bae3338e20ff89aa51b0d95d0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_state_get_id </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_state->id. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__state.html">oval_state</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga685f5e181ecde5479106f1b72030013d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const char * oval_state_get_name </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the name of an <a class="el" href="structoval__state.html">oval_state</a>. </p>
<p>This is a convenience method that is equivalent to oval_subtype_get_text (<a class="el" href="group__OVALDEF.html#gadb8affdb7564eff0b6b5ef3ee3f73512">oval_state_get_subtype</a>)+"_state". </p>
</div>
</div>
<a class="anchor" id="ga2a3675893b4241ffdee4447f7d1aa3f2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_state_get_notes </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_state->notes. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the notes attribute of the specified <a class="el" href="structoval__state.html">oval_state</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga232ee583317c4e71772f75ff13d0f74c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state.html">oval_state</a> * oval_state_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct new intance of <a class="el" href="structoval__state.html">oval_state</a>. </p>
<p>Attribute values shall be initialized:</p>
<ul>
<li>family – initialized to <a class="el" href="group__OVAL.html#gga83b7e728a31f7ad0a0306ec1408f0a1aac4dc6183466e5a02ae484055e6e250a0">OVAL_FAMILY_UNKNOWN</a></li>
<li>subtype – initialized to OVAL_SUBTYPE_UNKNOWN</li>
<li>notes – initialized to empty iterator</li>
<li>comment – initialized to NULL</li>
<li>id – initialized to a copy of the id parameter</li>
<li>deprecated – initialized to <b>false</b></li>
<li>version – initialized to zero</li>
<li>operator – initialized to OVAL_OPERATOR_AND</li>
<li>contents – initialized to empty iterator</li>
</ul>
<dl class="section note"><dt>Note</dt><dd>This method shall not construct a new instance of Oval_state and shall return NULL if the text of the id parameter is not matched by the regular expression <b>^oval:[.A-Za-z0-9_-]+:stt:[1-9][0-9]*$</b>. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>- (Not NULL) the text of the required state id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga81844120fd22784391967ae54f4815cd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_state_set_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>comment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets a copy of the comment parameter to attribute oval_state->comment. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">comment</td><td>- (Not NULL) the text of the comment. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga312270d697ba5aec73b0765a0b572d57"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_state_set_subtype </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td>
<td class="paramname"><em>subtype</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attributes oval_state->subtype and oval_state->family. </p>
<p>If oval_state->subtype == OVAL_SUBTYPE_UNKNOWN and parameter subtype <> OVAL_SUBTYPE_UNKNOWN, this method shall overwrite oval_state->subtype with the value of the subtype parameter and oval_state->family with the value of <a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> corresponding to the specified subtype. Otherwise, the state of the <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> instance shall not be changed by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">subtype</td><td>- the required subtype value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga4de8c320f537f7636691ea7bc1898ed2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_state_set_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_state->version. </p>
<p>If oval_state->version == 0 and parameter version >0, this method shall overwrite oval_state->version with the parameter value. Otherwise, the method shall leave the <a class="el" href="structoval__state.html" title="An Oval_state instance is a collection of one or more characteristics pertaining to a specific object...">oval_state</a> state unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">version</td><td>- (>0) the required version </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga5feb5d65b2e15e995ccd151e4eb5b873"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_add_note </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>note</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Appends a copy of the note parameter to attribute oval_test->notes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">note</td><td>- (Not NULL) the text of the appended note. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gabc49f890db2a53ee625fe93511ec2b01"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_add_state </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__state.html">oval_state</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Add the specified state to the state list of the specified test. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">state</td><td>- (<> NULL) the required state </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga1dc410d423d5560ae30f8cac0d818771"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__test.html">oval_test</a> * oval_test_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"><em>old_test</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__test.html">oval_test</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__test.html">oval_test</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaaf2b6790594b8c9059e395b5728430d4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_test_get_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_test->comment. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the comment attribute of the specified <a class="el" href="structoval__test.html">oval_test</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga61cf9cf8bb52f48b50e45cd9a688c186"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_test_get_id </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_test->id. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__test.html">oval_test</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga495cc1a7ad3ac8e0e7e8bb3fdf5611e5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__string__iterator.html">oval_string_iterator</a> * oval_test_get_notes </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_test->notes. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the notes attribute of the specified <a class="el" href="structoval__test.html">oval_test</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga630ee349c16490b939e0b0cacea2dd07"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__object.html">oval_object</a> * oval_test_get_object </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_test->object. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the object attribute of the specified <a class="el" href="structoval__test.html">oval_test</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga13f4792ecb3498cef35f4c32472d072a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__state__iterator.html">oval_state_iterator</a> * oval_test_get_states </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_test->states. </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the states attribute of the specified <a class="el" href="structoval__test.html">oval_test</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="ga6e9b5ff346e30f5aa7641725a6d9e9d8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__test.html">oval_test</a> * oval_test_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct new instance of <a class="el" href="structoval__test.html">oval_test</a>. </p>
<p>Attribute values shall be initialized:</p>
<ul>
<li>family – initialized to <a class="el" href="group__OVAL.html#gga83b7e728a31f7ad0a0306ec1408f0a1aac4dc6183466e5a02ae484055e6e250a0">OVAL_FAMILY_UNKNOWN</a></li>
<li>subtype – initialized to OVAL_SUBTYPE_UNKNOWN</li>
<li>notes – initialized to empty iterator.</li>
<li>comment – initialized to NULL</li>
<li>id – initialized to a copy of the id parameter</li>
<li>deprecated – initialized to <b>false</b></li>
<li>version – initialized to zero</li>
<li>existence – initialized to OVAL_CHECK_UNKNOWN</li>
<li>check – initialized to OVAL_CHECK_UNKNOWN</li>
<li>object – initialized to NULL</li>
<li>state – initialized to NULL</li>
</ul>
<dl class="section note"><dt>Note</dt><dd>This method shall not construct a new instance of Oval_test and shall return NULL if the text of the id parameter is not matched by the regular expression <b>^oval:[.A-Za-z0-9_-]+:tst:[1-9][0-9]*$</b>. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>- (Not NULL) the text of the required test id. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="gab8cb734092ee902043074b3d62752896"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_check </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#ga926ba821c14d2faac9a23b8908c23d70">oval_check_t</a> </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_test->check. </p>
<p>If Oval_test->check == OVAL_CHECK_UNKNOWN and parameter check <> OVAL_CHECK_UNKNOWN, this method shall overwrite Oval_test->check with the parameter check. Otherwise, the method shall leave the Oval_test state unchanged. </p>
<dl class="section note"><dt>Note</dt><dd>If Oval_test->state == NULL, the value of Oval_test->check is ignored. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">check</td><td>- (<> OVAL_CHECK_UNKNOWN) the required check </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga2676ed1eb9bfacab4537781d9c8727c0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>comment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets a copy of the comment parameter to attribute oval_test->comment. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">comment</td><td>- (Not NULL) the text of the comment. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga7ea4584bce446992d713ee7b8fabdf6b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_existence </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#ga523a0461b03a564f296f54a73f99ade1">oval_existence_t</a> </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_test->existence. </p>
<p>If Oval_test->existence == OVAL_CHECK_UNKNOWN and parameter existence <> OVAL_CHECK_UNKNOWN, this method shall overwrite Oval_test->existence with the parameter value. Otherwise, the method shall leave the Oval_test state unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">existence</td><td>- (<> OVAL_CHECK_UNKNOWN) the required existence </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga559dc4e8bfc39ef1aed3c6bac219d299"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_object </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__object.html">oval_object</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_test->object. </p>
<p>If Oval_test->object == NULL and parameter object <> NULL, this method shall overwrite Oval_test->object with the parameter object. Otherwise, the method shall leave the Oval_test state unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>- (<> NULL) the required object </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga1fce15f743d777ca44ebab29a1392157"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_subtype </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVAL.html#ga99498f525c1a0282ef45557fc882f97f">oval_subtype_t</a> </td>
<td class="paramname"><em>subtype</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attributes oval_test->subtype and Oval_test->family. </p>
<p>If Oval_test->subtype == OVAL_SUBTYPE_UNKNOWN and parameter subtype <> OVAL_SUBTYPE_UNKNOWN, this method shall overwrite Oval_test->subtype with the value of the subtype parameter and Oval_test->family with the value of <a class="el" href="group__OVAL.html#ga83b7e728a31f7ad0a0306ec1408f0a1a">oval_family_t</a> corresponding to the specified subtype. Otherwise, the state of the Oval_test instance shall not be changed by this method. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">subtype</td><td>- the required subtype value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga2851958564a793edf5762759cd536014"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_test_set_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__test.html">oval_test</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets attribute oval_test->version. </p>
<p>If Oval_test->version == 0 and parameter version >0, this method shall overwrite Oval_test->version with the parameter value. Otherwise, the method shall leave the Oval_test state unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">version</td><td>- (>0) the required version </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga7fe14f1f36f8bcd9ed374c682d3553b7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__value.html">oval_value</a> * oval_value_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__value.html">oval_value</a> * </td>
<td class="paramname"><em>old_value</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__value.html">oval_value</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gada8afe096881f72f6ab3f44f31129be1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_value_get_text </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__value.html">oval_value</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get OVAL value as a text. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the text attribute of the specified <a class="el" href="structoval__value.html">oval_value</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga4e2a5d7f39daee5edf747f568fa90e69"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_add_value </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__value.html">oval_value</a> * </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Append an instance of Oval_value to the attribute Oval_constant->values. </p>
<p>If attribute type <> OVAL_VARIABLE_CONSTANT or the value parameter is NULL the state of the <a class="el" href="structoval__variable.html" title="An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_...">oval_variable</a> shall not be changed by this method. Otherwise, The value parameter shall be appended and shall be freed by the API when the Oval_constant is freed</p>
<dl class="section note"><dt>Note</dt><dd>When a value is appended to an Oval_constant by an application, that value should not be subsequently freed by the application using oval_value_free. </dd>
<dd>
An application should not append an Oval_value to more than one Oval_constant, and that an Oval_value should not be bound more than once to a single Oval_constant. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">value</td><td>- the required value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga340cb9621c5af8d3e9ab6468cc1948e0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable.html">oval_variable</a> * oval_variable_clone </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>new_model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"><em>old_variable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Clone instance of <a class="el" href="structoval__variable.html">oval_variable</a> and add it to the specified <a class="el" href="structoval__definition__model.html">oval_definition_model</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the specified <a class="el" href="structoval__variable.html">oval_variable</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gad31a4444a5d7198cec1e25006854d352"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_variable_get_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_variable->comment. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the comment attribute of the specified <a class="el" href="structoval__variable.html">oval_variable</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gaa34166a9c0f382ee5c8343dd48d704f2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__component.html">oval_component</a> * oval_variable_get_component </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_local->component. </p>
<p>If attribute type <> OVAL_VARIABLE_LOCAL this method shall return NULL. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the component attribute of the specified <a class="el" href="structoval__variable.html">oval_variable</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ga5af5f0a8f14194c6c95e8fed74c3ff2f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">char * oval_variable_get_id </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute oval_variable->id. </p>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the id attribute of the specified <a class="el" href="structoval__variable.html">oval_variable</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="gafb78c4dc3624c31dc87d4dfc4d12367e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__value__iterator.html">oval_value_iterator</a> * oval_variable_get_values </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns attribute Oval_external/Oval_constant->values. </p>
<p>If attribute type == OVAL_VARIABLE_LOCAL or OVAL_VARIABLE_UNKNOWN, this method shall return NULL </p>
<dl class="section return"><dt>Returns</dt><dd>A new iterator for the values attribute of the specified <a class="el" href="structoval__variable.html">oval_variable</a>. It should be freed after use by the calling application. </dd></dl>
</div>
</div>
<a class="anchor" id="gaf8e193bd514f8296466c3801bde2bb25"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">struct <a class="el" href="structoval__variable.html">oval_variable</a> * oval_variable_new </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__definition__model.html">oval_definition_model</a> * </td>
<td class="paramname"><em>model</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#ga508c483d127b48e6190a40b401962db6">oval_variable_type_t</a> </td>
<td class="paramname"><em>type</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct new instance of <a class="el" href="structoval__variable.html">oval_variable</a>. </p>
<p>Attribute values shall be initialized:</p>
<ul>
<li>id – initialized to a copy of the id parameter</li>
<li>type – initialized to the type parameter</li>
<li>version – initialized to zero</li>
<li>deprecated – initialized to <b>false</b></li>
<li>comment – initialized to NULL</li>
<li>datatype – initialzed to OVAL_DATATYPE_UNKNOWN</li>
<li>If type == OVAL_VARIABLE_CONSTANT<ul>
<li>values – initialized to empty iterator</li>
</ul>
</li>
<li>If type == OVAL_VARIABLE_EXTERNAL<ul>
<li>values – initialized to NULL</li>
</ul>
</li>
<li>If type == OVAL_VARIABLE_LOCAL<ul>
<li>component – initialized to NULL</li>
</ul>
</li>
</ul>
<p>This method shall not construct a new instance of <a class="el" href="structoval__variable.html" title="An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_...">oval_variable</a> and shall return NULL</p>
<ul>
<li>if the text of the id parameter is not matched by the regular expression <b>^oval:[.A-Za-z0-9_-]+:var:[1-9][0-9]*$</b>.</li>
</ul>
<p>if the value of the type parameter is OVAL_VARIABLE_UNKNOWN.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>- (Not NULL) the text of the required variable id. </td></tr>
<tr><td class="paramname">type</td><td>- (Not OVAL_VARIABLE_UNKNOWN) the required type. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga1936e1bd45e7fd22d11f7477bd5d8456"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_set_comment </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>comment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute oval_variable->comment. </p>
<p>If attribute oval_variable->comment == NULL this method shall overwrite the attribute with a copy of the comment parameter. Otherwise the variable state shall be unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">comm</td><td>- (Not NULL) a copy of the comment parameter is set as the comment attribute. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga61cb4fd268434eb7f82400806be6e245"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_set_component </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">struct <a class="el" href="structoval__component.html">oval_component</a> * </td>
<td class="paramname"><em>component</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Bind an instance of Oval_component to the attribute Oval_local->component. </p>
<p>If attribute type <> OVAL_VARIABLE_LOCAL, the component attribute <> NULL or the component parameter is NULL the state of the <a class="el" href="structoval__variable.html" title="An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_...">oval_variable</a> shall not be changed by this method. Otherwise, The component parameter shall be bound to the component attribute and shall be freed by the API when the Oval_local is freed</p>
<dl class="section note"><dt>Note</dt><dd>When an Oval_component is bound to an Oval_local by an application, the Oval_component should not be subsequently freed by the application using oval_component_free. </dd>
<dd>
An application should not bind a single Oval_component to more than one Oval_local or to an Oval_local and an Oval_function. </dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">component</td><td>- the required component. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga838bbd211257461e7f354bf5f88a8a64"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_set_datatype </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__OVALDEF.html#gaf069fe2fb2a9ae3abe47cab55b89827e">oval_datatype_t</a> </td>
<td class="paramname"> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute oval_variable->datatype. </p>
<p>If attribute oval_variable->datatype == OVAL_DATATYPE_UNKNOWN this method shall overwrite the attribute with the datatype parameter. Otherwise the variable state shall be unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">datatype</td><td>- (Not OVAL_DATATYPE_UNKNOWN) a the required datatype. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga59596758acd538be98ebd9b8775ab794"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_set_deprecated </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>deprecated</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute oval_variable->deprecated. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">deprecated</td><td>- the required deprecation toggle. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ga9c02ae430af80d08c398953cada67318"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void oval_variable_set_version </td>
<td>(</td>
<td class="paramtype">struct <a class="el" href="structoval__variable.html">oval_variable</a> * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>set attribute oval_variable->version. </p>
<p>If attribute oval_variable->version == 0 this method shall overwrite the attribute with the version parameter. Otherwise the variable state shall be unchanged. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">version</td><td>- (>0) the required version. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html>
|
ykhodorkovskiy/clip
|
packages/openscap/openscap-1.2.1/docs/html/group__OVALDEF.html
|
HTML
|
apache-2.0
| 470,053
|
:host {
display: block;
position: relative;
width: 100%;
height: 100%;
}
.l-desc-text-wrapper {
margin-bottom: 25px;
}
.l-desc-text {
color: #999;
font-size: 14px;
}
.l-row {
margin-bottom: 25px;
}
.l-row {
display: flex;
}
.l-row > table {
flex: 1;
}
.l-row > table:first-child {
margin-right: 10px;
}
.l-section-table {
width: 100%;
font-family: 'Open Sans', sans-serif;
}
thead > tr {
background-color: #f6f8fb;
}
tbody > tr {
background-color: #fff;
}
.l-section-table th, .l-section-table td {
font-size: 13px;
border: 1px solid #e5e8f0;
}
.l-section-table th {
font-weight: 600;
color: #333;
padding: 12px 0;
}
.l-section-table td {
font-weight: 400;
padding: 11px;
}
.l-download-link-cell {
text-align: center;
height: 109px;
}
.l-download-link {
font-size: 16px;
font-weight: 600;
color: #428bca;
}
|
suraj-raturi/pinpoint
|
web/src/main/angular/src/app/core/components/configuration-installation/configuration-installation-container.component.css
|
CSS
|
apache-2.0
| 929
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:27 EDT 2015 -->
<title>SSTableReader.OpenReason (apache-cassandra API)</title>
<meta name="date" content="2015-08-28">
<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="SSTableReader.OpenReason (apache-cassandra API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/SSTableReader.OpenReason.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.Factory.html" title="class in org.apache.cassandra.io.sstable.format"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.Operator.html" title="class in org.apache.cassandra.io.sstable.format"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" target="_top">Frames</a></li>
<li><a href="SSTableReader.OpenReason.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </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">org.apache.cassandra.io.sstable.format</div>
<h2 title="Enum SSTableReader.OpenReason" class="title">Enum SSTableReader.OpenReason</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum<<a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a>></li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.io.sstable.format.SSTableReader.OpenReason</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Comparable<<a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a>></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.html" title="class in org.apache.cassandra.io.sstable.format">SSTableReader</a></dd>
</dl>
<hr>
<br>
<pre>public static enum <span class="typeNameLabel">SSTableReader.OpenReason</span>
extends java.lang.Enum<<a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a>></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html#EARLY">EARLY</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html#METADATA_CHANGE">METADATA_CHANGE</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html#MOVED_START">MOVED_START</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html#NORMAL">NORMAL</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="t1" class="tableTab"><span><a href="javascript:show(1);">Static 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>static <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.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>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Enum</h3>
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<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>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="NORMAL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NORMAL</h4>
<pre>public static final <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a> NORMAL</pre>
</li>
</ul>
<a name="EARLY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EARLY</h4>
<pre>public static final <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a> EARLY</pre>
</li>
</ul>
<a name="METADATA_CHANGE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>METADATA_CHANGE</h4>
<pre>public static final <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a> METADATA_CHANGE</pre>
</li>
</ul>
<a name="MOVED_START">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MOVED_START</h4>
<pre>public static final <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a> MOVED_START</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a>[] values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (SSTableReader.OpenReason c : SSTableReader.OpenReason.values())
System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static <a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" title="enum in org.apache.cassandra.io.sstable.format">SSTableReader.OpenReason</a> valueOf(java.lang.String name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/SSTableReader.OpenReason.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.Factory.html" title="class in org.apache.cassandra.io.sstable.format"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/apache/cassandra/io/sstable/format/SSTableReader.Operator.html" title="class in org.apache.cassandra.io.sstable.format"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html" target="_top">Frames</a></li>
<li><a href="SSTableReader.OpenReason.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2015 The Apache Software Foundation</small></p>
</body>
</html>
|
mitch-kyle/message-board
|
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/io/sstable/format/SSTableReader.OpenReason.html
|
HTML
|
apache-2.0
| 15,519
|
<!doctype html><html lang=en><head><title>Redirecting…</title><link rel=canonical href=/v1.5/zh/faq/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.5/zh/faq/"></head><body><h1>Redirecting…</h1><a href=/v1.5/zh/faq/>Click here if you are not redirected.</a></body></html>
|
istio/istio.io
|
archive/v1.5/zh/help/faq/index.html
|
HTML
|
apache-2.0
| 334
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function template make_exception_handler</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="Chapter 1. Boost.Log 2.0">
<link rel="up" href="../../utilities.html#header.boost.log.utility.exception_handler_hpp" title="Header <boost/log/utility/exception_handler.hpp>">
<link rel="prev" href="make_exception_suppressor.html" title="Function make_exception_suppressor">
<link rel="next" href="make_exception_idp21137952.html" title="Function template make_exception_handler">
</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></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="make_exception_suppressor.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.exception_handler_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="make_exception_idp21137952.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.make_exception_idp21134720"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template make_exception_handler</span></h2>
<p>boost::log::make_exception_handler</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="../../utilities.html#header.boost.log.utility.exception_handler_hpp" title="Header <boost/log/utility/exception_handler.hpp>">boost/log/utility/exception_handler.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> HandlerT<span class="special">></span>
<a class="link" href="exception_handler.html" title="Class template exception_handler">exception_handler</a><span class="special"><</span> <span class="keyword">typename</span> <span class="identifier">HandlerT</span><span class="special">::</span><span class="identifier">exception_types</span><span class="special">,</span> <span class="identifier">HandlerT</span> <span class="special">></span>
<span class="identifier">make_exception_handler</span><span class="special">(</span><span class="identifier">HandlerT</span> <span class="keyword">const</span> <span class="special">&</span> handler<span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp27649360"></a><h2>Description</h2>
<p>The function creates an exception handler functional object. The handler will call to the user-specified functional object with an exception as its argument.</p>
<p>
</p>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>This form requires the user-defined functional object to have an <code class="computeroutput">exception_types</code> nested type. This type should be an MPL sequence of all expected exception types. </p></td></tr>
</table></div>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><code class="computeroutput">handler</code></span></p></td>
<td><p>User-defined functional object that will receive exceptions. </p></td>
</tr></tbody>
</table></div></td>
</tr>
<tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>A nullary functional object that should be called from within a <code class="computeroutput">catch</code> statement.</p></td>
</tr>
</tbody>
</table></div>
</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 © 2007-2013 Andrey Semashev<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="make_exception_suppressor.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.exception_handler_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="make_exception_idp21137952.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
ryancoleman/autodock-vina
|
boost_1_54_0/libs/log/doc/html/boost/log/make_exception_idp21134720.html
|
HTML
|
apache-2.0
| 5,692
|
<!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="null" lang="null">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>CharacterProperty xref</title>
<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../apidocs/net/sourceforge/pmd/properties/CharacterProperty.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <strong>package</strong> net.sourceforge.pmd.properties;
<a name="2" href="#2">2</a>
<a name="3" href="#3">3</a> <strong>import</strong> net.sourceforge.pmd.util.StringUtil;
<a name="4" href="#4">4</a>
<a name="5" href="#5">5</a> <em>/**</em>
<a name="6" href="#6">6</a> <em> * Defines a property type that supports Character values.</em>
<a name="7" href="#7">7</a> <em> * </em>
<a name="8" href="#8">8</a> <em> * @author Brian Remedios</em>
<a name="9" href="#9">9</a> <em> * @version $Revision$</em>
<a name="10" href="#10">10</a> <em> */</em>
<a name="11" href="#11">11</a> <strong>public</strong> <strong>class</strong> <a href="../../../../net/sourceforge/pmd/properties/CharacterProperty.html">CharacterProperty</a> <strong>extends</strong> <a href="../../../../net/sourceforge/pmd/properties/AbstractPMDProperty.html">AbstractPMDProperty</a> {
<a name="12" href="#12">12</a>
<a name="13" href="#13">13</a> <em>/**</em>
<a name="14" href="#14">14</a> <em> * Constructor for CharacterProperty.</em>
<a name="15" href="#15">15</a> <em> * @param theName String</em>
<a name="16" href="#16">16</a> <em> * @param theDescription String</em>
<a name="17" href="#17">17</a> <em> * @param theDefault char</em>
<a name="18" href="#18">18</a> <em> * @param theUIOrder float</em>
<a name="19" href="#19">19</a> <em> */</em>
<a name="20" href="#20">20</a> <strong>public</strong> <a href="../../../../net/sourceforge/pmd/properties/CharacterProperty.html">CharacterProperty</a>(String theName, String theDescription, <strong>char</strong> theDefault, <strong>float</strong> theUIOrder) {
<a name="21" href="#21">21</a> <strong>super</strong>(theName, theDescription, Character.valueOf(theDefault), theUIOrder);
<a name="22" href="#22">22</a> }
<a name="23" href="#23">23</a>
<a name="24" href="#24">24</a> <em>/**</em>
<a name="25" href="#25">25</a> <em> * Constructor for CharacterProperty.</em>
<a name="26" href="#26">26</a> <em> * @param theName String</em>
<a name="27" href="#27">27</a> <em> * @param theDescription String</em>
<a name="28" href="#28">28</a> <em> * @param theDefaults char[]</em>
<a name="29" href="#29">29</a> <em> * @param theUIOrder float</em>
<a name="30" href="#30">30</a> <em> * @param delimiter char</em>
<a name="31" href="#31">31</a> <em> */</em>
<a name="32" href="#32">32</a> <strong>public</strong> <a href="../../../../net/sourceforge/pmd/properties/CharacterProperty.html">CharacterProperty</a>(String theName, String theDescription, <strong>char</strong>[] theDefaults, <strong>float</strong> theUIOrder, <strong>char</strong> delimiter) {
<a name="33" href="#33">33</a> <strong>this</strong>(theName, theDescription, asCharacters(theDefaults), theUIOrder, delimiter);
<a name="34" href="#34">34</a> }
<a name="35" href="#35">35</a>
<a name="36" href="#36">36</a> <em>/**</em>
<a name="37" href="#37">37</a> <em> * Constructor for CharacterProperty.</em>
<a name="38" href="#38">38</a> <em> * @param theName String</em>
<a name="39" href="#39">39</a> <em> * @param theDescription String</em>
<a name="40" href="#40">40</a> <em> * @param theDefaults String</em>
<a name="41" href="#41">41</a> <em> * @param theUIOrder float</em>
<a name="42" href="#42">42</a> <em> * @param delimiter char</em>
<a name="43" href="#43">43</a> <em> */</em>
<a name="44" href="#44">44</a> <strong>public</strong> <a href="../../../../net/sourceforge/pmd/properties/CharacterProperty.html">CharacterProperty</a>(String theName, String theDescription, String theDefaults, <strong>float</strong> theUIOrder, <strong>char</strong> delimiter) {
<a name="45" href="#45">45</a> <strong>this</strong>(theName, theDescription, theDefaults.toCharArray(), theUIOrder, delimiter);
<a name="46" href="#46">46</a> }
<a name="47" href="#47">47</a>
<a name="48" href="#48">48</a> <em>/**</em>
<a name="49" href="#49">49</a> <em> * Constructor for CharacterProperty.</em>
<a name="50" href="#50">50</a> <em> * @param theName String</em>
<a name="51" href="#51">51</a> <em> * @param theDescription String</em>
<a name="52" href="#52">52</a> <em> * @param theDefaults char[]</em>
<a name="53" href="#53">53</a> <em> * @param theUIOrder float</em>
<a name="54" href="#54">54</a> <em> * @param delimiter char</em>
<a name="55" href="#55">55</a> <em> */</em>
<a name="56" href="#56">56</a> <strong>public</strong> <a href="../../../../net/sourceforge/pmd/properties/CharacterProperty.html">CharacterProperty</a>(String theName, String theDescription, Character[] theDefaults, <strong>float</strong> theUIOrder, <strong>char</strong> delimiter) {
<a name="57" href="#57">57</a> <strong>super</strong>(theName, theDescription, theDefaults, theUIOrder);
<a name="58" href="#58">58</a>
<a name="59" href="#59">59</a> multiValueDelimiter(delimiter);
<a name="60" href="#60">60</a> maxValueCount(Integer.MAX_VALUE);
<a name="61" href="#61">61</a> }
<a name="62" href="#62">62</a>
<a name="63" href="#63">63</a> <em>/**</em>
<a name="64" href="#64">64</a> <em> * Method asCharacters.</em>
<a name="65" href="#65">65</a> <em> * @param chars char[]</em>
<a name="66" href="#66">66</a> <em> * @return Character[]</em>
<a name="67" href="#67">67</a> <em> */</em>
<a name="68" href="#68">68</a> <strong>private</strong> <strong>static</strong> <strong>final</strong> Character[] asCharacters(<strong>char</strong>[] <strong>char</strong>s) {
<a name="69" href="#69">69</a> Character[] characters = <strong>new</strong> Character[chars.length];
<a name="70" href="#70">70</a> <strong>for</strong> (<strong>int</strong> i=0; i<chars.length; i++) characters[i] = Character.valueOf(chars[i]);
<a name="71" href="#71">71</a> <strong>return</strong> characters;
<a name="72" href="#72">72</a> }
<a name="73" href="#73">73</a>
<a name="74" href="#74">74</a> <em>/**</em>
<a name="75" href="#75">75</a> <em> * Method type.</em>
<a name="76" href="#76">76</a> <em> * @return Class</em>
<a name="77" href="#77">77</a> <em> * @see net.sourceforge.pmd.PropertyDescriptor#type()</em>
<a name="78" href="#78">78</a> <em> */</em>
<a name="79" href="#79">79</a> <strong>public</strong> Class<Character> type() {
<a name="80" href="#80">80</a> <strong>return</strong> Character.<strong>class</strong>;
<a name="81" href="#81">81</a> }
<a name="82" href="#82">82</a>
<a name="83" href="#83">83</a> <em>/**</em>
<a name="84" href="#84">84</a> <em> * Method valueFrom.</em>
<a name="85" href="#85">85</a> <em> * @param valueString String</em>
<a name="86" href="#86">86</a> <em> * @return Object</em>
<a name="87" href="#87">87</a> <em> * @throws IllegalArgumentException</em>
<a name="88" href="#88">88</a> <em> * @see net.sourceforge.pmd.PropertyDescriptor#valueFrom(String)</em>
<a name="89" href="#89">89</a> <em> */</em>
<a name="90" href="#90">90</a> <strong>public</strong> Object valueFrom(String valueString) throws IllegalArgumentException {
<a name="91" href="#91">91</a>
<a name="92" href="#92">92</a> <strong>if</strong> (maxValueCount() == 1) {
<a name="93" href="#93">93</a> <strong>if</strong> (valueString.length() > 1) <strong>throw</strong> <strong>new</strong> IllegalArgumentException(valueString);
<a name="94" href="#94">94</a> <strong>return</strong> Character.valueOf(valueString.charAt(0));
<a name="95" href="#95">95</a> }
<a name="96" href="#96">96</a>
<a name="97" href="#97">97</a> String[] values = StringUtil.substringsOf(valueString, multiValueDelimiter);
<a name="98" href="#98">98</a>
<a name="99" href="#99">99</a> Character[] chars = <strong>new</strong> Character[values.length];
<a name="100" href="#100">100</a> <strong>for</strong> (<strong>int</strong> i=0; i<values.length; i++) chars[i] = Character.valueOf(values[i].charAt(0));
<a name="101" href="#101">101</a> <strong>return</strong> chars;
<a name="102" href="#102">102</a> }
<a name="103" href="#103">103</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
pscadiz/pmd-4.2.6-gds
|
docs/xref/net/sourceforge/pmd/properties/CharacterProperty.html
|
HTML
|
bsd-3-clause
| 8,715
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- -*- coding: 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>
<!-- meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> -->
<title>HPCToolkit Project Contact Information</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<!-- ********************************************************************** -->
<!-- HPCToolkit Image (height = 71 pixels) --> <img style="position: absolute; top: 0px; left: 0px" src="style/header.gif" alt="hpctoolkit" /> <div style="position: relative; margin-top: 60px; width: 100%; text-align: right;"> <p style="margin: 0px; font-size: small;"> [ <a href="index.html">Home</a> | <a href="overview.html">Overview</a> | <a href="publications.html">Publications</a> ] • [ <a href="examples.html">Examples</a> ] • [ <a href="software.html">Software/Downloads</a> | <a href="documentation.html">Documentation/Questions</a> ] • [ <a href="info-people.html">People</a> | <a href="info-acks.html">Acks</a> ] </p> </div> <div style="width: 100%;"> <hr /> </div>
<!-- ********************************************************************** -->
<h1>People</h1>
<h2>Project Lead</h2>
<ul>
<li><a href="http://www.cs.rice.edu/~johnmc">John Mellor-Crummey</a>
<br />
Department of Computer Science - MS 132 // Rice University // P.O. Box 1892 // Houston, TX 77251-1892
</li>
</ul>
<h2>Project Team (alphabetical)</h2>
<ul>
<li><a href="http://www.ruf.rice.edu/~la5/">Laksono Adhianto</a></li>
<li><a href="http://www.cs.rice.edu/~mc29/">Milind Chabbi</a></li>
<li><a href="http://www.cs.rice.edu/~mfagan">Mike Fagan</a></li>
<li><a href="http://www.cs.rice.edu/~krentel">Mark Krentel</a></li>
<li><a href="http://www.cs.rice.edu/~xl10">Xu Liu</a></li>
<li><a href="http://www.cs.rice.edu/~ksm2">Karthik Murthy</a></li>
<li><a href="http://www.cs.rice.edu/~tallent">Nathan Tallent</a></li>
</ul>
<h2>Past Contributors (alphabetical)</h2>
<ul>
<li><a href="http://www.renci.org/~rjf/">Rob Fowler</a></li>
<li>Nathan Froyd</li>
<li><a href="http://ft.ornl.gov/~gmarin/">Gabriel Marin</a></li>
<!--<li>Jason Eckhardt</li>-->
<!--<li>Monika Mevenkamp</li>-->
<!--<li>Xuesong Yuan</li>-->
</ul>
<p>[<span class="lastupdated">Page last updated: 2011/06/25</span>]
</p>
<!-- ********************************************************************** -->
<div style="width: 100%; font-size: small;"> <hr /> <p style="margin: 0px; font-size: small;"> ©2000-2012 <a href="http://www.rice.edu">Rice University</a> • <a href="http://www.cs.rice.edu">Rice Computer Science</a> </p> <a href="http://validator.w3.org/check/referer"> <img src="http://www.w3.org/Icons/valid-xhtml10-blue" alt="" height="15" /></a> <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img src="http://www.w3.org/Icons/valid-css-blue" alt="" height="15" /></a> </div>
<!-- ********************************************************************** -->
</body>
</html>
<!-- Local Variables: -->
<!-- eval: (add-hook 'write-file-hooks 'time-stamp) -->
<!-- time-stamp-start: "<span class=\"lastupdated\">Page last updated: " -->
<!-- time-stamp-format: "%:y/%02m/%02d" -->
<!-- time-stamp-end: "</span>" -->
<!-- time-stamp-line-limit: 10000 -->
<!-- End: -->
|
zcth428/hpctoolkit111
|
doc/www/info-people.html
|
HTML
|
bsd-3-clause
| 3,617
|
{{#suggestions}}
<li class="suggestion" data-placesid="{{placesid}}" data-index="{{index}}">{{text}}</li>
{{/suggestions}}
|
amigocloud/modified-tripplanner
|
client/locations-view/suggestions.html
|
HTML
|
bsd-3-clause
| 125
|
<!-- INCLUDE overall_header.html -->
<h2 class="header">{L_MCP}</h2>
<!-- IF U_MCP -->
<p class="linkmcp">
[ <a href="{U_MCP}">{L_MCP}</a><!-- IF U_MCP_FORUM --> | <a href="{U_MCP_FORUM}">{L_MODERATE_FORUM}</a><!-- ENDIF -->
<!-- IF U_MCP_TOPIC --> | <a href="{U_MCP_TOPIC}">{L_MODERATE_TOPIC}</a><!-- ENDIF -->
<!-- IF U_MCP_POST --> | <a href="{U_MCP_POST}">{L_MODERATE_POST}</a><!-- ENDIF --> ]
</p>
<!-- ENDIF -->
<div id="tabs" class="cp-tabs">
<ul class="main-tabs">
<!-- BEGIN l_block1 -->
<li<!-- IF l_block1.S_SELECTED --> class="activetab"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li>
<!-- END l_block1 -->
</ul>
<ul>
<!-- BEGIN l_block1 -->
<!-- IF l_block1.S_SELECTED -->
<!-- BEGIN l_block2 -->
<!-- IF l_block1.l_block2.S_SELECTED -->
<li id="active-subsection"><a href="{l_block1.l_block2.U_TITLE}"><span>{l_block1.l_block2.L_TITLE}<!-- IF l_block1.l_block2.ADD_ITEM --> ({l_block1.l_block2.ADD_ITEM})<!-- ENDIF --></span></a></li>
<!-- ELSE -->
<li><a href="{l_block1.l_block2.U_TITLE}"><span>{l_block1.l_block2.L_TITLE}<!-- IF l_block1.l_block2.ADD_ITEM --> ({l_block1.l_block2.ADD_ITEM})<!-- ENDIF --></span></a></li>
<!-- ENDIF -->
<!-- END l_block2 -->
<!-- ENDIF -->
<!-- END l_block1 -->
</ul>
</div>
<div class="cp-content">
<div class="inner"><span class="corners-top"><span></span></span>
<div style="width: 100%;">
<div id="cp-main" class="mcp-main">
<!-- IF MESSAGE -->
<div class="content">
<h2>{L_MESSAGE}</h2>
<p class="error">{MESSAGE}</p>
<p><!-- BEGIN return_links -->{return_links.MESSAGE_LINK}<br /><br /><!-- END return_links --></p>
</div>
<!-- ENDIF -->
<!-- IF CONFIRM_MESSAGE -->
<form id="confirm" method="post" action="{S_CONFIRM_ACTION}"{S_FORM_ENCTYPE}>
<div class="content">
<h2>{L_PLEASE_CONFIRM}</h2>
<p>{CONFIRM_MESSAGE}</p>
<fieldset class="submit-buttons">
{S_HIDDEN_FIELDS}<input class="button1" type="submit" name="submit" value="{L_YES}" />
<input class="button2" type="cancel" value="{L_NO}" />
</fieldset>
</div>
</form>
<!-- ENDIF -->
|
aequasi/SeductiveCraft
|
public/forum/styles/art_black/template/mcp_header.html
|
HTML
|
bsd-3-clause
| 2,148
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04212/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:48 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
<head>
<title>Index of /lghtml/lawstat/version2/04212</title>
</head>
<body>
<h1>Index of /lghtml/lawstat/version2/04212</h1>
<ul><li><a href="../index.html"> Parent Directory</a></li>
<li><a href="0421294011400.html"> 0421294011400.htm</a></li>
</ul>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04212/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:48 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
</html>
|
g0v/laweasyread-data
|
rawdata/utf8_lawstat/version2/04212/index.html
|
HTML
|
mit
| 871
|
{% extends PATH+"/inc/layout_citizen.html" %}
{% block case_content %}
<div class="container">
{#
this is a macro: pass the name of the selected item
and the number for the url.
Code in inc/layout_case.html
#}
{{ case_tabs("details",1) }}
<div class="grid-row mt30">
<div class="column-third">
<h3 class="heading-medium mt0">Contact details</h3>
<p>Oliver has agreed to be contacted in the following ways</p>
<p>
<span class="label">Telephone calls</span><br />
<span class="font-medium">09870 654 321</span>
</p>
<p>
<span class="label">Text messages</span><br />
<span class="font-medium">09870 654 321</span>
</p>
<p>
<span class="label">Emails</span><br />
<span class="font-medium"><a href="">[email protected]</a></span>
</p>
<p>
<span class="label">Letters</span><br />
<span class="font-medium">23 Railway Cuttings</span><br />
<span class="font-medium">East Cheam</span><br />
<span class="font-medium">London</span><br />
<span class="font-medium">SM2 7YT</span><br />
</p>
<p><a href="edit-citizen-details" class="button button-secondary">Edit citizen details</a></p>
</div><!-- column -->
<div class="column-third">
{% include PATH+"/citizen/details/employment.html" %}
</div><!-- column -->
<div class="column-third">
{% include PATH+"/citizen/details/employer_contact.html" %}
</div><!-- column -->
</div><!-- row -->
</div><!-- container -->
{% endblock %}
{% block footer_top %}
{{ super() }}
{% include PATH+"/citizen/footer_links.html" %}
{% endblock %}
|
dwpdigitaltech/accesstowork-phase2
|
app/views/staff/v6/citizen/details.html
|
HTML
|
mit
| 1,703
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>posix::basic_stream_descriptor::lowest_layer</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../posix__basic_stream_descriptor.html" title="posix::basic_stream_descriptor">
<link rel="prev" href="is_open.html" title="posix::basic_stream_descriptor::is_open">
<link rel="next" href="lowest_layer/overload1.html" title="posix::basic_stream_descriptor::lowest_layer (1 of 2 overloads)">
</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="is_open.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../posix__basic_stream_descriptor.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="lowest_layer/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.posix__basic_stream_descriptor.lowest_layer"></a><a class="link" href="lowest_layer.html" title="posix::basic_stream_descriptor::lowest_layer">posix::basic_stream_descriptor::lowest_layer</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="id1472613"></a>
Get a reference to the lowest
layer.
</p>
<pre class="programlisting"><span class="identifier">lowest_layer_type</span> <span class="special">&</span> <a class="link" href="lowest_layer/overload1.html" title="posix::basic_stream_descriptor::lowest_layer (1 of 2 overloads)">lowest_layer</a><span class="special">();</span>
<span class="emphasis"><em>» <a class="link" href="lowest_layer/overload1.html" title="posix::basic_stream_descriptor::lowest_layer (1 of 2 overloads)">more...</a></em></span>
</pre>
<p>
Get a const reference to the lowest layer.
</p>
<pre class="programlisting"><span class="keyword">const</span> <span class="identifier">lowest_layer_type</span> <span class="special">&</span> <a class="link" href="lowest_layer/overload2.html" title="posix::basic_stream_descriptor::lowest_layer (2 of 2 overloads)">lowest_layer</a><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span>
<span class="emphasis"><em>» <a class="link" href="lowest_layer/overload2.html" title="posix::basic_stream_descriptor::lowest_layer (2 of 2 overloads)">more...</a></em></span>
</pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2012 Christopher M. Kohlhoff<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="is_open.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../posix__basic_stream_descriptor.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="lowest_layer/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
djsedulous/namecoind
|
libs/boost_1_50_0/doc/html/boost_asio/reference/posix__basic_stream_descriptor/lowest_layer.html
|
HTML
|
mit
| 4,369
|
<body>
Verification errors.
</body>
|
andrerigon/andrerigon-mockito-fork
|
src/org/mockito/exceptions/verification/package.html
|
HTML
|
mit
| 35
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04211/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:48 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
<head>
<title>Index of /lghtml/lawstat/version2/04211</title>
</head>
<body>
<h1>Index of /lghtml/lawstat/version2/04211</h1>
<ul><li><a href="../index.html"> Parent Directory</a></li>
<li><a href="0421194052000.html"> 0421194052000.htm</a></li>
</ul>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04211/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:48 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
</html>
|
g0v/laweasyread-data
|
rawdata/utf8_lawstat/version2/04211/index.html
|
HTML
|
mit
| 871
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.