path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
doc/alu/HyperSpec/Body/sec_6-1-6-1.html
jasom/eclipse-lisp
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!-- Common Lisp HyperSpec (TM), version 3.0 generated by kmp on Thu, 2-May-1996 10:21am EDT --> <HTML> <HEAD> <TITLE>CLHS: Section 6.1.6.1</TITLE> <META HTTP-EQUIV="Author" CONTENT="Kent M. Pitman"> <META HTTP-EQUIV="Organization" CONTENT="The Harlequin Group Limited"> <LINK REL=TOP HREF="../FrontMatter/index.html"> <LINK REL=COPYRIGHT HREF="../FrontMatter/About-HyperSpec.html#Legal"> <LINK REL=DISCLAIMER HREF="../FrontMatter/About-HyperSpec.html#Disclaimer"> <LINK REL=PREV HREF="sec_6-1-6.html"> <LINK REL=UP HREF="sec_6-1-6.html"> <LINK REL=NEXT HREF="sec_6-1-7.html"> </HEAD> <BODY BGCOLOR="#c0c0c0"> <H1><A REV=MADE HREF="http://www.harlequin.com/"><IMG ALT="[HARLEQUIN]" SRC="../Graphics/Harlequin-Small.gif" ALIGN=Bottom></A><A REL=TOP HREF="../FrontMatter/index.html"><IMG ALT="[Common Lisp HyperSpec (TM)]" SRC="../Graphics/HyperSpec-Small.gif" ALIGN=Bottom></A> <A REL=PREV HREF="sec_6-1-6.html"><IMG ALT="[Previous]" SRC="../Graphics/Prev.gif" ALIGN=Bottom></A><A REL=UP HREF="sec_6-1-6.html"><IMG ALT="[Up]" SRC="../Graphics/Up.gif" ALIGN=Bottom></A><A REL=NEXT HREF="sec_6-1-7.html"><IMG ALT="[Next]" SRC="../Graphics/Next.gif" ALIGN=Bottom></A></H1> <HR> <H2> 6.1.6.1 Examples of WHEN clause</H2> <P> <PRE> ;; Signal an exceptional condition. (loop for item in '(1 2 3 a 4 5) when (not (numberp item)) return (cerror &quot;enter new value&quot; &quot;non-numeric value: ~s&quot; item)) Error: non-numeric value: A ;; The previous example is equivalent to the following one. (loop for item in '(1 2 3 a 4 5) when (not (numberp item)) do (return (cerror &quot;Enter new value&quot; &quot;non-numeric value: ~s&quot; item))) Error: non-numeric value: A </PRE> </TT> <P> <PRE> ;; This example parses a simple printed string representation from ;; BUFFER (which is itself a string) and returns the index of the ;; closing double-quote character. (let ((buffer &quot;\&quot;a\&quot; \&quot;b\&quot;&quot;)) (loop initially (unless (char= (char buffer 0) #\&quot;) (loop-finish)) for i of-type fixnum from 1 below (length (the string buffer)) when (char= (char buffer i) #\&quot;) return i)) =&gt; 2 ;; The collected value is returned. (loop for i from 1 to 10 when (&gt; i 5) collect i finally (prin1 'got-here)) &gt;&gt; GOT-HERE =&gt; (6 7 8 9 10) ;; Return both the count of collected numbers and the numbers. (loop for i from 1 to 10 when (&gt; i 5) collect i into number-list and count i into number-count finally (return (values number-count number-list))) =&gt; 5, (6 7 8 9 10) </PRE> </TT> <P> <HR> <A REL=NAVIGATOR HREF="../FrontMatter/Starting-Points.html"><IMG ALT="[Starting Points]" SRC="../Graphics/Starting-Points.gif" ALIGN=Bottom></A><A REL=TOC HREF="../FrontMatter/Chapter-Index.html"><IMG ALT="[Contents]" SRC="../Graphics/Contents.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../FrontMatter/Master-Index.html"><IMG ALT="[Index]" SRC="../Graphics/Index.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../FrontMatter/Symbol-Index.html"><IMG ALT="[Symbols]" SRC="../Graphics/Symbols.gif" ALIGN=Bottom></A><A REL=GLOSSARY HREF="../Body/sec_26-1.html"><IMG ALT="[Glossary]" SRC="../Graphics/Glossary.gif" ALIGN=Bottom></A><A HREF="../Issues/Issues-Categorized.html"><IMG ALT="[Issues]" SRC="../Graphics/Issues.gif" ALIGN=Bottom></A><BR> <A REL=COPYRIGHT HREF="../FrontMatter/About-HyperSpec.html#Legal"><I>Copyright 1996, The Harlequin Group Limited. All Rights Reserved.</I></A><P> </BODY> </HTML>
client/app/s/s.html
mlee0330/hrr10-mjbe
<link rel="import" href="elements/mjbe-drawing-canvas/mjbe-drawing-canvas.html"> <link rel="import" href="elements/problems-addition/problems-addition.html"> <mjbe-drawing-canvas class="fit" ng-if="s.showCanvas"></mjbe-drawing-canvas> <problems-addition problemtype="{{s.type}}" complete="{{s.complete}}" event-namespace="s" bind-polymer></problems-addition> <mjbe-timer class="timer" minutes="{{s.timerMinutes}}" seconds="{{s.timerSeconds}}" count="true" event-namespace="s" ng-if="s.showTimer" bind-polymer></mjbe-timer> <mjbe-leaderboard class="leaderboard" loadleaderboard="{{s.leaderboard}}" ng-if="s.showLeaderboard"></mjbe-leaderboard>
chrome/browser/resources/collected_cookies.html
aYukiSekiguchi/ACCESS-Chromium
<!DOCTYPE HTML> <html i18n-values="dir:textdirection;"> <head> <meta charset="utf-8"> <title i18n-content="title"></title> <link rel="stylesheet" href="chrome://resources/css/tree.css"> <link rel="stylesheet" href="collected_cookies.css"> </head> <script src="chrome://resources/css/tree.css.js"></script> <script src="chrome://resources/js/cr.js"></script> <script src="chrome://resources/js/cr/ui.js"></script> <script src="chrome://resources/js/cr/ui/tree.js"></script> <script src="chrome://resources/js/util.js"></script> <script src="cookies_tree.js"></script> <script src="collected_cookies.js"></script> <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> <div id="info-banner" hidden></div> <p i18n-content="allowedCookies"></p> <tree id="allowed-cookies" class="cookies-tree" icon-visibility="parent"></tree> <button id="block-button" i18n-content="blockButton"></button> <p i18n-content="blockedCookies"></p> <tree id="blocked-cookies" class="cookies-tree" icon-visibility="parent"></tree> <div class="button-strip"> <button id="allow-button" i18n-content="allowButton"></button> <button id="allow-this-session-button" i18n-content="allowThisSessionButton"></button> <div class="spacer"></div> <button id="close-button" i18n-content="closeButton"></button> </div> </body> </html>
doc/pub/slides/._scientific_writing-solarized061.html
dragly/doconce
<!-- Automatically generated HTML file from DocOnce source (https://github.com/hplgit/doconce/) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" /> <meta name="description" content="Scientific Writing and Publishing for the Future"> <meta name="keywords" content="key word1,key word2,key equation,$\u$ conservation,keyword"> <title>Scientific Writing and Publishing for the Future</title> <link href="https://raw.github.com/hplgit/doconce/master/bundled/html_styles/style_solarized_box/css/solarized_light_code.css" rel="stylesheet" type="text/css" title="light"/> <script src="https://raw.github.com/hplgit/doconce/master/bundled/html_styles/style_solarized_box/js/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script> <link href="http://thomasf.github.io/solarized-css/solarized-light.min.css" rel="stylesheet"> <style type="text/css"> body, td {font-size: 140%;} h1 {font-size: 200%;} h2 {font-size: 180%;} h1 {color: #b58900;} /* yellow */ /* h1 {color: #cb4b16;} orange */ /* h1 {color: #d33682;} magenta, the original choice of thomasf */ code { padding: 0px; background-color: inherit; } pre { border: 0pt solid #93a1a1; box-shadow: none; } .alert-text-small { font-size: 80%; } .alert-text-large { font-size: 130%; } .alert-text-normal { font-size: 90%; } .alert { padding:8px 35px 8px 14px; margin-bottom:18px; text-shadow:0 1px 0 rgba(255,255,255,0.5); border:1px solid #93a1a1; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; color: #555; background-color: #eee8d5; background-position: 10px 5px; background-repeat: no-repeat; background-size: 38px; padding-left: 55px; width: 75%; } .alert-block {padding-top:14px; padding-bottom:14px} .alert-block > p, .alert-block > ul {margin-bottom:1em} .alert li {margin-top: 1em} .alert-block p+p {margin-top:5px} .alert-notice { background-image: url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_yellow_notice.png); } .alert-summary { background-image:url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_yellow_summary.png); } .alert-warning { background-image: url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_yellow_warning.png); } .alert-question {background-image:url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_yellow_question.png); } div { text-align: justify; text-justify: inter-word; } </style> <script src="http://sagecell.sagemath.org/static/jquery.min.js"></script> <script src="http://sagecell.sagemath.org/embedded_sagecell.js"></script> <link rel="stylesheet" type="text/css" href="https://sagecell.sagemath.org/static/sagecell_embed.css"> <script> $(function () { // Make the div with id 'mycell' a Sage cell sagecell.makeSagecell({inputLocation: '#mycell', template: sagecell.templates.minimal, evalButtonText: 'Activate'}); // Make *any* div with class 'compute' a Sage cell sagecell.makeSagecell({inputLocation: 'div.compute', evalButtonText: 'Evaluate'}); }); </script> </head> <!-- tocinfo {'highest level': 1, 'sections': [('Challenges with tools for scientific writing', 1, None, '___sec0'), ('Scientific writing = LaTeX', 2, None, '___sec1'), ('LaTeX PDF is mostly suboptimal for the new devices', 2, None, '___sec2'), ('The book will survive (LaTeX is ideal)', 2, None, '___sec3'), ('The classical report/paper will survive (LaTeX is ideal)', 2, None, '___sec4'), ('But there is an explosion of new platforms for digital learning systems!', 2, None, '___sec5'), ('My headache: How to write scientific material that can be easily published through old and new media?', 2, None, '___sec6'), ('Scope: documents with *much* math and computer code', 2, None, '___sec7'), ('There is a jungle of outlets your scientific writings should address', 2, None, '___sec8'), ('Can I assemble lots of different writings to a new future document (book)?', 2, None, '___sec9'), ('Pros and cons of various tools', 1, None, '___sec10'), ('Popular tools anno 2014 and their math support', 2, None, '___sec11'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec12'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec13'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec14'), ('My colleagues face fundamental problem with going from LaTeX to IPython notebook (=Markdown)', 2, None, '___sec15'), ('Examples on typesetting concerns (1)', 2, None, '___sec16'), ('Examples on typesetting concerns (2)', 2, None, '___sec17'), ('Examples on typesetting concerns (3)', 2, None, '___sec18'), ('Solution I: Use a format that translates to many', 2, None, '___sec19'), ('Solution II: Use DocOnce', 2, None, '___sec20'), ('DocOnce: Write once, include anywhere', 1, None, '___sec21'), ('DocOnce demos', 2, None, '___sec22'), ('DocOnce disclaimer', 2, None, '___sec23'), ('DocOnce experience', 2, None, '___sec24'), ('A tour of DocOnce', 1, None, '___sec25'), ('Title, authors, date, toc', 2, None, '___sec26'), ('Abstract', 2, None, '___sec27'), ('Section headings', 2, None, '___sec28'), ('This is an H1/chapter heading', 1, None, '___sec29'), ('This is an H2/section heading', 2, None, '___sec30'), ('This is an H3/subsection heading', 2, None, '___sec31'), ('This is an H4/paragraph heading', 3, None, '___sec32'), ('Markup and lists', 2, None, '___sec33'), ('Labels, references, index items', 2, None, '___sec34'), ('Figures and movies', 2, None, '___sec35'), ('Math', 2, None, '___sec36'), ('Math flexibility', 2, None, '___sec37'), ('Displaying code', 2, None, '___sec38'), ('Copying code from source files', 2, None, '___sec39'), ('Typesetting of code is implied by the file extension', 2, None, '___sec40'), ('Demonstrating code execution; Online Python Tutor', 2, 'slide:opt', 'slide:opt'), ('Demonstrating code execution; Sage Cell Server', 2, 'slide:sage:cell', 'slide:sage:cell'), ('Demonstrating code execution; IPython notebook', 2, 'slide:ipynb', 'slide:ipynb'), ('Tables', 2, None, '___sec44'), ('Newcommands for math', 2, None, '___sec45'), ('Labels, citations, index, bibliography', 2, None, '___sec46'), ('Exercises', 2, None, '___sec47'), ('Rendering of the previous page', 2, None, '___sec48'), ('Problem 1: Flip a Coin', 2, None, '___sec49'), ('Exercises', 2, None, '___sec50'), ('Use of preprocessors', 2, None, '___sec51'), ('DocOnce admonitions', 2, None, '___sec52'), ('Generalized references', 2, None, '___sec53'), ('Slides', 2, None, '___sec54'), ('Example on slide code', 2, None, '___sec55'), ('Example on slide code', 2, None, '___sec56'), ('Headline', 2, None, '___sec57'), ('Grid layout of slide: MxN cells', 2, None, '___sec58'), ('Grid layout of slide: MxN cells', 2, None, '___sec59'), ('Headline', 2, None, '___sec60'), ('Classic slide types', 2, None, '___sec61'), ('HTML5 slide types', 2, None, '___sec62'), ('DocOnce to HTML', 2, None, '___sec63'), ('Output for blog posts', 2, None, '___sec64'), ('DocOnce to pdfLaTeX', 2, None, '___sec65'), ('DocOnce to Sphinx', 2, None, '___sec66'), ('Output for wiki', 2, None, '___sec67'), ('DocOnce to other formats', 2, None, '___sec68'), ('Installation', 2, None, '___sec69'), ('Writing tips for LaTeX writers who want to convert to DocOnce *and generate other formats*', 2, None, '___sec70'), ('DocOnce writing tips', 2, None, '___sec71'), ('DocOnce writing tips', 2, None, '___sec72'), ('Writing tips for sphinx and other formats', 2, None, '___sec73')]} end of tocinfo --> <body> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "none" }, extensions: ["AMSmath.js", "AMSsymbols.js", "autobold.js", "color.js"] } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <a name="part0061"></a> <!-- !split --> <h2 id="___sec67">Output for wiki </h2> <p> Only MediaWiki supports math. <p> <!-- code=text typeset with pygments style "perldoc" --> <div class="highlight" style="background: #eeeedd"><pre style="line-height: 125%">doconce format mwiki doconcefile </pre></div> <p> Recommended site: <ul> <li> <a href="http://doconcedemo.shoutwiki.com/wiki/DocOnce_demo_page" target="_blank">ShoutWiki</a> for standard wikis</li> </ul> Publishing of "official" documents: <ul> <li> <a href="http://en.wikibooks.org/wiki/Wikibooks:WIW" target="_blank">Wikibooks</a> (can test code in the <a href="http://en.wikibooks.org/wiki/Wikibooks:Sandbox" target="_blank">sandbox</a>)</li> <li> Wikipedia</li> </ul> <p> <!-- begin bottom navigation --> <table style="width: 100%"><tr><td> <div style="text-align: left;"><a href="._scientific_writing-solarized060.html"><img src="http://hplgit.github.io/doconce/bundled/html_images/prev2.png" border=0 alt="&laquo; Previous"></a></div> </td><td> <div style="text-align: right;"><a href="._scientific_writing-solarized062.html"><img src="http://hplgit.github.io/doconce/bundled/html_images/next2.png" border=0 alt="Next &raquo;"></a></div> </td></tr></table> <!-- end bottom navigation --> </p> <!-- ------------------- end of main content --------------- --> <center style="font-size:80%"> <!-- copyright only on the titlepage --> </center> </body> </html>
doc/pub/slides/._scientific_writing-plain043.html
dragly/doconce
<!-- Automatically generated HTML file from DocOnce source (https://github.com/hplgit/doconce/) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" /> <meta name="description" content="Scientific Writing and Publishing for the Future"> <meta name="keywords" content="key word1,key word2,key equation,$\u$ conservation,keyword"> <title>Scientific Writing and Publishing for the Future</title> <style type="text/css"> /* bloodish style */ body { font-family: Helvetica, Verdana, Arial, Sans-serif; color: #404040; background: #ffffff; } h1 { font-size: 1.8em; color: #8A0808; } h2 { font-size: 1.6em; color: #8A0808; } h3 { font-size: 1.4em; color: #8A0808; } h4 { color: #8A0808; } a { color: #8A0808; text-decoration:none; } tt { font-family: "Courier New", Courier; } /* pre style removed because it will interfer with pygments */ p { text-indent: 0px; } hr { border: 0; width: 80%; border-bottom: 1px solid #aaa} p.caption { width: 80%; font-style: normal; text-align: left; } hr.figure { border: 0; width: 80%; border-bottom: 1px solid #aaa} .alert-text-small { font-size: 80%; } .alert-text-large { font-size: 130%; } .alert-text-normal { font-size: 90%; } .alert { padding:8px 35px 8px 14px; margin-bottom:18px; text-shadow:0 1px 0 rgba(255,255,255,0.5); border:1px solid #bababa; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; color: #555; background-color: #f8f8f8; background-position: 10px 5px; background-repeat: no-repeat; background-size: 38px; padding-left: 55px; width: 75%; } .alert-block {padding-top:14px; padding-bottom:14px} .alert-block > p, .alert-block > ul {margin-bottom:1em} .alert li {margin-top: 1em} .alert-block p+p {margin-top:5px} .alert-notice { background-image: url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_gray_notice.png); } .alert-summary { background-image:url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_gray_summary.png); } .alert-warning { background-image: url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_gray_warning.png); } .alert-question {background-image:url(https://raw.github.com/hplgit/doconce/master/bundled/html_images/small_gray_question.png); } div { text-align: justify; text-justify: inter-word; } </style> <script src="http://sagecell.sagemath.org/static/jquery.min.js"></script> <script src="http://sagecell.sagemath.org/embedded_sagecell.js"></script> <link rel="stylesheet" type="text/css" href="https://sagecell.sagemath.org/static/sagecell_embed.css"> <script> $(function () { // Make the div with id 'mycell' a Sage cell sagecell.makeSagecell({inputLocation: '#mycell', template: sagecell.templates.minimal, evalButtonText: 'Activate'}); // Make *any* div with class 'compute' a Sage cell sagecell.makeSagecell({inputLocation: 'div.compute', evalButtonText: 'Evaluate'}); }); </script> </head> <!-- tocinfo {'highest level': 1, 'sections': [('Challenges with tools for scientific writing', 1, None, '___sec0'), ('Scientific writing = LaTeX', 2, None, '___sec1'), ('LaTeX PDF is mostly suboptimal for the new devices', 2, None, '___sec2'), ('The book will survive (LaTeX is ideal)', 2, None, '___sec3'), ('The classical report/paper will survive (LaTeX is ideal)', 2, None, '___sec4'), ('But there is an explosion of new platforms for digital learning systems!', 2, None, '___sec5'), ('My headache: How to write scientific material that can be easily published through old and new media?', 2, None, '___sec6'), ('Scope: documents with *much* math and computer code', 2, None, '___sec7'), ('There is a jungle of outlets your scientific writings should address', 2, None, '___sec8'), ('Can I assemble lots of different writings to a new future document (book)?', 2, None, '___sec9'), ('Pros and cons of various tools', 1, None, '___sec10'), ('Popular tools anno 2014 and their math support', 2, None, '___sec11'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec12'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec13'), ('LaTeX is very rich; other tools support much less', 2, None, '___sec14'), ('My colleagues face fundamental problem with going from LaTeX to IPython notebook (=Markdown)', 2, None, '___sec15'), ('Examples on typesetting concerns (1)', 2, None, '___sec16'), ('Examples on typesetting concerns (2)', 2, None, '___sec17'), ('Examples on typesetting concerns (3)', 2, None, '___sec18'), ('Solution I: Use a format that translates to many', 2, None, '___sec19'), ('Solution II: Use DocOnce', 2, None, '___sec20'), ('DocOnce: Write once, include anywhere', 1, None, '___sec21'), ('DocOnce demos', 2, None, '___sec22'), ('DocOnce disclaimer', 2, None, '___sec23'), ('DocOnce experience', 2, None, '___sec24'), ('A tour of DocOnce', 1, None, '___sec25'), ('Title, authors, date, toc', 2, None, '___sec26'), ('Abstract', 2, None, '___sec27'), ('Section headings', 2, None, '___sec28'), ('This is an H1/chapter heading', 1, None, '___sec29'), ('This is an H2/section heading', 2, None, '___sec30'), ('This is an H3/subsection heading', 2, None, '___sec31'), ('This is an H4/paragraph heading', 3, None, '___sec32'), ('Markup and lists', 2, None, '___sec33'), ('Labels, references, index items', 2, None, '___sec34'), ('Figures and movies', 2, None, '___sec35'), ('Math', 2, None, '___sec36'), ('Math flexibility', 2, None, '___sec37'), ('Displaying code', 2, None, '___sec38'), ('Copying code from source files', 2, None, '___sec39'), ('Typesetting of code is implied by the file extension', 2, None, '___sec40'), ('Demonstrating code execution; Online Python Tutor', 2, 'slide:opt', 'slide:opt'), ('Demonstrating code execution; Sage Cell Server', 2, 'slide:sage:cell', 'slide:sage:cell'), ('Demonstrating code execution; IPython notebook', 2, 'slide:ipynb', 'slide:ipynb'), ('Tables', 2, None, '___sec44'), ('Newcommands for math', 2, None, '___sec45'), ('Labels, citations, index, bibliography', 2, None, '___sec46'), ('Exercises', 2, None, '___sec47'), ('Rendering of the previous page', 2, None, '___sec48'), ('Problem 1: Flip a Coin', 2, None, '___sec49'), ('Exercises', 2, None, '___sec50'), ('Use of preprocessors', 2, None, '___sec51'), ('DocOnce admonitions', 2, None, '___sec52'), ('Generalized references', 2, None, '___sec53'), ('Slides', 2, None, '___sec54'), ('Example on slide code', 2, None, '___sec55'), ('Example on slide code', 2, None, '___sec56'), ('Headline', 2, None, '___sec57'), ('Grid layout of slide: MxN cells', 2, None, '___sec58'), ('Grid layout of slide: MxN cells', 2, None, '___sec59'), ('Headline', 2, None, '___sec60'), ('Classic slide types', 2, None, '___sec61'), ('HTML5 slide types', 2, None, '___sec62'), ('DocOnce to HTML', 2, None, '___sec63'), ('Output for blog posts', 2, None, '___sec64'), ('DocOnce to pdfLaTeX', 2, None, '___sec65'), ('DocOnce to Sphinx', 2, None, '___sec66'), ('Output for wiki', 2, None, '___sec67'), ('DocOnce to other formats', 2, None, '___sec68'), ('Installation', 2, None, '___sec69'), ('Writing tips for LaTeX writers who want to convert to DocOnce *and generate other formats*', 2, None, '___sec70'), ('DocOnce writing tips', 2, None, '___sec71'), ('DocOnce writing tips', 2, None, '___sec72'), ('Writing tips for sphinx and other formats', 2, None, '___sec73')]} end of tocinfo --> <body> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "none" }, extensions: ["AMSmath.js", "AMSsymbols.js", "autobold.js", "color.js"] } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <a name="part0043"></a> <p> <!-- begin top navigation --> <table style="width: 100%"><tr><td> <div style="text-align: left;"><a href="._scientific_writing-plain042.html">&laquo; Previous</a></div> </td><td> <div style="text-align: right;"><a href="._scientific_writing-plain044.html">Next &raquo;</a></div> </td></tr></table> <!-- end top navigation --> </p> <p> <!-- !split --> <h2 id="___sec46">Labels, citations, index, bibliography </h2> <p> Lables, citations, index, and bibliography follow the ideas of LaTeX, but without backslashes: <p> <!-- code=text typeset with pygments style "default" --> <div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%">===== My Section ===== label{sec:mysec} idx{key equation} idx{$\u$ conservation} We refer to Section ref{sec:yoursec} for background material on the *key equation*. Here we focus on the extension !bt \begin{equation} \Ddt{\u} = \mycommand{v} label{mysec:eq:Dudt} \end{equation} !et Equation (ref{mysec:eq:Dudt}) is important, see cite{Larsen_et_al_2002,Johnson_Friedman_2010a}. Also, cite{Miller_2000} supports such a view. Figure ref{mysec:fig:myfig} displays the features. FIGURE: [fig/myfile, width=600] My figure. label{mysec:fig:myfig} ===== References ===== BIBFILE: papers.pub </pre></div> <p> The <code>papers.pub</code> file must be in <a href="https://bitbucket.org/logg/publish" target="_blank">Publish</a> format (easy to make from BibTeX). <p> <p> <!-- begin bottom navigation --> <table style="width: 100%"><tr><td> <div style="text-align: left;"><a href="._scientific_writing-plain042.html">&laquo; Previous</a></div> </td><td> <div style="text-align: right;"><a href="._scientific_writing-plain044.html">Next &raquo;</a></div> </td></tr></table> <!-- end bottom navigation --> </p> <!-- ------------------- end of main content --------------- --> <center style="font-size:80%"> <!-- copyright only on the titlepage --> </center> </body> </html>
CoreFunctions/chronux/documentation/chronux_2_00/spectral_analysis/continuous/locdetrend.html
arengela/AngelaUCSFCodeAll
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Description of locdetrend</title> <meta name="keywords" content="locdetrend"> <meta name="description" content="Remove running line fit (using local linear regression)-continuous"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="generator" content="m2html &copy; 2003 Guillaume Flandin"> <meta name="robots" content="index, follow"> <link type="text/css" rel="stylesheet" href="../../../m2html.css"> </head> <body> <a name="_top"></a> <div><a href="../../../index.html">Home</a> &gt; <a href="#">chronux_2_00</a> &gt; <a href="../index.html">spectral_analysis</a> &gt; <a href="index.html">continuous</a> &gt; locdetrend.m</div> <!--<table width="100%"><tr><td align="left"><a href="../../../index.html"><img alt="<" border="0" src="../../../left.png">&nbsp;Master index</a></td> <td align="right"><a href="index.html">Index for chronux_2_00\spectral_analysis\continuous&nbsp;<img alt=">" border="0" src="../../../right.png"></a></td></tr></table>--> <h1>locdetrend </h1> <h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2> <div class="box"><strong>Remove running line fit (using local linear regression)-continuous</strong></div> <h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2> <div class="box"><strong>function data=locdetrend(data,Fs,movingwin) </strong></div> <h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2> <div class="fragment"><pre class="comment"> Remove running line fit (using local linear regression)-continuous processes Usage: data=locdetrend(data,Fs,movingwin) Inputs: Note that units of Fs, movinwin have to be consistent. data (data as a matrix times x channels or a single vector) Fs (sampling frequency) - optional. Default 1 movingwin (length of moving window, and stepsize) [window winstep] - optional. Default. window=full length of data (global detrend). winstep=window -- global detrend Output: data: (locally detrended data)</pre></div> <!-- crossreference --> <h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2> This function calls: <ul style="list-style-image:url(../../../matlabicon.gif)"> <li><a href="runline.html" class="code" title="function y_line=runline(y,n,dn)">runline</a> Running line fit (local linear regression)</li></ul> This function is called by: <ul style="list-style-image:url(../../../matlabicon.gif)"> </ul> <!-- crossreference --> <h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2> <div class="fragment"><pre>0001 <a name="_sub0" href="#_subfunctions" class="code">function data=locdetrend(data,Fs,movingwin)</a> 0002 <span class="comment">% Remove running line fit (using local linear regression)-continuous</span> 0003 <span class="comment">% processes</span> 0004 <span class="comment">% Usage: data=locdetrend(data,Fs,movingwin)</span> 0005 <span class="comment">% Inputs:</span> 0006 <span class="comment">% Note that units of Fs, movinwin have to be consistent.</span> 0007 <span class="comment">% data (data as a matrix times x channels or a single vector)</span> 0008 <span class="comment">% Fs (sampling frequency) - optional. Default 1</span> 0009 <span class="comment">% movingwin (length of moving window, and stepsize) [window winstep] - optional.</span> 0010 <span class="comment">% Default. window=full length of data (global detrend).</span> 0011 <span class="comment">% winstep=window -- global detrend</span> 0012 <span class="comment">%</span> 0013 <span class="comment">% Output:</span> 0014 <span class="comment">% data: (locally detrended data)</span> 0015 data=change_row_to_column(data); 0016 [N,C]=size(data); 0017 <span class="keyword">if</span> nargin &lt; 2 || isempty(Fs); Fs=1; <span class="keyword">end</span>; 0018 <span class="keyword">if</span> nargin &lt; 3 || isempty(movingwin); movingwin=[N/Fs N/Fs]; <span class="keyword">end</span>; 0019 Tw=movingwin(1); Ts=movingwin(2); 0020 <span class="keyword">if</span> Ts&gt;Tw; error(<span class="string">'Use step size shorter than window size'</span>); <span class="keyword">end</span>; 0021 n=round(Fs*Tw); 0022 dn=round(Fs*Ts); 0023 <span class="keyword">if</span> ~isreal(data) 0024 yr=real(data); 0025 yi=imag(data); 0026 <span class="keyword">if</span> n==N; 0027 yr=detrend(yr); 0028 yi=detrend(yi); 0029 data=yr+i*yi; 0030 <span class="keyword">else</span>; 0031 <span class="keyword">for</span> ch=1:C 0032 tmp=<a href="runline.html" class="code" title="function y_line=runline(y,n,dn)">runline</a>(yr(:,ch),n,dn); 0033 yr=yr-tmp; 0034 tmp=<a href="runline.html" class="code" title="function y_line=runline(y,n,dn)">runline</a>(yi(:,ch),n,dn); 0035 yi=yi-tmp; 0036 data(:,ch)=yr+i*yi; 0037 <span class="keyword">end</span>; 0038 <span class="keyword">end</span>; 0039 <span class="keyword">else</span> 0040 <span class="keyword">if</span> n==N; 0041 data=detrend(data); 0042 <span class="keyword">else</span>; 0043 <span class="keyword">for</span> ch=1:C; 0044 tmp=<a href="runline.html" class="code" title="function y_line=runline(y,n,dn)">runline</a>(data(:,ch),n,dn); 0045 data(:,ch)=data(:,ch)-tmp; 0046 <span class="keyword">end</span>; 0047 <span class="keyword">end</span> 0048 <span class="keyword">end</span></pre></div> <hr><address>Generated on Fri 15-Aug-2008 11:35:42 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/">m2html</a></strong> &copy; 2003</address> </body> </html>
Documentation/com.CorePlot.Framework.docset/Contents/Resources/Documents/functions_0x78.html
daphane/CorePlot
<!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>Core Plot (Mac OS): Class Members</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </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 id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (Mac OS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.5 --> <script type="text/javascript" src="dynsections.js"></script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li class="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_prop.html"><span>Properties</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <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_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 class="current"><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> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('functions.html',''); </script> <div id="doc-content"> <div class="contents"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a class="anchor" id="index_x"></a>- x -</h3><ul> <li>xAxis : <a class="el" href="interface_c_p_t_x_y_axis_set.html#af488a3244f81315bf3be52ee775db104">CPTXYAxisSet</a> </li> <li>xRange : <a class="el" href="interface_c_p_t_x_y_plot_space.html#a6752a5841fd3789019bf18986e7398f6">CPTXYPlotSpace</a> </li> <li>xScaleType : <a class="el" href="interface_c_p_t_x_y_plot_space.html#a6fdb32ef229694a87af877d54933300a">CPTXYPlotSpace</a> </li> </ul> </div> </div> <div id="nav-path" class="navpath"> <ul> <li class="footer">Generated on Sun Sep 25 2011 15:44:02 for Core Plot (Mac OS) by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.5 </li> </ul> </div> </body> </html>
doc/Aims-Plugin_Doc/qgis._core.QgsVectorLayer.VertexMarkerType-class.html
SPlanzer/QGIS-AIMS-Plugin
<?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.QgsVectorLayer.VertexMarkerType</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>&nbsp;&nbsp;&nbsp;<a href="QGIS-AIMS-Plugin-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</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 :: QgsVectorLayer :: VertexMarkerType :: Class&nbsp;VertexMarkerType </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&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="qgis._core.QgsVectorLayer.VertexMarkerType-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class VertexMarkerType</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | int --+ | <strong class="uidshort">QgsVectorLayer.VertexMarkerType</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">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="qgis._core.QgsVectorLayer.VertexMarkerType-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" >&nbsp; </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>&nbsp;&nbsp;&nbsp;<a href="QGIS-AIMS-Plugin-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</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>
current/javadoc/com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html
ExLibrisGroup/Rosetta.dps-sdk-projects
<!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 Thu Jan 20 13:41:18 IST 2022 --> <title>ProducerStatus</title> <meta name="date" content="2022-01-20"> <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="ProducerStatus"; } } catch(err) { } //--> var methods = {"i0":6,"i1":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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/exlibrisgroup/xsd/dps/backoffice/service/ProducerInfoDocument.ProducerInfo.Factory.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html" target="_top">Frames</a></li> <li><a href="ProducerStatus.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</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.exlibrisgroup.xsd.dps.backoffice.service</div> <h2 title="Interface ProducerStatus" class="title">Interface ProducerStatus</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Superinterfaces:</dt> <dd>org.apache.xmlbeans.XmlAnySimpleType, org.apache.xmlbeans.XmlObject, org.apache.xmlbeans.XmlString, org.apache.xmlbeans.XmlTokenSource</dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">ProducerStatus</span> extends org.apache.xmlbeans.XmlString</pre> <div class="block">An XML producer_status(@http://www.exlibrisgroup.com/xsd/dps/backoffice/service). This is an atomic type that is a restriction of com.exlibrisgroup.xsd.dps.backoffice.service.ProducerStatus.</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">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Interface and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Enum</a></span></code> <div class="block">Enumeration value class for com.exlibrisgroup.xsd.dps.backoffice.service.ProducerStatus.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Factory.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Factory</a></span></code> <div class="block">A factory class with static methods for creating instances of this type.</div> </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">&nbsp;</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="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Enum</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#ACTIVE">ACTIVE</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Enum</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#INACTIVE">INACTIVE</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#INT_ACTIVE">INT_ACTIVE</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#INT_INACTIVE">INT_INACTIVE</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static org.apache.xmlbeans.SchemaType</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#type">type</a></span></code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="fields.inherited.from.class.org.apache.xmlbeans.XmlObject"> <!-- --> </a> <h3>Fields inherited from interface&nbsp;org.apache.xmlbeans.XmlObject</h3> <code>EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL</code></li> </ul> </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">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</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>org.apache.xmlbeans.StringEnumAbstractBase</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#enumValue--">enumValue</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html#set-org.apache.xmlbeans.StringEnumAbstractBase-">set</a></span>(org.apache.xmlbeans.StringEnumAbstractBase&nbsp;e)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.xmlbeans.XmlAnySimpleType"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.xmlbeans.XmlAnySimpleType</h3> <code>getStringValue, set, setStringValue, stringValue</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.xmlbeans.XmlObject"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.xmlbeans.XmlObject</h3> <code>changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.xmlbeans.XmlTokenSource"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.xmlbeans.XmlTokenSource</h3> <code>documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText</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="type"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>type</h4> <pre>static final&nbsp;org.apache.xmlbeans.SchemaType type</pre> </li> </ul> <a name="ACTIVE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ACTIVE</h4> <pre>static final&nbsp;<a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Enum</a> ACTIVE</pre> </li> </ul> <a name="INACTIVE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INACTIVE</h4> <pre>static final&nbsp;<a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service">ProducerStatus.Enum</a> INACTIVE</pre> </li> </ul> <a name="INT_ACTIVE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INT_ACTIVE</h4> <pre>static final&nbsp;int INT_ACTIVE</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.exlibrisgroup.xsd.dps.backoffice.service.ProducerStatus.INT_ACTIVE">Constant Field Values</a></dd> </dl> </li> </ul> <a name="INT_INACTIVE"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>INT_INACTIVE</h4> <pre>static final&nbsp;int INT_INACTIVE</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.exlibrisgroup.xsd.dps.backoffice.service.ProducerStatus.INT_INACTIVE">Constant Field Values</a></dd> </dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="enumValue--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>enumValue</h4> <pre>org.apache.xmlbeans.StringEnumAbstractBase&nbsp;enumValue()</pre> </li> </ul> <a name="set-org.apache.xmlbeans.StringEnumAbstractBase-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>set</h4> <pre>void&nbsp;set(org.apache.xmlbeans.StringEnumAbstractBase&nbsp;e)</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> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerInfoDocument.ProducerInfo.Factory.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.Enum.html" title="class in com.exlibrisgroup.xsd.dps.backoffice.service"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/exlibrisgroup/xsd/dps/backoffice/service/ProducerStatus.html" target="_top">Frames</a></li> <li><a href="ProducerStatus.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
public/css/theme-5/bootstrap.css
Lockex/exclie_star
@-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-moz-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-o-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-ms-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-webkit-keyframes zoom-down { from { -webkit-transform-origin: top; -moz-transform-origin: top; -ms-transform-origin: top; transform-origin: top; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-moz-keyframes zoom-down { from { -webkit-transform-origin: top; -moz-transform-origin: top; -ms-transform-origin: top; transform-origin: top; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-o-keyframes zoom-down { from { -webkit-transform-origin: top; -moz-transform-origin: top; -ms-transform-origin: top; transform-origin: top; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-ms-keyframes zoom-down { from { -webkit-transform-origin: top; -moz-transform-origin: top; -ms-transform-origin: top; transform-origin: top; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @keyframes zoom-down { from { -webkit-transform-origin: top; -moz-transform-origin: top; -ms-transform-origin: top; transform-origin: top; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-webkit-keyframes zoom-up { from { -webkit-transform-origin: bottom; -moz-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-moz-keyframes zoom-up { from { -webkit-transform-origin: bottom; -moz-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-o-keyframes zoom-up { from { -webkit-transform-origin: bottom; -moz-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-ms-keyframes zoom-up { from { -webkit-transform-origin: bottom; -moz-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @keyframes zoom-up { from { -webkit-transform-origin: bottom; -moz-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0); -o-transform: scale(0, 0); transform: scale(0, 0); } to { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } } @-webkit-keyframes slide-right { from { -webkit-transform: translate(-20px, 0); -ms-transform: translate(-20px, 0); -o-transform: translate(-20px, 0); transform: translate(-20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes slide-right { from { -webkit-transform: translate(-20px, 0); -ms-transform: translate(-20px, 0); -o-transform: translate(-20px, 0); transform: translate(-20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes slide-right { from { -webkit-transform: translate(-20px, 0); -ms-transform: translate(-20px, 0); -o-transform: translate(-20px, 0); transform: translate(-20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-ms-keyframes slide-right { from { -webkit-transform: translate(-20px, 0); -ms-transform: translate(-20px, 0); -o-transform: translate(-20px, 0); transform: translate(-20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes slide-right { from { -webkit-transform: translate(-20px, 0); -ms-transform: translate(-20px, 0); -o-transform: translate(-20px, 0); transform: translate(-20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-webkit-keyframes slide-left { from { -webkit-transform: translate(20px, 0); -ms-transform: translate(20px, 0); -o-transform: translate(20px, 0); transform: translate(20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes slide-left { from { -webkit-transform: translate(20px, 0); -ms-transform: translate(20px, 0); -o-transform: translate(20px, 0); transform: translate(20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes slide-left { from { -webkit-transform: translate(20px, 0); -ms-transform: translate(20px, 0); -o-transform: translate(20px, 0); transform: translate(20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-ms-keyframes slide-left { from { -webkit-transform: translate(20px, 0); -ms-transform: translate(20px, 0); -o-transform: translate(20px, 0); transform: translate(20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes slide-left { from { -webkit-transform: translate(20px, 0); -ms-transform: translate(20px, 0); -o-transform: translate(20px, 0); transform: translate(20px, 0); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-webkit-keyframes slide-down { from { -webkit-transform: translate(0, -20px); -ms-transform: translate(0, -20px); -o-transform: translate(0, -20px); transform: translate(0, -20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes slide-down { from { -webkit-transform: translate(0, -20px); -ms-transform: translate(0, -20px); -o-transform: translate(0, -20px); transform: translate(0, -20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes slide-down { from { -webkit-transform: translate(0, -20px); -ms-transform: translate(0, -20px); -o-transform: translate(0, -20px); transform: translate(0, -20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-ms-keyframes slide-down { from { -webkit-transform: translate(0, -20px); -ms-transform: translate(0, -20px); -o-transform: translate(0, -20px); transform: translate(0, -20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes slide-down { from { -webkit-transform: translate(0, -20px); -ms-transform: translate(0, -20px); -o-transform: translate(0, -20px); transform: translate(0, -20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-webkit-keyframes slide-up { from { -webkit-transform: translate(0, 20px); -ms-transform: translate(0, 20px); -o-transform: translate(0, 20px); transform: translate(0, 20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes slide-up { from { -webkit-transform: translate(0, 20px); -ms-transform: translate(0, 20px); -o-transform: translate(0, 20px); transform: translate(0, 20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes slide-up { from { -webkit-transform: translate(0, 20px); -ms-transform: translate(0, 20px); -o-transform: translate(0, 20px); transform: translate(0, 20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-ms-keyframes slide-up { from { -webkit-transform: translate(0, 20px); -ms-transform: translate(0, 20px); -o-transform: translate(0, 20px); transform: translate(0, 20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes slide-up { from { -webkit-transform: translate(0, 20px); -ms-transform: translate(0, 20px); -o-transform: translate(0, 20px); transform: translate(0, 20px); opacity: 0; } to { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } /* // Example usage .make-ratio(xs, 2, 1); .make-ratio(xs, 3, 1); // Small grid // // Small device range, from phones to tablets. @media (min-width: @screen-sm-min) { .make-ratio(sm, 2, 1); .make-ratio(sm, 3, 1); } // Medium grid // // For the desktop device range. @media (min-width: @screen-md-min) { .make-ratio(md, 2, 1); .make-ratio(md, 3, 1); } // Large grid // // For the large desktop device range. @media (min-width: @screen-lg-min) { .make-ratio(lg, 2, 1); .make-ratio(lg, 3, 1); } */ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } select { background: #fff !important; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.846153846; color: #353132; background-color: #ffffff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #eb0038; text-decoration: none; } a:hover, a:focus { color: #9f0026; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 2px; } .img-thumbnail { padding: 4px; line-height: 1.846153846; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 2px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 24px; margin-bottom: 24px; border: 0; border-top: 1px solid #e6e5e5; } .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 400; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #9c9697; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 24px; margin-bottom: 12px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 12px; margin-bottom: 12px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 34px; } h2, .h2 { font-size: 24px; } h3, .h3 { font-size: 20px; } h4, .h4 { font-size: 15px; } h5, .h5 { font-size: 13px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 12px; } .lead { margin-bottom: 24px; font-size: 14px; font-weight: 300; line-height: 1.4; } @media (min-width: 769px) { .lead { font-size: 19.5px; } } small, .small { font-size: 92%; } mark, .mark { background-color: #faf1d4; padding: .2em; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #9c9697; } .text-primary { color: #eb0038; } a.text-primary:hover { color: #b8002c; } .text-success { color: #3c763d; } a.text-success:hover { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover { color: #843534; } .bg-primary { color: #fff; background-color: #eb0038; } a.bg-primary:hover { background-color: #b8002c; } .bg-success { background-color: #e8fad4; } a.bg-success:hover { background-color: #d0f4a7; } .bg-info { background-color: #d4f6fa; } a.bg-info:hover { background-color: #a7ebf4; } .bg-warning { background-color: #faf1d4; } a.bg-warning:hover { background-color: #f4e1a7; } .bg-danger { background-color: #fad5d4; } a.bg-danger:hover { background-color: #f4a8a7; } .page-header { padding-bottom: 11px; margin: 48px 0 24px; border-bottom: 1px solid #e6e5e5; } ul, ol { margin-top: 0; margin-bottom: 12px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; } dl { margin-top: 0; margin-bottom: 24px; } dt, dd { line-height: 1.846153846; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 769px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #9c9697; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 12px 24px; margin: 0 0 24px; font-size: 16.25px; border-left: 5px solid #fcd3dd; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.846153846; color: #9c9697; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; border-right: 5px solid #fcd3dd; border-left: 0; text-align: right; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 24px; font-style: normal; line-height: 1.846153846; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; border-radius: 2px; } kbd { padding: 2px 4px; font-size: 90%; color: #ffffff; background-color: #333333; border-radius: 0px; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; box-shadow: none; } pre { display: block; padding: 11.5px; margin: 0 0 12px; font-size: 12px; line-height: 1.846153846; word-break: break-all; word-wrap: break-word; color: #353132; background-color: #f5f5f5; border: 1px solid #cccccc; border-radius: 2px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { margin-right: auto; margin-left: auto; padding-left: 12px; padding-right: 12px; } @media (min-width: 769px) { .container { width: 628px; } } @media (min-width: 992px) { .container { width: 848px; } } @media (min-width: 1200px) { .container { width: 1060px; } } .container-fluid { margin-right: auto; margin-left: auto; padding-left: 12px; padding-right: 12px; } .row { margin-left: -12px; margin-right: -12px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 12px; padding-right: 12px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666666666666%; } .col-xs-10 { width: 83.33333333333334%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666666666666%; } .col-xs-7 { width: 58.333333333333336%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666666666667%; } .col-xs-4 { width: 33.33333333333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.666666666666664%; } .col-xs-1 { width: 8.333333333333332%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666666666666%; } .col-xs-pull-10 { right: 83.33333333333334%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666666666666%; } .col-xs-pull-7 { right: 58.333333333333336%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666666666667%; } .col-xs-pull-4 { right: 33.33333333333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.666666666666664%; } .col-xs-pull-1 { right: 8.333333333333332%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666666666666%; } .col-xs-push-10 { left: 83.33333333333334%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666666666666%; } .col-xs-push-7 { left: 58.333333333333336%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666666666667%; } .col-xs-push-4 { left: 33.33333333333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.666666666666664%; } .col-xs-push-1 { left: 8.333333333333332%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666666666666%; } .col-xs-offset-10 { margin-left: 83.33333333333334%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666666666666%; } .col-xs-offset-7 { margin-left: 58.333333333333336%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666666666667%; } .col-xs-offset-4 { margin-left: 33.33333333333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.666666666666664%; } .col-xs-offset-1 { margin-left: 8.333333333333332%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 769px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666666666666%; } .col-sm-10 { width: 83.33333333333334%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666666666666%; } .col-sm-7 { width: 58.333333333333336%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666666666667%; } .col-sm-4 { width: 33.33333333333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.666666666666664%; } .col-sm-1 { width: 8.333333333333332%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666666666666%; } .col-sm-pull-10 { right: 83.33333333333334%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666666666666%; } .col-sm-pull-7 { right: 58.333333333333336%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666666666667%; } .col-sm-pull-4 { right: 33.33333333333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.666666666666664%; } .col-sm-pull-1 { right: 8.333333333333332%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666666666666%; } .col-sm-push-10 { left: 83.33333333333334%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666666666666%; } .col-sm-push-7 { left: 58.333333333333336%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666666666667%; } .col-sm-push-4 { left: 33.33333333333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.666666666666664%; } .col-sm-push-1 { left: 8.333333333333332%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666666666666%; } .col-sm-offset-10 { margin-left: 83.33333333333334%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666666666666%; } .col-sm-offset-7 { margin-left: 58.333333333333336%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666666666667%; } .col-sm-offset-4 { margin-left: 33.33333333333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.666666666666664%; } .col-sm-offset-1 { margin-left: 8.333333333333332%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666666666666%; } .col-md-10 { width: 83.33333333333334%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666666666666%; } .col-md-7 { width: 58.333333333333336%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666666666667%; } .col-md-4 { width: 33.33333333333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.666666666666664%; } .col-md-1 { width: 8.333333333333332%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666666666666%; } .col-md-pull-10 { right: 83.33333333333334%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666666666666%; } .col-md-pull-7 { right: 58.333333333333336%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666666666667%; } .col-md-pull-4 { right: 33.33333333333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.666666666666664%; } .col-md-pull-1 { right: 8.333333333333332%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666666666666%; } .col-md-push-10 { left: 83.33333333333334%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666666666666%; } .col-md-push-7 { left: 58.333333333333336%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666666666667%; } .col-md-push-4 { left: 33.33333333333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.666666666666664%; } .col-md-push-1 { left: 8.333333333333332%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666666666666%; } .col-md-offset-10 { margin-left: 83.33333333333334%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666666666666%; } .col-md-offset-7 { margin-left: 58.333333333333336%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666666666667%; } .col-md-offset-4 { margin-left: 33.33333333333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.666666666666664%; } .col-md-offset-1 { margin-left: 8.333333333333332%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666666666666%; } .col-lg-10 { width: 83.33333333333334%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666666666666%; } .col-lg-7 { width: 58.333333333333336%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666666666667%; } .col-lg-4 { width: 33.33333333333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.666666666666664%; } .col-lg-1 { width: 8.333333333333332%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666666666666%; } .col-lg-pull-10 { right: 83.33333333333334%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666666666666%; } .col-lg-pull-7 { right: 58.333333333333336%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666666666667%; } .col-lg-pull-4 { right: 33.33333333333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.666666666666664%; } .col-lg-pull-1 { right: 8.333333333333332%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666666666666%; } .col-lg-push-10 { left: 83.33333333333334%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666666666666%; } .col-lg-push-7 { left: 58.333333333333336%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666666666667%; } .col-lg-push-4 { left: 33.33333333333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.666666666666664%; } .col-lg-push-1 { left: 8.333333333333332%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666666666666%; } .col-lg-offset-10 { margin-left: 83.33333333333334%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666666666666%; } .col-lg-offset-7 { margin-left: 58.333333333333336%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666666666667%; } .col-lg-offset-4 { margin-left: 33.33333333333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.666666666666664%; } .col-lg-offset-1 { margin-left: 8.333333333333332%; } .col-lg-offset-0 { margin-left: 0%; } } table { background-color: transparent; } caption { padding-top: 10px 8px; padding-bottom: 10px 8px; color: #9c9697; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 24px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 10px 8px; line-height: 1.846153846; vertical-align: top; border-top: 1px solid rgba(193, 189, 190, 0.2); } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid rgba(193, 189, 190, 0.2); } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid rgba(193, 189, 190, 0.2); } .table .table { background-color: #ffffff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid rgba(193, 189, 190, 0.2); } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid rgba(193, 189, 190, 0.2); } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: rgba(243, 242, 242, 0.35); } .table-hover > tbody > tr:hover { background-color: rgba(230, 229, 229, 0.25); } table col[class*="col-"] { position: static; float: none; display: table-column; } table td[class*="col-"], table th[class*="col-"] { position: static; float: none; display: table-cell; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: rgba(230, 229, 229, 0.25); } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: rgba(218, 216, 216, 0.25); } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #e8fad4; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #dcf7be; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d4f6fa; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #bef0f7; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #faf1d4; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #f7e9be; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #fad5d4; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #f7bfbe; } .table-responsive { overflow-x: auto; min-height: 0.01%; } @media screen and (max-width: 768px) { .table-responsive { width: 100%; margin-bottom: 18px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid rgba(193, 189, 190, 0.2); } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 24px; font-size: 19.5px; line-height: inherit; color: #353132; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 5.5px; font-size: 13px; line-height: 1.846153846; color: #0c0c0c; } .form-control { display: block; width: 100%; height: 35px; padding: 4.5px 14px; font-size: 13px; line-height: 1.846153846; color: #0c0c0c; background-color: #ffffff; background-image: none; border: 1px solid rgba(12, 12, 12, 0.12); border-radius: 2px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #eb0038; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(235, 0, 56, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(235, 0, 56, 0.6); } .form-control:focus { border-color: #eb0038; outline: 0; -webkit-box-shadow: none; box-shadow: none; } .form-control::-moz-placeholder { color: #9c9697; opacity: 1; } .form-control:-ms-input-placeholder { color: #9c9697; } .form-control::-webkit-input-placeholder { color: #9c9697; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { cursor: not-allowed; background-color: #e6e5e5; opacity: 1; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { line-height: 35px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 45px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 24px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { padding-top: 5.5px; padding-bottom: 5.5px; margin-bottom: 0; } .form-control-static.input-lg, .form-control-static.input-sm { padding-left: 0; padding-right: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 0px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .floating-label .input-sm ~ label { font-size: 12px; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 0px; } select.form-group-sm .form-control { height: 30px; line-height: 30px; } textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control { height: auto; } select.form-group-sm .form-control { height: 30px; line-height: 30px; } textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control { height: auto; } .floating-label .form-group-sm .form-control ~ label { font-size: 12px; } .form-group-sm .form-control-static { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 2px; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg, select[multiple].input-lg { height: auto; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .floating-label .input-lg ~ label { font-size: 17px; } .form-group-lg .form-control { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 2px; } select.form-group-lg .form-control { height: 45px; line-height: 45px; } textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control { height: auto; } select.form-group-lg .form-control { height: 45px; line-height: 45px; } textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control { height: auto; } .floating-label .form-group-lg .form-control ~ label { font-size: 17px; } .form-group-lg .form-control-static { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 43.75px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 35px; height: 35px; line-height: 35px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback { width: 45px; height: 45px; line-height: 45px; } .input-sm + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; border-color: #3c763d; background-color: #e8fad4; } .has-success .form-control-feedback { color: #3c763d; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { color: #3c763d; } .has-success .form-control { border-bottom-color: #3c763d; -webkit-box-shadow: none; box-shadow: none; } .has-success .form-control:focus { border-bottom-color: #3c763d; -webkit-box-shadow: none; box-shadow: none; } .has-success .input-group-addon { color: #3c763d; background-color: #e8fad4; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; border-color: #8a6d3b; background-color: #faf1d4; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { color: #8a6d3b; } .has-warning .form-control { border-bottom-color: #8a6d3b; -webkit-box-shadow: none; box-shadow: none; } .has-warning .form-control:focus { border-bottom-color: #8a6d3b; -webkit-box-shadow: none; box-shadow: none; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #faf1d4; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; border-color: #a94442; background-color: #fad5d4; } .has-error .form-control-feedback { color: #a94442; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { color: #a94442; } .has-error .form-control { border-bottom-color: #a94442; -webkit-box-shadow: none; box-shadow: none; } .has-error .form-control:focus { border-bottom-color: #a94442; -webkit-box-shadow: none; box-shadow: none; } .has-error .input-group-addon { color: #a94442; background-color: #fad5d4; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label ~ .form-control-feedback { top: 29px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #766f71; } @media (min-width: 769px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 5.5px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 29.5px; } .form-horizontal .form-group { margin-left: -12px; margin-right: -12px; } @media (min-width: 769px) { .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 5.5px; } } .form-horizontal .has-feedback .form-control-feedback { right: 12px; } @media (min-width: 769px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; } } @media (min-width: 769px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 4.5px 14px; font-size: 13px; line-height: 1.846153846; border-radius: 2px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn.btn-flat { padding: 4.5px 7px; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #9c9697; text-decoration: none; } .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; pointer-events: none; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; } .btn-default { color: #9c9697; color: #353132; background-color: #e6e5e5; border-color: #e6e5e5; } .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #9c9697; background-color: #cecacb; border-color: #c9c5c6; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #e6e5e5; border-color: #e6e5e5; } .btn-default .badge { color: #e6e5e5; background-color: #9c9697; } .btn-default:hover, .btn-default:focus, .open .dropdown-toggle.btn-default { color: #353132; background-color: #d5d2d3; border-color: #d5d2d3; } .btn-default:active, .btn-default.active { color: #353132; background-color: #cecacb; border-color: #cecacb; } .btn-default.btn-flat, .btn-default.btn-icon-toggle { color: #9c9697; } .open .dropdown-toggle.btn-default.btn-flat, .open .dropdown-toggle.btn-default.btn-icon-toggle { color: #e6e5e5; } .btn-primary { color: #eb0038; color: #ffffff; background-color: #eb0038; border-color: #eb0038; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #eb0038; background-color: #b8002c; border-color: #ae0029; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #eb0038; border-color: #eb0038; } .btn-primary .badge { color: #eb0038; background-color: #eb0038; } .btn-primary:hover, .btn-primary:focus, .open .dropdown-toggle.btn-primary { color: #ffffff; background-color: #c7002f; border-color: #c7002f; } .btn-primary:active, .btn-primary.active { color: #ffffff; background-color: #b8002c; border-color: #b8002c; } .btn-primary.btn-flat, .btn-primary.btn-icon-toggle { color: #eb0038; } .open .dropdown-toggle.btn-primary.btn-flat, .open .dropdown-toggle.btn-primary.btn-icon-toggle { color: #eb0038; } .btn-success { color: #8bc34a; color: #ffffff; background-color: #8bc34a; border-color: #8bc34a; } .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #8bc34a; background-color: #71a436; border-color: #6c9c34; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #8bc34a; border-color: #8bc34a; } .btn-success .badge { color: #8bc34a; background-color: #8bc34a; } .btn-success:hover, .btn-success:focus, .open .dropdown-toggle.btn-success { color: #ffffff; background-color: #79af3a; border-color: #79af3a; } .btn-success:active, .btn-success.active { color: #ffffff; background-color: #71a436; border-color: #71a436; } .btn-success.btn-flat, .btn-success.btn-icon-toggle { color: #8bc34a; } .open .dropdown-toggle.btn-success.btn-flat, .open .dropdown-toggle.btn-success.btn-icon-toggle { color: #8bc34a; } .btn-info { color: #00bcd4; color: #ffffff; background-color: #00bcd4; border-color: #00bcd4; } .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #00bcd4; background-color: #008fa1; border-color: #008697; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #00bcd4; border-color: #00bcd4; } .btn-info .badge { color: #00bcd4; background-color: #00bcd4; } .btn-info:hover, .btn-info:focus, .open .dropdown-toggle.btn-info { color: #ffffff; background-color: #009cb0; border-color: #009cb0; } .btn-info:active, .btn-info.active { color: #ffffff; background-color: #008fa1; border-color: #008fa1; } .btn-info.btn-flat, .btn-info.btn-icon-toggle { color: #00bcd4; } .open .dropdown-toggle.btn-info.btn-flat, .open .dropdown-toggle.btn-info.btn-icon-toggle { color: #00bcd4; } .btn-warning { color: #ffc107; color: #353132; background-color: #ffc107; border-color: #ffc107; } .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #ffc107; background-color: #d39e00; border-color: #c99700; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #ffc107; border-color: #ffc107; } .btn-warning .badge { color: #ffc107; background-color: #ffc107; } .btn-warning:hover, .btn-warning:focus, .open .dropdown-toggle.btn-warning { color: #ffffff; background-color: #e2aa00; border-color: #e2aa00; } .btn-warning:active, .btn-warning.active { color: #ffffff; background-color: #d39e00; border-color: #d39e00; } .btn-warning.btn-flat, .btn-warning.btn-icon-toggle { color: #ffc107; } .open .dropdown-toggle.btn-warning.btn-flat, .open .dropdown-toggle.btn-warning.btn-icon-toggle { color: #ffc107; } .btn-danger { color: #ef5350; color: #ffffff; background-color: #ef5350; border-color: #ef5350; } .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #ef5350; background-color: #eb2521; border-color: #ea1c18; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #ef5350; border-color: #ef5350; } .btn-danger .badge { color: #ef5350; background-color: #ef5350; } .btn-danger:hover, .btn-danger:focus, .open .dropdown-toggle.btn-danger { color: #ffffff; background-color: #ec332f; border-color: #ec332f; } .btn-danger:active, .btn-danger.active { color: #ffffff; background-color: #eb2521; border-color: #eb2521; } .btn-danger.btn-flat, .btn-danger.btn-icon-toggle { color: #ef5350; } .open .dropdown-toggle.btn-danger.btn-flat, .open .dropdown-toggle.btn-danger.btn-icon-toggle { color: #ef5350; } .btn-link { color: #eb0038; font-weight: normal; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #9f0026; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #9c9697; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 2px; } .btn-lg.btn-flat { padding: 10px 8px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 0px; } .btn-sm.btn-flat { padding: 5px 5px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 0px; } .btn-xs.btn-flat { padding: 1px 2.5px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { display: none; visibility: hidden; } .collapse.in { display: block; visibility: visible; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height, visibility; transition-property: height, visibility; -webkit-transition-duration: 0.35s; transition-duration: 0.35s; -webkit-transition-timing-function: ease; transition-timing-function: ease; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px solid; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; font-size: 13px; text-align: left; background-color: #ffffff; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 2px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 11px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.846153846; color: #353132; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { text-decoration: none; color: #272526; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #ffffff; text-decoration: none; outline: 0; background-color: #eb0038; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #9c9697; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); cursor: not-allowed; } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { left: auto; right: 0; } .dropdown-menu-left { left: 0; right: auto; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.846153846; color: #9c9697; white-space: nowrap; } .dropdown-backdrop { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 769px) { .navbar-right .dropdown-menu { left: auto; right: 0; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 2px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 2px; border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-left: 0; padding-right: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 2px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 45px; line-height: 45px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 45px; line-height: 45px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .floating-label .input-group-lg > .form-control ~ label, .floating-label .input-group-lg > .input-group-addon ~ label, .floating-label .input-group-lg > .input-group-btn > .btn ~ label { font-size: 17px; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 0px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .floating-label .input-group-sm > .form-control ~ label, .floating-label .input-group-sm > .input-group-addon ~ label, .floating-label .input-group-sm > .input-group-btn > .btn ~ label { font-size: 12px; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 4.5px 14px; font-size: 13px; font-weight: normal; line-height: 1; color: #0c0c0c; text-align: center; background-color: #e6e5e5; border: 1px solid rgba(12, 12, 12, 0.12); border-radius: 2px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 0px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 17px; border-radius: 2px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { margin-left: -1px; } .nav { margin-bottom: 0; padding-left: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #e6e5e5; } .nav > li.disabled > a { color: #9c9697; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #9c9697; text-decoration: none; background-color: transparent; cursor: not-allowed; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #e6e5e5; border-color: #eb0038; } .nav .nav-divider { height: 1px; margin: 11px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #dddddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.846153846; border: 1px solid transparent; border-radius: 2px 2px 0 0; } .nav-tabs > li > a:hover { border-color: #e6e5e5 #e6e5e5 #dddddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #585354; background-color: #ffffff; border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 769px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 2px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 769px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 2px 2px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #ffffff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 2px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #ffffff; background-color: #eb0038; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 769px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 2px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 769px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 2px 2px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #ffffff; } } .tab-content > .tab-pane { display: none; visibility: hidden; } .tab-content > .active { display: block; visibility: visible; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 24px; border: 1px solid transparent; } @media (min-width: 769px) { .navbar { border-radius: 2px; } } @media (min-width: 769px) { .navbar-header { float: left; } } .navbar-collapse { overflow-x: visible; padding-right: 12px; padding-left: 12px; border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-overflow-scrolling: touch; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 769px) { .navbar-collapse { width: auto; border-top: 0; box-shadow: none; } .navbar-collapse.collapse { display: block !important; visibility: visible !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-left: 0; padding-right: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -12px; margin-left: -12px; } @media (min-width: 769px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 769px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 769px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; padding: 13px 12px; font-size: 17px; line-height: 24px; height: 50px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 769px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -12px; } } .navbar-toggle { position: relative; float: right; margin-right: 12px; padding: 9px 10px; margin-top: 8px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 2px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 769px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 6.5px -12px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 24px; } @media (max-width: 768px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 24px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 769px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 13px; padding-bottom: 13px; } } .navbar-form { margin-left: -12px; margin-right: -12px; padding: 10px 12px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 7.5px; margin-bottom: 7.5px; } @media (min-width: 769px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 768px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 769px) { .navbar-form { width: auto; border: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-right-radius: 2px; border-top-left-radius: 2px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 7.5px; margin-bottom: 7.5px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 13px; margin-bottom: 13px; } @media (min-width: 769px) { .navbar-text { float: left; margin-left: 12px; margin-right: 12px; } } @media (min-width: 769px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -12px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } .navbar-default .navbar-brand { color: #777777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { color: #777777; } .navbar-default .navbar-nav > li > a { color: #777777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #333333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #dddddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #dddddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #e7e7e7; color: #555555; } @media (max-width: 768px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #cccccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777777; } .navbar-default .navbar-link:hover { color: #333333; } .navbar-default .btn-link { color: #777777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #333333; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #cccccc; } .navbar-inverse { background-color: #222222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #c1bdbe; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-text { color: #c1bdbe; } .navbar-inverse .navbar-nav > li > a { color: #c1bdbe; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: #080808; color: #ffffff; } @media (max-width: 768px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #c1bdbe; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #c1bdbe; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .navbar-inverse .btn-link { color: #c1bdbe; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #ffffff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444444; } .breadcrumb { padding: 8px 15px; margin-bottom: 24px; list-style: none; background-color: transparent; border-radius: 2px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { content: "/\00a0"; padding: 0 5px; color: #353132; } .breadcrumb > .active { color: #353132; } .pagination { display: inline-block; padding-left: 0; margin: 24px 0; border-radius: 2px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 4.5px 14px; line-height: 1.846153846; text-decoration: none; color: #eb0038; background-color: #ffffff; border: 1px solid #dddddd; margin-left: -1px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-bottom-right-radius: 2px; border-top-right-radius: 2px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { color: #9f0026; background-color: #e6e5e5; border-color: #dddddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #ffffff; background-color: #eb0038; border-color: #eb0038; cursor: default; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #9c9697; background-color: #ffffff; border-color: #dddddd; cursor: not-allowed; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 17px; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-bottom-left-radius: 2px; border-top-left-radius: 2px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-bottom-right-radius: 2px; border-top-right-radius: 2px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-bottom-left-radius: 0px; border-top-left-radius: 0px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-bottom-right-radius: 0px; border-top-right-radius: 0px; } .pager { padding-left: 0; margin: 24px 0; list-style: none; text-align: center; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 0px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #e6e5e5; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #9c9697; background-color: #ffffff; cursor: not-allowed; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #ffffff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #9c9697; } .label-default[href]:hover, .label-default[href]:focus { background-color: #837c7d; } .label-primary { background-color: #eb0038; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #b8002c; } .label-success { background-color: #8bc34a; } .label-success[href]:hover, .label-success[href]:focus { background-color: #71a436; } .label-info { background-color: #00bcd4; } .label-info[href]:hover, .label-info[href]:focus { background-color: #008fa1; } .label-warning { background-color: #ffc107; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #d39e00; } .label-danger { background-color: #ef5350; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #eb2521; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; color: #ffffff; line-height: 1; vertical-align: baseline; white-space: nowrap; text-align: center; background-color: #9c9697; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #eb0038; background-color: #ffffff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding: 30px 15px; margin-bottom: 30px; color: inherit; background-color: #e6e5e5; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 20px; font-weight: 200; } .jumbotron > hr { border-top-color: #cecacb; } .container .jumbotron, .container-fluid .jumbotron { border-radius: 2px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 769px) { .jumbotron { padding: 48px 0; } .container .jumbotron, .container-fluid .jumbotron { padding-left: 60px; padding-right: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 58.5px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 24px; line-height: 1.846153846; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 2px; -webkit-transition: border 0.2s ease-in-out; -o-transition: border 0.2s ease-in-out; transition: border 0.2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-left: auto; margin-right: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #eb0038; } .thumbnail .caption { padding: 9px; color: #353132; } .alert { padding: 15px; margin-bottom: 24px; border: 1px solid transparent; border-radius: 2px; } .alert h4 { margin-top: 0; color: inherit; } .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 { background-color: #e8fad4; border-color: #e6f7be; color: #3c763d; } .alert-success hr { border-top-color: #ddf4a7; } .alert-success .alert-link { color: #2b542c; } .alert-info { background-color: #d4f6fa; border-color: #b5f6f3; color: #31708f; } .alert-info hr { border-top-color: #9ef3ef; } .alert-info .alert-link { color: #245269; } .alert-warning { background-color: #faf1d4; border-color: #f7dfbe; color: #8a6d3b; } .alert-warning hr { border-top-color: #f4d4a7; } .alert-warning .alert-link { color: #66512c; } .alert-danger { background-color: #fad5d4; border-color: #f7bec6; color: #a94442; } .alert-danger hr { border-top-color: #f4a7b3; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { overflow: hidden; height: 24px; margin-bottom: 24px; background-color: #f5f5f5; border-radius: 2px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress-bar { float: left; width: 0%; height: 100%; font-size: 12px; line-height: 24px; color: #ffffff; text-align: center; background-color: #eb0038; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; -webkit-animation: progress-bar-stripes 2s linear infinite 1s ease-in; -moz-animation: progress-bar-stripes 2s linear infinite 1s ease-in; -ms-animation: progress-bar-stripes 2s linear infinite 1s ease-in; -o-animation: progress-bar-stripes 2s linear infinite 1s ease-in; animation: progress-bar-stripes 2s linear infinite 1s ease-in; } .progress-bar-success { background-color: #8bc34a; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #00bcd4; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #ffc107; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #ef5350; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { zoom: 1; overflow: hidden; } .media-body { width: 10000px; } .media-object { display: block; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { margin-bottom: 20px; padding-left: 0; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #ffffff; border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 2px; border-top-left-radius: 2px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } a.list-group-item { color: #555555; } a.list-group-item .list-group-item-heading { color: #333333; } a.list-group-item:hover, a.list-group-item:focus { text-decoration: none; color: #555555; background-color: #f5f5f5; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { background-color: #e6e5e5; color: #9c9697; cursor: not-allowed; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #9c9697; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #ffffff; background-color: #eb0038; border-color: #eb0038; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #ffb8c9; } .list-group-item-success { color: #3c763d; background-color: #e8fad4; } a.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, a.list-group-item-success:focus { color: #3c763d; background-color: #dcf7be; } a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d4f6fa; } a.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, a.list-group-item-info:focus { color: #31708f; background-color: #bef0f7; } a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #faf1d4; } a.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, a.list-group-item-warning:focus { color: #8a6d3b; background-color: #f7e9be; } a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #fad5d4; } a.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, a.list-group-item-danger:focus { color: #a94442; background-color: #f7bfbe; } a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 24px; background-color: #ffffff; border: 1px solid transparent; border-radius: 2px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 1px; border-top-left-radius: 1px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 15px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-right-radius: 1px; border-top-left-radius: 1px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-left: 15px; padding-right: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-right-radius: 1px; border-top-left-radius: 1px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 1px; border-top-right-radius: 1px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 1px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 1px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 1px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 1px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid rgba(193, 189, 190, 0.2); } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { border: 0; margin-bottom: 0; } .panel-group { margin-bottom: 24px; } .panel-group .panel { margin-bottom: 0; border-radius: 2px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #353132; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #353132; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #eb0038; } .panel-primary > .panel-heading { color: #ffffff; background-color: #eb0038; border-color: #eb0038; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #eb0038; } .panel-primary > .panel-heading .badge { color: #eb0038; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #eb0038; } .panel-success { border-color: #e6f7be; } .panel-success > .panel-heading { color: #3c763d; background-color: #e8fad4; border-color: #e6f7be; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #e6f7be; } .panel-success > .panel-heading .badge { color: #e8fad4; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #e6f7be; } .panel-info { border-color: #b5f6f3; } .panel-info > .panel-heading { color: #31708f; background-color: #d4f6fa; border-color: #b5f6f3; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #b5f6f3; } .panel-info > .panel-heading .badge { color: #d4f6fa; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #b5f6f3; } .panel-warning { border-color: #f7dfbe; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #faf1d4; border-color: #f7dfbe; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #f7dfbe; } .panel-warning > .panel-heading .badge { color: #faf1d4; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #f7dfbe; } .panel-danger { border-color: #f7bec6; } .panel-danger > .panel-heading { color: #a94442; background-color: #fad5d4; border-color: #f7bec6; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #f7bec6; } .panel-danger > .panel-heading .badge { color: #fad5d4; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #f7bec6; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } .embed-responsive.embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive.embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 2px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } .well-lg { padding: 24px; border-radius: 2px; } .well-sm { padding: 9px; border-radius: 0px; } .close { float: right; font-size: 19.5px; font-weight: bold; line-height: 1; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.5; filter: alpha(opacity=50); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal { display: none; overflow: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); -webkit-transition: -webkit-transform 0.3s ease-out; -moz-transition: -moz-transform 0.3s ease-out; -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #ffffff; border: 1px solid #999999; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 2px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); background-clip: padding-box; outline: 0; } .modal-backdrop { position: absolute; top: 0; right: 0; left: 0; background-color: #000000; } .modal-backdrop.fade { opacity: 0; filter: alpha(opacity=0); } .modal-backdrop.in { opacity: 0.5; filter: alpha(opacity=50); } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; min-height: 16.846153846px; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.846153846; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 769px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; visibility: visible; font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; border-radius: 2px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 1.846153846; text-align: left; background-color: #ffffff; background-clip: padding-box; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 2px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); white-space: normal; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { margin: 0; padding: 8px 14px; font-size: 13px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 1px 1px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { border-width: 10px; content: ""; } .popover.top > .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: #999999; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; } .popover.top > .arrow:after { content: " "; bottom: 1px; margin-left: -10px; border-bottom-width: 0; border-top-color: #ffffff; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-left-width: 0; border-right-color: #999999; border-right-color: rgba(0, 0, 0, 0.25); } .popover.right > .arrow:after { content: " "; left: 1px; bottom: -10px; border-left-width: 0; border-right-color: #ffffff; } .popover.bottom > .arrow { left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999999; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; } .popover.bottom > .arrow:after { content: " "; top: 1px; margin-left: -10px; border-top-width: 0; border-bottom-color: #ffffff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999999; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left > .arrow:after { content: " "; right: 1px; border-right-width: 0; border-left-color: #ffffff; bottom: -10px; } .carousel { position: relative; } .carousel-inner { position: relative; overflow: hidden; width: 100%; } .carousel-inner > .item { display: none; position: relative; -webkit-transition: 0.6s ease-in-out left; -o-transition: 0.6s ease-in-out left; transition: 0.6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform 0.6s ease-in-out; -moz-transition: -moz-transform 0.6s ease-in-out; -o-transition: -o-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; -moz-perspective: 1000; perspective: 1000; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); left: 0; } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0; } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); left: 0; } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; left: 0; bottom: 0; width: 5%; opacity: 0.5; filter: alpha(opacity=50); font-size: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4); } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); } .carousel-control.right { left: auto; right: 0; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); } .carousel-control:hover, .carousel-control:focus { outline: 0; color: #ffffff; text-decoration: none; opacity: 0.9; filter: alpha(opacity=90); } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; margin-top: -10px; line-height: 1; font-family: serif; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; margin-left: -30%; padding-left: 0; list-style: none; text-align: center; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; border: 1px solid #ffffff; border-radius: 10px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); } .carousel-indicators .active { margin: 0; width: 12px; height: 12px; background-color: #ffffff; } .carousel-caption { position: absolute; left: 15%; right: 15%; bottom: 20px; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 769px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -15px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -15px; } .carousel-caption { left: 20%; right: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { content: " "; display: table; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-left: auto; margin-right: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; visibility: hidden !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 768px) { .visible-xs { display: block !important; } table.visible-xs { display: table; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 768px) { .visible-xs-block { display: block !important; } } @media (max-width: 768px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 768px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 769px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 769px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 769px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 769px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 768px) { .hidden-xs { display: none !important; } } @media (min-width: 769px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } }
casepro/rules/templates/widgets/fieldtest.html
praekelt/casepro
<div class="field-test-widget"> {% with field_select=widget.subwidgets.0 %} {% include field_select.template_name with widget=field_select %} {% endwith %} <span class="control-label">is equal to</span> {% with value_input=widget.subwidgets.1 %} {% include value_input.template_name with widget=value_input %} {% endwith %} </div>
v0.13.2/dev/testing.html
statsmodels/statsmodels.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>Testing on Build Machines &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/material.css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="Release Notes" href="../release/index.html" /> <link rel="prev" title="statsmodels.stats.contrast.ContrastResults.df_denom" href="generated/statsmodels.stats.contrast.ContrastResults.df_denom.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#dev/testing" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.13.2</span> <span class="md-header-nav__topic"> Testing on Build Machines </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="get" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../../versions-v2.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="index.html" class="md-tabs__link">Developer Page</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.13.2</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="index.html" class="md-nav__link">Developer Page</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="index.html#submitting-a-bug-report" class="md-nav__link">Submitting a Bug Report</a> </li> <li class="md-nav__item"> <a href="index.html#making-changes-to-the-code" class="md-nav__link">Making Changes to the Code</a> </li> <li class="md-nav__item"> <a href="index.html#how-to-submit-a-pull-request" class="md-nav__link">How to Submit a Pull Request</a> </li> <li class="md-nav__item"> <a href="index.html#mailing-list" class="md-nav__link">Mailing List</a> </li> <li class="md-nav__item"> <a href="index.html#license" class="md-nav__link">License</a> </li> <li class="md-nav__item"> <a href="index.html#contents" class="md-nav__link">Contents</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="git_notes.html" class="md-nav__link">Working with the statsmodels Code</a> </li> <li class="md-nav__item"> <a href="maintainer_notes.html" class="md-nav__link">Maintainer Notes</a> </li> <li class="md-nav__item"> <a href="test_notes.html" class="md-nav__link">Testing</a> </li> <li class="md-nav__item"> <a href="naming_conventions.html" class="md-nav__link">Naming Conventions</a> </li> <li class="md-nav__item"> <a href="warnings-and-exceptions.html" class="md-nav__link">Exceptions and Warnings</a> </li> <li class="md-nav__item"> <a href="dataset_notes.html" class="md-nav__link">Datasets</a> </li> <li class="md-nav__item"> <a href="examples.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="get_involved.html" class="md-nav__link">Get Involved</a> </li> <li class="md-nav__item"> <a href="internal.html" class="md-nav__link">Internal Classes</a> </li> <li class="md-nav__item"> <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> <label class="md-nav__link md-nav__link--active" for="__toc"> Testing on Build Machines </label> <a href="#" class="md-nav__link md-nav__link--active">Testing on Build Machines</a> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/dev/testing.rst.txt">Show Source</a> </li> </ul> </nav> </li></ul> </li></ul> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/dev/testing.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <section id="testing-on-build-machines"> <h1 id="dev-testing--page-root">Testing on Build Machines<a class="headerlink" href="#dev-testing--page-root" title="Permalink to this headline">¶</a></h1> <p>There are currently several places that statsmodels is automatically built and tested against different dependency and Python versions and architectures. Check these logs periodically, make sure everything looks okay, and fix any failures:</p> <ul class="simple"> <li><p><a class="reference external" href="https://dev.azure.com/statsmodels/statsmodels-testing/_build?definitionId=1&amp;_a=summary">Azure Pipelines</a></p></li> </ul> <p>The test coverage pages are here:</p> <ul class="simple"> <li><p><a class="reference external" href="https://coveralls.io/github/statsmodels/statsmodels">Coveralls</a></p></li> <li><p><a class="reference external" href="https://codecov.io/gh/statsmodels/statsmodels">codecov</a></p></li> </ul> <p>We use <a class="reference external" href="https://app.codacy.com/project/josef-pkt/statsmodels/dashboard">Codacy</a> to monitor code quality.</p> </section> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="generated/statsmodels.stats.contrast.ContrastResults.df_denom.html" title="statsmodels.stats.contrast.ContrastResults.df_denom" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.stats.contrast.ContrastResults.df_denom </span> </div> </a> <a href="../release/index.html" title="Release Notes" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> Release Notes </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Feb 08, 2022. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
wagtail/wagtailadmin/templates/wagtailadmin/pages/_editor_js.html
chimeno/wagtail
{% load wagtailadmin_tags compress %} {% comment %} Javascript declarations to be included on the 'create page' and 'edit page' views {% endcomment %} <script> window.chooserUrls = { 'pageChooser': '{% url "wagtailadmin_choose_page" %}' }; </script> {% compress js %} <script src="{{ STATIC_URL }}wagtailadmin/js/vendor/rangy-core.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/vendor/hallo.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/vendor/tag-it.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/expanding_formset.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/modal-workflow.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/hallo-plugins/hallo-wagtaillink.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/hallo-plugins/hallo-hr.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/page-editor.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/page-chooser.js"></script> <script src="{{ STATIC_URL }}admin/js/urlify.js"></script> <script src="{{ STATIC_URL }}wagtailadmin/js/privacy-indicator.js"></script> {% hook_output 'insert_editor_js' %} {% endcompress %} {% include "wagtailadmin/shared/datetimepicker_translations.html" %} {% comment %} Additional js from widgets media. Allows for custom widgets in admin panel. {% endcomment %} {{ edit_handler.form.media.js }}
public/js/ext/src/ux/event/RecorderManager.html
handsomegyr/ent
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Event Recorder Manager</title> <link rel="stylesheet" type="text/css" href="../../../resources/css/ext-all.css" /> <!-- GC --> <script type="text/javascript" src="../../../ext.js"></script> <script type="text/javascript"> Ext.Loader.setPath({ 'Ext.ux': '..' }); Ext.require([ '*', 'Ext.ux.event.RecorderManager' ]); Ext.onReady(function () { var vp = Ext.create('Ext.Viewport', { layout: 'fit', items: [{ xtype: 'eventrecordermanager', attachTo: window.opener }] }); }); </script> </head> <body> </body> </html>
docs/lib/themes/oldstyle.min.css
tobaccoplaybook/site
h1,h2,h3,h4,h5,h6{font-family:'Crimson Text', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif}body{font-family:Georgia,"Times New Roman",Times,serif;text-align:justify}h1{text-align:center}pre{border:1px solid #000}th,td{border-bottom:1px solid #000}thead{border-bottom:3px double #000}blockquote{border-left:1px dashed #000;font-variant:small-caps;margin-left:1.5rem;padding-left:1rem}blockquote p:first-letter{font-weight:bold}
22/04_演習_月日を取得_解答/index.html
rev84/uhauha_programming
<html> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="style.css"> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="main.js"></script> </head> <body> <select id="month"> </select> 月 <select id="day"> </select> 日 <p id="message">ここに月日を設定</p> <button id="decide">月日を設定</button> </body> </html>
node_modules/meanio/node_modules/mean-cli/node_modules/npm/html/doc/cli/npm-update.html
hbzhang/rsstack
<!doctype html> <html> <title>npm-update</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-update.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm-update.html">npm-update</a></h1> <p>Update a package</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm update [-g] [&lt;name&gt; [&lt;name&gt; ...]] </code></pre><h2 id="description">DESCRIPTION</h2> <p>This command will update all the packages listed to the latest version (specified by the <code>tag</code> config).</p> <p>It will also install missing packages.</p> <p>If the <code>-g</code> flag is specified, this command will update globally installed packages.</p> <p>If no package name is specified, all packages in the specified location (global or local) will be updated.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-install.html"><a href="../cli/npm-install.html">npm-install(1)</a></a></li> <li><a href="../cli/npm-outdated.html"><a href="../cli/npm-outdated.html">npm-outdated(1)</a></a></li> <li><a href="../misc/npm-registry.html"><a href="../misc/npm-registry.html">npm-registry(7)</a></a></li> <li><a href="../files/npm-folders.html"><a href="../files/npm-folders.html">npm-folders(5)</a></a></li> <li><a href="../cli/npm-ls.html"><a href="../cli/npm-ls.html">npm-ls(1)</a></a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-update &mdash; npm@2.1.11</p>
app/views/encuestas/Estadisticasdetalle.html
alesabas/Softv
<div class="card" style="margin-top:10px;"> <div class="card-head style-default-light" style="padding-top:10px; padding-left:10px;"> <header> <strong style="font-weight:bold; border:none; margin-left:10px;">Estadísticas</strong> <br /><small class="text-muted" style="font-size:14px; margin-left:10px;"> <a href="#"><i class="fa fa-home" aria-hidden="true"></i> Inicio</a>><a href="#" class="paginaActiva">Catálogos</a></small> </header> <div class="tools"> <button title="Salir de estadísticas" class="btn btn-default btn-sm" type="button" ui-sref="home.encuestas.estadisticas"><i class="fa fa-arrow-left" aria-hidden="true"></i> Regresar</button> </div> </div> <div class="card-body"> </div> <div class="col-md-12"> <div class="col-md-4"> <br> <button class="btn btn-success btn-flat btn-sm" ng-click="$ctrl.printDiv('print')"><i class="fa fa-print"></i> Imprimir resultados</b<utton> </div> <div class="col-md-4"> <p>Selecciona el tipo de gráfica:</p> <select class="form-control input-sm" ng-model="$ctrl.TipoGrafica" ng-change="$ctrl.cambioGrafico()" > <option value="PieChart" selected>Gráfico circular </option> <option value="BarChart">Gráfico de barras</option> <option value="ColumnChart">Gráfico columnas</option> </select> </div> </div> <div class="col-md-12" id="print" style=" "> <div class="col-md-6" ng-repeat="x in $ctrl.Preguntas" google-chart chart="x" style="height:500px; width:100%;"></div> </div> </div> </div>
_posts/2014-07-04-using-plotly-analyze-visualize-data-variety-interactive-charts-graphs.html
poojaadani/carlvlewis-new
--- layout: post title: Using plotl.y to analyze and visualize data in variety of interactive charts, graphs date: 2014-07-04 14:11:03.000000000 +05:30 categories: - Blog tags: [] status: publish type: post published: true meta: _edit_last: '4' _publicize_twitter_user: ! '@carlvlewis' _wpas_done_all: '1' _wpas_skip_5012411: '1' _wpcom_is_markdown: '1' _jetpack_related_posts_cache: a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1435175389;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:2742;}i:1;a:1:{s:2:"id";i:1967;}i:2;a:1:{s:2:"id";i:2557;}}}} name: Using plotl.y to analyze and visualize data in variety of interactive charts, graphs dsq_thread_id: '3584086871' author: login: cvlewis email: carl@carlvlewis.net display_name: Carl V. Lewis first_name: Carl V. last_name: Lewis excerpt: !ruby/object:Hpricot::Doc options: {} --- <p><iframe width="640" height="480" frameborder="0" seamless="seamless" scrolling="no" src="https://plot.ly/~carlvlewis/6.embed?width=640&height=480"></iframe></p> <p>It's been a while since I've had the leisure to play with new <a href="https://github.com/carlvlewis/carlvlewis.github.com-fltimesunion/commit/0f38d526650b24a006f94a3d5549b3a64248a917?short_path=77062ad#diff-77062ade2810a886dd4dc035a83ed744">open-source tools for data journalism.</a> It's been even longer since I've written a tutorial. Today I wanted to explore a fairly WYSIWYG web app <a href="http://plotly.com" target="_blank">Plotly</a>. Although most of the features on face value appear to be not much more than what you can do in Google Visualization Playground or an open-source library like Highcharts.js – basic chart types on-the-fly, hover interactions – what particularly stands out about Plotly is its ability to perform many of the statistical analyses to your dataset before you go through the process of visualizing it.</p> <p>For example, you can calculate percent change from a set of chronological raw numbers to display accurate trend data by simply choosing "Data Analysis&gt;Percent Change" in the Grid View. I tried this out with some historical data scraped by the folks at <a href="http://enigma.io" target="_blank">enigma.io</a> on the percentage of the Savannah-area workforce in the hospitality industry, even adding in a fit or "trend" line to verify the upward tick:<br /> <!--more--><br /> As you can see, plot.ly lets the user easily add in annotations explaining the data. Granted, this could be accomplished using <a href="http://highcharts.js" target="_blank">other tools</a>, as well, but not so seamlessly. The user interface is a little cumbersome, and is still in beta. But judging by my experiences, this is a quicker solution than a JavaScript library and a more feature-rich choice than Google Charts.</p> <p>Just to give you an idea of the full range of more than 45 different standard chart types, I put together this slick heat map displaying the average unique visitors I've received on my blog for the past month during certain times and days of the week. Take it for a whirl:</p> <p><iframe src="https://plot.ly/~carlvlewis/13/average-unique-visitors-to-carlvlewisnet-jan-jun-2014/" width="100%" height="350" frameborder="no" scrolling="no"></iframe></p> <p>Not bad for a completely free, collaborative, easy-to-teach tool, huh? It's no <a href="http://d3.js" target="_blank">d3.js</a>, but it does the job quite nicely. Especially when it comes to saving time writing out complicated Excel formulas.</p>
html/en/func/iupgetparent.html
sanikoyes/iup
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <html> <head> <meta http-equiv="Content-Language" content="en-us"> <title>IupGetParent</title> <link rel="stylesheet" type="text/css" href="../../style.css"> <style type="text/css"> .style1 { text-decoration: underline; } </style> </head> <body> <h2>IupGetParent</h2> <p>Returns the parent of a control.</p> <h3> Parameters/Return</h3> <div> <pre>Ihandle* IupGetParent(Ihandle *<strong>ih</strong>); [in C] iup.GetParent(<strong>ih</strong>: ihandle) -&gt; <strong>parent</strong>: ihandle [in Lua]</pre> </div> <p><b>ih</b>: identifier of the interface element. </p> <p><span class="style1">Returns:</span> the handle of the parent or NULL if does not have a parent.</p> <h3>See Also</h3> <p><a href="iupgetchild.html">IupGetChild</a>, <a href="iupgetnextchild.html">IupGetNextChild</a>, <a href="iupgetbrother.html">IupGetBrother</a></p> </body> </html>
stylesheets/sample.css
cranca/jquery-gridly
html { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *, *:before, *:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit; } body, html, p, h1, h2, h3, h4, h5, h6 { font-family: "Lato", "Helvetica", serif; font-weight: normal; } code { font-family: "Consolas", "Monaco", monospace; font-weight: normal; } body, html, p, code { color: #888; } h1, h2, h3, h4, h5, h6 { color: #444; } pre { overflow: scroll; background: #EEE; padding: 10px; } .content { width: 980px; margin: 80px auto; } .formats .format { display: inline-block; } .zip { background: url("../images/zip.png"); display: block; width: 128px; height: 128px; } .tar { background: url("../images/tar.png"); display: block; width: 128px; height: 128px; } .fork { position: absolute; top: 0; left: 0; border: 0; } .button { display: block; padding: 20px; width: 200px; color: #FFF; background: #888; margin: 20px 0; text-align: center; text-decoration: none; border-radius: 4px; } pre .support.tag { color: #008; } pre .support.attribute { color: #800; } pre .string.value { color: #080; } .example { position: relative; } .example .brick { opacity: 1; cursor: pointer; position: relative; } .example .brick .delete { display: block; color: #FFF; background: rgba(255, 255, 255, 0.2); width: 40px; height: 40px; top: 0; right: 0; position: absolute; text-align: center; line-height: 40px; } .example .brick.small { width: 140px; height: 140px; } .example .brick.large { width: 300px; height: 300px; } .example .brick.dragging { opacity: 0.8; } .example .brick:nth-child(20n + 1) { background: #1ABC9C; } .example .brick:nth-child(20n + 2) { background: #16A085; } .example .brick:nth-child(20n + 3) { background: #2ECC71; } .example .brick:nth-child(20n + 4) { background: #27AE60; } .example .brick:nth-child(20n + 5) { background: #3498DB; } .example .brick:nth-child(20n + 6) { background: #2980B9; } .example .brick:nth-child(20n + 7) { background: #9B59B6; } .example .brick:nth-child(20n + 8) { background: #8E44AD; } .example .brick:nth-child(20n + 9) { background: #34495E; } .example .brick:nth-child(20n + 10) { background: #2C3E50; } .example .brick:nth-child(20n + 11) { background: #F1C40F; } .example .brick:nth-child(20n + 12) { background: #F39C12; } .example .brick:nth-child(20n + 13) { background: #E67E22; } .example .brick:nth-child(20n + 14) { background: #D35400; } .example .brick:nth-child(20n + 15) { background: #E74C3C; } .example .brick:nth-child(20n + 16) { background: #C0392B; } .example .brick:nth-child(20n + 17) { background: #ECF0F1; } .example .brick:nth-child(20n + 18) { background: #BDC3C7; } .example .brick:nth-child(20n + 19) { background: #95A5A6; } .example .brick:nth-child(20n + 20) { background: #7F8C8D; }
_site/2016/05/22/NSXMLParser.html
balddonkey/balddonkey.github.io
<!DOCTYPE> <html lang="zh-cn" data-scribe-reduced-action-queue="true"> <head> <meta content='parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog' name='title' /> <meta content='parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog' name='og:title' /> <title>parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog</title> <!-- bbbbbbbb LLLLLLLLLLL iiii b::::::b XXXXXXX XXXXXXX L:::::::::L i::::ib::::::b X:::::X X:::::X L:::::::::L iiii b::::::b X:::::X X:::::X LL:::::::LL b:::::b X::::::X X::::::X L:::::L iiiiiii b:::::bbbbbbbbb eeeeeeeeeeee rrrrr rrrrrrrrrXXX:::::X X:::::XXXuuuuuu uuuuuu eeeeeeeeeeee L:::::L i:::::i b::::::::::::::bb ee::::::::::::ee r::::rrr:::::::::r X:::::X X:::::X u::::u u::::u ee::::::::::::ee L:::::L i::::i b::::::::::::::::b e::::::eeeee:::::eer:::::::::::::::::r X:::::X:::::X u::::u u::::u e::::::eeeee:::::ee L:::::L i::::i b:::::bbbbb:::::::be::::::e e:::::err::::::rrrrr::::::r X:::::::::X u::::u u::::u e::::::e e:::::e L:::::L i::::i b:::::b b::::::be:::::::eeeee::::::e r:::::r r:::::r X:::::::::X u::::u u::::u e:::::::eeeee::::::e L:::::L i::::i b:::::b b:::::be:::::::::::::::::e r:::::r rrrrrrr X:::::X:::::X u::::u u::::u e:::::::::::::::::e L:::::L i::::i b:::::b b:::::be::::::eeeeeeeeeee r:::::r X:::::X X:::::X u::::u u::::u e::::::eeeeeeeeeee L:::::L LLLLLL i::::i b:::::b b:::::be:::::::e r:::::r XXX:::::X X:::::XXXu:::::uuuu:::::u e:::::::e LL:::::::LLLLLLLLL:::::Li::::::ib:::::bbbbbb::::::be::::::::e r:::::r X::::::X X::::::Xu:::::::::::::::uue::::::::e L::::::::::::::::::::::Li::::::ib::::::::::::::::b e::::::::eeeeeeee r:::::r X:::::X X:::::X u:::::::::::::::u e::::::::eeeeeeee L::::::::::::::::::::::Li::::::ib:::::::::::::::b ee:::::::::::::e r:::::r X:::::X X:::::X uu::::::::uu:::u ee:::::::::::::e LLLLLLLLLLLLLLLLLLLLLLLLiiiiiiiibbbbbbbbbbbbbbbb eeeeeeeeeeeeee rrrrrrr XXXXXXX XXXXXXX uuuuuuuu uuuu eeeeeeeeeeeeee !--> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title>parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog</title> <meta name="description" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="author" content="/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 ..." property='og:description' /> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog"> <meta name="twitter:description" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="twitter:keywords" content="/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 ..." property='og:description' /> <meta property="og:type" content="article"> <meta property="og:title" content="parser:parseErrorOccurred31#parser:parseErrorOccur - LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog"> <meta property="og:description" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="og:keywords" content="/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 ..." property='og:description' /> <meta name="theme-Jekyll by liberxue" content="#eb5055"> <link rel="icon" type="image/png" href="http://localhost:4000/stylesheets/favicons/favicon.ico" /> <link href="http://localhost:4000/stylesheets/favicons/favicon.ico" rel="shortcut icon" type="image/png"> <link rel="canonical" href="http://localhost:4000/"> <link rel="alternate" type="application/rss+xml" title="Liberxue" href="http://localhost:4000/feed.xml"> <meta charset="UTF-8"> <link rel="manifest" href="/manifest.json"> <link rel="shortcut icon" href="http://localhost:4000/stylesheets/favicons/favicon.ico" type="image/x-icon"> <meta name="keywords" content="/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 ..." property='og:description' /> <meta name="description" content="nothing is more practicla than a good theory" /> <link href="https://cdn.bootcss.com/highlight.js/9.10.0/styles/xcode.min.css" rel="stylesheet"> <link href="http://localhost:4000/stylesheets/style-vlpismine.css" rel="stylesheet"> <meta content='http://localhost:4000/2016/05/22/NSXMLParser.html' property='og:url' /> <meta content="/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 ..." property='og:description' /> <meta content="article" property="og:type" /> <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','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-101222464-1', 'auto'); ga('send', 'pageview'); </script> </head> <body class="" gtools_scp_screen_capture_injected="true"> <header id="header" class="header bg-white"> <div class="navbar-container"> <a href="/?liberxue" title="访问 LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog" class="navbar-logo"> <img src="http://localhost:4000/stylesheets/images/logo-liberxue.png" alt="LiberXue|FullStack|独立开发者|jekyll blog|GitHub blog"> </a> <div class="navbar-menu"> <a href="http://localhost:4000/">首页</a> <a href="http://localhost:4000/book">书籍</a> <a href="http://localhost:4000/road">旅游</a> <a href="http://localhost:4000/archives">归档</a> <a href="http://localhost:4000/tags">标签</a> <a href="http://localhost:4000/about">关于</a> </div> <div class="navbar-search" onclick=""> <span class="icon-search"></span> <form id="cb-search-btn" role="search"> <span class="search-box"> <input type="text" class="input" id="cb-search-content" required="true" placeholder="标题 标签..." maxlength="30" autocomplete="off"> </span> </form> </div> <div class="navbar-mobile-menu" onclick=""> <span class="icon-menu cross"><span class="middle"></span></span> <ul> <li><a href="http://localhost:4000/">首页</a></li> <li><a href="http://localhost:4000/book">书籍</a></li> <li><a href="http://localhost:4000/road">旅游</a></li> <li><a href="http://localhost:4000/archives">归档</a></li> <li><a href="http://localhost:4000/tags">标签</a></li> <li><a href="http://localhost:4000/about">关于</a></li> </ul> </div> </div> </header> <div class="post-header-thumb bg-white}"> <div class="post-header-thumb-op"></div> <div class="post-header-thumb"> <div class="post-header-thumb-container"> <h1 class="post-title" itemprop="name headline"> parser:parseErrorOccurred31#parser:parseErrorOccur</h1> <div class="post-data"> <time datetime="2016-05-22 00:00:00" itemprop="datePublished">发布时间:2016-05-22 00:00:00</time> <a href="/tags#Mac" title="访问 Mac" data-hover="博客分类: Mac">博客分类: Mac</a> <a href="#read"> 阅读次数: comments</a> </div> <div class="post-tags"> <a href="/tags#swift" title="访问swift" data-hover="swift"> swift <span>(1)</span> </a> <a href="/tags#ios" title="访问ios" data-hover="ios"> ios <span>(1)</span> </a> <a href="/tags#NSXMLParser" title="访问NSXMLParser" data-hover="NSXMLParser"> NSXMLParser <span>(1)</span> </a> <a href="/tags#错误编码是31" title="访问错误编码是31" data-hover="错误编码是31"> 错误编码是31 <span>(1)</span> </a> </div> </div> </div></div> <article class="main-content post-page" itemscope itemtype="http://schema.org/Article"> <div class="post-header"> <h1 class="post-title" itemprop="name headline"> parser:parseErrorOccurred31#parser:parseErrorOccur</h1> <div class="post-data"> <time datetime="2016-05-22 00:00:00" itemprop="datePublished">2016-05-22 00:00:00</time> </div> </div> <div id="post-content" class="post-content" itemprop="articleBody"> <p class="post-tags"> <a href="/tags#swift" title="访问swift" data-hover="swift"> swift <span>(1)</span> </a> <a href="/tags#ios" title="访问ios" data-hover="ios"> ios <span>(1)</span> </a> <a href="/tags#NSXMLParser" title="访问NSXMLParser" data-hover="NSXMLParser"> NSXMLParser <span>(1)</span> </a> <a href="/tags#错误编码是31" title="访问错误编码是31" data-hover="错误编码是31"> 错误编码是31 <span>(1)</span> </a> </p> <div class="highlighter-rouge"><pre class="highlight"><code>/取XML文件的前40个字节 NSData * xmldata = [self.ItemData subdataWithRange:NSMakeRange(0,40)]; //以UTF-8编码进行解码 NSString *xmlstr = [[NSString alloc] initWithData:xmldata encoding:NSUTF8StringEncoding]; //NSLog(@"XML HEADER: %@", xmlstr); //搜索GB2312,如果找到,就对整个文件进行编码转换 if ([xmlstr rangeOfString:@"\"GB2312\"" options:NSCaseInsensitiveSearch].location != NSNotFound) { // NSLog(@"GB2312 encoding founded."); NSStringEncoding enc = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000); NSString *utf8str = [[[NSString alloc] initWithData:self.ItemData encoding:enc] autorelease]; utf8str = [utf8str stringByReplacingOccurrencesOfString:@"\"GB2312\"" withString:@"\"utf-8\"" options:NSCaseInsensitiveSearch range:NSMakeRange(0,40)]; NSData *newData = [utf8str dataUsingEncoding:NSUTF8StringEncoding]; self.ItemData = newData; } } </code></pre> </div> <hr /> <p>GB2312或GBK编码的网页,要先用gb编码解码,然后替换其中的gb字符串,再用utf8编码成data给parser就能解析中文网页了。</p> <p>NSXMLParser 将停止解析在遇到特殊字符后</p> <p>我读一个 XML 文件从谷歌天气 api 和解析它使用 NSXMLParser。城市问题是巴黎。这是我得到的简短 xml 输出</p> <div class="highlighter-rouge"><pre class="highlight"><code><span class="cp">&lt;?xml version="1.0"?&gt;</span> <span class="nt">&lt;xml_api_reply</span> <span class="na">version=</span><span class="s">"1"</span><span class="nt">&gt;</span> <span class="nt">&lt;weather</span> <span class="na">module_id=</span><span class="s">"0"</span> <span class="na">tab_id=</span><span class="s">"0"</span> <span class="na">mobile_row=</span><span class="s">"0"</span> <span class="na">mobile_zipped=</span><span class="s">"1"</span> <span class="na">row=</span><span class="s">"0"</span> <span class="na">section=</span><span class="s">"0"</span> <span class="nt">&gt;&lt;forecast_information&gt;</span> <span class="nt">&lt;city</span> <span class="na">data=</span><span class="s">"Paris, Île-de-France"</span><span class="nt">/&gt;</span> <span class="nt">&lt;postal_code</span> <span class="na">data=</span><span class="s">"Paris"</span><span class="nt">/&gt;</span> <span class="nt">&lt;latitude_e6</span> <span class="na">data=</span><span class="s">""</span><span class="nt">/&gt;</span> <span class="nt">&lt;longitude_e6</span> <span class="na">data=</span><span class="s">""</span><span class="nt">/&gt;</span> ... ... } </code></pre> </div> <p>现在我用来削去此 xml 的代码是</p> <div class="highlighter-rouge"><pre class="highlight"><code>NSString *address = @"http://www.google.com/ig/api?weather=Paris"; NSURL *URL = [NSURL URLWithString:address]; NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:URL]; [parser setDelegate:self]; [parser parse]; ... - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict { NSLog(@"XML Parser 1 ... elementName ... %@", elementName); } </code></pre> </div> <p>这是我获得上述 xml 的输出 ***</p> <div class="highlighter-rouge"><pre class="highlight"><code>XML Parser 1 ... elementName ... xml_api_reply XML Parser 1 ... elementName ... weather XML Parser 1 ... elementName ... forecast_information </code></pre> </div> <p>问题是它分析的所有标记,直到它到达”城市数据”因为巴黎 î l e de 法国,然后它就会停止的名称中有非 ascii 字符。它不会处理之后像 postal_code 的标签。纬度、 经度等。 所以我的问题是,有什么办法可以从返回的 URL XML 字符串中删除所有非 ascii 字符吗? 解决方法 1:</p> <p>还行。我已经解决了此问题。这是怎么弄来的工作。 我首先做的就是用特殊字符的 URL 的 XML。然后我去掉从 XML 字符串的所有特殊字符。然后我将字符串转换为 NSdata 然后把 nsdata 对象传递给我的 NSXMLParser。因为它有没有更多特殊字符 NSXMLParser 是快乐。 这里是为任何人在将来可能会遇到的代码。大感谢您对这篇文章作出了贡献的人 !</p> <div class="highlighter-rouge"><pre class="highlight"><code>SString *address = @"http://www.google.com/ig/api?weather=Paris"; NSURL *URL = [NSURL URLWithString:address]; NSError *error; NSString *XML = [NSString stringWithContentsOfURL:URL encoding:NSASCIIStringEncoding error:&amp;error]; //REMOVE ALL NON-ASCII CHARACTERS NSMutableString *asciiCharacters = [NSMutableString string]; for (NSInteger i = 32; i &lt; 127; i++) { [asciiCharacters appendFormat:@"%c", i]; } NSCharacterSet *nonAsciiCharacterSet = [[NSCharacterSet characterSetWithCharactersInString:asciiCharacters] invertedSet]; XML = [[XML componentsSeparatedByCharactersInSet:nonAsciiCharacterSet] componentsJoinedByString:@""]; NSData *data = [XML dataUsingEncoding:NSUTF8StringEncoding]; NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data]; [parser setDelegate:self]; [parser parse]; </code></pre> </div> <p class="post-info"> 本文由 <a href="/">liberxue</a> 创作,采用 <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="external nofollow">知识共享署名4.0</a> 国际许可协议进行许可<br>本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名<br>最后编辑时间为:2016-05-22 00:00:00</p> </div> </article> <!-- <div class="related-post-lists"> <div class="post-lists"> <div class="post-lists-body"> <div class="post-list-item"> <div class="post-list-item-container"> <div class="item-label"> <div class="item-title"><a href="induction.html">归纳的随想</a></div> <div class="item-meta clearfix"> <div class="item-meta-ico bg-ico-image" style="background: url('../usr/themes/pinghsu/images/bg-ico.png') no-repeat;background-size: 40px auto;"></div> <div class="item-meta-cat"><a href="../category/thoughts/index.html">Thoughts</a></div> </div> </div> </div> </div> </div> </div> </div> --> <footer class="footer bg-white"> <div class="footer-social"> <div class="footer-container clearfix"> <div class="social-list"> <a class="social segmentfault" target="blank" href="https://segmentfault.com/u/liberxue" title="访问 LiberXue_Twitter" data-hover="Segmentfault">Segmentfault</a> <a class="social github" target="blank" href="https://github.com/liberxue" title="访问 LiberXue_Twitter" data-hover="GitHub">GitHub</a> <a class="social twitter" target="blank" href="http://twitter.com/liberxue" title="访问 LiberXue_Twitter" data-hover="Twitter">Twitter</a> <a class="social stackoverflow" target="blank" href="https://stackoverflow.com/users/6902190/liberxue" title="访问 LiberXue_stackoverflow" data-hover="StackOverflow">StackOverflow</a> <a class="social oschina" target="blank" href="https://my.oschina.net/bolanzw" title="访问 LiberXue_Oschina" data-hover="Oschina">Oschina</a> <a class="social rss" target="blank" href="/feed.xml"title="访问 LiberXue_RSS" data-hover="RSS">RSS</a> </div> </div> </div> <div class="footer-meta"> <div class="footer-container"> <div class="meta-item meta-copyright"> <div class="meta-copyright-info"> <a href="/" class="info-logo"> <img src="http://localhost:4000/stylesheets/images/logo-liberxue.png" title="访问 LiberXue_blog" data-hover="LiberXue_blog" alt="LiberXue_blog" /> </a> <div class="info-text"> <p>Theme is <a href="https://github.com/liberxue" title="访问 Jekyll liberxue主题" data-hover="Jekyll liberxue"target="_blank">Jekyll liberxue</a> by <a href="http://www.liberxue.com/about" target="_blank">liberxue</a></p> <p>Powered by <a href="http://localhost:4000/tags/#Jekyll" title="Jekyll" data-hover="Jekyll" target="_blank" rel="nofollow">Jekyll</a></p> <p>&copy; 2017 <a href="/feed.xml" title="访问 liberxue blog RSS" data-hover="liberxue blog RSS">liberxue blog RSS</a></p> <p>总计文章:篇</p> </div> </div> </div> <div class="meta-item meta-posts"> <h3 class="meta-title">置顶文章</h3> <!--置顶--> <li><a href="/2017/07/28/jserrorlog.html" title="访问 c#交互JavaScript开发建立捕获前端错误日志" data-hover="c#交互JavaScript开发建立捕获前端错误日志">c#交互JavaScript开发建立捕获前端错误日志</a></li> <li><a href="/2017/07/23/vscodepython.html" title="访问 两分钟vscode在Mac安装Python环境" data-hover="两分钟vscode在Mac安装Python环境">两分钟vscode在Mac安装Python环境</a></li> <li><a href="/2017/07/17/listhashlist.html" title="访问 Linux双向链表和hash链表单向链表" data-hover="Linux双向链表和hash链表单向链表">Linux双向链表和hash链表单向链表</a></li> <li><a href="/2017/07/17/gitignore.html" title="访问 Git忽略规则及.gitignore规则正确姿势" data-hover="Git忽略规则及.gitignore规则正确姿势">Git忽略规则及.gitignore规则正确姿势</a></li> <li><a href="/2017/07/13/wxread.html" title="访问 微信读书协议分析|和搜索查询数据接口" data-hover="微信读书协议分析|和搜索查询数据接口">微信读书协议分析|和搜索查询数据接口</a></li> <!--置顶--> </div> <div class="meta-item meta-comments"> <h3 class="meta-title">最新文章</h3> <li><a href="/2017/07/04/meilideshijie.html" title="访问 《美丽新世界》之幸福和自由思考" data-hover="《美丽新世界》之幸福和自由思考">《美丽新世界》之幸福和自由思考</a></li> <li><a href="/2017/07/04/waerdenghu.html" title="访问 瓦尔登湖liberxue一些所感所想和笔记书签" data-hover="瓦尔登湖liberxue一些所感所想和笔记书签">瓦尔登湖liberxue一些所感所想和笔记书签</a></li> <li><a href="/2017/06/28/xuanhuanzuole.html" title="访问 毛姆《寻欢作乐》(百读文库)liberxue一些所感所想和笔记书签" data-hover="毛姆《寻欢作乐》(百读文库)liberxue一些所感所想和笔记书签">毛姆《寻欢作乐》(百读文库)liberxue一些所感所想和笔记书签</a></li> <li><a href="/2017/06/27/sikaobook.html" title="访问 思考快与慢" data-hover="思考快与慢">思考快与慢</a></li> </div> </div> </div> </footer> <script src="//cdn.bootcss.com/jquery/2.2.2/jquery.min.js"></script> <script src="//cdn.bootcss.com/bootstrap-3-typeahead/4.0.2/bootstrap3-typeahead.js"></script> <script src="/search/js/cb-search.js"></script> <script> $(function () { setTimeout(function () { $('code').removeClass('hljs'); $('code').removeClass('language'); }, 90); }); (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> <!--liberxueconnnet-menu--> <div id="directory-content" class="directory-content"> <div id="directory"></div> </div> <!--liberxueconnnet-menu--> <script> var postDirectoryBuild = function() { var postChildren = function children(childNodes, reg) { var result = [], isReg = typeof reg === 'object', isStr = typeof reg === 'string', node, i, len; for (i = 0, len = childNodes.length; i < len; i++) { node = childNodes[i]; if ((node.nodeType === 1 || node.nodeType === 9) && (!reg || isReg && reg.test(node.tagName.toLowerCase()) || isStr && node.tagName.toLowerCase() === reg)) { result.push(node); } } return result; }, createPostDirectory = function(article, directory, isDirNum) { var contentArr = [], titleId = [], levelArr, root, level, currentList, list, li, link, i, len; levelArr = (function(article, contentArr, titleId) { var titleElem = postChildren(article.childNodes, /^h\d$/), levelArr = [], lastNum = 1, lastRevNum = 1, count = 0, guid = 1, id = 'directory' + (Math.random() + '').replace(/\D/, ''), lastRevNum, num, elem; while (titleElem.length) { elem = titleElem.shift(); contentArr.push(elem.innerHTML); num = +elem.tagName.match(/\d/)[0]; if (num > lastNum) { levelArr.push(1); lastRevNum += 1; } else if (num === lastRevNum || num > lastRevNum && num <= lastNum) { levelArr.push(0); lastRevNum = lastRevNum; } else if (num < lastRevNum) { levelArr.push(num - lastRevNum); lastRevNum = num; } count += levelArr[levelArr.length - 1]; lastNum = num; elem.id = elem.id || (id + guid++); titleId.push(elem.id); } if (count !== 0 && levelArr[0] === 1) levelArr[0] = 0; return levelArr; })(article, contentArr, titleId); currentList = root = document.createElement('ul'); dirNum = [0]; for (i = 0, len = levelArr.length; i < len; i++) { level = levelArr[i]; if (level === 1) { list = document.createElement('ul'); if (!currentList.lastElementChild) { currentList.appendChild(document.createElement('li')); } currentList.lastElementChild.appendChild(list); currentList = list; dirNum.push(0); } else if (level < 0) { level *= 2; while (level++) { if (level % 2) dirNum.pop(); currentList = currentList.parentNode; } } dirNum[dirNum.length - 1]++; li = document.createElement('li'); link = document.createElement('a'); link.href = '#' + titleId[i]; link.title = '访问' + titleId[i]; link.title = '访问' + titleId[i]; link.innerHTML = !isDirNum ? contentArr[i] : dirNum.join('.') + ' ' + contentArr[i] ; li.appendChild(link); currentList.appendChild(li); } directory.appendChild(root); }; createPostDirectory(document.getElementById('post-content'),document.getElementById('directory'), true); }; postDirectoryBuild(); </script> <script src="//cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script> <script >lang=hljs.initHighlightingOnLoad();</script> </body> </html>
man/git-coauthor.html
GuillaumeSeren/git-extras
<!DOCTYPE html> <html> <head> <meta http-equiv='content-type' value='text/html;charset=utf8'> <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'> <title>git-coauthor(1) - Add a co-author to the last commit</title> <style type='text/css' media='all'> /* style: man */ body#manpage {margin:0} .mp {max-width:100ex;padding:0 9ex 1ex 4ex} .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0} .mp h2 {margin:10px 0 0 0} .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex} .mp h3 {margin:0 0 0 4ex} .mp dt {margin:0;clear:left} .mp dt.flush {float:left;width:8ex} .mp dd {margin:0 0 0 9ex} .mp h1,.mp h2,.mp h3,.mp h4 {clear:left} .mp pre {margin-bottom:20px} .mp pre+h2,.mp pre+h3 {margin-top:22px} .mp h2+pre,.mp h3+pre {margin-top:5px} .mp img {display:block;margin:auto} .mp h1.man-title {display:none} .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143} .mp h2 {font-size:16px;line-height:1.25} .mp h1 {font-size:20px;line-height:2} .mp {text-align:justify;background:#fff} .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211} .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201} .mp u {text-decoration:underline} .mp code,.mp strong,.mp b {font-weight:bold;color:#131211} .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none} .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff} .mp b.man-ref {font-weight:normal;color:#434241} .mp pre {padding:0 4ex} .mp pre code {font-weight:normal;color:#434241} .mp h2+pre,h3+pre {padding-left:0} ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px} ol.man-decor {width:100%} ol.man-decor li.tl {text-align:left} ol.man-decor li.tc {text-align:center;letter-spacing:4px} ol.man-decor li.tr {text-align:right;float:right} </style> </head> <!-- The following styles are deprecated and will be removed at some point: div#man, div#man ol.man, div#man ol.head, div#man ol.man. The .man-page, .man-decor, .man-head, .man-foot, .man-title, and .man-navigation should be used instead. --> <body id='manpage'> <div class='mp' id='man'> <div class='man-navigation' style='display:none'> <a href="#NAME">NAME</a> <a href="#SYNOPSIS">SYNOPSIS</a> <a href="#DESCRIPTION">DESCRIPTION</a> <a href="#OPTIONS">OPTIONS</a> <a href="#EXAMPLES">EXAMPLES</a> <a href="#AUTHOR">AUTHOR</a> <a href="#REPORTING-BUGS">REPORTING BUGS</a> <a href="#SEE-ALSO">SEE ALSO</a> </div> <ol class='man-decor man-head man head'> <li class='tl'>git-coauthor(1)</li> <li class='tc'>Git Extras</li> <li class='tr'>git-coauthor(1)</li> </ol> <h2 id="NAME">NAME</h2> <p class="man-name"> <code>git-coauthor</code> - <span class="man-whatis">Add a co-author to the last commit</span> </p> <h2 id="SYNOPSIS">SYNOPSIS</h2> <p><code>git-coauthor</code> &lt;co-author&gt; &lt;co-author-email&gt;</p> <h2 id="DESCRIPTION">DESCRIPTION</h2> <p> Add a co-author to the last commit</p> <h2 id="OPTIONS">OPTIONS</h2> <p> &lt;co-author&gt;</p> <p> The username of the co-author you want to add.</p> <p> &lt;co-author-email&gt;</p> <p> The email address of the author you want to add.</p> <h2 id="EXAMPLES">EXAMPLES</h2> <pre><code>$ git coauthor user user@email.com </code></pre> <h2 id="AUTHOR">AUTHOR</h2> <p>Written by Jacob Herrington <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#106;&#97;&#99;&#x6f;&#98;&#104;&#x65;&#x72;&#114;&#105;&#110;&#x67;&#116;&#x6f;&#x6e;&#x64;&#x65;&#x76;&#x65;&#x6c;&#111;&#112;&#x65;&#x72;&#64;&#103;&#109;&#x61;&#105;&#108;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#97;&#99;&#111;&#98;&#104;&#101;&#114;&#114;&#105;&#x6e;&#x67;&#x74;&#111;&#110;&#100;&#x65;&#118;&#101;&#108;&#111;&#x70;&#101;&#114;&#64;&#103;&#109;&#x61;&#105;&#x6c;&#x2e;&#99;&#x6f;&#x6d;</a></p> <h2 id="REPORTING-BUGS">REPORTING BUGS</h2> <p>&lt;<a href="https://github.com/tj/git-extras/issues" data-bare-link="true">https://github.com/tj/git-extras/issues</a>&gt;</p> <h2 id="SEE-ALSO">SEE ALSO</h2> <p>&lt;<a href="https://github.com/tj/git-extras" data-bare-link="true">https://github.com/tj/git-extras</a>&gt;</p> <ol class='man-decor man-foot man foot'> <li class='tl'></li> <li class='tc'>August 2019</li> <li class='tr'>git-coauthor(1)</li> </ol> </div> </body> </html>
war/resources/help/_cvs/cvspass.html
fujibee/hudson
<!-- TODO: The Jelly tags do not work in this context and are left here just for reference, until a solution is found --> <j:jelly xmlns:j="jelly:core"> <j:new var="h" className="hudson.Functions" /><!-- instead of JSP functions --> <div> CVS stores the login and password information in a file called ".cvspass". Normally CVS loads this file in your home directory, but if you want to have Hudson load it from a different place, specify the full path to the file. Otherwise leave it blank. <br/> <j:if test="${h.isWindows()}"> If you are using CVSNT <a href="scm/CVSSCM/version">(am I?)</a>, then this setting is likely to be ignored. See <a href="http://ant.apache.org/manual/CoreTasks/cvspass.html"> this note</a> for more about why. In this case, you need to run "cvs login" command manually to enter password. If Hudson runs under the same user as you do, then this would be straight-forward. However, if Hudson runs as a service, you'd need to first launch <tt>CMD.exe</tt> as the SYSTEM user, then you need to run cvs command from there. See <a href="http://blogs.msdn.com/adioltean/articles/271063.aspx">this document</a> for how to do this. <br/> </j:if> <!-- TODO: this doesn't work You can also <a href="scm/CVSSCM/enterPassword">interactively enter password into the cvs password list</a>. <j:if test="${h.isWindows()}">This works even with CVSNT.</j:if> --> </div> </j:jelly>
api/2.1/Thelia/Controller/Admin/TemplateController.html
sitecrafting/thelia.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Thelia\Controller\Admin\TemplateController | 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_Controller_Admin_TemplateController" 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/Controller.html">Controller</a></li> <li><a href="../../../Thelia/Controller/Admin.html">Admin</a></li> <li>TemplateController</li> </ol> </div> <div id="page-content"> <div class="page-header"> <h1>TemplateController</h1> </div> <p> class <strong>TemplateController</strong> extends <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> </p> <div class="description"> <p>Manages product templates</p> </div> <h2>Constants</h2> <table class="table table-condensed"> <tr> <td>EMPTY_FORM_NAME</td> <td class="last"> <p><em></em></p> <p></p> </td> </tr> <tr> <td>TEMPLATE_404</td> <td class="last"> <p><em></em></p> <p></p> </td> </tr> </table> <h2>Methods</h2> <div class="container-fluid underlined"> <div class="row"> <div class="col-md-2 type"> <abbr title="Symfony\Component\EventDispatcher\EventDispatcher">EventDispatcher</abbr> </div> <div class="col-md-8 type"> <a href="#method_getDispatcher">getDispatcher</a>() <p>Return the event dispatcher,</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_getDispatcher"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/Translation/Translator.html"><abbr title="Thelia\Core\Translation\Translator">Translator</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_getTranslator">getTranslator</a>() <p>return the Translator</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_getTranslator"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Mailer/MailerFactory.html"><abbr title="Thelia\Mailer\MailerFactory">MailerFactory</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_getMailer">getMailer</a>() <p>return an instance of \Swift_Mailer with good Transporter configured.</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_getMailer"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Form/BaseForm.html"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_createForm">createForm</a>($name, $type = &#039;form&#039;, array $data = array(), array $options = array()) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_createForm"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <abbr title="Symfony\Component\DependencyInjection\ContainerInterface">ContainerInterface</abbr> </div> <div class="col-md-8 type"> <a href="#method_getContainer">getContainer</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_getContainer"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_redirect">redirect</a>( string $url, int $status = 302, array $cookies = array()) <p>redirect request to the specified url</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_redirect"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_redirectToRoute">redirectToRoute</a>( string $routeId, array $urlParameters = array(), array $routeParameters = array()) <p>Redirect to à route ID related URL</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/BaseController.html#method_redirectToRoute"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_adminLogAppend">adminLogAppend</a>( string $resource, string $action, string $message) <p>Helper to append a message to the admin log.</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/BaseAdminController.html#method_adminLogAppend"><abbr title="Thelia\Controller\Admin\BaseAdminController">BaseAdminController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_processTemplateAction">processTemplateAction</a>( string $template) <p>This method process the rendering of view called from an admin page</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/BaseAdminController.html#method_processTemplateAction"><abbr title="Thelia\Controller\Admin\BaseAdminController">BaseAdminController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___construct">__construct</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"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_defaultAction">defaultAction</a>() <p>The default action is displaying the list.</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_defaultAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_createAction">createAction</a>() <p>Create a new object</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_createAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_updateAction">updateAction</a>() <p>Load a object for modification, and display the edit template.</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_processUpdateAction">processUpdateAction</a>() <p>Save changes on a modified object, and either go back to the object list, or stay on the edition page.</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_processUpdateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_updatePositionAction">updatePositionAction</a>() <p>Update object position (only for objects whichsupport that)</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updatePositionAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setToggleVisibilityAction">setToggleVisibilityAction</a>() <p>Online status toggle (only for object which support it)</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_setToggleVisibilityAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_deleteAction">deleteAction</a>() <p>Delete an object</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_deleteAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getAjaxFeaturesAction">getAjaxFeaturesAction</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_getAjaxAttributesAction">getAjaxAttributesAction</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_addAttributeAction">addAttributeAction</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_deleteAttributeAction">deleteAttributeAction</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_updateAttributePositionAction">updateAttributePositionAction</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_addFeatureAction">addFeatureAction</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_deleteFeatureAction">deleteFeatureAction</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_updateFeaturePositionAction">updateFeaturePositionAction</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> </div> <h2>Details</h2> <div id="method-details"> <div class="method-item"> <h3 id="method_getDispatcher"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_getDispatcher"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 125</div> <code> <abbr title="Symfony\Component\EventDispatcher\EventDispatcher">EventDispatcher</abbr> <strong>getDispatcher</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Return the event dispatcher,</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Symfony\Component\EventDispatcher\EventDispatcher">EventDispatcher</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getTranslator"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_getTranslator"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 135</div> <code> <a href="../../../Thelia/Core/Translation/Translator.html"><abbr title="Thelia\Core\Translation\Translator">Translator</abbr></a> <strong>getTranslator</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>return the Translator</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/Translation/Translator.html"><abbr title="Thelia\Core\Translation\Translator">Translator</abbr></a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getMailer"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_getMailer"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 531</div> <code> <a href="../../../Thelia/Mailer/MailerFactory.html"><abbr title="Thelia\Mailer\MailerFactory">MailerFactory</abbr></a> <strong>getMailer</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>return an instance of \Swift_Mailer with good Transporter configured.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Mailer/MailerFactory.html"><abbr title="Thelia\Mailer\MailerFactory">MailerFactory</abbr></a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_createForm"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_createForm"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 555</div> <code> <a href="../../../Thelia/Form/BaseForm.html"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a> <strong>createForm</strong>($name, $type = &#039;form&#039;, array $data = array(), array $options = array())</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$name</td> <td></td> </tr> <tr> <td></td> <td>$type</td> <td></td> </tr> <tr> <td> array</td> <td>$data</td> <td></td> </tr> <tr> <td> array</td> <td>$options</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Form/BaseForm.html"><abbr title="Thelia\Form\BaseForm">BaseForm</abbr></a></td> <td>This method builds a thelia form with its name</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getContainer"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_getContainer"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 577</div> <code> <abbr title="Symfony\Component\DependencyInjection\ContainerInterface">ContainerInterface</abbr> <strong>getContainer</strong>()</code> </h3> <div class="details"> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Symfony\Component\DependencyInjection\ContainerInterface">ContainerInterface</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_redirect"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_redirect"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 623</div> <code> <strong>redirect</strong>( string $url, int $status = 302, array $cookies = array())</code> </h3> <div class="details"> <div class="method-description"> <p>redirect request to the specified url</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$url</td> <td></td> </tr> <tr> <td> int</td> <td>$status</td> <td>http status. Must be a 30x status</td> </tr> <tr> <td> array</td> <td>$cookies</td> <td></td> </tr> </table> <h4>See also</h4> <table class="table table-condensed"> <tr> <td>generateRedirect</td> <td>instead of this method</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_redirectToRoute"> <div class="location">in <a href="../../../Thelia/Controller/BaseController.html#method_redirectToRoute"><abbr title="Thelia\Controller\BaseController">BaseController</abbr></a> at line 644</div> <code> <strong>redirectToRoute</strong>( string $routeId, array $urlParameters = array(), array $routeParameters = array())</code> </h3> <div class="details"> <div class="method-description"> <p>Redirect to à route ID related URL</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$routeId</td> <td>the route ID, as found in Config/Resources/routing/admin.xml</td> </tr> <tr> <td> array</td> <td>$urlParameters</td> <td>the URL parameters, as a var/value pair array</td> </tr> <tr> <td> array</td> <td>$routeParameters</td> <td></td> </tr> </table> <h4>See also</h4> <table class="table table-condensed"> <tr> <td>generateRedirectFromRoute</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_adminLogAppend"> <div class="location">in <a href="../../../Thelia/Controller/Admin/BaseAdminController.html#method_adminLogAppend"><abbr title="Thelia\Controller\Admin\BaseAdminController">BaseAdminController</abbr></a> at line 51</div> <code> <strong>adminLogAppend</strong>( string $resource, string $action, string $message)</code> </h3> <div class="details"> <div class="method-description"> <p>Helper to append a message to the admin log.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$resource</td> <td></td> </tr> <tr> <td> string</td> <td>$action</td> <td></td> </tr> <tr> <td> string</td> <td>$message</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_processTemplateAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/BaseAdminController.html#method_processTemplateAction"><abbr title="Thelia\Controller\Admin\BaseAdminController">BaseAdminController</abbr></a> at line 62</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>processTemplateAction</strong>( string $template)</code> </h3> <div class="details"> <div class="method-description"> <p>This method process the rendering of view called from an admin page</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$template</td> <td>the template name</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response which contains the rendered view</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___construct"> <div class="location">at line 38</div> <code> <strong>__construct</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_defaultAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_defaultAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 272</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>defaultAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>The default action is displaying the list.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_createAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_createAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 287</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>createAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Create a new object</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_updateAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 364</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>updateAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Load a object for modification, and display the edit template.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_processUpdateAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_processUpdateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 389</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>processUpdateAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Save changes on a modified object, and either go back to the object list, or stay on the edition page.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_updatePositionAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updatePositionAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 468</div> <code> <strong>updatePositionAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Update object position (only for objects whichsupport that)</p> </div> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setToggleVisibilityAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_setToggleVisibilityAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 543</div> <code> <strong>setToggleVisibilityAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Online status toggle (only for object which support it)</p> </div> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_deleteAction"> <div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_deleteAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 567</div> <code> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a> <strong>deleteAction</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Delete an object</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Core/HttpFoundation/Response.html"><abbr title="Thelia\Core\HttpFoundation\Response">Response</abbr></a></td> <td>the response</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getAjaxFeaturesAction"> <div class="location">at line 185</div> <code> <strong>getAjaxFeaturesAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_getAjaxAttributesAction"> <div class="location">at line 193</div> <code> <strong>getAjaxAttributesAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_addAttributeAction"> <div class="location">at line 201</div> <code> <strong>addAttributeAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_deleteAttributeAction"> <div class="location">at line 227</div> <code> <strong>deleteAttributeAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_updateAttributePositionAction"> <div class="location">at line 249</div> <code> <strong>updateAttributePositionAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_addFeatureAction"> <div class="location">at line 264</div> <code> <strong>addFeatureAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_deleteFeatureAction"> <div class="location">at line 290</div> <code> <strong>deleteFeatureAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_updateFeaturePositionAction"> <div class="location">at line 312</div> <code> <strong>updateFeaturePositionAction</strong>()</code> </h3> <div class="details"> <div class="tags"> </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>
accounting/templates/accounting/books/bill_list.html
jjpsos/buddy-books
{% extends "accounting/layout.html" %} {% load currency_filters %} {% block content %} <h1 class="page-header">Bills <small>which belong to you</small></h1> {% include "books/_generics/sale_list.html" with sales=bills detailed=True %} <a href="{% url 'books:bill-create' %}" class="btn btn-primary btn-lg" role="button"> Add a bill </a> {% endblock content %}
examples/example-optimizing-dataview.html
shelsonjava/sparkgrid
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>SlickGrid example: Optimizing DataView</title> <link rel="stylesheet" href="../css/slick.grid.css" type="text/css"/> <link rel="stylesheet" href="../css/smoothness/jquery-ui-1.8.16.custom.css" type="text/css"/> <link rel="stylesheet" href="../controls/slick.pager.css" type="text/css"/> <link rel="stylesheet" href="examples.css" type="text/css"/> <style> .cell-title { font-weight: bold; } .cell-effort-driven { text-align: center; } .cell-selection { border-right-color: silver; border-right-style: solid; background: #f5f5f5; color: gray; text-align: right; font-size: 10px; } </style> </head> <body> <div style="position:relative"> <div style="width:600px;"> <div class="grid-header" style="width:100%"> <label>SlickGrid</label> </div> <div id="myGrid" style="width:100%;height:500px;"></div> <div id="pager" style="width:100%;height:20px;"></div> </div> <div class="options-panel"> <b>Search:</b> <hr/> <div style="padding:6px;"> <label style="width:200px;float:left">Show tasks with % at least: </label> <div style="padding:2px;"> <div style="width:100px;display:inline-block;" id="pcSlider"></div> </div> </div> <br/> <p> This page demonstrates various techniques for optimizing DataView performance for large client-side datasets. This page displays an interactive grid with 500'000 rows with real-time filtering.<br/> This is achieved by: <ul> <li>Inlining filter function to cut down on the cost of function calls.</li> <li>Providing hints to indicate whether a filtering operation will result in narrowing or expanding scope or whether the scope is unchanged. </li> <li>Providing a range of rows for which onRowsChanged even should be fired.</li> </ul> </p> <h2>View Source:</h2> <ul> <li><A href="https://github.com/mleibman/SlickGrid/blob/gh-pages/examples/example-optimizing-dataview.html" target="_sourcewindow"> View the source for this example on Github</a></li> </ul> </div> </div> <script src="../lib/jquery-1.7.min.js"></script> <script src="../lib/jquery-ui-1.8.16.custom.min.js"></script> <script src="../lib/jquery.event.drag-2.2.js"></script> <script src="../slick.core.js"></script> <script src="../src/slick.formatters.js"></script> <script src="../src/slick.grid.js"></script> <script src="../src/slick.dataview.js"></script> <script src="../controls/slick.pager.js"></script> <script> var dataView; var grid; var data = []; var columns = [ {id: "sel", name: "#", field: "num", behavior: "select", cssClass: "cell-selection", width: 40, resizable: false, selectable: false }, {id: "title", name: "Title", field: "title", width: 120, minWidth: 120, cssClass: "cell-title"}, {id: "duration", name: "Duration", field: "duration"}, {id: "%", name: "% Complete", field: "percentComplete", width: 80, resizable: false, formatter: Slick.Formatters.PercentCompleteBar}, {id: "start", name: "Start", field: "start", minWidth: 60}, {id: "finish", name: "Finish", field: "finish", minWidth: 60}, {id: "effort-driven", name: "Effort Driven", width: 80, minWidth: 20, maxWidth: 80, cssClass: "cell-effort-driven", field: "effortDriven", formatter: Slick.Formatters.Checkmark} ]; var options = { editable: false, enableAddRow: false, enableCellNavigation: true }; var percentCompleteThreshold = 0; var prevPercentCompleteThreshold = 0; var h_runfilters = null; function myFilter(item, args) { return item["percentComplete"] >= args; } function DataItem(i) { this.num = i; this.id = "id_" + i; this.percentComplete = Math.round(Math.random() * 100); this.effortDriven = (i % 5 == 0); this.start = "01/01/2009"; this.finish = "01/05/2009"; this.title = "Task " + i; this.duration = "5 days"; } $(function () { // prepare the data for (var i = 0; i < 500000; i++) { data[i] = new DataItem(i); } dataView = new Slick.Data.DataView({ inlineFilters: true }); grid = new Slick.Grid("#myGrid", dataView, columns, options); var pager = new Slick.Controls.Pager(dataView, grid, $("#pager")); // wire up model events to drive the grid dataView.onRowCountChanged.subscribe(function (e, args) { grid.updateRowCount(); grid.render(); }); dataView.onRowsChanged.subscribe(function (e, args) { grid.invalidateRows(args.rows); grid.render(); }); // wire up the slider to apply the filter to the model $("#pcSlider").slider({ "range": "min", "slide": function (event, ui) { if (percentCompleteThreshold != ui.value) { window.clearTimeout(h_runfilters); h_runfilters = window.setTimeout(filterAndUpdate, 10); percentCompleteThreshold = ui.value; } } }); function filterAndUpdate() { var isNarrowing = percentCompleteThreshold > prevPercentCompleteThreshold; var isExpanding = percentCompleteThreshold < prevPercentCompleteThreshold; var renderedRange = grid.getRenderedRange(); dataView.setFilterArgs(percentCompleteThreshold); dataView.setRefreshHints({ ignoreDiffsBefore: renderedRange.top, ignoreDiffsAfter: renderedRange.bottom + 1, isFilterNarrowing: isNarrowing, isFilterExpanding: isExpanding }); dataView.invalidate(); prevPercentCompleteThreshold = percentCompleteThreshold; } // initialize the model after all the events have been hooked up dataView.beginUpdate(); dataView.setItems(data); dataView.setFilter(myFilter); dataView.setFilterArgs(0); dataView.endUpdate(); }) </script> </body> </html>
lib/xmlbeans-2.6.0/docs/reference/stylesheet.css
xiwan/xlsEditor
/* Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Javadoc style sheet */ /* Define colors, fonts and other style attributes here to override the defaults */ /* Page background color */ body { font-family: Verdana, Arial, Helvetica, sans-serif; background-color: #FFFFFF } body { /* padding: 0px 0px 0px 15px; */ background: #ffffff; color: #00000; font-size: 80%; } /* Table colors */ .TableHeadingColor { background: #CCCCFF } /* Dark mauve */ .TableSubHeadingColor { background: #EEEEFF } /* Light mauve */ .TableRowColor { background: #FFFFFF } /* White */ /* Font used in left-hand frame lists */ .FrameTitleFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } .FrameHeadingFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } .FrameItemFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } /* Example of smaller, sans-serif font in frames */ /* .FrameItemFont { font-size: 10pt; font-family: Helvetica, Arial, sans-serif } */ /* Navigation bar fonts and colors */ .NavBarCell1 { background-color:#EEEEFF;}/* Light mauve */ .NavBarCell1Rev { background-color:#00008B;}/* Dark Blue */ .NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;} .NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;} .NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} .NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
Terminal/sally-ride/scroller/examples.css
jguidry/SEE_2017_RFID_Pathways
@CHARSET "ISO-8859-1"; /* Reset CSS * --------------------------------------- */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre, form,fieldset,input,textarea,p,blockquote,th,td { padding: 0; margin: 0; } a{ text-decoration:none; } table { border-spacing: 0; } fieldset,img { border: 0; } address,caption,cite,code,dfn,em,strong,th,var { font-weight: normal; font-style: normal; } strong{ font-weight: bold; } ol,ul { list-style: none; margin:0; padding:0; } caption,th { text-align: left; } h1,h2,h3,h4,h5,h6 { font-weight: normal; font-size: 100%; margin:0; padding:0; color:#444; } q:before,q:after { content:''; } abbr,acronym { border: 0; } /* Custom CSS * --------------------------------------- */ body{ font-family: arial,helvetica; color: #333; color: rgba(0,0,0,0.5); } .wrap{ margin-left: auto; margin-right: auto; width: 960px; position: relative; } h1{ font-size: 6em; } p{ font-size: 2em; } .intro p{ width: 50%; margin: 0 auto; font-size: 1.5em; } .section{ text-align:center; } #menu li { display:inline-block; margin: 10px; color: #000; background:#fff; background: rgba(255,255,255, 0.5); -webkit-border-radius: 10px; border-radius: 10px; } /* #menu li.active{ background:#666; background: rgba(0,0,0, 0.5); color: #fff; } */ #menu li a{ text-decoration:none; color: #000; } #menu li.active a:hover{ color: #000; } #menu li:hover{ background: rgba(255,255,255, 0.8); } #menu li a, #menu li.active a{ padding: 9px 18px; display:block; } /* #menu li.active a{ color: #fff; } */ #menu{ position:fixed; top:0; left:0; height: 40px; z-index: 70; width: 100%; padding: 0; margin:0; } .twitter-share-button{ position: fixed; z-index: 99; right: 149px; top: 9px; } #download{ margin: 10px 0 0 0; padding: 15px 10px; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.25); background-color: #49afcd; background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); background-image: -webkit-gradient(linear,0 0,0 100%,from( #5bc0de),to( #2f96b4)); background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); background-image: linear-gradient(top, #5bc0de, #2f96b4); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; vertical-align: middle; cursor: pointer; display: inline-block; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05); -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05); } #download a{ text-decoration:none; color:#fff; } #download:hover{ text-shadow: 0 -1px 0 rgba(0,0,0,.25); background-color: #2F96B4; background-position: 0 -15px; -webkit-transition: background-position .1s linear; -moz-transition: background-position .1s linear; -ms-transition: background-position .1s linear; -o-transition: background-position .1s linear; transition: background-position .1s linear; } #infoMenu{ height: 20px; color: #f2f2f2; position:fixed; z-index:70; bottom:0; width:100%; text-align:right; font-size:0.9em; padding:8px 0 8px 0; } #infoMenu ul{ padding: 0 40px; } #infoMenu li a{ display: block; margin: 0 22px 0 0; color: #333; } #infoMenu li a:hover{ text-decoration:underline; } #infoMenu li{ display:inline-block; position:relative; } #examplesList{ display:none; background: #282828; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; padding: 20px; float: left; position: absolute; bottom: 29px; right: 0; width:638px; text-align:left; } #examplesList ul{ padding:0; } #examplesList ul li{ display:block; margin: 5px 0; } #examplesList ul li a{ color: #BDBDBD; margin:0; } #examplesList ul li a:hover{ color: #f2f2f2; } #examplesList .column{ float: left; margin: 0 20px 0 0; } #examplesList h3{ color: #f2f2f2; font-size: 1.2em; margin: 0 0 15px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.1); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); padding: 0 0 5px 0; } /* Demos Menu * --------------------------------------- */ #demosMenu{ position:fixed; bottom: 10px; right:10px; z-index: 999; }
test/stemkoski.github.com-master/Three.js/Viewports-Minimap.html
zhenyufu/WizardChess
<!doctype html> <html lang="en"> <head> <title>Minimap (Three.js)</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <link rel=stylesheet href="css/base.css"/> </head> <body> <script src="js/Three62.js"></script> <script src="js/Detector.js"></script> <script src="js/Stats.js"></script> <script src="js/OrbitControls.js"></script> <script src="js/THREEx.KeyboardState.js"></script> <script src="js/THREEx.FullScreen.js"></script> <script src="js/THREEx.WindowResize.js"></script> <!-- Note the additional JS files! always need all of these for postprocessing. --> <script src="js/postprocessing/EffectComposer.js"></script> <script src="js/postprocessing/RenderPass.js"></script> <script src="js/postprocessing/ShaderPass.js"></script> <script src="js/postprocessing/MaskPass.js"></script> <script src="js/shaders/CopyShader.js"></script> <!-- antialiasing --> <script src="js/shaders/FXAAShader.js"></script> <div id="ThreeJS" style="position: absolute; left:0px; top:0px"></div> <div id="mapCanvas" style="position: absolute; left:100px; top:100px; width:320px; height:240px;"></div> <script> /* Three.js "tutorials by example" Author: Lee Stemkoski Date: October 2013 (three.js v62) */ // MAIN // standard global variables var container, scene, renderer, controls, stats; var keyboard = new THREEx.KeyboardState(); var clock = new THREE.Clock(); // custom global variables var MovingCube; var perspectiveCamera; var mapCamera, mapWidth = 240, mapHeight = 160; // w/h should match div dimensions init(); animate(); // FUNCTIONS function init() { // SCENE scene = new THREE.Scene(); // CAMERA var SCREEN_WIDTH = window.innerWidth, SCREEN_HEIGHT = window.innerHeight; var VIEW_ANGLE = 45, ASPECT = SCREEN_WIDTH / SCREEN_HEIGHT, NEAR = 0.1, FAR = 20000; // perspective cameras perspectiveCamera = new THREE.PerspectiveCamera(VIEW_ANGLE, ASPECT, NEAR, FAR); perspectiveCamera.position.set(0,200,550); perspectiveCamera.lookAt(scene.position); scene.add(perspectiveCamera); // orthographic cameras mapCamera = new THREE.OrthographicCamera( window.innerWidth / -2, // Left window.innerWidth / 2, // Right window.innerHeight / 2, // Top window.innerHeight / -2, // Bottom -5000, // Near 10000 ); // Far mapCamera.up = new THREE.Vector3(0,0,-1); mapCamera.lookAt( new THREE.Vector3(0,-1,0) ); scene.add(mapCamera); // RENDERER if ( Detector.webgl ) renderer = new THREE.WebGLRenderer( {antialias:true} ); else renderer = new THREE.CanvasRenderer(); renderer.setSize(SCREEN_WIDTH, SCREEN_HEIGHT); container = document.getElementById( 'ThreeJS' ); container.appendChild( renderer.domElement ); // EVENTS THREEx.WindowResize(renderer, mapCamera); THREEx.FullScreen.bindKey({ charCode : 'm'.charCodeAt(0) }); // STATS stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.bottom = '0px'; stats.domElement.style.zIndex = 100; container.appendChild( stats.domElement ); // LIGHT var light = new THREE.PointLight(0xffffff); light.position.set(0,250,0); scene.add(light); // FLOOR var floorTexture = new THREE.ImageUtils.loadTexture( 'images/uvgrid01.jpg' ); floorTexture.wrapS = floorTexture.wrapT = THREE.RepeatWrapping; floorTexture.repeat.set( 10, 10 ); var floorMaterial = new THREE.MeshBasicMaterial( { map: floorTexture, side: THREE.DoubleSide } ); var floorGeometry = new THREE.PlaneGeometry(2000, 2000, 10, 10); var floor = new THREE.Mesh(floorGeometry, floorMaterial); floor.position.y = -0.5; floor.rotation.x = Math.PI / 2; scene.add(floor); //////////// // CUSTOM // //////////// // create an array with six textures for cube var materialArray = []; materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/xpos.png' ) })); materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/xneg.png' ) })); materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/ypos.png' ) })); materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/yneg.png' ) })); materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/zpos.png' ) })); materialArray.push(new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture( 'images/zneg.png' ) })); var MovingCubeMat = new THREE.MeshFaceMaterial(materialArray); var MovingCubeGeom = new THREE.CubeGeometry( 50, 50, 50, 1, 1, 1, materialArray ); MovingCube = new THREE.Mesh( MovingCubeGeom, MovingCubeMat ); MovingCube.position.set(0, 25.1, 0); scene.add( MovingCube ); // a little bit of scenery... var ambientlight = new THREE.AmbientLight(0x111111); scene.add( ambientlight ); // torus knot var colorMaterial = new THREE.MeshLambertMaterial( { color: 0xff3333 } ); var shape = new THREE.Mesh( new THREE.TorusKnotGeometry( 30, 6, 160, 10, 2, 5 ), colorMaterial ); shape.position.set(-200, 50, -200); scene.add( shape ); // torus knot var colorMaterial = new THREE.MeshLambertMaterial( { color: 0x33ff33 } ); var shape = new THREE.Mesh( new THREE.TorusKnotGeometry( 30, 6, 160, 10, 3, 2 ), colorMaterial ); shape.position.set(200, 50, -200); scene.add( shape ); // torus knot var colorMaterial = new THREE.MeshLambertMaterial( { color: 0xffff33 } ); var shape = new THREE.Mesh( new THREE.TorusKnotGeometry( 30, 6, 160, 10, 4, 3 ), colorMaterial ); shape.position.set(200, 50, 200); scene.add( shape ); // torus knot var colorMaterial = new THREE.MeshLambertMaterial( { color: 0x3333ff } ); var shape = new THREE.Mesh( new THREE.TorusKnotGeometry( 30, 6, 160, 10, 3, 4 ), colorMaterial ); shape.position.set(-200, 50, 200); scene.add( shape ); renderer.setSize( window.innerWidth, window.innerHeight ); renderer.setClearColor( 0x000000, 1 ); renderer.autoClear = false; } function animate() { requestAnimationFrame( animate ); render(); update(); } function update() { var delta = clock.getDelta(); // seconds. var moveDistance = 200 * delta; // 200 pixels per second var rotateAngle = Math.PI / 2 * delta; // pi/2 radians (90 degrees) per second // local transformations // move forwards/backwards/left/right if ( keyboard.pressed("W") ) MovingCube.translateZ( -moveDistance ); if ( keyboard.pressed("S") ) MovingCube.translateZ( moveDistance ); if ( keyboard.pressed("Q") ) MovingCube.translateX( -moveDistance ); if ( keyboard.pressed("E") ) MovingCube.translateX( moveDistance ); // rotate left/right/up/down var rotation_matrix = new THREE.Matrix4().identity(); if ( keyboard.pressed("A") ) MovingCube.rotateOnAxis( new THREE.Vector3(0,1,0), rotateAngle); if ( keyboard.pressed("D") ) MovingCube.rotateOnAxis( new THREE.Vector3(0,1,0), -rotateAngle); if ( keyboard.pressed("Z") ) { MovingCube.position.set(0,25.1,0); MovingCube.rotation.set(0,0,0); } stats.update(); } function render() { var w = window.innerWidth, h = window.innerHeight; // setViewport parameters: // lower_left_x, lower_left_y, viewport_width, viewport_height renderer.setViewport( 0, 0, w, h ); renderer.clear(); // full display // renderer.setViewport( 0, 0, SCREEN_WIDTH - 2, 0.5 * SCREEN_HEIGHT - 2 ); renderer.render( scene, perspectiveCamera ); // minimap (overhead orthogonal camera) // lower_left_x, lower_left_y, viewport_width, viewport_height renderer.setViewport( 10, h - mapHeight - 10, mapWidth, mapHeight ); renderer.render( scene, mapCamera ); } </script> </body> </html>
test/end-to-end/cases/expected/query/force-focus_focus-vs-pending-attribute-result.html
AirQuick/xspec
<?xml version="1.0" encoding="UTF-8"?><!--Report filtered by focus--><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Test Report for x-urn:test:do-nothing (passed: 2 / pending: 16 / failed: 0 / total: 18)</title> <link rel="stylesheet" type="text/css" href="../../../../../src/reporter/test-report.css" /> </head> <body> <h1>Test Report</h1> <p>Query: x-urn:test:do-nothing</p> <p>Query-at: <a href="../../../../do-nothing.xqm">do-nothing.xqm</a></p> <p>XSpec: <a href="../../force-focus_focus-vs-pending-attribute.xspec">force-focus_focus-vs-pending-attribute.xspec</a></p> <p>Tested: 1 January 2000 at 00:00</p> <h2>Contents</h2> <table class="xspec"> <colgroup> <col style="width:75%" /> <col style="width:6.25%" /> <col style="width:6.25%" /> <col style="width:6.25%" /> <col style="width:6.25%" /> </colgroup> <thead> <tr> <th></th> <th class="totals">passed: 2</th> <th class="totals">pending: 16</th> <th class="totals">failed: 0</th> <th class="totals">total: 18</th> </tr> </thead> <tbody> <tr class="pending"> <th>(<strong>force focus</strong>) <a href="#top_scenario2">/Neutral</a></th> <th class="totals">2</th> <th class="totals">16</th> <th class="totals">0</th> <th class="totals">18</th> </tr> </tbody> </table> <div id="top_scenario2"> <h2 class="pending">(<strong>force focus</strong>) /Neutral<span class="scenario-totals">passed: 2 / pending: 16 / failed: 0 / total: 18</span></h2> <table class="xspec" id="table_scenario2"> <colgroup> <col style="width:75%" /> <col style="width:25%" /> </colgroup> <tbody> <tr class="pending"> <th>(<strong>force focus</strong>) /Neutral</th> <th>passed: 2 / pending: 16 / failed: 0 / total: 18</th> </tr> <tr class="pending"> <td>(<strong>force focus</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>force focus</strong>) /Focused #1</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>force focus</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>force focus</strong>) /Focused #1 /Neutral</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>force focus</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>Pending #1</strong>) /Focused #1 /Neutral /Pending #1</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>Pending #1</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>Pending #1</strong>) /Focused #1 /Neutral /Pending #1 /Neutral</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>Pending #1</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>Pending #1</strong>) /Focused #1 /Neutral /Pending #1 /Neutral /Focused #2</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>Pending #1</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>Pending #1</strong>) /Focused #1 /Neutral /Pending #1 /Neutral /Focused #2 /Neutral</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>Pending #1</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="pending"> <th>(<strong>Pending #2</strong>) /Focused #1 /Neutral /Pending #1 /Neutral /Focused #2 /Neutral /Pending #2</th> <th>passed: 0 / pending: 2 / failed: 0 / total: 2</th> </tr> <tr class="pending"> <td>(<strong>Pending #2</strong>) x:expect[empty(@pending)]</td> <td>Pending</td> </tr> <tr class="pending"> <td>(<strong>x:expect/@pending</strong>) x:expect[@pending]</td> <td>Pending</td> </tr> <tr class="successful"> <th>/Focused #1 /Neutral /Pending #1 /Neutral /Focused #2 /Neutral /Pending #2 /Neutral</th> <th>passed: 2 / pending: 0 / failed: 0 / total: 2</th> </tr> <tr class="successful"> <td>x:expect[empty(@pending)]</td> <td>Success</td> </tr> <tr class="successful"> <td>x:expect[@pending]</td> <td>Success</td> </tr> </tbody> </table> </div> </body> </html>
ext/c++/thirdpart/c++/boost/libs/interprocess/doc/html/boost/interprocess/cached_node_allocator.html
yinchunlong/abelkhan-1
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class template cached_node_allocator</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&#160;1.&#160;Boost.Interprocess"> <link rel="up" href="../../interprocess/indexes_reference.html#header.boost.interprocess.allocators.cached_node_allocator_hpp" title="Header &lt;boost/interprocess/allocators/cached_node_allocator.hpp&gt;"> <link rel="prev" href="operator___idp21884528.html" title="Function template operator!="> <link rel="next" href="cached_node_allocator/rebind.html" title="Struct template rebind"> </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="operator___idp21884528.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.allocators.cached_node_allocator_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="cached_node_allocator/rebind.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.interprocess.cached_node_allocator"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class template cached_node_allocator</span></h2> <p>boost::interprocess::cached_node_allocator</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: &lt;<a class="link" href="../../interprocess/indexes_reference.html#header.boost.interprocess.allocators.cached_node_allocator_hpp" title="Header &lt;boost/interprocess/allocators/cached_node_allocator.hpp&gt;">boost/interprocess/allocators/cached_node_allocator.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> SegmentManager<span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> NodesPerBlock<span class="special">&gt;</span> <span class="keyword">class</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <span class="identifier">implementation_defined</span><span class="special">::</span><span class="identifier">segment_manager</span> <a name="boost.interprocess.cached_node_allocator.segment_manager"></a><span class="identifier">segment_manager</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">segment_manager</span><span class="special">::</span><span class="identifier">void_pointer</span> <a name="boost.interprocess.cached_node_allocator.void_pointer"></a><span class="identifier">void_pointer</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">implementation_defined</span><span class="special">::</span><span class="identifier">pointer</span> <a name="boost.interprocess.cached_node_allocator.pointer"></a><span class="identifier">pointer</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">implementation_defined</span><span class="special">::</span><span class="identifier">const_pointer</span> <a name="boost.interprocess.cached_node_allocator.const_pointer"></a><span class="identifier">const_pointer</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">T</span> <a name="boost.interprocess.cached_node_allocator.value_type"></a><span class="identifier">value_type</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.interprocess.cached_node_allocator.reference"></a><span class="identifier">reference</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.interprocess.cached_node_allocator.const_reference"></a><span class="identifier">const_reference</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">SegmentManager</span><span class="special">::</span><span class="identifier">size_type</span> <a name="boost.interprocess.cached_node_allocator.size_type"></a><span class="identifier">size_type</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">SegmentManager</span><span class="special">::</span><span class="identifier">difference_type</span> <a name="boost.interprocess.cached_node_allocator.difference_type"></a><span class="identifier">difference_type</span><span class="special">;</span> <span class="comment">// member classes/structs/unions</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T2<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="cached_node_allocator/rebind.html" title="Struct template rebind">rebind</a> <span class="special">{</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a><span class="special">&lt;</span> <span class="identifier">T2</span><span class="special">,</span> <span class="identifier">SegmentManager</span> <span class="special">&gt;</span> <a class="link" href="cached_node_allocator/rebind.html#boost.interprocess.cached_node_allocator.rebind.other"><span class="identifier">other</span></a><span class="special">;</span> <span class="special">}</span><span class="special">;</span> <span class="comment">// <a class="link" href="cached_node_allocator.html#boost.interprocess.cached_node_allocatorconstruct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="cached_node_allocator.html#idp21969824-bb"><span class="identifier">cached_node_allocator</span></a><span class="special">(</span><span class="identifier">segment_manager</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="cached_node_allocator.html#idp21972096-bb"><span class="identifier">cached_node_allocator</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T2<span class="special">&gt;</span> <a class="link" href="cached_node_allocator.html#idp21974768-bb"><span class="identifier">cached_node_allocator</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a><span class="special">&lt;</span> <span class="identifier">T2</span><span class="special">,</span> <span class="identifier">SegmentManager</span><span class="special">,</span> <span class="identifier">NodesPerBlock</span> <span class="special">&gt;</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T2<span class="special">,</span> <span class="keyword">typename</span> SegmentManager2<span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> N2<span class="special">&gt;</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span> <a class="link" href="cached_node_allocator.html#idp21911072-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a><span class="special">&lt;</span> <span class="identifier">T2</span><span class="special">,</span> <span class="identifier">SegmentManager2</span><span class="special">,</span> <span class="identifier">N2</span> <span class="special">&gt;</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span> <a class="link" href="cached_node_allocator.html#idp21916528-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <a class="link" href="cached_node_allocator.html#idp21979088-bb"><span class="special">~</span><span class="identifier">cached_node_allocator</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="cached_node_allocator.html#idp21919712-bb">public member functions</a></span> <span class="identifier">node_pool_t</span> <span class="special">*</span> <a class="link" href="cached_node_allocator.html#idp21920272-bb"><span class="identifier">get_node_pool</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">segment_manager</span> <span class="special">*</span> <a class="link" href="cached_node_allocator.html#idp21921840-bb"><span class="identifier">get_segment_manager</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">size_type</span> <a class="link" href="cached_node_allocator.html#idp21923408-bb"><span class="identifier">max_size</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">pointer</span> <a class="link" href="cached_node_allocator.html#idp21924992-bb"><span class="identifier">allocate</span></a><span class="special">(</span><span class="identifier">size_type</span><span class="special">,</span> <span class="identifier">cvoid_pointer</span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21928720-bb"><span class="identifier">deallocate</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21931392-bb"><span class="identifier">deallocate_free_blocks</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="identifier">pointer</span> <a class="link" href="cached_node_allocator.html#idp21932688-bb"><span class="identifier">address</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">const_pointer</span> <a class="link" href="cached_node_allocator.html#idp21934944-bb"><span class="identifier">address</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21937200-bb"><span class="identifier">construct</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">,</span> <span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21939888-bb"><span class="identifier">destroy</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="identifier">size_type</span> <a class="link" href="cached_node_allocator.html#idp21941872-bb"><span class="identifier">size</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">pointer</span> <a class="link" href="cached_node_allocator.html#idp21944272-bb"><span class="identifier">allocation_command</span></a><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">interprocess</span><span class="special">::</span><span class="identifier">allocation_type</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">,</span> <span class="identifier">size_type</span> <span class="special">&amp;</span><span class="special">,</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21947904-bb"><span class="identifier">allocate_many</span></a><span class="special">(</span><span class="identifier">size_type</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">,</span> <span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21951536-bb"><span class="identifier">allocate_many</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">size_type</span> <span class="special">*</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">,</span> <span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21954976-bb"><span class="identifier">deallocate_many</span></a><span class="special">(</span><span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="identifier">pointer</span> <a class="link" href="cached_node_allocator.html#idp21957232-bb"><span class="identifier">allocate_one</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="identifier">multiallocation_chain</span> <a class="link" href="cached_node_allocator.html#idp21959360-bb"><span class="identifier">allocate_individual</span></a><span class="special">(</span><span class="identifier">size_type</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21961632-bb"><span class="identifier">deallocate_one</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21963760-bb"><span class="identifier">deallocate_individual</span></a><span class="special">(</span><span class="identifier">multiallocation_chain</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21966032-bb"><span class="identifier">set_max_cached_nodes</span></a><span class="special">(</span><span class="identifier">size_type</span><span class="special">)</span><span class="special">;</span> <span class="identifier">size_type</span> <a class="link" href="cached_node_allocator.html#idp21968096-bb"><span class="identifier">get_max_cached_nodes</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="comment">// <a class="link" href="cached_node_allocator.html#idp21979872-bb">friend functions</a></span> <span class="keyword">friend</span> <span class="keyword">void</span> <a class="link" href="cached_node_allocator.html#idp21980432-bb"><span class="identifier">swap</span></a><span class="special">(</span><span class="identifier">self_t</span> <span class="special">&amp;</span><span class="special">,</span> <span class="identifier">self_t</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp23009584"></a><h2>Description</h2> <div class="refsect2"> <a name="idp23010000"></a><h3> <a name="boost.interprocess.cached_node_allocatorconstruct-copy-destruct"></a><code class="computeroutput">cached_node_allocator</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><a name="idp21969824-bb"></a><span class="identifier">cached_node_allocator</span><span class="special">(</span><span class="identifier">segment_manager</span> <span class="special">*</span> segment_mngr<span class="special">)</span><span class="special">;</span></pre> <p>Constructor from a segment manager. If not present, constructs a node pool. Increments the reference count of the associated node pool. Can throw <code class="computeroutput"><a class="link" href="bad_alloc.html" title="Class bad_alloc">boost::interprocess::bad_alloc</a></code> </p> </li> <li class="listitem"> <pre class="literallayout"><a name="idp21972096-bb"></a><span class="identifier">cached_node_allocator</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span> other<span class="special">)</span><span class="special">;</span></pre> <p>Copy constructor from other <code class="computeroutput"><a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a></code>. Increments the reference count of the associated node pool. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T2<span class="special">&gt;</span> <a name="idp21974768-bb"></a><span class="identifier">cached_node_allocator</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a><span class="special">&lt;</span> <span class="identifier">T2</span><span class="special">,</span> <span class="identifier">SegmentManager</span><span class="special">,</span> <span class="identifier">NodesPerBlock</span> <span class="special">&gt;</span> <span class="special">&amp;</span> other<span class="special">)</span><span class="special">;</span></pre> <p>Copy constructor from related <code class="computeroutput"><a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a></code>. If not present, constructs a node pool. Increments the reference count of the associated node pool. Can throw <code class="computeroutput"><a class="link" href="bad_alloc.html" title="Class bad_alloc">boost::interprocess::bad_alloc</a></code> </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T2<span class="special">,</span> <span class="keyword">typename</span> SegmentManager2<span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> N2<span class="special">&gt;</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span> <a name="idp21911072-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a><span class="special">&lt;</span> <span class="identifier">T2</span><span class="special">,</span> <span class="identifier">SegmentManager2</span><span class="special">,</span> <span class="identifier">N2</span> <span class="special">&gt;</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span></pre> <p>Not assignable from related <code class="computeroutput"><a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a></code> </p> </li> <li class="listitem"> <pre class="literallayout"><a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span> <a name="idp21916528-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span></pre> <p>Not assignable from other <code class="computeroutput"><a class="link" href="cached_node_allocator.html" title="Class template cached_node_allocator">cached_node_allocator</a></code> </p> </li> <li class="listitem"> <pre class="literallayout"><a name="idp21979088-bb"></a><span class="special">~</span><span class="identifier">cached_node_allocator</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Destructor, removes node_pool_t from memory if its reference count reaches to zero. Never throws </p> </li> </ol></div> </div> <div class="refsect2"> <a name="idp23076032"></a><h3> <a name="idp21919712-bb"></a><code class="computeroutput">cached_node_allocator</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="identifier">node_pool_t</span> <span class="special">*</span> <a name="idp21920272-bb"></a><span class="identifier">get_node_pool</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns a pointer to the node pool. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">segment_manager</span> <span class="special">*</span> <a name="idp21921840-bb"></a><span class="identifier">get_segment_manager</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns the segment manager. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">size_type</span> <a name="idp21923408-bb"></a><span class="identifier">max_size</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns the number of elements that could be allocated. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">pointer</span> <a name="idp21924992-bb"></a><span class="identifier">allocate</span><span class="special">(</span><span class="identifier">size_type</span> count<span class="special">,</span> <span class="identifier">cvoid_pointer</span> hint <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span></pre> <p>Allocate memory for an array of count elements. Throws <code class="computeroutput"><a class="link" href="bad_alloc.html" title="Class bad_alloc">boost::interprocess::bad_alloc</a></code> if there is no enough memory </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21928720-bb"></a><span class="identifier">deallocate</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> ptr<span class="special">,</span> <span class="identifier">size_type</span> count<span class="special">)</span><span class="special">;</span></pre> <p>Deallocate allocated memory. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21931392-bb"></a><span class="identifier">deallocate_free_blocks</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Deallocates all free blocks of the pool </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">pointer</span> <a name="idp21932688-bb"></a><span class="identifier">address</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns address of mutable object. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">const_pointer</span> <a name="idp21934944-bb"></a><span class="identifier">address</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns address of non mutable object. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21937200-bb"></a><span class="identifier">construct</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> ptr<span class="special">,</span> <span class="identifier">const_reference</span> v<span class="special">)</span><span class="special">;</span></pre> <p>Default construct an object. Throws if T's default constructor throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21939888-bb"></a><span class="identifier">destroy</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> ptr<span class="special">)</span><span class="special">;</span></pre> <p>Destroys object. Throws if object's destructor throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">size_type</span> <a name="idp21941872-bb"></a><span class="identifier">size</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> p<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns maximum the number of objects the previously allocated memory pointed by p can hold. This size only works for memory allocated with allocate, allocation_command and allocate_many. </p> </li> <li class="listitem"><pre class="literallayout"><span class="identifier">pointer</span> <a name="idp21944272-bb"></a><span class="identifier">allocation_command</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">interprocess</span><span class="special">::</span><span class="identifier">allocation_type</span> command<span class="special">,</span> <span class="identifier">size_type</span> limit_size<span class="special">,</span> <span class="identifier">size_type</span> <span class="special">&amp;</span> prefer_in_recvd_out_size<span class="special">,</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> reuse<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21947904-bb"></a><span class="identifier">allocate_many</span><span class="special">(</span><span class="identifier">size_type</span> elem_size<span class="special">,</span> <span class="identifier">size_type</span> num_elements<span class="special">,</span> <span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span> chain<span class="special">)</span><span class="special">;</span></pre> <p>Allocates many elements of size elem_size in a contiguous block of memory. The minimum number to be allocated is min_elements, the preferred and maximum number is preferred_elements. The number of actually allocated elements is will be assigned to received_size. The elements must be deallocated with deallocate(...) </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21951536-bb"></a><span class="identifier">allocate_many</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">size_type</span> <span class="special">*</span> elem_sizes<span class="special">,</span> <span class="identifier">size_type</span> n_elements<span class="special">,</span> <span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span> chain<span class="special">)</span><span class="special">;</span></pre> <p>Allocates n_elements elements, each one of size elem_sizes[i]in a contiguous block of memory. The elements must be deallocated </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21954976-bb"></a><span class="identifier">deallocate_many</span><span class="special">(</span><span class="identifier">multiallocation_chain</span> <span class="special">&amp;</span> chain<span class="special">)</span><span class="special">;</span></pre> <p>Allocates many elements of size elem_size in a contiguous block of memory. The minimum number to be allocated is min_elements, the preferred and maximum number is preferred_elements. The number of actually allocated elements is will be assigned to received_size. The elements must be deallocated with deallocate(...) </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">pointer</span> <a name="idp21957232-bb"></a><span class="identifier">allocate_one</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Allocates just one object. Memory allocated with this function must be deallocated only with deallocate_one(). Throws <code class="computeroutput"><a class="link" href="bad_alloc.html" title="Class bad_alloc">boost::interprocess::bad_alloc</a></code> if there is no enough memory </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">multiallocation_chain</span> <a name="idp21959360-bb"></a><span class="identifier">allocate_individual</span><span class="special">(</span><span class="identifier">size_type</span> num_elements<span class="special">)</span><span class="special">;</span></pre> <p>Allocates many elements of size == 1 in a contiguous block of memory. The minimum number to be allocated is min_elements, the preferred and maximum number is preferred_elements. The number of actually allocated elements is will be assigned to received_size. Memory allocated with this function must be deallocated only with deallocate_one(). </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21961632-bb"></a><span class="identifier">deallocate_one</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">pointer</span> <span class="special">&amp;</span> p<span class="special">)</span><span class="special">;</span></pre> <p>Deallocates memory previously allocated with allocate_one(). You should never use deallocate_one to deallocate memory allocated with other functions different from allocate_one(). Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21963760-bb"></a><span class="identifier">deallocate_individual</span><span class="special">(</span><span class="identifier">multiallocation_chain</span> it<span class="special">)</span><span class="special">;</span></pre> <p>Allocates many elements of size == 1 in a contiguous block of memory. The minimum number to be allocated is min_elements, the preferred and maximum number is preferred_elements. The number of actually allocated elements is will be assigned to received_size. Memory allocated with this function must be deallocated only with deallocate_one(). </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp21966032-bb"></a><span class="identifier">set_max_cached_nodes</span><span class="special">(</span><span class="identifier">size_type</span> newmax<span class="special">)</span><span class="special">;</span></pre> <p>Sets the new max cached nodes value. This can provoke deallocations if "newmax" is less than current cached nodes. Never throws </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">size_type</span> <a name="idp21968096-bb"></a><span class="identifier">get_max_cached_nodes</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns the max cached nodes parameter. Never throws </p> </li> </ol></div> </div> <div class="refsect2"> <a name="idp23224976"></a><h3> <a name="idp21979872-bb"></a><code class="computeroutput">cached_node_allocator</code> friend functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"> <pre class="literallayout"><span class="keyword">friend</span> <span class="keyword">void</span> <a name="idp21980432-bb"></a><span class="identifier">swap</span><span class="special">(</span><span class="identifier">self_t</span> <span class="special">&amp;</span> alloc1<span class="special">,</span> <span class="identifier">self_t</span> <span class="special">&amp;</span> alloc2<span class="special">)</span><span class="special">;</span></pre> <p>Swaps allocators. Does not throw. If each allocator is placed in a different memory segment, the result is undefined. </p> </li></ol></div> </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 &#169; 2005-2015 Ion Gaztanaga<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="operator___idp21884528.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.allocators.cached_node_allocator_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="cached_node_allocator/rebind.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
036_Inheritance/Dymanic Method Dispatch/RunTimePolyWithStaticMethod/doc/allclasses-frame.html
hardikhirapara91/java-se-core
<!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_144) on Tue Sep 26 13:56:19 IST 2017 --> <title>All Classes</title> <meta name="date" content="2017-09-26"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <h1 class="bar">All&nbsp;Classes</h1> <div class="indexContainer"> <ul> <li><a href="com/hardik/javase/App.html" title="class in com.hardik.javase" target="classFrame">App</a></li> </ul> </div> </body> </html>
demos/Fx.Sort/demo.html
fakedarren/mootools-demos
<label for="fxTransition">Transition</label> <select id="fxTransition" style="width: 100px;"> <option value="linear">Linear</option> <option value="Quad">Quadratic</option> <option value="Cubic">Cubic</option> <option value="Quart">Quartic</option> <option value="Quint">Quintic</option> <option value="Sine">Sinusoidal</option> <option value="Expo">Exponential</option> <option value="Circ">Circular</option> <option value="Bounce">Bouncing</option> <option value="Back" selected="">Back</option> <option value="Elastic">Elastic</option> </select> <select id="fxEase" style="width: 100px;"> <option value="easeIn">easeIn</option> <option value="easeOut">easeOut</option> <option value="easeInOut" selected="">easeInOut</option> </select> <label for="duration">duration</label> <input type="text" id="duration" value="1000" style="width: 60px;" /> <input id="mode" type="checkbox" value="vertical" checked /> <label for="mode">vertical sort</label> <p id="note">*you can click on any two elements below to swap their position</p> <div id="container"> <div class="red sort">red</div> <div class="purple sort">purple</div> <div class="green sort">green</div> <div class="orange sort">orange</div> <div class="blue sort">blue</div> </div> <p> <a href="#" class="fireSort" title="Arrange the items in the original order reversed (...3,2,1,0)">backward</a> | <a href="#" class="fireSort" title="Arrange the items in the original order (0,1,2,3,etc)">forward</a> | <a href="#" class="fireSort" title="Arrange the items in the current order reversed">reverse</a> | <a href="#" id="sort" title="Rearranges the items visually into a new order">Sort [1,3,0,2,4]</a> | <a href="#" id="swap" title="Swaps the position of one item with another">Swap first and last child</a> | <a href="#" id="order" title="Retrieves the current sort order">Current order</a> | <a href="#" id="reorderDOM" title="Rearranges the DOM to the current sort order">rearrangeDOM</a> </p> <h3> Current DOM order </h3> <pre id="output"></pre>
ext/c++/thirdpart/c++/boost/libs/asio/doc/html/boost_asio/reference/ip__basic_resolver/protocol_type.html
yinchunlong/abelkhan-1
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ip::basic_resolver::protocol_type</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="../ip__basic_resolver.html" title="ip::basic_resolver"> <link rel="prev" href="iterator.html" title="ip::basic_resolver::iterator"> <link rel="next" href="query.html" title="ip::basic_resolver::query"> </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="iterator.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__basic_resolver.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="query.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.ip__basic_resolver.protocol_type"></a><a class="link" href="protocol_type.html" title="ip::basic_resolver::protocol_type">ip::basic_resolver::protocol_type</a> </h4></div></div></div> <p> <a class="indexterm" name="idp79819168"></a> The protocol type. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">InternetProtocol</span> <span class="identifier">protocol_type</span><span class="special">;</span> </pre> <h6> <a name="boost_asio.reference.ip__basic_resolver.protocol_type.h0"></a> <span><a name="boost_asio.reference.ip__basic_resolver.protocol_type.requirements"></a></span><a class="link" href="protocol_type.html#boost_asio.reference.ip__basic_resolver.protocol_type.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/ip/basic_resolver.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code> </p> </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 &#169; 2003-2015 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="iterator.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__basic_resolver.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="query.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
ext/c++/thirdpart/c++/boost/libs/proto/doc/html/boost/proto/functional/at/result_This_Se_idp28265856.html
yinchunlong/abelkhan-1
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template result&lt;This(Seq, N)&gt;</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&#160;1.&#160;Boost.Proto"> <link rel="up" href="../at.html#idp81064016" title="Description"> <link rel="prev" href="../at.html" title="Struct at"> <link rel="next" href="../../../../header/boost/proto/functional/fusion/pop_back_hpp.html" title="Header &lt;boost/proto/functional/fusion/pop_back.hpp&gt;"> </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="../at.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../at.html#idp81064016"><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="../../../../header/boost/proto/functional/fusion/pop_back_hpp.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.proto.functional.at.result_This(Se_idp28265856"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template result&lt;This(Seq, N)&gt;</span></h2> <p>boost::proto::functional::at::result&lt;This(Seq, N)&gt;</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: &lt;<a class="link" href="../../../../header/boost/proto/functional/fusion/at_hpp.html" title="Header &lt;boost/proto/functional/fusion/at.hpp&gt;">boost/proto/functional/fusion/at.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> This<span class="special">,</span> <span class="keyword">typename</span> Seq<span class="special">,</span> <span class="keyword">typename</span> N<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="result_This_Se_idp28265856.html" title="Struct template result&lt;This(Seq, N)&gt;">result</a><span class="special">&lt;</span><span class="identifier">This</span><span class="special">(</span><span class="identifier">Seq</span><span class="special">,</span> <span class="identifier">N</span><span class="special">)</span><span class="special">&gt;</span> <span class="special">:</span> <span class="keyword"></span> <span class="identifier">fusion</span><span class="special">::</span><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">at</span><span class="special">&lt;</span> <span class="keyword">typename</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">remove_reference</span><span class="special">&lt;</span><span class="identifier">Seq</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">remove_const</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">remove_reference</span><span class="special">&lt;</span><span class="identifier">N</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="special">&gt;</span> <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 &#169; 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="../at.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../at.html#idp81064016"><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="../../../../header/boost/proto/functional/fusion/pop_back_hpp.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
main/libc/unix/linux_like/linux/constant.CTRL_ATTR_FAMILY_NAME.html
malept/guardhaus
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=../../../../libc/constant.CTRL_ATTR_FAMILY_NAME.html"> </head> <body> <p>Redirecting to <a href="../../../../libc/constant.CTRL_ATTR_FAMILY_NAME.html">../../../../libc/constant.CTRL_ATTR_FAMILY_NAME.html</a>...</p> <script>location.replace("../../../../libc/constant.CTRL_ATTR_FAMILY_NAME.html" + location.search + location.hash);</script> </body> </html>
packages/core/src/components/Cards/EditorialCard/EventCard.css
appearhere/bloom
.meta, .description, .link { display: none; opacity: 0; animation-iteration-count: 1; animation-fill-mode: forwards; animation-duration: 200ms; animation-timing-function: ease-in-out; } .showMeta .meta, .showDescription .description, .showLink .link { display: block; animation-name: show; } @keyframes show { to { opacity: 1; } } .meta { composes: fontSmallI from '../../../globals/typography.css'; color: var(--color-greyDark); font-weight: var(--fontweight-demi); margin-top: var(--size-small); } .description { margin-bottom: 0; font-size: inherit; margin-top: var(--size-medium); } .link { margin-top: var(--size-medium); } .showDescription .link { position: absolute; z-index: 1; bottom: var(--size-medium); }
hudson-core/src/main/resources/hudson/model/Hudson/help-markupFormatter.html
cnopens/hudson
<div> In such places as project description, user description, view description, and build description, Hudson allows users to enter some free-form text that describes something. This configuration determines how such free-form text is converted to HTML. By default, Hudson treats the text as HTML and use it as-is unmodified (and this is default mainly because of the backward compatibility.) <p> While this is convenient and people often use it to load &lt;iframe>, &lt;script>. and so on to mash up data from other sources, this capability enables malicious users to mount <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">XSS attacks</a>. If the risk outweighs the benefit, install additional markup formatter plugins and use them. </div>
resources/apache-jena/javadoc-sdb/com/hp/hpl/jena/sdb/layout2/index/class-use/StoreTriplesNodesIndexMySQL.html
vuk/Clojure-Movies
<!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>Uses of Class com.hp.hpl.jena.sdb.layout2.index.StoreTriplesNodesIndexMySQL (Apache Jena SDB)</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="Uses of Class com.hp.hpl.jena.sdb.layout2.index.StoreTriplesNodesIndexMySQL (Apache Jena SDB)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/hp/hpl/jena/sdb/layout2/index/StoreTriplesNodesIndexMySQL.html" title="class in com.hp.hpl.jena.sdb.layout2.index">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/hp/hpl/jena/sdb/layout2/index/class-use/StoreTriplesNodesIndexMySQL.html" target="_top">Frames</a></li> <li><a href="StoreTriplesNodesIndexMySQL.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.hp.hpl.jena.sdb.layout2.index.StoreTriplesNodesIndexMySQL" class="title">Uses of Class<br>com.hp.hpl.jena.sdb.layout2.index.StoreTriplesNodesIndexMySQL</h2> </div> <div class="classUseContainer">No usage of com.hp.hpl.jena.sdb.layout2.index.StoreTriplesNodesIndexMySQL</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/hp/hpl/jena/sdb/layout2/index/StoreTriplesNodesIndexMySQL.html" title="class in com.hp.hpl.jena.sdb.layout2.index">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/hp/hpl/jena/sdb/layout2/index/class-use/StoreTriplesNodesIndexMySQL.html" target="_top">Frames</a></li> <li><a href="StoreTriplesNodesIndexMySQL.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p> </body> </html>
applications/diag/diag-plugins/org.csstudio.diag.probe/Readme.html
css-iter/cs-studio
<body> This used to be de.desy.css.jprobe, which in turn is based on code from Ken Evans. <ul> <li>Changed package name. <li>Use org.csstudio.util.pv, removed local copies of CA client jars and Windows executables. <li>Added icon. <li>Added context menu oject contribution for 'PV'-type selections. <li>One can 'drop' a PV name into the PV name text box. <p> 'Drag' doesn't work because I cannot figure out how to get that from a text box. So far the 'drag' simply refuses to start, maybe because the Text box already handles all the mouse actions in a different way. <br> For similar reasons, I so far didn't get a context menu added to the Text box. </ul> </body>
bundle.apache.derby/db-derby-10.8.3.0-bin/docs/html/devguide/cdevconcepts29416.html
acshea/edgware
<?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"> <!-- 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="concept" name="DC.Type" /> <meta name="DC.Title" content="Using auto-commit" /> <meta name="abstract" content="A new connection to a Derby database is in auto-commit mode by default, as specified by the JDBC standard." /> <meta name="description" content="A new connection to a Derby database is in auto-commit mode by default, as specified by the JDBC standard." /> <meta content="Auto-commit, using" name="DC.subject" /> <meta content="Auto-commit, using" name="keywords" /> <meta scheme="URI" name="DC.Relation" content="cdevconcepts838850.html" /> <meta scheme="URI" name="DC.Relation" content="tdevconcepts839040.html" /> <meta scheme="URI" name="DC.Relation" content="cdevconcepts839085.html" /> <meta scheme="URI" name="DC.Relation" content="cdevconcepts14433.html" /> <meta scheme="URI" name="DC.Relation" content="cdevconcepts41275.html" /> <meta scheme="URI" name="DC.Relation" content="cdevconceptssavepoints.html" /> <meta scheme="URI" name="DC.Relation" content="cdevconcepts19173.html" /> <meta content="XHTML" name="DC.Format" /> <meta content="cdevconcepts29416" name="DC.Identifier" /> <meta content="en-us" name="DC.Language" /> <link href="commonltr.css" type="text/css" rel="stylesheet" /> <title>Using auto-commit</title> </head> <body id="cdevconcepts29416"><a name="cdevconcepts29416"><!-- --></a> <h1 class="topictitle1">Using auto-commit</h1> <div><p>A new connection to a <span>Derby</span> database is in auto-commit mode by default, as specified by the JDBC standard.</p> <p>Auto-commit mode means that when a statement is completed, the method <em>commit</em> is called on that statement automatically. Auto-commit in effect makes every SQL statement a transaction. The commit occurs when the statement completes or the next statement is executed, whichever comes first. In the case of a statement returning a forward only <samp class="codeph"><em>ResultSet</em></samp>, the statement completes when the last row of the <samp class="codeph"><em>ResultSet</em></samp> has been retrieved or the <samp class="codeph"><em>ResultSet</em></samp> has been closed explicitly. In the case of a statement returning a scrollable <samp class="codeph"><em>ResultSet</em></samp>, the statement completes only when the <samp class="codeph"><em>ResultSet</em></samp> has been closed explicitly.</p> <p>Some applications might prefer to work with <span>Derby</span> in auto-commit mode; some might prefer to work with auto-commit turned off. You should be aware of the implications of using either model.</p> <p>You should be aware of the following when you use auto-commit:</p> <ul> <li><em>Cursors</em> <p>You cannot use auto-commit if you do any positioned updates or deletes (that is, an update or delete statement with a WHERE CURRENT OF clause) on cursors which have the <samp class="codeph"><em>ResultSet.CLOSE_CURSORS_AT_COMMIT</em></samp> holdability value set.</p> <p>Auto-commit automatically closes cursors that are explicitly opened with the <samp class="codeph"><em>ResultSet.CLOSE_CURSORS_AT_COMMIT</em></samp> value, when you do any in-place updates or deletes.</p> <p>An updatable cursor declared to be held across commit (this is the default value) can execute updates and issue multiple commits before closing the cursor. After an explicit or implicit commit, a holdable forward-only cursor must be repositioned with a call to the <samp class="codeph"><em>next</em></samp> method before it can accessed again. In this state, the only other valid operation besides calling <samp class="codeph"><em>next</em></samp> is calling <samp class="codeph"><em>close</em></samp>.</p> </li> <li><em>Database-side JDBC routines (routines using nested connections)</em> <p>You cannot execute functions within SQL statements if those functions perform a commit or rollback on the current connection. Since in auto-commit mode all SQL statements are implicitly committed, <span>Derby</span> turns off auto-commit during execution of database-side routines and turns it back on when the statement completes.</p> <p>Routines that use nested connections are not permitted to turn auto-commit on or off.</p> </li> <li><em>Table-level locking and the SERIALIZABLE isolation level</em> <p>When an application uses table-level locking and the SERIALIZABLE isolation level, all statements that access tables hold at least shared table locks. Shared locks prevent other transactions that update data from accessing the table. A transaction holds a lock on a table until the transaction commits. <em>So even a SELECT statement holds a shared lock on a table until its connection commits and a new transaction begins. </em></p> </li> </ul> <p>The following table summarizes how applications behave with auto-commit on or off.</p> <div class="tablenoborder"><table cellspacing="0" cellpadding="4" summary="Table 1. Application behavior with auto-commit on or off" frame="border" border="1" rules="all"><caption>Table 1. Application behavior with auto-commit on or off</caption> <thead align="left"> <tr valign="bottom"> <th valign="bottom" width="40%" id="N1014C">Topic</th> <th valign="bottom" width="30%" id="N10153">Auto-Commit On</th> <th valign="bottom" width="30%" id="N1015A">Auto-Commit Off</th> </tr> </thead> <tbody> <tr> <td valign="top" width="40%" headers="N1014C">Transactions</td> <td valign="top" width="30%" headers="N10153">Each statement is a separate transaction.</td> <td valign="top" width="30%" headers="N1015A">Commit() or rollback() completes a transaction.</td> </tr> <tr> <td valign="top" width="40%" headers="N1014C">Database-side JDBC routines (routines that use nested connections)</td> <td valign="top" width="30%" headers="N10153">Auto-commit is turned off.</td> <td valign="top" width="30%" headers="N1015A">Works (no explicit commits or rollbacks are allowed).</td> </tr> <tr> <td valign="top" width="40%" headers="N1014C">Updatable cursors</td> <td valign="top" width="30%" headers="N10153">Works for holdable cursors; does not work for non-holdable cursors.</td> <td valign="top" width="30%" headers="N1015A">Works.</td> </tr> <tr> <td valign="top" width="40%" headers="N1014C">Multiple connections accessing the same data</td> <td valign="top" width="30%" headers="N10153">Works.</td> <td valign="top" width="30%" headers="N1015A">Works. Lower concurrency when applications use SERIALIZABLE isolation mode and table-level locking.</td> </tr> <tr> <td valign="top" width="40%" headers="N1014C">Updatable ResultSets</td> <td valign="top" width="30%" headers="N10153">Works.</td> <td valign="top" width="30%" headers="N1015A">Works.</td> </tr> <tr> <td valign="top" width="40%" headers="N1014C">Savepoints</td> <td valign="top" width="30%" headers="N10153">Does not work.</td> <td valign="top" width="30%" headers="N1015A">Works.</td> </tr> </tbody> </table> </div> </div> <div> <div class="familylinks"> <div class="parentlink"><strong>Parent topic:</strong> <a href="cdevconcepts19173.html" title="A transaction is a set of one or more SQL statements that make up a logical unit of work that you can either commit or roll back and that will be recovered in the event of a system failure.">Transactions</a></div> </div> <div class="relconcepts"><strong>Related concepts</strong><br /> <div><a href="cdevconcepts838850.html" title="When auto-commit is disabled, you use a Connection object's commit and rollback methods to commit or roll back a transaction.">Transactions when auto-commit is disabled</a></div> <div><a href="cdevconcepts839085.html" title="You should explicitly close Statements, ResultSets, and Connections when you no longer need them, unless you declare them in a try-with-resources statement (available in JDK 7 and after).">Explicitly closing Statements, ResultSets, and Connections</a></div> <div><a href="cdevconcepts14433.html" title="When an SQL statement generates an exception, this exception results in a runtime rollback. A runtime rollback is a system-generated rollback of a statement or transaction by Derby, as opposed to an explicit rollback call from your application.">Statement versus transaction runtime rollback</a></div> <div><a href="cdevconcepts41275.html" title="A result set maintains a cursor, which points to its current row of data. It can be used to step through and process the rows one by one.">Result set and cursor mechanisms</a></div> <div><a href="cdevconceptssavepoints.html" title="The Savepoint interface contains methods to set, release, or roll back a transaction to designated savepoints. Once a savepoint has been set, the transaction can be rolled back to that savepoint without affecting preceding work. Savepoints provide finer-grained control of transactions by marking intermediate points within a transaction.">Using savepoints</a></div> </div> <div class="reltasks"><strong>Related tasks</strong><br /> <div><a href="tdevconcepts839040.html" title="You can disable auto-commit with the Connection class's setAutoCommit method.">Turning off auto-commit</a></div> </div> </div> </body> </html>
javadoc/allclasses-noframe.html
noorah12345/forecastIO-Lib-Java
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="pt"> <head> <!-- Generated by javadoc (1.8.0_31) on Thu Mar 12 14:50:17 GMT 2015 --> <title>All Classes</title> <meta name="date" content="2015-03-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <h1 class="bar">All&nbsp;Classes</h1> <div class="indexContainer"> <ul> <li><a href="com/github/dvdme/ForecastIOLib/ForecastIO.html" title="class in com.github.dvdme.ForecastIOLib">ForecastIO</a></li> </ul> </div> </body> </html>
resources/apache-jena/javadoc-arq/org/apache/jena/atlas/io/class-use/PrintUtils.html
vuk/Clojure-Movies
<!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:57 BST 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.jena.atlas.io.PrintUtils (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="Uses of Class org.apache.jena.atlas.io.PrintUtils (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><a href="../../../../../../org/apache/jena/atlas/io/PrintUtils.html" title="class in org.apache.jena.atlas.io">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/jena/atlas/io/class-use/PrintUtils.html" target="_top">Frames</a></li> <li><a href="PrintUtils.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.jena.atlas.io.PrintUtils" class="title">Uses of Class<br>org.apache.jena.atlas.io.PrintUtils</h2> </div> <div class="classUseContainer">No usage of org.apache.jena.atlas.io.PrintUtils</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/jena/atlas/io/PrintUtils.html" title="class in org.apache.jena.atlas.io">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/jena/atlas/io/class-use/PrintUtils.html" target="_top">Frames</a></li> <li><a href="PrintUtils.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p> </body> </html>
sites/all/libraries/soundmanager2/demo/api/index.html
hpcalaf/singersitetpls
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>SoundManager 2: Basic API Demo, Examples</title> <meta name="robots" content="noindex" /> <meta name="author" content="Scott Schiller" /> <meta name="language" content="en-us" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="keywords" content="javascript sound library api" /> <meta name="description" content="API demo and code examples for SoundManager 2, Javascript Sound method calls and functions etc." /> <link rel="stylesheet" href="../index.css" media="screen" /> <!-- soundManager.useFlashBlock: related CSS --> <link rel="stylesheet" type="text/css" href="../flashblock/flashblock.css" /> <style type="text/css"> h1 { padding-top:0.2em; padding-bottom:0.1em; border-bottom:4px solid #000; letter-spacing:-0.03em; } h2 { margin-top:1em; padding-bottom:0.1em; border-bottom:2px solid #000; } pre, code, .code, dt, #soundmanager-debug { color:#336699; line-height:1.5em; } p { line-height:1.5em; margin-bottom:1em; } #soundmanager-debug { position:fixed; _position:absolute; /* IE <7 */ bottom:1em; right:1em; width:38em; height:30em; overflow:auto; padding:0px; margin:1em; font-family:monaco,"VT-100","lucida console",courier,system; opacity:0.9; color:#333; border:1px solid #ccddee; border-radius:3px; background:#f3f9ff; } /* #soundmanager-debug code { font-size:1.1em; *font-size:1em; } */ #soundmanager-debug div { font-size:x-small; padding:0.2em; margin:0px; } #sm2-container.swf_unblocked { /* if initially blocked (and then unblocked), stay relative so JS <-> Flash doesn't break. */ position: relative; } #sm2-container.high_performance.swf_unblocked { /* ...unless high performance, in which case stay in corner (unless old IE) */ _position: relative; position: fixed; } </style> <script type="text/javascript" src="../../script/soundmanager2.js"></script> <script type="text/javascript"> // flash version URL switch (for this demo page) var winLoc = window.location.toString(); soundManager.setup({ preferFlash: (winLoc.match(/usehtml5audio=1/i) ? false : true) }); if (winLoc.match(/flash9/i)) { soundManager.setup({ flashVersion: 9 }); if (winLoc.match(/highperformance/i)) { soundManager.setup({ useHighPerformance: true }); } } else if (winLoc.match(/flash8/i)) { soundManager.setup({ flashVersion: 8 }); } soundManager.setup({ useFlashBlock: true, url: '../../swf/', // path to SoundManager2 SWF files (note trailing slash) debugMode: true, consoleOnly: false }); soundManager.onready(function(oStatus) { if (!oStatus.success) { return false; } // soundManager is initialised, ready to use. Create a sound for this demo page. if (soundManager.flashVersion > 8) { t = window.setInterval(checkRAM,500); document.getElementById('flash-ram-use').style.display = 'inline'; checkRAM(); } soundManager.createSound({ id: 'aDrumSound', url: '../mpc/audio/AMB_SN13.mp3' }); soundManager.createSound({ id: 'aCymbalSound', url: '../mpc/audio/SPLASH_1.mp3', autoLoad: true }); soundManager.createSound({ id: 'chinaCymbal', url: '../mpc/audio/CHINA_1.mp3', autoLoad: true }); soundManager.createSound({ id: 's440hz', url: '../_mp3/440hz.mp3', autoLoad: true, volume:50 }); }); function checkRAM() { if (soundManager.supported()) { var ram = (soundManager.getMemoryUse()/1024/1024).toFixed(2); if (!isNaN(ram)) { document.getElementById('flash-ram-use').innerHTML = ram+' MB'; } else { document.getElementById('flash-ram-use').style.display = 'none'; } } } var t = null; function doEval(sHTML) { var html = sHTML.replace(/\<(span|code)\>/gi,''); html = html.replace(/\<[\/](span|code)\>/gi,''); html = html.replace(/&gt;/gi,'>'); eval(html); return false; } function getRandomMP3URL() { return 'http://freshly-ground.com/data/audio/mpc/20060826%20-%20Armstrong.mp3?rnd='+parseInt(Math.random()*1048576); } </script> </head> <body> <div id="flash9" style="padding-left:1em;margin-right:38em"> <h1><a href="http://www.schillmania.com/projects/soundmanager2/" style="color:#000;text-decoration:none">SoundManager 2</a> / API Demo and Code Examples</h1> <p class="note">You can run the API demos with <a href="#sm2-usehtml5audio=1" onclick="window.location.replace(this.href);window.location.reload()">HTML5</a> enabled, <a href="#flash8" onclick="window.location.replace(this.href);window.location.reload()">Flash 8</a> (API default), <a href="#flash9" onclick="window.location.replace(this.href);window.location.reload()">Flash 9</a> (normal) or <a href="#flash9-highperformance" onclick="window.location.replace(this.href);window.location.reload()">Flash 9 + highPerformance + fastPolling</a> modes (higher JS callback frequency).</p> <p>Wondering where to start? This page has inline executable code examples using the SoundManager 2 API.</p> <p>If you're wondering <em>"How to include SM2 in my page?"</em>, the <a href="../template/" title="SoundManager 2 bare-bones template" onclick="if (!document.domain && !this.href.match(/index/i)) this.href=this.href+'index.html'">basic template</a> will get you started.</p> <div id="sm2-container"> <!-- flash is appended here --> </div> <h2>Adding "onready" listeners</h2> <p>Before you can create and play sounds, you need to wait for the "onready" event to fire.</p> <p>You can register listeners by passing a function to <code>onready()</code>, and it will be called when SoundManager has finished starting up:</p> <pre class="block"><code>soundManager.onready(function() {<span> <span>// ready to go! createSound() and play() etc. can now be called</span> </span>}); </code></pre> <p>You may also listen for a startup timeout, a form of failure (eg., Flash was required, but was blocked from loading etc.):</p> <pre class="block"><code>soundManager.ontimeout(function() {<span> <span>// uh-oh, SM2 failed to start - error, unsupported or other issue</span> </span>}); </code></pre> <p>SoundManager processes the <code>onready</code> or <code>ontimeout</code> queue in the order items were added. If you call <code>onready()</code> after SM2 has loaded, your callback will be fired immediately.</p> <p>These methods can also be passed as <code>onready</code> and <code>ontimeout</code> parameters to <code>soundManager.setup()</code>.</p> <h2>A note about initialization</h2> <p class="compact">Keep in mind SoundManager's core methods (createSound, etc.) will not be available until soundManager.onready() fires. The initialization time for SM2 can vary across browsers/platforms, and should effectively be assumed to be "asynchronous." Because of this, it is recommended you write your code to handle soundManager.onready() being called either before or after window.onload().</p> <p class="compact">If you wish to have SM2 always wait for window.onload() before calling soundManager.onready/ontimeout(), you can pass <code>waitForWindowLoad: true</code> to <code>soundManager.setup()</code>.</p> <h2>Debug Output, disabling and minified versions</h2> <p class="compact">SoundManager 2 has debug mode enabled by default and will write to agents supporting <em>console.log</em>-style debugging, and/or a custom &lt;div&gt; element in the absence of a console.</p> <p>To disable debug output, pass <code>debugMode: false</code> to <code>soundManager.setup()</code>.</p> <p>Alternately, you may use the no-debug, minified version of the SM2 javascript library (which has internal debug code removed, and will silently return false.)</p> <h2 id="create">Demo 1: Create + play a sound by ID</h2> <pre class="block"><code>soundManager.createSound({ id:'<span>mySound1</span>', url:'<span>../mpc/audio/CHINA_1.mp3</span>' }); soundManager.play('<span>mySound1</span>');</code></pre> <button onclick="soundManager._writeDebug('Demo 1',1);soundManager.createSound({id:'mySound1',url:'../mpc/audio/CHINA_1.mp3'});soundManager.play('mySound1')">Do this</button> <p>Creates, then plays a sound. This object literal method allows for other parameters to be used (see demo 2)</p> <h3>Variant: Create + play sound by object (best method)</h3> <pre class="block"><code>var soundObject = soundManager.createSound({ id:'<span>mySound2</span>', url:'<span>../mpc/audio/CHINA_1.mp3</span>' }); soundObject.play();</code></pre> <button onclick="soundManager._writeDebug('Demo 1b variant',1);var aSoundObject = soundManager.createSound({id:'mySound2',url:'../mpc/audio/CHINA_1.mp3'});aSoundObject.play()">Do this</button> <p>Creates, then plays a sound. This object literal method allows for other parameters to be used (see demo 2)</p> <h2>Demo 2: Create with onfinish event handler + play with volume argument</h2> <pre id="demo2" class="block"><code>var demo2Sound = soundManager.createSound({ id:'<span>mySound4</span>', url:'<span>../mpc/audio/CHINA_1.mp3</span>', onfinish:function() { soundManager._writeDebug(this.id+'<span> finished playing</span>'); } }); demo2Sound.play({volume:50}); </code></pre> <button onclick="return doEval(document.getElementById('demo2').innerHTML)">Do this</button> <p>(creates, then plays a new sound - a function is called when the sound finishes playing)</p> <h2>Demo 3: Play a pre-existing sound by ID</h2> <pre>soundManager.play('<span>aDrumSound</span>');</pre> <button onclick="soundManager._writeDebug('Demo 3',1);soundManager.play('aDrumSound')">Do this</button> <p>This plays an existing sound which was created by soundManager.onready() (for reference, view source of this page.)</p> <h2>Demo 4a: Play a sequence of sounds via "onfinish", with multiShot (Flash 9-only)</h2> <pre>soundManager.play('<span>aDrumSound</span>',{multiShotEvents:true,onfinish:function(){soundManager.play('<span>aCymbalSound</span>');}})</pre> <p>Differently formatted:</p> <pre class="block"><code>soundManager.play('<span>aDrumSound</span>',{ multiShotEvents: true, <span>// allow onfinish() to fire for each "shot" (default: only fire onfinish() for last shot.)</span> onfinish:function() { soundManager.play('<span>aCymbalSound</span>'); } });</code></pre> <button onclick="soundManager._writeDebug('Demo 4a',1);soundManager.play('aDrumSound',{multiShotEvents:true,onfinish:function(){soundManager.play('aCymbalSound');}})">Do this</button> <p>This will play an existing sound (created in-page), and uses the "onfinish" handler to make a call to play a second, pre-existing sound.</p> <p>Also note that the button can be clicked multiple times, and the sound will be "layered" as multiShot is enabled for both of these sounds when using Flash 9. An onfinish event will also fire as each sound finishes.</p> <p><strong>Bug/behaviour note:</strong> Whenever "play" is called on a SMSound object, any parameters passed in will apply to all currently-playing instances of the sound if multiShot is allowed. For example, the onfinish handler from demo 4a will apply to demo 3 if 4a is started while 3 is still playing.</p> <p class="note">* Multishot is Flash 9+ only.</p> <h2>Demo 4b: Create and play a sequence of new sounds via "onfinish"</h2> <pre class="block"><code>soundManager.createSound({ id:'<span>aBassDrum</span>', url:'<span>../mpc/audio/AMB_BD_1.mp3</span>', multiShot:false, onfinish:function() { soundManager.play('<span>aRimSound</span>','<span>AMB_RIM1.mp3</span>'); } }); soundManager.play('<span>aRimSound</span>');</code></pre> <button onclick="soundManager._writeDebug('Demo 4b',1);soundManager.createSound({id:'aBassDrum',url:'../mpc/audio/AMB_BD_1.mp3',multiShot:false,onfinish:function(){soundManager.play('aRimSound','../mpc/audio/AMB_RIM1.mp3');}});soundManager.play('aBassDrum')">Do this</button> <p>This will crate and play a new sound, using the "onfinish" handler to create and play a second, new sound.</p> <p>It is recommended to create sound objects first, to simplify troubleshooting.</p> <h2 id="looping-conventional">Demo 4c: Looping a sound (conventional, onfinish()-based)</h2> <pre id="demo4c" class="block"><code>var s = soundManager.createSound({ id:'<span>hhCymbal</span>', url:'<span>../mpc/audio/AMB_HHOP.mp3</span>' }); function loopSound(sound) { sound.play({ onfinish: function() { loopSound(sound); } }); } loopSound(s); </code></pre> <button onclick="return doEval(document.getElementById('demo4c').innerHTML);return false">Do this</button> | <button onclick="soundManager.stop('hhCymbal')">make it stop!</button> <p>Note that there are issues with seamlessly-looping sounds, it is "close, but not perfect" with Flash 8/9 at this point.</p> <h2 id="looping">Demo 4d: Looping a sound ("loops" parameter method, Flash-only)</h2> <pre id="demo4d" class="block"><code>var s = soundManager.createSound({ id:'<span>hhCymbal</span>', url:'<span>../mpc/audio/AMB_HHOP.mp3</span>' }); s.play({ loops: 3 }); </code></pre> <button onclick="return doEval(document.getElementById('demo4d').innerHTML);return false">Do this</button> | <button onclick="soundManager.stop('hhCymbal')">make it stop!</button> <p>Looping is possible as shown above using Flash 9. <b>With flash 8, the sound must be preloaded before looping can begin</b> - eg. <code>autoLoad: true, onload: function() { this.play{loops:3} }</code>. For tighter looping, see See <a href="http://www.flickr.com/photos/schill/4499319436/" title="Seamless looping MP3 sounds in Flash">Seamless Looping MP3 in Flash</a> for further details.</p> <p><b>HTML5 support note:</b> Native HTML5 looping is infinite when enabled, and does not support arbitrary loop counts. For now, consider using your own function with <code>onfinish()</code> -&gt; <code>play()</code> if you want to loop a sound a certain number of times. Refer to the above <code>onfinish()</code> example for a basic idea.</p> <h2 id="onposition">Demo 4e: Sound timing notifications using onPosition()</h2> <pre id="demo4e" class="block"><code>var s = soundManager.getSoundById('<span>aCymbalSound</span>'); <span><span>// existing sound object</span></span> <span><span>// register some listeners (only do this once, they will work for subsequent plays)</span></span> if (typeof addedListeners === '<span>undefined</span>') { addedListeners = true; s.onPosition(<span>500</span>, function(eventPosition) { <span><span>// fire at 0.5 seconds</span></span> soundManager._writeDebug(<span>'Sound '+this.id+' has reached position '+eventPosition</span>); }); s.onPosition(<span>1000</span>, function(eventPosition) { <span><span>// fire at 1 second</span></span> soundManager._writeDebug(<span>'Sound '+this.id+' has reached position '+eventPosition</span>); }); } s.play({ whileplaying:function() { <span><span>// demo only: show sound position while playing, for context</span></span> soundManager._writeDebug('position = ' + this.position); } }); </code></pre> <button onclick="return doEval(document.getElementById('demo4e').innerHTML);return false">Do this</button> <p>onPosition() allows you to add an event listener for a given time (in miliseconds, watching the position property); the event fires when that time has been reached while a sound is playing.</p> <p>Note that for multiShot cases, the listeners will only fire for the original (first) shot because its position is the only one that is tracked within Flash.</p> <h2 id="onposition-2">Demo 4f: Sound timing with onPosition() and clearOnPosition()</h2> <pre id="demo4f" class="block"><code>var s = soundManager.getSoundById('<span>aCymbalSound</span>'); <span><span>// existing sound object</span></span> <span><span>// clear listeners from prior demo, if they were assigned...</span></span> if (typeof addedListeners !== '<span>undefined</span>') { soundManager._writeDebug(<span>'Removing previous demo listeners...'</span>); s.clearOnPosition(<span>500</span>);<span><span> // remove 500 msec listener</span></span> s.clearOnPosition(<span>1000</span>);<span><span> // remove 1000 msec listener</span></span> } s.onPosition(<span>750</span>, function(eventPosition) { <span><span>// fire at 0.75 seconds</span></span> soundManager._writeDebug(<span>'Sound '+this.id+' has reached position '+eventPosition</span>); <span><span>// and now, remove the listener using the eventPosition specified in this callback</span></span> <span><span>// so next time the sound plays, this listener will not fire</span></span> this.clearOnPosition(eventPosition); }); s.play({ whileplaying: function() { <span><span>// demo only: show sound position while playing, for context</span></span> soundManager._writeDebug(<span>'position = ' + this.position</span>); }, onfinish: function() { <span><span>// when the sound finishes, play it once more to show that the listener does not fire.</span></span> soundManager._writeDebug(<span>'Playing once more, onPosition() should not fire'</span>); this.play({ onfinish: function() { soundManager._writeDebug(<span>'"' + this.id + '" finished.'</span>); } }); } }); </code></pre> <button onclick="return doEval(document.getElementById('demo4f').innerHTML);return false">Do this</button> <p>When onPosition() is used, a listener is added and a callback is fired when the sound reaches the desired position. To remove the listener, clearOnPosition() is called using the same position value.</p> <h2 id="from-to">Demo 4g: Sound splicing / sampling with from: and to: parameters</h2> <pre id="demo4g" class="block"><code>var spliceDemo = soundManager.createSound({ id: '<span>spliceSound</span>', url: '<span>../mpc/audio/AMB_HHOP.mp3</span>' }); spliceDemo.stop(); <span><span>// optional: stop before re-starting sound (covers overlapping play attempts)</span></span> spliceDemo.play({ from: <span>500</span>, <span><span>// start playing at 500 msec</span></span> to: <span>1200</span>, <span><span>// end at 1200 msec</span></span> onstop: function() { soundManager._writeDebug(<span>'sound stopped at position ' + this.position</span>); <span><span>// note that the "to" target may be over-shot by 200+ msec, depending on polling and other factors.</span></span> } }); </code></pre> <button onclick="return doEval(document.getElementById('demo4g').innerHTML);return false">Do this</button> | <button onclick="soundManager.stop('spliceSound');soundManager.play('spliceSound','../mpc/audio/AMB_HHOP.mp3');return false">Play full sound</button> <p>By specifying "from" and "to" parameters to methods like play() and createSound(), you may play a sample (or segment) of audio from a larger file. An audio "sprite" of one file with many sounds is one way to think of this. Given timing accuracy of the "to" target may vary a lot, it is safest to have perhaps 500-msec gaps of silence between distinct sounds to ensure that no accidental overlaps occur.</p> <p>To tighten the accuracy of the "to" timing, <a href="?flash9-highperformance#from-to" onclick="window.location.replace(this.href);window.location.reload()">try using soundManager.useHighPerformance</a>.</p> <p>If HTML5 audio is being used, the sound should begin playing once a "canplay" event fires (after a connection has established), and the sound will then seek to the correct start position. When using flash, the whole audio file will be loaded before playback can begin.</p> <p>Given limitations, Flash 9's multiShot (chorusing) mode does not apply here. If you wish to trigger a sound numerous times, call stop() before play() to reset the sound each time, or make multiple sound objects that reuse the same sprite.</p> <h2 id="fitter-happier">Demo 4g: "Fitter, Happier" example using from: and to: parameters</h2> <p> <img src="../_image/fitter-happier-waveform.png" alt="Fitter, Happier waveform showing sound samples" /> </p> <p>Portions of a sound can be played by specifying <b>from</b> and <b>to</b> when calling <code>play()</code>. This can be useful for performance, i.e., having an "audio sprite" that loads in a single HTTP request.</p> <pre id="demo4h" class="block"><code>var fhDemo = soundManager.createSound({ id: '<span>fitterHappier</span>', url: '<span>http://freshly-ground.com/data/audio/sm2/fitter-happier-64kbps.mp3</span>' }); function playFromTo(nFrom, nTo) { fhDemo.stop(); <span><span>// optional: stop before re-starting sound (covers overlapping play attempts)</span></span> fhDemo.play({ from: nFrom, to: nTo, onstop: function() { soundManager._writeDebug(<span>'sound stopped at position ' + this.position</span>); <span><span>// note that the "to" target may be over-shot by 200+ msec, depending on polling and other factors.</span></span> } }); } function fitterHappier() { playFromTo(<span>128, 2100</span>); } function moreProductive() { playFromTo(<span>2500, 3850</span>); } function comfortable() { playFromTo(<span>4275, 5200</span>); } function notDrinkingTooMuch() { playFromTo(<span>5500, 7250</span>); } function regularExerciseAtTheGymThreeDaysAWeek() { playFromTo(<span>7500, 11500</span>); } function atEase() { <span><span>// interesting edge case: flash may cut off sound near end. // workarounds: use play({position:x}), or specify "to" time &gt; duration eg. 99999.</span></span> playFromTo(<span>11600, 99999</span>); } <span><span>// demo-specific hack: assign to the window object, so demo buttons work</span></span> window.fitterHappier = fitterHappier; window.moreProductive = moreProductive; window.comfortable = comfortable; window.notDrinkingTooMuch = notDrinkingTooMuch; window.regularExerciseAtTheGymThreeDaysAWeek = regularExerciseAtTheGymThreeDaysAWeek; window.atEase = atEase; </code></pre> <script> // do this work up front soundManager.onready(function() { doEval(document.getElementById('demo4h').innerHTML); }); </script> <button onclick="fitterHappier();return false">fitterHappier()</button> | <button onclick="moreProductive();return false">moreProductive()</button> | <button onclick="comfortable();return false">comfortable()</button> | <button onclick="notDrinkingTooMuch();return false">notDrinkingTooMuch()</button> | <button onclick="regularExerciseAtTheGymThreeDaysAWeek();return false">regularExerciseAtTheGymThreeDaysAWeek()</button> | <button onclick="atEase();return false">atEase()</button> <h2>Demo 5a: Set sound parameters, then play</h2> <pre class="block"><code>var sound = soundManager.getSoundById('<span>chinaCymbal</span>'); <span><span>// predefined/preloaded sound</span></span> sound.setPosition(<span>500</span>); <span><span>// 500 msec into sound</span></span> sound.setPan(<span>-75</span>); <span><span>// 75% left pan</span></span> sound.play(); </code></pre> <button onclick="soundManager._writeDebug('Demo 5',1);var sound=soundManager.getSoundById('chinaCymbal');sound.setPosition(500);sound.setPan(-75);sound.play()">Do this</button> | <button onclick="soundManager._writeDebug('Demo 5: sound from position:0',1);var sound=soundManager.getSoundById('chinaCymbal');sound.setPosition(0);sound.setPan(-75);sound.play()">Play from position:0</button> <p>This will set the position of an existing, pre-loaded sound, then play it.</p> <h3>Variant: play()</h3> <pre class="block"><code>var sound = soundManager.getSoundById('<span>chinaCymbal</span>'); sound.play({position:<span>500</span>,pan:<span>-75</span>}); </code></pre> <button onclick="soundManager._writeDebug('Demo 5 variant',1);var sound=soundManager.getSoundById('chinaCymbal');sound.play({position:500,pan:-75})">Do this</button> | <button onclick="soundManager._writeDebug('Demo 5: variant: sound from position:0',1);var sound = soundManager.getSoundById('chinaCymbal');sound.play({position:0,pan:-75})">Play from position:0</button> <p>Note that if planning to layer sounds with multiShot (Flash 9 only), this variant method will give best results as each new "channel" is started with parameters.</p> <h2>Demo 5b: Global sound muting</h2> <p>If not passed a sound ID, soundManager.mute() will mute all existing and newly-created sounds. soundManager.unmute() can also be passed a sound ID, and performs the inverse either on a single sound or all sounds.</p> <p>In this demo, all sounds are globally muted and unmuted a few times. Different parameters are used to help audibly separate the sounds.</p> <pre id="demo5b-1" class="block"><code>soundManager.mute(); <span><span>// mute all sounds</span></span> soundManager.createSound({ id: '<span>880hz</span>', url: '<span>../_mp3/880hz.mp3</span>', autoLoad:true, onload: function() { <span><span>// soundManager.mute(); // mute all sounds</span></span> <span><span>// play (muted) cymbal sound..</span></span> this.play({ volume:75, <span><span>// volume for when un-muted</span></span> pan:-75, <span><span>// mostly on left channel</span></span>&nbsp; <span><span>// .. and clean-up afterwards</span></span> onfinish:function() { this.destruct(); } }); this.setVolume(25); <span><span>// new volume for when un-muted..</span></span> soundManager.play('<span>s440hz</span>',{ pan:<span>75</span>, onfinish:function() { document.getElementById('<span>btn-d5b</span>').disabled = false; } }); <span><span>// once playing, toggle all sounds some more</span></span> setTimeout(soundManager.unmute,500); setTimeout(soundManager.mute,1000); setTimeout(soundManager.unmute,1500); setTimeout(soundManager.mute,2000); setTimeout(soundManager.unmute,2500); } });</code></pre> <button id="btn-d5b" onclick="this.disabled=true;return doEval(document.getElementById('demo5b-1').innerHTML)">Do this</button> <script type="text/javascript">document.getElementById('btn-d5b').disabled = false;</script> <h2>Demo 5c: Per-object sound muting</h2> <pre id="demo5c-1" class="block"><code>soundManager.createSound({ id: '<span>880hz</span>', url: '<span>../_mp3/880hz.mp3</span>', autoLoad:true, onload: function() { soundManager.mute('<span>880hz</span>'); <span><span>// mute this - alternately, this.mute() would work here</span></span> soundManager.play('<span>s440hz</span>',{ <span><span>// play another sound to demo muting</span></span> onfinish: function() { document.getElementById('<span>btn-d5c</span>').disabled = false; } }); <span><span>// play 880hz (muted)..</span></span> this.play({ volume:75, <span><span>// .. and clean-up afterwards</span></span> onfinish:function() { this.destruct(); } }); this.setVolume(50); <span><span>// still muted, however..</span></span> <span><span>// mute/unmute china cymbal some more</span></span> <span><span>// mute sound calls: soundManager.mute('<span>880hz</span>'), or soundManager.getSoundById('<span>880hz</span>').mute();</span></span> setTimeout(this.unmute,250); setTimeout(this.mute,500); setTimeout(this.unmute,750); setTimeout(this.mute,1000); setTimeout(this.unmute,1250); } });</code></pre> <button id="btn-d5c" onclick="this.disabled=true;return doEval(document.getElementById('demo5c-1').innerHTML)">Do this</button> <script type="text/javascript">document.getElementById('btn-d5c').disabled = false;</script> <h2>Demo 6: Create, play, unload and destroy a sound</h2> <pre id="demo6" class="block"><code>var foo = soundManager.createSound({ id: '<span>fooSound</span>', url: '<span>../mpc/audio/AMB_BD_1.mp3</span>' }); <span><span>// soundManager.play('<span>fooSound</span>'); // (Some time later on...) // soundManager.unload('<span>fooSound</span>'); - release the loaded MP3 // soundManager.destroySound('<span>fooSound</span>'); - destroy the sound, freeing up memory etc. Also calls unload(). // Alternate (demo) approach, call methods directly on sound object itself:</span></span> foo.play({ onfinish:function() { <span><span>// once sound has loaded and played, unload and destroy it.</span></span> this.destruct(); <span><span>// will also try to unload before destroying.</span></span> } });</code></pre> <button onclick="return doEval(document.getElementById('demo6').innerHTML)">Do this</button> <h2>Demo 7: Create, manually pre-load and finally play a sound</h2> <pre id="demo7" class="block"><code>var preload = soundManager.createSound({ id: '<span>preloadSound</span>', url: '<span>../mpc/audio/AMB_HHOP.mp3</span>' }); preload.load(); <span><span>// load the sound ahead of time</span></span> setTimeout(preload.play,1500); <span><span>// and start playing it 1.5 seconds from now</span></span> </code></pre> <button onclick="return doEval(document.getElementById('demo7').innerHTML)">Do this</button> <h2>Demo 8: Create and play an invalid sound (404)</h2> <pre id="demo8" class="block"><code>var bad = soundManager.createSound({ id:'<span>badSound</span>', url:'<span>badurl.mp3</span>', onload: function(bSuccess) { soundManager._writeDebug('<span>sound </span>'+(bSuccess?'<span>loaded!</span>':'<span>did NOT load.</span>')); } }); bad.play(); </code></pre> <button onclick="return doEval(document.getElementById('demo8').innerHTML)">Do this</button> <h2>Demo 9: Create and destroy a sound at once (unusual crash testcase)</h2> <pre id="demo9" class="block"><code>var s = soundManager.createSound({ id:'<span>testcase</span>', url:'<span>../mpc/audio/AMB_HHOP.mp3</span>' }); s.play(); s.destruct(); </code></pre> <button onclick="return doEval(document.getElementById('demo9').innerHTML)">Do this</button> <h2>Demo 10: Sound timing (position accuracy testcase)</h2> <p>The Flash 9 version seems to resume the sound 1 msec earlier than it should, perhaps related to the timing/delay issue most noticeable on Windows.</p> <pre id="demo10" class="block"><code>var count = 0; var pos = -1; var s = soundManager.createSound({ id: '<span>s</span>', url: '<span>../mpc/audio/CHINA_1.mp3</span>', whileplaying: function() { if (count == 0) { if (this.position > 1000) { this.pause(); pos = this.position; count++; this.resume(); } } else if (count == 1) { soundManager._writeDebug('<span>old position: </span>' + pos); soundManager._writeDebug('<span>new position: </span>' + this.position); <span><span>// See that this.position is less than pos!</span></span> count++; } }, onfinish: function() { this.destruct(); } }); s.play();</code></pre> <button onclick="return doEval(document.getElementById('demo10').innerHTML)">Do this</button> <h2>Demo 11: Inline whileplaying() event assignment</h2> <p class="in">Note that when using the Flash 9 version of SM2 with Flash 9 and 10 plugins, flash/OS-related delay conditions may result in the <code>position</code> property being less than the <code>duration</code> property, even by the end of the sound.</p> <pre id="demo11" class="block"><code>var foo = soundManager.createSound({ id: '<span>bar</span>', url: '<span>../mpc/audio/CRASH_1.mp3</span>' }); foo.options.whileplaying = function() { soundManager._writeDebug('<span>whileplaying(): </span>'+this.position+'<span> / </span>'+this.duration); } foo.play(); <span><span>// note: assign .options before calling .play(), as that "bakes" the options into a play instance object. // the below "late" event handler assignment will have no effect on the already-playing instance.</span></span> foo.options.onfinish = function() { soundManager._writeDebug(this.id+'<span> stopped.</span>'); } </code></pre> <button onclick="return doEval(document.getElementById('demo11').innerHTML)">Do this</button> <h2>Demo 12: 48 KHz MP3 sampling rate playback issue workaround</h2> <p>To work around a known "chipmunk" <a href="http://bugs.adobe.com/jira/browse/FP-862">sampling rate issue with 48 KHz MP3s</a> in Flash, one can apparently load a sound using Flash 9 with stream = false, and then call play() once the sound has fully-loaded. Exactly why this works is not known.</p> <pre id="demo12" class="block"><code>var fortyeight = soundManager.createSound({ id: '<span>s-48khz</span>', url: '<span>http://freshly-ground.com/data/audio/48khz-test.mp3</span>' }); if (!fortyeight.loaded) { <span><span>// first time loading/playing</span></span> fortyeight.load({ stream: false, onload: function() { <span><span>// sound has fully-loaded</span></span> this.play(); } }); } else { <span><span>// sound has already loaded</span></span> fortyeight.play(); } </code></pre> <button onclick="return doEval(document.getElementById('demo12').innerHTML)">Do this</button> <button onclick="soundManager.stop('s-48khz')">Make it stop!</button> <h2>Demo 13: autoLoad:true + play() testcase</h2> <p>Bug testcase (Flash 8 version-specific): creating a sound with autoLoad:true and immediately calling play() does not work.</p> <pre id="demo13" class="block"><code>var autoLoadTest = soundManager.createSound({ id: '<span>autoLoadTest</span>', url: getRandomMP3URL(), onload: function() { soundManager._writeDebug(this.id+'<span> loaded.</span>'); }, onplay: function() { soundManager._writeDebug('<span>Starting sound: </span>'+this.id); }, autoPlay: false, autoLoad: true, stream: true }); <span><span>// autoLoadTest.play(); // sound will not start</span></span> setTimeout(autoLoadTest.play,1000); <span><span>// may work with a delay?</span></span> </code></pre> <p>Under Flash 8, this case does not work as expected. Even with the delay, the sound does not begin playing as soon as expected - sometimes it fires after the sound loads, in fact. For this reason, avoid using <code class="in">autoLoad:true</code> if you intend to play the sound shortly after creating it when using Flash 8.</p> <button onclick="return doEval(document.getElementById('demo13').innerHTML)">Do this</button> <button onclick="soundManager.stop('autoLoadTest')">Make it stop!</button> <h2>Demo 14: autoPlay + onfinish() testcase</h2> <p>Bug testcase (Flash 8 version-specific): onfinish() does not fire with autoPlay:true</p> <pre id="demo14" class="block"><code>var sound = soundManager.createSound({ id: '<span>demo14</span>', url: '<span>../mpc/audio/AMB_SN13.mp3</span>', onfinish: function() { soundManager._writeDebug(this.id+'<span> finished (now destroying)</span>'); <span><span>// destroy this sound</span></span> this.destruct(); }, autoPlay: true, multiShot: false }); </code></pre> <button onclick="return doEval(document.getElementById('demo14').innerHTML)">Do this</button> <h2>Demo 15: onstop() -&gt; unload() testcase</h2> <p>Bug testcase: unload() from onstop() does not work</p> <pre id="demo15" class="block"><code>var sound16 = soundManager.createSound({ id: '<span>demo15</span>', url: getRandomMP3URL(), onstop: function() { soundManager.unload(this.id); }, onload: function() { soundManager._writeDebug('<span>loaded</span>'); } }); sound15.play(); setTimeout(sound15.stop,1500); </code></pre> <button onclick="return doEval(document.getElementById('demo15').innerHTML)">Do this</button> <h2>Demo 16: Buffering event handler/property example (Flash 9 only)</h2> <p>Reporting the isBuffering property of a SMSound object</p> <pre id="demo16" class="block"><code>if (soundManager.flashVersion != 8) { var sound16 = soundManager.createSound({ id: '<span>demo16</span>', url: getRandomMP3URL(), onbufferchange: function() { soundManager._writeDebug('<span>Buffering </span>'+(this.isBuffering?'<span>started</span>':'<span>stopped</span>')+'<span>.</span>'); }, onload: function() { soundManager._writeDebug(this.id+'<span> loaded.</span>'); } }); sound16.play(); } </code></pre> <button onclick="return doEval(document.getElementById('demo16').innerHTML)">Do this</button> <button onclick="soundManager.stop('demo16')">Make it stop!</button> <span id="flash-ram-use" title="Flash plugin RAM use (across this browser)" style="position:fixed;_position:absolute;top:0.5em;right:0.5em;background:#666;color:#fff;font-weight:bold;padding:0.3em 0.4em;cursor:pointer;cursor:hand;display:none" onclick="this.style.display='none';window.clearTimeout(t)">N/A</span> </div> </body> </html>
moodledata/lang/pt_br_utf8/help/quiz/overviewdownload.html
eduardolfalcao/dialoga19
<h1>Download da Sinopse</h1> <p>Você pode querer baixar os dados mostrados na tabela da tela para análise posterior. Pode-se escolher entre dois formatos de arquivo para os dados baixados.<br /> Em cada caso os dados serão apresentados como uma tabela com os títulos apropriados, como na tela. Se a tabela estiver paginada, todos os dados serão baixados em um único arquivo. </p> <h2>Formato de planilha Excel:</h2> <p>Você obterá uma planilha .xls.</p> <h2>Formato texto</h2> <p>Neste caso, os dados serão gravados como um arquivo texto. Uma linha para cada coluna da tabela com os dados separados por tabuladores.</p>
wp-content/plugins/youtube-video-player/fornt_end/styles/baze_styles_youtube.css
cpuzzuol/library-wordpress
#TB_ajaxContent iframe{ margin:0px !important; padding:0px !important; } #TB_ajaxContent{ padding:0px !important; margin:0 auto !important; }
arduino/libraries/CmdMessenger/Documentation/Arduino/html/class_command_messenger_1_1_time_utils.html
jgrizou/robot_2WD
<!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.5"/> <title>CmdMessenger: CommandMessenger.TimeUtils Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">CmdMessenger &#160;<span id="projectnumber">3.0</span> </div> <div id="projectbrief">CmdMessenger is a serial port messaging library for the Arduino</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;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 id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespace_command_messenger.html">CommandMessenger</a></li><li class="navelem"><a class="el" href="class_command_messenger_1_1_time_utils.html">TimeUtils</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-static-attribs">Static Public Attributes</a> &#124; <a href="#properties">Properties</a> &#124; <a href="class_command_messenger_1_1_time_utils-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">CommandMessenger.TimeUtils Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>Class to get a timestamp <a href="class_command_messenger_1_1_time_utils.html#details">More...</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a> Static Public Attributes</h2></td></tr> <tr class="memitem:a6d3791c362556b7584cd3a31ae65335b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6d3791c362556b7584cd3a31ae65335b"></a> static DateTime&#160;</td><td class="memItemRight" valign="bottom"><b>Jan1St1970</b> = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)</td></tr> <tr class="separator:a6d3791c362556b7584cd3a31ae65335b"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> Properties</h2></td></tr> <tr class="memitem:a9cd86383346c5ca91878732df7e2e7c7"><td class="memItemLeft" align="right" valign="top">static long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_command_messenger_1_1_time_utils.html#a9cd86383346c5ca91878732df7e2e7c7">Millis</a><code> [get]</code></td></tr> <tr class="memdesc:a9cd86383346c5ca91878732df7e2e7c7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the milliseconds since 1 Jan 1970. <a href="#a9cd86383346c5ca91878732df7e2e7c7">More...</a><br/></td></tr> <tr class="separator:a9cd86383346c5ca91878732df7e2e7c7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aefb2384059f388384b7115d91e381625"><td class="memItemLeft" align="right" valign="top">static long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_command_messenger_1_1_time_utils.html#aefb2384059f388384b7115d91e381625">Seconds</a><code> [get]</code></td></tr> <tr class="memdesc:aefb2384059f388384b7115d91e381625"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the seconds since 1 Jan 1970. <a href="#aefb2384059f388384b7115d91e381625">More...</a><br/></td></tr> <tr class="separator:aefb2384059f388384b7115d91e381625"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Class to get a timestamp </p> </div><h2 class="groupheader">Property Documentation</h2> <a class="anchor" id="a9cd86383346c5ca91878732df7e2e7c7"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">long CommandMessenger.TimeUtils.Millis</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Gets the milliseconds since 1 Jan 1970. </p> <p>The milliseconds since 1 Jan 1970. </p> <p>Referenced by <a class="el" href="class_command_messenger_1_1_serial_port_manager.html#af3a9e59fa4ee2fd5391a77158793d0e4">CommandMessenger.SerialPortManager.ReadLine()</a>.</p> </div> </div> <a class="anchor" id="aefb2384059f388384b7115d91e381625"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">long CommandMessenger.TimeUtils.Seconds</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Gets the seconds since 1 Jan 1970. </p> <p>The seconds since 1 Jan 1970. </p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>D:/My Documents/Github/Arduino-Code-and-Libraries/Libraries/CmdMessenger/CSharp/CommandMessenger/TimeUtils.cs</li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Wed Sep 4 2013 21:46:38 for CmdMessenger by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.5 </small></address> </body> </html>
coflo-0.0.4/third_party/boost_1_48_0/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html
charlesDGY/coflo
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Options for Literal Strings</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="Boost.Regex"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions"> <link rel="next" href="../match_flag_type.html" title="match_flag_type"> </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="syntax_option_type_basic.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../syntax_option_type.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="../match_flag_type.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_regex.ref.syntax_option_type.syntax_option_type_literal"></a><a class="link" href="syntax_option_type_literal.html" title="Options for Literal Strings">Options for Literal Strings</a> </h4></div></div></div> <p> The following must always be set to interpret the expression as a string literal: </p> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Element </p> </th> <th> <p> Standardized </p> </th> <th> <p> Effect when set </p> </th> </tr></thead> <tbody><tr> <td> <p> literal </p> </td> <td> <p> Yes </p> </td> <td> <p> Treat the string as a literal (no special characters). </p> </td> </tr></tbody> </table></div> <p> The following options may also be combined with the literal flag: </p> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Element </p> </th> <th> <p> Standardized </p> </th> <th> <p> Effect when set </p> </th> </tr></thead> <tbody> <tr> <td> <p> icase </p> </td> <td> <p> Yes </p> </td> <td> <p> Specifies that matching of regular expressions against a character container sequence shall be performed without regard to case. </p> </td> </tr> <tr> <td> <p> optimize </p> </td> <td> <p> Yes </p> </td> <td> <p> Specifies that the regular expression engine should pay more attention to the speed with which regular expressions are matched, and less to the speed with which regular expression objects are constructed. Otherwise it has no detectable effect on the program output. This currently has no effect for Boost.Regex. </p> </td> </tr> </tbody> </table></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 &#169; 1998-2010 John Maddock<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="syntax_option_type_basic.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../syntax_option_type.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="../match_flag_type.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/share/doc/gcc-linaro-arm-linux-gnueabihf-raspbian/html/gcc/Option-Index.html
sweetpi/node-module-compiler
<html lang="en"> <head> <title>Option Index - Using the GNU Compiler Collection (GCC)</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using the GNU Compiler Collection (GCC)"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="prev" href="Contributors.html#Contributors" title="Contributors"> <link rel="next" href="Keyword-Index.html#Keyword-Index" title="Keyword Index"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988-2013 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Funding Free Software'', the Front-Cover Texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled ``GNU Free Documentation License''. (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development.--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Option-Index"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="Keyword-Index.html#Keyword-Index">Keyword Index</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Contributors.html#Contributors">Contributors</a>, Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a> <hr> </div> <h2 class="unnumbered">Option Index</h2> <p>GCC's command line options are indexed here without any initial &lsquo;<samp><span class="samp">-</span></samp>&rsquo; or &lsquo;<samp><span class="samp">--</span></samp>&rsquo;. Where an option has both positive and negative forms (such as <samp><span class="option">-f</span><var>option</var></samp> and <samp><span class="option">-fno-</span><var>option</var></samp>), relevant entries in the manual are indexed under the most appropriate form; it may sometimes be useful to look up both forms. <ul class="index-op" compact> <li><a href="Overall-Options.html#index-g_t_0023_0023_0023-85"><code>###</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Optimize-Options.html#index-g_t_002dfno_002dkeep_002dinline_002ddllexport-755"><code>-fno-keep-inline-dllexport</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="RX-Options.html#index-g_t_002dmcpu-2064"><code>-mcpu</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="VMS-Options.html#index-g_t_002dmpointer_002dsize_003d_0040var_007bsize_007d-2302"><code>-mpointer-size=</code><var>size</var></a>: <a href="VMS-Options.html#VMS-Options">VMS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-g_t8bit_002didiv-1501"><code>8bit-idiv</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Preprocessor-Options.html#index-A-1008"><code>A</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-all_005fload-1253"><code>all_load</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-allowable_005fclient-1260"><code>allowable_client</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Non_002dbugs.html#index-ansi-3588"><code>ansi</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="Other-Builtins.html#index-ansi-3353"><code>ansi</code></a>: <a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></li> <li><a href="Preprocessor-Options.html#index-ansi-976"><code>ansi</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C-Dialect-Options.html#index-ansi-105"><code>ansi</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Standards.html#index-ansi-61"><code>ansi</code></a>: <a href="Standards.html#Standards">Standards</a></li> <li><a href="Darwin-Options.html#index-arch_005ferrors_005ffatal-1254"><code>arch_errors_fatal</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="C-Dialect-Options.html#index-aux_002dinfo-108"><code>aux-info</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-avx256_002dsplit_002dunaligned_002dload-1502"><code>avx256-split-unaligned-load</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-avx256_002dsplit_002dunaligned_002dstore-1503"><code>avx256-split-unaligned-store</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Directory-Options.html#index-B-1063"><code>B</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="VxWorks-Options.html#index-Bdynamic-2307"><code>Bdynamic</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="Darwin-Options.html#index-bind_005fat_005fload-1255"><code>bind_at_load</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="VxWorks-Options.html#index-Bstatic-2306"><code>Bstatic</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="Darwin-Options.html#index-bundle-1256"><code>bundle</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-bundle_005floader-1257"><code>bundle_loader</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-c-1029"><code>c</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-C-1015"><code>C</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-c-79"><code>c</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Darwin-Options.html#index-client_005fname-1261"><code>client_name</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-compatibility_005fversion-1262"><code>compatibility_version</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Debugging-Options.html#index-coverage-586"><code>coverage</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-current_005fversion-1263"><code>current_version</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-D-944"><code>D</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-d-592"><code>d</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-dA-662"><code>dA</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-da-660"><code>da</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Preprocessor-Options.html#index-dD-1010"><code>dD</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-dD-663"><code>dD</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-dead_005fstrip-1264"><code>dead_strip</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-dependency_002dfile-1265"><code>dependency-file</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Debugging-Options.html#index-dH-664"><code>dH</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Preprocessor-Options.html#index-dI-1012"><code>dI</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-dM-1009"><code>dM</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-dN-1011"><code>dN</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-dP-666"><code>dP</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-dp-665"><code>dp</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Preprocessor-Options.html#index-dU-1013"><code>dU</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-dumpmachine-726"><code>dumpmachine</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-dumpspecs-728"><code>dumpspecs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-dumpversion-727"><code>dumpversion</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-dx-667"><code>dx</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-dylib_005ffile-1266"><code>dylib_file</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-dylinker_005finstall_005fname-1267"><code>dylinker_install_name</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-dynamic-1268"><code>dynamic</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-dynamiclib-1258"><code>dynamiclib</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-E-1031"><code>E</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Overall-Options.html#index-E-81"><code>E</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="MIPS-Options.html#index-EB-1731"><code>EB</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-EL-1732"><code>EL</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Darwin-Options.html#index-exported_005fsymbols_005flist-1269"><code>exported_symbols_list</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-F-1244"><code>F</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fabi_002dversion-136"><code>fabi-version</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Overall-Options.html#index-fada_002dspec_002dparent-93"><code>fada-spec-parent</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Optimize-Options.html#index-faggressive_002dloop_002doptimizations-780"><code>faggressive-loop-optimizations</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-falign_002dfunctions-886"><code>falign-functions</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-falign_002djumps-889"><code>falign-jumps</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-falign_002dlabels-887"><code>falign-labels</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-falign_002dloops-888"><code>falign-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fassociative_002dmath-910"><code>fassociative-math</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fasynchronous_002dunwind_002dtables-2339"><code>fasynchronous-unwind-tables</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fauto_002dinc_002ddec-783"><code>fauto-inc-dec</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fbounds_002dcheck-2331"><code>fbounds-check</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fbranch_002dprobabilities-920"><code>fbranch-probabilities</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fbranch_002dtarget_002dload_002doptimize-932"><code>fbranch-target-load-optimize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fbranch_002dtarget_002dload_002doptimize2-933"><code>fbranch-target-load-optimize2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fbtr_002dbb_002dexclusive-934"><code>fbtr-bb-exclusive</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fcall_002dsaved-2359"><code>fcall-saved</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fcall_002dused-2358"><code>fcall-used</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fcaller_002dsaves-822"><code>fcaller-saves</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcheck_002ddata_002ddeps-855"><code>fcheck-data-deps</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fcheck_002dnew-138"><code>fcheck-new</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fcombine_002dstack_002dadjustments-823"><code>fcombine-stack-adjustments</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Variable-Attributes.html#index-fcommon-2767"><code>fcommon</code></a>: <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a></li> <li><a href="Debugging-Options.html#index-fcompare_002ddebug-563"><code>fcompare-debug</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fcompare_002ddebug_002dsecond-565"><code>fcompare-debug-second</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fcompare_002delim-897"><code>fcompare-elim</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C-Dialect-Options.html#index-fcond_002dmismatch-125"><code>fcond-mismatch</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fconserve_002dstack-824"><code>fconserve-stack</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fconstant_002dstring_002dclass-212"><code>fconstant-string-class</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fconstexpr_002ddepth-139"><code>fconstexpr-depth</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fcprop_002dregisters-898"><code>fcprop-registers</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcrossjumping-782"><code>fcrossjumping</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcse_002dfollow_002djumps-772"><code>fcse-follow-jumps</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcse_002dskip_002dblocks-773"><code>fcse-skip-blocks</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcx_002dfortran_002drules-919"><code>fcx-fortran-rules</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fcx_002dlimited_002drange-918"><code>fcx-limited-range</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fdata_002dsections-931"><code>fdata-sections</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fdbg_002dcnt-589"><code>fdbg-cnt</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdbg_002dcnt_002dlist-588"><code>fdbg-cnt-list</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fdce-784"><code>fdce</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-fdebug_002dcpp-997"><code>fdebug-cpp</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-fdebug_002dprefix_002dmap-569"><code>fdebug-prefix-map</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdebug_002dtypes_002dsection-549"><code>fdebug-types-section</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fdeduce_002dinit_002dlist-140"><code>fdeduce-init-list</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fdelayed_002dbranch-799"><code>fdelayed-branch</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fdelete_002ddead_002dexceptions-2337"><code>fdelete-dead-exceptions</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fdelete_002dnull_002dpointer_002dchecks-788"><code>fdelete-null-pointer-checks</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fdevirtualize-789"><code>fdevirtualize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Language-Independent-Options.html#index-fdiagnostics_002dshow_002dcaret-245"><code>fdiagnostics-show-caret</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Language-Independent-Options.html#index-fdiagnostics_002dshow_002dlocation-241"><code>fdiagnostics-show-location</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Language-Independent-Options.html#index-fdiagnostics_002dshow_002doption-243"><code>fdiagnostics-show-option</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Preprocessor-Options.html#index-fdirectives_002donly-991"><code>fdirectives-only</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-fdisable_002d-590"><code>fdisable-</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Interoperation.html#index-fdollars_002din_002didentifiers-3542"><code>fdollars-in-identifiers</code></a>: <a href="Interoperation.html#Interoperation">Interoperation</a></li> <li><a href="Preprocessor-Options.html#index-fdollars_002din_002didentifiers-992"><code>fdollars-in-identifiers</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Optimize-Options.html#index-fdse-785"><code>fdse</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Overall-Options.html#index-fdump_002dada_002dspec-92"><code>fdump-ada-spec</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dclass_002dhierarchy-672"><code>fdump-class-hierarchy</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dfinal_002dinsns-562"><code>fdump-final-insns</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Overall-Options.html#index-fdump_002dgo_002dspec-94"><code>fdump-go-spec</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dipa-673"><code>fdump-ipa</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dnoaddr-668"><code>fdump-noaddr</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dpasses-674"><code>fdump-passes</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dalignments-593"><code>fdump-rtl-alignments</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dall-661"><code>fdump-rtl-all</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dasmcons-594"><code>fdump-rtl-asmcons</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dauto_005finc_005fdec-595"><code>fdump-rtl-auto_inc_dec</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dbarriers-596"><code>fdump-rtl-barriers</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dbbpart-597"><code>fdump-rtl-bbpart</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dbbro-598"><code>fdump-rtl-bbro</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dbtl2-599"><code>fdump-rtl-btl2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dbypass-601"><code>fdump-rtl-bypass</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dce1-604"><code>fdump-rtl-ce1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dce2-605"><code>fdump-rtl-ce2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dce3-606"><code>fdump-rtl-ce3</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcombine-602"><code>fdump-rtl-combine</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcompgotos-603"><code>fdump-rtl-compgotos</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcprop_005fhardreg-607"><code>fdump-rtl-cprop_hardreg</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcsa-608"><code>fdump-rtl-csa</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcse1-609"><code>fdump-rtl-cse1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dcse2-610"><code>fdump-rtl-cse2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddbr-612"><code>fdump-rtl-dbr</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddce-611"><code>fdump-rtl-dce</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddce1-613"><code>fdump-rtl-dce1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddce2-614"><code>fdump-rtl-dce2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddfinish-659"><code>fdump-rtl-dfinish</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002ddfinit-658"><code>fdump-rtl-dfinit</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002deh-615"><code>fdump-rtl-eh</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002deh_005franges-616"><code>fdump-rtl-eh_ranges</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dexpand-617"><code>fdump-rtl-expand</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dfwprop1-618"><code>fdump-rtl-fwprop1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dfwprop2-619"><code>fdump-rtl-fwprop2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dgcse1-620"><code>fdump-rtl-gcse1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dgcse2-621"><code>fdump-rtl-gcse2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dinit_002dregs-622"><code>fdump-rtl-init-regs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dinitvals-623"><code>fdump-rtl-initvals</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dinto_005fcfglayout-624"><code>fdump-rtl-into_cfglayout</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dira-625"><code>fdump-rtl-ira</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002djump-626"><code>fdump-rtl-jump</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dloop2-627"><code>fdump-rtl-loop2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dmach-628"><code>fdump-rtl-mach</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dmode_005fsw-629"><code>fdump-rtl-mode_sw</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002doutof_005fcfglayout-631"><code>fdump-rtl-outof_cfglayout</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dpeephole2-632"><code>fdump-rtl-peephole2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dpostreload-633"><code>fdump-rtl-postreload</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dpro_005fand_005fepilogue-634"><code>fdump-rtl-pro_and_epilogue</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dregclass-655"><code>fdump-rtl-regclass</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dregmove-635"><code>fdump-rtl-regmove</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002drnreg-630"><code>fdump-rtl-rnreg</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsched1-636"><code>fdump-rtl-sched1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsched2-637"><code>fdump-rtl-sched2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsee-638"><code>fdump-rtl-see</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dseqabstr-639"><code>fdump-rtl-seqabstr</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dshorten-640"><code>fdump-rtl-shorten</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsibling-641"><code>fdump-rtl-sibling</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsms-647"><code>fdump-rtl-sms</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsplit1-642"><code>fdump-rtl-split1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsplit2-643"><code>fdump-rtl-split2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsplit3-644"><code>fdump-rtl-split3</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsplit4-645"><code>fdump-rtl-split4</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsplit5-646"><code>fdump-rtl-split5</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dstack-648"><code>fdump-rtl-stack</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsubreg1-649"><code>fdump-rtl-subreg1</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsubreg2-650"><code>fdump-rtl-subreg2</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsubregs_005fof_005fmode_005ffinish-657"><code>fdump-rtl-subregs_of_mode_finish</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dsubregs_005fof_005fmode_005finit-656"><code>fdump-rtl-subregs_of_mode_init</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dunshare-651"><code>fdump-rtl-unshare</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dvartrack-652"><code>fdump-rtl-vartrack</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dvregs-653"><code>fdump-rtl-vregs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002drtl_002dweb-654"><code>fdump-rtl-web</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dstatistics-675"><code>fdump-statistics</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtranslation_002dunit-671"><code>fdump-translation-unit</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree-676"><code>fdump-tree</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dalias-683"><code>fdump-tree-alias</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dall-703"><code>fdump-tree-all</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dccp-684"><code>fdump-tree-ccp</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dcfg-680"><code>fdump-tree-cfg</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dch-681"><code>fdump-tree-ch</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dcopyprop-688"><code>fdump-tree-copyprop</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dcopyrename-698"><code>fdump-tree-copyrename</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002ddce-690"><code>fdump-tree-dce</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002ddom-694"><code>fdump-tree-dom</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002ddse-695"><code>fdump-tree-dse</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dforwprop-697"><code>fdump-tree-forwprop</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dfre-687"><code>fdump-tree-fre</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dgimple-679"><code>fdump-tree-gimple</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dmudflap-691"><code>fdump-tree-mudflap</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dnrv-699"><code>fdump-tree-nrv</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002doptimized-678"><code>fdump-tree-optimized</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002doriginal-677"><code>fdump-tree-original</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dphiopt-696"><code>fdump-tree-phiopt</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dpre-686"><code>fdump-tree-pre</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dsink-693"><code>fdump-tree-sink</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dslp-701"><code>fdump-tree-slp</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dsra-692"><code>fdump-tree-sra</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dssa-682"><code>fdump-tree-ssa</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dstore_005fcopyprop-689"><code>fdump-tree-store_copyprop</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dstoreccp-685"><code>fdump-tree-storeccp</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dvect-700"><code>fdump-tree-vect</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dtree_002dvrp-702"><code>fdump-tree-vrp</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dunnumbered-669"><code>fdump-unnumbered</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdump_002dunnumbered_002dlinks-670"><code>fdump-unnumbered-links</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fdwarf2_002dcfi_002dasm-570"><code>fdwarf2-cfi-asm</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fearly_002dinlining-752"><code>fearly-inlining</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-feliminate_002ddwarf2_002ddups-566"><code>feliminate-dwarf2-dups</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-feliminate_002dunused_002ddebug_002dsymbols-548"><code>feliminate-unused-debug-symbols</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-feliminate_002dunused_002ddebug_002dtypes-729"><code>feliminate-unused-debug-types</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fenable_002d-591"><code>fenable-</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Code-Gen-Options.html#index-fexceptions-2335"><code>fexceptions</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fexcess_002dprecision-905"><code>fexcess-precision</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-fexec_002dcharset-999"><code>fexec-charset</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Optimize-Options.html#index-fexpensive_002doptimizations-790"><code>fexpensive-optimizations</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fext_002dnumeric_002dliterals-191"><code>fext-numeric-literals</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-fextended_002didentifiers-993"><code>fextended-identifiers</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fextern_002dtls_002dinit-144"><code>fextern-tls-init</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-ffast_002dmath-907"><code>ffast-math</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ffat_002dlto_002dobjects-896"><code>ffat-lto-objects</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ffinite_002dmath_002donly-912"><code>ffinite-math-only</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Darwin-Options.html#index-ffix_002dand_002dcontinue-1251"><code>ffix-and-continue</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Code-Gen-Options.html#index-ffixed-2357"><code>ffixed</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Disappointments.html#index-ffloat_002dstore-3572"><code>ffloat-store</code></a>: <a href="Disappointments.html#Disappointments">Disappointments</a></li> <li><a href="Optimize-Options.html#index-ffloat_002dstore-903"><code>ffloat-store</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-ffor_002dscope-146"><code>ffor-scope</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fforward_002dpropagate-743"><code>fforward-propagate</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ffp_002dcontract-744"><code>ffp-contract</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Function-Attributes.html#index-ffreestanding-2615"><code>ffreestanding</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Warning-Options.html#index-ffreestanding-277"><code>ffreestanding</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C-Dialect-Options.html#index-ffreestanding-114"><code>ffreestanding</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Standards.html#index-ffreestanding-64"><code>ffreestanding</code></a>: <a href="Standards.html#Standards">Standards</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-ffriend_002dinjection-141"><code>ffriend-injection</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-ffunction_002dsections-930"><code>ffunction-sections</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fgcse-775"><code>fgcse</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fgcse_002dafter_002dreload-779"><code>fgcse-after-reload</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fgcse_002dlas-778"><code>fgcse-las</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fgcse_002dlm-776"><code>fgcse-lm</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fgcse_002dsm-777"><code>fgcse-sm</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fgnu_002druntime-213"><code>fgnu-runtime</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="C-Dialect-Options.html#index-fgnu_002dtm-118"><code>fgnu-tm</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="C-Dialect-Options.html#index-fgnu89_002dinline-107"><code>fgnu89-inline</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fgraphite_002didentity-852"><code>fgraphite-identity</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C-Dialect-Options.html#index-fhosted-112"><code>fhosted</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fif_002dconversion-786"><code>fif-conversion</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fif_002dconversion2-787"><code>fif-conversion2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Darwin-Options.html#index-filelist-1270"><code>filelist</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-findirect_002ddata-1252"><code>findirect-data</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Optimize-Options.html#index-findirect_002dinlining-749"><code>findirect-inlining</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-finhibit_002dsize_002ddirective-2347"><code>finhibit-size-directive</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-finline_002dfunctions-750"><code>finline-functions</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-finline_002dfunctions_002dcalled_002donce-751"><code>finline-functions-called-once</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-finline_002dlimit-754"><code>finline-limit</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-finline_002dsmall_002dfunctions-748"><code>finline-small-functions</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-finput_002dcharset-1003"><code>finput-charset</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Function-Attributes.html#index-finstrument_002dfunctions-2651"><code>finstrument-functions</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Code-Gen-Options.html#index-finstrument_002dfunctions-2361"><code>finstrument-functions</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-finstrument_002dfunctions_002dexclude_002dfile_002dlist-2362"><code>finstrument-functions-exclude-file-list</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-finstrument_002dfunctions_002dexclude_002dfunction_002dlist-2363"><code>finstrument-functions-exclude-function-list</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dcp-837"><code>fipa-cp</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dcp_002dclone-838"><code>fipa-cp-clone</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dprofile-836"><code>fipa-profile</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dpta-835"><code>fipa-pta</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dpure_002dconst-833"><code>fipa-pure-const</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dreference-834"><code>fipa-reference</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fipa_002dsra-753"><code>fipa-sra</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fira_002dhoist_002dpressure-794"><code>fira-hoist-pressure</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fira_002dloop_002dpressure-795"><code>fira-loop-pressure</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fira_002dverbose-798"><code>fira-verbose</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fivopts-858"><code>fivopts</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Inline.html#index-fkeep_002dinline_002dfunctions-2798"><code>fkeep-inline-functions</code></a>: <a href="Inline.html#Inline">Inline</a></li> <li><a href="Optimize-Options.html#index-fkeep_002dinline_002dfunctions-756"><code>fkeep-inline-functions</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fkeep_002dstatic_002dconsts-757"><code>fkeep-static-consts</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Darwin-Options.html#index-flat_005fnamespace-1271"><code>flat_namespace</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="C-Dialect-Options.html#index-flax_002dvector_002dconversions-126"><code>flax-vector-conversions</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Code-Gen-Options.html#index-fleading_002dunderscore-2369"><code>fleading-underscore</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-floop_002dblock-851"><code>floop-block</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-floop_002dinterchange-849"><code>floop-interchange</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-floop_002dnest_002doptimize-853"><code>floop-nest-optimize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-floop_002dparallelize_002dall-854"><code>floop-parallelize-all</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-floop_002dstrip_002dmine-850"><code>floop-strip-mine</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-flto-894"><code>flto</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-flto_002dpartition-895"><code>flto-partition</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Warning-Options.html#index-fmax_002derrors-252"><code>fmax-errors</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Debugging-Options.html#index-fmem_002dreport-578"><code>fmem-report</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fmem_002dreport_002dwpa-579"><code>fmem-report-wpa</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fmerge_002dall_002dconstants-759"><code>fmerge-all-constants</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fmerge_002dconstants-758"><code>fmerge-constants</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fmerge_002ddebug_002dstrings-567"><code>fmerge-debug-strings</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Language-Independent-Options.html#index-fmessage_002dlength-240"><code>fmessage-length</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Optimize-Options.html#index-fmodulo_002dsched-760"><code>fmodulo-sched</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fmodulo_002dsched_002dallow_002dregmoves-761"><code>fmodulo-sched-allow-regmoves</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fmove_002dloop_002dinvariants-928"><code>fmove-loop-invariants</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Unnamed-Fields.html#index-fms_002dextensions-3492"><code>fms-extensions</code></a>: <a href="Unnamed-Fields.html#Unnamed-Fields">Unnamed Fields</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fms_002dextensions-152"><code>fms-extensions</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C-Dialect-Options.html#index-fms_002dextensions-119"><code>fms-extensions</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fmudflap-765"><code>fmudflap</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fmudflapir-767"><code>fmudflapir</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fmudflapth-766"><code>fmudflapth</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fnext_002druntime-214"><code>fnext-runtime</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002daccess_002dcontrol-137"><code>fno-access-control</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C-Dialect-Options.html#index-fno_002dasm-109"><code>fno-asm</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dbranch_002dcount_002dreg-762"><code>fno-branch-count-reg</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Other-Builtins.html#index-fno_002dbuiltin-3352"><code>fno-builtin</code></a>: <a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></li> <li><a href="Function-Attributes.html#index-fno_002dbuiltin-2616"><code>fno-builtin</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Warning-Options.html#index-fno_002dbuiltin-278"><code>fno-builtin</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C-Dialect-Options.html#index-fno_002dbuiltin-110"><code>fno-builtin</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-fno_002dcanonical_002dsystem_002dheaders-994"><code>fno-canonical-system-headers</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Variable-Attributes.html#index-fno_002dcommon-2768"><code>fno-common</code></a>: <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a></li> <li><a href="Code-Gen-Options.html#index-fno_002dcommon-2345"><code>fno-common</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Debugging-Options.html#index-fno_002dcompare_002ddebug-564"><code>fno-compare-debug</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fno_002ddebug_002dtypes_002dsection-550"><code>fno-debug-types-section</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Inline.html#index-fno_002ddefault_002dinline-2804"><code>fno-default-inline</code></a>: <a href="Inline.html#Inline">Inline</a></li> <li><a href="Optimize-Options.html#index-fno_002ddefault_002dinline-741"><code>fno-default-inline</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002ddefault_002dinline-172"><code>fno-default-inline</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002ddefer_002dpop-742"><code>fno-defer-pop</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Language-Independent-Options.html#index-fno_002ddiagnostics_002dshow_002dcaret-244"><code>fno-diagnostics-show-caret</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Language-Independent-Options.html#index-fno_002ddiagnostics_002dshow_002doption-242"><code>fno-diagnostics-show-option</code></a>: <a href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a></li> <li><a href="Debugging-Options.html#index-fno_002ddwarf2_002dcfi_002dasm-571"><code>fno-dwarf2-cfi-asm</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002delide_002dconstructors-142"><code>fno-elide-constructors</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Debugging-Options.html#index-fno_002deliminate_002dunused_002ddebug_002dtypes-730"><code>fno-eliminate-unused-debug-types</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002denforce_002deh_002dspecs-143"><code>fno-enforce-eh-specs</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dext_002dnumeric_002dliterals-192"><code>fno-ext-numeric-literals</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dextern_002dtls_002dinit-145"><code>fno-extern-tls-init</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dfor_002dscope-147"><code>fno-for-scope</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dfunction_002dcse-763"><code>fno-function-cse</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dgnu_002dkeywords-148"><code>fno-gnu-keywords</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dguess_002dbranch_002dprobability-880"><code>fno-guess-branch-probability</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fno_002dident-2346"><code>fno-ident</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Interface.html#index-fno_002dimplement_002dinlines-3522"><code>fno-implement-inlines</code></a>: <a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dimplement_002dinlines-151"><code>fno-implement-inlines</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dimplicit_002dinline_002dtemplates-150"><code>fno-implicit-inline-templates</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Template-Instantiation.html#index-fno_002dimplicit_002dtemplates-3525"><code>fno-implicit-templates</code></a>: <a href="Template-Instantiation.html#Template-Instantiation">Template Instantiation</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dimplicit_002dtemplates-149"><code>fno-implicit-templates</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dinline-747"><code>fno-inline</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dira_002dshare_002dsave_002dslots-796"><code>fno-ira-share-save-slots</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dira_002dshare_002dspill_002dslots-797"><code>fno-ira-share-spill-slots</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fno_002djump_002dtables-2356"><code>fno-jump-tables</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dmath_002derrno-908"><code>fno-math-errno</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fno_002dmerge_002ddebug_002dstrings-568"><code>fno-merge-debug-strings</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fno_002dnil_002dreceivers-215"><code>fno-nil-receivers</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dnonansi_002dbuiltins-153"><code>fno-nonansi-builtins</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002doperator_002dnames-155"><code>fno-operator-names</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002doptional_002ddiags-156"><code>fno-optional-diags</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dpeephole-878"><code>fno-peephole</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dpeephole2-879"><code>fno-peephole2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dpretty_002dtemplates-158"><code>fno-pretty-templates</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002drtti-160"><code>fno-rtti</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dsched_002dinterblock-802"><code>fno-sched-interblock</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dsched_002dspec-803"><code>fno-sched-spec</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-fno_002dset_002dstack_002dexecutable-1522"><code>fno-set-stack-executable</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="Preprocessor-Options.html#index-fno_002dshow_002dcolumn-1007"><code>fno-show-column</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C-Dialect-Options.html#index-fno_002dsigned_002dbitfields-131"><code>fno-signed-bitfields</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dsigned_002dzeros-913"><code>fno-signed-zeros</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fno_002dstack_002dlimit-2367"><code>fno-stack-limit</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dthreadsafe_002dstatics-165"><code>fno-threadsafe-statics</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dtoplevel_002dreorder-891"><code>fno-toplevel-reorder</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dtrapping_002dmath-914"><code>fno-trapping-math</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C-Dialect-Options.html#index-fno_002dunsigned_002dbitfields-132"><code>fno-unsigned-bitfields</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002duse_002dcxa_002dget_002dexception_002dptr-167"><code>fno-use-cxa-get-exception-ptr</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Debugging-Options.html#index-fno_002dvar_002dtracking_002dassignments-713"><code>fno-var-tracking-assignments</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fno_002dvar_002dtracking_002dassignments_002dtoggle-715"><code>fno-var-tracking-assignments-toggle</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fno_002dweak-170"><code>fno-weak</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-fno_002dworking_002ddirectory-1006"><code>fno-working-directory</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-fno_002dwritable_002drelocated_002drdata-1523"><code>fno-writable-relocated-rdata</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="Optimize-Options.html#index-fno_002dzero_002dinitialized_002din_002dbss-764"><code>fno-zero-initialized-in-bss</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fnon_002dcall_002dexceptions-2336"><code>fnon-call-exceptions</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fnothrow_002dopt-154"><code>fnothrow-opt</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dabi_002dversion-216"><code>fobjc-abi-version</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dcall_002dcxx_002dcdtors-217"><code>fobjc-call-cxx-cdtors</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002ddirect_002ddispatch-218"><code>fobjc-direct-dispatch</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dexceptions-219"><code>fobjc-exceptions</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dgc-220"><code>fobjc-gc</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dnilcheck-221"><code>fobjc-nilcheck</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fobjc_002dstd-222"><code>fobjc-std</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fomit_002dframe_002dpointer-745"><code>fomit-frame-pointer</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C-Dialect-Options.html#index-fopenmp-116"><code>fopenmp</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Debugging-Options.html#index-fopt_002dinfo-704"><code>fopt-info</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-foptimize_002dregister_002dmove-792"><code>foptimize-register-move</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-foptimize_002dsibling_002dcalls-746"><code>foptimize-sibling-calls</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Darwin-Options.html#index-force_005fcpusubtype_005fALL-1259"><code>force_cpusubtype_ALL</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-force_005fflat_005fnamespace-1272"><code>force_flat_namespace</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Code-Gen-Options.html#index-fpack_002dstruct-2360"><code>fpack-struct</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fpartial_002dinlining-875"><code>fpartial-inlining</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Incompatibilities.html#index-fpcc_002dstruct_002dreturn-3565"><code>fpcc-struct-return</code></a>: <a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></li> <li><a href="Code-Gen-Options.html#index-fpcc_002dstruct_002dreturn-2340"><code>fpcc-struct-return</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Preprocessor-Options.html#index-fpch_002ddeps-973"><code>fpch-deps</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-fpch_002dpreprocess-974"><code>fpch-preprocess</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Optimize-Options.html#index-fpeel_002dloops-927"><code>fpeel-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fpermissive-157"><code>fpermissive</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Code-Gen-Options.html#index-fPIC-2353"><code>fPIC</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fpic-2350"><code>fpic</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fPIE-2355"><code>fPIE</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fpie-2354"><code>fpie</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Unnamed-Fields.html#index-fplan9_002dextensions-3493"><code>fplan9-extensions</code></a>: <a href="Unnamed-Fields.html#Unnamed-Fields">Unnamed Fields</a></li> <li><a href="Debugging-Options.html#index-fpost_002dipa_002dmem_002dreport-581"><code>fpost-ipa-mem-report</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fpre_002dipa_002dmem_002dreport-580"><code>fpre-ipa-mem-report</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fpredictive_002dcommoning-876"><code>fpredictive-commoning</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fprefetch_002dloop_002darrays-877"><code>fprefetch-loop-arrays</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-fpreprocessed-995"><code>fpreprocessed</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Other-Builtins.html#index-fprofile_002darcs-3360"><code>fprofile-arcs</code></a>: <a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></li> <li><a href="Debugging-Options.html#index-fprofile_002darcs-584"><code>fprofile-arcs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fprofile_002dcorrection-899"><code>fprofile-correction</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fprofile_002ddir-900"><code>fprofile-dir</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fprofile_002dgenerate-901"><code>fprofile-generate</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fprofile_002dreport-582"><code>fprofile-report</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fprofile_002duse-902"><code>fprofile-use</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fprofile_002dvalues-921"><code>fprofile-values</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="RX-Options.html#index-fpu-2062"><code>fpu</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="Debugging-Options.html#index-frandom_002dseed-706"><code>frandom-seed</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-freciprocal_002dmath-911"><code>freciprocal-math</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-frecord_002dgcc_002dswitches-2349"><code>frecord-gcc-switches</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-free-791"><code>free</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-freg_002dstruct_002dreturn-2341"><code>freg-struct-return</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fregmove-793"><code>fregmove</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-frename_002dregisters-923"><code>frename-registers</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-freorder_002dblocks-881"><code>freorder-blocks</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-freorder_002dblocks_002dand_002dpartition-882"><code>freorder-blocks-and-partition</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-freorder_002dfunctions-883"><code>freorder-functions</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-freplace_002dobjc_002dclasses-223"><code>freplace-objc-classes</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Template-Instantiation.html#index-frepo-3524"><code>frepo</code></a>: <a href="Template-Instantiation.html#Template-Instantiation">Template Instantiation</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-frepo-159"><code>frepo</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-frerun_002dcse_002dafter_002dloop-774"><code>frerun-cse-after-loop</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-freschedule_002dmodulo_002dscheduled_002dloops-816"><code>freschedule-modulo-scheduled-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-frounding_002dmath-915"><code>frounding-math</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dcritical_002dpath_002dheuristic-811"><code>fsched-critical-path-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002ddep_002dcount_002dheuristic-815"><code>fsched-dep-count-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dgroup_002dheuristic-810"><code>fsched-group-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dlast_002dinsn_002dheuristic-814"><code>fsched-last-insn-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dpressure-804"><code>fsched-pressure</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002drank_002dheuristic-813"><code>fsched-rank-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dspec_002dinsn_002dheuristic-812"><code>fsched-spec-insn-heuristic</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dspec_002dload-805"><code>fsched-spec-load</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dspec_002dload_002ddangerous-806"><code>fsched-spec-load-dangerous</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dstalled_002dinsns-807"><code>fsched-stalled-insns</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsched_002dstalled_002dinsns_002ddep-808"><code>fsched-stalled-insns-dep</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fsched_002dverbose-707"><code>fsched-verbose</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fsched2_002duse_002dsuperblocks-809"><code>fsched2-use-superblocks</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fschedule_002dinsns-800"><code>fschedule-insns</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fschedule_002dinsns2-801"><code>fschedule-insns2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsection_002danchors-937"><code>fsection-anchors</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsel_002dsched_002dpipelining-819"><code>fsel-sched-pipelining</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsel_002dsched_002dpipelining_002douter_002dloops-820"><code>fsel-sched-pipelining-outer-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fselective_002dscheduling-817"><code>fselective-scheduling</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fselective_002dscheduling2-818"><code>fselective-scheduling2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fshort_002ddouble-2343"><code>fshort-double</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Non_002dbugs.html#index-fshort_002denums-3585"><code>fshort-enums</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="Type-Attributes.html#index-fshort_002denums-2787"><code>fshort-enums</code></a>: <a href="Type-Attributes.html#Type-Attributes">Type Attributes</a></li> <li><a href="Structures-unions-enumerations-and-bit_002dfields-implementation.html#index-fshort_002denums-2401"><code>fshort-enums</code></a>: <a href="Structures-unions-enumerations-and-bit_002dfields-implementation.html#Structures-unions-enumerations-and-bit_002dfields-implementation">Structures unions enumerations and bit-fields implementation</a></li> <li><a href="Code-Gen-Options.html#index-fshort_002denums-2342"><code>fshort-enums</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fshort_002dwchar-2344"><code>fshort-wchar</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fshrink_002dwrap-821"><code>fshrink-wrap</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsignaling_002dnans-916"><code>fsignaling-nans</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Non_002dbugs.html#index-fsigned_002dbitfields-3586"><code>fsigned-bitfields</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="C-Dialect-Options.html#index-fsigned_002dbitfields-129"><code>fsigned-bitfields</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Characters-implementation.html#index-fsigned_002dchar-2398"><code>fsigned-char</code></a>: <a href="Characters-implementation.html#Characters-implementation">Characters implementation</a></li> <li><a href="C-Dialect-Options.html#index-fsigned_002dchar-128"><code>fsigned-char</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fsingle_002dprecision_002dconstant-917"><code>fsingle-precision-constant</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fsplit_002divs_002din_002dunroller-873"><code>fsplit-ivs-in-unroller</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Function-Attributes.html#index-fsplit_002dstack-2653"><code>fsplit-stack</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Code-Gen-Options.html#index-fsplit_002dstack-2368"><code>fsplit-stack</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fsplit_002dwide_002dtypes-771"><code>fsplit-wide-types</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fstack_002dcheck-2364"><code>fstack-check</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fstack_002dlimit_002dregister-2365"><code>fstack-limit-register</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fstack_002dlimit_002dsymbol-2366"><code>fstack-limit-symbol</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-fstack_002dprotector-935"><code>fstack-protector</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fstack_002dprotector_002dall-936"><code>fstack-protector-all</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-fstack_002dusage-583"><code>fstack-usage</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Code-Gen-Options.html#index-fstack_005freuse-2332"><code>fstack_reuse</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fstats-161"><code>fstats</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fstrict_002daliasing-884"><code>fstrict-aliasing</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fstrict_002denums-162"><code>fstrict-enums</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fstrict_002doverflow-885"><code>fstrict-overflow</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fstrict_002dvolatile_002dbitfields-2372"><code>fstrict-volatile-bitfields</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fsync_002dlibcalls-2373"><code>fsync-libcalls</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Warning-Options.html#index-fsyntax_002donly-251"><code>fsyntax-only</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-ftabstop-996"><code>ftabstop</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-ftemplate_002dbacktrace_002dlimit-163"><code>ftemplate-backtrace-limit</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-ftemplate_002ddepth-164"><code>ftemplate-depth</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Debugging-Options.html#index-ftest_002dcoverage-587"><code>ftest-coverage</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fthread_002djumps-770"><code>fthread-jumps</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-ftime_002dreport-577"><code>ftime-report</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Code-Gen-Options.html#index-ftls_002dmodel-2370"><code>ftls-model</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-ftracer-870"><code>ftracer</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-ftrack_002dmacro_002dexpansion-998"><code>ftrack-macro-expansion</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Code-Gen-Options.html#index-ftrapv-2333"><code>ftrapv</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dbit_002dccp-840"><code>ftree-bit-ccp</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dbuiltin_002dcall_002ddce-843"><code>ftree-builtin-call-dce</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dccp-841"><code>ftree-ccp</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dch-846"><code>ftree-ch</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dcopy_002dprop-832"><code>ftree-copy-prop</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dcopyrename-862"><code>ftree-copyrename</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002ddce-842"><code>ftree-dce</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002ddominator_002dopts-844"><code>ftree-dominator-opts</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002ddse-845"><code>ftree-dse</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dforwprop-828"><code>ftree-forwprop</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dfre-829"><code>ftree-fre</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dloop_002dim-856"><code>ftree-loop-im</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dloop_002divcanon-857"><code>ftree-loop-ivcanon</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dloop_002dlinear-848"><code>ftree-loop-linear</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dloop_002doptimize-847"><code>ftree-loop-optimize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dparallelize_002dloops-859"><code>ftree-parallelize-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dpartial_002dpre-827"><code>ftree-partial-pre</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dphiprop-830"><code>ftree-phiprop</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dpre-826"><code>ftree-pre</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dpta-860"><code>ftree-pta</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dreassoc-825"><code>ftree-reassoc</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dsink-839"><code>ftree-sink</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dslp_002dvectorize-866"><code>ftree-slp-vectorize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dslsr-864"><code>ftree-slsr</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dsra-861"><code>ftree-sra</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dter-863"><code>ftree-ter</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dvect_002dloop_002dversion-867"><code>ftree-vect-loop-version</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dvectorize-865"><code>ftree-vectorize</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Debugging-Options.html#index-ftree_002dvectorizer_002dverbose-705"><code>ftree-vectorizer-verbose</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-ftree_002dvrp-869"><code>ftree-vrp</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-funit_002dat_002da_002dtime-890"><code>funit-at-a-time</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-funroll_002dall_002dloops-872"><code>funroll-all-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-funroll_002dloops-871"><code>funroll-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-funsafe_002dloop_002doptimizations-781"><code>funsafe-loop-optimizations</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-funsafe_002dmath_002doptimizations-909"><code>funsafe-math-optimizations</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Non_002dbugs.html#index-funsigned_002dbitfields-3587"><code>funsigned-bitfields</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="Structures-unions-enumerations-and-bit_002dfields-implementation.html#index-funsigned_002dbitfields-2400"><code>funsigned-bitfields</code></a>: <a href="Structures-unions-enumerations-and-bit_002dfields-implementation.html#Structures-unions-enumerations-and-bit_002dfields-implementation">Structures unions enumerations and bit-fields implementation</a></li> <li><a href="C-Dialect-Options.html#index-funsigned_002dbitfields-130"><code>funsigned-bitfields</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Characters-implementation.html#index-funsigned_002dchar-2399"><code>funsigned-char</code></a>: <a href="Characters-implementation.html#Characters-implementation">Characters implementation</a></li> <li><a href="C-Dialect-Options.html#index-funsigned_002dchar-127"><code>funsigned-char</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Optimize-Options.html#index-funswitch_002dloops-929"><code>funswitch-loops</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-funwind_002dtables-2338"><code>funwind-tables</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fuse_002dcxa_002datexit-166"><code>fuse-cxa-atexit</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Debugging-Options.html#index-fvar_002dtracking-711"><code>fvar-tracking</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fvar_002dtracking_002dassignments-712"><code>fvar-tracking-assignments</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-fvar_002dtracking_002dassignments_002dtoggle-714"><code>fvar-tracking-assignments-toggle</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Optimize-Options.html#index-fvariable_002dexpansion_002din_002dunroller-874"><code>fvariable-expansion-in-unroller</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fvect_002dcost_002dmodel-868"><code>fvect-cost-model</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Code-Gen-Options.html#index-fverbose_002dasm-2348"><code>fverbose-asm</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Code-Gen-Options.html#index-fvisibility-2371"><code>fvisibility</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fvisibility_002dinlines_002dhidden-168"><code>fvisibility-inlines-hidden</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-fvisibility_002dms_002dcompat-169"><code>fvisibility-ms-compat</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Optimize-Options.html#index-fvpt-922"><code>fvpt</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fweb-892"><code>fweb</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-fwhole_002dprogram-893"><code>fwhole-program</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-fwide_002dexec_002dcharset-1001"><code>fwide-exec-charset</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-fworking_002ddirectory-1005"><code>fworking-directory</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Code-Gen-Options.html#index-fwrapv-2334"><code>fwrapv</code></a>: <a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-fzero_002dlink-224"><code>fzero-link</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="System-V-Options.html#index-G-2245"><code>G</code></a>: <a href="System-V-Options.html#System-V-Options">System V Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-G-2042"><code>G</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-G-1791"><code>G</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M32R_002fD-Options.html#index-G-1606"><code>G</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="Debugging-Options.html#index-g-543"><code>g</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gcoff-552"><code>gcoff</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gdwarf_002d_0040var_007bversion_007d-555"><code>gdwarf-</code><var>version</var></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-gen_002ddecls-225"><code>gen-decls</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Darwin-Options.html#index-gfull-1247"><code>gfull</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Debugging-Options.html#index-ggdb-545"><code>ggdb</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gno_002drecord_002dgcc_002dswitches-557"><code>gno-record-gcc-switches</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gno_002dstrict_002ddwarf-559"><code>gno-strict-dwarf</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gpubnames-546"><code>gpubnames</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-grecord_002dgcc_002dswitches-556"><code>grecord-gcc-switches</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gsplit_002ddwarf-544"><code>gsplit-dwarf</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gstabs-547"><code>gstabs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gstabs_002b-551"><code>gstabs+</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gstrict_002ddwarf-558"><code>gstrict-dwarf</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gtoggle-561"><code>gtoggle</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-gused-1246"><code>gused</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Debugging-Options.html#index-gvms-560"><code>gvms</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gxcoff-553"><code>gxcoff</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-gxcoff_002b-554"><code>gxcoff+</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Preprocessor-Options.html#index-H-1022"><code>H</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-headerpad_005fmax_005finstall_005fnames-1273"><code>headerpad_max_install_names</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-help-1019"><code>help</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-help-87"><code>help</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Optimize-Options.html#index-hoist_002dadjacent_002dloads-831"><code>hoist-adjacent-loads</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Directory-Options.html#index-I-1060"><code>I</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Preprocessor-Options.html#index-I-947"><code>I</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Directory-Options.html#index-I_002d-1067"><code>I-</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Preprocessor-Options.html#index-I_002d-978"><code>I-</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-idirafter-983"><code>idirafter</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-iframework-1245"><code>iframework</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-imacros-982"><code>imacros</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-image_005fbase-1274"><code>image_base</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-imultilib-988"><code>imultilib</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-include-981"><code>include</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-init-1275"><code>init</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-install_005fname-1276"><code>install_name</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-iprefix-984"><code>iprefix</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Directory-Options.html#index-iquote-1061"><code>iquote</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Preprocessor-Options.html#index-iquote-990"><code>iquote</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-isysroot-987"><code>isysroot</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-isystem-989"><code>isystem</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-iwithprefix-985"><code>iwithprefix</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-iwithprefixbefore-986"><code>iwithprefixbefore</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-keep_005fprivate_005fexterns-1277"><code>keep_private_externs</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Directory-Options.html#index-L-1062"><code>L</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Link-Options.html#index-l-1033"><code>l</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Link-Options.html#index-lobjc-1034"><code>lobjc</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-m-2012"><code>m</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Preprocessor-Options.html#index-M-962"><code>M</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="SH-Options.html#index-m1-2122"><code>m1</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="PDP_002d11-Options.html#index-m10-1888"><code>m10</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-m128bit_002dlong_002ddouble-1457"><code>m128bit-long-double</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="CRIS-Options.html#index-m16_002dbit-1225"><code>m16-bit</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-m1reg_002d-1117"><code>m1reg-</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="SH-Options.html#index-m2-2123"><code>m2</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MCore-Options.html#index-m210-1675"><code>m210</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="SH-Options.html#index-m2a-2127"><code>m2a</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m2a_002dnofpu-2124"><code>m2a-nofpu</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m2a_002dsingle-2126"><code>m2a-single</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m2a_002dsingle_002donly-2125"><code>m2a-single-only</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m3-2128"><code>m3</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-m31-2094"><code>m31</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="TILEPro-Options.html#index-m32-2258"><code>m32</code></a>: <a href="TILEPro-Options.html#TILEPro-Options">TILEPro Options</a></li> <li><a href="TILE_002dGx-Options.html#index-m32-2254"><code>m32</code></a>: <a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></li> <li><a href="SPARC-Options.html#index-m32-2218"><code>m32</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-m32-1955"><code>m32</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-m32-1504"><code>m32</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="CRIS-Options.html#index-m32_002dbit-1224"><code>m32-bit</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RX-Options.html#index-m32bit_002ddoubles-2061"><code>m32bit-doubles</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="M32R_002fD-Options.html#index-m32r-1599"><code>m32r</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-m32r2-1597"><code>m32r2</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-m32rx-1598"><code>m32rx</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="MCore-Options.html#index-m340-1676"><code>m340</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-m3dnow-1475"><code>m3dnow</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SH-Options.html#index-m3e-2129"><code>m3e</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4-2133"><code>m4</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4_002dnofpu-2130"><code>m4-nofpu</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4_002dsingle-2132"><code>m4-single</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4_002dsingle_002donly-2131"><code>m4-single-only</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="PDP_002d11-Options.html#index-m40-1886"><code>m40</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-m45-1887"><code>m45</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="SH-Options.html#index-m4a-2137"><code>m4a</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4a_002dnofpu-2134"><code>m4a-nofpu</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4a_002dsingle-2136"><code>m4a-single</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4a_002dsingle_002donly-2135"><code>m4a-single-only</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-m4al-2138"><code>m4al</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MCore-Options.html#index-m4byte_002dfunctions-1667"><code>m4byte-functions</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="M680x0-Options.html#index-m5200-1630"><code>m5200</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m5206e-1631"><code>m5206e</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m528x-1632"><code>m528x</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m5307-1633"><code>m5307</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m5407-1634"><code>m5407</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="TILE_002dGx-Options.html#index-m64-2255"><code>m64</code></a>: <a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></li> <li><a href="SPARC-Options.html#index-m64-2219"><code>m64</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-m64-2093"><code>m64</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-m64-1956"><code>m64</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-m64-1505"><code>m64</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RX-Options.html#index-m64bit_002ddoubles-2060"><code>m64bit-doubles</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="M680x0-Options.html#index-m68000-1621"><code>m68000</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68010-1623"><code>m68010</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68020-1624"><code>m68020</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68020_002d40-1636"><code>m68020-40</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68020_002d60-1637"><code>m68020-60</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68030-1626"><code>m68030</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68040-1627"><code>m68040</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68060-1628"><code>m68060</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-m68881-1639"><code>m68881</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="CRIS-Options.html#index-m8_002dbit-1226"><code>m8-bit</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="V850-Options.html#index-m8byte_002dalign-2290"><code>m8byte-align</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-m96bit_002dlong_002ddouble-1456"><code>m96bit-long-double</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mabi-2019"><code>mabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mabi-1487"><code>mabi</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="ARM-Options.html#index-mabi-1119"><code>mabi</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MIPS-Options.html#index-mabi_003d32-1748"><code>mabi=32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mabi_003d64-1751"><code>mabi=64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mabi_003deabi-1752"><code>mabi=eabi</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MMIX-Options.html#index-mabi_003dgnu-1848"><code>mabi=gnu</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mabi_003dibmlongdouble-2022"><code>mabi=ibmlongdouble</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mabi_003dieeelongdouble-2023"><code>mabi=ieeelongdouble</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MMIX-Options.html#index-mabi_003dmmixware-1847"><code>mabi=mmixware</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="MIPS-Options.html#index-mabi_003dn32-1750"><code>mabi=n32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mabi_003dno_002dspe-2021"><code>mabi=no-spe</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mabi_003do64-1749"><code>mabi=o64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mabi_003dspe-2020"><code>mabi=spe</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mabicalls-1753"><code>mabicalls</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="ARM-Options.html#index-mabort_002don_002dnoreturn-1134"><code>mabort-on-noreturn</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MeP-Options.html#index-mabsdiff-1680"><code>mabsdiff</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="PDP_002d11-Options.html#index-mabshi-1899"><code>mabshi</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mac0-1884"><code>mac0</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="FRV-Options.html#index-macc_002d4-1378"><code>macc-4</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-macc_002d8-1379"><code>macc-8</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="AVR-Options.html#index-maccumulate_002dargs-1156"><code>maccumulate-args</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="SH-Options.html#index-maccumulate_002doutgoing_002dargs-2162"><code>maccumulate-outgoing-args</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-maccumulate_002doutgoing_002dargs-1491"><code>maccumulate-outgoing-args</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-maddress_002dmode_003dlong-1512"><code>maddress-mode=long</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-maddress_002dmode_003dshort-1513"><code>maddress-mode=short</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SPU-Options.html#index-maddress_002dspace_002dconversion-2236"><code>maddress-space-conversion</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mads-2028"><code>mads</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-maix_002dstruct_002dreturn-2017"><code>maix-struct-return</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-maix32-1962"><code>maix32</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-maix64-1961"><code>maix64</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="H8_002f300-Options.html#index-malign_002d300-1413"><code>malign-300</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-malign_002ddouble-1454"><code>malign-double</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="M680x0-Options.html#index-malign_002dint-1650"><code>malign-int</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="FRV-Options.html#index-malign_002dlabels-1376"><code>malign-labels</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="M32R_002fD-Options.html#index-malign_002dloops-1609"><code>malign-loops</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-malign_002dnatural-1966"><code>malign-natural</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-malign_002dpower-1967"><code>malign-power</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MeP-Options.html#index-mall_002dopts-1681"><code>mall-opts</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="FRV-Options.html#index-malloc_002dcc-1358"><code>malloc-cc</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-maltivec-1938"><code>maltivec</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MN10300-Options.html#index-mam33-1865"><code>mam33</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="MN10300-Options.html#index-mam33_002d2-1867"><code>mam33-2</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="MN10300-Options.html#index-mam34-1868"><code>mam34</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-mandroid-1402"><code>mandroid</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="ARM-Options.html#index-mapcs-1121"><code>mapcs</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mapcs_002dframe-1120"><code>mapcs-frame</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="V850-Options.html#index-mapp_002dregs-2293"><code>mapp-regs</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SPARC-Options.html#index-mapp_002dregs-2187"><code>mapp-regs</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-march-2101"><code>march</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="MIPS-Options.html#index-march-1733"><code>march</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M680x0-Options.html#index-march-1618"><code>march</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-march-1444"><code>march</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="HPPA-Options.html#index-march-1415"><code>march</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="CRIS-Options.html#index-march-1207"><code>march</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="C6X-Options.html#index-march-1199"><code>march</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="ARM-Options.html#index-march-1130"><code>march</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-march-1094"><code>march</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="ARM-Options.html#index-marm-1140"><code>marm</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RX-Options.html#index-mas100_002dsyntax-2070"><code>mas100-syntax</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-masm_003d_0040var_007bdialect_007d-1448"><code>masm=</code><var>dialect</var></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SH-Options.html#index-matomic_002dmodel_003d_0040var_007bmodel_007d-2155"><code>matomic-model=</code><var>model</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SPU-Options.html#index-matomic_002dupdates-2239"><code>matomic-updates</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="IA_002d64-Options.html#index-mauto_002dpic-1540"><code>mauto-pic</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="MeP-Options.html#index-maverage-1682"><code>maverage</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mavoid_002dindexed_002daddresses-1981"><code>mavoid-indexed-addresses</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-max_002dvect_002dalign-1115"><code>max-vect-align</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="SH-Options.html#index-mb-2139"><code>mb</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mbackchain-2087"><code>mbackchain</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="LM32-Options.html#index-mbarrel_002dshift_002denabled-1587"><code>mbarrel-shift-enabled</code></a>: <a href="LM32-Options.html#LM32-Options">LM32 Options</a></li> <li><a href="MMIX-Options.html#index-mbase_002daddresses-1858"><code>mbase-addresses</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="MeP-Options.html#index-mbased_003d-1683"><code>mbased=</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="PDP_002d11-Options.html#index-mbcopy-1890"><code>mbcopy</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mbcopy_002dbuiltin-1889"><code>mbcopy-builtin</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mbig-2001"><code>mbig</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mbig_002dendian-2002"><code>mbig-endian</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MicroBlaze-Options.html#index-mbig_002dendian-1727"><code>mbig-endian</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MCore-Options.html#index-mbig_002dendian-1674"><code>mbig-endian</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="IA_002d64-Options.html#index-mbig_002dendian-1526"><code>mbig-endian</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="C6X-Options.html#index-mbig_002dendian-1200"><code>mbig-endian</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="ARM-Options.html#index-mbig_002dendian-1126"><code>mbig-endian</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-mbig_002dendian-1083"><code>mbig-endian</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="RX-Options.html#index-mbig_002dendian_002ddata-2065"><code>mbig-endian-data</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="V850-Options.html#index-mbig_002dswitch-2292"><code>mbig-switch</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="HPPA-Options.html#index-mbig_002dswitch-1419"><code>mbig-switch</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="SH-Options.html#index-mbigtable-2143"><code>mbigtable</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-mbionic-1401"><code>mbionic</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mbit_002dalign-1990"><code>mbit-align</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="CR16-Options.html#index-mbit_002dops-1241"><code>mbit-ops</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="M680x0-Options.html#index-mbitfield-1647"><code>mbitfield</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="SH-Options.html#index-mbitops-2144"><code>mbitops</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MeP-Options.html#index-mbitops-1684"><code>mbitops</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mblock_002dmove_002dinline_002dlimit-2041"><code>mblock-move-inline-limit</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="PDP_002d11-Options.html#index-mbranch_002dcheap-1902"><code>mbranch-cheap</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="MIPS-Options.html#index-mbranch_002dcost-1833"><code>mbranch-cost</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="AVR-Options.html#index-mbranch_002dcost-1157"><code>mbranch-cost</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mbranch_002dcost-1101"><code>mbranch-cost</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="SH-Options.html#index-mbranch_002dcost_003d_0040var_007bnum_007d-2169"><code>mbranch-cost=</code><var>num</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="M32R_002fD-Options.html#index-mbranch_002dcost_003d_0040var_007bnumber_007d-1612"><code>mbranch-cost=</code><var>number</var></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="PDP_002d11-Options.html#index-mbranch_002dexpensive-1901"><code>mbranch-expensive</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="SPU-Options.html#index-mbranch_002dhints-2229"><code>mbranch-hints</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="MIPS-Options.html#index-mbranch_002dlikely-1834"><code>mbranch-likely</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MMIX-Options.html#index-mbranch_002dpredict-1856"><code>mbranch-predict</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mbss_002dplt-1945"><code>mbss-plt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mbuild_002dconstants-1328"><code>mbuild-constants</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mbwx-1329"><code>mbwx</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="M680x0-Options.html#index-mc68000-1622"><code>mc68000</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M680x0-Options.html#index-mc68020-1625"><code>mc68020</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="MeP-Options.html#index-mc_003d-1685"><code>mc=</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="SPU-Options.html#index-mcache_002dsize-2238"><code>mcache-size</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002deabi-2010"><code>mcall-eabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dfreebsd-2014"><code>mcall-freebsd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dlinux-2013"><code>mcall-linux</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dnetbsd-2015"><code>mcall-netbsd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="AVR-Options.html#index-mcall_002dprologues-1158"><code>mcall-prologues</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dsysv-2008"><code>mcall-sysv</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dsysv_002deabi-2009"><code>mcall-sysv-eabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcall_002dsysv_002dnoeabi-2011"><code>mcall-sysv-noeabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="ARM-Options.html#index-mcallee_002dsuper_002dinterworking-1144"><code>mcallee-super-interworking</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mcaller_002dsuper_002dinterworking-1145"><code>mcaller-super-interworking</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MCore-Options.html#index-mcallgraph_002ddata-1669"><code>mcallgraph-data</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="SPARC-Options.html#index-mcbcond-2210"><code>mcbcond</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SH-Options.html#index-mcbranchdi-2172"><code>mcbranchdi</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="CRIS-Options.html#index-mcc_002dinit-1216"><code>mcc-init</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="M680x0-Options.html#index-mcfv4e-1635"><code>mcfv4e</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="MIPS-Options.html#index-mcheck_002dzero_002ddivision-1807"><code>mcheck-zero-division</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mcix-1331"><code>mcix</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcld-1477"><code>mcld</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MeP-Options.html#index-mclip-1686"><code>mclip</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="SPARC-Options.html#index-mcmodel-2220"><code>mcmodel</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcmodel_003dkernel-1509"><code>mcmodel=kernel</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="TILE_002dGx-Options.html#index-mcmodel_003dlarge-2252"><code>mcmodel=large</code></a>: <a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcmodel_003dlarge-1937"><code>mcmodel=large</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcmodel_003dlarge-1511"><code>mcmodel=large</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="AArch64-Options.html#index-mcmodel_003dlarge-1088"><code>mcmodel=large</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcmodel_003dmedium-1936"><code>mcmodel=medium</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcmodel_003dmedium-1510"><code>mcmodel=medium</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="TILE_002dGx-Options.html#index-mcmodel_003dsmall-2251"><code>mcmodel=small</code></a>: <a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcmodel_003dsmall-1935"><code>mcmodel=small</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcmodel_003dsmall-1508"><code>mcmodel=small</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="AArch64-Options.html#index-mcmodel_003dsmall-1087"><code>mcmodel=small</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="AArch64-Options.html#index-mcmodel_003dtiny-1086"><code>mcmodel=tiny</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mcmove-1102"><code>mcmove</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcmpb-1927"><code>mcmpb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SH-Options.html#index-mcmpeqdi-2173"><code>mcmpeqdi</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MIPS-Options.html#index-mcode_002dreadable-1802"><code>mcode-readable</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mcond_002dexec-1387"><code>mcond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mcond_002dmove-1383"><code>mcond-move</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MeP-Options.html#index-mconfig_003d-1687"><code>mconfig=</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mconsole-1515"><code>mconsole</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="CRIS-Options.html#index-mconst_002dalign-1222"><code>mconst-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="Xtensa-Options.html#index-mconst16-2314"><code>mconst16</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="IA_002d64-Options.html#index-mconstant_002dgp-1539"><code>mconstant-gp</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="MeP-Options.html#index-mcop-1688"><code>mcop</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MeP-Options.html#index-mcop32-1689"><code>mcop32</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MeP-Options.html#index-mcop64-1690"><code>mcop64</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="Blackfin-Options.html#index-mcorea-1194"><code>mcorea</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="Blackfin-Options.html#index-mcoreb-1195"><code>mcoreb</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="TILEPro-Options.html#index-mcpu-2257"><code>mcpu</code></a>: <a href="TILEPro-Options.html#TILEPro-Options">TILEPro Options</a></li> <li><a href="TILE_002dGx-Options.html#index-mcpu-2253"><code>mcpu</code></a>: <a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></li> <li><a href="SPARC-Options.html#index-mcpu-2200"><code>mcpu</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mcpu-1933"><code>mcpu</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="picoChip-Options.html#index-mcpu-1906"><code>mcpu</code></a>: <a href="picoChip-Options.html#picoChip-Options">picoChip Options</a></li> <li><a href="M680x0-Options.html#index-mcpu-1619"><code>mcpu</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcpu-1446"><code>mcpu</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="FRV-Options.html#index-mcpu-1398"><code>mcpu</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mcpu-1345"><code>mcpu</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="CRIS-Options.html#index-mcpu-1208"><code>mcpu</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="ARM-Options.html#index-mcpu-1128"><code>mcpu</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-mcpu-1095"><code>mcpu</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="M680x0-Options.html#index-mcpu32-1629"><code>mcpu32</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="MicroBlaze-Options.html#index-mcpu_003d-1716"><code>mcpu=</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="M32C-Options.html#index-mcpu_003d-1593"><code>mcpu=</code></a>: <a href="M32C-Options.html#M32C-Options">M32C Options</a></li> <li><a href="Blackfin-Options.html#index-mcpu_003d-1172"><code>mcpu=</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="CR16-Options.html#index-mcr16c-1238"><code>mcr16c</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="CR16-Options.html#index-mcr16cplus-1237"><code>mcr16cplus</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcrc32-1483"><code>mcrc32</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Blackfin-Options.html#index-mcsync_002danomaly-1177"><code>mcsync-anomaly</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mcx16-1480"><code>mcx16</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Preprocessor-Options.html#index-MD-971"><code>MD</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="SH-Options.html#index-mdalign-2141"><code>mdalign</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="CRIS-Options.html#index-mdata_002dalign-1220"><code>mdata-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="CR16-Options.html#index-mdata_002dmodel-1242"><code>mdata-model</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="MeP-Options.html#index-mdc-1692"><code>mdc</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mdebug-2099"><code>mdebug</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="M32R_002fD-Options.html#index-mdebug-1608"><code>mdebug</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="VMS-Options.html#index-mdebug_002dmain_003d_0040var_007bprefix_007d-2300"><code>mdebug-main=</code><var>prefix</var></a>: <a href="VMS-Options.html#VMS-Options">VMS Options</a></li> <li><a href="PDP_002d11-Options.html#index-mdec_002dasm-1904"><code>mdec-asm</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="V850-Options.html#index-mdisable_002dcallt-2278"><code>mdisable-callt</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="HPPA-Options.html#index-mdisable_002dfpregs-1421"><code>mdisable-fpregs</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="HPPA-Options.html#index-mdisable_002dindexing-1422"><code>mdisable-indexing</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="MeP-Options.html#index-mdiv-1693"><code>mdiv</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MCore-Options.html#index-mdiv-1661"><code>mdiv</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="M680x0-Options.html#index-mdiv-1641"><code>mdiv</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="SH-Options.html#index-mdiv_003d_0040var_007bstrategy_007d-2161"><code>mdiv=</code><var>strategy</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MIPS-Options.html#index-mdivide_002dbreaks-1810"><code>mdivide-breaks</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="LM32-Options.html#index-mdivide_002denabled-1588"><code>mdivide-enabled</code></a>: <a href="LM32-Options.html#LM32-Options">LM32 Options</a></li> <li><a href="MIPS-Options.html#index-mdivide_002dtraps-1809"><code>mdivide-traps</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SH-Options.html#index-mdivsi3_005flibfunc_003d_0040var_007bname_007d-2163"><code>mdivsi3_libfunc=</code><var>name</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mdll-1516"><code>mdll</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mdlmzb-1987"><code>mdlmzb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mdmx-1779"><code>mdmx</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mdouble-1362"><code>mdouble</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mdouble_002dfloat-1971"><code>mdouble-float</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mdouble_002dfloat-1768"><code>mdouble-float</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mdsp-1771"><code>mdsp</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mdspr2-1773"><code>mdspr2</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SPU-Options.html#index-mdual_002dnops-2241"><code>mdual-nops</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="IA_002d64-Options.html#index-mdwarf2_002dasm-1553"><code>mdwarf2-asm</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="FRV-Options.html#index-mdword-1360"><code>mdword</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mdynamic_002dno_002dpic-2003"><code>mdynamic-no-pic</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SPU-Options.html#index-mea32-2234"><code>mea32</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="SPU-Options.html#index-mea64-2235"><code>mea64</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-meabi-2032"><code>meabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-mearly_002dstop_002dbits-1554"><code>mearly-stop-bits</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="Score-Options.html#index-meb-2113"><code>meb</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="Moxie-Options.html#index-meb-1878"><code>meb</code></a>: <a href="Moxie-Options.html#Moxie-Options">Moxie Options</a></li> <li><a href="MeP-Options.html#index-meb-1694"><code>meb</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="Score-Options.html#index-mel-2114"><code>mel</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="Moxie-Options.html#index-mel-1879"><code>mel</code></a>: <a href="Moxie-Options.html#Moxie-Options">Moxie Options</a></li> <li><a href="MeP-Options.html#index-mel-1695"><code>mel</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MMIX-Options.html#index-melf-1855"><code>melf</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="CRIS-Options.html#index-melf-1231"><code>melf</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-memb-2031"><code>memb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-membedded_002ddata-1798"><code>membedded-data</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M32C-Options.html#index-memregs_003d-1595"><code>memregs=</code></a>: <a href="M32C-Options.html#M32C-Options">M32C Options</a></li> <li><a href="V850-Options.html#index-mep-2263"><code>mep</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MMIX-Options.html#index-mepsilon-1845"><code>mepsilon</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="SPU-Options.html#index-merror_002dreloc-2226"><code>merror-reloc</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mesa-2096"><code>mesa</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="CRIS-Options.html#index-metrax100-1212"><code>metrax100</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="CRIS-Options.html#index-metrax4-1211"><code>metrax4</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="MIPS-Options.html#index-mexplicit_002drelocs-1805"><code>mexplicit-relocs</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mexplicit_002drelocs-1339"><code>mexplicit-relocs</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="H8_002f300-Options.html#index-mexr-1410"><code>mexr</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="MIPS-Options.html#index-mextern_002dsdata-1794"><code>mextern-sdata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Preprocessor-Options.html#index-MF-966"><code>MF</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Blackfin-Options.html#index-mfast_002dfp-1191"><code>mfast-fp</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="HPPA-Options.html#index-mfast_002dindirect_002dcalls-1424"><code>mfast-indirect-calls</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="SPARC-Options.html#index-mfaster_002dstructs-2199"><code>mfaster-structs</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="FRV-Options.html#index-mfdpic-1368"><code>mfdpic</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mfentry-1500"><code>mfentry</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfix-1333"><code>mfix</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002d24k-1820"><code>mfix-24k</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Darwin-Options.html#index-mfix_002dand_002dcontinue-1250"><code>mfix-and-continue</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="SPARC-Options.html#index-mfix_002dat697f-2216"><code>mfix-at697f</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="ARM-Options.html#index-mfix_002dcortex_002dm3_002dldrd-1149"><code>mfix-cortex-m3-ldrd</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dr10000-1826"><code>mfix-r10000</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dr4000-1822"><code>mfix-r4000</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dr4400-1824"><code>mfix-r4400</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dsb1-1830"><code>mfix-sb1</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SPARC-Options.html#index-mfix_002dut699-2217"><code>mfix-ut699</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dvr4120-1828"><code>mfix-vr4120</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mfix_002dvr4130-1829"><code>mfix-vr4130</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mfixed_002dcc-1359"><code>mfixed-cc</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="SPU-Options.html#index-mfixed_002drange-2233"><code>mfixed-range</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="SH-Options.html#index-mfixed_002drange-2164"><code>mfixed-range</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="IA_002d64-Options.html#index-mfixed_002drange-1556"><code>mfixed-range</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="HPPA-Options.html#index-mfixed_002drange-1425"><code>mfixed-range</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="SPARC-Options.html#index-mflat-2188"><code>mflat</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MIPS-Options.html#index-mflip_002dmips16-1745"><code>mflip-mips16</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="ARM-Options.html#index-mfloat_002dabi-1124"><code>mfloat-abi</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfloat_002dgprs-1954"><code>mfloat-gprs</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfloat_002dieee-1338"><code>mfloat-ieee</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfloat_002dvax-1337"><code>mfloat-vax</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="PDP_002d11-Options.html#index-mfloat32-1897"><code>mfloat32</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mfloat64-1895"><code>mfloat64</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="MIPS-Options.html#index-mflush_002dfunc-1832"><code>mflush-func</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M32R_002fD-Options.html#index-mflush_002dfunc_003d_0040var_007bname_007d-1615"><code>mflush-func=</code><var>name</var></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-mflush_002dtrap_003d_0040var_007bnumber_007d-1613"><code>mflush-trap=</code><var>number</var></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="SPARC-Options.html#index-mfmaf-2214"><code>mfmaf</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SH-Options.html#index-mfmovd-2145"><code>mfmovd</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="Xtensa-Options.html#index-mforce_002dno_002dpic-2320"><code>mforce-no-pic</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="MIPS-Options.html#index-mfp_002dexceptions-1836"><code>mfp-exceptions</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mfp_002dmode-1110"><code>mfp-mode</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfp_002dreg-1320"><code>mfp-reg</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfp_002drounding_002dmode-1325"><code>mfp-rounding-mode</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mfp_002dtrap_002dmode-1324"><code>mfp-trap-mode</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="ARM-Options.html#index-mfp16_002dformat-1132"><code>mfp16-format</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MIPS-Options.html#index-mfp32-1762"><code>mfp32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mfp64-1763"><code>mfp64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mfpmath-1447"><code>mfpmath</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Optimize-Options.html#index-mfpmath-906"><code>mfpmath</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="FRV-Options.html#index-mfpr_002d32-1354"><code>mfpr-32</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mfpr_002d64-1355"><code>mfpr-64</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfprnd-1925"><code>mfprnd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SPARC-Options.html#index-mfpu-2190"><code>mfpu</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfpu-1973"><code>mfpu</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="PDP_002d11-Options.html#index-mfpu-1882"><code>mfpu</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="ARM-Options.html#index-mfpu-1131"><code>mfpu</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfriz-2056"><code>mfriz</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SH-Options.html#index-mfsca-2176"><code>mfsca</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-mfsrra-2178"><code>mfsrra</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfull_002dtoc-1957"><code>mfull-toc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Xtensa-Options.html#index-mfused_002dmadd-2316"><code>mfused-madd</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="SH-Options.html#index-mfused_002dmadd-2174"><code>mfused-madd</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mfused_002dmadd-2105"><code>mfused-madd</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mfused_002dmadd-1983"><code>mfused-madd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mfused_002dmadd-1817"><code>mfused-madd</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="IA_002d64-Options.html#index-mfused_002dmadd-1550"><code>mfused-madd</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="VAX-Options.html#index-mg-2298"><code>mg</code></a>: <a href="VAX-Options.html#VAX-Options">VAX Options</a></li> <li><a href="Preprocessor-Options.html#index-MG-967"><code>MG</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="HPPA-Options.html#index-mgas-1428"><code>mgas</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="V850-Options.html#index-mgcc_002dabi-2289"><code>mgcc-abi</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mgen_002dcell_002dmicrocode-1942"><code>mgen-cell-microcode</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="AArch64-Options.html#index-mgeneral_002dregs_002donly-1084"><code>mgeneral-regs-only</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="SH-Options.html#index-mgettrcost_003d_0040var_007bnumber_007d-2166"><code>mgettrcost=</code><var>number</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="V850-Options.html#index-mghs-2288"><code>mghs</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-mglibc-1399"><code>mglibc</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="VAX-Options.html#index-mgnu-2297"><code>mgnu</code></a>: <a href="VAX-Options.html#VAX-Options">VAX Options</a></li> <li><a href="IA_002d64-Options.html#index-mgnu_002das-1528"><code>mgnu-as</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mgnu_002dld-1530"><code>mgnu-ld</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="HPPA-Options.html#index-mgnu_002dld-1433"><code>mgnu-ld</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="CRIS-Options.html#index-mgotplt-1230"><code>mgotplt</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="MIPS-Options.html#index-mgp32-1760"><code>mgp32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mgp64-1761"><code>mgp64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mgpopt-1796"><code>mgpopt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mgpr_002d32-1352"><code>mgpr-32</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mgpr_002d64-1353"><code>mgpr-64</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mgprel_002dro-1372"><code>mgprel-ro</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="H8_002f300-Options.html#index-mh-1406"><code>mh</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mhalf_002dreg_002dfile-1099"><code>mhalf-reg-file</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mhard_002ddfp-2083"><code>mhard-dfp</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mhard_002ddfp-1931"><code>mhard-dfp</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="V850-Options.html#index-mhard_002dfloat-2285"><code>mhard-float</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SPARC-Options.html#index-mhard_002dfloat-2191"><code>mhard-float</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mhard_002dfloat-2081"><code>mhard-float</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mhard_002dfloat-1969"><code>mhard-float</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mhard_002dfloat-1764"><code>mhard-float</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MicroBlaze-Options.html#index-mhard_002dfloat-1713"><code>mhard-float</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="M680x0-Options.html#index-mhard_002dfloat-1638"><code>mhard-float</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="FRV-Options.html#index-mhard_002dfloat-1356"><code>mhard-float</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="SPARC-Options.html#index-mhard_002dquad_002dfloat-2194"><code>mhard-quad-float</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MCore-Options.html#index-mhardlit-1659"><code>mhardlit</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="SPU-Options.html#index-mhint_002dmax_002ddistance-2243"><code>mhint-max-distance</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="SPU-Options.html#index-mhint_002dmax_002dnops-2242"><code>mhint-max-nops</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="SH-Options.html#index-mhitachi-2146"><code>mhitachi</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mhotpatch-2111"><code>mhotpatch</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="HPPA-Options.html#index-mhp_002dld-1434"><code>mhp-ld</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Blackfin-Options.html#index-micplb-1197"><code>micplb</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="Blackfin-Options.html#index-mid_002dshared_002dlibrary-1182"><code>mid-shared-library</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="SH-Options.html#index-mieee-2150"><code>mieee</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mieee-1322"><code>mieee</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mieee_002dconformant-1327"><code>mieee-conformant</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mieee_002dfp-1449"><code>mieee-fp</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mieee_002dwith_002dinexact-1323"><code>mieee-with-inexact</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="IA_002d64-Options.html#index-milp32-1559"><code>milp32</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="Solaris-2-Options.html#index-mimpure_002dtext-2182"><code>mimpure-text</code></a>: <a href="Solaris-2-Options.html#Solaris-2-Options">Solaris 2 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mincoming_002dstack_002dboundary-1470"><code>mincoming-stack-boundary</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SH-Options.html#index-mindexed_002daddressing-2165"><code>mindexed-addressing</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-minline_002dall_002dstringops-1494"><code>minline-all-stringops</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dfloat_002ddivide_002dmax_002dthroughput-1542"><code>minline-float-divide-max-throughput</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dfloat_002ddivide_002dmin_002dlatency-1541"><code>minline-float-divide-min-latency</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="SH-Options.html#index-minline_002dic_005finvalidate-2152"><code>minline-ic_invalidate</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dint_002ddivide_002dmax_002dthroughput-1545"><code>minline-int-divide-max-throughput</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dint_002ddivide_002dmin_002dlatency-1544"><code>minline-int-divide-min-latency</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="FRV-Options.html#index-minline_002dplt-1369"><code>minline-plt</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="Blackfin-Options.html#index-minline_002dplt-1192"><code>minline-plt</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dsqrt_002dmax_002dthroughput-1548"><code>minline-sqrt-max-throughput</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-minline_002dsqrt_002dmin_002dlatency-1547"><code>minline-sqrt-min-latency</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-minline_002dstringops_002ddynamically-1495"><code>minline-stringops-dynamically</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-minsert_002dsched_002dnops-2007"><code>minsert-sched-nops</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RX-Options.html#index-mint_002dregister-2074"><code>mint-register</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="PDP_002d11-Options.html#index-mint16-1891"><code>mint16</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mint32-1893"><code>mint32</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="H8_002f300-Options.html#index-mint32-1412"><code>mint32</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="CR16-Options.html#index-mint32-1240"><code>mint32</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="AVR-Options.html#index-mint8-1159"><code>mint8</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="MIPS-Options.html#index-minterlink_002dmips16-1746"><code>minterlink-mips16</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SH-Options.html#index-minvalid_002dsymbols-2168"><code>minvalid-symbols</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MeP-Options.html#index-mio_002dvolatile-1696"><code>mio-volatile</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MIPS-Options.html#index-mips1-1735"><code>mips1</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips16-1743"><code>mips16</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips2-1736"><code>mips2</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips3-1737"><code>mips3</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips32-1739"><code>mips32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips32r2-1740"><code>mips32r2</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips3d-1781"><code>mips3d</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips4-1738"><code>mips4</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips64-1741"><code>mips64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mips64r2-1742"><code>mips64r2</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-misel-1946"><code>misel</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SH-Options.html#index-misize-2153"><code>misize</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="M32R_002fD-Options.html#index-missue_002drate_003d_0040var_007bnumber_007d-1611"><code>missue-rate=</code><var>number</var></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="MeP-Options.html#index-mivc2-1691"><code>mivc2</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="HPPA-Options.html#index-mjump_002din_002ddelay-1420"><code>mjump-in-delay</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Darwin-Options.html#index-mkernel-1248"><code>mkernel</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="MMIX-Options.html#index-mknuthdiv-1851"><code>mknuthdiv</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="SH-Options.html#index-ml-2140"><code>ml</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MeP-Options.html#index-ml-1697"><code>ml</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mlarge_002ddata-1342"><code>mlarge-data</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mlarge_002ddata_002dthreshold-1460"><code>mlarge-data-threshold</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SPU-Options.html#index-mlarge_002dmem-2231"><code>mlarge-mem</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mlarge_002dtext-1344"><code>mlarge-text</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MeP-Options.html#index-mleadz-1698"><code>mleadz</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="Blackfin-Options.html#index-mleaf_002did_002dshared_002dlibrary-1184"><code>mleaf-id-shared-library</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MMIX-Options.html#index-mlibfuncs-1843"><code>mlibfuncs</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="FRV-Options.html#index-mlibrary_002dpic-1377"><code>mlibrary-pic</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mlinked_002dfp-1374"><code>mlinked-fp</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="HPPA-Options.html#index-mlinker_002dopt-1430"><code>mlinker-opt</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="CRIS-Options.html#index-mlinux-1232"><code>mlinux</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mlittle-1999"><code>mlittle</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mlittle_002dendian-2000"><code>mlittle-endian</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MicroBlaze-Options.html#index-mlittle_002dendian-1728"><code>mlittle-endian</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MCore-Options.html#index-mlittle_002dendian-1673"><code>mlittle-endian</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="IA_002d64-Options.html#index-mlittle_002dendian-1527"><code>mlittle-endian</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="C6X-Options.html#index-mlittle_002dendian-1201"><code>mlittle-endian</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="ARM-Options.html#index-mlittle_002dendian-1125"><code>mlittle-endian</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-mlittle_002dendian-1085"><code>mlittle-endian</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="RX-Options.html#index-mlittle_002dendian_002ddata-2066"><code>mlittle-endian-data</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MN10300-Options.html#index-mliw-1873"><code>mliw</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="MIPS-Options.html#index-mllsc-1769"><code>mllsc</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mlocal_002dsdata-1792"><code>mlocal-sdata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="V850-Options.html#index-mlong_002dcalls-2260"><code>mlong-calls</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MIPS-Options.html#index-mlong_002dcalls-1813"><code>mlong-calls</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mlong_002dcalls-1375"><code>mlong-calls</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="Blackfin-Options.html#index-mlong_002dcalls-1189"><code>mlong-calls</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="ARM-Options.html#index-mlong_002dcalls-1135"><code>mlong-calls</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mlong_002dcalls-1107"><code>mlong-calls</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mlong_002ddouble_002d128-2086"><code>mlong-double-128</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mlong_002ddouble_002d64-2085"><code>mlong-double-64</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mlong_002ddouble_002d64-1458"><code>mlong-double-64</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mlong_002ddouble_002d80-1459"><code>mlong-double-80</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="V850-Options.html#index-mlong_002djumps-2282"><code>mlong-jumps</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="HPPA-Options.html#index-mlong_002dload_002dstore-1426"><code>mlong-load-store</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="MIPS-Options.html#index-mlong32-1788"><code>mlong32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mlong64-1787"><code>mlong64</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mlongcall-2047"><code>mlongcall</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Xtensa-Options.html#index-mlongcalls-2325"><code>mlongcalls</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="V850-Options.html#index-mloop-2286"><code>mloop</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="Blackfin-Options.html#index-mlow_002d64k-1179"><code>mlow-64k</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="IA_002d64-Options.html#index-mlp64-1560"><code>mlp64</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="MeP-Options.html#index-mm-1699"><code>mm</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="Preprocessor-Options.html#index-MM-965"><code>MM</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Score-Options.html#index-mmac-2117"><code>mmac</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="CR16-Options.html#index-mmac-1236"><code>mmac</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="MIPS-Options.html#index-mmad-1815"><code>mmad</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="VMS-Options.html#index-mmalloc64-2301"><code>mmalloc64</code></a>: <a href="VMS-Options.html#VMS-Options">VMS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mmax-1335"><code>mmax</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="RX-Options.html#index-mmax_002dconstant_002dsize-2072"><code>mmax-constant-size</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="CRIS-Options.html#index-mmax_002dstack_002dframe-1210"><code>mmax-stack-frame</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="MIPS-Options.html#index-mmcount_002dra_002daddress-1840"><code>mmcount-ra-address</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mmcu-1785"><code>mmcu</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="AVR-Options.html#index-mmcu-1155"><code>mmcu</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="Preprocessor-Options.html#index-MMD-972"><code>MMD</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="FRV-Options.html#index-mmedia-1364"><code>mmedia</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MIPS-Options.html#index-mmemcpy-1811"><code>mmemcpy</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MicroBlaze-Options.html#index-mmemcpy-1714"><code>mmemcpy</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mmemory_002dlatency-1347"><code>mmemory-latency</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="SPARC-Options.html#index-mmemory_002dmodel-2221"><code>mmemory-model</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mmfcrf-1919"><code>mmfcrf</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mmfpgpr-1929"><code>mmfpgpr</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mminimal_002dtoc-1960"><code>mminimal-toc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MeP-Options.html#index-mminmax-1700"><code>mminmax</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mmmx-1471"><code>mmmx</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="M32R_002fD-Options.html#index-mmodel_003dlarge-1602"><code>mmodel=large</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-mmodel_003dmedium-1601"><code>mmodel=medium</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-mmodel_003dsmall-1600"><code>mmodel=small</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mmovbe-1482"><code>mmovbe</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MIPS-Options.html#index-mmt-1783"><code>mmt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RL78-Options.html#index-mmul-1910"><code>mmul</code></a>: <a href="RL78-Options.html#RL78-Options">RL78 Options</a></li> <li><a href="CRIS-Options.html#index-mmul_002dbug_002dworkaround-1213"><code>mmul-bug-workaround</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="FRV-Options.html#index-mmuladd-1366"><code>mmuladd</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mmulhw-1985"><code>mmulhw</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MeP-Options.html#index-mmult-1701"><code>mmult</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="MN10300-Options.html#index-mmult_002dbug-1863"><code>mmult-bug</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="FRV-Options.html#index-mmulti_002dcond_002dexec-1391"><code>mmulti-cond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="Blackfin-Options.html#index-mmulticore-1193"><code>mmulticore</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mmultiple-1975"><code>mmultiple</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mmvcle-2097"><code>mmvcle</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mmvme-2027"><code>mmvme</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="H8_002f300-Options.html#index-mn-1408"><code>mn</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="ARM-Options.html#index-mneon_002dfor_002d64bits-1152"><code>mneon-for-64bits</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="FRV-Options.html#index-mnested_002dcond_002dexec-1393"><code>mnested-cond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="Score-Options.html#index-mnhwloop-2115"><code>mnhwloop</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002d3dnow-1476"><code>mno-3dnow</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MCore-Options.html#index-mno_002d4byte_002dfunctions-1668"><code>mno-4byte-functions</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="V850-Options.html#index-mno_002d8byte_002dalign-2291"><code>mno-8byte-align</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dabicalls-1754"><code>mno-abicalls</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dabshi-1900"><code>mno-abshi</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dac0-1885"><code>mno-ac0</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="SPU-Options.html#index-mno_002daddress_002dspace_002dconversion-2237"><code>mno-address-space-conversion</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dalign_002ddouble-1455"><code>mno-align-double</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="M680x0-Options.html#index-mno_002dalign_002dint-1651"><code>mno-align-int</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="M32R_002fD-Options.html#index-mno_002dalign_002dloops-1610"><code>mno-align-loops</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dalign_002dstringops-1493"><code>mno-align-stringops</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002daltivec-1939"><code>mno-altivec</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MN10300-Options.html#index-mno_002dam33-1866"><code>mno-am33</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="V850-Options.html#index-mno_002dapp_002dregs-2294"><code>mno-app-regs</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dapp_002dregs-2186"><code>mno-app-regs</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RX-Options.html#index-mno_002das100_002dsyntax-2071"><code>mno-as100-syntax</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="SPU-Options.html#index-mno_002datomic_002dupdates-2240"><code>mno-atomic-updates</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002davoid_002dindexed_002daddresses-1982"><code>mno-avoid-indexed-addresses</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dbackchain-2088"><code>mno-backchain</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dbase_002daddresses-1859"><code>mno-base-addresses</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dbit_002dalign-1989"><code>mno-bit-align</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="M680x0-Options.html#index-mno_002dbitfield-1646"><code>mno-bitfield</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dbranch_002dlikely-1835"><code>mno-branch-likely</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dbranch_002dpredict-1857"><code>mno-branch-predict</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dbwx-1330"><code>mno-bwx</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MCore-Options.html#index-mno_002dcallgraph_002ddata-1670"><code>mno-callgraph-data</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dcbcond-2211"><code>mno-cbcond</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dcheck_002dzero_002ddivision-1808"><code>mno-check-zero-division</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dcix-1332"><code>mno-cix</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MicroBlaze-Options.html#index-mno_002dclearbss-1715"><code>mno-clearbss</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dcmpb-1928"><code>mno-cmpb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="FRV-Options.html#index-mno_002dcond_002dexec-1388"><code>mno-cond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mno_002dcond_002dmove-1384"><code>mno-cond-move</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dconst_002dalign-1223"><code>mno-const-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dconst16-2315"><code>mno-const16</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="Moxie-Options.html#index-mno_002dcrt0-1880"><code>mno-crt0</code></a>: <a href="Moxie-Options.html#Moxie-Options">Moxie Options</a></li> <li><a href="MN10300-Options.html#index-mno_002dcrt0-1871"><code>mno-crt0</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dcsync_002danomaly-1178"><code>mno-csync-anomaly</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="CRIS-Options.html#index-mno_002ddata_002dalign-1221"><code>mno-data-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002ddebug-2100"><code>mno-debug</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="V850-Options.html#index-mno_002ddisable_002dcallt-2279"><code>mno-disable-callt</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MCore-Options.html#index-mno_002ddiv-1662"><code>mno-div</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="M680x0-Options.html#index-mno_002ddiv-1642"><code>mno-div</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002ddlmzb-1988"><code>mno-dlmzb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="FRV-Options.html#index-mno_002ddouble-1363"><code>mno-double</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MIPS-Options.html#index-mno_002ddsp-1772"><code>mno-dsp</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002ddspr2-1774"><code>mno-dspr2</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002ddwarf2_002dasm-1552"><code>mno-dwarf2-asm</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="FRV-Options.html#index-mno_002ddword-1361"><code>mno-dword</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002deabi-2033"><code>mno-eabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dearly_002dstop_002dbits-1555"><code>mno-early-stop-bits</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="FRV-Options.html#index-mno_002deflags-1382"><code>mno-eflags</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dembedded_002ddata-1799"><code>mno-embedded-data</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="V850-Options.html#index-mno_002dep-2262"><code>mno-ep</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MMIX-Options.html#index-mno_002depsilon-1846"><code>mno-epsilon</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dexplicit_002drelocs-1806"><code>mno-explicit-relocs</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dexplicit_002drelocs-1340"><code>mno-explicit-relocs</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="H8_002f300-Options.html#index-mno_002dexr-1411"><code>mno-exr</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dextern_002dsdata-1795"><code>mno-extern-sdata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dfancy_002dmath_002d387-1453"><code>mno-fancy-math-387</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dfaster_002dstructs-2198"><code>mno-faster-structs</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dfix-1334"><code>mno-fix</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfix_002d24k-1821"><code>mno-fix-24k</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfix_002dr10000-1827"><code>mno-fix-r10000</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfix_002dr4000-1823"><code>mno-fix-r4000</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfix_002dr4400-1825"><code>mno-fix-r4400</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dflat-2189"><code>mno-flat</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfloat-1766"><code>mno-float</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dfloat32-1896"><code>mno-float32</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dfloat64-1898"><code>mno-float64</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="M32R_002fD-Options.html#index-mno_002dflush_002dfunc-1616"><code>mno-flush-func</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="M32R_002fD-Options.html#index-mno_002dflush_002dtrap-1614"><code>mno-flush-trap</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dfmaf-2215"><code>mno-fmaf</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dfp_002din_002dtoc-1958"><code>mno-fp-in-toc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dfp_002dregs-1321"><code>mno-fp-regs</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dfp_002dret_002din_002d387-1452"><code>mno-fp-ret-in-387</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dfprnd-1926"><code>mno-fprnd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dfpu-2192"><code>mno-fpu</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SH-Options.html#index-mno_002dfsca-2177"><code>mno-fsca</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="SH-Options.html#index-mno_002dfsrra-2179"><code>mno-fsrra</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dfused_002dmadd-2317"><code>mno-fused-madd</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="SH-Options.html#index-mno_002dfused_002dmadd-2175"><code>mno-fused-madd</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dfused_002dmadd-2106"><code>mno-fused-madd</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dfused_002dmadd-1984"><code>mno-fused-madd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dfused_002dmadd-1818"><code>mno-fused-madd</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dfused_002dmadd-1551"><code>mno-fused-madd</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dgnu_002das-1529"><code>mno-gnu-as</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dgnu_002dld-1531"><code>mno-gnu-ld</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dgotplt-1229"><code>mno-gotplt</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dgpopt-1797"><code>mno-gpopt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dhard_002ddfp-2084"><code>mno-hard-dfp</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dhard_002ddfp-1932"><code>mno-hard-dfp</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MCore-Options.html#index-mno_002dhardlit-1660"><code>mno-hardlit</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002did_002dshared_002dlibrary-1183"><code>mno-id-shared-library</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dieee_002dfp-1450"><code>mno-ieee-fp</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dinline_002dfloat_002ddivide-1543"><code>mno-inline-float-divide</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dinline_002dint_002ddivide-1546"><code>mno-inline-int-divide</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dinline_002dsqrt-1549"><code>mno-inline-sqrt</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dint16-1894"><code>mno-int16</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="PDP_002d11-Options.html#index-mno_002dint32-1892"><code>mno-int32</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dinterlink_002dmips16-1747"><code>mno-interlink-mips16</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="AVR-Options.html#index-mno_002dinterrupts-1160"><code>mno-interrupts</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002disel-1947"><code>mno-isel</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dknuthdiv-1852"><code>mno-knuthdiv</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dleaf_002did_002dshared_002dlibrary-1185"><code>mno-leaf-id-shared-library</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dlibfuncs-1844"><code>mno-libfuncs</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dllsc-1770"><code>mno-llsc</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dlocal_002dsdata-1793"><code>mno-local-sdata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="V850-Options.html#index-mno_002dlong_002dcalls-2261"><code>mno-long-calls</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dlong_002dcalls-1814"><code>mno-long-calls</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="HPPA-Options.html#index-mno_002dlong_002dcalls-1435"><code>mno-long-calls</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dlong_002dcalls-1190"><code>mno-long-calls</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="ARM-Options.html#index-mno_002dlong_002dcalls-1136"><code>mno-long-calls</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="V850-Options.html#index-mno_002dlong_002djumps-2283"><code>mno-long-jumps</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dlongcall-2048"><code>mno-longcall</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dlongcalls-2326"><code>mno-longcalls</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dlow_002d64k-1180"><code>mno-low-64k</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MCore-Options.html#index-mno_002dlsim-1677"><code>mno-lsim</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="FR30-Options.html#index-mno_002dlsim-1350"><code>mno-lsim</code></a>: <a href="FR30-Options.html#FR30-Options">FR30 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmad-1816"><code>mno-mad</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dmax-1336"><code>mno-max</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmcount_002dra_002daddress-1841"><code>mno-mcount-ra-address</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmcu-1786"><code>mno-mcu</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmdmx-1780"><code>mno-mdmx</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="FRV-Options.html#index-mno_002dmedia-1365"><code>mno-media</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmemcpy-1812"><code>mno-memcpy</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dmfcrf-1920"><code>mno-mfcrf</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dmfpgpr-1930"><code>mno-mfpgpr</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmips16-1744"><code>mno-mips16</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmips3d-1782"><code>mno-mips3d</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dmmx-1472"><code>mno-mmx</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dmt-1784"><code>mno-mt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dmul_002dbug_002dworkaround-1214"><code>mno-mul-bug-workaround</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="FRV-Options.html#index-mno_002dmuladd-1367"><code>mno-muladd</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dmulhw-1986"><code>mno-mulhw</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MN10300-Options.html#index-mno_002dmult_002dbug-1864"><code>mno-mult-bug</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="FRV-Options.html#index-mno_002dmulti_002dcond_002dexec-1392"><code>mno-multi-cond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dmultiple-1976"><code>mno-multiple</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dmvcle-2098"><code>mno-mvcle</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="FRV-Options.html#index-mno_002dnested_002dcond_002dexec-1394"><code>mno-nested-cond-exec</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="AArch64-Options.html#index-mno_002domit_002dleaf_002dframe_002dpointer-1091"><code>mno-omit-leaf-frame-pointer</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="FRV-Options.html#index-mno_002doptimize_002dmembar-1396"><code>mno-optimize-membar</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MeP-Options.html#index-mno_002dopts-1702"><code>mno-opts</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="FRV-Options.html#index-mno_002dpack-1381"><code>mno-pack</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dpacked_002dstack-2090"><code>mno-packed-stack</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpaired-1951"><code>mno-paired</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dpaired_002dsingle-1778"><code>mno-paired-single</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dpic-1532"><code>mno-pic</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RX-Options.html#index-mno_002dpid-2077"><code>mno-pid</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dplt-1756"><code>mno-plt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dpopc-2213"><code>mno-popc</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpopcntb-1922"><code>mno-popcntb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpopcntd-1924"><code>mno-popcntd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mno_002dpostinc-1112"><code>mno-postinc</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mno_002dpostmodify-1113"><code>mno-postmodify</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpowerpc_002dgfxopt-1916"><code>mno-powerpc-gfxopt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpowerpc_002dgpopt-1914"><code>mno-powerpc-gpopt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dpowerpc64-1918"><code>mno-powerpc64</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="V850-Options.html#index-mno_002dprolog_002dfunction-2264"><code>mno-prolog-function</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dprologue_002depilogue-1227"><code>mno-prologue-epilogue</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dprototype-2025"><code>mno-prototype</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dpush_002dargs-1490"><code>mno-push-args</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dred_002dzone-1507"><code>mno-red-zone</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dregister_002dnames-1536"><code>mno-register-names</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dregnames-2046"><code>mno-regnames</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="V850-Options.html#index-mno_002drelax-2281"><code>mno-relax</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="MCore-Options.html#index-mno_002drelax_002dimmediate-1664"><code>mno-relax-immediate</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002drelocatable-1994"><code>mno-relocatable</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002drelocatable_002dlib-1996"><code>mno-relocatable-lib</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mno_002dround_002dnearest-1106"><code>mno-round-nearest</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="M680x0-Options.html#index-mno_002drtd-1649"><code>mno-rtd</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="FRV-Options.html#index-mno_002dscc-1386"><code>mno-scc</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dar_002ddata_002dspec-1564"><code>mno-sched-ar-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dar_002din_002ddata_002dspec-1570"><code>mno-sched-ar-in-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dbr_002ddata_002dspec-1561"><code>mno-sched-br-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dbr_002din_002ddata_002dspec-1568"><code>mno-sched-br-in-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dcontrol_002dspec-1565"><code>mno-sched-control-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dcount_002dspec_002din_002dcritical_002dpath-1577"><code>mno-sched-count-spec-in-critical-path</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002din_002dcontrol_002dspec-1572"><code>mno-sched-in-control-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dprefer_002dnon_002dcontrol_002dspec_002dinsns-1575"><code>mno-sched-prefer-non-control-spec-insns</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsched_002dprefer_002dnon_002ddata_002dspec_002dinsns-1573"><code>mno-sched-prefer-non-data-spec-insns</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="ARM-Options.html#index-mno_002dsched_002dprolog-1123"><code>mno-sched-prolog</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dsdata-2040"><code>mno-sdata</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dsdata-1537"><code>mno-sdata</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dsep_002ddata-1188"><code>mno-sep-data</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dserialize_002dvolatile-2319"><code>mno-serialize-volatile</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="M680x0-Options.html#index-mno_002dshort-1644"><code>mno-short</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dside_002deffects-1217"><code>mno-side-effects</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RX-Options.html#index-mno_002dsim-2069"><code>mno-sim</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dsingle_002dexit-1861"><code>mno-single-exit</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="MCore-Options.html#index-mno_002dslow_002dbytes-1672"><code>mno-slow-bytes</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dsmall_002dexec-2092"><code>mno-small-exec</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dsmartmips-1776"><code>mno-smartmips</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mno_002dsoft_002dcmpsf-1104"><code>mno-soft-cmpsf</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mno_002dsoft_002dfloat-1318"><code>mno-soft-float</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="HPPA-Options.html#index-mno_002dspace_002dregs-1423"><code>mno-space-regs</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dspe-1949"><code>mno-spe</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Blackfin-Options.html#index-mno_002dspecld_002danomaly-1176"><code>mno-specld-anomaly</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dsplit_002daddresses-1804"><code>mno-split-addresses</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mno_002dsse-1474"><code>mno-sse</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="CRIS-Options.html#index-mno_002dstack_002dalign-1219"><code>mno-stack-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dstack_002dbias-2223"><code>mno-stack-bias</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dstrict_002dalign-1991"><code>mno-strict-align</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="M680x0-Options.html#index-mno_002dstrict_002dalign-1653"><code>mno-strict-align</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dstring-1978"><code>mno-string</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dsum_002din_002dtoc-1959"><code>mno-sum-in-toc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dsym32-1790"><code>mno-sym32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dtarget_002dalign-2324"><code>mno-target-align</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="Xtensa-Options.html#index-mno_002dtext_002dsection_002dliterals-2322"><code>mno-text-section-literals</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dtls_002dmarkers-2050"><code>mno-tls-markers</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dtoc-1997"><code>mno-toc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dtoplevel_002dsymbols-1854"><code>mno-toplevel-symbols</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mno_002dtpf_002dtrace-2104"><code>mno-tpf-trace</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="ARM-Options.html#index-mno_002dunaligned_002daccess-1151"><code>mno-unaligned-access</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dunaligned_002ddoubles-2196"><code>mno-unaligned-doubles</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="MIPS-Options.html#index-mno_002duninit_002dconst_002din_002drodata-1801"><code>mno-uninit-const-in-rodata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dupdate-1980"><code>mno-update</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dv8plus-2203"><code>mno-v8plus</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mno_002dvect_002ddouble-1114"><code>mno-vect-double</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dvis-2205"><code>mno-vis</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dvis2-2207"><code>mno-vis2</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SPARC-Options.html#index-mno_002dvis3-2209"><code>mno-vis3</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="FRV-Options.html#index-mno_002dvliw_002dbranch-1390"><code>mno-vliw-branch</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="IA_002d64-Options.html#index-mno_002dvolatile_002dasm_002dstop-1534"><code>mno-volatile-asm-stop</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dvrsave-1941"><code>mno-vrsave</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dvsx-1953"><code>mno-vsx</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RX-Options.html#index-mno_002dwarn_002dmultiple_002dfast_002dinterrupts-2078"><code>mno-warn-multiple-fast-interrupts</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MCore-Options.html#index-mno_002dwide_002dbitfields-1666"><code>mno-wide-bitfields</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="MIPS-Options.html#index-mno_002dxgot-1758"><code>mno-xgot</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M680x0-Options.html#index-mno_002dxgot-1656"><code>mno-xgot</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mno_002dxl_002dcompat-1964"><code>mno-xl-compat</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SH-Options.html#index-mno_002dzdcbranch-2171"><code>mno-zdcbranch</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MMIX-Options.html#index-mno_002dzero_002dextend-1850"><code>mno-zero-extend</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="M680x0-Options.html#index-mnobitfield-1645"><code>mnobitfield</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="SH-Options.html#index-mnoieee-2151"><code>mnoieee</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MN10300-Options.html#index-mnoliw-1874"><code>mnoliw</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="SH-Options.html#index-mnomacsave-2149"><code>mnomacsave</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mnop_002dfun_002ddllimport-1517"><code>mnop-fun-dllimport</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mnops-1103"><code>mnops</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="MN10300-Options.html#index-mnosetlb-1876"><code>mnosetlb</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mnosplit_002dlohi-1111"><code>mnosplit-lohi</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-momit_002dleaf_002dframe_002dpointer-1497"><code>momit-leaf-frame-pointer</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Blackfin-Options.html#index-momit_002dleaf_002dframe_002dpointer-1174"><code>momit-leaf-frame-pointer</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="AArch64-Options.html#index-momit_002dleaf_002dframe_002dpointer-1090"><code>momit-leaf-frame-pointer</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="Darwin-Options.html#index-mone_002dbyte_002dbool-1249"><code>mone-byte-bool</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="FRV-Options.html#index-moptimize_002dmembar-1395"><code>moptimize-membar</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="Preprocessor-Options.html#index-MP-968"><code>MP</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="HPPA-Options.html#index-mpa_002drisc_002d1_002d0-1416"><code>mpa-risc-1-0</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="HPPA-Options.html#index-mpa_002drisc_002d1_002d1-1417"><code>mpa-risc-1-1</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="HPPA-Options.html#index-mpa_002drisc_002d2_002d0-1418"><code>mpa-risc-2-0</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="FRV-Options.html#index-mpack-1380"><code>mpack</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mpacked_002dstack-2089"><code>mpacked-stack</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="SH-Options.html#index-mpadstruct-2154"><code>mpadstruct</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpaired-1950"><code>mpaired</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-mpaired_002dsingle-1777"><code>mpaired-single</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mpc32-1465"><code>mpc32</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mpc64-1466"><code>mpc64</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mpc80-1467"><code>mpc80</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="M680x0-Options.html#index-mpcrel-1652"><code>mpcrel</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="CRIS-Options.html#index-mpdebug-1215"><code>mpdebug</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpe-1965"><code>mpe</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mpe_002daligned_002dcommons-1524"><code>mpe-aligned-commons</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="ARM-Options.html#index-mpic_002dregister-1138"><code>mpic-register</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RX-Options.html#index-mpid-2076"><code>mpid</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MIPS-Options.html#index-mplt-1755"><code>mplt</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpointers_002dto_002dnested_002dfunctions-2057"><code>mpointers-to-nested-functions</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="ARM-Options.html#index-mpoke_002dfunction_002dname-1139"><code>mpoke-function-name</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="SPARC-Options.html#index-mpopc-2212"><code>mpopc</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpopcntb-1921"><code>mpopcntb</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpopcntd-1923"><code>mpopcntd</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="HPPA-Options.html#index-mportable_002druntime-1427"><code>mportable-runtime</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpowerpc_002dgfxopt-1915"><code>mpowerpc-gfxopt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpowerpc_002dgpopt-1913"><code>mpowerpc-gpopt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mpowerpc64-1917"><code>mpowerpc64</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mprefer_002davx128-1479"><code>mprefer-avx128</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mprefer_002dshort_002dinsn_002dregs-1100"><code>mprefer-short-insn-regs</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="SH-Options.html#index-mprefergot-2158"><code>mprefergot</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mpreferred_002dstack_002dboundary-1469"><code>mpreferred-stack-boundary</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SH-Options.html#index-mpretend_002dcmove-2180"><code>mpretend-cmove</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mprioritize_002drestricted_002dinsns-2005"><code>mprioritize-restricted-insns</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="V850-Options.html#index-mprolog_002dfunction-2265"><code>mprolog-function</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="CRIS-Options.html#index-mprologue_002depilogue-1228"><code>mprologue-epilogue</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mprototype-2024"><code>mprototype</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="SH-Options.html#index-mpt_002dfixed-2167"><code>mpt-fixed</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mpush_002dargs-1489"><code>mpush-args</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="Preprocessor-Options.html#index-MQ-970"><code>MQ</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="MIPS-Options.html#index-mr10k_002dcache_002dbarrier-1831"><code>mr10k-cache-barrier</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mrecip-2052"><code>mrecip</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mrecip-1484"><code>mrecip</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mrecip_002dprecision-2054"><code>mrecip-precision</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mrecip_003dopt-2053"><code>mrecip=opt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mrecip_003dopt-1485"><code>mrecip=opt</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-mregister_002dnames-1535"><code>mregister-names</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mregnames-2045"><code>mregnames</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mregparm-1462"><code>mregparm</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="V850-Options.html#index-mrelax-2280"><code>mrelax</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SH-Options.html#index-mrelax-2142"><code>mrelax</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="RX-Options.html#index-mrelax-2073"><code>mrelax</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MN10300-Options.html#index-mrelax-1872"><code>mrelax</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="H8_002f300-Options.html#index-mrelax-1405"><code>mrelax</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="AVR-Options.html#index-mrelax-1161"><code>mrelax</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="MCore-Options.html#index-mrelax_002dimmediate-1663"><code>mrelax-immediate</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="MIPS-Options.html#index-mrelax_002dpic_002dcalls-1839"><code>mrelax-pic-calls</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mrelocatable-1993"><code>mrelocatable</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mrelocatable_002dlib-1995"><code>mrelocatable-lib</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MeP-Options.html#index-mrepeat-1703"><code>mrepeat</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="ARM-Options.html#index-mrestrict_002dit-1153"><code>mrestrict-it</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="MN10300-Options.html#index-mreturn_002dpointer_002don_002dd0-1870"><code>mreturn-pointer-on-d0</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="V850-Options.html#index-mrh850_002dabi-2287"><code>mrh850-abi</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="Function-Attributes.html#index-mrtd-2597"><code>mrtd</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="M680x0-Options.html#index-mrtd-1648"><code>mrtd</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mrtd-1461"><code>mrtd</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="VxWorks-Options.html#index-mrtp-2304"><code>mrtp</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="MeP-Options.html#index-ms-1704"><code>ms</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="H8_002f300-Options.html#index-ms-1407"><code>ms</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="H8_002f300-Options.html#index-ms2600-1409"><code>ms2600</code></a>: <a href="H8_002f300-Options.html#H8_002f300-Options">H8/300 Options</a></li> <li><a href="SPU-Options.html#index-msafe_002ddma-2227"><code>msafe-dma</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="SPU-Options.html#index-msafe_002dhints-2244"><code>msafe-hints</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-msahf-1481"><code>msahf</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MeP-Options.html#index-msatur-1705"><code>msatur</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="RX-Options.html#index-msave_002dacc_002din_002dinterrupts-2075"><code>msave-acc-in-interrupts</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msave_002dtoc_002dindirect-2058"><code>msave-toc-indirect</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="FRV-Options.html#index-mscc-1385"><code>mscc</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dar_002ddata_002dspec-1563"><code>msched-ar-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dar_002din_002ddata_002dspec-1569"><code>msched-ar-in-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dbr_002ddata_002dspec-1562"><code>msched-br-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dbr_002din_002ddata_002dspec-1567"><code>msched-br-in-data-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dcontrol_002dspec-1566"><code>msched-control-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msched_002dcostly_002ddep-2006"><code>msched-costly-dep</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dcount_002dspec_002din_002dcritical_002dpath-1578"><code>msched-count-spec-in-critical-path</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dfp_002dmem_002ddeps_002dzero_002dcost-1582"><code>msched-fp-mem-deps-zero-cost</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002din_002dcontrol_002dspec-1571"><code>msched-in-control-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dmax_002dmemory_002dinsns-1584"><code>msched-max-memory-insns</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dmax_002dmemory_002dinsns_002dhard_002dlimit-1585"><code>msched-max-memory-insns-hard-limit</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dprefer_002dnon_002dcontrol_002dspec_002dinsns-1576"><code>msched-prefer-non-control-spec-insns</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dprefer_002dnon_002ddata_002dspec_002dinsns-1574"><code>msched-prefer-non-data-spec-insns</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dspec_002dldc-1579"><code>msched-spec-ldc</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="IA_002d64-Options.html#index-msched_002dstop_002dbits_002dafter_002devery_002dcycle-1581"><code>msched-stop-bits-after-every-cycle</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="HPPA-Options.html#index-mschedule-1429"><code>mschedule</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Score-Options.html#index-mscore5-2118"><code>mscore5</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="Score-Options.html#index-mscore5u-2119"><code>mscore5u</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="Score-Options.html#index-mscore7-2120"><code>mscore7</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="Score-Options.html#index-mscore7d-2121"><code>mscore7d</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="V850-Options.html#index-msda-2268"><code>msda</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata-2037"><code>msdata</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-msdata-1538"><code>msdata</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="C6X-Options.html#index-msdata_003dall-1204"><code>msdata=all</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata_003ddata-2038"><code>msdata=data</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata_003ddefault-2036"><code>msdata=default</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="C6X-Options.html#index-msdata_003ddefault-1203"><code>msdata=default</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata_003deabi-2034"><code>msdata=eabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata_003dnone-2039"><code>msdata=none</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="M32R_002fD-Options.html#index-msdata_003dnone-1603"><code>msdata=none</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="C6X-Options.html#index-msdata_003dnone-1205"><code>msdata=none</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="M32R_002fD-Options.html#index-msdata_003dsdata-1604"><code>msdata=sdata</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msdata_003dsysv-2035"><code>msdata=sysv</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="M32R_002fD-Options.html#index-msdata_003duse-1605"><code>msdata=use</code></a>: <a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></li> <li><a href="MeP-Options.html#index-msdram-1706"><code>msdram</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="Blackfin-Options.html#index-msdram-1196"><code>msdram</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msecure_002dplt-1944"><code>msecure-plt</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-msel_002dsched_002ddont_002dcheck_002dcontrol_002dspec-1583"><code>msel-sched-dont-check-control-spec</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="Blackfin-Options.html#index-msep_002ddata-1187"><code>msep-data</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="Xtensa-Options.html#index-mserialize_002dvolatile-2318"><code>mserialize-volatile</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="MN10300-Options.html#index-msetlb-1875"><code>msetlb</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="Blackfin-Options.html#index-mshared_002dlibrary_002did-1186"><code>mshared-library-id</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="M680x0-Options.html#index-mshort-1643"><code>mshort</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="LM32-Options.html#index-msign_002dextend_002denabled-1590"><code>msign-extend-enabled</code></a>: <a href="LM32-Options.html#LM32-Options">LM32 Options</a></li> <li><a href="Xstormy16-Options.html#index-msim-2312"><code>msim</code></a>: <a href="Xstormy16-Options.html#Xstormy16-Options">Xstormy16 Options</a></li> <li><a href="RX-Options.html#index-msim-2068"><code>msim</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msim-2026"><code>msim</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RL78-Options.html#index-msim-1909"><code>msim</code></a>: <a href="RL78-Options.html#RL78-Options">RL78 Options</a></li> <li><a href="MeP-Options.html#index-msim-1707"><code>msim</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="M32C-Options.html#index-msim-1594"><code>msim</code></a>: <a href="M32C-Options.html#M32C-Options">M32C Options</a></li> <li><a href="CR16-Options.html#index-msim-1239"><code>msim</code></a>: <a href="CR16-Options.html#CR16-Options">CR16 Options</a></li> <li><a href="C6X-Options.html#index-msim-1202"><code>msim</code></a>: <a href="C6X-Options.html#C6X-Options">C6X Options</a></li> <li><a href="Blackfin-Options.html#index-msim-1173"><code>msim</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MeP-Options.html#index-msimnovec-1708"><code>msimnovec</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msimple_002dfpu-1972"><code>msimple-fpu</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MMIX-Options.html#index-msingle_002dexit-1860"><code>msingle-exit</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msingle_002dfloat-1970"><code>msingle-float</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-msingle_002dfloat-1767"><code>msingle-float</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msingle_002dpic_002dbase-2004"><code>msingle-pic-base</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="ARM-Options.html#index-msingle_002dpic_002dbase-1137"><code>msingle-pic-base</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="HPPA-Options.html#index-msio-1432"><code>msio</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="MCore-Options.html#index-mslow_002dbytes-1671"><code>mslow-bytes</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="DEC-Alpha-Options.html#index-msmall_002ddata-1341"><code>msmall-data</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="RX-Options.html#index-msmall_002ddata_002dlimit-2067"><code>msmall-data-limit</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="MicroBlaze-Options.html#index-msmall_002ddivides-1721"><code>msmall-divides</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-msmall_002dexec-2091"><code>msmall-exec</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="SPU-Options.html#index-msmall_002dmem-2230"><code>msmall-mem</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="FR30-Options.html#index-msmall_002dmodel-1349"><code>msmall-model</code></a>: <a href="FR30-Options.html#FR30-Options">FR30 Options</a></li> <li><a href="DEC-Alpha-Options.html#index-msmall_002dtext-1343"><code>msmall-text</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-msmall16-1109"><code>msmall16</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="MIPS-Options.html#index-msmartmips-1775"><code>msmartmips</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="V850-Options.html#index-msoft_002dfloat-2284"><code>msoft-float</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SPARC-Options.html#index-msoft_002dfloat-2193"><code>msoft-float</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-msoft_002dfloat-2082"><code>msoft-float</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msoft_002dfloat-1968"><code>msoft-float</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="PDP_002d11-Options.html#index-msoft_002dfloat-1883"><code>msoft-float</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="MIPS-Options.html#index-msoft_002dfloat-1765"><code>msoft-float</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MicroBlaze-Options.html#index-msoft_002dfloat-1712"><code>msoft-float</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="M680x0-Options.html#index-msoft_002dfloat-1640"><code>msoft-float</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-msoft_002dfloat-1451"><code>msoft-float</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="HPPA-Options.html#index-msoft_002dfloat-1431"><code>msoft-float</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="FRV-Options.html#index-msoft_002dfloat-1357"><code>msoft-float</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="DEC-Alpha-Options.html#index-msoft_002dfloat-1319"><code>msoft-float</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="SPARC-Options.html#index-msoft_002dquad_002dfloat-2195"><code>msoft-quad-float</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="AVR-Options.html#index-msp8-1162"><code>msp8</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="V850-Options.html#index-mspace-2266"><code>mspace</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SH-Options.html#index-mspace-2157"><code>mspace</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mspe-1948"><code>mspe</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Blackfin-Options.html#index-mspecld_002danomaly-1175"><code>mspecld-anomaly</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="MIPS-Options.html#index-msplit_002daddresses-1803"><code>msplit-addresses</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-msplit_002dvecmove_002dearly-1116"><code>msplit-vecmove-early</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-msse-1473"><code>msse</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-msse2avx-1499"><code>msse2avx</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-msseregparm-1463"><code>msseregparm</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="CRIS-Options.html#index-mstack_002dalign-1218"><code>mstack-align</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="SPARC-Options.html#index-mstack_002dbias-2222"><code>mstack-bias</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="Blackfin-Options.html#index-mstack_002dcheck_002dl1-1181"><code>mstack-check-l1</code></a>: <a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mstack_002dguard-2109"><code>mstack-guard</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="MCore-Options.html#index-mstack_002dincrement-1678"><code>mstack-increment</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-mstack_002doffset-1105"><code>mstack-offset</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mstack_002dsize-2110"><code>mstack-size</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mstackrealign-1468"><code>mstackrealign</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SPU-Options.html#index-mstdmain-2232"><code>mstdmain</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mstrict_002dalign-1992"><code>mstrict-align</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="M680x0-Options.html#index-mstrict_002dalign-1654"><code>mstrict-align</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="AArch64-Options.html#index-mstrict_002dalign-1089"><code>mstrict-align</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="AVR-Options.html#index-mstrict_002dX-1163"><code>mstrict-X</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mstring-1977"><code>mstring</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mstringop_002dstrategy_003d_0040var_007balg_007d-1496"><code>mstringop-strategy=</code><var>alg</var></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="ARM-Options.html#index-mstructure_002dsize_002dboundary-1133"><code>mstructure-size-boundary</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-msvr4_002dstruct_002dreturn-2018"><code>msvr4-struct-return</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MIPS-Options.html#index-msym32-1789"><code>msym32</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="MIPS-Options.html#index-msynci-1838"><code>msynci</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Preprocessor-Options.html#index-MT-969"><code>MT</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Xtensa-Options.html#index-mtarget_002dalign-2323"><code>mtarget-align</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="SH-Options.html#index-mtas-2156"><code>mtas</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="V850-Options.html#index-mtda-2267"><code>mtda</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="Xtensa-Options.html#index-mtext_002dsection_002dliterals-2321"><code>mtext-section-literals</code></a>: <a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></li> <li><a href="MeP-Options.html#index-mtf-1709"><code>mtf</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mthread-1518"><code>mthread</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mthreads-1492"><code>mthreads</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="ARM-Options.html#index-mthumb-1141"><code>mthumb</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mthumb_002dinterwork-1122"><code>mthumb-interwork</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AVR-Options.html#index-mtiny_002dstack-1164"><code>mtiny-stack</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="MeP-Options.html#index-mtiny_003d-1710"><code>mtiny=</code></a>: <a href="MeP-Options.html#MeP-Options">MeP Options</a></li> <li><a href="FRV-Options.html#index-mtls-1371"><code>mtls</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="FRV-Options.html#index-mTLS-1370"><code>mTLS</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mtls_002ddialect-1488"><code>mtls-dialect</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="ARM-Options.html#index-mtls_002ddialect-1147"><code>mtls-dialect</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-mtls_002ddialect_003ddesc-1092"><code>mtls-dialect=desc</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="AArch64-Options.html#index-mtls_002ddialect_003dtraditional-1093"><code>mtls-dialect=traditional</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mtls_002ddirect_002dseg_002drefs-1498"><code>mtls-direct-seg-refs</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mtls_002dmarkers-2049"><code>mtls-markers</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="IA_002d64-Options.html#index-mtls_002dsize-1557"><code>mtls-size</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mtoc-1998"><code>mtoc</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="FRV-Options.html#index-mtomcat_002dstats-1397"><code>mtomcat-stats</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="MMIX-Options.html#index-mtoplevel_002dsymbols-1853"><code>mtoplevel-symbols</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="ARM-Options.html#index-mtp-1146"><code>mtp</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mtpcs_002dframe-1142"><code>mtpcs-frame</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mtpcs_002dleaf_002dframe-1143"><code>mtpcs-leaf-frame</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mtpf_002dtrace-2103"><code>mtpf-trace</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mtrap_002dprecision-1326"><code>mtrap-precision</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="SPARC-Options.html#index-mtune-2201"><code>mtune</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mtune-2102"><code>mtune</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mtune-1934"><code>mtune</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MN10300-Options.html#index-mtune-1869"><code>mtune</code></a>: <a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></li> <li><a href="MIPS-Options.html#index-mtune-1734"><code>mtune</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M680x0-Options.html#index-mtune-1620"><code>mtune</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="IA_002d64-Options.html#index-mtune-1558"><code>mtune</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mtune-1445"><code>mtune</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="DEC-Alpha-Options.html#index-mtune-1346"><code>mtune</code></a>: <a href="DEC-Alpha-Options.html#DEC-Alpha-Options">DEC Alpha Options</a></li> <li><a href="CRIS-Options.html#index-mtune-1209"><code>mtune</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="ARM-Options.html#index-mtune-1129"><code>mtune</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="AArch64-Options.html#index-mtune-1096"><code>mtune</code></a>: <a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-muclibc-1400"><code>muclibc</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="Score-Options.html#index-muls-2116"><code>muls</code></a>: <a href="Score-Options.html#Score-Options">Score Options</a></li> <li><a href="SH-Options.html#index-multcost_003d_0040var_007bnumber_007d-2160"><code>multcost=</code><var>number</var></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="Darwin-Options.html#index-multi_005fmodule-1278"><code>multi_module</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="FRV-Options.html#index-multilib_002dlibrary_002dpic-1373"><code>multilib-library-pic</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="LM32-Options.html#index-multiply_002denabled-1589"><code>multiply-enabled</code></a>: <a href="LM32-Options.html#LM32-Options">LM32 Options</a></li> <li><a href="Darwin-Options.html#index-multiply_005fdefined-1279"><code>multiply_defined</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-multiply_005fdefined_005funused-1280"><code>multiply_defined_unused</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="ARM-Options.html#index-munaligned_002daccess-1150"><code>munaligned-access</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="SPARC-Options.html#index-munaligned_002ddoubles-2197"><code>munaligned-doubles</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-municode-1519"><code>municode</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="MIPS-Options.html#index-muninit_002dconst_002din_002drodata-1800"><code>muninit-const-in-rodata</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="VAX-Options.html#index-munix-2296"><code>munix</code></a>: <a href="VAX-Options.html#VAX-Options">VAX Options</a></li> <li><a href="PDP_002d11-Options.html#index-munix_002dasm-1903"><code>munix-asm</code></a>: <a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></li> <li><a href="SPU-Options.html#index-munsafe_002ddma-2228"><code>munsafe-dma</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mupdate-1979"><code>mupdate</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="LM32-Options.html#index-muser_002denabled-1591"><code>muser-enabled</code></a>: <a href="LM32-Options.html#LM32-Options">LM32 Options</a></li> <li><a href="SH-Options.html#index-musermode-2159"><code>musermode</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="V850-Options.html#index-mv850-2270"><code>mv850</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e-2277"><code>mv850e</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e1-2275"><code>mv850e1</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e2-2274"><code>mv850e2</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e2v3-2273"><code>mv850e2v3</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e2v4-2272"><code>mv850e2v4</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850e3v5-2271"><code>mv850e3v5</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="V850-Options.html#index-mv850es-2276"><code>mv850es</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SPARC-Options.html#index-mv8plus-2202"><code>mv8plus</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mveclibabi-2055"><code>mveclibabi</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mveclibabi-1486"><code>mveclibabi</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mvect8_002dret_002din_002dmem-1464"><code>mvect8-ret-in-mem</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="SPARC-Options.html#index-mvis-2204"><code>mvis</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SPARC-Options.html#index-mvis2-2206"><code>mvis2</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="SPARC-Options.html#index-mvis3-2208"><code>mvis3</code></a>: <a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></li> <li><a href="FRV-Options.html#index-mvliw_002dbranch-1389"><code>mvliw-branch</code></a>: <a href="FRV-Options.html#FRV-Options">FRV Options</a></li> <li><a href="VMS-Options.html#index-mvms_002dreturn_002dcodes-2299"><code>mvms-return-codes</code></a>: <a href="VMS-Options.html#VMS-Options">VMS Options</a></li> <li><a href="IA_002d64-Options.html#index-mvolatile_002dasm_002dstop-1533"><code>mvolatile-asm-stop</code></a>: <a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></li> <li><a href="MIPS-Options.html#index-mvr4130_002dalign-1837"><code>mvr4130-align</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mvrsave-1940"><code>mvrsave</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mvsx-1952"><code>mvsx</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mvxworks-2030"><code>mvxworks</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mvzeroupper-1478"><code>mvzeroupper</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mwarn_002dcell_002dmicrocode-1943"><code>mwarn-cell-microcode</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mwarn_002ddynamicstack-2108"><code>mwarn-dynamicstack</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mwarn_002dframesize-2107"><code>mwarn-framesize</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="RX-Options.html#index-mwarn_002dmultiple_002dfast_002dinterrupts-2079"><code>mwarn-multiple-fast-interrupts</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="SPU-Options.html#index-mwarn_002dreloc-2225"><code>mwarn-reloc</code></a>: <a href="SPU-Options.html#SPU-Options">SPU Options</a></li> <li><a href="MCore-Options.html#index-mwide_002dbitfields-1665"><code>mwide-bitfields</code></a>: <a href="MCore-Options.html#MCore-Options">MCore Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mwin32-1520"><code>mwin32</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="i386-and-x86_002d64-Windows-Options.html#index-mwindows-1521"><code>mwindows</code></a>: <a href="i386-and-x86_002d64-Windows-Options.html#i386-and-x86_002d64-Windows-Options">i386 and x86-64 Windows Options</a></li> <li><a href="ARM-Options.html#index-mword_002drelocations-1148"><code>mword-relocations</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="ARM-Options.html#index-mwords_002dlittle_002dendian-1127"><code>mwords-little-endian</code></a>: <a href="ARM-Options.html#ARM-Options">ARM Options</a></li> <li><a href="i386-and-x86_002d64-Options.html#index-mx32-1506"><code>mx32</code></a>: <a href="i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options">i386 and x86-64 Options</a></li> <li><a href="MIPS-Options.html#index-mxgot-1757"><code>mxgot</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="M680x0-Options.html#index-mxgot-1655"><code>mxgot</code></a>: <a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mxilinx_002dfpu-1974"><code>mxilinx-fpu</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dbarrel_002dshift-1719"><code>mxl-barrel-shift</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-mxl_002dcompat-1963"><code>mxl-compat</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dfloat_002dconvert-1725"><code>mxl-float-convert</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dfloat_002dsqrt-1726"><code>mxl-float-sqrt</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dgp_002dopt-1723"><code>mxl-gp-opt</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dmultiply_002dhigh-1724"><code>mxl-multiply-high</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dpattern_002dcompare-1720"><code>mxl-pattern-compare</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dreorder-1729"><code>mxl-reorder</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dsoft_002ddiv-1718"><code>mxl-soft-div</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dsoft_002dmul-1717"><code>mxl-soft-mul</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="MicroBlaze-Options.html#index-mxl_002dstack_002dcheck-1722"><code>mxl-stack-check</code></a>: <a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-myellowknife-2029"><code>myellowknife</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="S_002f390-and-zSeries-Options.html#index-mzarch-2095"><code>mzarch</code></a>: <a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></li> <li><a href="V850-Options.html#index-mzda-2269"><code>mzda</code></a>: <a href="V850-Options.html#V850-Options">V850 Options</a></li> <li><a href="SH-Options.html#index-mzdcbranch-2170"><code>mzdcbranch</code></a>: <a href="SH-Options.html#SH-Options">SH Options</a></li> <li><a href="MMIX-Options.html#index-mzero_002dextend-1849"><code>mzero-extend</code></a>: <a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></li> <li><a href="Overall-Options.html#index-no_002dcanonical_002dprefixes-89"><code>no-canonical-prefixes</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Preprocessor-Options.html#index-no_002dintegrated_002dcpp-943"><code>no-integrated-cpp</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Directory-Options.html#index-no_002dsysroot_002dsuffix-1066"><code>no-sysroot-suffix</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Darwin-Options.html#index-no_005fdead_005fstrip_005finits_005fand_005fterms-1282"><code>no_dead_strip_inits_and_terms</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-noall_005fload-1281"><code>noall_load</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="MIPS-Options.html#index-nocpp-1819"><code>nocpp</code></a>: <a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></li> <li><a href="Link-Options.html#index-nodefaultlibs-1036"><code>nodefaultlibs</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Darwin-Options.html#index-nofixprebinding-1283"><code>nofixprebinding</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="RX-Options.html#index-nofpu-2063"><code>nofpu</code></a>: <a href="RX-Options.html#RX-Options">RX Options</a></li> <li><a href="HPPA-Options.html#index-nolibdld-1437"><code>nolibdld</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Darwin-Options.html#index-nomultidefs-1284"><code>nomultidefs</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="VxWorks-Options.html#index-non_002dstatic-2305"><code>non-static</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="Darwin-Options.html#index-noprebind-1285"><code>noprebind</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-noseglinkedit-1286"><code>noseglinkedit</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-nostartfiles-1035"><code>nostartfiles</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-nostdinc-979"><code>nostdinc</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Preprocessor-Options.html#index-nostdinc_002b_002b-980"><code>nostdinc++</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-nostdinc_002b_002b-171"><code>nostdinc++</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Link-Options.html#index-nostdlib-1037"><code>nostdlib</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-o-948"><code>o</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Optimize-Options.html#index-O-733"><code>O</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Overall-Options.html#index-o-83"><code>o</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Optimize-Options.html#index-O0-737"><code>O0</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-O1-734"><code>O1</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-O2-735"><code>O2</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-O3-736"><code>O3</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-Ofast-739"><code>Ofast</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-Og-740"><code>Og</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Optimize-Options.html#index-Os-738"><code>Os</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Preprocessor-Options.html#index-P-1014"><code>P</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Debugging-Options.html#index-p-573"><code>p</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-pagezero_005fsize-1287"><code>pagezero_size</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Optimize-Options.html#index-param-938"><code>param</code></a>: <a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></li> <li><a href="Overall-Options.html#index-pass_002dexit_002dcodes-78"><code>pass-exit-codes</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Warnings-and-Errors.html#index-pedantic-3596"><code>pedantic</code></a>: <a href="Warnings-and-Errors.html#Warnings-and-Errors">Warnings and Errors</a></li> <li><a href="Alternate-Keywords.html#index-pedantic-2888"><code>pedantic</code></a>: <a href="Alternate-Keywords.html#Alternate-Keywords">Alternate Keywords</a></li> <li><a href="C-Extensions.html#index-pedantic-2405"><code>pedantic</code></a>: <a href="C-Extensions.html#C-Extensions">C Extensions</a></li> <li><a href="Preprocessor-Options.html#index-pedantic-960"><code>pedantic</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-pedantic-260"><code>pedantic</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Standards.html#index-pedantic-62"><code>pedantic</code></a>: <a href="Standards.html#Standards">Standards</a></li> <li><a href="Warnings-and-Errors.html#index-pedantic_002derrors-3597"><code>pedantic-errors</code></a>: <a href="Warnings-and-Errors.html#Warnings-and-Errors">Warnings and Errors</a></li> <li><a href="Non_002dbugs.html#index-pedantic_002derrors-3592"><code>pedantic-errors</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="Preprocessor-Options.html#index-pedantic_002derrors-961"><code>pedantic-errors</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-pedantic_002derrors-262"><code>pedantic-errors</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Standards.html#index-pedantic_002derrors-63"><code>pedantic-errors</code></a>: <a href="Standards.html#Standards">Standards</a></li> <li><a href="Debugging-Options.html#index-pg-575"><code>pg</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Link-Options.html#index-pie-1044"><code>pie</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Overall-Options.html#index-pipe-86"><code>pipe</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Darwin-Options.html#index-prebind-1288"><code>prebind</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-prebind_005fall_005ftwolevel_005fmodules-1289"><code>prebind_all_twolevel_modules</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Debugging-Options.html#index-print_002dfile_002dname-716"><code>print-file-name</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dlibgcc_002dfile_002dname-722"><code>print-libgcc-file-name</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dmulti_002ddirectory-717"><code>print-multi-directory</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dmulti_002dlib-718"><code>print-multi-lib</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dmulti_002dos_002ddirectory-719"><code>print-multi-os-directory</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dmultiarch-720"><code>print-multiarch</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-print_002dobjc_002druntime_002dinfo-236"><code>print-objc-runtime-info</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Debugging-Options.html#index-print_002dprog_002dname-721"><code>print-prog-name</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dsearch_002ddirs-723"><code>print-search-dirs</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dsysroot-724"><code>print-sysroot</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-print_002dsysroot_002dheaders_002dsuffix-725"><code>print-sysroot-headers-suffix</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-private_005fbundle-1290"><code>private_bundle</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Solaris-2-Options.html#index-pthread-2184"><code>pthread</code></a>: <a href="Solaris-2-Options.html#Solaris-2-Options">Solaris 2 Options</a></li> <li><a href="RS_002f6000-and-PowerPC-Options.html#index-pthread-2051"><code>pthread</code></a>: <a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></li> <li><a href="Solaris-2-Options.html#index-pthreads-2183"><code>pthreads</code></a>: <a href="Solaris-2-Options.html#Solaris-2-Options">Solaris 2 Options</a></li> <li><a href="Debugging-Options.html#index-Q-576"><code>Q</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="System-V-Options.html#index-Qn-2247"><code>Qn</code></a>: <a href="System-V-Options.html#System-V-Options">System V Options</a></li> <li><a href="System-V-Options.html#index-Qy-2246"><code>Qy</code></a>: <a href="System-V-Options.html#System-V-Options">System V Options</a></li> <li><a href="Link-Options.html#index-rdynamic-1045"><code>rdynamic</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Darwin-Options.html#index-read_005fonly_005frelocs-1291"><code>read_only_relocs</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-remap-1018"><code>remap</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Link-Options.html#index-s-1046"><code>s</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Link-Options.html#index-S-1030"><code>S</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Overall-Options.html#index-S-80"><code>S</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Debugging-Options.html#index-save_002dtemps-708"><code>save-temps</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Debugging-Options.html#index-save_002dtemps_003dobj-709"><code>save-temps=obj</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="Darwin-Options.html#index-sectalign-1292"><code>sectalign</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-sectcreate-1296"><code>sectcreate</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-sectobjectsymbols-1293"><code>sectobjectsymbols</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-sectorder-1298"><code>sectorder</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-seg1addr-1295"><code>seg1addr</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-seg_005faddr_005ftable-1302"><code>seg_addr_table</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-seg_005faddr_005ftable_005ffilename-1303"><code>seg_addr_table_filename</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-segaddr-1299"><code>segaddr</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-seglinkedit-1304"><code>seglinkedit</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-segprot-1305"><code>segprot</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-segs_005fread_005fonly_005faddr-1300"><code>segs_read_only_addr</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-segs_005fread_005fwrite_005faddr-1301"><code>segs_read_write_addr</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-shared-1048"><code>shared</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Link-Options.html#index-shared_002dlibgcc-1049"><code>shared-libgcc</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Adapteva-Epiphany-Options.html#index-short_002dcalls-1108"><code>short-calls</code></a>: <a href="Adapteva-Epiphany-Options.html#Adapteva-Epiphany-Options">Adapteva Epiphany Options</a></li> <li><a href="CRIS-Options.html#index-sim-1233"><code>sim</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="CRIS-Options.html#index-sim2-1234"><code>sim2</code></a>: <a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></li> <li><a href="Darwin-Options.html#index-single_005fmodule-1308"><code>single_module</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Directory-Options.html#index-specs-1064"><code>specs</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="HPPA-Options.html#index-static-1438"><code>static</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Darwin-Options.html#index-static-1309"><code>static</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-static-1047"><code>static</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Link-Options.html#index-static_002dlibgcc-1050"><code>static-libgcc</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Non_002dbugs.html#index-std-3589"><code>std</code></a>: <a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></li> <li><a href="Other-Builtins.html#index-std-3354"><code>std</code></a>: <a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></li> <li><a href="C-Dialect-Options.html#index-std-106"><code>std</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Standards.html#index-std-60"><code>std</code></a>: <a href="Standards.html#Standards">Standards</a></li> <li><a href="Preprocessor-Options.html#index-std_003d-977"><code>std=</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-sub_005flibrary-1310"><code>sub_library</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-sub_005fumbrella-1311"><code>sub_umbrella</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-symbolic-1051"><code>symbolic</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Directory-Options.html#index-sysroot-1065"><code>sysroot</code></a>: <a href="Directory-Options.html#Directory-Options">Directory Options</a></li> <li><a href="Link-Options.html#index-T-1052"><code>T</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-target_002dhelp-1020"><code>target-help</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-target_002dhelp-88"><code>target-help</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="HPPA-Options.html#index-threads-1439"><code>threads</code></a>: <a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></li> <li><a href="Debugging-Options.html#index-time-710"><code>time</code></a>: <a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-tno_002dandroid_002dcc-1403"><code>tno-android-cc</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="GNU_002fLinux-Options.html#index-tno_002dandroid_002dld-1404"><code>tno-android-ld</code></a>: <a href="GNU_002fLinux-Options.html#GNU_002fLinux-Options">GNU/Linux Options</a></li> <li><a href="Incompatibilities.html#index-traditional-3544"><code>traditional</code></a>: <a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></li> <li><a href="C-Dialect-Options.html#index-traditional-124"><code>traditional</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-traditional_002dcpp-1016"><code>traditional-cpp</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C-Dialect-Options.html#index-traditional_002dcpp-123"><code>traditional-cpp</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-trigraphs-1017"><code>trigraphs</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="C-Dialect-Options.html#index-trigraphs-120"><code>trigraphs</code></a>: <a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></li> <li><a href="Darwin-Options.html#index-twolevel_005fnamespace-1312"><code>twolevel_namespace</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Link-Options.html#index-u-1056"><code>u</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-U-945"><code>U</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-umbrella-1313"><code>umbrella</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-undef-946"><code>undef</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Darwin-Options.html#index-undefined-1314"><code>undefined</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-unexported_005fsymbols_005flist-1315"><code>unexported_symbols_list</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Preprocessor-Options.html#index-v-1021"><code>v</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-v-84"><code>v</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Preprocessor-Options.html#index-version-1023"><code>version</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-version-90"><code>version</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Incompatibilities.html#index-W-3554"><code>W</code></a>: <a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></li> <li><a href="Preprocessor-Options.html#index-w-959"><code>w</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-W-265"><code>W</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-w-253"><code>w</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Assembler-Options.html#index-Wa-1024"><code>Wa</code></a>: <a href="Assembler-Options.html#Assembler-Options">Assembler Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wabi-173"><code>Wabi</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="AVR-Options.html#index-Waddr_002dspace_002dconvert-1165"><code>Waddr-space-convert</code></a>: <a href="AVR-Options.html#AVR-Options">AVR Options</a></li> <li><a href="Warning-Options.html#index-Waddress-449"><code>Waddress</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Waggregate_002dreturn-453"><code>Waggregate-return</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Waggressive_002dloop_002doptimizations-456"><code>Waggressive-loop-optimizations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Standard-Libraries.html#index-Wall-3568"><code>Wall</code></a>: <a href="Standard-Libraries.html#Standard-Libraries">Standard Libraries</a></li> <li><a href="Preprocessor-Options.html#index-Wall-949"><code>Wall</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wall-263"><code>Wall</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Warray_002dbounds-379"><code>Warray-bounds</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wassign_002dintercept-226"><code>Wassign-intercept</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wattributes-458"><code>Wattributes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wbad_002dfunction_002dcast-416"><code>Wbad-function-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wbuiltin_002dmacro_002dredefined-460"><code>Wbuiltin-macro-redefined</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wcast_002dalign-420"><code>Wcast-align</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wcast_002dqual-418"><code>Wcast-qual</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wchar_002dsubscripts-268"><code>Wchar-subscripts</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wclobbered-424"><code>Wclobbered</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wcomment-950"><code>Wcomment</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wcomment-270"><code>Wcomment</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wcomments-951"><code>Wcomments</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wconversion-426"><code>Wconversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wconversion_002dnull-428"><code>Wconversion-null</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wctor_002ddtor_002dprivacy-175"><code>Wctor-dtor-privacy</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wdeclaration_002dafter_002dstatement-394"><code>Wdeclaration-after-statement</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wdelete_002dnon_002dvirtual_002ddtor-177"><code>Wdelete-non-virtual-dtor</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wdeprecated-485"><code>Wdeprecated</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wdeprecated_002ddeclarations-487"><code>Wdeprecated-declarations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wdisabled_002doptimization-531"><code>Wdisabled-optimization</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wdiv_002dby_002dzero-381"><code>Wdiv-by-zero</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wdouble_002dpromotion-273"><code>Wdouble-promotion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Darwin-Options.html#index-weak_005freference_005fmismatches-1316"><code>weak_reference_mismatches</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Weffc_002b_002b-193"><code>Weffc++</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wempty_002dbody-434"><code>Wempty-body</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wendif_002dlabels-956"><code>Wendif-labels</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wendif_002dlabels-399"><code>Wendif-labels</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wenum_002dcompare-436"><code>Wenum-compare</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Werror-957"><code>Werror</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Werror-254"><code>Werror</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Werror_003d-256"><code>Werror=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wextra-266"><code>Wextra</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wfatal_002derrors-258"><code>Wfatal-errors</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wfloat_002dequal-388"><code>Wfloat-equal</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Function-Attributes.html#index-Wformat-2614"><code>Wformat</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Warning-Options.html#index-Wformat-275"><code>Wformat</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_002dcontains_002dnul-281"><code>Wformat-contains-nul</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_002dextra_002dargs-283"><code>Wformat-extra-args</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Function-Attributes.html#index-Wformat_002dnonliteral-2618"><code>Wformat-nonliteral</code></a>: <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></li> <li><a href="Warning-Options.html#index-Wformat_002dnonliteral-286"><code>Wformat-nonliteral</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_002dsecurity-288"><code>Wformat-security</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_002dy2k-290"><code>Wformat-y2k</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_002dzero_002dlength-285"><code>Wformat-zero-length</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wformat_003d-279"><code>Wformat=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wframe_002dlarger_002dthan-404"><code>Wframe-larger-than</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wfree_002dnonheap_002dobject-406"><code>Wfree-nonheap-object</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Darwin-Options.html#index-whatsloaded-1317"><code>whatsloaded</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Darwin-Options.html#index-whyload-1294"><code>whyload</code></a>: <a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></li> <li><a href="Warning-Options.html#index-Wignored_002dqualifiers-302"><code>Wignored-qualifiers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wimplicit-300"><code>Wimplicit</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wimplicit_002dfunction_002ddeclaration-298"><code>Wimplicit-function-declaration</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wimplicit_002dint-296"><code>Wimplicit-int</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Winherited_002dvariadic_002dctor-505"><code>Winherited-variadic-ctor</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Winit_002dself-294"><code>Winit-self</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Inline.html#index-Winline-2799"><code>Winline</code></a>: <a href="Inline.html#Inline">Inline</a></li> <li><a href="Warning-Options.html#index-Winline-507"><code>Winline</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wint_002dto_002dpointer_002dcast-512"><code>Wint-to-pointer-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Winvalid_002doffsetof-510"><code>Winvalid-offsetof</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Winvalid_002dpch-515"><code>Winvalid-pch</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wjump_002dmisses_002dinit-438"><code>Wjump-misses-init</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Link-Options.html#index-Wl-1055"><code>Wl</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Warning-Options.html#index-Wlarger_002dthan_002d_0040var_007blen_007d-403"><code>Wlarger-than-</code><var>len</var></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wlarger_002dthan_003d_0040var_007blen_007d-402"><code>Wlarger-than=</code><var>len</var></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wliteral_002dsuffix-179"><code>Wliteral-suffix</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wlogical_002dop-451"><code>Wlogical-op</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wlong_002dlong-517"><code>Wlong-long</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmain-304"><code>Wmain</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmaybe_002duninitialized-349"><code>Wmaybe-uninitialized</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dbraces-306"><code>Wmissing-braces</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002ddeclarations-471"><code>Wmissing-declarations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dfield_002dinitializers-473"><code>Wmissing-field-initializers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dformat_002dattribute-373"><code>Wmissing-format-attribute</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dinclude_002ddirs-308"><code>Wmissing-include-dirs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dparameter_002dtype-467"><code>Wmissing-parameter-type</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmissing_002dprototypes-469"><code>Wmissing-prototypes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wmultichar-479"><code>Wmultichar</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wnarrowing-181"><code>Wnarrowing</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wnested_002dexterns-503"><code>Wnested-externs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dabi-174"><code>Wno-abi</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002daddress-450"><code>Wno-address</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002daggregate_002dreturn-454"><code>Wno-aggregate-return</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002daggressive_002dloop_002doptimizations-455"><code>Wno-aggressive-loop-optimizations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dall-264"><code>Wno-all</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002darray_002dbounds-378"><code>Wno-array-bounds</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wno_002dassign_002dintercept-227"><code>Wno-assign-intercept</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dattributes-457"><code>Wno-attributes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dbad_002dfunction_002dcast-417"><code>Wno-bad-function-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dbuiltin_002dmacro_002dredefined-459"><code>Wno-builtin-macro-redefined</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dcast_002dalign-421"><code>Wno-cast-align</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dcast_002dqual-419"><code>Wno-cast-qual</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dchar_002dsubscripts-269"><code>Wno-char-subscripts</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dclobbered-425"><code>Wno-clobbered</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dcomment-271"><code>Wno-comment</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dconversion-427"><code>Wno-conversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dconversion_002dnull-429"><code>Wno-conversion-null</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dcoverage_002dmismatch-272"><code>Wno-coverage-mismatch</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dctor_002ddtor_002dprivacy-176"><code>Wno-ctor-dtor-privacy</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddeclaration_002dafter_002dstatement-395"><code>Wno-declaration-after-statement</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002ddelete_002dnon_002dvirtual_002ddtor-178"><code>Wno-delete-non-virtual-dtor</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddeprecated-484"><code>Wno-deprecated</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddeprecated_002ddeclarations-486"><code>Wno-deprecated-declarations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddisabled_002doptimization-532"><code>Wno-disabled-optimization</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddiv_002dby_002dzero-380"><code>Wno-div-by-zero</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002ddouble_002dpromotion-274"><code>Wno-double-promotion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002deffc_002b_002b-194"><code>Wno-effc++</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dempty_002dbody-435"><code>Wno-empty-body</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dendif_002dlabels-398"><code>Wno-endif-labels</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002denum_002dcompare-437"><code>Wno-enum-compare</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002derror-255"><code>Wno-error</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002derror_003d-257"><code>Wno-error=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dextra-267"><code>Wno-extra</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dfatal_002derrors-259"><code>Wno-fatal-errors</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dfloat_002dequal-389"><code>Wno-float-equal</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat-276"><code>Wno-format</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dcontains_002dnul-280"><code>Wno-format-contains-nul</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dextra_002dargs-282"><code>Wno-format-extra-args</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dnonliteral-287"><code>Wno-format-nonliteral</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dsecurity-289"><code>Wno-format-security</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dy2k-291"><code>Wno-format-y2k</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dformat_002dzero_002dlength-284"><code>Wno-format-zero-length</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dfree_002dnonheap_002dobject-405"><code>Wno-free-nonheap-object</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dignored_002dqualifiers-303"><code>Wno-ignored-qualifiers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dimplicit-301"><code>Wno-implicit</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dimplicit_002dfunction_002ddeclaration-299"><code>Wno-implicit-function-declaration</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dimplicit_002dint-297"><code>Wno-implicit-int</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dinherited_002dvariadic_002dctor-506"><code>Wno-inherited-variadic-ctor</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dinit_002dself-295"><code>Wno-init-self</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dinline-508"><code>Wno-inline</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dint_002dto_002dpointer_002dcast-511"><code>Wno-int-to-pointer-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dinvalid_002doffsetof-509"><code>Wno-invalid-offsetof</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dinvalid_002dpch-516"><code>Wno-invalid-pch</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002djump_002dmisses_002dinit-439"><code>Wno-jump-misses-init</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dliteral_002dsuffix-180"><code>Wno-literal-suffix</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dlogical_002dop-452"><code>Wno-logical-op</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dlong_002dlong-518"><code>Wno-long-long</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmain-305"><code>Wno-main</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmaybe_002duninitialized-350"><code>Wno-maybe-uninitialized</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dbraces-307"><code>Wno-missing-braces</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002ddeclarations-472"><code>Wno-missing-declarations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dfield_002dinitializers-474"><code>Wno-missing-field-initializers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dformat_002dattribute-375"><code>Wno-missing-format-attribute</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dinclude_002ddirs-309"><code>Wno-missing-include-dirs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dparameter_002dtype-468"><code>Wno-missing-parameter-type</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmissing_002dprototypes-470"><code>Wno-missing-prototypes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmudflap-537"><code>Wno-mudflap</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dmultichar-478"><code>Wno-multichar</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dnarrowing-182"><code>Wno-narrowing</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dnested_002dexterns-504"><code>Wno-nested-externs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dnoexcept-184"><code>Wno-noexcept</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dnon_002dtemplate_002dfriend-197"><code>Wno-non-template-friend</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dnon_002dvirtual_002ddtor-186"><code>Wno-non-virtual-dtor</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dnonnull-293"><code>Wno-nonnull</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dold_002dstyle_002dcast-200"><code>Wno-old-style-cast</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dold_002dstyle_002ddeclaration-464"><code>Wno-old-style-declaration</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dold_002dstyle_002ddefinition-466"><code>Wno-old-style-definition</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002doverflow-488"><code>Wno-overflow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002doverlength_002dstrings-539"><code>Wno-overlength-strings</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002doverloaded_002dvirtual-202"><code>Wno-overloaded-virtual</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002doverride_002dinit-491"><code>Wno-override-init</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpacked-496"><code>Wno-packed</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpacked_002dbitfield_002dcompat-498"><code>Wno-packed-bitfield-compat</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpadded-500"><code>Wno-padded</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dparentheses-311"><code>Wno-parentheses</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpedantic_002dms_002dformat-410"><code>Wno-pedantic-ms-format</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Bound-member-functions.html#index-Wno_002dpmf_002dconversions-3529"><code>Wno-pmf-conversions</code></a>: <a href="Bound-member-functions.html#Bound-member-functions">Bound member functions</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dpmf_002dconversions-205"><code>Wno-pmf-conversions</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpointer_002darith-413"><code>Wno-pointer-arith</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpointer_002dsign-534"><code>Wno-pointer-sign</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpointer_002dto_002dint_002dcast-513"><code>Wno-pointer-to-int-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dpragmas-357"><code>Wno-pragmas</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wno_002dprotocol-228"><code>Wno-protocol</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dredundant_002ddecls-502"><code>Wno-redundant-decls</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dreorder-188"><code>Wno-reorder</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dreturn_002dlocal_002daddr-314"><code>Wno-return-local-addr</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dreturn_002dtype-317"><code>Wno-return-type</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wno_002dselector-231"><code>Wno-selector</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsequence_002dpoint-313"><code>Wno-sequence-point</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dshadow-401"><code>Wno-shadow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsign_002dcompare-441"><code>Wno-sign-compare</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsign_002dconversion-446"><code>Wno-sign-conversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dsign_002dpromo-208"><code>Wno-sign-promo</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsizeof_002dpointer_002dmemaccess-448"><code>Wno-sizeof-pointer-memaccess</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dstack_002dprotector-536"><code>Wno-stack-protector</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dstrict_002daliasing-360"><code>Wno-strict-aliasing</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wno_002dstrict_002dnull_002dsentinel-196"><code>Wno-strict-null-sentinel</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dstrict_002doverflow-363"><code>Wno-strict-overflow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dstrict_002dprototypes-462"><code>Wno-strict-prototypes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wno_002dstrict_002dselector_002dmatch-233"><code>Wno-strict-selector-match</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsuggest_002dattribute_003d-365"><code>Wno-suggest-attribute=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsuggest_002dattribute_003dconst-369"><code>Wno-suggest-attribute=const</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsuggest_002dattribute_003dformat-374"><code>Wno-suggest-attribute=format</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsuggest_002dattribute_003dnoreturn-371"><code>Wno-suggest-attribute=noreturn</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsuggest_002dattribute_003dpure-367"><code>Wno-suggest-attribute=pure</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dswitch-319"><code>Wno-switch</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dswitch_002ddefault-321"><code>Wno-switch-default</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dswitch_002denum-323"><code>Wno-switch-enum</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsync_002dnand-325"><code>Wno-sync-nand</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dsystem_002dheaders-383"><code>Wno-system-headers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dtraditional-391"><code>Wno-traditional</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dtraditional_002dconversion-393"><code>Wno-traditional-conversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dtrampolines-387"><code>Wno-trampolines</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dtrigraphs-327"><code>Wno-trigraphs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dtype_002dlimits-415"><code>Wno-type-limits</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wno_002dundeclared_002dselector-235"><code>Wno-undeclared-selector</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dundef-397"><code>Wno-undef</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002duninitialized-348"><code>Wno-uninitialized</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunknown_002dpragmas-353"><code>Wno-unknown-pragmas</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunsafe_002dloop_002doptimizations-409"><code>Wno-unsafe-loop-optimizations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused-346"><code>Wno-unused</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dbut_002dset_002dparameter-329"><code>Wno-unused-but-set-parameter</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dbut_002dset_002dvariable-331"><code>Wno-unused-but-set-variable</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dfunction-333"><code>Wno-unused-function</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dlabel-335"><code>Wno-unused-label</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dparameter-338"><code>Wno-unused-parameter</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dresult-340"><code>Wno-unused-result</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dvalue-344"><code>Wno-unused-value</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dunused_002dvariable-342"><code>Wno-unused-variable</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002duseless_002dcast-433"><code>Wno-useless-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvarargs-522"><code>Wno-varargs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvariadic_002dmacros-520"><code>Wno-variadic-macros</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvector_002doperation_002dperformance-524"><code>Wno-vector-operation-performance</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvirtual_002dmove_002dassign-526"><code>Wno-virtual-move-assign</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvla-528"><code>Wno-vla</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dvolatile_002dregister_002dvar-530"><code>Wno-volatile-register-var</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dwrite_002dstrings-423"><code>Wno-write-strings</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wno_002dzero_002das_002dnull_002dpointer_002dconstant-431"><code>Wno-zero-as-null-pointer-constant</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wnoexcept-183"><code>Wnoexcept</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wnon_002dtemplate_002dfriend-198"><code>Wnon-template-friend</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wnon_002dvirtual_002ddtor-185"><code>Wnon-virtual-dtor</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wnonnull-292"><code>Wnonnull</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wnormalized_003d-480"><code>Wnormalized=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wold_002dstyle_002dcast-199"><code>Wold-style-cast</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wold_002dstyle_002ddeclaration-463"><code>Wold-style-declaration</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wold_002dstyle_002ddefinition-465"><code>Wold-style-definition</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Woverflow-489"><code>Woverflow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Woverlength_002dstrings-538"><code>Woverlength-strings</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Woverloaded_002dvirtual-201"><code>Woverloaded-virtual</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Woverride_002dinit-490"><code>Woverride-init</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wp-941"><code>Wp</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wpacked-495"><code>Wpacked</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpacked_002dbitfield_002dcompat-497"><code>Wpacked-bitfield-compat</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpadded-499"><code>Wpadded</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wparentheses-310"><code>Wparentheses</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpedantic-261"><code>Wpedantic</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpedantic_002dms_002dformat-411"><code>Wpedantic-ms-format</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wpmf_002dconversions-206"><code>Wpmf-conversions</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Pointer-Arith.html#index-Wpointer_002darith-2548"><code>Wpointer-arith</code></a>: <a href="Pointer-Arith.html#Pointer-Arith">Pointer Arith</a></li> <li><a href="Warning-Options.html#index-Wpointer_002darith-412"><code>Wpointer-arith</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpointer_002dsign-533"><code>Wpointer-sign</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpointer_002dto_002dint_002dcast-514"><code>Wpointer-to-int-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wpragmas-358"><code>Wpragmas</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wprotocol-229"><code>Wprotocol</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Overall-Options.html#index-wrapper-91"><code>wrapper</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Warning-Options.html#index-Wredundant_002ddecls-501"><code>Wredundant-decls</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wreorder-187"><code>Wreorder</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wreturn_002dlocal_002daddr-315"><code>Wreturn-local-addr</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wreturn_002dtype-316"><code>Wreturn-type</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wselector-230"><code>Wselector</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wsequence_002dpoint-312"><code>Wsequence-point</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wshadow-400"><code>Wshadow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsign_002dcompare-440"><code>Wsign-compare</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsign_002dconversion-445"><code>Wsign-conversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wsign_002dpromo-207"><code>Wsign-promo</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wsizeof_002dpointer_002dmemaccess-447"><code>Wsizeof-pointer-memaccess</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wstack_002dprotector-535"><code>Wstack-protector</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wstack_002dusage-407"><code>Wstack-usage</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wstrict_002daliasing-359"><code>Wstrict-aliasing</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wstrict_002daliasing_003dn-361"><code>Wstrict-aliasing=n</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="C_002b_002b-Dialect-Options.html#index-Wstrict_002dnull_002dsentinel-195"><code>Wstrict-null-sentinel</code></a>: <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wstrict_002doverflow-362"><code>Wstrict-overflow</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wstrict_002dprototypes-461"><code>Wstrict-prototypes</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wstrict_002dselector_002dmatch-232"><code>Wstrict-selector-match</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Warning-Options.html#index-Wsuggest_002dattribute_003d-364"><code>Wsuggest-attribute=</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsuggest_002dattribute_003dconst-368"><code>Wsuggest-attribute=const</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsuggest_002dattribute_003dformat-372"><code>Wsuggest-attribute=format</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsuggest_002dattribute_003dnoreturn-370"><code>Wsuggest-attribute=noreturn</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsuggest_002dattribute_003dpure-366"><code>Wsuggest-attribute=pure</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wswitch-318"><code>Wswitch</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wswitch_002ddefault-320"><code>Wswitch-default</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wswitch_002denum-322"><code>Wswitch-enum</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wsync_002dnand-324"><code>Wsync-nand</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wsystem_002dheaders-958"><code>Wsystem-headers</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wsystem_002dheaders-382"><code>Wsystem-headers</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wtraditional-953"><code>Wtraditional</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wtraditional-390"><code>Wtraditional</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wtraditional_002dconversion-392"><code>Wtraditional-conversion</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wtrampolines-386"><code>Wtrampolines</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wtrigraphs-952"><code>Wtrigraphs</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wtrigraphs-326"><code>Wtrigraphs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wtype_002dlimits-414"><code>Wtype-limits</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Wundeclared_002dselector-234"><code>Wundeclared-selector</code></a>: <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></li> <li><a href="Preprocessor-Options.html#index-Wundef-954"><code>Wundef</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wundef-396"><code>Wundef</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wuninitialized-347"><code>Wuninitialized</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunknown_002dpragmas-352"><code>Wunknown-pragmas</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunsafe_002dloop_002doptimizations-408"><code>Wunsafe-loop-optimizations</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunsuffixed_002dfloat_002dconstants-540"><code>Wunsuffixed-float-constants</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused-345"><code>Wunused</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dbut_002dset_002dparameter-328"><code>Wunused-but-set-parameter</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dbut_002dset_002dvariable-330"><code>Wunused-but-set-variable</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dfunction-332"><code>Wunused-function</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dlabel-334"><code>Wunused-label</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dlocal_002dtypedefs-336"><code>Wunused-local-typedefs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-Wunused_002dmacros-955"><code>Wunused-macros</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dparameter-337"><code>Wunused-parameter</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dresult-339"><code>Wunused-result</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dvalue-343"><code>Wunused-value</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wunused_002dvariable-341"><code>Wunused-variable</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wuseless_002dcast-432"><code>Wuseless-cast</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvarargs-521"><code>Wvarargs</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvariadic_002dmacros-519"><code>Wvariadic-macros</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvector_002doperation_002dperformance-523"><code>Wvector-operation-performance</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvirtual_002dmove_002dassign-525"><code>Wvirtual-move-assign</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvla-527"><code>Wvla</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wvolatile_002dregister_002dvar-529"><code>Wvolatile-register-var</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wwrite_002dstrings-422"><code>Wwrite-strings</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Warning-Options.html#index-Wzero_002das_002dnull_002dpointer_002dconstant-430"><code>Wzero-as-null-pointer-constant</code></a>: <a href="Warning-Options.html#Warning-Options">Warning Options</a></li> <li><a href="Preprocessor-Options.html#index-x-975"><code>x</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="Overall-Options.html#index-x-77"><code>x</code></a>: <a href="Overall-Options.html#Overall-Options">Overall Options</a></li> <li><a href="Assembler-Options.html#index-Xassembler-1025"><code>Xassembler</code></a>: <a href="Assembler-Options.html#Assembler-Options">Assembler Options</a></li> <li><a href="VxWorks-Options.html#index-Xbind_002dlazy-2308"><code>Xbind-lazy</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="VxWorks-Options.html#index-Xbind_002dnow-2309"><code>Xbind-now</code></a>: <a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></li> <li><a href="Link-Options.html#index-Xlinker-1054"><code>Xlinker</code></a>: <a href="Link-Options.html#Link-Options">Link Options</a></li> <li><a href="Preprocessor-Options.html#index-Xpreprocessor-942"><code>Xpreprocessor</code></a>: <a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></li> <li><a href="System-V-Options.html#index-Ym-2249"><code>Ym</code></a>: <a href="System-V-Options.html#System-V-Options">System V Options</a></li> <li><a href="System-V-Options.html#index-YP-2248"><code>YP</code></a>: <a href="System-V-Options.html#System-V-Options">System V Options</a></li> </ul> </body></html>
qtopiacore/qt/examples/webkit/formextractor/form.html
librelab/qtmoko-test
<html><script> function extractFormValues() { var firstName = document.getElementById("firstname").value; var lastName = document.getElementById("lastname").value; var maleGender = document.getElementById("genderMale"); var femaleGender = document.getElementById("genderFemale"); var gender = ""; if (maleGender.checked) gender = maleGender.value; else if (femaleGender.checked) gender = femaleGender.value; var updates = document.getElementById("updates").checked; formExtractor.setValues(firstName, lastName, gender, updates); } </script><body> <h1> The Green People Book Club </h1> <p> Welcome to The Green People Book Club. Please register to obtain a membership with us. </p> <form onsubmit="extractFormValues()"> <table> <tbody><tr> <td> First name: </td> <td> <input type="text" id="firstname"> </td> </tr> <tr> <td> Last name: </td> <td> <input type="text" id="lastname"> </td> </tr> <tr> <td> Gender: </td> <td> <input type="radio" name="gender" id="genderMale" value="Male"> Male <input type="radio" name="gender" id="genderFemale" value="Female"> Female </td> </tr> <tr> <td colspan="2"> <input type="checkbox" id="updates" value="receive"> Check here if you would like to receive regular updates from us: </td> </tr> </tbody></table> <input type="submit" value="Submit"> </form> </body></html>
resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/binutils/as.html/Errors.html
Alexia23/MindPlus
<html lang="en"> <head> <title>Errors - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.7"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Overview.html#Overview" title="Overview"> <link rel="prev" href="Object.html#Object" title="Object"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002, 2006, 2007 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. man end--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family: serif; font-weight: normal; } --></style> </head> <body> <div class="node"> <p> <a name="Errors"></a>Previous:&nbsp;<a rel="previous" accesskey="p" href="Object.html#Object">Object</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Overview.html#Overview">Overview</a> <hr><br> </div> <h3 class="section">1.7 Error and Warning Messages</h3> <!-- man begin DESCRIPTION --> <p><a name="index-error-messages-40"></a><a name="index-warning-messages-41"></a><a name="index-messages-from-assembler-42"></a><span class="command">as</span> may write warnings and error messages to the standard error file (usually your terminal). This should not happen when a compiler runs <span class="command">as</span> automatically. Warnings report an assumption made so that <span class="command">as</span> could keep assembling a flawed program; errors report a grave problem that stops the assembly. <!-- man end --> <p><a name="index-format-of-warning-messages-43"></a>Warning messages have the format <pre class="smallexample"> file_name:<b>NNN</b>:Warning Message Text </pre> <p class="noindent"><a name="index-line-numbers_002c-in-warnings_002ferrors-44"></a>(where <b>NNN</b> is a line number). If a logical file name has been given (see <a href="File.html#File"><code>.file</code></a>) it is used for the filename, otherwise the name of the current input file is used. If a logical line number was given (see <a href="Line.html#Line"><code>.line</code></a>) then it is used to calculate the number printed, otherwise the actual line in the current source file is printed. The message text is intended to be self explanatory (in the grand Unix tradition). <p><a name="index-format-of-error-messages-45"></a>Error messages have the format <pre class="smallexample"> file_name:<b>NNN</b>:FATAL:Error Message Text </pre> <p>The file name and line number are derived as for warning messages. The actual message text may be rather less explanatory because many of them aren't supposed to happen. </body></html>
src/public/stylesheets/jquery.treeTable.css
iNecas/katello
/* jQuery TreeTable Core 2.0 stylesheet * * This file contains styles that are used to display the tree table. Each tree * table is assigned the +treeTable+ class. * ========================================================================= */ /* jquery.treeTable.collapsible * ------------------------------------------------------------------------- */ .treeTable tr td .expander { background-position: left center; background-repeat: no-repeat; cursor: pointer; padding: 0; zoom: 1; /* IE7 Hack */ } .treeTable tr.collapsed td .expander { background-image: url(../images/embed/icons/expander-collapsed.png); } .treeTable tr.expanded td .expander { background-image: url(../images/embed/icons/expander-expanded.png); } /* jquery.treeTable.sortable * ------------------------------------------------------------------------- */ .treeTable tr.selected, .treeTable tr.accept { background-color: #3875d7; color: #fff; } .treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander { background-image: url(../images/embed/toggle-expand-light.png); } .treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander { background-image: url(../images/toggle-collapse-light.png); } .treeTable .ui-draggable-dragging { color: #000; z-index: 1; }
doc/lirc.org/pictures1.html
dozencrows/lirc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>LIRC - Pictures of Serial Port Hardware</TITLE> <LINK REL=stylesheet TYPE="text/css" HREF="lirc.css"> <LINK REL="shortcut icon" HREF="favicon.ico"> </HEAD> <BODY BACKGROUND="images/marb18.jpg" BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#9090FF"> <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"> <TR> <TD CLASS="menu" WIDTH="100%" HEIGHT="150"> <IMG SRC="images/diode.gif" ALT="diode" WIDTH="300" HEIGHT="150" BORDER="0" HSPACE="20" VSPACE="0" ALIGN="LEFT"> <IMG SRC="images/lirc.gif" ALT="lirc-logo" WIDTH="300" HEIGHT="150" BORDER="0" HSPACE="20" VSPACE="0" ALIGN="RIGHT"> </TD> </TR> <TR> <TD WIDTH="100%">&#160;<BR> <!-- Text --> <HR WIDTH="70%"> <H1 ALIGN="CENTER">Pictures of the assembled receiver inside a 9-pin adapter</H1> <HR WIDTH="50%"><BR> <TABLE WIDTH="100%"> <TR> <TD WIDTH="15%"> &#160; </TD> <TD WIDTH="70%"> <CENTER> <IMG SRC="images/lirc1.jpg" WIDTH=704 HEIGHT=528 ALT="Outside"> </CENTER> <BR> <BR> <CENTER> <IMG SRC="images/lirc2.jpg" WIDTH=704 HEIGHT=528 ALT="Inside"> </CENTER> <BR> <BR> <CENTER> <IMG SRC="images/lirc3.jpg" WIDTH=704 HEIGHT=528 ALT="In another casing and with a low power transmitter on DTR"> </CENTER> </TD> <TD WIDTH="15%"> &#160; </TD> </TR> </TABLE> <!-- Text --> <BR>&#160;<BR> <CENTER>[<A HREF="index.html">LIRC Homepage</A>]</CENTER> <BR>&#160;<BR> </TD> </TR> <TR> <TD CLASS="menu" WIDTH="100%"> &#160;<BR> </TD> </TR> </TABLE> </BODY> </HTML>
wp-content/themes/mrtailor/css/wp-admin-custom.css
renatodex/submundo-blogstore
/* Redux */ #wp-admin-bar-theme_options .dashicons-portfolio:before { content: "\f108"; top:2px; } #adminmenu #toplevel_page_theme_options .menu-icon-generic div.wp-menu-image:before { content: "\f108"; } .redux-container-image_select .redux-image-select img { width:96px !important; height:72px !important; max-height:72px !important; } .redux-sidebar .redux-group-menu li a { opacity: 1; font-weight: normal; } .redux_field_th .fa { margin-right: 10px; } .redux_field_th span:first-child { color: #7f7f7f !important; } .redux-info-field h3 { color: #333 !important; } .redux-info-field h3 .fa { margin-right: 5px; color: #333 !important; } .redux-main .form-table tr:nth-last-child(1){ border-bottom: 0px; } .redux-main .form-table tr th, .redux-main .form-table tr td { padding: 0px 0px 20px 20px; } .redux_field_th { padding: 40px 10px 20px 0px !important; } .redux-container #redux-header .display_header h2 { text-transform: uppercase; font-weight: 900; padding-left: 30px; } #footer-thankyou { display:none; } /* Revolution Slider */ .rs-update-notice-wrap { display:none !important; } /* Visual Composer */ .vc_editor #wpcontent { padding-left: 0px !important; }
Resources/Public/Assets/Ext_powermail/Templates/Form/Form.html
dcngmbh/moox_template_free001
{namespace vh=In2code\Powermail\ViewHelpers} <f:layout name="Default" /> Render Powermail Form {forms} All Forms with their Pages and their Fields <f:section name="main"> <f:flashMessages class="alert alert-danger powermail_message powermail_message_error" /> <f:if condition="{forms}"> <f:then> <f:for each="{forms}" as="form"> <f:form action="{action}" name="field" enctype="multipart/form-data" additionalAttributes="{role:'form'}" class="form-horizontal powermail_form powermail_form_{form.uid} {form.css} {vh:Misc.MorestepClass(activate:settings.main.moresteps, class:'powermail_morestep')}"> <div class="page-header"> <h2>{form.title}</h2> </div> <f:render partial="Misc/FormError" arguments="{_all}" /> <f:for each="{form.pages}" as="page"> <fieldset class="powermail_fieldset powermail_fieldset_{page.uid} {page.css}"> <legend class="powermail_legend">{page.title}</legend> <f:for each="{page.fields}" as="field"> <f:render partial="Form/{vh:String.Upper(string:field.type)}" arguments="{field:field}" /> </f:for> </fieldset> </f:for> <f:form.hidden name="mail[form]" value="{form.uid}" class="powermail_form_uid" /> <f:render partial="Misc/HoneyPod" arguments="{form:form}" /> </f:form> </f:for> </f:then> <f:else> <f:translate key="error_no_form" /> </f:else> </f:if> </f:section>
src/slf4j-1.7.25/site/apidocs/org/slf4j/instrumentation/class-use/LogTransformer.Builder.html
rickli/Java
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_17) on Thu Mar 16 17:20:41 CET 2017 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.slf4j.instrumentation.LogTransformer.Builder (SLF4J 1.7.25 API)</title> <meta name="date" content="2017-03-16"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.slf4j.instrumentation.LogTransformer.Builder (SLF4J 1.7.25 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/slf4j/instrumentation/class-use/LogTransformer.Builder.html" target="_top">Frames</a></li> <li><a href="LogTransformer.Builder.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.slf4j.instrumentation.LogTransformer.Builder" class="title">Uses of Class<br>org.slf4j.instrumentation.LogTransformer.Builder</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.slf4j.instrumentation">org.slf4j.instrumentation</a></td> <td class="colLast"> <div class="block">Java instrumentation routines for SLF4J.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.slf4j.instrumentation"> <!-- --> </a> <h3>Uses of <a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a> in <a href="../../../../org/slf4j/instrumentation/package-summary.html">org.slf4j.instrumentation</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../org/slf4j/instrumentation/package-summary.html">org.slf4j.instrumentation</a> that return <a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></code></td> <td class="colLast"><span class="strong">LogTransformer.Builder.</span><code><strong><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html#addEntryExit(boolean)">addEntryExit</a></strong>(boolean&nbsp;b)</code> <div class="block">Should each method log entry (with parameters) and exit (with parameters and return value)?</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></code></td> <td class="colLast"><span class="strong">LogTransformer.Builder.</span><code><strong><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html#ignore(java.lang.String[])">ignore</a></strong>(<a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;strings)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></code></td> <td class="colLast"><span class="strong">LogTransformer.Builder.</span><code><strong><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html#level(java.lang.String)">level</a></strong>(<a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;level)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">LogTransformer.Builder</a></code></td> <td class="colLast"><span class="strong">LogTransformer.Builder.</span><code><strong><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html#verbose(boolean)">verbose</a></strong>(boolean&nbsp;b)</code> <div class="block">Should LogTransformer be verbose in what it does? This currently list the names of the classes being processed.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/slf4j/instrumentation/LogTransformer.Builder.html" title="class in org.slf4j.instrumentation">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/slf4j/instrumentation/class-use/LogTransformer.Builder.html" target="_top">Frames</a></li> <li><a href="LogTransformer.Builder.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2005&#x2013;2017 <a href="http://www.qos.ch">QOS.ch</a>. All rights reserved.</small></p> </body> </html>
work/berkeley-db/docs/api_reference/CXX/envset_errpfx.html
joglomedia/masedi.net
<?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>DbEnv::set_errpfx()</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++ API Reference" /> <link rel="up" href="env.html" title="Chapter 5.  The DbEnv Handle" /> <link rel="prev" href="envset_error_stream.html" title="DbEnv::set_error_stream()" /> <link rel="next" href="envset_feedback.html" title="DbEnv::set_feedback()" /> </head> <body> <div class="navheader"> <table width="100%" summary="Navigation header"> <tr> <th colspan="3" align="center">DbEnv::set_errpfx()</th> </tr> <tr> <td width="20%" align="left"><a accesskey="p" href="envset_error_stream.html">Prev</a> </td> <th width="60%" align="center">Chapter 5.  The DbEnv Handle </th> <td width="20%" align="right"> <a accesskey="n" href="envset_feedback.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="envset_errpfx"></a>DbEnv::set_errpfx()</h2> </div> </div> </div> <pre class="programlisting">#include &lt;db_cxx.h&gt; void DbEnv::set_errpfx(const char *errpfx); </pre> <p> Set the prefix string that appears before error messages issued by Berkeley DB. </p> <p> The <a class="xref" href="dbset_errpfx.html" title="Db::set_errpfx()">Db::set_errpfx()</a> and <code class="methodname">DbEnv::set_errpfx()</code> methods do not copy the memory to which the <span class="bold"><strong>errpfx</strong></span> parameter refers; rather, they maintain a reference to it. Although this allows applications to modify the error message prefix at any time (without repeatedly calling the interfaces), it means the memory must be maintained until the handle is closed. </p> <p> The <code class="methodname">DbEnv::set_errpfx()</code> method configures operations performed using the specified <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a> handle, not all operations performed on the underlying database environment. </p> <p> The <code class="methodname">DbEnv::set_errpfx()</code> method may be called at any time during the life of the application. </p> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id3813950"></a>Parameters</h3> </div> </div> </div> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="id3814768"></a>errpfx</h4> </div> </div> </div> <p> The <span class="bold"><strong>errpfx</strong></span> parameter is the application-specified error prefix for additional error messages. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id3814772"></a>Class</h3> </div> </div> </div> <p> <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a> </p> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id3814968"></a>See Also</h3> </div> </div> </div> <p> <a class="xref" href="env.html#envlist" title="Database Environments and Related Methods">Database Environments and Related Methods</a> </p> </div> </div> <div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="envset_error_stream.html">Prev</a> </td> <td width="20%" align="center"> <a accesskey="u" href="env.html">Up</a> </td> <td width="40%" align="right"> <a accesskey="n" href="envset_feedback.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top">DbEnv::set_error_stream() </td> <td width="20%" align="center"> <a accesskey="h" href="index.html">Home</a> </td> <td width="40%" align="right" valign="top"> DbEnv::set_feedback()</td> </tr> </table> </div> </body> </html>
media/jui_front_end/jquery-ui-1.11.1/demos/progressbar/indeterminate.html
cuongnd/test_pro
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Progressbar - Indeterminate Value</title> <link rel="stylesheet" href="../../themes/base/all.css"> <script src="../../external/jquery/jquery.js"></script> <script src="../../ui/core.js"></script> <script src="../../ui/widget.js"></script> <script src="../../ui/progressbar.js"></script> <link rel="stylesheet" href="../demos.css"> <script> $(function() { $( "#progressbar" ).progressbar({ value: false }); $( "button" ).on( "click", function( event ) { var target = $( event.target ), progressbar = $( "#progressbar" ), progressbarValue = progressbar.find( ".ui-progressbar-value" ); if ( target.is( "#numButton" ) ) { progressbar.progressbar( "option", { value: Math.floor( Math.random() * 100 ) }); } else if ( target.is( "#colorButton" ) ) { progressbarValue.css({ "background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 ) }); } else if ( target.is( "#falseButton" ) ) { progressbar.progressbar( "option", "value", false ); } }); }); </script> <style> #progressbar .ui-progressbar-value { background-color: #ccc; } </style> </head> <body> <div id="progressbar"></div> <button id="numButton">Random Value - Determinate</button> <button id="falseButton">Indeterminate</button> <button id="colorButton">Random Color</button> <div class="demo-description"> <p>Indeterminate progress bar and switching between determinate and indeterminate styles.</p> </div> </body> </html>
Schrodinger/Schrodinger_2012_docs/maestro/help_Maestro91/phase/find_pharma_options_db.html
platinhom/ManualHom
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> <meta name="categories" content="phase "> <meta name="product" content="Phase"> <meta name="profile" content="!Elements"> <title>Phase &mdash; Find Common Pharmacophore - Options Dialog Box</title> <link rel="stylesheet" type="text/css" href="../support/help.css"> </head> <script type="text/javascript"> function setTitle() { top.document.title = document.title + " - " + parent.parent.WINDOW_TITLE; } </script> <body onload="setTitle();"> <table border=0 cellspacing=0 bgcolor=#dcdcdc width=100%> <tr><td> <p><img src="../support/schrodinger_logo.gif" border=0 alt="" align="left" vspace=5 hspace=5 /></p> </td></tr> <tr><td> <h1 class=title><span class="phase">Phase &mdash; Find Common Pharmacophore - Options Dialog Box</span></h1> </td></tr> </table> <p>In the <span class="GUI">Find Common Pharmacophore - Options</span> dialog box, you can specify the parameters that govern the search for common pharmacophores. Choosing options is a balance between the size of the features in the hypotheses, the size of the ligands, and the time taken and storage requirements for the search.</p> <dl> <dt><span class="GUI">Minimum intersite distance</span></dt> <dd><p>The minimum distance allowed between two features. If the features in the ligand are closer than this distance, the hypothesis is rejected. </p></dd> <dt><span class="GUI">Maximum tree depth</span></dt> <dd><p>The number of binary partitioning steps used to sort the pharmacophores into similar groups. This is the maximum recursion level in the partitioning, and the depth of the resulting binary partitioning tree. </p></dd> <dt><span class="GUI">Initial box size</span></dt> <dd><p>The size of the initial box in the partitioning algorithm, computed from the final box size and the maximum tree depth, n:</p> <p>Initial size = Final size * 2<sup>n</sup></p> <p>Noneditable text box. This size should be approximately as big as the binding site, or the smallest ligand. You should therefore choose the final box size and the maximum tree depth to ensure that the initial box size is big enough. The default size is 32&nbsp;&Aring;. </p></dd> <dt><span class="GUI">Final box size</span></dt> <dd><p>The size of the boxes that contain intersite distances that are considered to be equivalent. This option governs the tolerance on matching: the smaller the box size, the more closely pharmacophores must match. However, the smaller the box size, the longer the search takes. If you choose a smaller final box size, you might have to increase the maximum tree depth so that the initial box size is large enough to accommodate the ligands. If the final box size is too small, the tolerance on matching may be too strict to produce any common pharmacophores. </p></dd> </dl> <p>To open this dialog box: </p> <ul> <li><p>Click <span class="GUI">Options</span> in the <span class="GUI">Find Common Pharmacophore</span> step of the <span class="GUI">Build Common Pharmacophore Hypotheses</span> panel. </p></li> </ul> <hr /> <table width="100%"> <td><p class="small"><a href="../support/legal_notice.html" target="LegalNoticeWindow">Legal Notice</a></p></td> <td> <table align="right"> <td><p class="small"> File: phase/find_pharma_options_db.html<br /> Last updated: 12 Jan 2012 </p></td> </table> </td> </table> </body> </html>
dist/strap/pages/results.html
interchange/interchange
[calc] ## set match_count here, gets screwed up later, for some reason $mc = $Values->{mv_search_match_count}; return; [/calc] [tmp page_title]__COMPANY__ -- [L]Search Results[/L][/tmp] [tmpn display_class]leftonly[/tmpn] [if value more_link] [tmp page_title]__COMPANY__ -- [either][value-extended name=mv_searchspec joiner=" / "][or][value name=more_link filter=uri2string keep=1][/either][/tmp] [/if] [control reset=1] [control-set] [component]product_tree[/component] [output]left[/output] [/control-set] [control reset=1] @_TOP_@ <!-- BEGIN CONTENT --> [search-region] [on-match] [tmp meta_header] [calcn] return unless $Values->{more_link}; (my $more_page = $Session->{last_url}) =~ s|^/.*/([^\..]+)(?:\.html)?|$1|; if ($more_page =~ /^(Next|Prev)/) { $Tag->tag({ op => 'header' }, qq{Cache-control: no-cache\nCache-control: no-store\nPragma: no-cache\nExpires: 0\nContent-type: text/html}); } ## $mc set above. my $ml = $Values->{mv_matchlimit} || ''; my $fm = $Values->{mv_first_match} || ''; my ($canon, $rel_prev, $rel_next); #Debug("more_page=$more_page, ml=$ml, fm=$fm, mc=$mc"); my ($prev, $next); REL: { last REL if $mc < $ml; if($fm == 0 || $fm == 1) { # first page $rel_next = $Values->{more_link} . '/2'; } elsif( ($mc - $fm - $ml) <= 0 ) { # last page $prev = sprintf("%.0f", (($fm+$ml) / $ml) - 1); $rel_prev = $Values->{more_link} . '/' . ($prev ? $prev : '1'); } else { # page 2 to second-to-last $prev = sprintf("%.0f", ($fm / $ml)); $next = $prev + 2; $rel_prev = $Values->{more_link} . "/$prev"; $rel_next = $Values->{more_link} . "/$next"; } } CANON: { last CANON if $more_page !~ /^1|(Next|Prev)/; if ($more_page eq '1') { $canon = ''; } else { $canon = sprintf("%.0f", ($fm+$ml) / $ml); $canon = '' if $canon == 1; } $canon = $Values->{more_link} . ($canon ? "/$canon" : ''); } my @out; my $url = ($Variable->{SAMPLEURL} . $Variable->{CGI_URL}) || ''; my $ext = $Scratch->{mv_add_dot_html} ? '.html' : ''; $url !~ /\/$/ and $url .= '/'; push @out, qq{<link rel="prev" href="$url$rel_prev$ext">} if $rel_prev; push @out, qq{<link rel="next" href="$url$rel_next$ext">} if $rel_next; $Tag->tmp('rel_next', 1) if $rel_next; push @out, qq{<link rel="canonical" href="$url$canon$ext">} if $canon; if ($prev || $next) { $Scratch->{page_title} = $Scratch->{page_title} . ' - Page ' . (($prev || $next)+1) }; return "\t" . join "\n\t", @out; [/calcn] [/tmp] <h2>[either][value name=more_link filter=uri2string keep=1][or]Search Results[/either]</h2> [/on-match] [tmp bw_more] [more-list] [first-anchor][/first-anchor][last-anchor][/last-anchor] [link-template]<li><a href="[area href=|[value more_link]/$ANCHOR$|]">$ANCHOR$</a></li>[/link-template] <nav> <ul class="pagination"> {PREV_LINK}{MORE_LIST}[if scratch rel_next]{NEXT_LINK}[/if] </ul> </nav> [/more-list] [/tmp] [calc] my $more = $Scratch->{bw_more}; $more and $more =~ s,<strong>,<li class="active"><a href="#">,; $more and $more =~ s,</strong> *,</a></li>,g; $Scratch->{bw_more} = $more; return $Values->{more_link} ? $more : undef; [/calc] [search-list] [item-change 1][condition][item-field category][/condition] [scratch category_close] [tmpn category_close]</div>[/tmpn] [if-item-field category] <h3>[either][value banner_text][or][item-field category][/either]</h3> [/if-item-field] <div class="row equal-height-container"> [/item-change 1] <div class="col-xs-6 col-sm-4 col-md-3 col-lg-2" data-mh="[item-filter word][item-field category][/item-filter]"> <div class="thumbnail"> <a href="[area [item-code]]">[image sku="[item-code]" default="../thumb.gif" imagesubdir=items makesize="120x150>"]</a> <div class="caption"> <h4><a href="[area [item-code]]">[item-description]</a></h4> <p>[item-price]</p> </div> </div> </div> [/search-list] </div> [no-match] <div> [comment] Don't show the search string if it was empty, since it looks weird and the user will see the error below anyway. [/comment] [tmp matchstring][value-extended name=mv_searchspec joiner=" | " filter=encode_entities][/tmp] [if scratch matchstring] [msg arg.0="[scratch matchstring]"]Sorry, no matches for <B>%s</B>.[/msg] [/if] [if value mv_search_error] <B> [L]Errors[/L]: <BR> [value-extended name=mv_search_error joiner="<BR>" filter=encode_entities] </B> [/if] </div> [/no-match] [if value more_link] [scratch bw_more] [else] [more-list] <div class=morelist> [msg arg.0="[matches]" arg.1="[match-count]"]Matches %s of %s found.[/msg] [link-template]<a href="$URL$" target="_top" class="morelink">$ANCHOR$</a>[/link-template] <BR>[more]<BR> </div> [/more-list] [/else] [/if] [/search-region] <!-- END CONTENT --> @_BOTTOM_@
thirdparty/sources/boost_1_60_0/doc/html/BOOST_ACCUMULATORS_MAX_FEATURES.html
gwq5210/litlib
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Macro BOOST_ACCUMULATORS_MAX_FEATURES</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.accumulators_fwd_hpp" title="Header &lt;boost/accumulators/accumulators_fwd.hpp&gt;"> <link rel="prev" href="boost/accumulators/with_cached_result.html" title="Struct template with_cached_result"> <link rel="next" href="BOOST_ACCUMULATORS_MAX_ARGS.html" title="Macro BOOST_ACCUMULATORS_MAX_ARGS"> </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/accumulators/with_cached_result.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_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="BOOST_ACCUMULATORS_MAX_ARGS.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="BOOST_ACCUMULATORS_MAX_FEATURES"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Macro BOOST_ACCUMULATORS_MAX_FEATURES</span></h2> <p>BOOST_ACCUMULATORS_MAX_FEATURES</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: &lt;<a class="link" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_hpp" title="Header &lt;boost/accumulators/accumulators_fwd.hpp&gt;">boost/accumulators/accumulators_fwd.hpp</a>&gt; </span>BOOST_ACCUMULATORS_MAX_FEATURES</pre></div> <div class="refsect1"> <a name="idm45555453595264"></a><h2>Description</h2> <p>The maximum number of accumulators that may be put in an accumulator_set. Defaults to BOOST_MPL_LIMIT_VECTOR_SIZE (which defaults to 20). </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 &#169; 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="boost/accumulators/with_cached_result.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_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="BOOST_ACCUMULATORS_MAX_ARGS.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
plugins/auto/multilang/v1.1.0/prive/style_prive_plugin_multilang.html
phenix-factory/Veille-et-protege
#CACHE{0*100,cache-client} #HTTP_HEADER{Content-Type: text/css; charset=iso-8859-15} #HTTP_HEADER{Vary: Accept-Encoding} #SET{claire,##ENV{couleur_claire,edf3fe}} #SET{foncee,##ENV{couleur_foncee,3874b0}} #SET{left,#ENV{ltr}|choixsiegal{left,left,right}} #SET{right,#ENV{ltr}|choixsiegal{left,right,left}} .menu_multilang { background-color:transparent; padding:5px; } .menu_multilang .langues{ overflow:auto; } .menu_multilang .langues a{ cursor:pointer; font-weight:normal; margin-right:2px; display:block; float:left; } .menu_multilang .langues a.on{ font-weight:bold; } .menu_multilang .langues a.empty{ background-color:#GET{foncee}; padding:2px; color:#fff; } .menu_multilang .multilang_message{ clear:both; } .menu_lang_flottant{ border-bottom:3px solid #GET{foncee}; background-color:[#(#GET{claire}|couleur_eclaircir)]; opacity:.8; } #SET{langues,#EVAL{$GLOBALS["meta"]["langues_multilingue"]}} <BOUCLE_langues(POUR){tableau #GET{langues}|explode{','}}> .multi_lang_#VALEUR { background-position:98% 1px; background-repeat:no-repeat; background-image:url([(#VAL{Multi #VALEUR}|image_typo{taille=11,couleur=cccccc}|extraire_attribut{src}|url_absolue)]); } </BOUCLE_langues> .multi_lang_no_multi { background-position:98% 1px; background-repeat:no-repeat; background-image:url([(#VAL{No multi}|image_typo{taille=11,couleur=cccccc}|extraire_attribut{src}|url_absolue)]); } .multi_lang_broken { background-position:98% 1px; background-repeat:no-repeat; background-image:url(#CHEMIN{images/multi_forbidden.png}); }
php/5.5/function.cairo-pdf-surface-create.html
rafaelgou/the-phpjs-local-docs-collection
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Description</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.cairo-pattern-status.html">cairo_pattern_status</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.cairo-pdf-surface-set-size.html">cairo_pdf_surface_set_size</a></div> <div class="up"><a href="ref.cairo.html">Cairo Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="function.cairo-pdf-surface-create" class="refentry"> <div class="refnamediv"> <h1 class="refname">cairo_pdf_surface_create</h1> <p class="verinfo">(PECL cairo &gt;= 0.1.0)</p><p class="refpurpose"><span class="refname">cairo_pdf_surface_create</span> &mdash; <span class="dc-title">Description</span></p> </div> <div class="refsect1 description" id="refsect1-function.cairo-pdf-surface-create-description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type"><a href="class.cairopdfsurface.html" class="type CairoPdfSurface">CairoPdfSurface</a></span> <span class="methodname"><strong>cairo_pdf_surface_create</strong></span> ( <span class="methodparam"><span class="type">string</span> <code class="parameter">$file</code></span> , <span class="methodparam"><span class="type">float</span> <code class="parameter">$width</code></span> , <span class="methodparam"><span class="type">float</span> <code class="parameter">$height</code></span> )</div> <p class="para rdfs-comment"> The function description goes here. </p> <div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is currently not documented; only its argument list is available. </p></div> </div> <div class="refsect1 parameters" id="refsect1-function.cairo-pdf-surface-create-parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <code class="parameter">file</code></dt> <dd> <p class="para"> Description... </p> </dd> <dt> <code class="parameter">width</code></dt> <dd> <p class="para"> Description... </p> </dd> <dt> <code class="parameter">height</code></dt> <dd> <p class="para"> Description... </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-function.cairo-pdf-surface-create-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> What is returned on success and failure </p> </div> <div class="refsect1 errors" id="refsect1-function.cairo-pdf-surface-create-errors"> <h3 class="title">Errors/Exceptions</h3> <p class="para"> When does this function issue E_* level errors, and/or throw exceptions. </p> </div> <div class="refsect1 examples" id="refsect1-function.cairo-pdf-surface-create-examples"> <h3 class="title">Examples</h3> <p class="para"> <div class="example" id="example-2886"> <p><strong>Example #1 <span class="function"><strong>cairo_pdf_surface_create()</strong></span> example</strong></p> <div class="example-contents"><p> Any text that describes the purpose of the example, or what goes on in the example should be here. </p></div> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"> <span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">/*&nbsp;...&nbsp;*/<br /><br /></span><span style="color: #0000BB">?&gt;</span> </span> </code></div> </div> <div class="example-contents"><p>The above example will output something similar to:</p></div> <div class="example-contents screen"> <div class="cdata"><pre> ... </pre></div> </div> </div> </p> </div> <div class="refsect1 seealso" id="refsect1-function.cairo-pdf-surface-create-seealso"> <h3 class="title">See Also</h3> <p class="para"> <ul class="simplelist"> <li class="member"><span class="function"><strong>related function name here()</strong></span></li> </ul> </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.cairo-pattern-status.html">cairo_pattern_status</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.cairo-pdf-surface-set-size.html">cairo_pdf_surface_set_size</a></div> <div class="up"><a href="ref.cairo.html">Cairo Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
htdocs/man/themes/developr/doc/content/reference/menu-collapsible-ajax.html
woakes070048/crm-php
<!-- This file is an example of sub-menu loaded via ajax --> <ul class="big-menu grey-gradient"> <li><a href="#" title="Option title">This menu</a></li> <li><a href="#" title="Option title">Was loaded</a></li> <li><a href="#" title="Option title">Using AJAX</a></li> <li><a href="#" title="Option title">Only by adding</a></li> <li><a href="#" title="Option title">A single class</a></li> </ul>
public/js/lib/docs/examples/example-example113/index-production.html
oczane/geochat
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example113-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-sanitize.js"></script> <script src="script.js"></script> </head> <body ng-app="linkyExample"> <div ng-controller="ExampleController"> Snippet: <textarea ng-model="snippet" cols="60" rows="3"></textarea> <table> <tr> <th>Filter</th> <th>Source</th> <th>Rendered</th> </tr> <tr id="linky-filter"> <td>linky filter</td> <td> <pre>&lt;div ng-bind-html="snippet | linky"&gt;<br>&lt;/div&gt;</pre> </td> <td> <div ng-bind-html="snippet | linky"></div> </td> </tr> <tr id="linky-target"> <td>linky target</td> <td> <pre>&lt;div ng-bind-html="snippetWithSingleURL | linky:'_blank'"&gt;<br>&lt;/div&gt;</pre> </td> <td> <div ng-bind-html="snippetWithSingleURL | linky:'_blank'"></div> </td> </tr> <tr id="linky-custom-attributes"> <td>linky custom attributes</td> <td> <pre>&lt;div ng-bind-html="snippetWithSingleURL | linky:'_self':{rel: 'nofollow'}"&gt;<br>&lt;/div&gt;</pre> </td> <td> <div ng-bind-html="snippetWithSingleURL | linky:'_self':{rel: 'nofollow'}"></div> </td> </tr> <tr id="escaped-html"> <td>no filter</td> <td><pre>&lt;div ng-bind="snippet"&gt;<br>&lt;/div&gt;</pre></td> <td><div ng-bind="snippet"></div></td> </tr> </table> </body> </html>
public/templates/partials/doc-stats.html
OpinionWise/madison
<h2 class="normal-title" translate="document.label.stats"></h2> <div class="support-chart"> <div class="chart-title" translate="document.label.supportoppose"></div> <div class="chart"> <svg viewbox="-50 0 100 32" width="100%"> <g transform="rotate(180) translate(1,-21)" class="support"> <rect ng-attr-width="{{ doc.support_percent }}" height="12"></rect> </g> <g class="border"> <line x1="0" y1="0" x2="0" y2="30"> </g> <g transform="translate(0,9)" class="oppose"> <rect ng-attr-width="{{ doc.oppose_percent }}" height="12"></rect> </g> </svg> </div> <div class="chart-labels"> <dl class="chart-stat oppose"> <dt class="chart-label" translate="document.label.support"></dt> <dd class="chart-value">{{ doc.support }}</dd> </dl> <dl class="chart-stat support"> <dt class="chart-label" translate="document.label.oppose"></dt> <dd class="chart-value">{{ doc.oppose }}</dd> </dl> </div> </div> <dl class="stats-number"> <dd class="stat-value">{{ doc.user_count }}</dd> <dt class="stat-label" translate="document.label.participants"></dt> </dl> <dl class="stats-number"> <dd class="stat-value">{{ doc.comment_count }}</dd> <dt class="stat-label" translate="document.label.comments"></dt> </dl> <dl class="stats-number"> <dd class="stat-value">{{ doc.annotation_count }}</dd> <dt class="stat-label" translate="document.label.annotations"></dt> </dl> <div class="stats-history"> <!-- revisions should go here --> <span ng-show="doc.updated_at" class="date" translate="document.label.updated.timeago" translate-values="{datetime: doc.updated_at}"></span> </div>
ropp-7.0/grib_api-1.9.9/html/grib_compare.html
MengbinZhu/pfldp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>grib_api: grib_compare</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.3 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> </ul> </div> <h1><a class="anchor" name="grib_compare">grib_compare</a></h1><h2><a class="anchor" name="DESCRIPTION"> DESCRIPTION</a></h2> Compare grib messages contained in two files. If some differences are found it fails returning an error code. Floating point values are compared exactly by default, different tolerance can be defined see -P -A -R. Default behaviour: absolute error=0, bit-by-bit compare, same order in files.<h2><a class="anchor" name="USAGE"> USAGE</a></h2> grib_compare [options] grib_file grib_file<h2><a class="anchor" name="OPTIONS"> OPTIONS</a></h2> -r <br> Compare files in which the messages are not in the same order. This option is time expensive. <br> <br> -b key,key,... <br> All the keys in this list are skipped in the comparison. Bit-by-bit compare on. <br> <br> -e <br> edition independent compare. It is used to compare grib edition 1 and 2. <br> <br> -c key[:l/d/s/n],key[:l/d/s/n],... <br> Only the listed keys or namespaces (:n) are compared. The optional letter after the colon is used to force the type in the comparison: l-&gt;integer, d-&gt;float, s-&gt;string, n-&gt;namespace. See -a option. Incompatible with -H option. <br> <br> -a <br> -c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c. <br> <br> -H <br> Compare only message headers. Bit-by-bit compare on. Incompatible with -c option. <br> <br> -R key1=relative_error1,key2=relative_error2,... <br> Compare floating point values using the relative error as tolerance. key1=relative_error will compare key1 using relative_error1. all=relative_error will compare all the floating point keys using relative_error. Default all=0. <br> <br> -A absolute error <br> Compare floating point values using the absolute error as tolerance. Default is absolute error=0 <br> <br> -P <br> Compare data values using the packing error as tolerance. <br> <br> -T factor <br> Compare data values using factor multipied by the tolerance specified in options -P -R -A. <br> <br> -w key[:{s/d/l}]{=/!=}value,key[:{s/d/l}]{=/!=}value,... <br> Where clause. Grib messages are processed only if they match all the key/value constraints. A valid constraint is of type key=value or key!=value. For each key a string (key:s) or a double (key:d) or a long (key:l) type can be specified. Default type is string. <br> <br> -f <br> Force. Force the execution not to fail on error. <br> <br> -V <br> Version. <br> <br> -7 <br> Does not fail when the message has wrong length <br> <br> -v <br> Verbose. <br> <br> <h2><a class="anchor" name="grib_compare_examples"> grib_compare examples</a></h2> <ol type=1> <li>The default behaviour for grib_compare without any option is to perform a bit by bit comparison of the two messages. If the messages are found to be bitwise different then grib_compare switches to a "key based" mode to find out which coded keys are different. To see how grib_compare works we first set the shortName=2d (2 metre dew point temperature) in the file regular_latlon_surface.grib1<br> <div class="fragment"><pre class="fragment"> &gt;grib_set -s shortName=2d regular_latlon_surface.grib1 2d.grib1 </pre></div> Then we can compare the two fields with grib_compare.<br> <div class="fragment"><pre class="fragment"> &gt;grib_compare regular_latlon_surface.grib1 2d.grib1 -- GRIB #1 -- shortName=2t paramId=167 stepRange=0 levelType=sfc level=0 packingType=grid_simple gridType=regular_ll -- long [indicatorOfParameter]: [167] != [168] </pre></div> In the output we see that the only "coded" key with different values in the two messages is indicatorOfParameter which is the relevant key for the parameter information. The comparison can be forced to be successful listing the keys with different values in the -b option. <div class="fragment"><pre class="fragment"> &gt;grib_compare -b indicatorOfParameter regular_latlon_surface.grib1 2d.grib1 </pre></div> <br> <br> </li><li>Two grib messages can be very different because they have different edition, but they can contain the same identical information in the header and the same data. To see how grib_compare can help in comparing messages with different edition we do <div class="fragment"><pre class="fragment"> &gt;grib_set edition=2 reduced_gaussian_model_level.grib1 reduced_gaussian_model_level.grib2 </pre></div> Then we compare the two fields with grib_compare.<br> <div class="fragment"><pre class="fragment"> &gt;grib_compare reduced_gaussian_model_level.grib1 reduced_gaussian_model_level.grib2 -- GRIB #1 -- shortName=t paramId=130 stepRange=0 levelType=ml level=1 packingType=grid_simple gridType=reduced_gg -- long [totalLength]: [10908] != [10996] long [editionNumber]: [1] != [2] long [section1Length]: [52] != [21] [table2Version] not found in 2nd field [gridDefinition] not found in 2nd field [indicatorOfParameter] not found in 2nd field [indicatorOfTypeOfLevel] not found in 2nd field [yearOfCentury] not found in 2nd field [unitOfTimeRange] not found in 2nd field [P1] not found in 2nd field [P2] not found in 2nd field [numberIncludedInAverage] not found in 2nd field [numberMissingFromAveragesOrAccumulations] not found in 2nd field [centuryOfReferenceTimeOfData] not found in 2nd field [reservedNeedNotBePresent] not found in 2nd field [localDefinitionNumber] not found in 2nd field [perturbationNumber] not found in 2nd field [numberOfForecastsInEnsemble] not found in 2nd field [padding_local1_1] not found in 2nd field long [section2Length]: [896] != [17] [pvlLocation] not found in 2nd field [dataRepresentationType] not found in 2nd field long [latitudeOfFirstGridPoint]: [87864] != [87864000] long [latitudeOfLastGridPoint]: [-87864] != [-87864000] long [longitudeOfLastGridPoint]: [357188] != [357188000] [padding_grid4_1] not found in 2nd field long [section4Length]: [9948] != [770] [dataFlag] not found in 2nd field </pre></div> It is clear that the two messages are coded in a very different way. If we now add the -e option, the tool will compare only the higher level information common between the two messages. <div class="fragment"><pre class="fragment"> &gt;grib_compare -e reduced_gaussian_model_level.grib1 reduced_gaussian_model_level.grib2 </pre></div> The comparison is successful because the two messages contain the same information coded in two different ways. We can display the list of keys used by grib_compare adding the option -v (verbose). <div class="fragment"><pre class="fragment"> &gt;grib_compare -ve reduced_gaussian_model_level.grib1 reduced_gaussian_model_level.grib2 reduced_gaussian_model_level.grib2 comparing centre as string comparing paramId as string comparing shortName as string comparing typeOfLevel as string comparing level as long comparing pv as double (184 values) tolerance=0 comparing latitudeOfFirstGridPointInDegrees as double (1 values) tolerance=0.0005 comparing longitudeOfFirstGridPointInDegrees as double (1 values) tolerance=0.0005 comparing latitudeOfLastGridPointInDegrees as double (1 values) tolerance=0.0005 comparing longitudeOfLastGridPointInDegrees as double (1 values) tolerance=0.0005 comparing iDirectionIncrementInDegrees is set to missing in both fields comparing N as long comparing iScansNegatively as long comparing jScansPositively as long comparing jPointsAreConsecutive as long comparing pl as long comparing gridType as string comparing packedValues as double (6114 values) tolerance=0 comparing param as string comparing levtype as string comparing levelist as long comparing date as long comparing time as long comparing step as long comparing class as long comparing type as long comparing stream as long comparing expver as string comparing domain as string 1 of 1 grib messages in reduced_gaussian_model_level.grib2 1 of 1 total grib messages in 1 files </pre></div> For each key the type used in the comparison is reported and for the floating point keys also the tolerance used is printed. <br> <br> </li><li>Some options are provided to compare only a set of keys in the messages. The option -H is used to compare only the headers coded in the message, it doesn't compare the data values. The option "-c key1:[l/d/s/n],key2:[l/d/s/n],... " can be used to compare a set of keys or namespaces. The letter after the colon is optional and it is used to force the type used in the comparison which is otherwise assumed to be the native type of the key. The possible types are:<ul> <li>:l -&gt; integer (C type long)</li><li>:d -&gt; floating point (C type double)</li><li>:s -&gt; string</li><li>:n -&gt; namespace.</li></ul> When the type "n" is used all the set of keys belonging to the specified namespace are compared assuming their own native type. To illustrate how these options work we change the values coded in a message using grib_filter with the following rules file (see <a class="el" href="grib_filter.html">grib_filter</a>). <div class="fragment"><pre class="fragment"> set bitsPerValue=10; set values={1,2.5,3,4,5,6,70}; write "first.grib1"; set values={1,2.5,5,4,5,6,70}; write "second.grib1"; </pre></div> We first compare the two files using the -H option (only headers are compared). <div class="fragment"><pre class="fragment"> &gt;grib_compare -H first.grib1 second.grib1 </pre></div> The comparison is successful because the data are not compared. To compare only the data we have to compare the "data namespace". <div class="fragment"><pre class="fragment"> &gt;grib_compare -c data:n first.grib1 second.grib1 -- GRIB #1 -- shortName=t paramId=130 stepRange=0 levelType=ml level=1 packingType=grid_simple gridType=reduced_gg -- double [packedValues]: 1 out of 7 different, max absolute diff. = 2, relative diff. = 0.4 max diff. element 2: 3.00000000000000000000e+00 5.00000000000000000000e+00 tolerance=0 packingError: [0.04] [0.04] values max= [70.04] [70.04] min= [1] [1] </pre></div> The comparison is showing that one of seven values is different in a comparison with the (default) absolute tolerance=0. We can change the tolerance with the -A option: <div class="fragment"><pre class="fragment"> &gt;grib_compare -A 2 -c data:n first.grib1 second.grib1 </pre></div> and we see that the comparison is successful if the absolute tolerance is set to 2. We can also set the relative tolerance for each key with the option -R: <div class="fragment"><pre class="fragment"> &gt;grib_compare -R packedValues=0.4 -c data:n first.grib1 second.grib1 </pre></div> and we get again a successful comparison because the relative tolerance is bigger than the relative absolute difference of two corresponding values. Another possible choice for the tolerance is to be equal to the packingError, which is the error due to the packing algorithm. If we change the decimalPrecision of a packed field we introduce a packing error sometimes bigger than the original packing error. <div class="fragment"><pre class="fragment"> &gt;grib_set -s changeDecimalPrecision=0 first.grib1 third.grib1 </pre></div> and we compare the two fields using the -P option (tolerance=packingError). <div class="fragment"><pre class="fragment"> &gt;grib_compare -P -c data:n first.grib1 third.grib1 </pre></div> the comparison is successful because their difference is within the biggest of the two packing error. With the option -P the comparison is failing only if the original data coded are different, not if the packing precision is changed. If we try again to compare the fields without the -P option: <div class="fragment"><pre class="fragment"> &gt;grib_compare -c data:n first.grib1 third.grib1 -- GRIB #1 -- shortName=t paramId=130 stepRange=0 levelType=ml level=1 packingType=grid_simple gridType=reduced_gg -- double [packedValues]: 4 out of 7 different, max absolute diff. = 0.48, relative diff. = 0.16 max diff. element 1: 2.52000000000000001776e+00 3.00000000000000000000e+00 tolerance=0 packingError: [0.04] [0.5] values max= [70.04] [70] min= [1] [1] </pre></div> we see that some values are different and that the maximum absolute differenc is close to the biggest packing error (max diff=0.48 packingError=0.5). The packing error was chosen to be 0.5 by setting decimalPrecision to 0 which means that we don't need to preserve any decimal figure.<br> <br> </li><li>When we already know that the fields are not numerically identical, but have similar statistical characteristics we can compare their statistics namespaces: <div class="fragment"><pre class="fragment"> &gt;grib_compare -c statistics:n first.grib1 third.grib1 -- GRIB #1 -- shortName=t paramId=130 stepRange=0 levelType=ml level=1 packingType=grid_simple gridType=reduced_gg -- double [max]: [7.00400000000000062528e+01] != [7.00000000000000000000e+01] absolute diff. = 0.04, relative diff. = 0.000571102 tolerance=0 double [avg]: [1.30914285714285707485e+01] != [1.31428571428571423496e+01] absolute diff. = 0.0514286, relative diff. = 0.00391304 tolerance=0 double [sd]: [2.32994686809877009637e+01] != [2.32589679873534969090e+01] absolute diff. = 0.0405007, relative diff. = 0.00173827 tolerance=0 double [skew]: [-1.41592875700515623549e+01] != [-1.41669971380493855406e+01] absolute diff. = 0.00770957, relative diff. = 0.000544192 tolerance=0 double [kurt]: [7.32364710785659567271e-01] != [7.32723797489455375143e-01] absolute diff. = 0.000359087, relative diff. = 0.000490071 tolerance=0 </pre></div> and we see that maximum, minimum, average, standard deviation, skewness and kurtosis are compared. While the values are different by 0.48 the statistics comparison shows that the difference in the statistical values is never bigger than 0.052 <div class="fragment"><pre class="fragment"> &gt;grib_compare -A 0.052 -c statistics:n first.grib1 third.grib1 </pre></div> The statistics namespace is available also for spherical harmonics data and provides information about the field in the geographic space computing them in the spectral space for performance reasons. <br> <br> </li><li>When a file contains several fields and some keys are different, it is useful to have a summary report of the keys found different in the messages. This can be obtained with the option -f. We change few keys in a file: <div class="fragment"><pre class="fragment"> &gt;grib_set -w typeOfLevel=surface -s step=48 tigge_pf_ecmwf.grib2 out.grib2 </pre></div> and comparing with the -f option: <div class="fragment"><pre class="fragment"> &gt;grib_compare -f tigge_pf_ecmwf.grib2 out.grib2 -- GRIB #9 -- shortName=skt paramId=235 stepRange=96 levelType=sfc level=0 packingType=grid_simple gridType=regular_ll -- long [forecastTime]: [96] != [48] -- GRIB #10 -- shortName=sd paramId=228141 stepRange=96 levelType=sfc level=0 packingType=grid_simple gridType=regular_ll -- long [forecastTime]: [96] != [48] -- GRIB #11 -- shortName=sf paramId=228144 stepRange=0-96 levelType=sfc level=0 packingType=grid_simple gridType=regular_ll -- long [dayOfEndOfOverallTimeInterval]: [26] != [24] long [lengthOfTimeRange]: [96] != [48] ... output deleted ## ERRORS SUMMARY ####### ## ## Summary of different key values ## forecastTime ( 3 different ) ## dayOfEndOfOverallTimeInterval ( 11 different ) ## lengthOfTimeRange ( 11 different ) ## ## 14 different messages out of 38 </pre></div> we get a list of all the different messages in the files and a summary report of the different keys. <br> <br> </li><li>We can change the order of the messages in a file using grib_copy with the -B option: <div class="fragment"><pre class="fragment"> &gt;grib_copy -B typeOfLevel tigge_pf_ecmwf.grib2 out.grib2 </pre></div> If we now compare the two files: <div class="fragment"><pre class="fragment"> &gt;grib_compare -f tigge_pf_ecmwf.grib2 out.grib2 -- GRIB #1 -- shortName=10u paramId=165 stepRange=96 levelType=sfc level=10 packingType=grid_simple gridType=regular_ll -- long [discipline]: [0] != [2] long [totalLength]: [1555] != [990] long [parameterCategory]: [2] != [0] long [parameterNumber]: [2] != [22] long [scaledValueOfFirstFixedSurface]: [10] != [0] long [typeOfSecondFixedSurface]: [255] != [106] scaleFactorOfSecondFixedSurface is set to missing in 1st field is not missing in 2nd field scaledValueOfSecondFixedSurface is set to missing in 1st field is not missing in 2nd field long [numberOfValues]: [684] != [239] double [referenceValue]: [-1.57229328155517578125e+01] != [4.15843811035156250000e+01] absolute diff. = 57.3073, relative diff. = 1.3781 tolerance=3.8147e-06 long [binaryScaleFactor]: [-10] != [-15] long [bitsPerValue]: [16] != [24] long [section6Length]: [6] != [92] long [bitMapIndicator]: [255] != [0] long [section7Length]: [1373] != [722] [codedValues] has different size: 1st field: 684, 2nd field: 239 ... very long output </pre></div> the comparison is failing because of the different order of the messages. We can use the -r option to compare the files assuming that the messages are not in the same order: <div class="fragment"><pre class="fragment"> &gt;grib_compare -r tigge_pf_ecmwf.grib2 out.grib2 </pre></div> and we have a successful comparison because for each message in the first file an identical message is found in the second file. This option should be used carefully as it is very time expensive.</li></ol> <p> <br> <br> <hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 22 15:18:22 2009 for grib_api by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address> </body> </html>
php/5.5/function.ibase-add-user.html
rafaelgou/the-phpjs-local-docs-collection
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Add a user to a security database</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ibase-affected-rows.html">ibase_affected_rows</a></div> <div class="up"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="function.ibase-add-user" class="refentry"> <div class="refnamediv"> <h1 class="refname">ibase_add_user</h1> <p class="verinfo">(PHP 5)</p><p class="refpurpose"><span class="refname">ibase_add_user</span> &mdash; <span class="dc-title">Add a user to a security database</span></p> </div> <div class="refsect1 description" id="refsect1-function.ibase-add-user-description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type">bool</span> <span class="methodname"><strong>ibase_add_user</strong></span> ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$service_handle</code></span> , <span class="methodparam"><span class="type">string</span> <code class="parameter">$user_name</code></span> , <span class="methodparam"><span class="type">string</span> <code class="parameter">$password</code></span> [, <span class="methodparam"><span class="type">string</span> <code class="parameter">$first_name</code></span> [, <span class="methodparam"><span class="type">string</span> <code class="parameter">$middle_name</code></span> [, <span class="methodparam"><span class="type">string</span> <code class="parameter">$last_name</code></span> ]]] )</div> <div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is currently not documented; only its argument list is available. </p></div> </div> <div class="refsect1 returnvalues" id="refsect1-function.ibase-add-user-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> Returns <strong><code>TRUE</code></strong> on success or <strong><code>FALSE</code></strong> on failure. </p> </div> <div class="refsect1 seealso" id="refsect1-function.ibase-add-user-seealso"> <h3 class="title">See Also</h3> <p class="para"> <ul class="simplelist"> <li class="member"><span class="function"><a href="function.ibase-modify-user.html" class="function" rel="rdfs-seeAlso">ibase_modify_user()</a> - Modify a user to a security database</span></li> <li class="member"><span class="function"><a href="function.ibase-delete-user.html" class="function" rel="rdfs-seeAlso">ibase_delete_user()</a> - Delete a user from a security database</span></li> </ul> </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ibase-affected-rows.html">ibase_affected_rows</a></div> <div class="up"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
src/ModeloBlufeedme/dist/javadoc/blufeedme/basedatos/package-tree.html
google-code/blufeedme
<!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_18) on Fri Jun 24 13:47:35 CEST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> blufeedme.basedatos Class Hierarchy (Blufeedme) </TITLE> <META NAME="date" CONTENT="2011-06-24"> <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="blufeedme.basedatos Class Hierarchy (Blufeedme)"; } } </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;<A HREF="../../blufeedme/basedatos/impl/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?blufeedme/basedatos/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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> Hierarchy For Package blufeedme.basedatos </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../overview-tree.html">All Packages</A></DL> <HR> <H2> Interface Hierarchy </H2> <UL> <LI TYPE="circle">blufeedme.basedatos.<A HREF="../../blufeedme/basedatos/BdBlufeedme.html" title="interface in blufeedme.basedatos"><B>BdBlufeedme</B></A></UL> <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;<A HREF="../../blufeedme/basedatos/impl/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?blufeedme/basedatos/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
thirdparty/sources/boost_1_60_0/doc/html/boost/program_options/unknown_option.html
gwq5210/litlib
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class unknown_option</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="../../program_options/reference.html#header.boost.program_options.errors_hpp" title="Header &lt;boost/program_options/errors.hpp&gt;"> <link rel="prev" href="too_many_idm45507093966064.html" title="Class too_many_positional_options_error"> <link rel="next" href="validation_error.html" title="Class validation_error"> </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="too_many_idm45507093966064.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../program_options/reference.html#header.boost.program_options.errors_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="validation_error.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.program_options.unknown_option"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class unknown_option</span></h2> <p>boost::program_options::unknown_option</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: &lt;<a class="link" href="../../program_options/reference.html#header.boost.program_options.errors_hpp" title="Header &lt;boost/program_options/errors.hpp&gt;">boost/program_options/errors.hpp</a>&gt; </span> <span class="keyword">class</span> <a class="link" href="unknown_option.html" title="Class unknown_option">unknown_option</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">program_options</span><span class="special">::</span><span class="identifier">error_with_no_option_name</span> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// <a class="link" href="unknown_option.html#boost.program_options.unknown_optionconstruct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="unknown_option.html#idm45507161884944-bb"><span class="identifier">unknown_option</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> <span class="special">=</span> <span class="string">""</span><span class="special">)</span><span class="special">;</span> <a class="link" href="unknown_option.html#idm45507108319472-bb"><span class="special">~</span><span class="identifier">unknown_option</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idm45555216852176"></a><h2>Description</h2> <p>Class thrown when option name is not recognized. </p> <div class="refsect2"> <a name="idm45555216851440"></a><h3> <a name="boost.program_options.unknown_optionconstruct-copy-destruct"></a><code class="computeroutput">unknown_option</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"><pre class="literallayout"><a name="idm45507161884944-bb"></a><span class="identifier">unknown_option</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> original_token <span class="special">=</span> <span class="string">""</span><span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a name="idm45507108319472-bb"></a><span class="special">~</span><span class="identifier">unknown_option</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li> </ol></div> </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 &#169; 2002-2004 Vladimir Prus<p>Distributed under the Boost Software License, Version 1.0. (See accompanying file <code class="filename">LICENSE_1_0.txt</code> 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="too_many_idm45507093966064.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../program_options/reference.html#header.boost.program_options.errors_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="validation_error.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
php/5.5/function.com-message-pump.html
rafaelgou/the-phpjs-local-docs-collection
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Process COM messages, sleeping for up to timeoutms milliseconds</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.com-load.html">com_load</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.com-print-typeinfo.html">com_print_typeinfo</a></div> <div class="up"><a href="ref.com.html">COM Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="function.com-message-pump" class="refentry"> <div class="refnamediv"> <h1 class="refname">com_message_pump</h1> <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5)</p><p class="refpurpose"><span class="refname">com_message_pump</span> &mdash; <span class="dc-title">Process COM messages, sleeping for up to timeoutms milliseconds</span></p> </div> <div class="refsect1 description" id="refsect1-function.com-message-pump-description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type">bool</span> <span class="methodname"><strong>com_message_pump</strong></span> ([ <span class="methodparam"><span class="type">int</span> <code class="parameter">$timeoutms</code><span class="initializer"> = 0</span></span> ] )</div> <p class="para rdfs-comment"> This function will sleep for up to <code class="parameter">timeoutms</code> milliseconds, or until a message arrives in the queue. </p> <p class="para"> The purpose of this function is to route COM calls between apartments and handle various synchronization issues. This allows your script to wait efficiently for events to be triggered, while still handling other events or running other code in the background. You should use it in a loop, as demonstrated by the example in the <span class="function"><a href="function.com-event-sink.html" class="function">com_event_sink()</a></span> function, until you are finished using event bound COM objects. </p> </div> <div class="refsect1 parameters" id="refsect1-function.com-message-pump-parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <code class="parameter">timeoutms</code></dt> <dd> <p class="para"> The timeout, in milliseconds. </p> <p class="para"> If you do not specify a value for <code class="parameter">timeoutms</code>, then 0 will be assumed. A 0 value means that no waiting will be performed; if there are messages pending they will be dispatched as before; if there are no messages pending, the function will return <strong><code>FALSE</code></strong> immediately without sleeping. </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-function.com-message-pump-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> If a message or messages arrives before the timeout, they will be dispatched, and the function will return <strong><code>TRUE</code></strong>. If the timeout occurs and no messages were processed, the return value will be <strong><code>FALSE</code></strong>. </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.com-load.html">com_load</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.com-print-typeinfo.html">com_print_typeinfo</a></div> <div class="up"><a href="ref.com.html">COM Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
app/webroot/css/pages/contact.css
shashank19gaurav/tatoeba2
/** * Tatoeba Project, free collaborative creation of multilingual corpuses project * Copyright (C) 2010 HO Ngoc Phuong Trang <tranglich@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http: //www.gnu.org/licenses/>. */ /* * Follow us */ #socialMedia { font-size: 1.4em; } .twitterLink { padding: 7px 0 7px 40px; margin: 20px; background: transparent url(/img/twitter_icon.svg) no-repeat scroll left; display: block; } .bloggerLink { padding: 7px 0 7px 40px; margin: 20px; background: transparent url(/img/blogger_icon.svg) no-repeat scroll left; display: block; } .facebookLink { padding: 7px 0 7px 40px; margin: 20px; background: transparent url(/img/facebook_icon.svg) no-repeat scroll left; display: block; }
resourses/Libraries/ITEADLIB_Arduino_Nextion-master/doc/Documentation/group___touch_event.html
DanyYanev/Boiler_Control
<!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.7"/> <title>Documentation: Touch Event</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Documentation </div> <div id="projectbrief">For Arduino users</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.7 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('group___touch_event.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#define-members">Macros</a> &#124; <a href="#typedef-members">Typedefs</a> </div> <div class="headertitle"> <div class="title">Touch Event<div class="ingroups"><a class="el" href="group___core_a_p_i.html">Core API</a></div></div> </div> </div><!--header--> <div class="contents"> <p>How to attach(or detach) callback function called when touch event occurs. <a href="#details">More...</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_nex_touch.html">NexTouch</a></td></tr> <tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">Father class of the components with touch events. <a href="class_nex_touch.html#details">More...</a><br /></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</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:ga748c37a9bbe04ddc680fe1686154fefb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga748c37a9bbe04ddc680fe1686154fefb"></a> #define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___touch_event.html#ga748c37a9bbe04ddc680fe1686154fefb">NEX_EVENT_PUSH</a>&#160;&#160;&#160;(0x01)</td></tr> <tr class="memdesc:ga748c37a9bbe04ddc680fe1686154fefb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Push touch event occuring when your finger or pen coming to Nextion touch pannel. <br /></td></tr> <tr class="separator:ga748c37a9bbe04ddc680fe1686154fefb"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga5db3d99f88ac878875ca47713b7a54b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5db3d99f88ac878875ca47713b7a54b6"></a> #define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___touch_event.html#ga5db3d99f88ac878875ca47713b7a54b6">NEX_EVENT_POP</a>&#160;&#160;&#160;(0x00)</td></tr> <tr class="memdesc:ga5db3d99f88ac878875ca47713b7a54b6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pop touch event occuring when your finger or pen leaving from Nextion touch pannel. <br /></td></tr> <tr class="separator:ga5db3d99f88ac878875ca47713b7a54b6"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="typedef-members"></a> Typedefs</h2></td></tr> <tr class="memitem:ga162dea47b078e8878d10d6981a9dd0c6"><td class="memItemLeft" align="right" valign="top">typedef void(*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___touch_event.html#ga162dea47b078e8878d10d6981a9dd0c6">NexTouchEventCb</a> )(void *ptr)</td></tr> <tr class="memdesc:ga162dea47b078e8878d10d6981a9dd0c6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Type of callback funciton when an touch event occurs. <a href="#ga162dea47b078e8878d10d6981a9dd0c6">More...</a><br /></td></tr> <tr class="separator:ga162dea47b078e8878d10d6981a9dd0c6"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <p>How to attach(or detach) callback function called when touch event occurs. </p> <h2 class="groupheader">Typedef Documentation</h2> <a class="anchor" id="ga162dea47b078e8878d10d6981a9dd0c6"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">typedef void(* NexTouchEventCb)(void *ptr)</td> </tr> </table> </div><div class="memdoc"> <p>Type of callback funciton when an touch event occurs. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">ptr</td><td>- user pointer for any purpose. Commonly, it is a pointer to a object. </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>none. </dd></dl> <p>Definition at line <a class="el" href="_nex_touch_8h_source.html#l00045">45</a> of file <a class="el" href="_nex_touch_8h_source.html">NexTouch.h</a>.</p> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Fri Jan 6 2017 14:00:38 for Documentation by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.7 </li> </ul> </div> </body> </html>
opennms-doc/asciidoctor-default.css
aihua/opennms
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */ /* ========================================================================== HTML5 display definitions ========================================================================== */ /** Correct `block` display not defined in IE 8/9. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /** Correct `inline-block` display not defined in IE 8/9. */ audio, canvas, video { display: inline-block; } /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */ [hidden], template { display: none; } script { display: none !important; } /* ========================================================================== Base ========================================================================== */ /** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** Remove default margin. */ body { margin: 0; } /* ========================================================================== Links ========================================================================== */ /** Remove the gray background color from active links in IE 10. */ a { background: transparent; } /** Address `outline` inconsistency between Chrome and other browsers. */ a:focus { outline: thin dotted; } /** Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* ========================================================================== Typography ========================================================================== */ /** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** Address styling not present in IE 8/9, Safari 5, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */ b, strong { font-weight: bold; } /** Address styling not present in Safari 5 and Chrome. */ dfn { font-style: italic; } /** Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** Correct font family set oddly in Safari 5 and Chrome. */ code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; } /** Improve readability of pre-formatted text in all browsers. */ pre { white-space: pre-wrap; } /** Set consistent quote types. */ q { quotes: "\201C" "\201D" "\2018" "\2019"; } /** Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* ========================================================================== Embedded content ========================================================================== */ /** Remove border when inside `a` element in IE 8/9. */ img { border: 0; } /** Correct overflow displayed oddly in IE 9. */ svg:not(:root) { overflow: hidden; } /* ========================================================================== Figures ========================================================================== */ /** Address margin not present in IE 8/9 and Safari 5. */ figure { margin: 0; } /* ========================================================================== Forms ========================================================================== */ /** Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */ button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ } /** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */ button, input { line-height: normal; } /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */ button, select { text-transform: none; } /** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */ textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ } /* ========================================================================== Tables ========================================================================== */ /** Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; } meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; } meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; } *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html, body { font-size: 100%; } body { background: white; color: #212121; padding: 0; margin: 0; font-family: "Roboto", sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; } a:hover { cursor: pointer; } img, object, embed { max-width: 100%; height: auto; } object, embed { height: 100%; } img { -ms-interpolation-mode: bicubic; } #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; } .left { float: left !important; } .right { float: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .text-justify { text-align: justify !important; } .hide { display: none; } .antialiased { -webkit-font-smoothing: antialiased; } img { display: inline-block; vertical-align: middle; } textarea { height: auto; min-height: 50px; } select { width: 100%; } object, svg { display: inline-block; vertical-align: middle; } .center { margin-left: auto; margin-right: auto; } .stretch { width: 100%; } p.lead { font-size: 1.21875em; line-height: 1.6; } .subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.45; color: #212121; font-weight: 300; margin-top: 0; margin-bottom: 0.25em; } /* Typography resets */ div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; } /* Default Link Styles */ a { color: #212121; text-decoration: none; line-height: inherit; } a:hover, a:focus { color: #4d9c2d; } a img { border: none; } #content a { color: #212121; text-decoration: none; border-bottom: 0.75px dashed #212121; line-height: inherit; } #content a:hover, a:focus { color: #4d9c2d; border-bottom: 0.75px dashed #4d9c2d; } #content a img { border: none; } /* Default paragraph styles */ p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; } p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; } /* Default header styles */ h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Roboto", sans-serif; font-weight: bold; font-style: normal; color: #444; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.0125em; } h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #e99b8f; line-height: 0; } h1 { font-size: 2.125em; } h2 { font-size: 1.6875em; } h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; } h4 { font-size: 1.125em; } h5 { font-size: 1.125em; } h6 { font-size: 1em; } hr { border: solid #ddddd8; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; } /* Helpful Typography Defaults */ em, i { font-style: italic; line-height: inherit; } strong, b { font-weight: bold; line-height: inherit; } small { font-size: 60%; line-height: inherit; } code { font-family: "Roboto Mono", monospace; font-weight: normal; color: rgba(0, 0, 0, 0.9); } /* Lists */ ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; } ul, ol { margin-left: 1.5em; } ul.no-bullet, ol.no-bullet { margin-left: 1.5em; } /* Unordered Lists */ ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ } ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; } ul.square { list-style-type: square; } ul.circle { list-style-type: circle; } ul.disc { list-style-type: disc; } ul.no-bullet { list-style: none; } /* Ordered Lists */ ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; } /* Definition Lists */ dl dt { margin-bottom: 0.3125em; font-weight: bold; } dl dd { margin-bottom: 1.25em; } /* Abbreviations */ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #212121; border-bottom: 1px dotted #dddddd; cursor: help; } abbr { text-transform: none; } /* Blockquotes */ blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; } blockquote cite { display: block; font-size: 0.9375em; color: rgba(0, 0, 0, 0.6); } blockquote cite:before { content: "\2014 \0020"; } blockquote cite a, blockquote cite a:visited { color: rgba(0, 0, 0, 0.6); } blockquote, blockquote p { line-height: 1.6; color: rgba(0, 0, 0, 0.85); } /* Microformats */ .vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; } .vcard li { margin: 0; display: block; } .vcard .fn { font-weight: bold; font-size: 0.9375em; } .vevent .summary { font-weight: bold; } .vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; } @media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.2; } h1 { font-size: 2.75em; } h2 { font-size: 2.3125em; } h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; } h4 { font-size: 1.4375em; } } /* Tables */ table { background: white; margin-bottom: 1.25em; border: solid 1px #dedede; } table thead, table tfoot { background: #f7f8f7; font-weight: bold; } table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #212121; text-align: left; } table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #212121; } table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f7f7f7; } table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.6; } body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; tab-size: 4; } h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.2; word-spacing: -0.05em; } h1 strong, h2 strong, h3 strong, #toctitle strong, .sidebarblock > .content > .title strong, h4 strong, h5 strong, h6 strong { font-weight: 400; } .clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; } .clearfix:after, .float-group:after { clear: both; } *:not(pre) > code { font-size: 0.9375em; font-style: normal !important; letter-spacing: 0; padding: 0.1em 0.5ex; word-spacing: -0.15em; background-color: #f7f7f7; -webkit-border-radius: 4px; border-radius: 4px; line-height: 1.45; text-rendering: optimizeSpeed; word-wrap: break-word; } *:not(pre) > code.nobreak { word-wrap: normal; } *:not(pre) > code.nowrap { white-space: nowrap; } pre, pre > code { line-height: 1.45; color: rgba(0, 0, 0, 0.9); font-family: "Roboto Mono", "Droid Sans Mono", "DejaVu Sans Mono", "Monospace", monospace; font-weight: normal; text-rendering: optimizeSpeed; } em em { font-style: normal; } strong strong { font-weight: normal; } .keyseq { color: rgba(51, 51, 51, 0.8); } kbd { font-family: "Roboto Mono", monospace; display: inline-block; color: #212121; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; } .keyseq kbd:first-child { margin-left: 0; } .keyseq kbd:last-child { margin-right: 0; } .menuseq, .menuref { color: #000; } .menuseq b:not(.caret), .menuref { font-weight: inherit; } .menuseq { word-spacing: -0.02em; } .menuseq b.caret { font-size: 1.25em; line-height: 0.8; } .menuseq i.caret { font-weight: bold; text-align: center; width: 0.45em; } b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; } b.button:before { content: "["; padding: 0 3px 0 2px; } b.button:after { content: "]"; padding: 0 2px 0 3px; } p a > code:hover { color: rgba(0, 0, 0, 0.9); } #header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; } #header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; } #header:after, #content:after, #footnotes:after, #footer:after { clear: both; } #content { margin-top: 1.25em; } #content:before { content: none; } #header > h1:first-child { color: rgba(0, 0, 0, 0.85); margin-top: 2.25rem; margin-bottom: 0; } #header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #ddddd8; } #header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #ddddd8; padding-bottom: 8px; } #header .details { border-bottom: 1px solid #ddddd8; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: rgba(0, 0, 0, 0.6); display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; } #header .details span:first-child { margin-left: -0.125em; } #header .details span.email a { color: rgba(0, 0, 0, 0.85); } #header .details br { display: none; } #header .details br + span:before { content: "\00a0\2013\00a0"; } #header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: rgba(0, 0, 0, 0.85); } #header .details br + span#revremark:before { content: "\00a0|\00a0"; } #header #revnumber { text-transform: capitalize; } #header #revnumber:after { content: "\00a0"; } #content > h1:first-child:not([class]) { color: rgba(0, 0, 0, 0.85); border-bottom: 1px solid #ddddd8; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; } #toc { border-bottom: 1px solid #efefed; padding-bottom: 0.5em; } #toc > ul { margin-left: 0.125em; } #toc ul.sectlevel0 > li > a { font-style: italic; } #toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; } #toc ul { font-family: "Roboto", sans-serif; list-style-type: none; } #toc li { line-height: 1.3334; margin-top: 0.3334em; } #toc a { text-decoration: none !important;} #toc a:active { text-decoration: none; } #toctitle { color: #444; font-size: 1.2em; } @media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; } body.toc2 { padding-left: 15em; padding-right: 0; } #toc.toc2 { margin-top: 0 !important; background-color: #f7f7f7; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #efefed; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; } #toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; } #toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; } #toc.toc2 ul ul { margin-left: 0; padding-left: 1em; } #toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; } body.toc2.toc-right { padding-left: 0; padding-right: 15em; } body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #efefed; left: auto; right: 0; } } @media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; } #toc.toc2 { width: 20em; } #toc.toc2 #toctitle { font-size: 1.375em; } #toc.toc2 > ul { font-size: 0.95em; } #toc.toc2 ul ul { padding-left: 1.25em; } body.toc2.toc-right { padding-left: 0; padding-right: 20em; } } #content #toc { border-style: solid; border-width: 1px; border-color: #e0e0dc; margin-bottom: 1.25em; padding: 1.25em; background: #f7f7f7; -webkit-border-radius: 4px; border-radius: 4px; } #content #toc > :first-child { margin-top: 0; } #content #toc > :last-child { margin-bottom: 0; } #footer { max-width: 100%; background-color: #212121; padding: 1.25em; } #footer-text { color: rgba(255, 255, 255, 0.8); line-height: 1.44; } #content { margin-bottom: 0.625em; } .sect1 { padding-bottom: 0.625em; } @media only screen and (min-width: 768px) { #content { margin-bottom: 1.25em; } .sect1 { padding-bottom: 1.25em; } } .sect1:last-child { padding-bottom: 0; } .sect1 + .sect1 { border-top: 1px solid #efefed; } #content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; } #content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; } #content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; } #content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #444; text-decoration: none; font-weight: bold;} #content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #444;} .audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; } .admonitionblock { background-color: #f7f7f7; } .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; font-family: "Roboto", Arial, Helvetica, sans-serif; font-size: 1rem; } table.tableblock.fit-content > caption.title { white-space: nowrap; width: 0; } .paragraph.lead > p, #preamble > .sectionbody > [class="paragraph"]:first-of-type p { font-size: 1.21875em; line-height: 1.6; color: rgba(0, 0, 0, 0.85); } table.tableblock #preamble > .sectionbody > [class="paragraph"]:first-of-type p { font-size: inherit; } .admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; } .admonitionblock > table td.icon { text-align: center; width: 80px; } .admonitionblock > table td.icon img { max-width: none; } .admonitionblock > table td.icon .title { font-weight: bold; font-family: "Roboto", sans-serif; text-transform: uppercase; } .admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #ddddd8; color: rgba(0, 0, 0, 0.6); } .admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; } .exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 4px; border-radius: 4px; } .exampleblock > .content > :first-child { margin-top: 0; } .exampleblock > .content > :last-child { margin-bottom: 0; } .sidebarblock { border-style: solid; border-width: 1px; border-color: #e0e0dc; margin-bottom: 1.25em; padding: 1.25em; background: #f7f7f7; -webkit-border-radius: 4px; border-radius: 4px; } .sidebarblock > :first-child { margin-top: 0; } .sidebarblock > :last-child { margin-bottom: 0; } .sidebarblock > .content > .title { color: #444; margin-top: 0; text-align: center; } .exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; } .literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #f7f7f7; } .sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; } .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { -webkit-border-radius: 4px; border-radius: 4px; word-wrap: break-word; padding: 1em; font-size: 0.8125em; } .literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; } @media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } } @media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } } .literalblock.output pre { color: #f7f7f7; background-color: rgba(0, 0, 0, 0.9); } .listingblock pre.highlightjs { padding: 0; } .listingblock pre.highlightjs > code { padding: 1em; -webkit-border-radius: 4px; border-radius: 4px; } .listingblock pre.prettyprint { border-width: 0; } .listingblock > .content { position: relative; } .listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; } .listingblock:hover code[data-lang]:before { display: block; } .listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; } .listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; } table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; } table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.45; } table.pyhltable td.code { padding-left: .75em; padding-right: 0; } pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #ddddd8; } pre.pygments .lineno { display: inline-block; margin-right: .25em; } table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; } .quoteblock { margin: 0 1em 1.25em 1.5em; display: table; } .quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; } .quoteblock blockquote, .quoteblock blockquote p { color: rgba(0, 0, 0, 0.85); font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; } .quoteblock blockquote { margin: 0; padding: 0; border: 0; } .quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #444; } .quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; } .quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; } .quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid rgba(0, 0, 0, 0.6); } .quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; } .quoteblock .quoteblock blockquote:before { display: none; } .verseblock { margin: 0 1em 1.25em 1em; } .verseblock pre { font-family: "Roboto", sans-serif; font-size: 1.15rem; color: rgba(0, 0, 0, 0.85); font-weight: 300; text-rendering: optimizeLegibility; } .verseblock pre strong { font-weight: 400; } .verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; } .quoteblock .attribution, .verseblock .attribution { font-size: 0.9375em; line-height: 1.45; font-style: italic; } .quoteblock .attribution br, .verseblock .attribution br { display: none; } .quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: rgba(0, 0, 0, 0.6); } .quoteblock.abstract { margin: 0 1em 1.25em 1em; display: block; } .quoteblock.abstract > .title { margin: 0 0 0.375em 0; font-size: 1.15em; text-align: center; } .quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { word-spacing: 0; line-height: 1.6; } .quoteblock.abstract blockquote:before, .quoteblock.abstract p:before { display: none; } table.tableblock { max-width: 100%; border-collapse: separate; } p.tableblock:last-child { margin-bottom: 0; } td.tableblock > .content { margin-bottom: -1.25em; } table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dedede; } table.grid-all > thead > tr > .tableblock, table.grid-all > tbody > tr > .tableblock { border-width: 0 1px 1px 0; } table.grid-all > tfoot > tr > .tableblock { border-width: 1px 1px 0 0; } table.grid-cols > * > tr > .tableblock { border-width: 0 1px 0 0; } table.grid-rows > thead > tr > .tableblock, table.grid-rows > tbody > tr > .tableblock { border-width: 0 0 1px 0; } table.grid-rows > tfoot > tr > .tableblock { border-width: 1px 0 0 0; } table.grid-all > * > tr > .tableblock:last-child, table.grid-cols > * > tr > .tableblock:last-child { border-right-width: 0; } table.grid-all > tbody > tr:last-child > .tableblock, table.grid-all > thead:last-child > tr > .tableblock, table.grid-rows > tbody > tr:last-child > .tableblock, table.grid-rows > thead:last-child > tr > .tableblock { border-bottom-width: 0; } table.frame-all { border-width: 1px; } table.frame-sides { border-width: 0 1px; } table.frame-topbot, table.frame-ends { border-width: 1px 0; } table.stripes-all tr, table.stripes-odd tr:nth-of-type(odd) { background: #f7f7f7; } table.stripes-none tr, table.stripes-odd tr:nth-of-type(even) { background: none; } th.halign-left, td.halign-left { text-align: left; } th.halign-right, td.halign-right { text-align: right; } th.halign-center, td.halign-center { text-align: center; } th.valign-top, td.valign-top { vertical-align: top; } th.valign-bottom, td.valign-bottom { vertical-align: bottom; } th.valign-middle, td.valign-middle { vertical-align: middle; } table thead th, table tfoot th { font-weight: bold; } tbody tr th { display: table-cell; line-height: 1.6; background: #f7f8f7; } tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #212121; font-weight: bold; } p.tableblock > code:only-child { background: none; padding: 0; } p.tableblock { font-size: 1em; } td > div.verse { white-space: pre; } ol { margin-left: 1.75em; } ul li ol { margin-left: 1.5em; } dl dd { margin-left: 1.125em; } dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; } ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; } ul.checklist, ul.none, ol.none, ul.no-bullet, ol.no-bullet, ol.unnumbered, ul.unstyled, ol.unstyled { list-style-type: none; } ul.no-bullet, ol.no-bullet, ol.unnumbered { margin-left: 0.625em; } ul.unstyled, ol.unstyled { margin-left: 0; } ul.checklist { margin-left: 0.625em; } ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1.25em; font-size: 0.8em; position: relative; bottom: 0.125em; } ul.checklist li > p:first-child > input[type="checkbox"]:first-child { margin-right: 0.25em; } ul.inline { display: -ms-flexbox; display: -webkit-box; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; list-style: none; margin: 0 0 0.625em -1.25em; } ul.inline > li { margin-left: 1.25em; } .unstyled dl dt { font-weight: normal; font-style: normal; } ol.arabic { list-style-type: decimal; } ol.decimal { list-style-type: decimal-leading-zero; } ol.loweralpha { list-style-type: lower-alpha; } ol.upperalpha { list-style-type: upper-alpha; } ol.lowerroman { list-style-type: lower-roman; } ol.upperroman { list-style-type: upper-roman; } ol.lowergreek { list-style-type: lower-greek; } .hdlist > table, .colist > table { border: 0; background: none; } .hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; } td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; } td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; } .literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; } .colist td:not([class]):first-child { padding: 0.4em 0.75em 0 0.75em; line-height: 1; vertical-align: top; } .colist td:not([class]):first-child img { max-width: none; } .colist td:not([class]):last-child { padding: 0.25em 0; } .thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; } .imageblock.left { margin: 0.25em 0.625em 1.25em 0; } .imageblock.right { margin: 0.25em 0 1.25em 0.625em; } .imageblock > .title { margin-bottom: 0; } .imageblock.thumb, .imageblock.th { border-width: 6px; } .imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; } .image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; } .image.left { margin-right: 0.625em; } .image.right { margin-left: 0.625em; } a.image { text-decoration: none; display: inline-block; } a.image object { pointer-events: none; } sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; } sup.footnote a, sup.footnoteref a { text-decoration: none; } sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; } #footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; } #footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; } #footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; margin-bottom: 0.2em; } #footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; margin-left: -1.05em; } #footnotes .footnote:last-of-type { margin-bottom: 0; } #content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; } .gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; } .gist .file-data > table td.line-data { width: 99%; } div.unbreakable { page-break-inside: avoid; } .big { font-size: larger; } .small { font-size: smaller; } .underline { text-decoration: underline; } .overline { text-decoration: overline; } .line-through { text-decoration: line-through; } .aqua { color: #00bfbf; } .aqua-background { background-color: #00fafa; } .black { color: black; } .black-background { background-color: black; } .blue { color: #0000bf; } .blue-background { background-color: #0000fa; } .fuchsia { color: #bf00bf; } .fuchsia-background { background-color: #fa00fa; } .gray { color: #606060; } .gray-background { background-color: #7d7d7d; } .green { color: #006000; } .green-background { background-color: #007d00; } .lime { color: #00bf00; } .lime-background { background-color: #00fa00; } .maroon { color: #600000; } .maroon-background { background-color: #7d0000; } .navy { color: #000060; } .navy-background { background-color: #00007d; } .olive { color: #606000; } .olive-background { background-color: #7d7d00; } .purple { color: #600060; } .purple-background { background-color: #7d007d; } .red { color: #bf0000; } .red-background { background-color: #fa0000; } .silver { color: #909090; } .silver-background { background-color: #bcbcbc; } .teal { color: #006060; } .teal-background { background-color: #007d7d; } .white { color: #bfbfbf; } .white-background { background-color: #fafafa; } .yellow { color: #bfbf00; } .yellow-background { background-color: #fafa00; } span.icon > .fa { cursor: default; } a span.icon > .fa { cursor: inherit; } .admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; cursor: default; } .admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #3465a4; } .admonitionblock td.icon .icon-tip:before { content: "\f0eb"; color: #444; } .admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #f57900; } .admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #cc0000; } .admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #cc0000; } .conum[data-value] { display: inline-block; color: #fff !important; background-color: #212121; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Roboto", sans-serif; font-style: normal; font-weight: bold; } .conum[data-value] * { color: #fff !important; } .conum[data-value] + b { display: none; } .conum[data-value]:after { content: attr(data-value); } pre .conum[data-value] { position: relative; top: -0.125em; } b.conum * { color: inherit !important; } .conum:not([data-value]):empty { display: none; } dt, th.tableblock, td.content, div.footnote { text-rendering: optimizeLegibility; } h1, h2, p, td.content, span.alt { letter-spacing: -0.01em; } p strong, td.content strong, div.footnote strong { letter-spacing: -0.005em; } p, blockquote, dt, td.content, span.alt { font-size: 1.0625rem; } p { margin-bottom: 1.25rem; } .sidebarblock p, .sidebarblock dt, .sidebarblock td.content, p.tableblock { font-size: 1em; } .exampleblock > .content { background-color: #fffef7; border-color: #e0e0dc; -webkit-box-shadow: 0 1px 4px #e0e0dc; box-shadow: 0 1px 4px #e0e0dc; } .print-only { display: none !important; } @page { margin: 1.25cm 0.75cm; } @media print { * { -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } html { font-size: 80%; } a { color: inherit !important; text-decoration: underline !important; } a.bare, a[href^="#"], a[href^="mailto:"] { text-decoration: none !important; } a[href^="http:"]:not(.bare):after, a[href^="https:"]:not(.bare):after { content: "(" attr(href) ")"; display: inline-block; font-size: 0.875em; padding-left: 0.25em; } abbr[title]:after { content: " (" attr(title) ")"; } pre, blockquote, tr, img, object, svg { page-break-inside: avoid; } thead { display: table-header-group; } svg { max-width: 100%; } p, blockquote, dt, td.content { font-size: 1em; orphans: 3; widows: 3; } h2, h3, #toctitle, .sidebarblock > .content > .title, #toctitle, .sidebarblock > .content > .title { page-break-after: avoid; } #toc, .sidebarblock, .exampleblock > .content { background: none !important; } #toc { border-bottom: 1px solid #ddddd8 !important; padding-bottom: 0 !important; } body.book #header { text-align: center; } body.book #header > h1:first-child { border: 0 !important; margin: 2.5em 0 1em 0; } body.book #header .details { border: 0 !important; display: block; padding: 0 !important; } body.book #header .details span:first-child { margin-left: 0 !important; } body.book #header .details br { display: block; } body.book #header .details br + span:before { content: none !important; } body.book #toc { border: 0 !important; text-align: left !important; padding: 0 !important; margin: 0 !important; } body.book #toc, body.book #preamble, body.book h1.sect0, body.book .sect1 > h2 { page-break-before: always; } .listingblock code[data-lang]:before { display: block; } #footer { padding: 0 0.9375em; } .hide-on-print { display: none !important; } .print-only { display: block !important; } .hide-for-print { display: none !important; } .show-for-print { display: inherit !important; } } @media print, amzn-kf8 { #header > h1:first-child { margin-top: 1.25rem; } .sect1 { padding: 0 !important; } .sect1 + .sect1 { border: 0; } #footer { background: none; } #footer-text { color: rgba(0, 0, 0, 0.6); font-size: 0.9em; } } @media amzn-kf8 { #header, #content, #footnotes, #footer { padding: 0; } }
cpp_component/3rdparty/boost/libs/beast/doc/html/beast/ref/boost__beast__buffered_read_stream/get_executor.html
qianqians/abelkhan
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>buffered_read_stream::get_executor</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.Beast"> <link rel="up" href="../boost__beast__buffered_read_stream.html" title="buffered_read_stream"> <link rel="prev" href="next_layer/overload2.html" title="buffered_read_stream::next_layer (2 of 2 overloads)"> <link rel="next" href="buffer.html" title="buffered_read_stream::buffer"> </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="next_layer/overload2.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__beast__buffered_read_stream.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="buffer.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="beast.ref.boost__beast__buffered_read_stream.get_executor"></a><a class="link" href="get_executor.html" title="buffered_read_stream::get_executor">buffered_read_stream::get_executor</a> </h5></div></div></div> <p> <a class="indexterm" name="idm17738"></a> </p> <p> Get the executor associated with the object. </p> <h6> <a name="beast.ref.boost__beast__buffered_read_stream.get_executor.h0"></a> <span class="phrase"><a name="beast.ref.boost__beast__buffered_read_stream.get_executor.synopsis"></a></span><a class="link" href="get_executor.html#beast.ref.boost__beast__buffered_read_stream.get_executor.synopsis">Synopsis</a> </h6> <pre class="programlisting"><span class="identifier">executor_type</span> <span class="identifier">get_executor</span><span class="special">();</span> </pre> <h6> <a name="beast.ref.boost__beast__buffered_read_stream.get_executor.h1"></a> <span class="phrase"><a name="beast.ref.boost__beast__buffered_read_stream.get_executor.description"></a></span><a class="link" href="get_executor.html#beast.ref.boost__beast__buffered_read_stream.get_executor.description">Description</a> </h6> <p> This function may be used to obtain the executor object that the stream uses to dispatch handlers for asynchronous operations. </p> <h6> <a name="beast.ref.boost__beast__buffered_read_stream.get_executor.h2"></a> <span class="phrase"><a name="beast.ref.boost__beast__buffered_read_stream.get_executor.return_value"></a></span><a class="link" href="get_executor.html#beast.ref.boost__beast__buffered_read_stream.get_executor.return_value">Return Value</a> </h6> <p> A copy of the executor that stream will use to dispatch handlers. </p> </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 © 2016-2019 Vinnie Falco<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="next_layer/overload2.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__beast__buffered_read_stream.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="buffer.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
students/smandava/session7/html_renderer_output.html
Baumelbi/IntroPython2016
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <title>PythonClass - Session6</title> </head> <body> <h2>Text for header</h2> <p style="text-align: center; font-style: oblique;" clas="intro"> Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text </p> <hr/> <br/> <Ul id="TheList" style="line-height:200%"> <Li> The first item in a list </Li> <Li style="color: red"> This is the second item </Li> <Li> And this is a <a href="http://google.com"> link to google </a> </Li> </Ul> </body> </html>
www/api/module.html
AlexiaChen/ImageMagick_Cmake
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="-//W3C//DTD XHTML 1.1//EN" xml:lang="en" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"></meta> <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4"></meta> <title>ImageMagick: MagickCore, C API for ImageMagick: Loadable Modules</title> <meta http-equiv="content-language" content="en-US"></meta> <meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> <meta http-equiv="reply-to" content="magick-users@imagemagick.org"></meta> <meta name="application-name" content="ImageMagick"></meta> <meta name="description" content="Use ImageMagick to convert, edit, or compose bitmap images in a variety of formats. In addition, resize, rotate, shear, distort or transform images automagically."></meta> <meta name="application-url" content="http://www.imagemagick.org"></meta> <meta name="generator" content="PHP"></meta> <meta name="keywords" content="magickcore, c, api, for, imagemagick:, loadable, modules, ImageMagick, PerlMagick, image processing, OpenMP, software development library, image, photo, software, Magick++, MagickWand"></meta> <meta name="rating" content="GENERAL"></meta> <meta name="robots" content="INDEX, FOLLOW"></meta> <meta name="generator" content="ImageMagick Studio LLC"></meta> <meta name="author" content="ImageMagick Studio LLC"></meta> <meta name="revisit-after" content="2 DAYS"></meta> <meta name="resource-type" content="document"></meta> <meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC"></meta> <meta name="distribution" content="Global"></meta> <link rel="icon" href="../../images/wand.png"></link> <link rel="shortcut icon" href="../../images/wand.ico" type="images/x-icon"></link> <link rel="canonical" href="../../index.html"></link> <link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf"></link> <!-- Add jQuery library --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script> <!-- Add mousewheel plugin (this is optional) --> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script> <!-- Add fancyBox --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/jquery.fancybox.css?v=2.0.6" type="text/css" media="screen"></link> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/jquery.fancybox.pack.js?v=2.0.6"></script> <!-- Optionally add helpers - button, thumbnail and/or media --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.css?v=1.0.2" type="text/css" media="screen"></link> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.2"></script> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.0"></script> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.css?v=2.0.6" type="text/css" media="screen"></link> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.js?v=2.0.6"></script> <script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox(); }); </script> <!-- ImageMagick style --> <style type="text/css" media="all"> @import url("../../www/magick.css"); </style> </head> <body id="www-imagemagick-org"> <div class="titlebar"> <div style="margin: 17px auto; float: left;"> <script type="text/javascript"> <!-- google_ad_client = "pub-3129977114552745"; google_ad_slot = "5439289906"; google_ad_width = 728; google_ad_height = 90; //--> </script> </div> <a href="../../discourse-server"> <img src="../../images/logo.jpg" alt="ImageMagick Logo" style="width: 123px; height: 118px; border: 0px; float: right;"></img></a> <a href="../../index.html"> <img src="../../images/sprite.jpg" alt="ImageMagick Sprite" style="width: 114px; height: 118px; border: 0px; float: right;"></img></a> </div> <div class="westbar"> <div class="menu"> <a title="About ImageMagick" href="../../index.html">About ImageMagick</a> </div> <div class="menu"> <a title="Binary Releases" href="../../www/binary-releases.html">Binary Releases</a> </div> <div class="sub"> <a title="Binary Release: Unix" href="../../www/binary-releases.html#unix">Unix</a> </div> <div class="sub"> <a title="Binary Release: MacOS X" href="../../www/binary-releases.html#macosx">Mac OS X</a> </div> <div class="sub"> <a title="Binary Release: iOS" href="../../www/binary-releases.html#iOS">iOS</a> </div> <div class="sub"> <a title="Binary Release: Windows" href="../../www/binary-releases.html#windows">Windows</a> </div> <div class="sep"></div> <div class="menu"> <a title="Command-line Tools" href="../../www/command-line-tools.html">Command-line Tools</a> </div> <div class="sub"> <a title="Command-line Tools: Processing" href="../../www/command-line-processing.html">Processing</a> </div> <div class="sub"> <a title="Command-line Tools: Options" href="../../www/command-line-options.html">Options</a> </div> <div class="sub"> <a title="Command-line Tools: Usage" href="http://www.imagemagick.org/Usage/">Usage</a> </div> <div class="menu"> <a title="Program Interfaces" href="../../www/api.html">Program Interfaces</a> </div> <div class="sub"> <a title="Program Interface: MagickWand" href="../../www/magick-wand.html">MagickWand</a> </div> <div class="sub"> <a title="Program Interface: MagickCore" href="../../www/magick-core.html">MagickCore</a> </div> <div class="sub"> <a title="Program Interface: PerlMagick" href="../../www/perl-magick.html">PerlMagick</a> </div> <div class="sub"> <a title="Program Interface: Magick++" href="../../www/magick++.html">Magick++</a> </div> <div class="sep"></div> <div class="menu"> <a title="Install from Source" href="../../www/install-source.html">Install from Source</a> </div> <div class="sub"> <a title="Install from Source: Unix" href="../../www/install-source.html#unix">Unix</a> </div> <div class="sub"> <a title="Install from Source: Windows" href="../../www/install-source.html#windows">Windows</a> </div> <div class="menu"> <a title="Resources" href="../../www/resources.html">Resources</a> </div> <div class="menu"> <a title="Architecture" href="../../www/architecture.html">Architecture</a> </div> <div class="menu"> <a title="Download" href="../../www/download.html">Download</a> </div> <div class="sep"></div> <div class="menu"> <a title="Search" href="http://www.imagemagick.org/script/search.php">Search</a> </div> <div class="sep"></div> <div class="menu"> <a title="Site Map" href="../../www/sitemap.html">Site Map</a> </div> <div class="sub"> <a title="Site Map: Links" href="../../www/links.html">Links</a> </div> <div class="sep"></div> <div class="menu"> <a title="Support ImageMagick Development" href="../../www/support.html">Support ImageMagick Development</a> </div> </div> <div class="eastbar"> <div> <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../../index.html"></a></div> <noscript> <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank"> <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" width="93" height="20" border="0"></img></a> </noscript> </div> <div class="main"> <h1>Module Methods</h1> <p class="navigation-index">[<a href="module.html#"></a>]</p> </div> <div id="linkbar"> <span id="linkbar-west"> </span> <span id="linkbar-center"> <a href="../../discourse-server">Discourse Server</a> • <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> • <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> • <a href="http://jqmagick.imagemagick.org/">JqMagick</a> </span> <span id="linkbar-east"> </span> </div> <div class="footer"> <span id="footer-west">© 1999-2014 ImageMagick Studio LLC</span> <span id="footer-east"> <a href="../../www/contact.html">Contact the Wizards</a></span> </div> <div style="clear: both; margin: 0; width: 100%; "></div> </body> </html>
v0.5.0/nvidia/submission/code/translation/pytorch/cutlass/docs/structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSc8e65d97c8f615e98ac2e03f0bcd236e.html
mlperf/training_results_v0.5
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.14"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Cutlass: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" async src="http://cdn.mathjax.org/mathjax/latest/MathJax.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">Cutlass </div> <div id="projectbrief">CUDA Templates for Linear Algebra Subroutines and Solvers</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.14 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;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&amp;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> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacecutlass.html">cutlass</a></li><li class="navelem"><a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html">Load&lt; Scalar_, kAccessSize, Memory_, FragmentElementType::kScalar, Scalar_, 1, 2 &gt;</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">cutlass::Load&lt; Scalar_, kAccessSize, Memory_, FragmentElementType::kScalar, Scalar_, 1, 2 &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html">cutlass::Load&lt; Scalar_, kAccessSize, Memory_, FragmentElementType::kScalar, Scalar_, 1, 2 &gt;</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html#a33f5160c8c038680ba2fe4c98cf036b0">AccessType</a> typedef</td><td class="entry"><a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html">cutlass::Load&lt; Scalar_, kAccessSize, Memory_, FragmentElementType::kScalar, Scalar_, 1, 2 &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html#a4bab8959d29ee868fb6b3e1f9abc04fc">load</a>(AccessType &amp;dst, Scalar_ const *pointer, int offset)</td><td class="entry"><a class="el" href="structcutlass_1_1Load_3_01Scalar___00_01kAccessSize_00_01Memory___00_01FragmentElementType_1_1kSf1f63874ddc1302ed9e60e0478e1a8ad.html">cutlass::Load&lt; Scalar_, kAccessSize, Memory_, FragmentElementType::kScalar, Scalar_, 1, 2 &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Oct 26 2018 14:53:34 for Cutlass by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.14 </small></address> </body> </html>
boost_1_54_0/doc/html/boost_asio/reference/windows__basic_random_access_handle/read_some_at.html
ryancoleman/autodock-vina
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>windows::basic_random_access_handle::read_some_at</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="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../windows__basic_random_access_handle.html" title="windows::basic_random_access_handle"> <link rel="prev" href="operator_eq_.html" title="windows::basic_random_access_handle::operator="> <link rel="next" href="read_some_at/overload1.html" title="windows::basic_random_access_handle::read_some_at (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="operator_eq_.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_random_access_handle.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="read_some_at/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.windows__basic_random_access_handle.read_some_at"></a><a class="link" href="read_some_at.html" title="windows::basic_random_access_handle::read_some_at">windows::basic_random_access_handle::read_some_at</a> </h4></div></div></div> <p> <a class="indexterm" name="idp77166048"></a> Read some data from the handle at the specified offset. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <a class="link" href="../MutableBufferSequence.html" title="Mutable buffer sequence requirements">MutableBufferSequence</a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="read_some_at/overload1.html" title="windows::basic_random_access_handle::read_some_at (1 of 2 overloads)">read_some_at</a><span class="special">(</span> <span class="identifier">uint64_t</span> <span class="identifier">offset</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">MutableBufferSequence</span> <span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="read_some_at/overload1.html" title="windows::basic_random_access_handle::read_some_at (1 of 2 overloads)">more...</a></em></span> <span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <a class="link" href="../MutableBufferSequence.html" title="Mutable buffer sequence requirements">MutableBufferSequence</a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="read_some_at/overload2.html" title="windows::basic_random_access_handle::read_some_at (2 of 2 overloads)">read_some_at</a><span class="special">(</span> <span class="identifier">uint64_t</span> <span class="identifier">offset</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">MutableBufferSequence</span> <span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="read_some_at/overload2.html" title="windows::basic_random_access_handle::read_some_at (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 &#169; 2003-2013 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="operator_eq_.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_random_access_handle.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="read_some_at/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
2.3/docs/Javadoc/org/drip/analytics/output/package-summary.html
tectronics/splinelibrary
<!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) on Mon Jan 13 19:53:36 EST 2014 --> <title>org.drip.analytics.output</title> <meta name="date" content="2014-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="org.drip.analytics.output"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/analytics/holset/package-summary.html">Prev Package</a></li> <li><a href="../../../../org/drip/analytics/period/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/analytics/output/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.drip.analytics.output</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/BasketMeasures.html" title="class in org.drip.analytics.output">BasketMeasures</a></td> <td class="colLast"> <div class="block">BasketMeasures is the place holder for the analytical basket measures, optionally across scenarios.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/BondCouponMeasures.html" title="class in org.drip.analytics.output">BondCouponMeasures</a></td> <td class="colLast"> <div class="block">This class encapsulates the parsimonius but complete set of the cash-flow oriented coupon measures generated out of a full bond analytics run to a given work-out.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/BondRVMeasures.html" title="class in org.drip.analytics.output">BondRVMeasures</a></td> <td class="colLast"> <div class="block">BondRVMeasures encapsulates the comprehensive set of RV measures calculated for the bond to the appropriate exercise: - Workout Information - Price, Yield, and Yield01 - Spread Measures: Asset Swap/Credit/G/I/OAS/PECS/TSY/Z - Basis Measures: Bond Basis, Credit Basis, Yield Basis - Duration Measures: Macaulay/Modified Duration, Convexity</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/BondWorkoutMeasures.html" title="class in org.drip.analytics.output">BondWorkoutMeasures</a></td> <td class="colLast"> <div class="block">BondWorkoutMeasures encapsulates the parsimonius yet complete set of measures generated out of a full bond analytics run to a given work-out.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/ComponentMeasures.html" title="class in org.drip.analytics.output">ComponentMeasures</a></td> <td class="colLast"> <div class="block">ComponentMeasures is the place holder for analytical single component output measures, optionally across scenarios.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/analytics/output/ExerciseInfo.html" title="class in org.drip.analytics.output">ExerciseInfo</a></td> <td class="colLast"> <div class="block">ExerciseInfo is a place-holder for the set of exercise information.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/analytics/holset/package-summary.html">Prev Package</a></li> <li><a href="../../../../org/drip/analytics/period/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/analytics/output/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
venv/bin/doc/html/boost/accumulators/impl/non_coherent_t_idp33781288.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template non_coherent_tail_mean_impl</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_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;"> <link rel="prev" href="coherent_tail_mean_impl.html" title="Struct template coherent_tail_mean_impl"> <link rel="next" href="tail_quantile_impl.html" title="Struct template tail_quantile_impl"> </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="coherent_tail_mean_impl.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="tail_quantile_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.impl.non_coherent_t_idp33781288"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template non_coherent_tail_mean_impl</span></h2> <p>boost::accumulators::impl::non_coherent_tail_mean_impl &#8212; Estimation of the (non-coherent) tail mean based on order statistics (for both left and right tails) </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: &lt;<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;">boost/accumulators/statistics_fwd.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Sample<span class="special">,</span> <span class="keyword">typename</span> LeftRight<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="non_coherent_t_idp33781288.html" title="Struct template non_coherent_tail_mean_impl">non_coherent_tail_mean_impl</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">accumulator_base</span> <span class="special">{</span> <span class="comment">// <a class="link" href="non_coherent_t_idp33781288.html#boost.accumulators.impl.non_coherent_t_idp33781288construct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="non_coherent_t_idp33781288.html#idp33796936-bb"><span class="identifier">non_coherent_tail_mean_impl</span></a><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="non_coherent_t_idp33781288.html#idp33795512-bb">public member functions</a></span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="identifier">result_type</span> <a class="link" href="non_coherent_t_idp33781288.html#idp33795720-bb"><span class="identifier">result</span></a><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp57683464"></a><h2>Description</h2> <p>An estimation of the non-coherent tail mean <span class="inlinemediaobject"><img src="../../../images/accumulators//form_55.png"></span> is given by the mean of the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_58.png"></span> smallest samples (left tail) or the mean of the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_59.png"></span> largest samples (right tail), <span class="inlinemediaobject"><img src="../../../images/accumulators//form_60.png"></span> being the total number of samples and <span class="inlinemediaobject"><img src="../../../images/accumulators//form_45.png"></span> the quantile level:</p> <div class="equation"> <a name="idp57690136"></a><p class="title"><b>Equation&#160;1.14.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators//form_61.png" align="middle"></div></div> </div> <p><br class="equation-break"></p> <div class="equation"> <a name="idp57691768"></a><p class="title"><b>Equation&#160;1.15.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators//form_62.png" align="middle"></div></div> </div> <p><br class="equation-break"></p> <p>It thus requires the caching of at least the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_58.png"></span> smallest or the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_59.png"></span> largest samples.</p> <p> </p> <div class="refsect2"> <a name="idp57696104"></a><h3> <a name="boost.accumulators.impl.non_coherent_t_idp33781288construct-copy-destruct"></a><code class="computeroutput">non_coherent_tail_mean_impl</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><a name="idp33796936-bb"></a><span class="identifier">non_coherent_tail_mean_impl</span><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span></pre></li></ol></div> </div> <div class="refsect2"> <a name="idp57699400"></a><h3> <a name="idp33795512-bb"></a><code class="computeroutput">non_coherent_tail_mean_impl</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="identifier">result_type</span> <a name="idp33795720-bb"></a><span class="identifier">result</span><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span> args<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li></ol></div> </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 &#169; 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="coherent_tail_mean_impl.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="tail_quantile_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
doc/ludumdaregame/game/package-summary.html
sharhar/LWJGL-Engine
<!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_65) on Sat Dec 19 18:48:51 PST 2015 --> <title>game</title> <meta name="date" content="2015-12-19"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <script type="text/javascript" src="../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="game"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../engine/window/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../game/sprites/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../index.html?game/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;game</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../game/Main.html" title="class in game">Main</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../engine/window/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../game/sprites/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../index.html?game/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
fonts/Tables/STIX/STIX/General-Bold-Italic/0370-03FF.html
mathjax/MathJax-dev
<HTML> <HEAD> <TITLE>STIX Font Table for STIXGeneral-Bold-Italic (0370-03FF)</TITLE> <STYLE TYPE="text/css"> .header {font-weight: bold; padding: 3px} .space {width: 2px} .blank {padding: 10} .label {padding: 5; font-family: monospace; text-align: right; font-size: 80%} .NA {padding: 10; background: white; border: solid #F4F4F4 1px} .other {padding: 10; background: #CCCCCC} .hidden {visibility: hidden} .STIX {padding: 10; font-size: 133%; background: #F0F0F0} .STIXGeneral-Bold-Italic {font-family: STIXGeneral; font-style: italic; font-weight: bold;} .caption TD {font-family: monospace; font-size: 80%; text-align: center} .small {font-size: 80%; vertical-align: .15em} .tt {font-family: monospace; margin: 0px -.125em} A {text-decoration: none} .combine {font-family: STIXGeneral} .navigation {position: fixed; top:5; right:0; width:auto} @media print {.navigation {display: none}} </STYLE> </HEAD> <BODY> <BR> <CENTER> <H1>STIXGeneral-Bold-Italic Character Tables</H1> <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="0"> <TR ALIGN="CENTER"><TD CLASS="blank"></TD><TD CLASS="space"></TD><TD CLASS="header" COLSPAN="17"> Greek and Coptic: 0370 - 03FF</TR> <TR CLASS="caption"> <TD CLASS="blank"></TD> <TD CLASS="space"></TD> <TD>0</TD><TD>1</TD><TD>2</TD><TD>3</TD><TD>4</TD><TD>5</TD><TD>6</TD><TD>7</TD> <TD CLASS="space"></TD> <TD>8</TD><TD>9</TD><TD>A</TD><TD>B</TD><TD>C</TD><TD>D</TD><TD>E</TD><TD>F</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">037</TD><TD CLASS="space""></TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="space"></TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="other" TITLE="GREEK QUESTION MARK (0x37E)">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">038</TD><TD CLASS="space""></TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK TONOS (0x384)">&#x00384;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK DIALYTIKA TONOS (0x385)">&#x00385;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER ALPHA WITH TONOS (0x386)">&#x00386;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK ANO TELEIA (0x387)">&#x00387;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER EPSILON WITH TONOS (0x388)">&#x00388;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER ETA WITH TONOS (0x389)">&#x00389;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER IOTA WITH TONOS (0x38A)">&#x0038A;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER OMICRON WITH TONOS (0x38C)">&#x0038C;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER UPSILON WITH TONOS (0x38E)">&#x0038E;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER OMEGA WITH TONOS (0x38F)">&#x0038F;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">039</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS (0x390)">&#x00390;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER ALPHA (0x391)">&#x00391;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER BETA (0x392)">&#x00392;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER GAMMA (0x393)">&#x00393;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER DELTA (0x394)">&#x00394;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER EPSILON (0x395)">&#x00395;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER ZETA (0x396)">&#x00396;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER ETA (0x397)">&#x00397;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER THETA (0x398)">&#x00398;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER IOTA (0x399)">&#x00399;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER KAPPA (0x39A)">&#x0039A;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER LAMDA (0x39B)">&#x0039B;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER MU (0x39C)">&#x0039C;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER NU (0x39D)">&#x0039D;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER XI (0x39E)">&#x0039E;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER OMICRON (0x39F)">&#x0039F;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03A</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER PI (0x3A0)">&#x003A0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER RHO (0x3A1)">&#x003A1;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER SIGMA (0x3A3)">&#x003A3;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER TAU (0x3A4)">&#x003A4;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER UPSILON (0x3A5)">&#x003A5;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER PHI (0x3A6)">&#x003A6;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER CHI (0x3A7)">&#x003A7;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER PSI (0x3A8)">&#x003A8;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER OMEGA (0x3A9)">&#x003A9;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER IOTA WITH DIALYTIKA (0x3AA)">&#x003AA;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA (0x3AB)">&#x003AB;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ALPHA WITH TONOS (0x3AC)">&#x003AC;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER EPSILON WITH TONOS (0x3AD)">&#x003AD;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ETA WITH TONOS (0x3AE)">&#x003AE;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER IOTA WITH TONOS (0x3AF)">&#x003AF;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03B</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS (0x3B0)">&#x003B0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ALPHA (0x3B1)">&#x003B1;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER BETA (0x3B2)">&#x003B2;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER GAMMA (0x3B3)">&#x003B3;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER DELTA (0x3B4)">&#x003B4;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER EPSILON (0x3B5)">&#x003B5;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ZETA (0x3B6)">&#x003B6;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ETA (0x3B7)">&#x003B7;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER THETA (0x3B8)">&#x003B8;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER IOTA (0x3B9)">&#x003B9;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER KAPPA (0x3BA)">&#x003BA;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER LAMDA (0x3BB)">&#x003BB;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER MU (0x3BC)">&#x003BC;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER NU (0x3BD)">&#x003BD;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER XI (0x3BE)">&#x003BE;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER OMICRON (0x3BF)">&#x003BF;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03C</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER PI (0x3C0)">&#x003C0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER RHO (0x3C1)">&#x003C1;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER FINAL SIGMA (0x3C2)">&#x003C2;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER SIGMA (0x3C3)">&#x003C3;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER TAU (0x3C4)">&#x003C4;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER UPSILON (0x3C5)">&#x003C5;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER PHI (0x3C6)">&#x003C6;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER CHI (0x3C7)">&#x003C7;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER PSI (0x3C8)">&#x003C8;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER OMEGA (0x3C9)">&#x003C9;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER IOTA WITH DIALYTIKA (0x3CA)">&#x003CA;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER UPSILON WITH DIALYTIKA (0x3CB)">&#x003CB;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER OMICRON WITH TONOS (0x3CC)">&#x003CC;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER UPSILON WITH TONOS (0x3CD)">&#x003CD;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER OMEGA WITH TONOS (0x3CE)">&#x003CE;</TD> <TD CLASS="NA">&nbsp;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03D</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK BETA SYMBOL (0x3D0)">&#x003D0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK THETA SYMBOL (0x3D1)">&#x003D1;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK UPSILON WITH HOOK SYMBOL (0x3D2)">&#x003D2;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK PHI SYMBOL (0x3D5)">&#x003D5;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK PI SYMBOL (0x3D6)">&#x003D6;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="space"></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LETTER ARCHAIC KOPPA (0x3D8)">&#x003D8;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER ARCHAIC KOPPA (0x3D9)">&#x003D9;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LETTER STIGMA (0x3DA)">&#x003DA;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER STIGMA (0x3DB)">&#x003DB;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LETTER DIGAMMA (0x3DC)">&#x003DC;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER DIGAMMA (0x3DD)">&#x003DD;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LETTER KOPPA (0x3DE)">&#x003DE;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER KOPPA (0x3DF)">&#x003DF;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03E</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LETTER SAMPI (0x3E0)">&#x003E0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK SMALL LETTER SAMPI (0x3E1)">&#x003E1;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="space"></TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> </TR> <TR ALIGN="CENTER"> <TD CLASS="label">03F</TD><TD CLASS="space""></TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK KAPPA SYMBOL (0x3F0)">&#x003F0;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK RHO SYMBOL (0x3F1)">&#x003F1;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK CAPITAL THETA SYMBOL (0x3F4)">&#x003F4;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK LUNATE EPSILON SYMBOL (0x3F5)">&#x003F5;</TD> <TD CLASS="STIX STIXGeneral-Bold-Italic" TITLE="GREEK REVERSED LUNATE EPSILON SYMBOL (0x3F6)">&#x003F6;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="space"></TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> <TD CLASS="NA">&nbsp;</TD> </TR> </TABLE> <p> <DIV CLASS="navigation"> <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" STYLE="width:25.75em"> <TR> <TD COLSPAN="3" ALIGN="CENTER"> <A CLASS="small" HREF="02B0-02FF.html">Spacing Modifier Letters</A><BR><SPAN CLASS="tt">/</SPAN><SPAN CLASS="tt">\</SPAN> </TD> </TR> <TR> <TD STYLE="width:12em" ALIGN="RIGHT"> <A CLASS="small" HREF="../General-Bold/0370-03FF.html">General-Bold</A>&nbsp; <SPAN CLASS="tt">&lt;</SPAN> </TD> <TD STYLE="width:1.75em" ALIGN="CENTER"><A HREF="../index.html">O</A></TD> <TD STYLE="width:12em" ALIGN="LEFT"> <SPAN CLASS="tt">&gt;</SPAN>&nbsp; <A CLASS="small" HREF="../General-Italic/0370-03FF.html">General-Italic</A> </TD> </TR> <TR> <TD COLSPAN="3" ALIGN="CENTER"> <SPAN CLASS="tt">\</SPAN><SPAN CLASS="tt">/</SPAN><BR><A CLASS="small" HREF="0400-04FF.html">Cyrillic</A> </TD> </TR> </TABLE> </DIV> </CENTER> </BODY> </HTML>
docs/_includes/head.html
dennisgove/streaming-expressions
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="{% if page.summary %}{{ page.summary | strip_html | strip_newlines | truncate: 160 }}{% endif %}"> <meta name="keywords" content="{{page.tags}}{% if page.tags %}, {% endif %} {{page.keywords}}"> <title>{{ page.title }} | {{ site.site_title }}</title> <link rel="stylesheet" href="{{ "css/syntax.css" }}"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> <!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">--> <link rel="stylesheet" href="css/modern-business.css"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" href="css/customstyles.css"> <!-- most color styles are extracted out to here --> <link rel="stylesheet" href="css/theme-blue.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script> <script src="{{ "js/jquery.navgoco.min.js" }}"></script> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <!-- Anchor.js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script> <script src="{{ "js/toc.js" }}"></script> <script src="{{ "js/customscripts.js" }}"></script> <link rel="shortcut icon" href="{{ "images/favicon.ico" }}"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.url }}">
docs/api/org/apache/hadoop/mapred/class-use/TaskAttemptContext.html
zhaobj/MyHadoop
<!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_26) on Tue Feb 14 08:16:37 UTC 2012 --> <TITLE> Uses of Class org.apache.hadoop.mapred.TaskAttemptContext (Hadoop 1.0.1 API) </TITLE> <META NAME="date" CONTENT="2012-02-14"> <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.mapred.TaskAttemptContext (Hadoop 1.0.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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/mapred//class-useTaskAttemptContext.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TaskAttemptContext.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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.mapred.TaskAttemptContext</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.mapred"><B>org.apache.hadoop.mapred</B></A></TD> <TD>A software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) parallelly on large clusters (thousands of nodes) built of commodity hardware in a reliable, fault-tolerant manner.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.mapred"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A> in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A> declared as <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A></CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#taskContext">taskContext</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <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="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>OutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/OutputCommitter.html#abortTask(org.apache.hadoop.mapred.TaskAttemptContext)">abortTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;taskContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Discard the task output</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>FileOutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/FileOutputCommitter.html#abortTask(org.apache.hadoop.mapred.TaskAttemptContext)">abortTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;context)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>OutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/OutputCommitter.html#commitTask(org.apache.hadoop.mapred.TaskAttemptContext)">commitTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;taskContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To promote the task's temporary output to final output location The task's output is moved to the job's output directory.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>FileOutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/FileOutputCommitter.html#commitTask(org.apache.hadoop.mapred.TaskAttemptContext)">commitTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;context)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>OutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/OutputCommitter.html#needsTaskCommit(org.apache.hadoop.mapred.TaskAttemptContext)">needsTaskCommit</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;taskContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Check whether task needs a commit</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>FileOutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/FileOutputCommitter.html#needsTaskCommit(org.apache.hadoop.mapred.TaskAttemptContext)">needsTaskCommit</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;context)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>OutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/OutputCommitter.html#setupTask(org.apache.hadoop.mapred.TaskAttemptContext)">setupTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;taskContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets up output for the task.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>FileOutputCommitter.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/FileOutputCommitter.html#setupTask(org.apache.hadoop.mapred.TaskAttemptContext)">setupTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred">TaskAttemptContext</A>&nbsp;context)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/mapred/TaskAttemptContext.html" title="class in org.apache.hadoop.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/mapred//class-useTaskAttemptContext.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TaskAttemptContext.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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 &copy; 2009 The Apache Software Foundation </BODY> </HTML>
docs/html/ref/rrefrestorefrom.html
Kerensky256/Database
<?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="restoreFrom=path attribute" /> <meta content="restoreFrom=path database connection URL attribute" name="DC.subject" /> <meta content="restoreFrom=path database connection URL attribute" name="keywords" /> <meta scheme="URI" name="DC.Relation" content="rrefattrib24612.html" /> <meta content="XHTML" name="DC.Format" /> <meta content="rrefrestorefrom" name="DC.Identifier" /> <meta content="en-us" name="DC.Language" /> <link href="commonltr.css" type="text/css" rel="stylesheet" /> <title>restoreFrom=path attribute</title> </head> <body id="rrefrestorefrom"><a name="rrefrestorefrom"><!-- --></a> <h1 class="topictitle1">restoreFrom=path attribute</h1> <div> <div class="section"><h2 class="sectiontitle">Function</h2> <p>You can specify the <em>restoreFrom=path</em> attribute in the boot time connection URL to restore a database using a full backup from the specified location. If a database with the same name exists in the derby.system.home location, the whole database is deleted, copied from the backup location, and then restarted.</p> <p>The log files are copied to the same location they were in when the backup was taken. The logDevice attribute can be used in conjunction with <em>restoreFrom=path</em> to store logs in a different location.</p> <p>For more information about using this attribute, see "Restoring a database from a backup copy" in the <span><em>Derby Server and Administration Guide</em></span>.</p> </div> <div class="section"><h2 class="sectiontitle">Combining with other attributes</h2> <p>Do not combine this attribute with <em>createFrom</em>, <em>rollForwardRecoveryFrom</em>, or <em>create</em>.</p> </div> <div class="example"><h2 class="sectiontitle">Example</h2> <pre>URL: jdbc:derby:wombat;restoreFrom=d:/backup/wombat</pre> </div> </div> <div> <div class="familylinks"> <div class="parentlink"><strong>Parent topic:</strong> <a href="rrefattrib24612.html" title="Derby allows you to supply a list of attributes to its database connection URL, which is a JDBC feature.">Setting attributes for the database connection URL</a></div> </div> </div> </body> </html>
vendor/Twisted-10.0.0/doc/mail/tutorial/smtpclient/smtpclient.html
sorenh/cc
<?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" xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Twisted Documentation: Twisted Mail Tutorial: Building an SMTP Client from Scratch</title> <link href="../../howto/stylesheet.css" rel="stylesheet" type="text/css"/> </head> <body bgcolor="white"> <h1 class="title">Twisted Mail Tutorial: Building an SMTP Client from Scratch</h1> <div class="toc"><ol><li><a href="#auto0">Introduction</a></li><ul><li><a href="#auto1">SMTP Client 1</a></li><li><a href="#auto2">SMTP Client 2</a></li><li><a href="#auto3">SMTP Client 3</a></li><li><a href="#auto4">SMTP Client 4</a></li><li><a href="#auto5">SMTP Client 5</a></li><li><a href="#auto6">SMTP Client 6</a></li><li><a href="#auto7">SMTP Client 7</a></li><li><a href="#auto8">SMTP Client 8</a></li><li><a href="#auto9">SMTP Client 9</a></li><li><a href="#auto10">SMTP Client 10</a></li><li><a href="#auto11">SMTP Client 11</a></li></ul></ol></div> <div class="content"> <span/> <h2>Introduction<a name="auto0"/></h2> <p>This tutorial will walk you through the creation of an extremely simple SMTP client application. By the time the tutorial is complete, you will understand how to create and start a TCP client speaking the SMTP protocol, have it connect to an appropriate mail exchange server, and transmit a message for delivery.</p> <p>For the majority of this tutorial, <code>twistd</code> will be used to launch the application. Near the end we will explore other possibilities for starting a Twisted application. Until then, make sure that you have <code>twistd</code> installed and conveniently accessible for use in running each of the example <code>.tac</code> files.</p> <h3>SMTP Client 1<a name="auto1"/></h3> <p>The first step is to create <a href="smtpclient-1.tac" shape="rect">the most minimal <code>.tac</code> file</a> possible for use by <code>twistd</code>.</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-keyword">from</span> <span class="py-src-variable">twisted</span>.<span class="py-src-variable">application</span> <span class="py-src-keyword">import</span> <span class="py-src-variable">service</span> </pre> <p>The first line of the <code>.tac</code> file imports <code>twisted.application.service</code>, a module which contains many of the basic <em>service</em> classes and helper functions available in Twisted. In particular, we will be using the <code>Application</code> function to create a new <em>application service</em>. An <em>application service</em> simply acts as a central object on which to store certain kinds of deployment configuration.</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">application</span> = <span class="py-src-variable">service</span>.<span class="py-src-variable">Application</span>(<span class="py-src-string">&quot;SMTP Client Tutorial&quot;</span>) </pre> <p>The second line of the <code>.tac</code> file creates a new <em>application service</em> and binds it to the local name <code>application</code>. <code>twistd</code> requires this local name in each <code>.tac</code> file it runs. It uses various pieces of configuration on the object to determine its behavior. For example, <code>&quot;SMTP Client Tutorial&quot;</code> will be used as the name of the <code>.tap</code> file into which to serialize application state, should it be necessary to do so.</p> <p>That does it for the first example. We now have enough of a <code>.tac</code> file to pass to <code>twistd</code>. If we run <a href="smtpclient-1.tac" shape="rect">smtpclient-1.tac</a> using the <code>twistd</code> command line:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">twistd</span> -<span class="py-src-variable">ny</span> <span class="py-src-variable">smtpclient</span>-<span class="py-src-number">1.</span><span class="py-src-variable">tac</span> </pre> <p>we are rewarded with the following output:</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/mail/tutorial/smtpclient$ twistd -ny smtpclient-1.tac 18:31 EST [-] Log opened. 18:31 EST [-] twistd 2.0.0 (/usr/bin/python2.4 2.4.1) starting up 18:31 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 18:31 EST [-] Loading smtpclient-1.tac... 18:31 EST [-] Loaded. </pre> <p>As we expected, not much is going on. We can shutdown this server by issuing <code>^C</code>:</p> <pre class="shell" xml:space="preserve"> 18:34 EST [-] Received SIGINT, shutting down. 18:34 EST [-] Main loop terminated. 18:34 EST [-] Server Shut Down. exarkun@boson:~/mail/tutorial/smtpclient$ </pre> <h3>SMTP Client 2<a name="auto2"/></h3> <p>The first version of our SMTP client wasn't very interesting. It didn't even establish any TCP connections! The <a href="smtpclient-2.tac" shape="rect">second version</a> will come a little bit closer to that level of complexity. First, we need to import a few more things:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">from</span> <span class="py-src-variable">twisted</span>.<span class="py-src-variable">application</span> <span class="py-src-keyword">import</span> <span class="py-src-variable">internet</span> <span class="py-src-keyword">from</span> <span class="py-src-variable">twisted</span>.<span class="py-src-variable">internet</span> <span class="py-src-keyword">import</span> <span class="py-src-variable">protocol</span> </pre> <p><code>twisted.application.internet</code> is another <em>application service</em> module. It provides services for establishing outgoing connections (as well as creating network servers, though we are not interested in those parts for the moment). <code>twisted.internet.protocol</code> provides base implementations of many of the core Twisted concepts, such as <em>factories</em> and <em>protocols</em>.</p> <p>The next line of <a href="smtpclient-2.tac" shape="rect">smtpclient-2.tac</a> instantiates a new <em>client factory</em>.</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientFactory</span> = <span class="py-src-variable">protocol</span>.<span class="py-src-variable">ClientFactory</span>() </pre> <p><em>Client factories</em> are responsible for constructing <em>protocol instances</em> whenever connections are established. They may be required to create just one instance, or many instances if many different connections are established, or they may never be required to create one at all, if no connection ever manages to be established.</p> <p>Now that we have a client factory, we'll need to hook it up to the network somehow. The next line of <code>smtpclient-2.tac</code> does just that:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientService</span> = <span class="py-src-variable">internet</span>.<span class="py-src-variable">TCPClient</span>(<span class="py-src-variable">None</span>, <span class="py-src-variable">None</span>, <span class="py-src-variable">smtpClientFactory</span>) </pre> <p>We'll ignore the first two arguments to <code>internet.TCPClient</code> for the moment and instead focus on the third. <code>TCPClient</code> is one of those <em>application service</em> classes. It creates TCP connections to a specified address and then uses its third argument, a <em>client factory</em>, to get a <em>protocol instance</em>. It then associates the TCP connection with the protocol instance and gets out of the way.</p> <p>We can try to run <code>smtpclient-2.tac</code> the same way we ran <code>smtpclient-1.tac</code>, but the results might be a little disappointing:</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/mail/tutorial/smtpclient$ twistd -ny smtpclient-2.tac 18:55 EST [-] Log opened. 18:55 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 18:55 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 18:55 EST [-] Loading smtpclient-2.tac... 18:55 EST [-] Loaded. 18:55 EST [-] Starting factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e46c&gt; 18:55 EST [-] Traceback (most recent call last): File &quot;twisted/scripts/twistd.py&quot;, line 187, in runApp app.runReactorWithLogging(config, oldstdout, oldstderr) File &quot;twisted/application/app.py&quot;, line 128, in runReactorWithLogging reactor.run() File &quot;twisted/internet/posixbase.py&quot;, line 200, in run self.mainLoop() File &quot;twisted/internet/posixbase.py&quot;, line 208, in mainLoop self.runUntilCurrent() --- &lt;exception caught here&gt; --- File &quot;twisted/internet/base.py&quot;, line 533, in runUntilCurrent call.func(*call.args, **call.kw) File &quot;twisted/internet/tcp.py&quot;, line 489, in resolveAddress if abstract.isIPAddress(self.addr[0]): File &quot;twisted/internet/abstract.py&quot;, line 315, in isIPAddress parts = string.split(addr, '.') File &quot;/usr/lib/python2.4/string.py&quot;, line 292, in split return s.split(sep, maxsplit) exceptions.AttributeError: 'NoneType' object has no attribute 'split' 18:55 EST [-] Received SIGINT, shutting down. 18:55 EST [-] Main loop terminated. 18:55 EST [-] Server Shut Down. exarkun@boson:~/mail/tutorial/smtpclient$ </pre> <p>What happened? Those first two arguments to <code>TCPClient</code> turned out to be important after all. We'll get to them in the next example.</p> <h3>SMTP Client 3<a name="auto3"/></h3> <p>Version three of our SMTP client only changes one thing. The line from version two:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientService</span> = <span class="py-src-variable">internet</span>.<span class="py-src-variable">TCPClient</span>(<span class="py-src-variable">None</span>, <span class="py-src-variable">None</span>, <span class="py-src-variable">smtpClientFactory</span>) </pre> <p>has its first two arguments changed from <code>None</code> to something with a bit more meaning:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientService</span> = <span class="py-src-variable">internet</span>.<span class="py-src-variable">TCPClient</span>(<span class="py-src-string">'localhost'</span>, <span class="py-src-number">25</span>, <span class="py-src-variable">smtpClientFactory</span>) </pre> <p>This directs the client to connect to <em>localhost</em> on port <em>25</em>. This isn't the address we want ultimately, but it's a good place-holder for the time being. We can run <a href="smtpclient-3.tac" shape="rect">smtpclient-3.tac</a> and see what this change gets us:</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/mail/tutorial/smtpclient$ twistd -ny smtpclient-3.tac 19:10 EST [-] Log opened. 19:10 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 19:10 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 19:10 EST [-] Loading smtpclient-3.tac... 19:10 EST [-] Loaded. 19:10 EST [-] Starting factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e48c&gt; 19:10 EST [-] Enabling Multithreading. 19:10 EST [Uninitialized] Traceback (most recent call last): File &quot;twisted/python/log.py&quot;, line 56, in callWithLogger return callWithContext({&quot;system&quot;: lp}, func, *args, **kw) File &quot;twisted/python/log.py&quot;, line 41, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 52, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 31, in callWithContext return func(*args,**kw) --- &lt;exception caught here&gt; --- File &quot;twisted/internet/selectreactor.py&quot;, line 139, in _doReadOrWrite why = getattr(selectable, method)() File &quot;twisted/internet/tcp.py&quot;, line 543, in doConnect self._connectDone() File &quot;twisted/internet/tcp.py&quot;, line 546, in _connectDone self.protocol = self.connector.buildProtocol(self.getPeer()) File &quot;twisted/internet/base.py&quot;, line 641, in buildProtocol return self.factory.buildProtocol(addr) File &quot;twisted/internet/protocol.py&quot;, line 99, in buildProtocol p = self.protocol() exceptions.TypeError: 'NoneType' object is not callable 19:10 EST [Uninitialized] Stopping factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e48c&gt; 19:10 EST [-] Received SIGINT, shutting down. 19:10 EST [-] Main loop terminated. 19:10 EST [-] Server Shut Down. exarkun@boson:~/mail/tutorial/smtpclient$ </pre> <p>A meagre amount of progress, but the service still raises an exception. This time, it's because we haven't specified a <em>protocol class</em> for the factory to use. We'll do that in the next example.</p> <h3>SMTP Client 4<a name="auto4"/></h3> <p>In the previous example, we ran into a problem because we hadn't set up our <em>client factory's</em> <em>protocol</em> attribute correctly (or at all). <code>ClientFactory.buildProtocol</code> is the method responsible for creating a <em>protocol instance</em>. The default implementation calls the factory's <code>protocol</code> attribute, adds itself as an attribute named <code>factory</code> to the resulting instance, and returns it. In <a href="smtpclient-4.tac" shape="rect">smtpclient-4.tac</a>, we'll correct the oversight that caused the traceback in smtpclient-3.tac:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientFactory</span>.<span class="py-src-variable">protocol</span> = <span class="py-src-variable">protocol</span>.<span class="py-src-variable">Protocol</span> </pre> <p>Running this version of the client, we can see the output is once again traceback free:</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/doc/mail/tutorial/smtpclient$ twistd -ny smtpclient-4.tac 19:29 EST [-] Log opened. 19:29 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 19:29 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 19:29 EST [-] Loading smtpclient-4.tac... 19:29 EST [-] Loaded. 19:29 EST [-] Starting factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e4ac&gt; 19:29 EST [-] Enabling Multithreading. 19:29 EST [-] Received SIGINT, shutting down. 19:29 EST [Protocol,client] Stopping factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e4ac&gt; 19:29 EST [-] Main loop terminated. 19:29 EST [-] Server Shut Down. exarkun@boson:~/doc/mail/tutorial/smtpclient$ </pre> <p>But what does this mean? <code>twisted.internet.protocol.Protocol</code> is the base <em>protocol</em> implementation. For those familiar with the classic UNIX network services, it is equivalent to the <em>discard</em> service. It never produces any output and it discards all its input. Not terribly useful, and certainly nothing like an SMTP client. Let's see how we can improve this in the next example.</p> <h3>SMTP Client 5<a name="auto5"/></h3> <p>In <a href="smtpclient-5.tac" shape="rect">smtpclient-5.tac</a>, we will begin to use Twisted's SMTP protocol implementation for the first time. We'll make the obvious change, simply swapping out <code>twisted.internet.protocol.Protocol</code> in favor of <code>twisted.mail.smtp.ESMTPClient</code>. Don't worry about the <em>E</em> in <em>ESMTP</em>. It indicates we're actually using a newer version of the SMTP protocol. There is an <code>SMTPClient</code> in Twisted, but there's essentially no reason to ever use it.</p> <p>smtpclient-5.tac adds a new import:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-keyword">from</span> <span class="py-src-variable">twisted</span>.<span class="py-src-variable">mail</span> <span class="py-src-keyword">import</span> <span class="py-src-variable">smtp</span> </pre> <p>All of the mail related code in Twisted exists beneath the <code>twisted.mail</code> package. More specifically, everything having to do with the SMTP protocol implementation is defined in the <code>twisted.mail.smtp</code> module.</p> <p>Next we remove a line we added in smtpclient-4.tac:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientFactory</span>.<span class="py-src-variable">protocol</span> = <span class="py-src-variable">protocol</span>.<span class="py-src-variable">Protocol</span> </pre> <p>And add a similar one in its place:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientFactory</span>.<span class="py-src-variable">protocol</span> = <span class="py-src-variable">smtp</span>.<span class="py-src-variable">ESMTPClient</span> </pre> <p>Our client factory is now using a protocol implementation which behaves as an SMTP client. What happens when we try to run this version?</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/doc/mail/tutorial/smtpclient$ twistd -ny smtpclient-5.tac 19:42 EST [-] Log opened. 19:42 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 19:42 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 19:42 EST [-] Loading smtpclient-5.tac... 19:42 EST [-] Loaded. 19:42 EST [-] Starting factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e54c&gt; 19:42 EST [-] Enabling Multithreading. 19:42 EST [Uninitialized] Traceback (most recent call last): File &quot;twisted/python/log.py&quot;, line 56, in callWithLogger return callWithContext({&quot;system&quot;: lp}, func, *args, **kw) File &quot;twisted/python/log.py&quot;, line 41, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 52, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 31, in callWithContext return func(*args,**kw) --- &lt;exception caught here&gt; --- File &quot;twisted/internet/selectreactor.py&quot;, line 139, in _doReadOrWrite why = getattr(selectable, method)() File &quot;twisted/internet/tcp.py&quot;, line 543, in doConnect self._connectDone() File &quot;twisted/internet/tcp.py&quot;, line 546, in _connectDone self.protocol = self.connector.buildProtocol(self.getPeer()) File &quot;twisted/internet/base.py&quot;, line 641, in buildProtocol return self.factory.buildProtocol(addr) File &quot;twisted/internet/protocol.py&quot;, line 99, in buildProtocol p = self.protocol() exceptions.TypeError: __init__() takes at least 2 arguments (1 given) 19:42 EST [Uninitialized] Stopping factory &lt;twisted.internet.protocol.ClientFactory instance at 0xb791e54c&gt; 19:43 EST [-] Received SIGINT, shutting down. 19:43 EST [-] Main loop terminated. 19:43 EST [-] Server Shut Down. exarkun@boson:~/doc/mail/tutorial/smtpclient$ </pre> <p>Oops, back to getting a traceback. This time, the default implementation of <code>buildProtocol</code> seems no longer to be sufficient. It instantiates the protocol with no arguments, but <code>ESMTPClient</code> wants at least one argument. In the next version of the client, we'll override <code>buildProtocol</code> to fix this problem.</p> <h3>SMTP Client 6<a name="auto6"/></h3> <p><a href="smtpclient-6.tac" shape="rect">smtpclient-6.tac</a> introduces a <code>twisted.internet.protocol.ClientFactory</code> subclass with an overridden <code>buildProtocol</code> method to overcome the problem encountered in the previous example.</p> <pre class="python"><p class="py-linenumber">1 2 3 4 5 </p><span class="py-src-keyword">class</span> <span class="py-src-identifier">SMTPClientFactory</span>(<span class="py-src-parameter">protocol</span>.<span class="py-src-parameter">ClientFactory</span>): <span class="py-src-variable">protocol</span> = <span class="py-src-variable">smtp</span>.<span class="py-src-variable">ESMTPClient</span> <span class="py-src-keyword">def</span> <span class="py-src-identifier">buildProtocol</span>(<span class="py-src-parameter">self</span>, <span class="py-src-parameter">addr</span>): <span class="py-src-keyword">return</span> <span class="py-src-variable">self</span>.<span class="py-src-variable">protocol</span>(<span class="py-src-variable">secret</span>=<span class="py-src-variable">None</span>, <span class="py-src-variable">identity</span>=<span class="py-src-string">'example.com'</span>) </pre> <p>The overridden method does almost the same thing as the base implementation: the only change is that it passes values for two arguments to <code>twisted.mail.smtp.ESMTPClient</code>'s initializer. The <code>secret</code> argument is used for SMTP authentication (which we will not attempt yet). The <code>identity</code> argument is used as a to identify ourselves Another minor change to note is that the <code>protocol</code> attribute is now defined in the class definition, rather than tacked onto an instance after one is created. This means it is a class attribute, rather than an instance attribute, now, which makes no difference as far as this example is concerned. There are circumstances in which the difference is important: be sure you understand the implications of each approach when creating your own factories.</p> <p>One other change is required: instead of instantiating <code>twisted.internet.protocol.ClientFactory</code>, we will now instantiate <code>SMTPClientFactory</code>:</p> <pre class="python"><p class="py-linenumber">1 </p><span class="py-src-variable">smtpClientFactory</span> = <span class="py-src-variable">SMTPClientFactory</span>() </pre> <p>Running this version of the code, we observe that the code <strong>still</strong> isn't quite traceback-free.</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/doc/mail/tutorial/smtpclient$ twistd -ny smtpclient-6.tac 21:17 EST [-] Log opened. 21:17 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 21:17 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 21:17 EST [-] Loading smtpclient-6.tac... 21:17 EST [-] Loaded. 21:17 EST [-] Starting factory &lt;__builtin__.SMTPClientFactory instance at 0xb77fd68c&gt; 21:17 EST [-] Enabling Multithreading. 21:17 EST [ESMTPClient,client] Traceback (most recent call last): File &quot;twisted/python/log.py&quot;, line 56, in callWithLogger return callWithContext({&quot;system&quot;: lp}, func, *args, **kw) File &quot;twisted/python/log.py&quot;, line 41, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 52, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File &quot;twisted/python/context.py&quot;, line 31, in callWithContext return func(*args,**kw) --- &lt;exception caught here&gt; --- File &quot;twisted/internet/selectreactor.py&quot;, line 139, in _doReadOrWrite why = getattr(selectable, method)() File &quot;twisted/internet/tcp.py&quot;, line 351, in doRead return self.protocol.dataReceived(data) File &quot;twisted/protocols/basic.py&quot;, line 221, in dataReceived why = self.lineReceived(line) File &quot;twisted/mail/smtp.py&quot;, line 1039, in lineReceived why = self._okresponse(self.code,'\n'.join(self.resp)) File &quot;twisted/mail/smtp.py&quot;, line 1281, in esmtpState_serverConfig self.tryTLS(code, resp, items) File &quot;twisted/mail/smtp.py&quot;, line 1294, in tryTLS self.authenticate(code, resp, items) File &quot;twisted/mail/smtp.py&quot;, line 1343, in authenticate self.smtpState_from(code, resp) File &quot;twisted/mail/smtp.py&quot;, line 1062, in smtpState_from self._from = self.getMailFrom() File &quot;twisted/mail/smtp.py&quot;, line 1137, in getMailFrom raise NotImplementedError exceptions.NotImplementedError: 21:17 EST [ESMTPClient,client] Stopping factory &lt;__builtin__.SMTPClientFactory instance at 0xb77fd68c&gt; 21:17 EST [-] Received SIGINT, shutting down. 21:17 EST [-] Main loop terminated. 21:17 EST [-] Server Shut Down. exarkun@boson:~/doc/mail/tutorial/smtpclient$ </pre> <p>What we have accomplished with this iteration of the example is to navigate far enough into an SMTP transaction that Twisted is now interested in calling back to application-level code to determine what its next step should be. In the next example, we'll see how to provide that information to it.</p> <h3>SMTP Client 7<a name="auto7"/></h3> <p>SMTP Client 7 is the first version of our SMTP client which actually includes message data to transmit. For simplicity's sake, the message is defined as part of a new class. In a useful program which sent email, message data might be pulled in from the filesystem, a database, or be generated based on user-input. <a href="smtpclient-7.tac" shape="rect">smtpclient-7.tac</a>, however, defines a new class, <code>SMTPTutorialClient</code>, with three class attributes (<code>mailFrom</code>, <code>mailTo</code>, and <code>mailData</code>):</p> <pre class="python"><p class="py-linenumber"> 1 2 3 4 5 6 7 8 9 10 11 </p><span class="py-src-keyword">class</span> <span class="py-src-identifier">SMTPTutorialClient</span>(<span class="py-src-parameter">smtp</span>.<span class="py-src-parameter">ESMTPClient</span>): <span class="py-src-variable">mailFrom</span> = <span class="py-src-string">&quot;tutorial_sender@example.com&quot;</span> <span class="py-src-variable">mailTo</span> = <span class="py-src-string">&quot;tutorial_recipient@example.net&quot;</span> <span class="py-src-variable">mailData</span> = <span class="py-src-string">'''\ Date: Fri, 6 Feb 2004 10:14:39 -0800 From: Tutorial Guy &lt;tutorial_sender@example.com&gt; To: Tutorial Gal &lt;tutorial_recipient@example.net&gt; Subject: Tutorate! Hello, how are you, goodbye. '''</span> </pre> <p>This statically defined data is accessed later in the class definition by three of the methods which are part of the <em>SMTPClient callback API</em>. Twisted expects each of the three methods below to be defined and to return an object with a particular meaning. First, <code>getMailFrom</code>:</p> <pre class="python"><p class="py-linenumber">1 2 3 4 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailFrom</span>(<span class="py-src-parameter">self</span>): <span class="py-src-variable">result</span> = <span class="py-src-variable">self</span>.<span class="py-src-variable">mailFrom</span> <span class="py-src-variable">self</span>.<span class="py-src-variable">mailFrom</span> = <span class="py-src-variable">None</span> <span class="py-src-keyword">return</span> <span class="py-src-variable">result</span> </pre> <p>This method is called to determine the <em>reverse-path</em>, otherwise known as the <em>envelope from</em>, of the message. This value will be used when sending the <code>MAIL FROM</code> SMTP command. The method must return a string which conforms to the <a href="http://www.faqs.org/rfcs/rfc2821.html" shape="rect">RFC 2821</a> definition of a <em>reverse-path</em>. In simpler terms, it should be a string like <code>&quot;alice@example.com&quot;</code>. Only one <em>envelope from</em> is allowed by the SMTP protocol, so it cannot be a list of strings or a comma separated list of addresses. Our implementation of <code>getMailFrom</code> does a little bit more than just return a string; we'll get back to this in a little bit.</p> <p>The next method is <code>getMailTo</code>:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailTo</span>(<span class="py-src-parameter">self</span>): <span class="py-src-keyword">return</span> [<span class="py-src-variable">self</span>.<span class="py-src-variable">mailTo</span>] </pre> <p><code>getMailTo</code> is similar to <code>getMailFrom</code>. It returns one or more RFC 2821 addresses (this time a <em>forward-path</em>, or <em>envelope to</em>). Since SMTP allows multiple recipients, <code>getMailTo</code> returns a list of these addresses. The list must contain at least one address, and even if there is exactly one recipient, it must still be in a list.</p> <p>The final callback we will define to provide information to Twisted is <code>getMailData</code>:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailData</span>(<span class="py-src-parameter">self</span>): <span class="py-src-keyword">return</span> <span class="py-src-variable">StringIO</span>.<span class="py-src-variable">StringIO</span>(<span class="py-src-variable">self</span>.<span class="py-src-variable">mailData</span>) </pre> <p>This one is quite simple as well: it returns a file or a file-like object which contains the message contents. In our case, we return a <code>StringIO</code> since we already have a string containing our message. If the contents of the file returned by <code>getMailData</code> span multiple lines (as email messages often do), the lines should be <code>\n</code> delimited (as they would be when opening a text file in the <code>&quot;rt&quot;</code> mode): necessary newline translation will be performed by <code>SMTPClient</code> automatically.</p> <p>There is one more new callback method defined in smtpclient-7.tac. This one isn't for providing information about the messages to Twisted, but for Twisted to provide information about the success or failure of the message transmission to the application:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">sentMail</span>(<span class="py-src-parameter">self</span>, <span class="py-src-parameter">code</span>, <span class="py-src-parameter">resp</span>, <span class="py-src-parameter">numOk</span>, <span class="py-src-parameter">addresses</span>, <span class="py-src-parameter">log</span>): <span class="py-src-keyword">print</span> <span class="py-src-string">'Sent'</span>, <span class="py-src-variable">numOk</span>, <span class="py-src-string">'messages'</span> </pre> <p>Each of the arguments to <code>sentMail</code> provides some information about the success or failure of the message transmission transaction. <code>code</code> is the response code from the ultimate command. For successful transactions, it will be 250. For transient failures (those which should be retried), it will be between 400 and 499, inclusive. For permanent failures (this which will never work, no matter how many times you retry them), it will be between 500 and 599.</p> <h3>SMTP Client 8<a name="auto8"/></h3> <p>Thus far we have succeeded in creating a Twisted client application which starts up, connects to a (possibly) remote host, transmits some data, and disconnects. Notably missing, however, is application shutdown. Hitting ^C is fine during development, but it's not exactly a long-term solution. Fortunately, programmatic shutdown is extremely simple. <a href="smtpclient-8.tac" shape="rect">smtpclient-8.tac</a> extends <code>sentMail</code> with these two lines:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">from</span> <span class="py-src-variable">twisted</span>.<span class="py-src-variable">internet</span> <span class="py-src-keyword">import</span> <span class="py-src-variable">reactor</span> <span class="py-src-variable">reactor</span>.<span class="py-src-variable">stop</span>() </pre> <p>The <code>stop</code> method of the reactor causes the main event loop to exit, allowing a Twisted server to shut down. With this version of the example, we see that the program actually terminates after sending the message, without user-intervention:</p> <pre class="shell" xml:space="preserve"> exarkun@boson:~/doc/mail/tutorial/smtpclient$ twistd -ny smtpclient-8.tac 19:52 EST [-] Log opened. 19:52 EST [-] twistd SVN-Trunk (/usr/bin/python2.4 2.4.1) starting up 19:52 EST [-] reactor class: twisted.internet.selectreactor.SelectReactor 19:52 EST [-] Loading smtpclient-8.tac... 19:52 EST [-] Loaded. 19:52 EST [-] Starting factory &lt;__builtin__.SMTPClientFactory instance at 0xb791beec&gt; 19:52 EST [-] Enabling Multithreading. 19:52 EST [SMTPTutorialClient,client] Sent 1 messages 19:52 EST [SMTPTutorialClient,client] Stopping factory &lt;__builtin__.SMTPClientFactory instance at 0xb791beec&gt; 19:52 EST [-] Main loop terminated. 19:52 EST [-] Server Shut Down. exarkun@boson:~/doc/mail/tutorial/smtpclient$ </pre> <h3>SMTP Client 9<a name="auto9"/></h3> <p>One task remains to be completed in this tutorial SMTP client: instead of always sending mail through a well-known host, we will look up the mail exchange server for the recipient address and try to deliver the message to that host.</p> <p>In <a href="smtpclient-9.tac" shape="rect">smtpclient-9.tac</a>, we'll take the first step towards this feature by defining a function which returns the mail exchange host for a particular domain:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailExchange</span>(<span class="py-src-parameter">host</span>): <span class="py-src-keyword">return</span> <span class="py-src-string">'localhost'</span> </pre> <p>Obviously this doesn't return the correct mail exchange host yet (in fact, it returns the exact same host we have been using all along), but pulling out the logic for determining which host to connect to into a function like this is the first step towards our ultimate goal. Now that we have <code>getMailExchange</code>, we'll call it when constructing our <code>TCPClient</code> service:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-variable">smtpClientService</span> = <span class="py-src-variable">internet</span>.<span class="py-src-variable">TCPClient</span>( <span class="py-src-variable">getMailExchange</span>(<span class="py-src-string">'example.net'</span>), <span class="py-src-number">25</span>, <span class="py-src-variable">smtpClientFactory</span>) </pre> <p>We'll expand on the definition of <code>getMailExchange</code> in the next example.</p> <h3>SMTP Client 10<a name="auto10"/></h3> <p>In the previous example we defined <code>getMailExchange</code> to return a string representing the mail exchange host for a particular domain. While this was a step in the right direction, it turns out not to be a very big one. Determining the mail exchange host for a particular domain is going to involve network traffic (specifically, some DNS requests). These might take an arbitrarily large amount of time, so we need to introduce a <code>Deferred</code> to represent the result of <code>getMailExchange</code>. <a href="smtpclient-10.tac" shape="rect">smtpclient-10.tac</a> redefines it thusly:</p> <pre class="python"><p class="py-linenumber">1 2 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailExchange</span>(<span class="py-src-parameter">host</span>): <span class="py-src-keyword">return</span> <span class="py-src-variable">defer</span>.<span class="py-src-variable">succeed</span>(<span class="py-src-string">'localhost'</span>) </pre> <p><code>defer.succeed</code> is a function which creates a new <code>Deferred</code> which already has a result, in this case <code>'localhost'</code>. Now we need to adjust our <code>TCPClient</code>-constructing code to expect and properly handle this <code>Deferred</code>:</p> <pre class="python"><p class="py-linenumber">1 2 3 4 5 6 7 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">cbMailExchange</span>(<span class="py-src-parameter">exchange</span>): <span class="py-src-variable">smtpClientFactory</span> = <span class="py-src-variable">SMTPClientFactory</span>() <span class="py-src-variable">smtpClientService</span> = <span class="py-src-variable">internet</span>.<span class="py-src-variable">TCPClient</span>(<span class="py-src-variable">exchange</span>, <span class="py-src-number">25</span>, <span class="py-src-variable">smtpClientFactory</span>) <span class="py-src-variable">smtpClientService</span>.<span class="py-src-variable">setServiceParent</span>(<span class="py-src-variable">application</span>) <span class="py-src-variable">getMailExchange</span>(<span class="py-src-string">'example.net'</span>).<span class="py-src-variable">addCallback</span>(<span class="py-src-variable">cbMailExchange</span>) </pre> <p>An in-depth exploration of <code>Deferred</code>s is beyond the scope of this document. For such a look, see the <a href="../../../core/howto/defer.html" shape="rect">Deferred Reference</a>. However, in brief, what this version of the code does is to delay the creation of the <code>TCPClient</code> until the <code>Deferred</code> returned by <code>getMailExchange</code> fires. Once it does, we proceed normally through the creation of our <code>SMTPClientFactory</code> and <code>TCPClient</code>, as well as set the <code>TCPClient</code>'s service parent, just as we did in the previous examples.</p> <h3>SMTP Client 11<a name="auto11"/></h3> <p>At last we're ready to perform the mail exchange lookup. We do this by calling on an object provided specifically for this task, <code>twisted.mail.relaymanager.MXCalculator</code>:</p> <pre class="python"><p class="py-linenumber">1 2 3 4 </p><span class="py-src-keyword">def</span> <span class="py-src-identifier">getMailExchange</span>(<span class="py-src-parameter">host</span>): <span class="py-src-keyword">def</span> <span class="py-src-identifier">cbMX</span>(<span class="py-src-parameter">mxRecord</span>): <span class="py-src-keyword">return</span> <span class="py-src-variable">str</span>(<span class="py-src-variable">mxRecord</span>.<span class="py-src-variable">exchange</span>) <span class="py-src-keyword">return</span> <span class="py-src-variable">relaymanager</span>.<span class="py-src-variable">MXCalculator</span>().<span class="py-src-variable">getMX</span>(<span class="py-src-variable">host</span>).<span class="py-src-variable">addCallback</span>(<span class="py-src-variable">cbMX</span>) </pre> <p>Because <code>getMX</code> returns a <code>Record_MX</code> object rather than a string, we do a little bit of post-processing to get the results we want. We have already converted the rest of the tutorial application to expect a <code>Deferred</code> from <code>getMailExchange</code>, so no further changes are required. <a href="smtpclient-11.tac" shape="rect">smtpclient-11.tac</a> completes this tutorial by being able to both look up the mail exchange host for the recipient domain, connect to it, complete an SMTP transaction, report its results, and finally shut down the reactor.</p> </div> <p><a href="../../howto/index.html">Index</a></p> <span class="version">Version: 10.0.0</span> </body> </html>
docs/apidocs/org/apache/flume/sink/class-use/AbstractSink.html
wangchuande/apache-flume-1.7.0
<!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_80) on Wed Oct 12 20:49:57 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.flume.sink.AbstractSink (Apache Flume 1.7.0 API)</title> <meta name="date" content="2016-10-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="Uses of Class org.apache.flume.sink.AbstractSink (Apache Flume 1.7.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/flume/sink/class-use/AbstractSink.html" target="_top">Frames</a></li> <li><a href="AbstractSink.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.flume.sink.AbstractSink" class="title">Uses of Class<br>org.apache.flume.sink.AbstractSink</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.flume.sink">org.apache.flume.sink</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.flume.sink.elasticsearch">org.apache.flume.sink.elasticsearch</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.flume.sink.hbase">org.apache.flume.sink.hbase</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.flume.sink.hdfs">org.apache.flume.sink.hdfs</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.flume.sink.hive">org.apache.flume.sink.hive</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.flume.sink.irc">org.apache.flume.sink.irc</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.flume.sink.kafka">org.apache.flume.sink.kafka</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.flume.sink.kite">org.apache.flume.sink.kite</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.flume.sink.solr.morphline">org.apache.flume.sink.solr.morphline</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.flume.sink"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/package-summary.html">org.apache.flume.sink</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/package-summary.html">org.apache.flume.sink</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/AbstractRpcSink.html" title="class in org.apache.flume.sink">AbstractRpcSink</a></strong></code> <div class="block">This sink provides the basic RPC functionality for Flume.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/AvroSink.html" title="class in org.apache.flume.sink">AvroSink</a></strong></code> <div class="block"> A <a href="../../../../../org/apache/flume/Sink.html" title="interface in org.apache.flume"><code>Sink</code></a> implementation that can send events to an RPC server (such as Flume's <a href="../../../../../org/apache/flume/source/AvroSource.html" title="class in org.apache.flume.source"><code>AvroSource</code></a>).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/LoggerSink.html" title="class in org.apache.flume.sink">LoggerSink</a></strong></code> <div class="block"> A <a href="../../../../../org/apache/flume/Sink.html" title="interface in org.apache.flume"><code>Sink</code></a> implementation that logs all events received at the INFO level to the <tt>org.apache.flume.sink.LoggerSink</tt> logger.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/NullSink.html" title="class in org.apache.flume.sink">NullSink</a></strong></code> <div class="block"> A <a href="../../../../../org/apache/flume/Sink.html" title="interface in org.apache.flume"><code>Sink</code></a> implementation that simply discards all events it receives.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/RollingFileSink.html" title="class in org.apache.flume.sink">RollingFileSink</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/ThriftSink.html" title="class in org.apache.flume.sink">ThriftSink</a></strong></code> <div class="block"> A <a href="../../../../../org/apache/flume/Sink.html" title="interface in org.apache.flume"><code>Sink</code></a> implementation that can send events to an RPC server (such as Flume's <a href="../../../../../org/apache/flume/source/ThriftSource.html" title="class in org.apache.flume.source"><code>ThriftSource</code></a>).</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.elasticsearch"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/elasticsearch/package-summary.html">org.apache.flume.sink.elasticsearch</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/elasticsearch/package-summary.html">org.apache.flume.sink.elasticsearch</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/elasticsearch/ElasticSearchSink.html" title="class in org.apache.flume.sink.elasticsearch">ElasticSearchSink</a></strong></code> <div class="block">A sink which reads events from a channel and writes them to ElasticSearch based on the work done by https://github.com/Aconex/elasticflume.git.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.hbase"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hbase/package-summary.html">org.apache.flume.sink.hbase</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hbase/package-summary.html">org.apache.flume.sink.hbase</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/hbase/AsyncHBaseSink.html" title="class in org.apache.flume.sink.hbase">AsyncHBaseSink</a></strong></code> <div class="block">A simple sink which reads events from a channel and writes them to HBase.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/hbase/HBaseSink.html" title="class in org.apache.flume.sink.hbase">HBaseSink</a></strong></code> <div class="block">A simple sink which reads events from a channel and writes them to HBase.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.hdfs"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hdfs/package-summary.html">org.apache.flume.sink.hdfs</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hdfs/package-summary.html">org.apache.flume.sink.hdfs</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/hdfs/HDFSEventSink.html" title="class in org.apache.flume.sink.hdfs">HDFSEventSink</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.hive"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hive/package-summary.html">org.apache.flume.sink.hive</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/hive/package-summary.html">org.apache.flume.sink.hive</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/hive/HiveSink.html" title="class in org.apache.flume.sink.hive">HiveSink</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.irc"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/irc/package-summary.html">org.apache.flume.sink.irc</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/irc/package-summary.html">org.apache.flume.sink.irc</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/irc/IRCSink.html" title="class in org.apache.flume.sink.irc">IRCSink</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.kafka"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/kafka/package-summary.html">org.apache.flume.sink.kafka</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/kafka/package-summary.html">org.apache.flume.sink.kafka</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/kafka/KafkaSink.html" title="class in org.apache.flume.sink.kafka">KafkaSink</a></strong></code> <div class="block">A Flume Sink that can publish messages to Kafka.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.kite"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/kite/package-summary.html">org.apache.flume.sink.kite</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/kite/package-summary.html">org.apache.flume.sink.kite</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/kite/DatasetSink.html" title="class in org.apache.flume.sink.kite">DatasetSink</a></strong></code> <div class="block">Sink that writes events to a Kite Dataset.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.flume.sink.solr.morphline"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/solr/morphline/package-summary.html">org.apache.flume.sink.solr.morphline</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">AbstractSink</a> in <a href="../../../../../org/apache/flume/sink/solr/morphline/package-summary.html">org.apache.flume.sink.solr.morphline</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/solr/morphline/MorphlineSink.html" title="class in org.apache.flume.sink.solr.morphline">MorphlineSink</a></strong></code> <div class="block">Flume sink that extracts search documents from Flume events and processes them using a morphline <code>Command</code> chain.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/flume/sink/solr/morphline/MorphlineSolrSink.html" title="class in org.apache.flume.sink.solr.morphline">MorphlineSolrSink</a></strong></code> <div class="block">Flume sink that extracts search documents from Flume events, processes them using a morphline <code>Command</code> chain, and loads them into Apache Solr.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/flume/sink/AbstractSink.html" title="class in org.apache.flume.sink">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/flume/sink/class-use/AbstractSink.html" target="_top">Frames</a></li> <li><a href="AbstractSink.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2009-2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.</small></p> </body> </html>
boost_1_54_0/doc/html/boost/units/base_unit_inf_idp149884416.html
ryancoleman/autodock-vina
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct base_unit_info&lt;astronomical::light_hour_base_unit&gt;</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="../../boost_units/Reference.html#header.boost.units.base_units.astronomical.light_hour_hpp" title="Header &lt;boost/units/base_units/astronomical/light_hour.hpp&gt;"> <link rel="prev" href="base_unit_inf_idp149881184.html" title="Struct base_unit_info&lt;astronomical::light_day_base_unit&gt;"> <link rel="next" href="base_unit_inf_idp149887648.html" title="Struct base_unit_info&lt;astronomical::light_minute_base_unit&gt;"> </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="base_unit_inf_idp149881184.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.base_units.astronomical.light_hour_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="base_unit_inf_idp149887648.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.units.base_unit_inf_idp149884416"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct base_unit_info&lt;astronomical::light_hour_base_unit&gt;</span></h2> <p>boost::units::base_unit_info&lt;astronomical::light_hour_base_unit&gt;</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: &lt;<a class="link" href="../../boost_units/Reference.html#header.boost.units.base_units.astronomical.light_hour_hpp" title="Header &lt;boost/units/base_units/astronomical/light_hour.hpp&gt;">boost/units/base_units/astronomical/light_hour.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="base_unit_inf_idp149884416.html" title="Struct base_unit_info&lt;astronomical::light_hour_base_unit&gt;">base_unit_info</a><span class="special">&lt;</span><span class="identifier">astronomical</span><span class="special">::</span><span class="identifier">light_hour_base_unit</span><span class="special">&gt;</span> <span class="special">{</span> <span class="comment">// <a class="link" href="base_unit_inf_idp149884416.html#idp149884992-bb">public static functions</a></span> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a class="link" href="base_unit_inf_idp149884416.html#idp149885200-bb"><span class="identifier">name</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a class="link" href="base_unit_inf_idp149884416.html#idp149885680-bb"><span class="identifier">symbol</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp203095424"></a><h2>Description</h2> <div class="refsect2"> <a name="idp203095632"></a><h3> <a name="idp149884992-bb"></a><code class="computeroutput">base_unit_info</code> public static functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a name="idp149885200-bb"></a><span class="identifier">name</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a name="idp149885680-bb"></a><span class="identifier">symbol</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li> </ol></div> </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 &#169; 2003-2008 Matthias Christian Schabel<br>Copyright &#169; 2007-2010 Steven Watanabe<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="base_unit_inf_idp149881184.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.base_units.astronomical.light_hour_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="base_unit_inf_idp149887648.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
docs/geedocs/5.3.7/answer/releaseNotes/relNotesGEE5_3_6.html
tst-lsavoie/earthenterprise
<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Release notes: Open GEE 5.3.6 &#8212; Google Earth Enterprise 5.3.7 documentation</title> <link rel="stylesheet" href="../../static/bizstyle.css" type="text/css" /> <link rel="stylesheet" href="../../static/pygments.css" type="text/css" /> <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../static/documentation_options.js"></script> <script type="text/javascript" src="../../static/jquery.js"></script> <script type="text/javascript" src="../../static/underscore.js"></script> <script type="text/javascript" src="../../static/doctools.js"></script> <script type="text/javascript" src="../../static/bizstyle.js"></script> <link rel="index" title="Index" href="../../genindex.html" /> <link rel="search" title="Search" href="../../search.html" /> <link rel="next" title="Release notes: Open GEE 5.3.5" href="relNotesGEE5_3_5.html" /> <link rel="prev" title="Release notes: Open GEE 5.3.7" href="relNotesGEE5_3_7.html" /> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <!--[if lt IE 9]> <script type="text/javascript" src="static/css3-mediaqueries.js"></script> <![endif]--> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="relNotesGEE5_3_5.html" title="Release notes: Open GEE 5.3.5" accesskey="N">next</a> |</li> <li class="right" > <a href="relNotesGEE5_3_7.html" title="Release notes: Open GEE 5.3.7" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="../../index.html">Google Earth Enterprise 5.3.7 documentation</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../releaseNotes.html" accesskey="U">Release notes</a> &#187;</li> </ul> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="relNotesGEE5_3_7.html" title="previous chapter">Release notes: Open GEE 5.3.7</a></p> <h4>Next topic</h4> <p class="topless"><a href="relNotesGEE5_3_5.html" title="next chapter">Release notes: Open GEE 5.3.5</a></p> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <div class="searchformwrapper"> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <p><a class="reference internal" href="../../images/googlelogo_color_260x88dp11.png"><img alt="Google logo" src="../../images/googlelogo_color_260x88dp11.png" style="width: 130px; height: 44px;" /></a></p> <div class="section" id="release-notes-open-gee-5-3-6"> <h1>Release notes: Open GEE 5.3.6<a class="headerlink" href="#release-notes-open-gee-5-3-6" title="Permalink to this headline">¶</a></h1> <div class="docutils container"> <div class="content docutils container"> <p class="rubric">New Features</p> <p>In 5.3.6, a <code class="docutils literal notranslate"><span class="pre">--secure</span></code> option was added for <code class="docutils literal notranslate"><span class="pre">geconfigureassetroot</span></code> and <code class="docutils literal notranslate"><span class="pre">geupgradeassetroot</span></code> that removes world-writable permissions from special files. This helps Open GEE perform properly in strict security environments. <code class="docutils literal notranslate"><span class="pre">--secure</span></code> is disabled by default.</p> <p class="rubric">Supported Platforms</p> <p>The Open GEE 5.3.6 release is supported on 64-bit versions of the following operating systems:</p> <ul class="simple"> <li>Red Hat Enterprise Linux version 6.x and 7.x, including the most recent security patches</li> <li>CentOS 6.x and 7.x</li> <li>Ubuntu 16.04 LTS</li> </ul> <p>Google Earth Enterprise 5.3.6 is compatible with Google Earth Enterprise Client (EC) version 7.1.5 and above.</p> <p>To upgrade from Open GEE 5.2.0, do NOT uninstall it. We recommend that you upgrade Open GEE 5.2.0 by simply installing Open GEE 5.3.6. Installing Open GEE 5.3.6 on top of Open GEE 5.2.0 will ensure that your PostgreSQL databases are backed up and upgraded correctly to the new PostgreSQL version used by Open GEE 5.3.6.</p> <p class="rubric">Resolved Issues</p> <table border="1" class="colwidths-given docutils"> <colgroup> <col width="35%" /> <col width="65%" /> </colgroup> <thead valign="bottom"> <tr class="row-odd"><th class="head">Number</th> <th class="head">Description</th> </tr> </thead> <tbody valign="top"> <tr class="row-even"><td>1851</td> <td>Open GEE does not function properly on systems with a restrictive umask</td> </tr> <tr class="row-odd"><td>1806</td> <td>Confusing “geserver.service changed on disk” message after uninstalling Fusion or Server</td> </tr> <tr class="row-even"><td>1800</td> <td>Upgrade from 5.3.4 to 5.3.5 leaves a non-working ExampleSearch</td> </tr> <tr class="row-odd"><td>1785</td> <td>Imagery Projects - Transparent areas appear as black</td> </tr> <tr class="row-even"><td>1761</td> <td>Tab Order wrong for Fusion Add Vector Resource and Add Terrain Resource</td> </tr> <tr class="row-odd"><td>1741</td> <td>Invalid git version in CentOS/RHEL install instructions</td> </tr> </tbody> </table> <p class="rubric">Known Issues</p> <p>See the <a class="reference external" href="https://github.com/google/earthenterprise/issues">GitHub issues page</a> for a list of known issues.</p> </div> </div> </div> </div> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="relNotesGEE5_3_5.html" title="Release notes: Open GEE 5.3.5" >next</a> |</li> <li class="right" > <a href="relNotesGEE5_3_7.html" title="Release notes: Open GEE 5.3.7" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="../../index.html">Google Earth Enterprise 5.3.7 documentation</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../releaseNotes.html" >Release notes</a> &#187;</li> </ul> </div> <div class="footer" role="contentinfo"> &#169; Copyright 2020, Open GEE Contributors. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.5. </div> </body> </html>
twitter4j-examples/javadoc/twitter4j/examples/user/package-tree.html
egeyman/Final-Project
<!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_65) on Sun Mar 29 01:32:47 JST 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>twitter4j.examples.user Class Hierarchy (twitter4j-examples 4.0.3 API)</title> <meta name="date" content="2015-03-29"> <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="twitter4j.examples.user Class Hierarchy (twitter4j-examples 4.0.3 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</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="../../../twitter4j/examples/tweets/package-tree.html">Prev</a></li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?twitter4j/examples/user/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package twitter4j.examples.user</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.<a href="http://download.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a> <ul> <li type="circle">twitter4j.examples.user.<a href="../../../twitter4j/examples/user/LookupUsers.html" title="class in twitter4j.examples.user"><span class="strong">LookupUsers</span></a></li> <li type="circle">twitter4j.examples.user.<a href="../../../twitter4j/examples/user/SearchUsers.html" title="class in twitter4j.examples.user"><span class="strong">SearchUsers</span></a></li> <li type="circle">twitter4j.examples.user.<a href="../../../twitter4j/examples/user/ShowUser.html" title="class in twitter4j.examples.user"><span class="strong">ShowUser</span></a></li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-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="../../../twitter4j/examples/tweets/package-tree.html">Prev</a></li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?twitter4j/examples/user/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015. All Rights Reserved.</small></p> </body> </html>
ForgeWiki/forgewiki/templates/wiki/page_view.html
pombredanne/SourceForge-Allura
{% extends 'forgewiki:templates/wiki/master.html' %} {% do g.register_forge_css('css/forge/hilite.css', compress=False) %} {% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / {{page.title}}{% endblock %} {% block header %}{{page.title}}{% if page['deleted'] %}<span> (deleted)</span>{% endif %}{% endblock %} {% block extra_css %} <style> .hidden { display: none } a.notfound { color: #f00; } </style> {% endblock %} {% block head %} <link rel="alternate" type="application/rss+xml" title="Page RSS" href="feed.rss"/> <link rel="alternate" type="application/atom+xml" title="Page Atom" href="feed.atom"/> <link rel="alternate" type="application/rss+xml" title="Wiki RSS" href="../feed.rss"/> <link rel="alternate" type="application/atom+xml" title="Wiki Atom" href="../feed.atom"/> {% endblock %} {% block body_attrs %} class="wiki-{{(page.title).replace(' ','_')}}"{% endblock %} {% block actions %} {% if not page['deleted'] %} {% if c.user and c.user != c.user.anonymous() %} <a href="edit" title="Edit"><b data-icon="{{g.icons['pencil'].char}}" class="ico {{g.icons['pencil'].css}}" title="Edit"></b></a> {% endif %} <a href="history" title="History"><b data-icon="{{g.icons['history'].char}}" class="ico {{g.icons['history'].css}}" title="History"></b></a> {% elif h.has_access(page, 'delete')() %} <a class="post-link" href="undelete" title="Undelete"><b data-icon="{{g.icons['undelete'].char}}" class="ico {{g.icons['undelete'].css}}" title="Undelete"></b></a> {% endif %} {% if c.user and c.user != c.user.anonymous() %} {{c.subscribe_form.display(value=subscribed, action='subscribe', style='icon')}} {% endif %} <a href="feed" title="RSS"><b data-icon="{{g.icons['feed'].char}}" class="ico {{g.icons['feed'].css}}" title="Feed"></b></a> <a href="../search" title="Search"><b data-icon="{{g.icons['search'].char}}" class="ico {{g.icons['search'].css}}" title="Search"></b></a> {% endblock %} {% block wiki_content %} {{page.html_text}} {% endblock %} {% block wiki_meta %} <div class="editbox"> {% if page.labels %} <div class="grid-9"> <label class="simple">Labels: </label> {% for label in page.labels %} {% if label != '' %} <span><a href="{{c.app.url}}search/?q=labels_t:{{label}}">{{label}} ({{page.artifacts_labeled_with(label, page.app_config).count()}})</a></span> {% endif %} {% endfor %} </div> {% endif %} <div class="grid-9 gravatar sm"> <label class="simple">Authors: </label> {% for author in page.authors() %} <a href="{{author.url()}}"> {{lib.gravatar(author, size=16)}} </a> {% endfor %} </div> {% if page.attachments %} <div class="grid-18"> <strong>Attachments</strong> </div> {% endif %} {% for att in page.attachments %} {% if att.is_image() and not att.is_embedded() %} <div class="attachment_thumb"> <a href="{{att.url()}}"> <img src="{{att.url()}}/thumb" alt="Thumbnail"/> </a><br/> <a href="{{att.url()}}">{{att.filename}}</a> ({{att.length}} bytes) </div> {% else %} <div> <a href="{{att.url()}}">{{att.filename}}</a> ({{att.length}} bytes) </div> {% endif %} {% endfor %} </div> {% endblock %} {% block after_content %} <hr class="grid-19" style="margin-top: 1em; margin-bottom: 2em; clear:both;"> {{lib.related_artifacts(page)}} {% if page.discussion_thread and c.app.show_discussion %} {% set thread = page.discussion_thread %} <div>{{c.thread.display(value=thread,page=pagenum,limit=limit,count=count)}}</div> {% endif %} {% endblock %}
webapp/cdn/public/ckeditor/4.6.2/index.html
xuhuisheng/lemon
<html> <head> <script type="text/javascript" src="../../jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" src="./ckeditor.js"></script> <script type="text/javascript"> $(function() { /* var validator = $("#userForm").submit(function() { for (instance in CKEDITOR.instances) { CKEDITOR.instances[instance].updateElement(); } }).validate({ //debug: true, ignore: false, errorClass: 'validate-error', errorPlacement: function(label, element) { if (element.is("textarea")) { label.insertAfter(element.next()); } else { label.insertAfter(element) } } }); */ var editor = CKEDITOR.replace('jillarticle_content'); // CKFinder.setupCKEditor( editor, 's/ckfinder/' ); }); </script> </head> <body> <textarea id="jillarticle_content"></textarea> </body> </html>
venv/bin/libs/log/doc/html/boost/log/thread_access__idp28488584.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template thread_access_mode_of&lt;upgrade_lock&lt; MutexT &gt;&gt;</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&#160;1.&#160;Boost.Log v2"> <link rel="up" href="../../utilities.html#header.boost.log.utility.strictest_lock_hpp" title="Header &lt;boost/log/utility/strictest_lock.hpp&gt;"> <link rel="prev" href="thread_access__idp28487416.html" title="Struct template thread_access_mode_of&lt;shared_lock&lt; MutexT &gt;&gt;"> <link rel="next" href="thread_access__idp28489752.html" title="Struct template thread_access_mode_of&lt;boost::log::aux::exclusive_lock_guard&lt; MutexT &gt;&gt;"> </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="thread_access__idp28487416.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.strictest_lock_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="thread_access__idp28489752.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.log.thread_access__idp28488584"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template thread_access_mode_of&lt;upgrade_lock&lt; MutexT &gt;&gt;</span></h2> <p>boost::log::thread_access_mode_of&lt;upgrade_lock&lt; MutexT &gt;&gt;</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: &lt;<a class="link" href="../../utilities.html#header.boost.log.utility.strictest_lock_hpp" title="Header &lt;boost/log/utility/strictest_lock.hpp&gt;">boost/log/utility/strictest_lock.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> MutexT<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="thread_access__idp28488584.html" title="Struct template thread_access_mode_of&lt;upgrade_lock&lt; MutexT &gt;&gt;">thread_access_mode_of</a><span class="special">&lt;</span><span class="identifier">upgrade_lock</span><span class="special">&lt;</span> <span class="identifier">MutexT</span> <span class="special">&gt;</span><span class="special">&gt;</span> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">integral_c</span><span class="special">&lt;</span> <span class="identifier">lock_access_mode</span><span class="special">,</span> <span class="identifier">shared_access</span> <span class="special">&gt;</span> <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 &#169; 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="thread_access__idp28487416.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.strictest_lock_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="thread_access__idp28489752.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
public/scaladoc/1.7/org/scalatest/concurrent/package.html
scalatest/scalatest-website
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>org.scalatest.concurrent</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link type="text/css" media="screen" rel="stylesheet" href="../../../lib/template.css" /> <script type="text/javascript" src="../../../lib/jquery.js"></script> <script type="text/javascript" src="../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../lib/template.js"></script> <script type="text/javascript" src="../../../lib/tools.tooltip.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-71294502-3', 'auto'); ga('send', 'pageview'); </script> </head> <body class="value"> <div id="definition"> <img src="../../../lib/package_big.png" /> <p id="owner"><a name="org" class="extype" href="../../package.html">org</a>.<a name="org.scalatest" class="extype" href="../package.html">scalatest</a></p> <h1>concurrent</h1> </div> <h4 class="signature" id="signature"> <span class="kind">package</span> <span class="symbol"> <span class="name">concurrent</span> </span> </h4> <div class="fullcommenttop" id="comment"></div> <div id="template"> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input accesskey="/" type="text" /></span><span class="post"></span></div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div class="types members" id="types"> <h3>Type Members</h3> <ol><li visbl="pub" name="org.scalatest.concurrent.Conductor" data-isabs="false"> <a id="Conductor:Conductor"></a> <h4 class="signature"> <span class="kind">class</span> <span class="symbol"> <a href="Conductor.html"><span class="name">Conductor</span></a> <span class="result"> extends AnyRef</span> </span> </h4> <p class="comment cmt">Class that facilitates the testing of classes, traits, and libraries designed to be used by multiple threads concurrently.</p> </li><li visbl="pub" name="org.scalatest.concurrent.ConductorFixture" data-isabs="true"> <a id="ConductorFixture:ConductorFixture"></a> <h4 class="signature"> <span class="kind">trait</span> <span class="symbol"> <a href="ConductorFixture.html"><span class="name">ConductorFixture</span></a> <span class="result"> extends AnyRef</span> </span> </h4> <p class="comment cmt">Trait that can pass a new <code>Conductor</code> fixture into tests.</p> </li><li visbl="pub" name="org.scalatest.concurrent.ConductorMethods" data-isabs="true"> <a id="ConductorMethods:ConductorMethods"></a> <h4 class="signature"> <span class="kind">trait</span> <span class="symbol"> <a href="ConductorMethods.html"><span class="name">ConductorMethods</span></a> <span class="result"> extends AbstractSuite</span> </span> </h4> <p class="comment cmt">Trait that provides each test with access to a new <code>Conductor</code> via methods.</p> </li><li visbl="pub" name="org.scalatest.concurrent.ConductorMultiFixture" data-isabs="true"> <a id="ConductorMultiFixture:ConductorMultiFixture"></a> <h4 class="signature"> <span class="kind">trait</span> <span class="symbol"> <a href="ConductorMultiFixture.html"><span class="name">ConductorMultiFixture</span></a> <span class="result"> extends AnyRef</span> </span> </h4> <p class="comment cmt">Trait that can pass a new <code>Conductor</code> fixture into tests, for use in suites such as <code>MultipleFixtureFunSuite</code> or <code>MultipleFixtureSpec</code>, which facilitate writing tests that take different types of fixtures.</p> </li></ol> </div> </div> <div id="tooltip"></div> </body> </html>
书籍学习源码练习/Head First html&css学习代码/chapter6/test.html
huang303513/WebBasicCommonDemos
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>你好</title> </head> <body> <p>你好好好好好啊好好好啊好好好</p> </body> </html>
venv/bin/doc/html/boost/xpressive/_.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Global _</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="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp" title="Header &lt;boost/xpressive/regex_primitives.hpp&gt;"> <link rel="prev" href="_ln.html" title="Global _ln"> <link rel="next" href="self.html" title="Global self"> </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="_ln.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_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="self.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.xpressive._"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Global _</span></h2> <p>boost::xpressive::_ &#8212; Matches any one character. </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: &lt;<a class="link" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp" title="Header &lt;boost/xpressive/regex_primitives.hpp&gt;">boost/xpressive/regex_primitives.hpp</a>&gt; </span><span class="emphasis"><em><span class="identifier">unspecified</span></em></span> _<span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp257240536"></a><h2>Description</h2> <p>Match any character, similar to '.' in perl syntax with the /s modifier. '_' matches any one character, including the newline.</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>To match any character except the newline, use ~_n </p></td></tr> </table></div> <p> </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 &#169; 2007 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="_ln.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_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="self.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/thrift/class-use/Cassandra.system_update_column_family_result._Fields.html
mitch-kyle/message-board
<!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:33 EDT 2015 --> <title>Uses of Class org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields (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="Uses of Class org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields (apache-cassandra API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.system_update_column_family_result._Fields.html" target="_top">Frames</a></li> <li><a href="Cassandra.system_update_column_family_result._Fields.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields" class="title">Uses of Class<br>org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.thrift">org.apache.cassandra.thrift</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.thrift"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a> in <a href="../../../../../org/apache/cassandra/thrift/package-summary.html">org.apache.cassandra.thrift</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../org/apache/cassandra/thrift/package-summary.html">org.apache.cassandra.thrift</a> with type parameters of type <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static java.util.Map&lt;<a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a>,org.apache.thrift.meta_data.FieldMetaData&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html#metaDataMap">metaDataMap</a></span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/thrift/package-summary.html">org.apache.cassandra.thrift</a> that return <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html#fieldForId-int-">fieldForId</a></span>(int&nbsp;fieldId)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result._Fields.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html#findByName-java.lang.String-">findByName</a></span>(java.lang.String&nbsp;name)</code> <div class="block">Find the _Fields constant that matches name, or null if its not found.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result._Fields.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html#findByThriftId-int-">findByThriftId</a></span>(int&nbsp;fieldId)</code> <div class="block">Find the _Fields constant that matches fieldId, or null if its not found.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result._Fields.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html#findByThriftIdOrThrow-int-">findByThriftIdOrThrow</a></span>(int&nbsp;fieldId)</code> <div class="block">Find the _Fields constant that matches fieldId, throwing an exception if it is not found.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result._Fields.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a>[]</code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result._Fields.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html#values--">values</a></span>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/thrift/package-summary.html">org.apache.cassandra.thrift</a> with parameters of type <a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>java.lang.Object</code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html#getFieldValue-org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields-">getFieldValue</a></span>(<a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a>&nbsp;field)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html#isSet-org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields-">isSet</a></span>(<a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a>&nbsp;field)</code> <div class="block">Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">Cassandra.system_update_column_family_result.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html#setFieldValue-org.apache.cassandra.thrift.Cassandra.system_update_column_family_result._Fields-java.lang.Object-">setFieldValue</a></span>(<a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Cassandra.system_update_column_family_result._Fields</a>&nbsp;field, java.lang.Object&nbsp;value)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cassandra/thrift/Cassandra.system_update_column_family_result._Fields.html" title="enum in org.apache.cassandra.thrift">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.system_update_column_family_result._Fields.html" target="_top">Frames</a></li> <li><a href="Cassandra.system_update_column_family_result._Fields.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
target/classes/de/bps/course/assessment/_content/detailview.html
srinivasiyerb/Scholst
#if ($courseNode) <div class="b_with_small_icon_left $courseNodeCss">$courseNode.getShortTitle() #if ($courseNode.getLongTitle() && $courseNode.getLongTitle() != "") ($courseNode.getLongTitle()) #end </div> <hr /> #end <h4>$r.translate("detailview.title")</h4> $r.render("backLink") <br /> <br /> <table class="b_table"> <tr> <td> <span class="b_with_small_icon_left b_user_icon">$user.getProperty("firstName", $locale) $user.getProperty("lastName", $locale)</span> </td> <td> $user.getProperty("email", $locale) #if ($user.getProperty("institutionalEmail", $locale) && $user.getProperty("institutionalEmail", $locale) != "" && $user.getProperty("email", $locale) != $user.getProperty("institutionalEmail", $locale)) / $user.getProperty("institutionalEmail", $locale) #end #if ($user.getProperty("institutionalName", $locale)) <br />$user.getProperty("institutionalName", $locale) #end #if ($user.getProperty("institutionalUserIdentifier", $locale)) <br />$user.getProperty("institutionalUserIdentifier", $locale) #end </td> </tr> <tr> <td> <span class="b_with_small_icon_left b_group_icon">$r.translate("participantgroups.title")</span> </td> <td> #foreach($group in $participantGroups) $group.getName() #if ($velocityCount < $participantGroups.size()) , #end #end </td> </tr> </table> <hr /> #if ($infoCoach && $infoCoach != "") <div class="o_course_run_disclaimer"> <h4>$r.translate("title.infocoach")</h4> $infoCoach </div> #end #if ($hasDetails) $r.render("detailsController") #end $r.render("assessmentform") #if($showLog && $log) <div class="o_course_run_log"> <h4>$r.translate("log.title")</h4> $r.render("command.hidelog") <pre> $log </pre> </div> #elseif ($log) $r.render("command.showlog") #end </div>