code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>appsensor-ws-rest-server: RestRequestHandler</title> <!-- Mobile viewport optimized: j.mp/bplateviewport --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap core CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <!--custom css for these pages--> <link rel="stylesheet" href="css/style.css"> <link href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css" type="text/css"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body data-spy="scroll" data-target="#apinav"> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">appsensor-ws-rest-server: RestRequestHandler</a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="resources.html">Resources</a></li> <li><a href="data.html">Data Types</a></li> </ul> </div> </div> </nav> <div class="container-fluid"> <div class="row"> <div class="col-sm-3 col-md-2 sidebar" id="apinav"> <ul class="nav nav-sidebar"> <li><a href="#resource_RestRequestHandler_addEvent_POST">POST /api/v1.0/events</a></li> <li><a href="#resource_RestRequestHandler_addAttack_POST">POST /api/v1.0/attacks</a></li> <li><a href="#resource_RestRequestHandler_getResponses_GET">GET /api/v1.0/responses</a></li> <li class="divider"></li> <li class="text-right"><a href="#top"><small>Back to Top</small></a></li> </ul> </div> <div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main"> <ol class="breadcrumb" id="top"> <li class="active dropdown"><a href="index.html">Home</a></li> <li class="active dropdown"><a href="resources.html">Resources</a></li> <li class="dropdown"><a href="resource_RestRequestHandler.html">RestRequestHandler</a></li> </ol> <h1 class="page-header">RestRequestHandler <small>Resource</small></h1> <p>This is the restful endpoint that handles requests on the server-side.</p> <div id="resource_RestRequestHandler_addEvent_POST"> <h3><span class="resource-method">POST</span> <span class="resource-path">/api/v1.0/events <a href="../api/v1.0/events" class="glyphicon glyphicon-new-window" target="_blank"></a></span></h3> <p></p> <table class="table"> <caption>Request Body</caption> <thead> <tr> <th>media type</th> <th>data type</th> </tr> </thead> <tbody> <tr> <td><abbr data-toggle="tooltip" data-placement="top" title="Use the &quot;Content-Type: application/json&quot; HTTP header to specify this media type to the server.">application/json</abbr></td> <td><a href="json_event.html">Event</a> (JSON)</td> </tr> </tbody> </table> </div> <div id="resource_RestRequestHandler_addAttack_POST"> <h3><span class="resource-method">POST</span> <span class="resource-path">/api/v1.0/attacks <a href="../api/v1.0/attacks" class="glyphicon glyphicon-new-window" target="_blank"></a></span></h3> <p></p> <table class="table"> <caption>Request Body</caption> <thead> <tr> <th>media type</th> <th>data type</th> </tr> </thead> <tbody> <tr> <td><abbr data-toggle="tooltip" data-placement="top" title="Use the &quot;Content-Type: application/json&quot; HTTP header to specify this media type to the server.">application/json</abbr></td> <td><a href="json_attack.html">Attack</a> (JSON)</td> </tr> </tbody> </table> </div> <div id="resource_RestRequestHandler_getResponses_GET"> <h3><span class="resource-method">GET</span> <span class="resource-path">/api/v1.0/responses <a href="../api/v1.0/responses" class="glyphicon glyphicon-new-window" target="_blank"></a></span></h3> <p></p> <table class="table"> <caption>Request Parameters</caption> <thead> <tr> <th>name</th> <th>type</th> <th>description</th> </tr> </thead> <tbody> <tr> <td>earliest</td> <td>query</td> <td></td> </tr> </tbody> </table> <table class="table"> <caption>Response Body</caption> <thead> <tr> <th>media type</th> <th>data type</th> </tr> </thead> <tbody> <tr> <td><abbr data-toggle="tooltip" data-placement="top" title="Use the &quot;Accept: application/json&quot; HTTP header to request that this media type be provided by the server.">application/json</abbr></td> <td>array of <a href="json_response.html">Response</a> (JSON)</td> </tr> </tbody> </table> </div> <footer class="footer"> <div class="container"> <p class="text-muted">Generated by <a href="http://enunciate.webcohesion.com">Enunciate</a>.</p> </div> </footer> </div> </div> </div> <!-- JavaScript placed at the end of the document so the pages load faster. --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <!-- Bootstrap core JavaScript ================================================== --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> <!-- prettify code blocks. see http://code.google.com/p/google-code-prettify/ --> <script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/run_prettify.js" type="text/javascript"></script> <script> $(function() { $(".clickable-row").click(function() { window.document.location = $(this).data("href"); }); $('[data-toggle="tooltip"]').tooltip() }); </script> </body> </html>
jtmelton/appsensor
execution-modes/appsensor-ws-rest-server/wsdocs/apidocs/resource_RestRequestHandler.html
HTML
mit
7,142
<respond-languages></respond-languages> <respond-cart></respond-cart> <respond-search></respond-search> <header role="banner"> <nav class="navbar navbar-default" role="navigation"> <respond-search-toggle></respond-search-toggle> <respond-cart-toggle></respond-cart-toggle> <respond-languages-toggle></respond-languages-toggle> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <i class="fa fa-bars"></i> </button> <a class="navbar-brand" href="index"><img ng-src="{{fullLogoUrl}}"></a> </div> <!-- /.navbar-header --> <div class="collapse navbar-collapse navbar-ex1-collapse"> <respond-menu type="primary" class="nav navbar-nav navbar-right" render="publish"></respond-menu> </div> <!-- /.navbar-collapse --> </nav> </header> <div id="content" class="container" role="main"> <respond-content id="main-content" url="{{page.Url}}"></respond-content> </div> <footer role="contentinfo"> <div class="container"> <respond-content url="component/footer" render="publish"></respond-content> </div> <!-- /.container --> </footer>
fizzl/respond
themes/energy/layouts/home.html
HTML
mit
1,215
<HTML> <BODY BGCOLOR="white"> <PRE> <FONT color="green">001</FONT> /**<a name="line.1"></a> <FONT color="green">002</FONT> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> <FONT color="green">003</FONT> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> <FONT color="green">004</FONT> * distributed with this work for additional information<a name="line.4"></a> <FONT color="green">005</FONT> * regarding copyright ownership. The ASF licenses this file<a name="line.5"></a> <FONT color="green">006</FONT> * to you under the Apache License, Version 2.0 (the<a name="line.6"></a> <FONT color="green">007</FONT> * "License"); you may not use this file except in compliance<a name="line.7"></a> <FONT color="green">008</FONT> * with the License. You may obtain a copy of the License at<a name="line.8"></a> <FONT color="green">009</FONT> *<a name="line.9"></a> <FONT color="green">010</FONT> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.10"></a> <FONT color="green">011</FONT> *<a name="line.11"></a> <FONT color="green">012</FONT> * Unless required by applicable law or agreed to in writing, software<a name="line.12"></a> <FONT color="green">013</FONT> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.13"></a> <FONT color="green">014</FONT> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.14"></a> <FONT color="green">015</FONT> * See the License for the specific language governing permissions and<a name="line.15"></a> <FONT color="green">016</FONT> * limitations under the License.<a name="line.16"></a> <FONT color="green">017</FONT> */<a name="line.17"></a> <FONT color="green">018</FONT> <a name="line.18"></a> <FONT color="green">019</FONT> package org.apache.hadoop.fs.http.server;<a name="line.19"></a> <FONT color="green">020</FONT> <a name="line.20"></a> <FONT color="green">021</FONT> import org.apache.hadoop.classification.InterfaceAudience;<a name="line.21"></a> <FONT color="green">022</FONT> import org.apache.hadoop.lib.service.FileSystemAccess;<a name="line.22"></a> <FONT color="green">023</FONT> import org.apache.hadoop.lib.servlet.FileSystemReleaseFilter;<a name="line.23"></a> <FONT color="green">024</FONT> <a name="line.24"></a> <FONT color="green">025</FONT> /**<a name="line.25"></a> <FONT color="green">026</FONT> * Filter that releases FileSystemAccess filesystem instances upon HTTP request<a name="line.26"></a> <FONT color="green">027</FONT> * completion.<a name="line.27"></a> <FONT color="green">028</FONT> */<a name="line.28"></a> <FONT color="green">029</FONT> @InterfaceAudience.Private<a name="line.29"></a> <FONT color="green">030</FONT> public class HttpFSReleaseFilter extends FileSystemReleaseFilter {<a name="line.30"></a> <FONT color="green">031</FONT> <a name="line.31"></a> <FONT color="green">032</FONT> /**<a name="line.32"></a> <FONT color="green">033</FONT> * Returns the {@link FileSystemAccess} service to return the FileSystemAccess filesystem<a name="line.33"></a> <FONT color="green">034</FONT> * instance to.<a name="line.34"></a> <FONT color="green">035</FONT> *<a name="line.35"></a> <FONT color="green">036</FONT> * @return the FileSystemAccess service.<a name="line.36"></a> <FONT color="green">037</FONT> */<a name="line.37"></a> <FONT color="green">038</FONT> @Override<a name="line.38"></a> <FONT color="green">039</FONT> protected FileSystemAccess getFileSystemAccess() {<a name="line.39"></a> <FONT color="green">040</FONT> return HttpFSServerWebApp.get().get(FileSystemAccess.class);<a name="line.40"></a> <FONT color="green">041</FONT> }<a name="line.41"></a> <FONT color="green">042</FONT> <a name="line.42"></a> <FONT color="green">043</FONT> }<a name="line.43"></a> </PRE> </BODY> </HTML>
SAT-Hadoop/hadoop-2.6.0
share/doc/hadoop/hadoop-hdfs-httpfs/apidocs/src-html/org/apache/hadoop/fs/http/server/HttpFSReleaseFilter.html
HTML
apache-2.0
4,051
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - effects - crosseyed</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { background:#777; padding:0; margin:0; font-weight: bold; overflow:hidden; } #info { position: absolute; top: 0px; width: 100%; color: #ffffff; padding: 5px; font-family:Monospace; font-size:13px; text-align:center; z-index:1000; } a { color: #ffffff; } #oldie a { color:#da0 } </style> </head> <body> <div id="info"> <a href="http://threejs.org" target="_blank">three.js</a> - effects - crosseyed. skybox by <a href="http://www.zfight.com/" target="_blank">Jochum Skoglund</a> - O, P : change eye separation </div> <script src="../build/three.min.js"></script> <script src="js/effects/CrosseyedEffect.js"></script> <script src="js/Detector.js"></script> <script> if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container; var camera, scene, renderer, effect; var mesh, lightMesh, geometry; var spheres = []; var directionalLight, pointLight; var mouseX = 0, mouseY = 0; var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; document.addEventListener( 'mousemove', onDocumentMouseMove, false ); init(); animate(); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 100000 ); camera.position.z = 3200; camera.target = new THREE.Vector3( 0, 0, 0 ); scene = new THREE.Scene(); var geometry = new THREE.SphereGeometry( 100, 32, 16 ); var path = "textures/cube/skybox/"; var format = '.jpg'; var urls = [ path + 'px' + format, path + 'nx' + format, path + 'py' + format, path + 'ny' + format, path + 'pz' + format, path + 'nz' + format ]; var textureCube = THREE.ImageUtils.loadTextureCube( urls, new THREE.CubeRefractionMapping() ); var material = new THREE.MeshBasicMaterial( { color: 0xffffff, envMap: textureCube, refractionRatio: 0.95 } ); for ( var i = 0; i < 500; i ++ ) { var mesh = new THREE.Mesh( geometry, material ); mesh.position.x = Math.random() * 10000 - 5000; mesh.position.y = Math.random() * 10000 - 5000; mesh.position.z = Math.random() * 10000 - 5000; mesh.scale.x = mesh.scale.y = mesh.scale.z = Math.random() * 3 + 1; scene.add( mesh ); spheres.push( mesh ); } // Skybox var shader = THREE.ShaderLib[ "cube" ]; shader.uniforms[ "tCube" ].value = textureCube; var material = new THREE.ShaderMaterial( { fragmentShader: shader.fragmentShader, vertexShader: shader.vertexShader, uniforms: shader.uniforms, side: THREE.BackSide } ), mesh = new THREE.Mesh( new THREE.CubeGeometry( 100000, 100000, 100000 ), material ); scene.add( mesh ); // renderer = new THREE.WebGLRenderer(); container.appendChild( renderer.domElement ); effect = new THREE.CrosseyedEffect( renderer ); effect.setSize( window.innerWidth, window.innerHeight ); effect.separation = 90; document.addEventListener( 'keydown', onKeyDown, false ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { windowHalfX = window.innerWidth / 2, windowHalfY = window.innerHeight / 2, camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); effect.setSize( window.innerWidth, window.innerHeight ); } function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) * 10; mouseY = ( event.clientY - windowHalfY ) * 10; } function onKeyDown ( event ) { switch( event.keyCode ) { /* O */ case 79: effect.separation -= 0.5; break; /* P */ case 80: effect.separation += 0.5; break; } console.log( effect.separation ); }; // function animate() { requestAnimationFrame( animate ); render(); } function render() { var timer = 0.0001 * Date.now(); camera.position.x += ( mouseX - camera.position.x ) * .05; camera.position.y += ( - mouseY - camera.position.y ) * .05; for ( var i = 0, il = spheres.length; i < il; i ++ ) { var sphere = spheres[ i ]; sphere.position.x = 5000 * Math.cos( timer + i ); sphere.position.y = 5000 * Math.sin( timer + i * 1.1 ); } effect.render( scene, camera ); } </script> </body> </html>
ccclayton/DataWar
static/js/threejs.r65/examples/webgl_effects_crosseyed.html
HTML
mit
4,740
<!-- Copyright 2017 The AMP HTML Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the license. --> <!-- Test Description: Test to make sure amp-video under amp-story gets an error if it doesn't have the "poster" attribute set. --> <!doctype html> <html ⚡> <head> <meta charset="utf-8"> <title>STAMP examples</title> <link rel="canonical" href="http://nonblocking.io/" > <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript> <script async src="https://cdn.ampproject.org/v0.js"></script> <script async custom-element="amp-story" src="https://cdn.ampproject.org/v0/amp-story-0.1.js"></script> <script async custom-element="amp-video" src="https://cdn.ampproject.org/v0/amp-video-0.1.js"></script> </head> <body> <amp-story standalone bookend-config-src="./related.json" background-audio="path/to/my.mp3"> <amp-story-page id="1" background-audio="path/to/my.mp3" auto-advance-after="any-value"> <amp-story-grid-layer template="horizontal"> <!-- This should fail because amp-video doesn't have the [poster] attribute. --> <amp-video width="480" height="270" src="/video/tokyo.mp4" layout="responsive" controls> <div fallback> <p>Your browser doesn't support HTML5 video.</p> </div> <source type="video/mp4" src="/video/tokyo.mp4"> <source type="video/webm" src="/video/tokyo.webm"> </amp-video> </amp-story-grid-layer> </amp-story-page> </amp-story> </body> </html>
engtat/amphtml
extensions/amp-story/0.1/test/validator-amp-story-video-error.html
HTML
apache-2.0
2,886
<!DOCTYPE html> <html ng-app="sample" ng-controller="AppCtrl"> <head> <title ng-bind="pageTitle"></title> <script type="text/javascript" src="//use.typekit.net/iws6ohy.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- font awesome from BootstrapCDN --> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="app.css"> <link rel="stylesheet" type="text/css" href="home/home.css"> <link rel="stylesheet" type="text/css" href="login/login.css"> <script type="text/javascript" src="auth0-variables.js"></script> <script type="text/javascript" src="https://cdn.auth0.com/js/auth0-lock-7.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular-cookies.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular-route.js"></script> <script type="text/javascript" src="https://cdn.auth0.com/w2/auth0-angular-4.js"></script> <script src="//cdn.rawgit.com/auth0/angular-storage/master/dist/angular-storage.js" type="text/javascript"> </script> <script src="//cdn.rawgit.com/auth0/angular-jwt/master/dist/angular-jwt.js" type="text/javascript"> </script> <script type="text/javascript" src="app.js"></script> <script type="text/javascript" src="home/home.js"></script> <script type="text/javascript" src="login/login.js"></script> </head> <body> <div class="container" ng-view></div> </body> </html>
suntorytime/global_marathon
www/lib/auth0-angular/examples/widget-with-thirdparty-api/index.html
HTML
mit
1,930
<ul class="current"> {% for nav_item in nav %} {% if nav_item.children %} <span class="toctree-l0">{{ nav_item.title }}</span> {% for nav_item in nav_item.children %} <li class="toctree-l1 {% if nav_item.active%}current{%endif%}"> <a class="{% if nav_item.active%}current{%endif%}" href="{{ nav_item.url }}">{{ nav_item.title }}</a> {% if nav_item == current_page %} {% if nav_item.title != "Changelog" %} <ul> {% for toc_item in toc %} <li class="toctree-l2"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li> {% for toc_item in toc_item.children %} <li><a class="toctree-l3" href="{{ toc_item.url }}">{{ toc_item.title }}</a></li> {% endfor %} {% endfor %} </ul> {% endif %} {% endif %} </li> {% endfor %} {% else %} <li class="toctree-l1 {% if nav_item.active%}current{%endif%}"> <a class="{% if nav_item.active%}current{%endif%}" href="{{ nav_item.url }}">{{ nav_item.title }}</a> </li> {% endif %} {% endfor %} </ul>
brunocasanova/sequelize
docs/readthedocs_theme/toc.html
HTML
mit
1,384
<form class = "panel" title = "AJAX TbBMods" id = "TbBMods_Form"> <fieldset> <div class="row"><label>Label</label><input type = "text" id = "one" value = "Click ?" /></div> <div class="row"><label>Label</label><input type = "text" id = "two" value = "Click ?" /></div> <input type = "hidden" name = "TbBModHREF_help" value = "ajaxhelp.html" /> </fieldset> </form>
clofresh/syntacticbayleaves3
www.syntacticbayleaves.com/michelle/iui/ext-sandbox/TbBMod/formyes.html
HTML
bsd-3-clause
371
<!DOCTYPE html> <!-- Copyright (c) 2016 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width"> <link rel="author" title="Intel" href="http://www.intel.com"> <link rel="author" title="Li, Hao" href="mailto:haox.li@intel.com"> <link rel="help" href="https://crosswalk-project.org/jira/browse/XWALK-5774"> <div> <p> <strong>Test that upgrade app version to higher, Crosswalk Runtime Library from V(n-1) to V(n) in shared mode</strong> </p> <p> <strong>Test steps:</strong> </p> <ol> <li>Build "demo" app with Crosswalk V(n):<br/> $ crosswalk-pkg --crosswalk=/path/to/crosswalk-[V(n)].zip --platform=android --android=shared --targets=[arch] /path/to/testapps/demo</li> <li>Install Crosswalk runtime library V(n-1).</li> <li>Install the built "demo" with version "0.1", and launch it.</li> <li>Build "demo_upgrade" app with Crosswalk V(n):<br/> $ crosswalk-pkg --crosswalk=/path/to/crosswalk-[V(n)].zip --platform=android --android=shared --targets=[arch] /path/to/testapps/demo_upgrade</li> <li>Install Crosswalk runtime library V(n).</li> <li>Install the built "demo" with version "0.2", and launch it.</li> <li>Uninstall the installed app</li> </ol> <div> Note: <div> <ol> <li>Release candidate version of Crosswalk library = V(n)</li> <li>Released(old) app version = demo</li> <li>New app version = demo_upgrade</li> <li>These apks should be installed same test device</li> </ol> </div> <div> <p> <strong>Expected Output:</strong> </p> <ol> <li>The apk named like "demo" with version "0.1" is built successfully.</li> <li>The Crosswalk runtime library is installed successfully.</li> <li>The app named like "Demo V0.1" is installed and launched successfully.</li> <li>The Crosswalk runtime library is installed successfully.</li> <li>The app named like "Demo V0.1" is upgraded to "Demo V0.2", and launched successfully.</li> <li>The app is uninstalled successfully.</li> </ol> </div>
ibelem/crosswalk-test-suite
misc/crosswalk-compatibility-android-tests/compatibility/upgrade_shared2shared_aVnVn-1_bVnVn.html
HTML
bsd-3-clause
3,510
<div> If you want to always run this project on a specific node/slave, just specify its name. This works well when you have a small number of nodes. <p> As the size of the cluster grows, it becomes useful not to tie projects to specific slaves, as it hurts resource utilization when slaves may come and go. For such situation, assign labels to slaves to classify their capabilities and characteristics, and specify a boolean expression over those labels to decide where to run. <h3>Valid Operators</h3> <p> The following operators are supported, in the order of precedence. <dl> <dt>(expr)</dt> <dd>parenthesis</dd> <dt>!expr</dt> <dd>negation</dd> <dt>expr&amp;&amp;expr</dt> <dd> and </dd> <dt>expr||expr</dt> <dd> or </dd> <dt>a -> b</dt> <dd> "implies" operator. Equivalent to <tt>!a|b</tt>. For example, <tt>windows->x64</tt> could be thought of as "if run on a Windows slave, that slave must be 64bit." It still allows Jenkins to run this build on linux. </dd> <dt>a &lt;-> b</dt> <dd> "if and only if" operator. Equivalent to <tt>a&amp;&amp;b || !a&amp;&amp;!b</tt>. For example, <tt>windows->sfbay</tt> could be thought of as "if run on a Windows slave, that slave must be in the SF bay area, but if not on Windows, it must not be in the bay area." </dd> </dl> <p> All operators are left-associative (i.e., a->b->c &lt;-> (a->b)->c ) An expression can contain whitespace for better readability, and it'll be ignored. <p> Label names or slave names can be quoted if they contain unsafe characters. For example, <tt>"jenkins-solaris (Solaris)" || "Windows 2008"</tt> </div>
syl20bnr/jenkins
core/src/main/resources/hudson/model/AbstractProject/help-assignedLabelString.html
HTML
mit
1,888
<!DOCTYPE html> <!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --> <title>OffscreenCanvas test: 2d.fillStyle.parse.css-color-4-hsl-7</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/html/canvas/resources/canvas-tests.js"></script> <h1>2d.fillStyle.parse.css-color-4-hsl-7</h1> <p class="desc"></p> <p class="notes"> <script> var t = async_test(""); var t_pass = t.done.bind(t); var t_fail = t.step_func(function(reason) { throw reason; }); t.step(function() { var canvas = new OffscreenCanvas(100, 50); var ctx = canvas.getContext('2d'); ctx.fillStyle = '#f00'; ctx.fillStyle = 'hsl(133.33333333grad, 100.0%, 50.0%)'; ctx.fillRect(0, 0, 100, 50); _assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); t.done(); }); </script>
chromium/chromium
third_party/blink/web_tests/external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.css-color-4-hsl-7.html
HTML
bsd-3-clause
860
<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Invalid value for foo: "bar"</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css" media="screen">@import "../../css/common.css"; @import "../../css/documentation.css";</style> <script type="text/javascript"><!-- --></script> <link rel="start" href="http://feedvalidator.org/docs/" title="Home" /> </head> <body> <div id="logo"> <h1><a href="../../"><span id="feed"><span id="f">F</span><span id="e1">E</span><span id="e2">E</span></span><span id="d">D</span> Validator</a></h1> <p>Documentation</p> <a class="skip" href="#startnavigation">Jump to navigation</a> </div> <!--logo--> <div id="main"> <h2>Message</h2> <div class="docbody"> <p>Invalid value for <code>foo</code>: "<code>bar</code>"</p> </div> <h2>Explanation</h2> <div class="docbody"> <p>format is city and state/country, separated by a comma</p> </div> <h2>Solution</h2> <div class="docbody"> <p>Consult the <a href="http://base.google.com/base/attribute_list.html">documentation for the attribute</a> for further details.</p> </div> <h2>Not clear? Disagree?</h2> <div class="docbody"> <p>Let us know on the <a href="http://lists.sourceforge.net/lists/listinfo/feedvalidator-users">feedvalidator-users</a> discussion list!</p> </div> </div><!--main--> <div class="centered"> <a name="startnavigation" id="startnavigation"></a> <div class="navbarWrapper"> <div class="navbarContent"> <img class="borderTL" src="../../images/borderTL.gif" alt="" width="14" height="14" /> <img class="borderTR" src="../../images/borderTR.gif" alt="" width="14" height="14" /> <p> <a href="../../">Home</a> &middot; <a href="../../about.html">About</a> &middot; <a href="../../news/">News</a> &middot; <a href="../../docs/">Docs</a> &middot; <a href="../../terms.html">Terms</a> </p> <div class="roundedCornerSpacer">&nbsp;</div> </div><!-- .content --> <div class="bottomCorners"> <img class="borderBL" src="../../images/borderBL.gif" alt="" width="14" height="14" /> <img class="borderBR" src="../../images/borderBR.gif" alt="" width="14" height="14" /> </div><!-- .bottomCorners --> </div><!-- .contentWrapper --> </div><!-- .centered --> <div class="centered"> <address>Copyright &copy; 2002-4 <a href="http://diveintomark.org/">Mark Pilgrim</a> and <a href="http://www.intertwingly.net/blog/">Sam Ruby</a></address> </div> </body> </html>
AlphaCluster/NewsBlur
vendor/feedvalidator/demo/docs/error/InvalidLocation.html
HTML
mit
2,641
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html><head><title>Python: module telemetry.core.wpr_server</title> </head><body bgcolor="#f0f0f8"> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading"> <tr bgcolor="#7799ee"> <td valign=bottom>&nbsp;<br> <font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.wpr_server</strong></big></big></font></td ><td align=right valign=bottom ><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/wpr_server.py">telemetry/core/wpr_server.py</a></font></td></tr></table> <p><tt>#&nbsp;Copyright&nbsp;(c)&nbsp;2012&nbsp;The&nbsp;Chromium&nbsp;Authors.&nbsp;All&nbsp;rights&nbsp;reserved.<br> #&nbsp;Use&nbsp;of&nbsp;this&nbsp;source&nbsp;code&nbsp;is&nbsp;governed&nbsp;by&nbsp;a&nbsp;BSD-style&nbsp;license&nbsp;that&nbsp;can&nbsp;be<br> #&nbsp;found&nbsp;in&nbsp;the&nbsp;LICENSE&nbsp;file.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#aa55cc"> <td colspan=3 valign=bottom>&nbsp;<br> <font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr> <tr><td bgcolor="#aa55cc"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td> <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.core.forwarders.html">telemetry.core.forwarders</a><br> </td><td width="25%" valign=top><a href="telemetry.core.util.html">telemetry.core.util</a><br> </td><td width="25%" valign=top><a href="webpagereplay.html">webpagereplay</a><br> </td><td width="25%" valign=top></td></tr></table></td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#ee77aa"> <td colspan=3 valign=bottom>&nbsp;<br> <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr> <tr><td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td> <td width="100%"><dl> <dt><font face="helvetica, arial"><a href="__builtin__.html#object">__builtin__.object</a> </font></dt><dd> <dl> <dt><font face="helvetica, arial"><a href="telemetry.core.wpr_server.html#ReplayServer">ReplayServer</a> </font></dt></dl> </dd> </dl> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#ffc8d8"> <td colspan=3 valign=bottom>&nbsp;<br> <font color="#000000" face="helvetica, arial"><a name="ReplayServer">class <strong>ReplayServer</strong></a>(<a href="__builtin__.html#object">__builtin__.object</a>)</font></td></tr> <tr><td bgcolor="#ffc8d8"><tt>&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td> <td width="100%">Methods defined here:<br> <dl><dt><a name="ReplayServer-Close"><strong>Close</strong></a>(self)</dt></dl> <dl><dt><a name="ReplayServer-__enter__"><strong>__enter__</strong></a>(self)</dt></dl> <dl><dt><a name="ReplayServer-__exit__"><strong>__exit__</strong></a>(self, *args)</dt></dl> <dl><dt><a name="ReplayServer-__init__"><strong>__init__</strong></a>(self, browser_backend, path, is_record_mode, is_append_mode, make_javascript_deterministic)</dt></dl> <hr> Data descriptors defined here:<br> <dl><dt><strong>__dict__</strong></dt> <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd> </dl> <dl><dt><strong>__weakref__</strong></dt> <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt></dd> </dl> </td></tr></table></td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#eeaa77"> <td colspan=3 valign=bottom>&nbsp;<br> <font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td></tr> <tr><td bgcolor="#eeaa77"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td> <td width="100%"><dl><dt><a name="-GetChromeFlags"><strong>GetChromeFlags</strong></a>(replay_host, port_pairs)</dt></dl> </td></tr></table> </body></html>
boundarydevices/android_external_chromium_org
tools/telemetry/docs/telemetry.core.wpr_server.html
HTML
bsd-3-clause
4,182
<!DOCTYPE html> <!-- Distributed under both the W3C Test Suite License [1] and the W3C 3-clause BSD License [2]. To contribute to a W3C Test Suite, see the policies and contribution forms [3]. [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license [3] http://www.w3.org/2004/10/27-testcases --> <html> <head> <title>Shadow DOM Test: A_05_04_09</title> <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> <link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#events-that-are-always-stopped"> <meta name="assert" content="The following events must always be stopped at the nearest shadow boundary: abort, error, select, change, load, reset, resize, scroll, selectstart"> <script src="../../../../../resources/testharness.js"></script> <script src="../../../../../resources/testharnessreport.js"></script> <script src="../../testcommon.js"></script> <link rel="stylesheet" href="../../../../../resources/testharness.css"> </head> <body> <div id="log"></div> <script> var A_05_04_09_T01 = async_test('A_05_04_09_T01'); A_05_04_09_T01.step(unit(function (ctx) { var d = newRenderedHTMLDocument(ctx); var host = d.createElement('div'); host.setAttribute('style', 'height:50%; width:100%'); host.setAttribute('id', 'host'); d.body.appendChild(host); //Shadow root to play with var s = host.createShadowRoot(); var inp1 = d.createElement('input'); inp1.setAttribute('id', 'inp1'); inp1.setAttribute('type', 'text'); inp1.setAttribute('value', '12345'); s.appendChild(inp1); s.addEventListener('selectstart', A_05_04_09_T01.step_func(function(event) { assert_equals(event.target.getAttribute('id'), 'inp1', 'Inside shadoe tree: Wrong target'); }), false); d.body.addEventListener('selectstart', A_05_04_09_T01.step_func(function(event) { assert_true(false, 'selectstart event should always be stopped at Shadow boundary'); }), false); var event = d.createEvent('UIEvent'); event.initUIEvent ('selectstart', true, false); inp1.dispatchEvent(event); A_05_04_09_T01.done(); })); </script> </body> </html>
vadimtk/chrome4sdp
third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/events/events-that-are-always-stopped/test-009.html
HTML
bsd-3-clause
2,210
<!DOCTYPE html> <title> title.text and space normalization </title> <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-title-text"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <div id="log"></div> <script> test(function() { assert_equals(document.getElementsByTagName("title")[0].text, " title.text and space normalization "); assert_equals(document.getElementsByTagName("title")[0].textContent, " title.text and space normalization "); assert_equals(document.getElementsByTagName("title")[0].firstChild.nodeValue, " title.text and space normalization "); }, "title.text and space normalization (markup)"); [ "one space", "two spaces", "one\ttab", "two\t\ttabs", "one\nnewline", "two\n\nnewlines", "one\fform feed", "two\f\fform feeds", "one\rcarriage return", "two\r\rcarriage returns" ].forEach(function(str) { test(function() { document.title = str; var title = document.getElementsByTagName("title")[0]; assert_equals(title.text, str); assert_equals(title.textContent, str); assert_equals(title.firstChild.nodeValue, str); }, "title.text and space normalization: " + format_value(str)) }); </script>
youtube/cobalt
third_party/web_platform_tests/html/semantics/document-metadata/the-title-element/title.text-03.html
HTML
bsd-3-clause
1,309
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Code Viewer</title> <link id="codestyle" rel="stylesheet" type="text/css" href="../../../css/theme.css" media="all" /> <script type="text/javascript" src="../../../js/syntaxhighlighter.js"></script> <style> .syntaxhighlighter { overflow-y: hidden !important; } </style> </head> <body> <pre id="code" class="brush: javascript"> /** * GETパラメータを配列にして返す * * @return パラメータのObject * */ var getUrlVars = function(){ var vars = {}; var param = location.search.substring(1).split(&apos;&amp;&apos;); for(var i = 0; i &lt; param.length; i++) { var keySearch = param[i].search(/=/); var key = &apos;&apos;; if(keySearch != -1) key = param[i].slice(0, keySearch); var val = param[i].slice(param[i].indexOf(&apos;=&apos;, 0) + 1); if(key != &apos;&apos;) vars[key] = decodeURI(val); } return vars; } var parameters = getUrlVars(); if(&quot;therma&quot; in parameters) { if(parameters[&quot;therma&quot;] === &quot;dark&quot;) { var styleElement = document.getElementById(&apos;codestyle&apos;); styleElement.href = &quot;../../../css/darkTheme.css&quot;; } } var codeElement = document.getElementById(&apos;code&apos;); if(&quot;line&quot; in parameters) { codeElement.className = &quot;brush: csharp highlight: &quot;+parameters[&quot;line&quot;]; window.addEventListener(&quot;load&quot;, ()=&gt;{ var alllines = document.getElementsByTagName(&quot;div&quot;); for(var i = 0;i&lt;alllines.length;i++) { if(alllines[i].className.indexOf(`number${parameters[&quot;line&quot;]} `) !== -1) { window.scrollTo(0, alllines[i].offsetTop - window.innerHeight/2); break; } } }, false); } </pre> <script type="text/javascript" src="../../../js/code.js"> </script> </body> </html>
banban525/InspectCodeViewer
demo/revisions/00020/codes/src_html_js_code.js.html
HTML
mit
2,082
{# TEMPLATE VAR SETTINGS #} {%- set url_root = pathto('', 1) %} {%- if url_root == '#' %}{% set url_root = '' %}{% endif %} {%- if not embedded and docstitle %} {%- set titlesuffix = " &mdash; "|safe + docstitle|e %} {%- else %} {%- set titlesuffix = "" %} {%- endif %} <!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> {{ metatags }} <meta name="viewport" content="width=device-width, initial-scale=1.0"> {% block htmltitle %} <title>{{ title|striptags|e }}{{ titlesuffix }}</title> {% endblock %} {# FAVICON #} {% if favicon %} <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/> {% endif %} {# CSS #} {# OPENSEARCH #} {% if not embedded %} {% if use_opensearch %} <link rel="search" type="application/opensearchdescription+xml" title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}" href="{{ pathto('_static/opensearch.xml', 1) }}"/> {% endif %} {% endif %} {# RTD hosts this file, so just load on non RTD builds #} {% if not READTHEDOCS %} <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" /> {% endif %} {% for cssfile in css_files %} <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" /> {% endfor %} {% for cssfile in extra_css_files %} <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" /> {% endfor %} {%- block linktags %} {%- if hasdoc('about') %} <link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}"/> {%- endif %} {%- if hasdoc('genindex') %} <link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}"/> {%- endif %} {%- if hasdoc('search') %} <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}"/> {%- endif %} {%- if hasdoc('copyright') %} <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}"/> {%- endif %} <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}"/> {%- if parents %} <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}"/> {%- endif %} {%- if next %} <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}"/> {%- endif %} {%- if prev %} <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}"/> {%- endif %} {%- endblock %} {%- block extrahead %} {% endblock %} {# Keep modernizr in head - http://modernizr.com/docs/#installing #} <script src="_static/js/modernizr.min.js"></script> </head> <body class="wy-body-for-nav" role="document"> <div class="wy-grid-for-nav"> {# SIDE NAV, TOGGLES ON MOBILE #} <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-nav-search"> {% block sidebartitle %} {% if logo and theme_logo_only %} <a href="{{ pathto(master_doc) }}"> {% else %} <a href="{{ pathto(master_doc) }}" class="icon icon-home"> {{ project }} {% endif %} {% if logo %} {# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #} <img src="{{ pathto('_static/' + logo, 1) }}" class="logo" /> {% endif %} </a> <br/><a href="/_files/MAME.pdf">PDF</a>&nbsp;&nbsp;<a href="/_files/MAME.epub">EPUB</a> {% include "searchbox.html" %} {% endblock %} </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> {% block menu %} {% set toctree = toctree(maxdepth=4, collapse=False, includehidden=True) %} {% if toctree %} {{ toctree }} {% else %} <!-- Local TOC --> <div class="local-toc">{{ toc }}</div> {% endif %} {% endblock %} </div> &nbsp; </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> {# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #} <nav class="wy-nav-top" role="navigation" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="{{ pathto(master_doc) }}">{{ project }}</a> </nav> {# PAGE CONTENT #} <div class="wy-nav-content"> <div class="rst-content"> {% include "breadcrumbs.html" %} <div role="main" class="document"> {% block body %}{% endblock %} </div> {% include "footer.html" %} </div> </div> </section> </div> {% include "versions.html" %} {% if not embedded %} <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'{{ url_root }}', VERSION:'{{ release|e }}', COLLAPSE_INDEX:false, FILE_SUFFIX:'{{ '' if no_search_suffix else file_suffix }}', HAS_SOURCE: {{ has_source|lower }} }; </script> {%- for scriptfile in script_files %} <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script> {%- endfor %} {% endif %} {# RTD hosts this file, so just load on non RTD builds #} {% if not READTHEDOCS %} <script type="text/javascript" src="{{ pathto('_static/js/theme.js', 1) }}"></script> {% endif %} {# STICKY NAVIGATION #} {% if theme_sticky_navigation %} <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.StickyNav.enable(); }); </script> {% endif %} {%- block footer %} {% endblock %} </body> </html>
mamedev/docs
themes/sphinx_rtd_theme/layout.html
HTML
cc0-1.0
5,842
<!DOCTYPE html> <div style="width: 100px; height: 100px; border: solid; box-sizing: border-box"> <div id="cell" style="width: 100%; height: 100%; background: green; overflow: auto"> <div style="width: 200px; height: 50px; background: hotpink; border: 2px solid yellow"></div> </div> </div> <script> onload = () => { cell.scrollLeft = 120; } </script>
nwjs/chromium.src
third_party/blink/web_tests/external/wpt/css/css-tables/table-cell-overflow-auto-scrolled-ref.html
HTML
bsd-3-clause
363
--- layout: default --- <div class="page-title misc-content"> <h1> {{ page.title }} </h1> <article> {{ content }} </article> </div>
angkao51/rd_frm_formosa
_layouts/misc.html
HTML
mit
145
<div ng-controller="AppCtrl" ng-cloak> <md-content class="md-padding" layout-xs="column" layout="row"> <div flex-xs flex-gt-xs="50" layout="column"> <md-card> <img ng-src="{{imagePath}}" class="md-card-image" alt="Washed Out"> <md-card-title> <md-card-title-text> <span class="md-headline">In-card mixed actions</span> </md-card-title-text> </md-card-title> <md-card-actions layout="row" layout-align="start center"> <md-card-icon-actions> <md-button class="md-icon-button" aria-label="Favorite"> <md-icon md-svg-icon="img/icons/favorite.svg"></md-icon> </md-button> <md-button class="md-icon-button" aria-label="Share"> <md-icon md-svg-icon="img/icons/baseline-share-24px.svg"></md-icon> </md-button> </md-card-icon-actions> <md-button>Action 1</md-button> <md-button>Action 2</md-button> </md-card-actions> <md-card-content> <p> The titles of Washed Out's breakthrough song and the first single from Paracosm share the two most important words in Ernest Greene's musical language: feel it. It's a simple request, as well... </p> </md-card-content> </md-card> <md-card> <md-card-header> <md-card-avatar> <img class="md-user-avatar" src="img/100-2.jpeg"/> </md-card-avatar> <md-card-header-text> <span class="md-title">User</span> <span class="md-subhead">subhead</span> </md-card-header-text> </md-card-header> <img ng-src="{{imagePath}}" class="md-card-image" alt="Washed Out"> <md-card-title> <md-card-title-text> <span class="md-headline">In-card mixed actions</span> <span class="md-subhead">Reversed</span> </md-card-title-text> </md-card-title> <md-card-actions layout="row" layout-align="start center"> <md-button>Action 1</md-button> <md-button>Action 2</md-button> <md-card-icon-actions> <md-button class="md-icon-button" aria-label="toggle"> <md-icon md-svg-icon="md-toggle-arrow"></md-icon> </md-button> </md-card-icon-actions> </md-card-actions> <md-card-content> <p> The titles of Washed Out's breakthrough song and the first single from Paracosm share the two most important words in Ernest Greene's musical language: feel it. It's a simple request, as well... </p> </md-card-content> </md-card> </div> <div flex-xs flex-gt-xs="50" layout="column"> <md-card> <md-card-header> <md-card-avatar> <md-icon class="md-avatar-icon" md-svg-icon="img/icons/menu.svg"></md-icon> </md-card-avatar> <md-card-header-text> <span class="md-title">Title</span> <span class="md-subhead">subhead</span> </md-card-header-text> </md-card-header> <img ng-src="{{imagePath}}" class="md-card-image" alt="Washed Out"> <md-card-title> <md-card-title-text> <span class="md-headline">In-card actions</span> <span class="md-subhead">Description</span> </md-card-title-text> </md-card-title> <md-card-actions layout="row" layout-align="start center"> <md-button>Action 1</md-button> <md-button>Action 2</md-button> </md-card-actions> <md-card-content> <p> The titles of Washed Out's breakthrough song and the first single from Paracosm share the two most important words in Ernest Greene's musical language: feel it. It's a simple request, as well... </p> </md-card-content> </md-card> </div> </md-content> </div>
Splaktar/material
src/components/card/demoInCardActions/index.html
HTML
mit
3,974
<body bgcolor=#ffffff> <center><img src=images/dnsadmin.gif></center> <h2><i>³o­Ó»¡©ú­¶©|¥¼§¹¦¨</i></h2> <hr> <h3>²¤¶</h3> ³o­Ó¼Ò²Õ¥i¥HÅý±z²ÕºA±z¨t²Î¤Wªº bind (Berkely Internet Name Daemon) DNS ¦øªA¾¹. DNS ¦øªA¾¹ªº¤u§@¬O±N¥D¾÷¦WºÙ¨Ò¦p <i>www.foo.com</i> Âà´«¦¨ IP ¦ì§}¨Ò¦p <i>10.1.2.3</i>, ©Î±N IP ¦ì§}Âà´«¦¨¥D¾÷¦WºÙ. <hr> <h3>DNS °ò¦</h3> ¨C¤@­Ó DNS ¦øªA¾¹³£·|ºÞ²z¤@¨Ç¥¿¦V©Î¤Ï¦Vªººô°ì. ¹ï¤@­Ó¥¿¦Vªºªººô°ì¬O¹³ <i>foo.com</i>, ¦Ó¤Ï¦Vªººô°ì¬O¹³ <i>204.165.66</i>. ¹ï©ó¨C¤@­Óºô°ì, DNS ¦øªA¾¹¥i¥H¬O¥D±±ªº¦øªA¾¹ (ºô°ì­ì©l¸ê®Æªº¨Ó·½), ©Î³Q±±¦øªA¾¹ (ºô°ìªº³Æ¥÷¸ê®Æ). <p> <dl> <dt><b>¥¿¦Vºô°ì</b> <dd>¦pªG±zªº DNS ºÞ²z¤@­Ó¥¿¦Vºô°ì¨Ò¦p <i>foo.com</i>, «h¥¦±N¥i¥H¦^µª¹ï¨äºô°ì¤¤¥D¾÷¦WºÙªº¬d¸ß. ¹ï©ó³o­Óºô°ì¦Ó¨¥, ³o¬O¥D±±ªº¦øªA¾¹. ±z¥i¥H¨Ï¥Î³o­Ó¼Ò²Õ¥H¼W¥[¥D¾÷ (©Î¨ä¥L¬ö¿ý) ¨ìºô°ì¤¤. ¹ï©ó³Q±±ªº¦øªA¾¹¦Ó¨¥, ±z¥i¥H«ü©w¤U¸ü¸ê®Æ¨Ó·½ªº¥D±±¦øªA¾¹. <p> <dt><b>¤Ï¦Vºô°ì</b> <dd>¤Ï¦Vºô°ì¬O¤@²Õ IP ¦ì§} (¹³¬O <i>203.165.66.77</i>) »P¥D¾÷¦WºÙ (¹³¬O <i>www.foo.com</i>) ªº¹ïÀ³. ¹ï©ó©ÒÄݪººô°ìªº¥D±±¦øªA¾¹, ³o­Ó¼Ò²Õ¥i¥HÅý±z¼W¥[ IP ¨ì¥D¾÷¦WºÙªº¹ïÀ³¬ö¿ý. ¹ï©ó³Q±±ªº¦øªA¾¹¦Ó¨¥, ±z¥i¥H«ü©w¤U¸ü¸ê®Æ¨Ó·½ªº¥D±±¦øªA¾¹. <p> </dl> <hr> <h3>³]©w DNS ¦øªA¾¹</h3> ¦pªG±zªº¨t²Î¤w¸g¦b°õ¦æ BIND DNS ¦øªA¾¹, «h±z¥i¥H©¿²¤³o¤@¸`. µM¦Ó, ¦pªG Webmin »{¬°¦b±zªº¨t²Î¤W§ä¤£¨ì¥D±±ªº DNS ¦øªA°_²ÕºAÀÉ (¤@¯ë¬O <tt>/etc/named.boot</tt>), ¥¦·|°²³]±z©|¥¼³]©w¦øªA¾¹. <p> ¹ï©ó¤@¯ë©Êªººô»Úºô¸ô¨Ï¥Î, DNS ¦øªA¾¹·|¦³¤@¨t¦Cªº®Ú¦WºÙ¦øªA¾¹, ¦p¦¹¥¦¤~¯à¦^µª¥X¤£ÄÝ©ó©ÒºÞÁÒ½d³ò¤ºªººô°ì. ¦pªG±zªº¦øªA¾¹©|¥¼³Q³]©w, Webmin ¥i¥H: <ol> <li>±q <tt>rs.internic.net</tt> ¤U¸ü³o­Ó¦Cªí. °²³]³o­Ó°õ¦æ Webmin ªº¥D¾÷¥i¥H³s±µ¨ìºô»Úºô¸ô, ¥B¥¼³Q¨¾¤õÀð©Òªý¹j, ³o±N¬O³Ì¨Îªº¿ï¶µ. <p> <li>¨Ï¥Î»P Webmin ¤@¦P´²§Gªº¦Cªí. ¦]¬°®Ú¦WºÙ¦øªA¾¹¤£¤Ó·|ÅܰÊ, ©Ò¥H³oÀ³¸Ó¯à¥¿±`ªº¤u§@. <p> <li>±N¦WºÙ¦øªA¾¹³]©w¦¨ '¤º³¡' ¨Ï¥Îªº. ¦pªG±zªººô¸ô¨S¦³³s±µ¨ìºô»Úºô¸ô, ³oÀ³¸Ó¬O±z©Ò·Q­nªº. <p> </ol> <hr> <h3>«Ø¥ß¥D±±ºô°ì</h3> ­n«Ø¥ß¤@­Ó¥D±±ºô°ì, ±z¥²¶·¶ñ¼g¦b<a href=/dnsadmin/>DNS ¦øªA¾¹</a>­¶¤¤<b>¼W¥[·sªº¥D±±°Ï°ì</b>¤U­±ªºªí³æ. ¨äÄæ¦ìªº·N¸q¬°: <ul> <li><b>°Ï°ìÃþ§O</b><br> ¨M©w³o¬O¤@­Ó¥¿¦V©Î¤Ï¦Vªººô°ì<p> <li><b>ºô°ì¦WºÙ/ºô¸ô</b><br> ¹ï©ó¥¿¦Vªººô°ì¦Ó¨¥, ³oÃä­n¥[¤J­nºÞ²zªººô°ì¦WºÙ (¨Ò¦p <tt>foo.com</tt>). ¹ï©ó¤Ï¦Vªººô°ì¦Ó¨¥, ³oÃä­n¥[¤J­nºÞ²zªº IP ºô¸ô (¨Ò¦p <tt>203.123.221</tt>). <p> <li><b>¬ö¿ýÀÉ</b><br> ³o®ÉÀx¦sºô°ì¸ê°Tªº¬ö¿ýÀÉÀɦW. ¦pªG±z¤£¶ñ³o¤@Äæ, ±N·|¦Û°Ê²£¥Í¤@­Ó¾A¥ÎªºÀɦW. <p> <li><b>¹q¤l¶l¥ó¦ì§}</b><br> ¨C¤@­Ó DNS ºô°ì³£­n¦³¤@­ÓªþÄݪº¹q¤l¶l¥ó¦ì§}, ³o¬O­t³d³o­Óºô°ìªºÁpµ¸¤H. <p> <li><b>¥D±±¦øªA¾¹</b><br> ³o¥²¶·¬O¤@­Ó­t³d¦¹ºô°ìªº¦WºÙ¦øªA¾¹§¹¾ã¦WºÙ. ³o´X¥G¥Ã»·¬O±z°õ¦æ Webmin ªº¥D¾÷. <p> </ul> <hr> <h3>«Ø¥ß³Q±±ºô°ì</h3> <hr> <h3>½s¿è¥D±±ºô°ì</h3> <hr> <h3>½s¿èºô°ì¾÷³À</h3> <hr> <a href="/"><img alt="<-" align=middle border=0 src=/images/left.gif></a> &nbsp;&nbsp;<a href="">¦^¨ì¼Ò²Õ</a><p>
HasClass0/webmin
dnsadmin/help/intro.zh_TW.Big5.html
HTML
bsd-3-clause
2,733
{% comment %} Django's JavaScript i18n Implementation {% endcomment %} <script type="text/javascript" src="{% url 'horizon:jsi18n' 'horizon' %}"></script>
ankur-gupta91/horizon-net-ip
horizon/templates/horizon/_script_i18n.html
HTML
apache-2.0
155
<!DOCTYPE HTML> <html manifest="../resources/manifest/clock.manifest"> <head> <title>Offline Application Cache - Event_cached</title> <script src="../../../../../../resources/testharness.js"></script> <script src="../../../../../../resources/testharnessreport.js"></script> </head> <body> <div id="log"></div> <script> var t = async_test("cached event test"); var cache = window.applicationCache; cache.oncached = t.done(); </script> </body> </html>
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/offline/introduction-4/event_cached.html
HTML
bsd-3-clause
502
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js"><span id='Ext-form-action-Submit'>/** </span> * A class which handles submission of data from {@link Ext.form.Basic Form}s and processes the returned response. * * Instances of this class are only created by a {@link Ext.form.Basic Form} when * {@link Ext.form.Basic#submit submit}ting. * * # Response Packet Criteria * * A response packet may contain: * * - **`success`** property : Boolean - required. * * - **`errors`** property : Object - optional, contains error messages for invalid fields. * * # JSON Packets * * By default, response packets are assumed to be JSON, so a typical response packet may look like this: * * { * success: false, * errors: { * clientCode: &quot;Client not found&quot;, * portOfLoading: &quot;This field must not be null&quot; * } * } * * Other data may be placed into the response for processing by the {@link Ext.form.Basic}'s callback or event handler * methods. The object decoded from this JSON is available in the {@link Ext.form.action.Action#result result} property. * * Alternatively, if an {@link Ext.form.Basic#errorReader errorReader} is specified as an * {@link Ext.data.reader.Xml XmlReader}: * * errorReader: new Ext.data.reader.Xml({ * record : 'field', * success: '@success' * }, [ * 'id', 'msg' * ] * ) * * then the results may be sent back in XML format: * * &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; * &lt;message success=&quot;false&quot;&gt; * &lt;errors&gt; * &lt;field&gt; * &lt;id&gt;clientCode&lt;/id&gt; * &lt;msg&gt;&lt;![CDATA[Code not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt; * &lt;/field&gt; * &lt;field&gt; * &lt;id&gt;portOfLoading&lt;/id&gt; * &lt;msg&gt;&lt;![CDATA[Port not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt; * &lt;/field&gt; * &lt;/errors&gt; * &lt;/message&gt; * * Other elements may be placed into the response XML for processing by the {@link Ext.form.Basic}'s callback or event * handler methods. The XML document is available in the {@link Ext.form.Basic#errorReader errorReader}'s * {@link Ext.data.reader.Xml#xmlData xmlData} property. */ Ext.define('Ext.form.action.Submit', { extend:'Ext.form.action.Action', alternateClassName: 'Ext.form.Action.Submit', alias: 'formaction.submit', <span id='Ext-form-action-Submit-property-type'> type: 'submit', </span> <span id='Ext-form-action-Submit-cfg-clientValidation'> /** </span> * @cfg {Boolean} [clientValidation=true] * Determines whether a Form's fields are validated in a final call to {@link Ext.form.Basic#isValid isValid} prior * to submission. Pass false in the Form's submit options to prevent this. */ <span id='Ext-form-action-Submit-method-run'> // inherit docs </span> run : function(){ var me = this, form = me.form; if (me.clientValidation === false || form.isValid()) { me.doSubmit(); } else { // client validation failed me.failureType = Ext.form.action.Action.CLIENT_INVALID; form.afterAction(me, false); } }, <span id='Ext-form-action-Submit-method-doSubmit'> /** </span> * @private * Performs the submit of the form data. */ doSubmit: function() { var me = this, ajaxOptions = Ext.apply(me.createCallback(), { url: me.getUrl(), method: me.getMethod(), headers: me.headers }), form = me.form, jsonSubmit = me.jsonSubmit || form.jsonSubmit, paramsProp = jsonSubmit ? 'jsonData' : 'params', formEl, formInfo; // For uploads we need to create an actual form that contains the file upload fields, // and pass that to the ajax call so it can do its iframe-based submit method. if (form.hasUpload()) { formInfo = me.buildForm(); ajaxOptions.form = formInfo.formEl; ajaxOptions.isUpload = true; } else { ajaxOptions[paramsProp] = me.getParams(jsonSubmit); } Ext.Ajax.request(ajaxOptions); if (formInfo) { me.cleanup(formInfo); } }, <span id='Ext-form-action-Submit-method-cleanup'> cleanup: function(formInfo) { </span> var formEl = formInfo.formEl, uploadEls = formInfo.uploadEls, uploadFields = formInfo.uploadFields, len = uploadFields.length, i, field; for (i = 0; i &lt; len; ++i) { field = uploadFields[i]; if (!field.clearOnSubmit) { field.restoreInput(uploadEls[i]); } } if (formEl) { Ext.removeNode(formEl); } }, <span id='Ext-form-action-Submit-method-getParams'> /** </span> * @private * Builds the full set of parameters from the field values plus any additional configured params. */ getParams: function(useModelValues) { var falseVal = false, configParams = this.callParent(), fieldParams = this.form.getValues(falseVal, falseVal, this.submitEmptyText !== falseVal, useModelValues); return Ext.apply({}, fieldParams, configParams); }, <span id='Ext-form-action-Submit-method-buildForm'> /** </span> * @private * Builds a form element containing fields corresponding to all the parameters to be * submitted (everything returned by {@link #getParams}. * * NOTE: the form element is automatically added to the DOM, so any code that uses * it must remove it from the DOM after finishing with it. * * @return {HTMLElement} */ buildForm: function() { var me = this, fieldsSpec = [], formSpec, formEl, basicForm = me.form, params = me.getParams(), uploadFields = [], uploadEls = [], fields = basicForm.getFields().items, i, len = fields.length, field, key, value, v, vLen, el; for (i = 0; i &lt; len; ++i) { field = fields[i]; // can only have a selected file value after being rendered if (field.rendered &amp;&amp; field.isFileUpload()) { uploadFields.push(field); } } for (key in params) { if (params.hasOwnProperty(key)) { value = params[key]; if (Ext.isArray(value)) { vLen = value.length; for (v = 0; v &lt; vLen; v++) { fieldsSpec.push(me.getFieldConfig(key, value[v])); } } else { fieldsSpec.push(me.getFieldConfig(key, value)); } } } formSpec = { tag: 'form', action: me.getUrl(), method: me.getMethod(), target: me.target || '_self', style: 'display:none', cn: fieldsSpec }; // Set the proper encoding for file uploads if (uploadFields.length) { formSpec.encoding = formSpec.enctype = 'multipart/form-data'; } // Create the form formEl = Ext.DomHelper.append(Ext.getBody(), formSpec); // Special handling for file upload fields: since browser security measures prevent setting // their values programatically, and prevent carrying their selected values over when cloning, // we have to move the actual field instances out of their components and into the form. len = uploadFields.length; for (i = 0; i &lt; len; ++i) { el = uploadFields[i].extractFileInput(); formEl.appendChild(el); uploadEls.push(el); } return { formEl: formEl, uploadFields: uploadFields, uploadEls: uploadEls }; }, <span id='Ext-form-action-Submit-method-getFieldConfig'> getFieldConfig: function(name, value) { </span> return { tag: 'input', type: 'hidden', name: name, value: Ext.String.htmlEncode(value) }; }, <span id='Ext-form-action-Submit-method-onSuccess'> /** </span> * @private */ onSuccess: function(response) { var form = this.form, success = true, result = this.processResponse(response); if (result !== true &amp;&amp; !result.success) { if (result.errors) { form.markInvalid(result.errors); } this.failureType = Ext.form.action.Action.SERVER_INVALID; success = false; } form.afterAction(this, success); }, <span id='Ext-form-action-Submit-method-handleResponse'> /** </span> * @private */ handleResponse: function(response) { var form = this.form, errorReader = form.errorReader, rs, errors, i, len, records, result; if (errorReader) { rs = errorReader.read(response); records = rs.records; errors = []; if (records) { for(i = 0, len = records.length; i &lt; len; i++) { errors[i] = records[i].data; } } if (errors.length &lt; 1) { errors = null; } result = { success : rs.success, errors : errors }; } else { try { result = Ext.decode(response.responseText); } catch (e) { result = { success: false, errors: [] }; } } return result; } }); </pre> </body> </html>
abarry/sf2-extjs
web/bundles/sfrdemosf2extjs/js/ext-4.2.1.883/docs/source/Submit.html
HTML
mit
10,929
<!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>guard(1) - Guard keeps an eye on your file modifications.</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="#DESCRIPTION">DESCRIPTION</a> <a href="#SYNOPSIS">SYNOPSIS</a> <a href="#COMMANDS">COMMANDS</a> <a href="#EXAMPLES">EXAMPLES</a> <a href="#AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</a> <a href="#CHANGELOG">CHANGELOG</a> <a href="#WWW">WWW</a> </div> <ol class='man-decor man-head man head'> <li class='tl'>guard(1)</li> <li class='tc'></li> <li class='tr'>guard(1)</li> </ol> <h2 id="NAME">NAME</h2> <p class="man-name"> <code>guard</code> - <span class="man-whatis">Guard keeps an eye on your file modifications.</span> </p> <h2 id="DESCRIPTION">DESCRIPTION</h2> <p>Guard is a command line tool to easily handle events on file system modifications.</p> <h2 id="SYNOPSIS">SYNOPSIS</h2> <p><code>guard &lt;COMMAND> &lt;OPTIONS></code></p> <h2 id="COMMANDS">COMMANDS</h2> <h3 id="start">start</h3> <p>Starts Guard. This is the default command if none is provided.</p> <p>The following options are available:</p> <p><code>-c</code>, <code>--clear</code> Clears the Shell after each change.</p> <p><code>-n</code>, <code>--notify</code> <var>FLAG</var> Disable notifications (Growl or Libnotify depending on your system). Notifications can be disabled globally by setting a GUARD_NOTIFY environment variable to false. FLAG can be <code>true</code>/<code>false</code> or <code>t</code>/<code>f</code>.</p> <p><code>-g</code>, <code>--group</code> <var>GROUP1</var> <var>GROUP2</var>... Scopes the Guard actions to the groups specified by GROUP1, GROUP2, etc. Group names should be separated by spaces. Plugins that don't belong to a group are considered global and are always run.</p> <p><code>-P</code>, <code>--plugin</code> <var>PLUGIN1</var> <var>PLUGIN2</var>... Scopes the Guard actions to the plugins specified by PLUGIN1, PLUGIN2, etc. Plugin names should be separated by spaces.</p> <p><code>-d</code>, <code>--debug</code> Runs Guard in debug mode.</p> <p><code>-w</code>, <code>--watchdir</code> <var>PATH</var> Tells Guard to watch PATH instead of <code>./</code>.</p> <p><code>-G</code>, <code>--guardfile</code> <var>FILE</var> Tells Guard to use FILE as its Guardfile instead of <code>./Guardfile</code> or <code>~/.Guardfile</code>.</p> <p><code>-i</code>, <code>--no-interactions</code> Turn off completely any Guard terminal interactions.</p> <p><code>-B</code>, <code>--no-bundler-warning</code> Turn off warning when Bundler is not present.</p> <p><code>-l</code>, <code>--latency</code> Overwrite Listen's default latency.</p> <p><code>-p</code>, <code>--force-polling</code> Force usage of the Listen polling listener.</p> <p><code>-y</code>, <code>--wait-for-delay</code> Overwrite Listen's default <code>wait_for_delay</code>, useful for kate-like editors through ssh access.</p> <h3 id="init-GUARDS-">init [GUARDS]</h3> <p>If no Guardfile is present in the current directory, creates an empty Guardfile.</p> <p>If <var>GUARDS</var> are present, add their default Guardfile configuration to the current Guardfile. Note that <var>GUARDS</var> is a list of the Guard plugin names without the <code>guard-</code> prefix. For instance to initialize guard-rspec, run <code>guard init rspec</code>.</p> <h3 id="list">list</h3> <p>Lists Guard plugins that can be used with the <code>init</code> command.</p> <h3 id="-T-show">-T, show</h3> <p>List defined groups and Guard plugins for the current Guardfile.</p> <h3 id="-h-help-COMMAND-">-h, help [COMMAND]</h3> <p>List all of Guard's available commands.</p> <p>If <var>COMMAND</var> is given, displays a specific help for <var>TASK</var>.</p> <h2 id="EXAMPLES">EXAMPLES</h2> <p>Initialize Guard and a specific Guard plugin at the same time:</p> <p><code>[bundle exec] guard init [rspec]</code></p> <p>Run Guard:</p> <p><code>[bundle exec] guard [start] --watchdir ~/dev --guardfile ~/env/Guardfile --clear --group backend frontend --notify false --debug</code></p> <p>or in a more concise way:</p> <p><code>[bundle exec] guard [start] -w ~/dev -G ~/env/Guardfile -c -g backend frontend -n f -d</code></p> <h2 id="AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</h2> <p>Thibaud Guillaume-Gentil is the main author.</p> <p>A list of contributors based on all commits can be found here: https://github.com/guard/guard/contributors</p> <h2 id="CHANGELOG">CHANGELOG</h2> <p>The changelog can be found at: https://github.com/guard/guard/blob/master/CHANGELOG.md</p> <p>This manual has been written by Remy Coutable.</p> <h2 id="WWW">WWW</h2> <p>http://guardgem.org/</p> <ol class='man-decor man-foot man foot'> <li class='tl'></li> <li class='tc'>November 2014</li> <li class='tr'>guard(1)</li> </ol> </div> </body> </html>
eprislac/guard-yard
vendor/ruby/2.3.0/gems/guard-2.12.5/man/guard.1.html
HTML
mit
7,185
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <title>Editor example - Responsive table extension</title> <link rel="stylesheet" type="text/css" href="../../../../media/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="../../../Responsive/css/dataTables.responsive.css"> <link rel="stylesheet" type="text/css" href="../../../TableTools/css/dataTables.tableTools.css"> <link rel="stylesheet" type="text/css" href="../../css/dataTables.editor.css"> <link rel="stylesheet" type="text/css" href="../../../../examples/resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../../../../examples/resources/demo.css"> <style type="text/css" class="init"> </style> <script type="text/javascript" language="javascript" src="../../../../media/js/jquery.js"></script> <script type="text/javascript" language="javascript" src="../../../../media/js/jquery.dataTables.js"></script> <script type="text/javascript" language="javascript" src="../../../Responsive/js/dataTables.responsive.js"></script> <script type="text/javascript" language="javascript" src="../../../TableTools/js/dataTables.tableTools.js"></script> <script type="text/javascript" language="javascript" src="../../js/dataTables.editor.js"></script> <script type="text/javascript" language="javascript" src="../../../../examples/resources/syntax/shCore.js"></script> <script type="text/javascript" language="javascript" src="../../../../examples/resources/demo.js"></script> <script type="text/javascript" language="javascript" src="../resources/editor-demo.js"></script> <script type="text/javascript" language="javascript" class="init"> var editor; // use a global for the submit and return data rendering in the examples $(document).ready(function() { editor = new $.fn.dataTable.Editor( { ajax: "../php/staff.php", table: "#example", fields: [ { label: "First name:", name: "first_name" }, { label: "Last name:", name: "last_name" }, { label: "Position:", name: "position" }, { label: "Office:", name: "office" }, { label: "Extension:", name: "extn" }, { label: "Start date:", name: "start_date", type: "date" }, { label: "Salary:", name: "salary" } ] } ); $('#example').DataTable( { dom: "Tfrtip", ajax: "../php/staff.php", columns: [ { data: null, render: function ( data, type, row ) { // Combine the first and last names into a single table field return data.first_name+' '+data.last_name; } }, { data: "position" }, { data: "office" }, { data: "extn" }, { data: "start_date" }, { data: "salary", render: $.fn.dataTable.render.number( ',', '.', 0, '$' ) } ], tableTools: { sRowSelect: "os", aButtons: [ { sExtends: "editor_create", editor: editor }, { sExtends: "editor_edit", editor: editor }, { sExtends: "editor_remove", editor: editor } ] } } ); } ); </script> </head> <body class="dt-example"> <div class="container"> <section> <h1>Editor example <span>Responsive table extension</span></h1> <div class="info"> <p>This example show Editor being used with the <a href= "//datatables.net/extensions/responsive">Responsive extension for DataTables</a>. Responsive will automatically adjust the visibility of columns in your tables so the the layout of information is nicely presented, regardless of screen size. When columns are hidden, Responsive can add a show / hide button to allow the end user to see the information from the hidden columns.</p> <p>Initialisation of Responsive on a table that also uses Editor is as simple as including the Responsive scripts and adding a <code>responsive</code> class to the <code class="tag" title= "HTML tag">table</code>, as shown in this example.</p> </div> <table id="example" class="display responsive nowrap" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Extn.</th> <th>Start date</th> <th>Salary</th> </tr> </thead> <tfoot> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Extn.</th> <th>Start date</th> <th>Salary</th> </tr> </tfoot> </table> <ul class="tabs"> <li class="active">Javascript</li> <li>HTML</li> <li>CSS</li> <li>Ajax</li> <li>Server-side script</li> </ul> <div class="tabs"> <div class="js"> <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline brush: js;">var editor; // use a global for the submit and return data rendering in the examples $(document).ready(function() { editor = new $.fn.dataTable.Editor( { ajax: &quot;../php/staff.php&quot;, table: &quot;#example&quot;, fields: [ { label: &quot;First name:&quot;, name: &quot;first_name&quot; }, { label: &quot;Last name:&quot;, name: &quot;last_name&quot; }, { label: &quot;Position:&quot;, name: &quot;position&quot; }, { label: &quot;Office:&quot;, name: &quot;office&quot; }, { label: &quot;Extension:&quot;, name: &quot;extn&quot; }, { label: &quot;Start date:&quot;, name: &quot;start_date&quot;, type: &quot;date&quot; }, { label: &quot;Salary:&quot;, name: &quot;salary&quot; } ] } ); $('#example').DataTable( { dom: &quot;Tfrtip&quot;, ajax: &quot;../php/staff.php&quot;, columns: [ { data: null, render: function ( data, type, row ) { // Combine the first and last names into a single table field return data.first_name+' '+data.last_name; } }, { data: &quot;position&quot; }, { data: &quot;office&quot; }, { data: &quot;extn&quot; }, { data: &quot;start_date&quot; }, { data: &quot;salary&quot;, render: $.fn.dataTable.render.number( ',', '.', 0, '$' ) } ], tableTools: { sRowSelect: &quot;os&quot;, aButtons: [ { sExtends: &quot;editor_create&quot;, editor: editor }, { sExtends: &quot;editor_edit&quot;, editor: editor }, { sExtends: &quot;editor_remove&quot;, editor: editor } ] } } ); } );</code> <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p> <ul> <li><a href="../../../../media/js/jquery.js">../../../../media/js/jquery.js</a></li> <li><a href= "../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a></li> <li><a href= "../../../Responsive/js/dataTables.responsive.js">../../../Responsive/js/dataTables.responsive.js</a></li> <li><a href= "../../../TableTools/js/dataTables.tableTools.js">../../../TableTools/js/dataTables.tableTools.js</a></li> <li><a href="../../js/dataTables.editor.js">../../js/dataTables.editor.js</a></li> </ul> </div> <div class="table"> <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p> </div> <div class="css"> <div> <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:</p><code class="multiline brush: js;"></code> </div> <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p> <ul> <li><a href= "../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a></li> <li><a href= "../../../Responsive/css/dataTables.responsive.css">../../../Responsive/css/dataTables.responsive.css</a></li> <li><a href= "../../../TableTools/css/dataTables.tableTools.css">../../../TableTools/css/dataTables.tableTools.css</a></li> <li><a href="../../css/dataTables.editor.css">../../css/dataTables.editor.css</a></li> </ul> </div> <div class="ajax"> <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.</p> </div> <div class="php"> <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables documentation</a>.</p> </div> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <h2>Other examples</h2> <div class="toc"> <div class="toc-group"> <h3><a href="./index.html">Simple initialisation</a></h3> <ul class="toc active"> <li><a href="./simple.html">Basic initialisation</a></li> <li><a href="./fieldDefaults.html">Setting defaults</a></li> <li><a href="./fieldTypes.html">Field types</a></li> <li><a href="./dates.html">Dates (with jQuery UI datepicker)</a></li> <li><a href="./i18n.html">Internationalisation</a></li> <li><a href="./inTableControls.html">In table form controls</a></li> <li class="active"><a href="./responsive.html">Responsive table extension</a></li> <li><a href="./server-side-processing.html">Server-side processing</a></li> <li><a href="./join.html">Join tables - working with multiple SQL tables</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../advanced/index.html">Advanced initialisation</a></h3> <ul class="toc"> <li><a href="../advanced/formOnlyData.html">Data shown only in the form</a></li> <li><a href="../advanced/tableOnlyData.html">Data shown in table only</a></li> <li><a href="../advanced/deepObjects.html">Complex (nested) JSON data source</a></li> <li><a href="../advanced/REST.html">REST interface</a></li> <li><a href="../advanced/localstorage.html">Ajax override - using localStorage for the data source</a></li> <li><a href="../advanced/jsonId.html">Row ID source specification</a></li> <li><a href="../advanced/htmlTable.html">DOM sourced table</a></li> <li><a href="../advanced/exportButtons.html">Export buttons</a></li> <li><a href="../advanced/joinSelf.html">Join tables - self referencing join</a></li> <li><a href="../advanced/joinLinkTable.html">Join tables - link table</a></li> <li><a href="../advanced/joinArray.html">Join tables - one-to-many join</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../bubble-editing/index.html">Bubble editing</a></h3> <ul class="toc"> <li><a href="../bubble-editing/simple.html">Simple bubble editing</a></li> <li><a href="../bubble-editing/grouped.html">Multiple fields in a bubble</a></li> <li><a href="../bubble-editing/options.html">Form control and display options</a></li> <li><a href="../bubble-editing/defaultOptions.html">Default control and display options</a></li> <li><a href="../bubble-editing/inTableControls.html">Bubble editing with in table row controls</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../inline-editing/index.html">Inline editing</a></h3> <ul class="toc"> <li><a href="../inline-editing/simple.html">Simple inline editing</a></li> <li><a href="../inline-editing/tabControl.html">Tab between columns</a></li> <li><a href="../inline-editing/options.html">Editing options - submit on blur</a></li> <li><a href="../inline-editing/submitButton.html">Inline editing with a submit button</a></li> <li><a href="../inline-editing/editIcon.html">Edit icon</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../api/index.html">API</a></h3> <ul class="toc"> <li><a href="../api/confirmClose.html">Events - unsaved changes close confirmation</a></li> <li><a href="../api/clientValidation.html">Client-side validation</a></li> <li><a href="../api/triggerButton.html">Customised control buttons</a></li> <li><a href="../api/backNext.html">Previous / next editing buttons</a></li> <li><a href="../api/duplicateButton.html">Duplicate button</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../standalone/index.html">Standalone</a></h3> <ul class="toc"> <li><a href="../standalone/simple.html">Simple standalone editing</a></li> <li><a href="../standalone/bubble.html">Bubble editing</a></li> <li><a href="../standalone/inline.html">Inline editing</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../styling/index.html">Styling</a></h3> <ul class="toc"> <li><a href="../styling/envelope.html">Envelope display controller</a></li> <li><a href="../styling/envelopeInTable.html">Envelope display with in table controls</a></li> <li><a href="../styling/stackedInputs.html">Styled for stacked inputs</a></li> <li><a href="../styling/bootstrap.html">Bootstrap</a></li> <li><a href="../styling/jqueryui.html">jQuery UI</a></li> </ul> </div> <div class="toc-group"> <h3><a href="../plug-ins/index.html">Plug-ins</a></h3> <ul class="toc"> <li><a href="../plug-ins/fieldPlugin.html">Custom field type plug-ins</a></li> <li><a href="../plug-ins/displayController.html">Custom display controller</a></li> </ul> </div> </div> <div class="epilogue"> <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br> Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p> <p class="copyright">DataTables designed and created by <a href= "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
adeebaboud/dastasks
vendor/plugins/datatables/extensions/Editor/examples/simple/responsive.html
HTML
mit
14,597
<!-- 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. --> <!-- Help file from file --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> API Help (Maven Javadoc Plugin Helpfile Test 1.0-SNAPSHOT API) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="API Help (Maven Javadoc Plugin Helpfile Test 1.0-SNAPSHOT API)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/mycompany/app/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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/mycompany/app/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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.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> <H1> How This API Document Is Organized</H1> </CENTER> This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3> Package</H3> <BLOCKQUOTE> <P> Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL> <LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL> </BLOCKQUOTE> <H3> Class/Interface</H3> <BLOCKQUOTE> <P> Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL> <LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description <P> <LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary <P> <LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL> Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE> <H3> Annotation Type</H3> <BLOCKQUOTE> <P> Each annotation type has its own separate page with the following sections:<UL> <LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL> </BLOCKQUOTE> <H3> Enum</H3> <BLOCKQUOTE> <P> Each enum has its own separate page with the following sections:<UL> <LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL> </BLOCKQUOTE> <H3> Use</H3> <BLOCKQUOTE> Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE> <H3> Tree (Class Hierarchy)</H3> <BLOCKQUOTE> There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL> <LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL> </BLOCKQUOTE> <H3> Deprecated API</H3> <BLOCKQUOTE> The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE> <H3> Index</H3> <BLOCKQUOTE> The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE> <H3> Prev/Next</H3> These links take you to the next or previous class, interface, package, or related page.<H3> Frames/No Frames</H3> These links show and hide the HTML frames. All pages are available with or without frames. <P> <H3> Serialized Form</H3> Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. <P> <H3> Constant Field Values</H3> The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values. <P> <FONT SIZE="-1"> <EM> This help file applies to API documentation generated using the standard doclet.</EM> </FONT> <BR> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/mycompany/app/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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/mycompany/app/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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.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>
kidaa/maven-plugins
maven-javadoc-plugin/src/test/resources/unit/helpfile-test/src/main/resources/com/mycompany/app/javadoc/helpfile2/help-doc.html
HTML
apache-2.0
10,044
<!DOCTYPE html> <title>Flex gaps</title> <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths"> <link rel="help" href="https://drafts.csswg.org/css-align/#gaps"> <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> <meta name="assert" content="Main axis gap makes grow turn to shrink." /> <style> .item { width: 30px; flex: 1 1 auto; background: red; } #reference-overlapped-red { position: absolute; background-color: red; width: 100px; height: 100px; z-index: -1; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div style="display: flex; height: 100px; width: 100px; column-gap: 100px; background: green;"> <div class=item></div> <div class=item></div> </div>
scheib/chromium
third_party/blink/web_tests/external/wpt/css/css-flexbox/gap-013.html
HTML
bsd-3-clause
860
{{+partials.standard_extensions_article article:intros.manifest/description}}
gfreed/android_external_chromium-org
chrome/common/extensions/docs/templates/public/extensions/manifest/description.html
HTML
bsd-3-clause
78
<!DOCTYPE html> <html> <head> <title>MathJax Test Page</title> <!-- Copyright (c) 2009-2013 The MathJax Consortium --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script type="text/x-mathjax-config"> // // Do NOT use this page as a template for your own pages. It includes // code that is needed for testing your site's installation of MathJax, // and that should not be used in normal web pages. Use sample.html as // the example for how to call MathJax in your own pages. // MathJax.HTML.Cookie.Set("menu",{}); MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], "HTML-CSS": { availableFonts:[], styles: {".MathJax_Preview": {visibility: "hidden"}} } }); MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { var FONT = MathJax.OutputJax["HTML-CSS"].Font; FONT.loadError = function (font) { MathJax.Message.Set("Can't load web font TeX/"+font.directory,null,2000); document.getElementById("noWebFont").style.display = ""; }; FONT.firefoxFontError = function (font) { MathJax.Message.Set("Firefox can't load web fonts from a remote host",null,3000); document.getElementById("ffWebFont").style.display = ""; }; }); (function (HUB) { var MINVERSION = { Firefox: 3.0, Opera: 9.52, MSIE: 6.0, Chrome: 0.3, Safari: 2.0, Konqueror: 4.0, Unknown: 10000.0 // always disable unknown browsers }; if (!HUB.Browser.versionAtLeast(MINVERSION[HUB.Browser]||0.0)) { HUB.Config({ jax: [], // don't load any Jax extensions: [], // don't load any extensions "v1.0-compatible": false // skip warning message due to no jax }); setTimeout('document.getElementById("badBrowser").style.display = ""',0); } })(MathJax.Hub); MathJax.Hub.Register.StartupHook("End",function () { var HTMLCSS = MathJax.OutputJax["HTML-CSS"]; if (HTMLCSS && HTMLCSS.imgFonts) {document.getElementById("imageFonts").style.display = ""} }); </script> <script type="text/javascript" src="../MathJax.js"></script> <style> .warning { color: #800020; background-color: #FFF8F8; border: 2px solid red; margin: 1em 5em; padding: 1em; } </style> </head> <body> <noscript> <div style="color:#CC0000; text-align:center"> <b>Warning: <a href="http://www.mathjax.org/">MathJax</a> requires JavaScript to process the mathematics on this page.<br /> If your browser supports JavaScript, be sure it is enabled.</b> </div> <hr> </noscript> <blockquote> <h1>MathJax Test Page</h1> <p> If you see typeset mathematics below, then MathJax is working. If you see TeX code instead, MathJax is not working for you. </p> <!------------------------------------------------------------------------> <hr> <p> \[ \frac{-b\pm\sqrt{b^2-4ac}}{2a} \] </p> <div style="color:green"> <div style="text-align:center; color:red; font-size:120%" class="MathJax_Preview"> MathJax is not working! </div><script type="math/tex; mode=display"> \bf MathJax\ Appears\ to\ be\ Working! </script> </div> <hr> <!------------------------------------------------------------------------> <div id="badBrowser" style="display:none"> <div class="warning"> <b>WARNING</b>: The browser you are using does not appear to support MathJax, so we can't test if MathJax is working. Please try a different browser, or a newer version of your browser in order to test MathJax. </div> <hr> </div> <!------------------------------------------------------------------------> <div id="imageFonts" style="display:none"> <div class="warning"> <b>WARNING</b>: The browser you are using does not seem to support web-based fonts, so we can't test the MathJax web fonts with this browser (image fonts have been used instead). Please try a different browser, or a newer version of your browser in order to test MathJax's web-based fonts. </div> <hr> </div> <!------------------------------------------------------------------------> <div id="noWebFont" style="display:none"> <div class="warning"> <b>WARNING</b>: MathJax's web fonts don't seem to be available. Be sure you have the <code>MathJax/fonts</code> directory in place before continuing. If you fail to install these fonts, MathJax will not work properly with some browsers. If you can't install the image fonts, be sure to set the <code>noImageFonts</code> parameter in your MathJax configuration (either <code>MathJax/config/MathJax.js</code>, or the <code>MathJax.Hub.Config()</code> call in your web page). </div> <hr> </div> <!------------------------------------------------------------------------> <div id="ffWebFont" style="display:none"> <div class="warning"> <b>WARNING</b>: You are trying to load MathJax from a remote site where the web-based fonts are not set up to be shipped to Firefox properly. See the <a href="../docs/html/installation.html#notes-about-shared-installations">discussion of Firefox's same-origin policy</a> in the MathJax documentation for more details. </div> <hr> </div> <!------------------------------------------------------------------------> <p> Once you have MathJax working properly, view the <a href="index-images.html">image mode test page</a> to make sure that the image fallback mode is working as well. </p> </blockquote> </body> </html>
michalgraczyk/calculus
web/js/mathjax/test/index.html
HTML
mit
5,403
<p> Angular 404 </p>
wKoza/angular
aio/content/examples/upgrade-lazy-load-ajs/src/app/app404/app404.component.html
HTML
mit
23
<?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_lk_max_locks()</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="lock.html" title="Chapter 7.  The DbLock Handle" /> <link rel="prev" href="envset_lk_max_lockers.html" title="DbEnv::set_lk_max_lockers()" /> <link rel="next" href="envset_lk_max_objects.html" title="DbEnv::set_lk_max_objects()" /> </head> <body> <div class="navheader"> <table width="100%" summary="Navigation header"> <tr> <th colspan="3" align="center">DbEnv::set_lk_max_locks()</th> </tr> <tr> <td width="20%" align="left"><a accesskey="p" href="envset_lk_max_lockers.html">Prev</a> </td> <th width="60%" align="center">Chapter 7.  The DbLock Handle </th> <td width="20%" align="right"> <a accesskey="n" href="envset_lk_max_objects.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_lk_max_locks"></a>DbEnv::set_lk_max_locks()</h2> </div> </div> </div> <pre class="programlisting">#include &lt;db_cxx.h&gt; int DbEnv::set_lk_max_locks(u_int32_t max); </pre> <p> Set the maximum number of locks supported by the Berkeley DB environment. This value is used by <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a> to estimate how much space to allocate for various lock-table data structures. The default value is 1000 locks. For specific information on configuring the size of the lock subsystem, see <a href="../../programmer_reference/lock_max.html" class="olink">Configuring locking: sizing the system</a>. </p> <p> The database environment's maximum number of locks may also be configured using the environment's <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file. The syntax of the entry in that file is a single line with the string "set_lk_max_locks", one or more whitespace characters, and the number of locks. Because the <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file is read when the database environment is opened, it will silently overrule configuration done before that time. </p> <p> The <code class="methodname">DbEnv::set_lk_max_locks()</code> method configures a database environment, not only operations performed using the specified <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a> handle. </p> <p> The <code class="methodname">DbEnv::set_lk_max_locks()</code> method may not be called after the <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a> method is called. If the database environment already exists when <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a> is called, the information specified to <code class="methodname">DbEnv::set_lk_max_locks()</code> will be ignored. </p> <p> The <code class="methodname">DbEnv::set_lk_max_locks()</code> <span> <span> method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success. </span> </span> </p> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1680275"></a>Parameters</h3> </div> </div> </div> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="id1680338"></a>max</h4> </div> </div> </div> <p> The <span class="bold"><strong>max</strong></span> parameter is the maximum number of locks supported by the Berkeley DB environment. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1680498"></a>Errors</h3> </div> </div> </div> <p> The <code class="methodname">DbEnv::set_lk_max_locks()</code> <span> <span> method may fail and throw a <a class="link" href="dbexception.html" title="Chapter 6. The DbException Class">DbException</a> exception, encapsulating one of the following non-zero errors, or return one of the following non-zero errors: </span> </span> </p> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="id1680200"></a>EINVAL</h4> </div> </div> </div> <p> If the method was called after <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a> was called; or if an invalid flag value or parameter was specified. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1680331"></a>Class</h3> </div> </div> </div> <p> <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a>, <a class="link" href="lock.html" title="Chapter 7.  The DbLock Handle">DbLock</a> </p> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1680216"></a>See Also</h3> </div> </div> </div> <p> <a class="xref" href="lock.html#locklist" title="Locking Subsystem and Related Methods">Locking Subsystem 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_lk_max_lockers.html">Prev</a> </td> <td width="20%" align="center"> <a accesskey="u" href="lock.html">Up</a> </td> <td width="40%" align="right"> <a accesskey="n" href="envset_lk_max_objects.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top">DbEnv::set_lk_max_lockers() </td> <td width="20%" align="center"> <a accesskey="h" href="index.html">Home</a> </td> <td width="40%" align="right" valign="top"> DbEnv::set_lk_max_objects()</td> </tr> </table> </div> </body> </html>
mxrrow/zaicoin
src/deps/db/docs/api_reference/CXX/envset_lk_max_locks.html
HTML
mit
7,880
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Overlay Cover Example - Jssor Slider, Carousel, Slideshow</title> </head> <body style="font-family:Arial, Verdana;background-color:#fff;"> <!-- it works the same with all jquery version from 1.x to 2.x --> <script type="text/javascript" src="../js/jquery-1.9.1.min.js"></script> <!-- use jssor.slider.mini.js (40KB) instead for release --> <!-- jssor.slider.mini.js = (jssor.js + jssor.slider.js) --> <script type="text/javascript" src="../js/jssor.js"></script> <script type="text/javascript" src="../js/jssor.slider.js"></script> <script> jQuery(document).ready(function ($) { var options = { $DragOrientation: 3 //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0) }; var jssor_slider1 = new $JssorSlider$("slider1_container", options); }); </script> <!-- Jssor Slider Begin --> <!-- To move inline styles to css file/block, please specify a class name for each element. --> <div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 600px; height: 300px;"> <!-- Loading Screen --> <div u="loading" style="position: absolute; top: 0px; left: 0px;"> <div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block; background-color: #000000; top: 0px; left: 0px;width: 100%;height:100%;"> </div> <div style="position: absolute; display: block; background: url(../img/loading.gif) no-repeat center center; top: 0px; left: 0px;width: 100%;height:100%;"> </div> </div> <!-- Slides Container --> <div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 300px; overflow: hidden;"> <div><img u="image" src="../img/landscape/01.jpg" /></div> <div><img u="image" src="../img/landscape/02.jpg" /></div> <div><img u="image" src="../img/landscape/03.jpg" /></div> <div><img u="image" src="../img/landscape/04.jpg" /></div> <div><img u="image" src="../img/landscape/05.jpg" /></div> <div><img u="image" src="../img/landscape/06.jpg" /></div> <div><img u="image" src="../img/landscape/07.jpg" /></div> <div><img u="image" src="../img/landscape/08.jpg" /></div> </div> <!-- Cover Begin --> <div style="position:absolute;top:-20px;left:-20px;width:50px;height:47px;background-image:url(img/cover/0001-TL.png)"></div> <div style="position:absolute;top:-20px;right:-20px;width:50px;height:47px;background-image:url(img/cover/0001-TR.png)"></div> <div style="position:absolute;bottom:-20px;left:-20px;width:50px;height:58px;background-image:url(img/cover/0001-BL.png)"></div> <div style="position:absolute;bottom:-20px;right:-20px;width:50px;height:58px;background-image:url(img/cover/0001-BR.png)"></div> <div style="position:absolute;top:-20px;left:30px;width:540px;height:47px;background-image:url(img/cover/0001-T.png)"></div> <div style="position:absolute;bottom:-20px;left:30px;width:540px;height:58px;background-image:url(img/cover/0001-B.png)"></div> <div style="position:absolute;top:27px;left:-20px;width:50px;height:235px;background-image:url(img/cover/0001-L.png)"></div> <div style="position:absolute;top:27px;right:-20px;width:50px;height:235px;background-image:url(img/cover/0001-R.png)"></div> <!-- Cover End --> <a style="display: none" href="http://www.jssor.com">Image Slider</a> </div> <!-- Jssor Slider End --> </body> </html>
bhdm/wzc
src/Wzc/MainBundle/Resources/public/JssorSlider/examples-jquery/overlay-cover.source.html
HTML
mit
4,047
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Controlgroup - Default Functionality</title> <link rel="stylesheet" href="../../themes/base/all.css"> <link rel="stylesheet" href="../demos.css"> <style> .ui-controlgroup-vertical { width: 150px; } .ui-controlgroup.ui-controlgroup-vertical > button.ui-button, .ui-controlgroup.ui-controlgroup-vertical > .ui-controlgroup-label { text-align: center; } #car-type-button { width: 120px; } .ui-controlgroup-horizontal .ui-spinner-input { width: 20px; } </style> <script src="../../external/requirejs/require.js"></script> <script src="../bootstrap.js" data-modules="button checkboxradio selectmenu spinner"> $( ".controlgroup" ).controlgroup() $( ".controlgroup-vertical" ).controlgroup({ "direction": "vertical" }); </script> </head> <body> <div class="widget"> <h1>Controlgroup</h1> <fieldset> <legend>Rental Car</legend> <div class="controlgroup"> <select id="car-type"> <option>Compact car</option> <option>Midsize car</option> <option>Full size car</option> <option>SUV</option> <option>Luxury</option> <option>Truck</option> <option>Van</option> </select> <label for="transmission-standard">Standard</label> <input type="radio" name="transmission" id="transmission-standard"> <label for="transmission-automatic">Automatic</label> <input type="radio" name="transmission" id="transmission-automatic"> <label for="insurance">Insurance</label> <input type="checkbox" name="insurance" id="insurance"> <label for="horizontal-spinner" class="ui-controlgroup-label"># of cars</label> <input id="horizontal-spinner" class="ui-spinner-input"> <button>Book Now!</button> </div> </fieldset> <br/> <fieldset> <legend>Rental Car</legend> <div class="controlgroup-vertical"> <select> <option>Compact car</option> <option>Midsize car</option> <option>Full size car</option> <option>SUV</option> <option>Luxury</option> <option>Truck</option> <option>Van</option> </select> <label for="transmission-standard-v">Standard</label> <input type="radio" name="transmission-v" id="transmission-standard-v"> <label for="transmission-automatic-v">Automatic</label> <input type="radio" name="transmission-v" id="transmission-automatic-v"> <label for="insurance-v">Insurance</label> <input type="checkbox" name="insurance" id="insurance-v"> <label for="vertical-spinner" class="ui-controlgroup-label"># of cars</label> <input id="vertical-spinner" class="ui-spinner-input"> <button id="book">Book Now!</button> </div> </fieldset> </div> <div class="demo-description"> <p>A controlgroup featuring various form controls. The first features a horizontal toolbar like orientation, the second is in a space saving vertical orientation for usages like mobile devices and panels.</p> </div> </body> </html>
oavasquez/ingeneria_software
web-project/node_modules/jquery-ui/demos/controlgroup/default.html
HTML
mit
2,942
<!DOCTYPE html> <script src="../resources/testharness.js"></script> <script src="../resources/testharnessreport.js"></script> <script> var t = async_test('Makes sure that preloader preloaded resources are delaying onload after they are discovered'); </script> <script src="../resources/slow-script.pl?delay=200"></script> <script> window.addEventListener("load", t.step_func(function() { assert_equals(performance.getEntriesByType("resource").length, 4); t.done(); })); </script> <script> document.write("<!--"); var img = new Image(); img.src = "http://127.0.0.1:8000/resources/slow-image.php?name=square.png&mimeType=image/png&sleep=400"; </script> <img src="http://127.0.0.1:8000/resources/slow-image.php?name=square.png&mimeType=image/png&sleep=400">
scheib/chromium
third_party/blink/web_tests/http/tests/preload/delaying_onload_preloader_after_discovery.html
HTML
bsd-3-clause
795
<html> <body> <h1>Test Kiosk App, version: 1.0.0</h1> </body> <hmtl>
ric2b/Vivaldi-browser
chromium/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/primary_app/v1/app_main.html
HTML
bsd-3-clause
69
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Fragmentation Module Level 3: parsing break-inside with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-break/#propdef-break-inside"> <meta name="assert" content="break-inside supports the full grammar 'auto | avoid | avoid-page | avoid-column | avoid-region'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("break-inside", "auto"); test_valid_value("break-inside", "avoid"); test_valid_value("break-inside", "avoid-page"); test_valid_value("break-inside", "avoid-column"); test_valid_value("break-inside", "avoid-region"); </script> </body> </html>
chromium/chromium
third_party/blink/web_tests/external/wpt/css/css-break/parsing/break-inside-valid.html
HTML
bsd-3-clause
800
<ul class="UIAPIPlugin-toc"> <li><a href="#overview">Overview</a></li> <li><a href="#options">Options</a></li> <li><a href="#events">Events</a></li> <li><a href="#methods">Methods</a></li> <li><a href="#theming">Theming</a></li> </ul> <div class="UIAPIPlugin"> <h1>jQuery UI Button</h1> <div id="overview"> <h2 class="top-header">Overview</h2> <div id="overview-main"> <p>Button enhances standard form elements like button, input of type submit or reset or anchors to themable buttons with appropiate mouseover and active styles.</p> <p>In addition to basic push buttons, radio buttons and checkboxes (inputs of type radio and checkbox) can be converted to buttons: Their associated label is styled to appear as the button, while the underlying input is updated on click.</p> <p>In order to group radio buttons, Button also provides an additional widget-method, called Buttonset. Its used by selecting a container element (which contains the radio buttons) and calling buttonset(). Buttonset will also provide visual grouping, and therefore should be used whenever you have a group of buttons. It works by selecting all descendents and applying button() to them. You can enable and disable a buttonset, which will enable and disable all contained buttons. Destroying a buttonset also calls the button's destroy method.</p> <p>When using an input of type button, submit or reset, support is limited to plain text labels with no icons.</p> </div> <div id="overview-dependencies"> <h3>Dependencies</h3> <ul> <li>UI Core</li> <li>UI Widget</li> </ul> </div> <div id="overview-example"> <h3>Example</h3> <div id="overview-example" class="example"> <ul><li><a href="#demo"><span>Demo</span></a></li><li><a href="#source"><span>View Source</span></a></li></ul> <p><div id="demo" class="tabs-container" rel="300"> A simple jQuery UI Button.<br /> </p> <pre>$(&quot;button&quot;).button(); </pre> <p></div><div id="source" class="tabs-container"> </p> <pre>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;link href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js&quot;&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function() { $(&quot;button&quot;).button(); }); &lt;/script&gt; &lt;/head&gt; &lt;body style="font-size:62.5%;"&gt; &lt;button&gt;Button label&lt;/button&gt; &lt;/body&gt; &lt;/html&gt; </pre> <p></div> </p><p></div> <div id="overview-example" class="example"> <ul><li><a href="#demo"><span>Demo</span></a></li><li><a href="#source"><span>View Source</span></a></li></ul> <div id="demo" class="tabs-container" rel="300"> A simple jQuery UI Button.<br /> </p> <pre>$(&quot;#radio&quot;).buttonset(); </pre> <p></div><div id="source" class="tabs-container"> </p> <pre>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;link href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js&quot;&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function() { $(&quot;#radio&quot;).buttonset(); }); &lt;/script&gt; &lt;/head&gt; &lt;body style="font-size:62.5%;"&gt; &lt;div id=&quot;radio&quot;&gt; &lt;input type=&quot;radio&quot; id=&quot;radio1&quot; name=&quot;radio&quot; /&gt;&lt;label for=&quot;radio1&quot;&gt;Choice 1&lt;/label&gt; &lt;input type=&quot;radio&quot; id=&quot;radio2&quot; name=&quot;radio&quot; checked=&quot;checked&quot; /&gt;&lt;label for=&quot;radio2&quot;&gt;Choice 2&lt;/label&gt; &lt;input type=&quot;radio&quot; id=&quot;radio3&quot; name=&quot;radio&quot; /&gt;&lt;label for=&quot;radio3&quot;&gt;Choice 3&lt;/label&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </pre> <p></div> </p><p></div> </div> </div> <div id="options"> <h2 class="top-header">Options</h2> <ul class="options-list"> <li class="option" id="option-disabled"> <div class="option-header"> <h3 class="option-name"><a href="#option-disabled">disabled</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Boolean</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">false</dd> </dl> </div> <div class="option-description"> <p>Disables (true) or enables (false) the button. Can be set when initialising (first creating) the button.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a button with the <code>disabled</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).button({ disabled: true });</code></pre> </dd> <dt> Get or set the <code>disabled</code> option, after init. </dt> <dd> <pre><code>//getter var disabled = $( ".selector" ).button( "option", "disabled" ); //setter $( ".selector" ).button( "option", "disabled", true );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-text"> <div class="option-header"> <h3 class="option-name"><a href="#option-text">text</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Boolean</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">true</dd> </dl> </div> <div class="option-description"> <p>Whether to show any text - when set to false (display no text), icons (see icons option) must be enabled, otherwise it'll be ignored.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a button with the <code>text</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).button({ text: false });</code></pre> </dd> <dt> Get or set the <code>text</code> option, after init. </dt> <dd> <pre><code>//getter var text = $( ".selector" ).button( "option", "text" ); //setter $( ".selector" ).button( "option", "text", false );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-icons"> <div class="option-header"> <h3 class="option-name"><a href="#option-icons">icons</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Options</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">{ primary: null, secondary: null }</dd> </dl> </div> <div class="option-description"> <p>Icons to display, with or without text (see text option). The primary icon is displayed by default on the left of the label text, the secondary by default is on the right. Value for the primary and secondary properties must be a classname (String), eg. "ui-icon-gear". For using only one icon: icons: {primary:'ui-icon-locked'}. For using two icons: icons: {primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a button with the <code>icons</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).button({ icons: {primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'} });</code></pre> </dd> <dt> Get or set the <code>icons</code> option, after init. </dt> <dd> <pre><code>//getter var icons = $( ".selector" ).button( "option", "icons" ); //setter $( ".selector" ).button( "option", "icons", {primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'} );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-label"> <div class="option-header"> <h3 class="option-name"><a href="#option-label">label</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">String</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">HTML content of the button, or value attribute</dd> </dl> </div> <div class="option-description"> <p>Text to show on the button. When not specified (null), the element's html content is used, or its value attribute when it's an input element of type submit or reset; or the html content of the associated label element if its an input of type radio or checkbox</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a button with the <code>label</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).button({ label: "custom label" });</code></pre> </dd> <dt> Get or set the <code>label</code> option, after init. </dt> <dd> <pre><code>//getter var label = $( ".selector" ).button( "option", "label" ); //setter $( ".selector" ).button( "option", "label", "custom label" );</code></pre> </dd> </dl> </div> </li> </ul> </div> <div id="events"> <h2 class="top-header">Events</h2> <ul class="events-list"> <li class="event" id="event-create"> <div class="event-header"> <h3 class="event-name"><a href="#event-create">create</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">buttoncreate</dd> </dl> </div> <div class="event-description"> <p>This event is triggered when button is created.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>create</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).button({ create: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>create</code> event by type: <code>buttoncreate</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;buttoncreate&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> </p> <p>There are no events for this plugin.</p> </ul> </div> <div id="methods"> <h2 class="top-header">Methods</h2> <ul class="methods-list"> <li class="method" id="method-destroy"> <div class="method-header"> <h3 class="method-name"><a href="#method-destroy">destroy</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "destroy" )</dd> </dl> </div> <div class="method-description"> <p>Remove the button functionality completely. This will return the element back to its pre-init state.</p> </div> </li> <p> <li class="method" id="method-disable"> <div class="method-header"> <h3 class="method-name"><a href="#method-disable">disable</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "disable" )</dd> </dl> </div> <div class="method-description"> <p>Disable the button.</p> </div> </li> <li class="method" id="method-enable"> <div class="method-header"> <h3 class="method-name"><a href="#method-enable">enable</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "enable" )</dd> </dl> </div> <div class="method-description"> <p>Enable the button.</p> </div> </li> <li class="method" id="method-option"> <div class="method-header"> <h3 class="method-name"><a href="#method-option">option</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "option" , optionName , <span class="optional">[</span>value<span class="optional">] </span> )</dd> </dl> </div> <div class="method-description"> <p>Get or set any button option. If no value is specified, will act as a getter.</p> </div> </li> <li class="method" id="method-option"> <div class="method-header"> <h3 class="method-name"><a href="#method-option">option</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "option" , options )</dd> </dl> </div> <div class="method-description"> <p>Set multiple button options at once by providing an options object.</p> </div> </li> <li class="method" id="method-widget"> <div class="method-header"> <h3 class="method-name"><a href="#method-widget">widget</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "widget" )</dd> </dl> </div> <div class="method-description"> <p>Returns the .ui-button element.</p> </div> </li> <li class="method" id="method-refresh"> <div class="method-header"> <h3 class="method-name"><a href="#method-refresh">refresh</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.button( "refresh" )</dd> </dl> </div> <div class="method-description"> <p>Refreshes the visual state of the button. Useful for updating button state after the native element's checked or disabled state is changed programatically.</p> </div> </li> </ul> </div> <div id="theming"> <h2 class="top-header">Theming</h2> <p>The jQuery UI Button plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. </p> <p>If a deeper level of customization is needed, there are widget-specific classes referenced within the jquery.ui.button.css stylesheet that can be modified. These classes are highlighed in bold below. </p> <h3>Sample markup with jQuery UI CSS Framework classes</h3> &lt;button class=&quot;<strong>ui-button ui-button-text-only</strong> ui-widget ui-state-default ui-corner-all&quot;&gt;<br /> &nbsp;&nbsp;&nbsp;&lt;span class=&quot;<strong>ui-button-text</strong>&quot;&gt;Button Label&lt;/span&gt;<br />&lt;/button&gt; <p class="theme-note"> <strong> Note: This is a sample of markup generated by the button plugin, not markup you should use to create a button. The only markup needed for that is &lt;button&gt;Button Label&lt;/button&gt;. </strong> </p> </div> </div> </p><!-- Pre-expand include size: 24542 bytes Post-expand include size: 31799 bytes Template argument size: 14018 bytes Maximum: 2097152 bytes --> <!-- Saved in parser cache with key jqdocs_docs:pcache:idhash:3767-1!1!0!!en!2 and timestamp 20120220184650 -->
jcu-eresearch/Edgar
webapplication/app/webroot/js/jquery-ui-1.8.18/development-bundle/docs/button.html
HTML
bsd-3-clause
14,929
<!DOCTYPE html> <html> <!-- Copyright 2008 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <!-- --> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="UTF-8" /> <title> Closure Unit Tests - goog.ui.SliderBase </title> <script src="../base.js"> </script> <script type="text/javascript"> goog.require('goog.ui.SliderBaseTest'); </script> <style type="text/css"> #oneThumbSlider { position: relative; width: 1000px; background: grey; height: 20px; } #oneThumbSlider.test-slider-vertical { height: 1000px; width: 20px; } #twoThumbSlider { position: relative; /* Extra 20px is so distance between thumb centers is 1000px */ width: 1020px; } #valueThumb, #extentThumb { position: absolute; width: 20px; } #thumb { position: absolute; width: 20px; height: 20px; background: black; top: 5px; } .test-slider-vertical > #thumb { left: 5px; top: auto; } #rangeHighlight { position: absolute; } </style> </head> <body> <div id="sandbox"> </div> </body> </html>
LeoLombardi/tos-laimas-compass
tos-laimas-compass-win32-x64/resources/app/node_modules/closure-util/.deps/library/b06c979ecae7d78dd1ac4f7b09adec643baac308/closure/goog/ui/sliderbase_test.html
HTML
mit
1,172
<!DOCTYPE html> <html> <title>WebVTT rendering, italic object, ::cue(i), white-space: pre-line (cue that wraps)</title> <style> html { overflow:hidden } body { margin:0 } ::cue(i) { white-space: pre-line } </style> <script src="../../../support/refTestWait.js"></script> <video width="1280" height="720" autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();"> <source src="../../../media/white.webm" type="video/webm"> <source src="../../../media/white.mp4" type="video/mp4"> <track src="../../../support/italic_long.vtt"> </video> <script> document.getElementsByTagName('track')[0].track.mode = 'showing'; </script> </html>
axinging/chromium-crosswalk
third_party/WebKit/LayoutTests/media/track/opera/track/webvtt/rendering/reftest/selectors/cue_function/italic_object/italic_white-space_pre-line_wrapped.html
HTML
bsd-3-clause
662
<html> <head> <script src="inspector-test.js"></script> <script src="extensions-test.js"></script> <script type="text/javascript"> function extension_testAddHeaders(nextTest) { webInspector.network.addRequestHeaders({ "x-webinspector-extension": "test", "user-agent": "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)" }); function cleanUpHeaders() { webInspector.network.addRequestHeaders({ "x-webinspector-extension": null, "user-agent": null }); } webInspector.inspectedWindow.eval("doXHR()", callbackAndNextTest(cleanUpHeaders, nextTest)); } function doXHR() { var xhr = new XMLHttpRequest(); xhr.open("GET", "resources/echo-headers.php", false); xhr.send(null); // Can't use output() here due to output order instability: this is invoked by inspectedWindow.eval(), // which is not serialized against output from extension, as the latter is posted asynchronously via // postMessage to front-end window. document.getElementById("headers").textContent += xhr.responseText; } </script> </head> <body onload="runTest()"> <p>Tests WebInspector extension API</p> <div style="white-space: pre" id="headers"></div> </body> </html>
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/http/tests/inspector/extensions-headers.html
HTML
bsd-3-clause
1,241
<!DOCTYPE html> <html> <head> <style> .test > div { display: inline-block; overflow: hidden; white-space: nowrap; padding: 0 1px; vertical-align: top; } .test > .ellipsis { text-overflow: ellipsis; } </style> </head> <body> <div class="test" style="zoom: 0.5;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 0.66;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 0.75;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 0.9;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 1.0;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 1.1;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 1.25;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <div class="test" style="zoom: 1.33;"> <div class="ellipsis">Should not be truncated</div><br> <div class="expected">Should not be truncated</div> </div> <p> None of the lines above should be truncated. </p> </body> </html>
scheib/chromium
third_party/blink/web_tests/fast/sub-pixel/ellipsis-zoom.html
HTML
bsd-3-clause
1,926
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Test: mix-blend-mode between an element and its child with 3D transform </title> <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com"> <link rel="author" title="Ion Roșca" href="mailto:rosca@adobe.com"> <link rel="reviewer" title="Mihai Țică" href="mailto:mitica@adobe.com"> <link rel="help" href="https://drafts.fxtf.org/compositing-1/#mix-blend-mode"> <meta name="flags" content=""> <meta name="assert" content="Test checks that the element with mix-blend-mode and 3D transform blends correctly with its parent"> <link rel="match" href="reference/mix-blend-mode-blended-with-3D-transform-ref.html"> <style type="text/css"> .parent { background: aqua;/*rgb(0,255,255);*/ width: 140px; height: 140px; padding-top: 1px; position:relative; z-index: 1; } .blended { background: fuchsia;/*rgb(255,0,255);*/ margin-top: 20px; margin-left: 20px; width: 200px; height: 200px; transform:rotateX(20deg); mix-blend-mode: difference; } </style> </head> <body> <p>You should see a fuchsia square overlapping an aqua square. <br> The overlapping area should be yellow. </p> <div class="parent"> <div class="blended"> </div> </div> </body> </html>
scheib/chromium
third_party/blink/web_tests/external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-with-3D-transform.html
HTML
bsd-3-clause
1,643
<!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <html> <head> <!-- The original and initial filename of this test was tall- -auto-32px- -nonpercent-width-percent-height-viewbox.html --> <title>CSS Backgrounds and Borders Test: background-size: auto 32px; for nonpercent-width-percent-height-viewbox.svg</title> <link rel="author" title="Jeff Walden" href="http://whereswalden.com/"> <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#IntrinsicSizing"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#PreserveAspectRatioAttribute"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#ViewBoxAttribute"> <link rel="match" href="reference/ref-tall-lime2x16-aqua2x16.html"> <meta name="flags" content="svg"> <style type="text/css"> div { background-image: url("support/nonpercent-width-percent-height-viewbox.svg"); background-repeat: no-repeat; background-size: auto 32px; border: black solid 1px; height: 768px; width: 256px; } </style> </head> <body> <div></div> </body> </html>
scheib/chromium
third_party/blink/web_tests/external/wpt/css/css-backgrounds/background-size/vector/tall--auto-32px--nonpercent-width-percent-height-viewbox.html
HTML
bsd-3-clause
1,240
<!DOCTYPE html> <html> <head> <title>CSS Test: childNodes' 'margin' property of flex item'</title> <link rel="author" title="Shaofei Cheng" href="mailto:csf178@gmail.com" /> <meta name="flags" content="" /> <style> #test { background: blue; display: block; height:300px; position:relative; } #test>div.flex { width: 100px; background:red; } #test>div.fixed { height: 300px; flex:1; background:red; } #test p { margin:200px 0 0 0; } </style> </head> <body> <div id="test"> <div class="fixed"> <p style="width:100px;height:100px;background:orange;position:absolute;left:0px;bottom:0px;"> a </p> </div> <div class="flex"> <p style="width:100px;height:100px;background:green;position:absolute;right:0px;bottom:0px;"> b </p> </div> </div> </body> </html>
wuhengzhi/chromium-crosswalk
third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/flex-flexitem-childmargin-expected.html
HTML
bsd-3-clause
959
<div class="edt-property"> <label> <i class="icon icon-autofill"></i> {{property.label}}</label> <small>{{property.description}}</small> </div>
umbShop/umbShop
website/Umbraco/Views/documenttypes/property.html
HTML
mit
145
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8" /> <title>icon-hand-right: Font Awesome Icons</title> <meta name="description" content="Font Awesome, the iconic font designed for Bootstrap"> <meta name="author" content="Dave Gandy"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">--> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- CSS ================================================== --> <link rel="stylesheet" href="../../assets/css/site.css"> <link rel="stylesheet" href="../../assets/css/pygments.css"> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css"> <!--[if IE 7]> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css"> <![endif]--> <!-- Le fav and touch icons --> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> <script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30136587-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body data-spy="scroll" data-target=".navbar"> <div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer --> <div class="navbar navbar-inverse navbar-static-top hidden-print"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="hidden-tablet "><a href="../../">Home</a></li> <li><a href="../../get-started/">Get Started</a></li> <li class="dropdown-split-left"><a href="../../icons/">Icons</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i>&nbsp; Icons</a></li> <li class="divider"></li> <li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i>&nbsp; New Icons in 3.2.1</a></li> <li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i>&nbsp; Web Application Icons</a></li> <li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i>&nbsp; Currency Icons</a></li> <li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i>&nbsp; Text Editor Icons</a></li> <li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i>&nbsp; Directional Icons</a></li> <li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i>&nbsp; Video Player Icons</a></li> <li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i>&nbsp; Brand Icons</a></li> <li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i>&nbsp; Medical Icons</a></li> </ul> </li> <li class="dropdown-split-left"><a href="../../examples/">Examples</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../examples/">Examples</a></li> <li class="divider"></li> <li><a href="../../examples/#new-styles">New Styles</a></li> <li><a href="../../examples/#inline-icons">Inline Icons</a></li> <li><a href="../../examples/#larger-icons">Larger Icons</a></li> <li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li> <li><a href="../../examples/#buttons">Buttons</a></li> <li><a href="../../examples/#button-groups">Button Groups</a></li> <li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li> <li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li> <li><a href="../../examples/#navigation">Navigation</a></li> <li><a href="../../examples/#form-inputs">Form Inputs</a></li> <li><a href="../../examples/#animated-spinner">Animated Spinner</a></li> <li><a href="../../examples/#rotated-flipped">Rotated &amp; Flipped</a></li> <li><a href="../../examples/#stacked">Stacked</a></li> <li><a href="../../examples/#custom">Custom CSS</a></li> </ul> </li> <li><a href="../../whats-new/"> <span class="hidden-tablet">What's </span>New</a> </li> <li><a href="../../community/">Community</a></li> <li><a href="../../license/">License</a></li> </ul> <ul class="nav pull-right"> <li><a href="http://blog.fontawesome.io">Blog</a></li> </ul> </div> </div> </div> </div> <div class="jumbotron jumbotron-icon"> <div class="container"> <div class="info-icons"> <i class="icon-hand-right icon-6"></i>&nbsp;&nbsp; <span class="hidden-phone"> <i class="icon-hand-right icon-5"></i>&nbsp;&nbsp; <span class="hidden-tablet"><i class="icon-hand-right icon-4"></i>&nbsp;&nbsp;</span> <i class="icon-hand-right icon-3"></i>&nbsp;&nbsp; <i class="icon-hand-right icon-2"></i>&nbsp; </span> <i class="icon-hand-right icon-1"></i> </div> <h1 class="info-class"> icon-hand-right <small> <i class="icon-hand-right"></i> &middot; Unicode: <span class="upper">f0a4</span> &middot; Created: v2.0 &middot; Categories: Directional Icons </small> </h1> </div> </div> <div class="container"> <section> <div class="row-fluid"> <div class="span9"> <p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag:</p> <div class="well well-transparent"> <div style="font-size: 24px; line-height: 1.5em;"> <i class="icon-hand-right"></i> icon-hand-right </div> </div> <div class="highlight"><pre><code class="html"><span class="nt">&lt;i</span> <span class="na">class=</span><span class="s">&quot;icon-hand-right&quot;</span><span class="nt">&gt;&lt;/i&gt;</span> icon-hand-right </code></pre></div> <br> <div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div> </div> <div class="span3"> <div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div> </div> </div> </div> </section> </div> <div class="push"><!-- necessary for sticky footer --></div> </div> <footer class="footer hidden-print"> <div class="container text-center"> <div> <i class="icon-flag"></i> Font Awesome 3.2.1 <span class="hidden-phone">&middot;</span><br class="visible-phone"> Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a> </div> <div> Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> <span class="hidden-phone">&middot;</span><br class="visible-phone"> Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a> <span class="hidden-phone hidden-tablet">&middot;</span><br class="visible-phone visible-tablet"> Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> </div> <div> Thanks to <a href="http://tracking.maxcdn.com/c/148092/3982/378"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a> </div> <div class="project"> <a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> &middot; <a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a> </div> </div> </footer> <script src="http://platform.twitter.com/widgets.js"></script> <script src="../../assets/js/jquery-1.7.1.min.js"></script> <script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script> <script src="../../assets/js/bootstrap-2.3.1.min.js"></script> <script src="../../assets/js/site.js"></script> </body> </html>
zhufengnodejs/201602node_homework
第2组 刘成军/高姗/第二周作业/public/Font-Awesome-master/Font-Awesome-master/src/3.2.1/icon/hand-right/index.html
HTML
mit
10,131
<html> <!-- 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> <title>View Source Code</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF"> <p><font color="#0000FF"><a href="config.jsp"><img src="../../images/execute.gif" align="right" border="0"></a> <a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p> <h3><a href="config.jsp.html">Source Code for config.jsp<font color="#0000FF"></a> </font> </h3> <h3><a href="prelude.jspf.html">Source Code for prelude.jspf<font color="#0000FF"></a> </font> </h3> <h3><a href="coda.jspf.html">Source Code for coda.jspf<font color="#0000FF"></a> </font> </h3> </body> </html>
liuyangning/WX_web
xampp/tomcat/webapps/examples/jsp/jsp2/misc/config.html
HTML
mit
1,495
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <link rel="import" href="../../polymer/polymer.html"> <link rel="import" href="../neon-animation-behavior.html"> <link rel="import" href="../web-animations.html"> <!-- `<slide-from-left-animation>` animates the transform of an element from `translateX(-100%)` to `none`. The `transformOrigin` defaults to `0 50%`. Configuration: ``` { name: 'slide-from-left-animation', node: <node>, transformOrigin: <transform-origin>, timing: <animation-timing> } ``` --> <script> Polymer({ is: 'slide-from-left-animation', behaviors: [ Polymer.NeonAnimationBehavior ], configure: function(config) { var node = config.node; this._effect = new KeyframeEffect(node, [ {'transform': 'translateX(-100%)'}, {'transform': 'none'} ], this.timingFromConfig(config)); if (config.transformOrigin) { this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin); } else { this.setPrefixedProperty(node, 'transformOrigin', '0 50%'); } return this._effect; } }); </script>
iShafayet/nedbmgr
www-dev/src/bower-assets/neon-animation/animations/slide-from-left-animation.html
HTML
mit
1,596
<!doctype html> <html> <head> <title>Line Chart</title> <script src="../dist/Chart.bundle.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <style> canvas{ -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; } </style> </head> <body> <div style="width:75%;"> <canvas id="canvas"></canvas> </div> <br> <br> <button id="randomizeData">Randomize Data</button> <button id="changeDataObject">Change Data Object</button> <button id="addDataset">Add Dataset</button> <button id="removeDataset">Remove Dataset</button> <button id="addData">Add Data</button> <button id="removeData">Remove Data</button> <script> var MONTHS = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; var randomScalingFactor = function() { return Math.round(Math.random() * 100); //return 0; }; var randomColorFactor = function() { return Math.round(Math.random() * 255); }; var randomColor = function(opacity) { return 'rgba(' + randomColorFactor() + ',' + randomColorFactor() + ',' + randomColorFactor() + ',' + (opacity || '.3') + ')'; }; var config = { type: 'line', data: { labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [{ label: "My First dataset", data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()], fill: false, borderDash: [5, 5], }, { hidden: true, label: 'hidden dataset', data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()], }, { label: "My Second dataset", data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()], }] }, options: { responsive: true, title:{ display:true, text:'Chart.js Line Chart' }, tooltips: { mode: 'label', callbacks: { // beforeTitle: function() { // return '...beforeTitle'; // }, // afterTitle: function() { // return '...afterTitle'; // }, // beforeBody: function() { // return '...beforeBody'; // }, // afterBody: function() { // return '...afterBody'; // }, // beforeFooter: function() { // return '...beforeFooter'; // }, // footer: function() { // return 'Footer'; // }, // afterFooter: function() { // return '...afterFooter'; // }, } }, hover: { mode: 'dataset' }, scales: { xAxes: [{ display: true, scaleLabel: { show: true, labelString: 'Month' } }], yAxes: [{ display: true, scaleLabel: { show: true, labelString: 'Value' }, ticks: { suggestedMin: -10, suggestedMax: 250, } }] } } }; $.each(config.data.datasets, function(i, dataset) { dataset.borderColor = randomColor(0.4); dataset.backgroundColor = randomColor(0.5); dataset.pointBorderColor = randomColor(0.7); dataset.pointBackgroundColor = randomColor(0.5); dataset.pointBorderWidth = 1; }); window.onload = function() { var ctx = document.getElementById("canvas").getContext("2d"); window.myLine = new Chart(ctx, config); }; $('#randomizeData').click(function() { $.each(config.data.datasets, function(i, dataset) { dataset.data = dataset.data.map(function() { return randomScalingFactor(); }); }); window.myLine.update(); }); $('#changeDataObject').click(function() { config.data = { labels: ["July", "August", "September", "October", "November", "December"], datasets: [{ label: "My First dataset", data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()], fill: false, }, { label: "My Second dataset", fill: false, data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()], }] }; $.each(config.data.datasets, function(i, dataset) { dataset.borderColor = randomColor(0.4); dataset.backgroundColor = randomColor(0.5); dataset.pointBorderColor = randomColor(0.7); dataset.pointBackgroundColor = randomColor(0.5); dataset.pointBorderWidth = 1; }); // Update the chart window.myLine.update(); }); $('#addDataset').click(function() { var newDataset = { label: 'Dataset ' + config.data.datasets.length, borderColor: randomColor(0.4), backgroundColor: randomColor(0.5), pointBorderColor: randomColor(0.7), pointBackgroundColor: randomColor(0.5), pointBorderWidth: 1, data: [], }; for (var index = 0; index < config.data.labels.length; ++index) { newDataset.data.push(randomScalingFactor()); } config.data.datasets.push(newDataset); window.myLine.update(); }); $('#addData').click(function() { if (config.data.datasets.length > 0) { var month = MONTHS[config.data.labels.length % MONTHS.length]; config.data.labels.push(month); $.each(config.data.datasets, function(i, dataset) { dataset.data.push(randomScalingFactor()); }); window.myLine.update(); } }); $('#removeDataset').click(function() { config.data.datasets.splice(0, 1); window.myLine.update(); }); $('#removeData').click(function() { config.data.labels.splice(-1, 1); // remove the label first config.data.datasets.forEach(function(dataset, datasetIndex) { dataset.data.pop(); }); window.myLine.update(); }); </script> </body> </html>
krasnyuk/e-liquid-MS
wwwroot/assets/js/Chart.js/samples/line.html
HTML
mit
8,129
{% if SHARIFF|default(false) %} <hr /> <!-- Shariff Button BEGIN --> <div class="shariff" {% if SHARIFF_BACKEND_URL %} data-backend-url="{{ SHARIFF_BACKEND_URL }}" {% endif %} {% if SHARIFF_LANG %} data-lang="{{ SHARIFF_LANG }}" {% endif %} {% if SHARIFF_ORIENTATION|default('vertical') %} data-orientation="{{ SHARIFF_ORIENTATION }}" {% endif %} {% if SHARIFF_SERVICES %} data-services = "{{ SHARIFF_SERVICES }}" {% endif %} {% if SHARIFF_THEME %} data-theme="{{ SHARIFF_THEME }}" {% endif %} {% if SHARIFF_TWITTER_VIA|default(false) %} data-twitter-via="{{ TWITTER_USERNAME }}" {% endif %} data-url="{{ SITEURL }}/{{ article.url }}"></div> <!-- Shariff Button END --> {% endif %}
jarrodmillman/stat159-fall2015
www/_theme/templates/includes/shariff.html
HTML
bsd-2-clause
849
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="It's been a nightmarish three days trapped in a brothel with the shits. Now, I can finally leave. But then, riot police, and some dickhead runs over my bike..."> <title>What's the worst day of your life? Mine's been worse, and has the trots, and cops, in Africa...</title> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Trots and Cops" /> <meta property="og:description" content="After being trapped in a brothel for three days with the trots, today's ride has to be perfect..." /> <meta property="og:url" content="http://www.shotsfromthebar.com/posts/trots-and-cops" /> <meta property="og:site_name" content="Shots From The Bar" /> <meta property="fb:admins" content="192086514593789" /> <meta property="og:image" content="http://www.shotsfromthebar.com/img/portfolio/fullsize/P1080264-FB.jpg" /> <link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'> <link href="../css/creative.min.css" rel="stylesheet"> <link href="../css/shotsfromthebar.css" rel="stylesheet"> <link rel="icon" href="../img/portfolio/fullsize/logofav.png"/> </head> <body id="page-top"> <nav class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <a href="../index.html" class="navbar-brand"><img class="logo" src="../img/portfolio/fullsize/smalllogo.png"></a> </div> <div style="float: right"> <a href="http://instagram.com/shotsfromthebar" target="_blank"><img class="logo" src="../img/portfolio/thumbnails/instagram.png"></a> <a href="http://facebook.com/shotsfromthebar" target="_blank" class=""><img class="logo" src="../img/portfolio/thumbnails/facebook.png"></a> </div> </div> <!-- /.container-fluid --> </nav> <div id="gone" class="floater container-fluid text-center"> <div class="row vcenter"> <div class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-lg-offset-1 col-md-offset-1 col-sm-offset-1 col-xs-offset-1"> <a href="http://www.obliviousthebook.com"><img class="img-responsive pull-right" src="../img/portfolio/fullsize/3D-cover-small.png"></a> </div> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-7"> <h4 class="hidden-xs">Get book one of the Oblivious Trilogy - Boundaries, available on digital now!</h4> <h5 class="hidden-lg hidden-md hidden-sm">Get book one of the Oblivious Trilogy - Boundaries, available on digital now!</h5> <a href="http://www.obliviousthebook.com"><img class="obliviousbtn" src="../img/portfolio/fullsize/shityeah.png"></a> <img id="disappear" class="obliviousbtn" src="../img/portfolio/fullsize/pissoff.png"> </div> </div> </div> <div class="container-fluid"> <img class="feature-img" src="../img/portfolio/fullsize/P1080264-desktop.jpg"> </div> <div class="post-content"> <h1>Liberia (<em>not</em> Libya...), AFRICA</h1> <h2>A bad case of the trots, and cops...</h2> <h2>(12 minute read)</h2> <p><em>...FML...</em></p> <img class="img-responsive" src="../img/portfolio/thumbnails/map3.png"> <p>After three day's stuck in a bullet-holed Monrovian brothel with the trots (I don't want to talk about it... but suffice to say that a brothel wasn't my first choice of accommodation), I can finally get going. Today's ride <em>has to</em> be perfect. Anything less than that and it'll be the end of me.</p> <p>I’m done with Monrovia.</p> <p>I dare not eat anything. It won't touch the sides...</p> <p>Being crook is exhausting, and the lack of food, energy and sleep is starting to show.</p> <p>I feel totally spent and the day hasn’t even started yet. I drag my feet when I walk. I'm all stooped over and old looking.</p> <p>Loading the bike takes everything I have left, and I ride out.</p> <p>So long, Monrovia, you’ve been bloody awful.</p> <br> <br> <p>I sit at a set of traffic lights, musing over the chance of a wet-season coming soon. Two policemen pop up out of nowhere.</p> <p>“Papers, <em>now</em>!!”</p> <p>They’re in <em>full riot gear.</em></p> <p>All in black.</p> <p>They look like an African SWAT team.</p> <p>Scared the shit out of me.</p> <p>They’ve come from a police post at the side of road that I didn’t spot coming into the red light. There's a handful of hardcore cops milling about over there, watching.</p> <p>I leave the bike running and hand them my UK rego papers; it's all I've got. <a href="../posts/dealing-with-uncle-sam.html" target="_blank">Thanks, Uncle Sam</a></p> <p>They’re as confused about these as everyone else is when I hand them over; no one seems to ever be sure what exactly they’re looking at. But it looks <em>very</em> official...</p> <p>“Where's your permit?”</p> <p>Uncle Sam has fucked me.</p> <p>The lights go green. And all the cars backed up behind me go fucking berserk. Beautiful.</p> <p>“This is my permit. See?”</p> <p>“No. You are under arrest!” Bam! The other cop grabs my keys, turns off my bike and shoves the keys in his pocket in one swift movement.</p> <p>“Oi! Hey! Give those back!”</p> <p>“No, you are under arrest!”</p> <p>Fuck. Fuck, fuck, fuck. “No... No I’m not. I’m not under arrest. Why do you think I’m under arrest? What for?”</p> <p>“You have no permit, you are under arrest.”</p> <p>This one, the shorter one, seems to be a little dim.</p> <p>"Bring the bike over here", the tall one gestures at the side of the road side. The cars behind me are going apeshit; they’ve missed the green light...</p> <p>What choice do I have? Gotta do it.</p> <p>Leverage lost, I try the usual arguments that the registration is fine, I don’t need a permit. I’m allowed to be here. “You go and ask Uncle Sam, the boss man at the border, big boss man, you ask him, the boss man, he says 'No embarrassment', you ask!”</p> <p>That throws them... So I push it harder.</p> <p>The short one picks up his chorus line “You are under arrest! Yes, embarrassment!”</p> <p>I’m too tired. My thick brain can't come up with anything clever...</p> <p>A small, plain clothed man comes up to me from out of a growing crowd, and starts telling me what the problem is.</p> <p>Who the fuck is this guy??</p> <p>According to him it's not a problem that I don't have a T.I.P. - The problem is that motorbikes aren't allowed on this road without a special permit.</p> <p>What??</p> <p>“Who are you??” I ask him. I'm totally out of patience. “Are you the police??”</p> <p>To that he whips out an I.D. card.</p> <p>I lean in and squint. I’m talking to Colonel Williams of Liberian Immigration.</p> <p><em>What???</em></p> <p>Am I supposed to believe that? That a Colonel just happened to be passing by? On foot? I smell a rat. The fattest of rats. This is a stich up. It’s gotta be. But the I.D. looks legit...</p> <p>"I don't get it. It's a road. I shouldn't need a permit."</p> <p>"Do you see any motorbikes on this road? No. And look," the Colonel points to the corner of the intersection "you see all those scooter taxi's, they wait there because they don't have a permit"</p> <p>There's a handful of scooters with riders just sitting on them, doing nothing, going nowhere...</p> <p>While I think that over, the riot police have pulled over some other poor bastard on two wheels.</p> <p>He looks terrified.</p> <p>He frantically pulls out of his shirt a laminated A4 sheet of paper that is roped around his neck.</p> <p>I’m not making it up; an enormous permit, laminated, hung from around his neck, stuffed down his shirt.</p> <p>I take a close look.</p> <p>It looks legit. Some sort of permission granted for using a scooter or motorcycle on the main road. Stamps and everything.</p> <p>I scan my memory for motorbikes I’ve seen on this street in Monrovia. Not a single one comes to mind. And it's Africa, they should be everywhere...</p> <p>"You are under arrest!!!"</p> <p>Fuck. That might be right.</p> <p>No one ever told me about this. How was I supposed to know?</p> <p>Ugh.</p> <p>I’m so tired.</p> <p>“Can I have my keys back?”</p> <p>“You are under arrest!”</p> <p>Great.</p> <p>It’s time to change tack, and fast.</p> <p>“Hey guys, do you know how I can get to Buchannan? Which way is it, you know, without using the wrong roads? Is it down this way?”</p> <p>It’s a dumb thing to ask and completely off topic.</p> <p><em>Everyone</em> wants to help me with directions. They're all talking over each other, finishing each other's sentences to explain it to me. I’m getting advice from tall cop, short cop and my mate the Colonel. Even passer-by's are throwing in their two cents. They're giving me directions on how to get <em>all the way</em> to Buchannan.</p> <p>This is going to work...</p> <p>I mirror back to them their own directions, and everyone’s all smiles and nodding and thumbs up.</p> <p>“Great, thank you so much guys, I really appreciate it. Can I grab my keys?”</p> <p>Short n dim actually gives me my keys back! This is going to work! What a gambit!!</p> <p>“Thanks again”</p> <p>I fire up the bike. I can see the moment everybody snaps out of their well-wishing hypnosis they were under; I can see it on their faces, as the roar of the bike shakes them out of it.</p> <p>“You are under arrest!!!”</p> <p>Ah, <em>fuck</em>!!</p> <p>So friggin close!</p> <p>“Come on man, I’m just a simple traveller, how am I supposed to know about this, it was an honest mistake, I won’t do it again. Just let me off this time. Give me a break.”</p> <p>I look pleadingly to my mate the Colonel, who I’ve decided is on my team, but even he seems to be out of his league, or at least out of his jurisdiction: This is a police matter, and the Colonel of immigration doesn't hold court here, it seems.</p> <p>He shrugs his shoulders and wishes me good luck and off he goes. The one guy in my corner and I’ve lost him.</p> <p>The riot cops tell me to go and park over on the other side of the road next to their checkpoint, where the rest of the cops are.</p> <p>I’m so hungry.</p> <p>I wonder if I threw up all over everyone if they’d let me leave, or if that would make things worse.</p> <p>Or maybe I could crap my pants. They’d <em>definitely</em> let me go. Pronto.</p> <p>I reckon I could do either of the two, on cue.</p> <p>"We are taking the bags, and the bike. You are going to prison. You are under arrest." Tall cop says it, with solemn finality.</p> <p>Nothing happens. I just sit and on the bike and wait.</p> <br> <br> <p>Hunger and exhaustion start crushing me.</p> <p>Locals have all started pressing in, a big mob of them, keen to have a gawk and watch me get fucked. Like it’s some sort of spectator sport.</p> <p>The riot cops tell them to move on, but they refuse, shouting at the cops, who are shouting back.</p> <p>The cops start shoving people. The people shove back. Batons are brandished, the shouting ratchets.</p> <p>I’m <em>shitting</em> it. I need to get out of here.</p> <p>What the <em>fuck</em> is going on??</p> <p>The mob scuffles with the cops, and then disappears.</p> <p>I’m at the end of my tether.</p> <p>Either they'll put me in prison, or they want a monster bribe.</p> <p>What would I pay to get out of here? They sky’s the limit...</p> <p>I'll pay all I've got.</p> <p>How do I start that conversation? I haven’t the slightest idea.</p> <p>I’ve never done it before.</p> <p>What worries me the most about suggesting a bribe is that it could be used as further leverage against me, digging me deeper into the hole. I don't want another charge on the rap sheet. So I do nothing; it seems the least worst option.</p> <p>I'm actually pretty proud of myself, I think that - despite being ready to meltdown - I would look, to the outsider, bored.</p> <p>I really hope I do.</p> <br> <br> <p>A new cop comes up to me, one I haven’t talked to before, a young man, but from the looks of him he might be the one in charge here...</p> <p>“You’re under arrest.”</p> <p>Ugh.</p> <p>I shake his hand, and wait for him to go on.</p> <p>“You are under arrest, yes? We are taking your everything, yes? And you are going to go to a Liberian prison for six months, yes? Liberia prisons are not a nice place. Very bad. Yes?”</p> <p>I think he's finished...</p> <p>“Wow... Six months is a long time for a minor traffic offence, don’t you reckon?”</p> <p>“Yes” he nods his head, solemnly, “a very long time. Yes. <em>Or</em>, you can pay a fine now”</p> <p>“Ok. What’s the fine?”</p> <p>“Yes...” he thinks about it. “Fifty, <em>American</em>, dollars!”</p> <p>I keep my hysteria in check. Just.</p> <p>I want to laugh and cry and slap this dickhead in the face. All at once.</p> <p>All this - all of this tension and pant-shitting terror and freak out and dread and anxiety - all of it, for fifty measly bucks.</p> <p>I almost feel short changed... I raise my eyebrows.</p> <p>“Whoa! Fifty! That's a lot!!" I shake my hands like they're hot. "That's <em>a lot</em> of money... I have a twenty here?”</p> <p>He thinks about it. “Yes. Ok.”</p> <p>Unbelievable.</p> <p>My first bare-faced bribe in Africa.</p> <p>I dig into my secret money pocket inside my leather jacket - very careful not to reveal too much - and dig a twenty dollar note out of a wad of a thousand.</p> <p>He tells me not to pay the fine here, but around the corner a little bit.</p> <p>Dodgy.</p> <p>I think He just wants to make sure that none of his police buddies see the transaction.</p> <p>"You let me on the bike and we go together."</p> <p>“Nah mate. You can walk.”</p> <p>I follow him for a while and then go ahead to park the bike out of the line of sight of the checkpoint.</p> <p>I stop the bike and I'm immediately boxed in tightly by three scooters.</p> <p>"Oi!? What the..!?"</p> <p>One has blocked my path in front, another blocked my path behind, and a third pulls up alongside me, with the cop sitting on the back. </p> <p>All of them are grinning at me.</p> <p>Mugs.</p> <p>Must've thought I was making a getaway...</p> <p>Unnecessary.</p> <p>I give the cop the twenty bucks, the scooter rider guns it down the street, away from the police checkpoint, laughing.</p> <p>Jokes on you, ya spud.</p> <p>I go to leave but the guy on the scooter in front of me moves his scooter to block my path. Grinning.</p> <p>I'm going to use my last ounce of strength to deck him...</p> <p>I rock back, change direction, and ride off.</p> <p>Even though it's over I feel the need to flee.</p> <p>The damage was nothing - in fact, it's a victory if ever there was one - but it’s left me feeling frazzled and vulnerable. Unsafe.</p> <p>I hate being at the whim of these bastards. <em>Hate</em> it. It makes me feel like a hunted animal, makes me edgy. Tense.</p> <p>After flying through the streets - spending more time than is safe with my eyes on my mirrors - I finally start breathing normally again, and decide to take a break.</p> <img class="img-responsive" src="../img/portfolio/thumbnails/P1080246-thumbnail.jpg"> <p>I’m starving.</p> <p>I pull over where I see a lady selling the biggest bananas on the planet.</p> <p>That’ll do.</p> <p>The bananas are so big they go from the tips of your finger to your elbow. A banana as big as a baguette.</p> <p>The lady seems a little perplexed, like it's odd that I'd buy one, but she sells it to me anyway.</p> <p>As we're changing money she just starts screaming.</p> <p>I follow her gaze, and see a ute <em>reversing over the top of my bike.</em></p> <p>I scream.</p> <p>The metal on my bike is shrieking.</p> <p>"<em>Stop! Stop!!!</em>" I run.</p> <p>The driver stops the car, the bike still underneath the tray.</p> <p>"<em>GET OFF!!!!</em>" This is it. It’s all over. He’s just fucked my bike.</p> <p>He puts the ute in drive, fucks up the hill start and rolls back further. I scream. I can do nothing.</p> <p>The car drives forward to the screech of metal on metal.</p> <p>My bike... My Enfield...</p> <p>It’s all too much. I'm making noisy breaths. I want to go home.</p> <p>The bike is still, somehow, on it's wheels, but pushed way over to one side, warping the kickstand. On the side that took the contact the metal crashbar has been bent all the way back so that it’s pinned against the side of the bike and the exhaust. The tank has a ding in the bottom of it, inches from the motor. It's taken off paint.</p> <p>I keep looking.</p> <p>"Is that it???"</p> <p>That’s it.</p> <p>The driver has jumped out of the ute and is absolutely shitting it. I would be to; I'm fucking furious. He's apologising profusely. I can’t even really hear him; I’m too busy swearing. Not at him. Just at everything. I don’t even know what I’m really saying anymore. Just randomly walking about, nonsensically but profusely venting my spleen.</p> <p>It feels better.</p> <p>This morning has been more than I can deal with.</p> <p>The exhaustion's in my bones now.</p> <p>All I wanted was a banana. Is that too much to ask?</p> <p>I give the kickstand and the crashbar a good kicking to re-align it a little, and go get my banana.</p> <p>I peel it, and the thin outer layer of the peel comes ripping off like sticky tape, leaving all the peel behind.</p> <p>Under-fucking-ripe.</p> <p>I’m gonna cry.</p> <p>I rip the whole thing apart with my hands and nails like a monkey might. Finally, banana. I try to take a bite but it’s impossible, it’s so tough I can’t even bite a piece off with my back teeth like a rat.</p> <p>I hate this banana.</p> <p>The screaming brought in a huge mob, and I ask it if someone would like my banana. A man steps forward and takes the mangled, half-chewed banana off me.</p> <p>I’m off.</p> <br> <br> <br> <br> <img src="../img/portfolio/thumbnails/P1080260-thumbnail.jpg" class="img-responsive" alt="Riding through Liberia"> <p>And now. This.</p> <p>It's <em>stunning.</em></p> <p>After Monrovia it's been three days of riding through secluded, gorgeous, old growth forest in the Liberian outback.</p> <p>Totally worth it.</p> <p>I could leap tall buildings in a single bound.</p> <p>It’s incredible what a good night’s sleep and a full, settled stomach can do. And showers; I've taken five.</p> <p>It's so <em>green</em> out here.</p> <p>On this well graded dirt road I cruise, take it easy, enjoy the ride, head in the clouds, soak it all in.</p> <p>The track is never straight, following the contours of the land. </p> <p>The red stuff under the tyres has gone a deeper, rusty red after last night’s rains. The forest has become way, way denser since yesterday. It's older. Untouched. It’s so thick that anything a few meters into the forest is lost to sight; you can only ever see as far as the next corner.</p> <p>The rain has wetted the leaves, cleaned them up, and made the shades of green that much richer.</p> <p>There are heavy storm clouds hovering in the sky, threatening to ruin my day. For now though they're content just shading me without pissing on the parade.</p> <p>Fuck it’s beautiful.</p> <p>It feels so <em>old</em>. Ancient, even. It’s got to be old growth forest; It must have taken hundreds of years for the trees to grow to this size.</p> <p>The Enfield sounds incredible today. I'm happy.</p> <p>And, I have it all to myself.</p> <br> <br> <p>Except for the U.N. ...</p> <p>Enormous, tank like vehicles, all in white. "U.N." emblazoned in black.</p> <p>I freak out. <em>Am I not supposed to be here??</em></p> <p>The soldiers are dressed like soldiers, except they're wearing sky blue helmets.</p> <p>They’ve got big road graders, and trucks, and tractors. All perfect white.</p> <p>I ride past, and they're disinterested. I actually get a couple of waves.</p> <p>They're <em>Pakistani's</em>?</p> <p>That's weird...</p> <br> <p>Pulling into Harper, I'm stunned.</p> <p>I've never seen anything like this before...</p> </div> <div class="row next-prev"> <div class="col-lg-3 col-lg-offset-3 col-xs-6 sr-icons"> <div class="portfolio-box" onclick="void(0)""> <img src="../img/portfolio/thumbnails/P1070939-thumbnail.jpg" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> <h4><a href="../posts/dealing-with-uncle-sam.html">Previous</a></h4> </div> </div> </div> </div> </div> <div class="col-lg-3 3 col-xs-6 sr-icons"> <div class="portfolio-box" onclick="void(0)""> <img src="../img/portfolio/thumbnails/P1080318-thumbnail.jpg" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> <h4><a href="../posts/borders-without-bridges.html">Next</a></h4> </div> </div> </div> </div> </div> </div> <div class="row socialshare"> <!-- Facebook --> <a href="http://www.facebook.com/sharer.php?u=http://www.shotsfromthebar.com" target="_blank"> <img class="sr-icons" src="../img/portfolio/social/facebook.png" alt="Facebook" /> </a> <!-- Google+ --> <a href="https://plus.google.com/share?url=http://www.shotsfromthebar.com" target="_blank"> <img class="sr-icons" src="../img/portfolio/social/google.png" alt="Google" /> </a> <!-- Twitter --> <a href="https://twitter.com/share?url=http://www.shotsfromthebar.com&amp;text=Shots%20From%20The%20Bar&amp;hashtags=shotsfromthebar" target="_blank"> <img class="sr-icons" src="../img/portfolio/social/twitter.png" alt="Twitter" /> </a> <!-- Email --> <a href="mailto:?Subject=Shots From The Bar&amp;Body=A%20Royal%20Enfield%20in%20West%20Africa%20 http://www.shotsfromthebar.com"> <img class="sr-icons" src="../img/portfolio/social/email.png" alt="Email" /> </a> </div> <h5 class="footertext sharetext"><strong>HAVING A LAUGH? SHARE IT ROUND!</strong></h5> <nav class="navbar navbar-default navbar-fixed-bottom"> <div class="footerrow nomargin row"> <p class="footertext"><strong>AS SEEN IN</strong></p> <div class="col-lg-6 col-xs-12 flexx"> <div class="col-lg-6 col-xs-6 vcenter"><img src="../img/portfolio/fullsize/OverlandBound.png" class="img-responsive center-block articleshots" alt="Overland Bound"></div> <div class="col-lg-6 col-xs-6 vcenter"><img src="../img/portfolio/fullsize/Rider.png" class="img-responsive center-block articleshots" alt="Rider Magazine"></div> </div> <div class="col-lg-6 col-xs-12 flexx"> <div class="col-lg-6 col-xs-6 vcenter"><img src="../img/portfolio/fullsize/ADVMoto.png" class="img-responsive center-block articleshots" alt="Rider Magazine"></div> <div class="col-lg-6 col-xs-6 vcenter"><img src="../img/portfolio/fullsize/ExcuseMyBike.png" class="img-responsive center-block articleshots" alt="Rider Magazine"></div> </div> </div> <div class="footerrow row next-prev nomargin"> <p class="footertext sr-icons"><strong>MOST POPULAR STORIES</strong></p> <div class="sr-icons"> <a href="../posts/cape-coast-carnage"> <p class="footertext nomargin mediumtext">Cape Coast Carnage</p> </a> </div> <div class="sr-icons"> <a href="../posts/adventuring-in-africa-1"> <p class="footertext nomargin mediumtext">Chasing Mali</p> </a> </div> <div class="sr-icons"> <a href="../posts/borders-without-bridges"> <p class="footertext nomargin mediumtext">Borders Without Bridges</p> </a> </div> </div> <div class="footerrow row"> <p class="footertext gosocial"><strong>FOR MORE SHOTS, GO SOCIAL!</strong></p> <div class="col-lg-3 col-xs-3 footer-icon"> <a href="../index.html" class="navbar-brand"><img class="logo" src="../img/portfolio/fullsize/smalllogo.png" alt="Shots From The Bar logo"></a> </div> <div class="col-lg-3 col-xs-3 footer-icon"> <a href="http://instagram.com/shotsfromthebar" target="_blank"><img class="logo" style="float: right" src="../img/portfolio/thumbnails/instagram.png"></a> </div> <div class="col-lg-3 col-xs-3 footer-icon"> <a href="http://facebook.com/shotsfromthebar" target="_blank" class=""><img class="logo" src="../img/portfolio/thumbnails/facebook.png"></a> </div> <div class="col-lg-3 col-xs-3 footer-icon"></div> </div> </nav> <!-- jQuery --> <script src="../vendor/jquery/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="../vendor/bootstrap/js/bootstrap.min.js"></script> <!-- Plugin JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script> <script src="../vendor/scrollreveal/scrollreveal.min.js"></script> <!-- Theme JavaScript --> <script src="../js/creative.min.js"></script> <script src="../js/flarg.js"></script> <script type="text/javascript"> var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101017915); (function() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//static.getclicky.com/js'; ( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s ); })(); </script> </body> </html>
shotsfromthebar/shotsfromthebar.github.io
posts/trots-and-cops.html
HTML
mit
28,998
<!doctype html> <html lang="en"> <head> <title>Code coverage report for lib/list.js</title> <meta charset="utf-8"> <link rel="stylesheet" href="../prettify.css"> <link rel="stylesheet" href="../base.css"> <style type='text/css'> div.coverage-summary .sorter { background-image: url(../sort-arrow-sprite.png); } </style> </head> <body> <div class="header high"> <h1>Code coverage report for <span class="entity">lib/list.js</span></h1> <h2> Statements: <span class="metric">100% <small>(0 / 0)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Branches: <span class="metric">100% <small>(0 / 0)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Functions: <span class="metric">100% <small>(0 / 0)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Lines: <span class="metric">100% <small>(0 / 0)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Ignored: <span class="metric"><span class="ignore-none">none</span></span> &nbsp;&nbsp;&nbsp;&nbsp; </h2> <div class="path"><a href="../index.html">All files</a> &#187; <a href="index.html">lib/</a> &#187; list.js</div> </div> <div class="body"> <pre><table class="coverage"> <tr><td class="line-count">1</td><td class="line-coverage"><span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">&nbsp;</pre></td></tr> </table></pre> </div> <div class="footer"> <div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Wed Jun 17 2015 22:45:54 GMT+0800 (SGT)</div> </div> <script src="../prettify.js"></script> <script> window.onload = function () { if (typeof prettyPrint === 'function') { prettyPrint(); } }; </script> <script src="../sorter.js"></script> </body> </html>
tienthanh8490/dsa.js
coverage/lcov-report/lib/list.js.html
HTML
mit
1,804
<!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (16) on Tue Mar 01 09:57:38 PST 2022 --> <title>Uses of Class io.constructor.client.models.FilterFacet (constructorio-client 5.15.5 API)</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="dc.created" content="2022-03-01"> <meta name="description" content="use: package: io.constructor.client.models, class: FilterFacet"> <meta name="generator" content="javadoc/ClassUseWriter"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> <script type="text/javascript" src="../../../../../script-dir/jquery-3.5.1.min.js"></script> <script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script> </head> <body class="class-use-page"> <script type="text/javascript">var pathtoroot = "../../../../../"; loadScripts(document, 'script');</script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <div class="flex-box"> <header role="banner" class="flex-header"> <nav role="navigation"> <!-- ========= START OF TOP NAVBAR ======= --> <div class="top-nav" id="navbar.top"> <div class="skip-nav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <ul id="navbar.top.firstrow" class="nav-list" title="Navigation"> <li><a href="../../../../../index.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../FilterFacet.html" title="class in io.constructor.client.models">Class</a></li> <li class="nav-bar-cell1-rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="sub-nav"> <div class="nav-list-search"><label for="search">SEARCH:</label> <input type="text" id="search" value="search" disabled="disabled"> <input type="reset" id="reset" value="reset" disabled="disabled"> </div> </div> <!-- ========= END OF TOP NAVBAR ========= --> <span class="skip-nav" id="skip.navbar.top"> <!-- --> </span></nav> </header> <div class="flex-content"> <main role="main"> <div class="header"> <h1 title="Uses of Class io.constructor.client.models.FilterFacet" class="title">Uses of Class<br>io.constructor.client.models.FilterFacet</h1> </div> <div class="caption"><span>Packages that use <a href="../FilterFacet.html" title="class in io.constructor.client.models">FilterFacet</a></span></div> <div class="summary-table two-column-summary"> <div class="table-header col-first">Package</div> <div class="table-header col-last">Description</div> <div class="col-first even-row-color"><a href="#io.constructor.client.models">io.constructor.client.models</a></div> <div class="col-last even-row-color">&nbsp;</div> </div> <section class="class-uses"> <ul class="block-list"> <li> <section class="detail" id="io.constructor.client.models"> <h2>Uses of <a href="../FilterFacet.html" title="class in io.constructor.client.models">FilterFacet</a> in <a href="../package-summary.html">io.constructor.client.models</a></h2> <div class="caption"><span>Methods in <a href="../package-summary.html">io.constructor.client.models</a> that return types with arguments of type <a href="../FilterFacet.html" title="class in io.constructor.client.models">FilterFacet</a></span></div> <div class="summary-table three-column-summary"> <div class="table-header col-first">Modifier and Type</div> <div class="table-header col-second">Method</div> <div class="table-header col-last">Description</div> <div class="col-first even-row-color"><code><a href="https://docs.oracle.com/javase/7/docs/api/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;<a href="../FilterFacet.html" title="class in io.constructor.client.models">FilterFacet</a>&gt;</code></div> <div class="col-second even-row-color"><span class="type-name-label">BrowseResponseInner.</span><code><span class="member-name-link"><a href="../BrowseResponseInner.html#getFacets()">getFacets</a></span>()</code></div> <div class="col-last even-row-color">&nbsp;</div> <div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/javase/7/docs/api/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;<a href="../FilterFacet.html" title="class in io.constructor.client.models">FilterFacet</a>&gt;</code></div> <div class="col-second odd-row-color"><span class="type-name-label">SearchResponseInner.</span><code><span class="member-name-link"><a href="../SearchResponseInner.html#getFacets()">getFacets</a></span>()</code></div> <div class="col-last odd-row-color">&nbsp;</div> </div> </section> </li> </ul> </section> </main> <footer role="contentinfo"> <hr> <p class="legal-copy"><small>Copyright &#169; 2022. All rights reserved.</small></p> </footer> </div> </div> </body> </html>
Constructor-io/constructorio-java
docs/io/constructor/client/models/class-use/FilterFacet.html
HTML
mit
5,268
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./39bf0ca022e40cbb83ab3c7fbf4854c12c3cb294506a5318088737b190e3a004.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/42ff2532ed9c5dc9d96e96e378be5c4301d1490055d4d0cd3c7e307b3ee2691f.html
HTML
mit
550
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>Helix: logic/util/GetAllLayouts.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Helix </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</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('GetAllLayouts_8h_source.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">GetAllLayouts.h</div> </div> </div><!--header--> <div class="contents"> <a href="GetAllLayouts_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">/* ***************************************************************************</span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment"> Copyright (c): 2008 - 2013 Hericus Software, LLC.</span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="comment"> License: The MIT License (MIT)</span></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="comment"> Authors: Steven M. Cherry</span></div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="comment">*************************************************************************** */</span></div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;</div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="preprocessor">#ifndef GetAllLayouts_H</span></div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="preprocessor">#define GetAllLayouts_H</span></div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;</div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;<span class="preprocessor">#include &lt;xmlinc.h&gt;</span></div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="preprocessor">#include &lt;twine.h&gt;</span></div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="keyword">using namespace </span><a class="code" href="namespaceSLib.html">SLib</a>;</div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;</div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="preprocessor">#include &quot;<a class="code" href="ActionClass_8h.html">ActionClass.h</a>&quot;</span></div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="keyword">using namespace </span><a class="code" href="namespaceHelix_1_1Glob.html">Helix::Glob</a>;</div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;</div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="keyword">namespace </span><a class="code" href="namespaceHelix.html">Helix</a> {</div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;<span class="keyword">namespace </span>Logic {</div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="keyword">namespace </span>util {</div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;</div> <div class="line"><a name="l00025"></a><span class="lineno"><a class="line" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html"> 25</a></span>&#160;<span class="keyword">class </span><a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a> : <span class="keyword">public</span> <a class="code" href="classHelix_1_1Glob_1_1ActionClass.html">ActionClass</a></div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;{</div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160; <span class="keyword">public</span>:</div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160; <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>(xmlNodePtr action);</div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;</div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160; <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>(<span class="keyword">const</span> <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>&amp; c);</div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;</div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160; <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>&amp; operator=(<span class="keyword">const</span> <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>&amp; c);</div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;</div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160; <span class="keyword">virtual</span> ~<a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">GetAllLayouts</a>();</div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;</div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160; <span class="keyword">virtual</span> <span class="keywordtype">void</span> ExecuteRequest(<a class="code" href="classHelix_1_1Glob_1_1IOConn.html">IOConn</a>&amp; ioc);</div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;</div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160; <span class="comment">// Retrieves a list of layouts from the given director and adds them to the list.</span></div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160; <span class="keyword">static</span> <span class="keywordtype">void</span> AddLayouts(vector&lt;twine&gt;&amp; list, twine dirName);</div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;</div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160; <span class="keyword">private</span>:</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;</div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160; <span class="comment">// Registers us with the global factory map:</span></div> <div class="line"><a name="l00049"></a><span class="lineno"><a class="line" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html#a1532ce5d5ba0fcaf3a53f4a6949ceac5"> 49</a></span>&#160; <span class="keyword">static</span> <a class="code" href="classHelix_1_1Glob_1_1ActionClassRegister.html">ActionClassRegister&lt;GetAllLayouts&gt;</a> <a class="code" href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html#a1532ce5d5ba0fcaf3a53f4a6949ceac5">reg</a>;</div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;};</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;</div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;}}} <span class="comment">// End of Namespace definitions</span></div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;<span class="preprocessor">#endif // GetAllLayouts_H Defined</span></div> <div class="ttc" id="classHelix_1_1Logic_1_1util_1_1GetAllLayouts_html"><div class="ttname"><a href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html">Helix::Logic::util::GetAllLayouts</a></div><div class="ttdef"><b>Definition:</b> GetAllLayouts.h:25</div></div> <div class="ttc" id="classHelix_1_1Glob_1_1ActionClassRegister_html"><div class="ttname"><a href="classHelix_1_1Glob_1_1ActionClassRegister.html">Helix::Glob::ActionClassRegister</a></div><div class="ttdef"><b>Definition:</b> ActionClass.h:58</div></div> <div class="ttc" id="classHelix_1_1Logic_1_1util_1_1GetAllLayouts_html_a1532ce5d5ba0fcaf3a53f4a6949ceac5"><div class="ttname"><a href="classHelix_1_1Logic_1_1util_1_1GetAllLayouts.html#a1532ce5d5ba0fcaf3a53f4a6949ceac5">Helix::Logic::util::GetAllLayouts::reg</a></div><div class="ttdeci">static ActionClassRegister&lt; GetAllLayouts &gt; reg</div><div class="ttdef"><b>Definition:</b> GetAllLayouts.h:49</div></div> <div class="ttc" id="namespaceSLib_html"><div class="ttname"><a href="namespaceSLib.html">SLib</a></div></div> <div class="ttc" id="namespaceHelix_html"><div class="ttname"><a href="namespaceHelix.html">Helix</a></div><div class="ttdef"><b>Definition:</b> HelixApi.h:46</div></div> <div class="ttc" id="classHelix_1_1Glob_1_1ActionClass_html"><div class="ttname"><a href="classHelix_1_1Glob_1_1ActionClass.html">Helix::Glob::ActionClass</a></div><div class="ttdef"><b>Definition:</b> ActionClass.h:25</div></div> <div class="ttc" id="ActionClass_8h_html"><div class="ttname"><a href="ActionClass_8h.html">ActionClass.h</a></div></div> <div class="ttc" id="classHelix_1_1Glob_1_1IOConn_html"><div class="ttname"><a href="classHelix_1_1Glob_1_1IOConn.html">Helix::Glob::IOConn</a></div><div class="ttdef"><b>Definition:</b> IOConn.h:49</div></div> <div class="ttc" id="namespaceHelix_1_1Glob_html"><div class="ttname"><a href="namespaceHelix_1_1Glob.html">Helix::Glob</a></div><div class="ttdef"><b>Definition:</b> ActionClass.h:22</div></div> </div><!-- fragment --></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_0f9694b8de2575528c6c0ae9f79dda65.html">logic</a></li><li class="navelem"><a class="el" href="dir_9d965e47aee2de297ad8a57bbe5f3662.html">util</a></li><li class="navelem"><a class="el" href="GetAllLayouts_8h.html">GetAllLayouts.h</a></li> <li class="footer">Generated on Wed Jan 14 2015 12:23:30 for Helix by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li> </ul> </div> </body> </html>
smc314/helix
html/devdoc/html/GetAllLayouts_8h_source.html
HTML
mit
14,667
<!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" /> <meta http-equiv="Refresh" content="0;url=../../../a/d/i/Adil_Abdul-Mahdi_10fb.html" /> </head> <body> <p>Redirecting to <a href="../../../a/d/i/Adil_Abdul-Mahdi_10fb.html">Adil Abdul-Mahdi</a></p> </body> </html>
Mitali-Sodhi/CodeLingo
Dataset/html/Abdul-Mahdi_6e1f.html
HTML
mit
462
{{#markdown}} <div class="row"> <div class="column"> {{> template}} </div> </div> {{/markdown}}
ebiwd/EBI-Style-lab
content/websites/patterns/template/layout.html
HTML
mit
106
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ko"> <head> <!-- Generated by javadoc (1.8.0_112) on Fri Apr 14 03:26:08 KST 2017 --> <title>Ing</title> <meta name="date" content="2017-04-14"> <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="Ing"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Ing.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/scene/ingsta/beans/Heart.html" title="class in com.scene.ingsta.beans"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/scene/ingsta/beans/Ing.html" target="_top">Frames</a></li> <li><a href="Ing.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>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&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.scene.ingsta.beans</div> <h2 title="Class Ing" class="title">Class Ing</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.scene.ingsta.beans.Ing</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable</dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">Ing</span> extends java.lang.Object implements java.io.Serializable</pre> <div class="block"><h1> 잉 빈 </h1> <p> 잉 콩 </p> 엔티티 빈 <ul> <li></li> </ul></div> <dl> <dt><span class="simpleTagLabel">Version:</span></dt> <dd>0.2.1-SNAPSHOT</dd> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>parkwonsuk</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../serialized-form.html#com.scene.ingsta.beans.Ing">Serialized Form</a></dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&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>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#contents">contents</a></span></code> <div class="block">내용</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#delDate">delDate</a></span></code> <div class="block">삭제일</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#ingId">ingId</a></span></code> <div class="block">잉 id</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private <a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#ingsta">ingsta</a></span></code> <div class="block">잉스타</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#ingstaId">ingstaId</a></span></code> <div class="block">잉스타 id</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#modDate">modDate</a></span></code> <div class="block">수정일</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#photo">photo</a></span></code> <div class="block">첨부 사진 URL</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#regDate">regDate</a></span></code> <div class="block">등록일</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#sceneList">sceneList</a></span></code> <div class="block">씬 리스트</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private static long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#serialVersionUID">serialVersionUID</a></span></code> <div class="block">Serializable</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private <a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#sharing">sharing</a></span></code> <div class="block">공유 잉</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#sharingId">sharingId</a></span></code> <div class="block">공유 잉 id</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#state">state</a></span></code> <div class="block">공개 범위 코드 밸류</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private <a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#stateCode">stateCode</a></span></code> <div class="block">공개 범위 코드</div> </td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#Ing--">Ing</a></span>()</code> <div class="block">잉 빈</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#Ing-java.lang.String-">Ing</a></span>(java.lang.String&nbsp;ingId)</code> <div class="block">잉 빈</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#Ing-java.lang.String-java.lang.String-">Ing</a></span>(java.lang.String&nbsp;ingId, java.lang.String&nbsp;state)</code> <div class="block">잉 빈</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#Ing-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-">Ing</a></span>(java.lang.String&nbsp;ingstaId, java.lang.String&nbsp;sharingId, java.lang.String&nbsp;contents, java.lang.String&nbsp;photo, java.lang.String&nbsp;state)</code> <div class="block">잉 빈</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#Ing-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.util.Date-java.util.Date-java.util.Date-">Ing</a></span>(java.lang.String&nbsp;ingId, java.lang.String&nbsp;ingstaId, java.lang.String&nbsp;sharingId, java.lang.String&nbsp;contents, java.lang.String&nbsp;photo, java.lang.String&nbsp;state, java.util.Date&nbsp;regDate, java.util.Date&nbsp;modDate, java.util.Date&nbsp;delDate)</code> <div class="block">잉 빈</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&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="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete 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>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#equals-java.lang.Object-">equals</a></span>(java.lang.Object&nbsp;obj)</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getContents--">getContents</a></span>()</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getDelDate--">getDelDate</a></span>()</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getIngId--">getIngId</a></span>()</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code><a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getIngsta--">getIngsta</a></span>()</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getIngstaId--">getIngstaId</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getModDate--">getModDate</a></span>()</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getPhoto--">getPhoto</a></span>()</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getRegDate--">getRegDate</a></span>()</code>&nbsp;</td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getSceneList--">getSceneList</a></span>()</code>&nbsp;</td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code><a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getSharing--">getSharing</a></span>()</code>&nbsp;</td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getSharingId--">getSharingId</a></span>()</code>&nbsp;</td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getState--">getState</a></span>()</code>&nbsp;</td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code><a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#getStateCode--">getStateCode</a></span>()</code>&nbsp;</td> </tr> <tr id="i14" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#hashCode--">hashCode</a></span>()</code>&nbsp;</td> </tr> <tr id="i15" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setContents-java.lang.String-">setContents</a></span>(java.lang.String&nbsp;contents)</code>&nbsp;</td> </tr> <tr id="i16" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setDelDate-java.util.Date-">setDelDate</a></span>(java.util.Date&nbsp;delDate)</code>&nbsp;</td> </tr> <tr id="i17" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setIngId-java.lang.String-">setIngId</a></span>(java.lang.String&nbsp;ingId)</code>&nbsp;</td> </tr> <tr id="i18" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setIngsta-com.scene.ingsta.beans.Ingsta-">setIngsta</a></span>(<a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a>&nbsp;ingsta)</code>&nbsp;</td> </tr> <tr id="i19" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setIngstaId-java.lang.String-">setIngstaId</a></span>(java.lang.String&nbsp;ingstaId)</code>&nbsp;</td> </tr> <tr id="i20" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setModDate-java.util.Date-">setModDate</a></span>(java.util.Date&nbsp;modDate)</code>&nbsp;</td> </tr> <tr id="i21" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setPhoto-java.lang.String-">setPhoto</a></span>(java.lang.String&nbsp;photo)</code>&nbsp;</td> </tr> <tr id="i22" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setRegDate-java.util.Date-">setRegDate</a></span>(java.util.Date&nbsp;regDate)</code>&nbsp;</td> </tr> <tr id="i23" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setSceneList-java.util.List-">setSceneList</a></span>(java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt;&nbsp;sceneList)</code>&nbsp;</td> </tr> <tr id="i24" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setSharing-com.scene.ingsta.beans.Ing-">setSharing</a></span>(<a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a>&nbsp;sharing)</code>&nbsp;</td> </tr> <tr id="i25" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setSharingId-java.lang.String-">setSharingId</a></span>(java.lang.String&nbsp;sharingId)</code>&nbsp;</td> </tr> <tr id="i26" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setState-java.lang.String-">setState</a></span>(java.lang.String&nbsp;state)</code>&nbsp;</td> </tr> <tr id="i27" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#setStateCode-com.scene.ingsta.beans.Code-">setStateCode</a></span>(<a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a>&nbsp;stateCode)</code>&nbsp;</td> </tr> <tr id="i28" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/scene/ingsta/beans/Ing.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, finalize, getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field.detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="serialVersionUID"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>serialVersionUID</h4> <pre>private static final&nbsp;long serialVersionUID</pre> <div class="block">Serializable</div> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../constant-values.html#com.scene.ingsta.beans.Ing.serialVersionUID">Constant Field Values</a></dd> </dl> </li> </ul> <a name="sceneList"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>sceneList</h4> <pre>private&nbsp;java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt; sceneList</pre> <div class="block">씬 리스트</div> </li> </ul> <a name="ingsta"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ingsta</h4> <pre>private&nbsp;<a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a> ingsta</pre> <div class="block">잉스타</div> </li> </ul> <a name="sharing"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>sharing</h4> <pre>private&nbsp;<a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a> sharing</pre> <div class="block">공유 잉</div> </li> </ul> <a name="stateCode"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>stateCode</h4> <pre>private&nbsp;<a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a> stateCode</pre> <div class="block">공개 범위 코드</div> </li> </ul> <a name="ingId"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ingId</h4> <pre>private&nbsp;java.lang.String ingId</pre> <div class="block">잉 id</div> </li> </ul> <a name="ingstaId"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ingstaId</h4> <pre>private&nbsp;java.lang.String ingstaId</pre> <div class="block">잉스타 id</div> </li> </ul> <a name="sharingId"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>sharingId</h4> <pre>private&nbsp;java.lang.String sharingId</pre> <div class="block">공유 잉 id</div> </li> </ul> <a name="contents"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>contents</h4> <pre>private&nbsp;java.lang.String contents</pre> <div class="block">내용</div> </li> </ul> <a name="photo"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>photo</h4> <pre>private&nbsp;java.lang.String photo</pre> <div class="block">첨부 사진 URL</div> </li> </ul> <a name="state"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>state</h4> <pre>private&nbsp;java.lang.String state</pre> <div class="block">공개 범위 코드 밸류</div> </li> </ul> <a name="regDate"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>regDate</h4> <pre>private&nbsp;java.util.Date regDate</pre> <div class="block">등록일</div> </li> </ul> <a name="modDate"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>modDate</h4> <pre>private&nbsp;java.util.Date modDate</pre> <div class="block">수정일</div> </li> </ul> <a name="delDate"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>delDate</h4> <pre>private&nbsp;java.util.Date delDate</pre> <div class="block">삭제일</div> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Ing--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Ing</h4> <pre>public&nbsp;Ing()</pre> <div class="block">잉 빈</div> </li> </ul> <a name="Ing-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Ing</h4> <pre>public&nbsp;Ing(java.lang.String&nbsp;ingId)</pre> <div class="block">잉 빈</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingId</code> - 잉 id</dd> </dl> </li> </ul> <a name="Ing-java.lang.String-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Ing</h4> <pre>public&nbsp;Ing(java.lang.String&nbsp;ingId, java.lang.String&nbsp;state)</pre> <div class="block">잉 빈</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingId</code> - 잉 id</dd> <dd><code>state</code> - 공개 범위 코드 밸류</dd> </dl> </li> </ul> <a name="Ing-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Ing</h4> <pre>public&nbsp;Ing(java.lang.String&nbsp;ingstaId, java.lang.String&nbsp;sharingId, java.lang.String&nbsp;contents, java.lang.String&nbsp;photo, java.lang.String&nbsp;state)</pre> <div class="block">잉 빈</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingId</code> - 잉 id</dd> <dd><code>ingstaId</code> - 잉스타 id</dd> <dd><code>sharingId</code> - 공유 잉 id</dd> <dd><code>contents</code> - 내용</dd> <dd><code>photo</code> - 첨부 사진 URL</dd> <dd><code>state</code> - 공개 범위 코드 밸류</dd> </dl> </li> </ul> <a name="Ing-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.util.Date-java.util.Date-java.util.Date-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Ing</h4> <pre>public&nbsp;Ing(java.lang.String&nbsp;ingId, java.lang.String&nbsp;ingstaId, java.lang.String&nbsp;sharingId, java.lang.String&nbsp;contents, java.lang.String&nbsp;photo, java.lang.String&nbsp;state, java.util.Date&nbsp;regDate, java.util.Date&nbsp;modDate, java.util.Date&nbsp;delDate)</pre> <div class="block">잉 빈</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingId</code> - 잉 id</dd> <dd><code>ingstaId</code> - 잉스타 id</dd> <dd><code>sharingId</code> - 공유 잉 id</dd> <dd><code>contents</code> - 내용</dd> <dd><code>photo</code> - 첨부 사진 URL</dd> <dd><code>state</code> - 공개 범위 코드 밸류</dd> <dd><code>regDate</code> - 등록일</dd> <dd><code>modDate</code> - 수정일</dd> <dd><code>delDate</code> - 삭제일</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="getSceneList--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSceneList</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt;&nbsp;getSceneList()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the sceneList</dd> </dl> </li> </ul> <a name="getIngsta--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getIngsta</h4> <pre>public&nbsp;<a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a>&nbsp;getIngsta()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the ingsta</dd> </dl> </li> </ul> <a name="getSharing--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSharing</h4> <pre>public&nbsp;<a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a>&nbsp;getSharing()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the sharing</dd> </dl> </li> </ul> <a name="getStateCode--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getStateCode</h4> <pre>public&nbsp;<a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a>&nbsp;getStateCode()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the stateCode</dd> </dl> </li> </ul> <a name="getIngId--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getIngId</h4> <pre>public&nbsp;java.lang.String&nbsp;getIngId()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the ingId</dd> </dl> </li> </ul> <a name="getIngstaId--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getIngstaId</h4> <pre>public&nbsp;java.lang.String&nbsp;getIngstaId()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the ingstaId</dd> </dl> </li> </ul> <a name="getSharingId--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSharingId</h4> <pre>public&nbsp;java.lang.String&nbsp;getSharingId()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the sharingId</dd> </dl> </li> </ul> <a name="getContents--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getContents</h4> <pre>public&nbsp;java.lang.String&nbsp;getContents()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the contents</dd> </dl> </li> </ul> <a name="getPhoto--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getPhoto</h4> <pre>public&nbsp;java.lang.String&nbsp;getPhoto()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the photo</dd> </dl> </li> </ul> <a name="getState--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getState</h4> <pre>public&nbsp;java.lang.String&nbsp;getState()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the state</dd> </dl> </li> </ul> <a name="getRegDate--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getRegDate</h4> <pre>public&nbsp;java.util.Date&nbsp;getRegDate()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the regDate</dd> </dl> </li> </ul> <a name="getModDate--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getModDate</h4> <pre>public&nbsp;java.util.Date&nbsp;getModDate()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the modDate</dd> </dl> </li> </ul> <a name="getDelDate--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getDelDate</h4> <pre>public&nbsp;java.util.Date&nbsp;getDelDate()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the delDate</dd> </dl> </li> </ul> <a name="setSceneList-java.util.List-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setSceneList</h4> <pre>public&nbsp;void&nbsp;setSceneList(java.util.List&lt;<a href="../../../../com/scene/ingsta/beans/Scene.html" title="class in com.scene.ingsta.beans">Scene</a>&gt;&nbsp;sceneList)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>sceneList</code> - the sceneList to set</dd> </dl> </li> </ul> <a name="setIngsta-com.scene.ingsta.beans.Ingsta-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setIngsta</h4> <pre>public&nbsp;void&nbsp;setIngsta(<a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans">Ingsta</a>&nbsp;ingsta)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingsta</code> - the ingsta to set</dd> </dl> </li> </ul> <a name="setSharing-com.scene.ingsta.beans.Ing-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setSharing</h4> <pre>public&nbsp;void&nbsp;setSharing(<a href="../../../../com/scene/ingsta/beans/Ing.html" title="class in com.scene.ingsta.beans">Ing</a>&nbsp;sharing)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>sharing</code> - the sharing to set</dd> </dl> </li> </ul> <a name="setStateCode-com.scene.ingsta.beans.Code-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setStateCode</h4> <pre>public&nbsp;void&nbsp;setStateCode(<a href="../../../../com/scene/ingsta/beans/Code.html" title="class in com.scene.ingsta.beans">Code</a>&nbsp;stateCode)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>stateCode</code> - the stateCode to set</dd> </dl> </li> </ul> <a name="setIngId-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setIngId</h4> <pre>public&nbsp;void&nbsp;setIngId(java.lang.String&nbsp;ingId)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingId</code> - the ingId to set</dd> </dl> </li> </ul> <a name="setIngstaId-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setIngstaId</h4> <pre>public&nbsp;void&nbsp;setIngstaId(java.lang.String&nbsp;ingstaId)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ingstaId</code> - the ingstaId to set</dd> </dl> </li> </ul> <a name="setSharingId-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setSharingId</h4> <pre>public&nbsp;void&nbsp;setSharingId(java.lang.String&nbsp;sharingId)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>sharingId</code> - the sharingId to set</dd> </dl> </li> </ul> <a name="setContents-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setContents</h4> <pre>public&nbsp;void&nbsp;setContents(java.lang.String&nbsp;contents)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>contents</code> - the contents to set</dd> </dl> </li> </ul> <a name="setPhoto-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setPhoto</h4> <pre>public&nbsp;void&nbsp;setPhoto(java.lang.String&nbsp;photo)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>photo</code> - the photo to set</dd> </dl> </li> </ul> <a name="setState-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setState</h4> <pre>public&nbsp;void&nbsp;setState(java.lang.String&nbsp;state)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>state</code> - the state to set</dd> </dl> </li> </ul> <a name="setRegDate-java.util.Date-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setRegDate</h4> <pre>public&nbsp;void&nbsp;setRegDate(java.util.Date&nbsp;regDate)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>regDate</code> - the regDate to set</dd> </dl> </li> </ul> <a name="setModDate-java.util.Date-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setModDate</h4> <pre>public&nbsp;void&nbsp;setModDate(java.util.Date&nbsp;modDate)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>modDate</code> - the modDate to set</dd> </dl> </li> </ul> <a name="setDelDate-java.util.Date-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setDelDate</h4> <pre>public&nbsp;void&nbsp;setDelDate(java.util.Date&nbsp;delDate)</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>delDate</code> - the delDate to set</dd> </dl> </li> </ul> <a name="hashCode--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>hashCode</h4> <pre>public&nbsp;int&nbsp;hashCode()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>hashCode</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="equals-java.lang.Object-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre>public&nbsp;boolean&nbsp;equals(java.lang.Object&nbsp;obj)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>equals</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Ing.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/scene/ingsta/beans/Heart.html" title="class in com.scene.ingsta.beans"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/scene/ingsta/beans/Ingsta.html" title="class in com.scene.ingsta.beans"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/scene/ingsta/beans/Ing.html" target="_top">Frames</a></li> <li><a href="Ing.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>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&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>
sistfers/ingsta
docs/api/com/scene/ingsta/beans/Ing.html
HTML
mit
40,008
<!DOCTYPE html> <html> <head> <!--Title, description, authors and any other metadata we might need--> <meta charset="utf-8"> <title>AIDA</title> <meta name="author" content="ADIA"/> <meta name="description" content=""/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--Stylesheets--> <link rel="stylesheet" type="text/css" href="/css/generic.css"> <link rel="stylesheet" type="text/css" href="/css/popularProjects.css"> <link rel="stylesheet" type="text/css" href="/css/modal.css"> <!--Scripts--> <script type="text/javascript" src="/js/jquery-2.2.4.min.js" defer></script> <script type="text/javascript" src="/js/modal.js" defer></script> <script type="text/javascript" src="/js/generic.js" defer></script> <script type="text/javascript" src="/js/popularProjects.js" defer></script> </head> <body> <!--Header bar at the top--> <header> <div id="navbar_wrapper"> <div id="navbar"> <div id="mobile_nav"></div> <div id="logo_nav"> <a class="navbutton" href="/"> <img src="/images/logo.png" height="32" width="32"> </a> </div> <div id="login_nav"> <a class="navbutton">Log in</a> </div> <div id="searchbar_nav"> <!--The search button will be implemented in javascript later--> <form action="/search"> <input id="searchbar_button" type="submit" value=""> <input id="searchbar_input" type="text" name="search" placeholder="Search"> </form> </div> <div class="navpiece" id="people_nav"> <a class="navbutton" href="/profiles">People</a> </div> <div class="navpiece" id="project_nav"> <a class="navbutton" href="/projects">Projects</a> </div> <div class="navpiece" id="jobs_nav"> <a class="navbutton" href="/jobs">Jobs</a> </div> <div class="navpiece" id="inbox_nav"> <a class="navbutton" href="/inbox">Inbox</a> </div> </div> </div> </header> <!-- The Modal --> <div id="myModal" class="modal"> <!-- Modal content --> <div class="modal-content"> <div id="modal_title"> <h2>Login</h2> </div> <div id="login_signup_content"> <div id="modal-login-box"> <input id="username" type="text" placeholder="Username"><br> <input id="password" type="password" placeholder="Password"> </div> <div id="modal-signup-box"> <input id="password2" type="password" placeholder="Confirm Password"><br> <input id="email" type="text" placeholder="Email Address"><br> <input id="email2" type="text" placeholder="Confirm Email Address"><br> </div> <div id="jobsback_msg"></div> <div id="login_button">Login</div> <div id="signup_button">Sign up</div> <h3 id="signup_text">No account yet? <span id="signup_switch">Sign up!</span></h3> <h3 id="login_text">Have an account? <span id="login_switch">Login!</span></h3> </div> <div id="verify_content"> <h3 id="verify_text">Please choose any of the two-factor auth. method.</h3> <image id="google" src="https://cdn3.iconfinder.com/data/icons/picons-social/57/80-google-plus-512.png" alt="Smiley face" height="42" width="42"></image> <image id="github" src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" alt="Smiley face" height="42" width="42"></image> </div> </div> </div> <!--Main page content--> <main> <div id="content_background"> <div id="content_wrapper"> <div id="content"> <div id="left"> </div> <div id="right"> <div class="project-item project-header"> <h2>Recommended for You</h2> </div> <!--<div class="project-item"> <img src="https://openclipart.org/download/20605/radacina-men-in-black.svg"> <a href="project.html"><h4>Men in Black Ltd. </h4></a> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc non luctus orci, vitae lacinia ...</p> </div>--> </div> </div> </div> </div> </main> <!--Footer at the bottom--> <footer> <div id="footer_content"> © 2016 AIDA - Accelerate your game development </div> </footer> </body> </html>
2nd47/CSC309-A4
views/popularProjects.html
HTML
mit
4,701
<!doctype html> <title>term.js</title> <!-- term.js Copyright (c) 2012-2013, Christopher Jeffrey (MIT License) --> <style> html { background: #555; } h1 { margin-bottom: 20px; font: 20px/1.5 sans-serif; } /* .terminal { float: left; border: #000 solid 5px; font-family: "DejaVu Sans Mono", "Liberation Mono", monospace; font-size: 11px; color: #f0f0f0; background: #000; } .terminal-cursor { color: #000; background: #f0f0f0; } */ </style> <h1>term.js</h1> <script src="/socket.io/socket.io.js"></script> <script src="term.js"></script> <script> ;(function() { window.onload = function() { var socket = io('http://192.168.56.20'); socket.on('connect', function() { var term = new Terminal({ cols: 80, rows: 24, useStyle: true, screenKeys: true, cursorBlink: false }); term.on('data', function(data) { socket.emit('data', data); }); term.on('title', function(title) { document.title = title; }); term.open(document.body); term.write('\x1b[31mWelcome to term.js!\x1b[m\r\n'); socket.on('data', function(data) { term.write(data); }); socket.on('disconnect', function() { term.destroy(); }); }); }; }).call(this); </script>
karacos/bootweb
apps/djTerminal/index.html
HTML
mit
1,353
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt--> <title>Method InputManager.mousePosView</title> <link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/> <link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/> <script type="text/javascript" src="../../scripts/jquery.js">/**/</script> <script type="text/javascript" src="../../prettify/prettify.js">/**/</script> <script type="text/javascript" src="../../scripts/ddox.js">/**/</script> </head> <body onload="prettyPrint(); setupDdox();"> <nav id="main-nav"><!-- using block navigation in layout.dt--> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">components</a> <ul class="tree-view"> <li> <a href="../../components/animation.html" class=" module">animation</a> </li> <li> <a href="../../components/assets.html" class=" module">assets</a> </li> <li> <a href="../../components/camera.html" class=" module">camera</a> </li> <li> <a href="../../components/icomponent.html" class=" module">icomponent</a> </li> <li> <a href="../../components/lights.html" class=" module">lights</a> </li> <li> <a href="../../components/material.html" class=" module">material</a> </li> <li> <a href="../../components/mesh.html" class=" module">mesh</a> </li> <li> <a href="../../components/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">core</a> <ul class="tree-view"> <li> <a href="../../core/dgame.html" class=" module">dgame</a> </li> <li> <a href="../../core/gameobject.html" class=" module">gameobject</a> </li> <li> <a href="../../core/prefabs.html" class=" module">prefabs</a> </li> <li> <a href="../../core/properties.html" class=" module">properties</a> </li> <li> <a href="../../core/reflection.html" class=" module">reflection</a> </li> <li> <a href="../../core/scene.html" class=" module">scene</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">graphics</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">adapters</a> <ul class="tree-view"> <li> <a href="../../graphics/adapters/adapter.html" class=" module">adapter</a> </li> <li> <a href="../../graphics/adapters/linux.html" class=" module">linux</a> </li> <li> <a href="../../graphics/adapters/mac.html" class=" module">mac</a> </li> <li> <a href="../../graphics/adapters/win32.html" class=" module">win32</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">shaders</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">glsl</a> <ul class="tree-view"> <li> <a href="../../graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a> </li> <li> <a href="../../graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a> </li> <li> <a href="../../graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a> </li> <li> <a href="../../graphics/shaders/glsl/geometry.html" class=" module">geometry</a> </li> <li> <a href="../../graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a> </li> <li> <a href="../../graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li> <a href="../../graphics/shaders/glsl.html" class=" module">glsl</a> </li> <li> <a href="../../graphics/shaders/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li> <a href="../../graphics/adapters.html" class=" module">adapters</a> </li> <li> <a href="../../graphics/graphics.html" class=" module">graphics</a> </li> <li> <a href="../../graphics/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li class=" tree-view"> <a href="#" class="package">utility</a> <ul class="tree-view"> <li> <a href="../../utility/awesomium.html" class=" module">awesomium</a> </li> <li> <a href="../../utility/concurrency.html" class=" module">concurrency</a> </li> <li> <a href="../../utility/config.html" class=" module">config</a> </li> <li> <a href="../../utility/filepath.html" class=" module">filepath</a> </li> <li> <a href="../../utility/input.html" class="selected module">input</a> </li> <li> <a href="../../utility/output.html" class=" module">output</a> </li> <li> <a href="../../utility/string.html" class=" module">string</a> </li> <li> <a href="../../utility/tasks.html" class=" module">tasks</a> </li> <li> <a href="../../utility/time.html" class=" module">time</a> </li> </ul> </li> <li> <a href="../../components.html" class=" module">components</a> </li> <li> <a href="../../core.html" class=" module">core</a> </li> <li> <a href="../../graphics.html" class=" module">graphics</a> </li> <li> <a href="../../utility.html" class=" module">utility</a> </li> </ul> <noscript> <p style="color: red">The search functionality needs JavaScript enabled</p> </noscript> <div id="symbolSearchPane" style="display: none"> <p> <input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/> </p> <ul id="symbolSearchResults" style="display: none"></ul> <script type="application/javascript" src="../../symbols.js"></script> <script type="application/javascript"> //<![CDATA[ var symbolSearchRootDir = "../../"; $('#symbolSearchPane').show(); //]]> </script> </div> </nav> <div id="main-contents"> <h1>Method InputManager.mousePosView</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt--> <p> Gets the world position of the cursor in the active scene. </p> <section></section> <section> <h2>Prototypes</h2> <pre class="code prettyprint lang-d prototype"> shared(gl3n.linalg.Vector!(float,3)) mousePosView() @property shared final; shared(gl3n.linalg.Vector!(float,3)) mousePosWorld() @property shared final;</pre> </section> <section><h2>Returns</h2> <p>The position of the mouse cursor in world space. </p> </section> <section> <h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt--> </section> <section> <h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt--> </section> <section> <h2>License</h2><!-- using block ddox.license in ddox.layout.dt--> </section> </div> </body> </html>
Circular-Studios/Dash-Docs
api/v0.6.6/utility/input/InputManager.mousePosView.html
HTML
mit
7,797
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>PeriodType | The Traveler</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">The Traveler</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="periodtype.html">PeriodType</a> </li> </ul> <h1>Enumeration PeriodType</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-external"> <h3>Enumeration members</h3> <ul class="tsd-index-list"> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="periodtype.html#activity" class="tsd-kind-icon">Activity</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="periodtype.html#alltime" class="tsd-kind-icon">All<wbr>Time</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="periodtype.html#daily" class="tsd-kind-icon">Daily</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="periodtype.html#none" class="tsd-kind-icon">None</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Enumeration members</h2> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="activity" class="tsd-anchor"></a> <h3>Activity</h3> <div class="tsd-signature tsd-kind-icon">Activity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;3</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L7151">type-definitions/destiny2/interfaces.ts:7151</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="alltime" class="tsd-anchor"></a> <h3>All<wbr>Time</h3> <div class="tsd-signature tsd-kind-icon">All<wbr>Time<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;2</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L7150">type-definitions/destiny2/interfaces.ts:7150</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="daily" class="tsd-anchor"></a> <h3>Daily</h3> <div class="tsd-signature tsd-kind-icon">Daily<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;1</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L7149">type-definitions/destiny2/interfaces.ts:7149</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="none" class="tsd-anchor"></a> <h3>None</h3> <div class="tsd-signature tsd-kind-icon">None<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;0</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L7148">type-definitions/destiny2/interfaces.ts:7148</a></li> </ul> </aside> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-enum tsd-is-external"> <a href="periodtype.html" class="tsd-kind-icon">Period<wbr>Type</a> <ul> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="periodtype.html#activity" class="tsd-kind-icon">Activity</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="periodtype.html#alltime" class="tsd-kind-icon">All<wbr>Time</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="periodtype.html#daily" class="tsd-kind-icon">Daily</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="periodtype.html#none" class="tsd-kind-icon">None</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
alexanderwe/the-traveler
docs/enums/periodtype.html
HTML
mit
11,815
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>stream_socket_service::async_receive</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="../stream_socket_service.html" title="stream_socket_service"> <link rel="prev" href="async_connect.html" title="stream_socket_service::async_connect"> <link rel="next" href="async_send.html" title="stream_socket_service::async_send"> </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="async_connect.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream_socket_service.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="async_send.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.stream_socket_service.async_receive"></a><a class="link" href="async_receive.html" title="stream_socket_service::async_receive">stream_socket_service::async_receive</a> </h4></div></div></div> <p> <a class="indexterm" name="idp98971368"></a> Start an asynchronous receive. </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">,</span> <span class="keyword">typename</span> <a class="link" href="../ReadHandler.html" title="Read handler requirements">ReadHandler</a><span class="special">&gt;</span> <a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.return_type_of_an_initiating_function"><span class="emphasis"><em>void-or-deduced</em></span></a> <span class="identifier">async_receive</span><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</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">socket_base</span><span class="special">::</span><span class="identifier">message_flags</span> <span class="identifier">flags</span><span class="special">,</span> <span class="identifier">ReadHandler</span> <span class="identifier">handler</span><span class="special">);</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#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="async_connect.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream_socket_service.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="async_send.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
laborautonomo/poedit
deps/boost/doc/html/boost_asio/reference/stream_socket_service/async_receive.html
HTML
mit
4,528
<div class="site-wrapper"> <div class="site-wrapper-inner"> <div class="cover-container"> {{>header}} <div class="inner cover"> <h1 class="cover-heading">Setup</h1> <p class="lead"> 1) Select a domain. Arguable the hardest part. I like <a href="https://instantdomainsearch.com/">instantdomainsearch.com</a>. </p> <p class="lead"> 2) Register a domain name. I like <a href="https://namecheap.com/">namecheap.com</a>. </p> <p class="lead"> 3) <a href="https://support.google.com/analytics/answer/1008080?hl=en&ref_topic=1008079">Setup a Google Analytics account</a> for your domain and download your Google Analytics ID </p> <p class="lead"> 4) <a href="http://aws.amazon.com/">Setup an AWS Account</a> and download your AWS Access Key and AWS Secret Key </p> <p class="lead"> 5) Click this <a href="https://heroku.com/deploy?template=https://github.com/glamp/leech"><img src="https://www.herokucdn.com/deploy/button.png"></a> You'll need the following: <ul style="list-style: none;"> <li>The name of your domain (from #1)</li> <li>Your AWS Access Key and Secret Key</li> <li><a href="https://support.google.com/analytics/answer/1032385?hl=en">Your Google Analytics ID</a></li> </ul> </p> <p class="lead"> 6) Configure your domain </p> </div> {{>footer}} </div> </div> </div>
glamp/leech
views/setup.html
HTML
mit
1,539
<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="description"> <meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <title>OpenTl.Schema - API - IInputPhoneCall.Id Property</title> <link href="/OpenTl.Schema/assets/css/mermaid.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/highlight.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/theme/theme.css" rel="stylesheet"> <link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/OpenTl.Schema/assets/css/override.css" rel="stylesheet"> <script src="/OpenTl.Schema/assets/js/jquery-2.2.3.min.js"></script> <script src="/OpenTl.Schema/assets/js/bootstrap.min.js"></script> <script src="/OpenTl.Schema/assets/js/app.min.js"></script> <script src="/OpenTl.Schema/assets/js/highlight.pack.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.slimscroll.min.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.sticky-kit.min.js"></script> <script src="/OpenTl.Schema/assets/js/mermaid.min.js"></script> <!--[if lt IE 9]> <script src="/OpenTl.Schema/assets/js/html5shiv.min.js"></script> <script src="/OpenTl.Schema/assets/js/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition wyam layout-boxed "> <div class="top-banner"></div> <div class="wrapper with-container"> <!-- Header --> <header class="main-header"> <a href="/OpenTl.Schema/" class="logo"> <span>OpenTl.Schema</span> </a> <nav class="navbar navbar-static-top" role="navigation"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-right"></i> </a> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-down"></i> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="/OpenTl.Schema/about.html">About This Project</a></li> <li class="active"><a href="/OpenTl.Schema/api">API</a></li> </ul> </div> <!-- /.navbar-collapse --> <!-- Navbar Right Menu --> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar "> <section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200"> <div id="infobar-headings"><h6>On This Page</h6><p><a href="#Syntax">Syntax</a></p> <p><a href="#Value">Value</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/OpenTl.Schema/assets/js/lunr.min.js"></script> <script src="/OpenTl.Schema/assets/js/searchIndex.js"></script> <div class="sidebar-form"> <div class="input-group"> <input type="text" name="search" id="search" class="form-control" placeholder="Search Types..."> <span class="input-group-btn"> <button class="btn btn-flat"><i class="fa fa-search"></i></button> </span> </div> </div> <div id="search-results"> </div> <script> function runSearch(query){ $("#search-results").empty(); if( query.length < 2 ){ return; } var results = searchModule.search("*" + query + "*"); var listHtml = "<ul class='sidebar-menu'>"; listHtml += "<li class='header'>Type Results</li>"; if(results.length == 0 ){ listHtml += "<li>No results found</li>"; } else { for(var i = 0; i < results.length; ++i){ var res = results[i]; listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>"; } } listHtml += "</ul>"; $("#search-results").append(listHtml); } $(document).ready(function(){ $("#search").on('input propertychange paste', function() { runSearch($("#search").val()); }); }); function htmlEscape(html) { return document.createElement('div') .appendChild(document.createTextNode(html)) .parentNode .innerHTML; } </script> <hr> <ul class="sidebar-menu"> <li class="header">Namespace</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></li> <li class="header">Type</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall">IInputPhoneCall</a></li> <li role="separator" class="divider"></li> <li class="header">Property Members</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall/37C41B4D.html">AccessHash</a></li> <li class="selected"><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall/2BF59C2F.html">Id</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h3><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall">IInputPhoneCall</a>.</h3> <h1>Id <small>Property</small></h1> </section> <section class="content"> <div class="panel panel-default"> <div class="panel-body"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></dd> <dt>Containing Type</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall">IInputPhoneCall</a></dd> </dl> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>long Id { get; set; }</code></pre> <h1 id="Value">Value</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>long</td> <td></td> </tr> </tbody></table> </div> </div> </section> </div> <!-- Footer --> <footer class="main-footer"> </footer> </div> <div class="wrapper bottom-wrapper"> <footer class="bottom-footer"> Generated by <a href="https://wyam.io">Wyam</a> </footer> </div> <a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a> <script> // Close the sidebar if we select an anchor link $(".main-sidebar a[href^='#']:not('.expand')").click(function(){ $(document.body).removeClass('sidebar-open'); }); $(document).load(function() { mermaid.initialize( { flowchart: { htmlLabels: false, useMaxWidth:false } }); mermaid.init(undefined, ".mermaid") $('svg').addClass('img-responsive'); $('pre code').each(function(i, block) { hljs.highlightBlock(block); }); }); hljs.initHighlightingOnLoad(); // Back to top $(window).scroll(function() { if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px $('#return-to-top').fadeIn(1000); // Fade in the arrow } else { $('#return-to-top').fadeOut(1000); // Else fade out the arrow } }); $('#return-to-top').click(function() { // When arrow is clicked $('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); }); </script> </body></html>
OpenTl/OpenTl.Schema
docs/api/OpenTl.Schema/IInputPhoneCall/2BF59C2F.html
HTML
mit
10,200
<h1> {{title}} </h1> <app-component1></app-component1> <!-- routerLink的配置方式 --> <a routerLink = "/component1">component1</a> <br> <!-- 前后需要同时使用中括号 --> <a [routerLink] = "['/component2']">component2-使用中括号</a> <br> <a routerLink = "/component3">component3-生成菜单</a> <!-- 重定向 --> <br> <a routerLink = "/">cmoponent4-重定向到cmoponent3,默认路由“/”</a> <!-- 重定向,默认路由 --> <br> <a routerLink = "">component5-重定向到cmoponent3,默认路由“”</a> <!-- 参数化路由 --> <br> <a routerLink = "/component/12">component6-参数化路由</a> <br> <label for="">子路由</label> <a routerLink = "/child/component5/1">child-子路由</a> <br> <a routerLink = '/childmodule/component8'>child module-懒加载路由模块</a> <br> <a [routerLink] = '[{ outlets: { second: ["outlet2"] } }]'>outlet2-第二路由</a> <!-- 路由位置 --> <h2>路由插入位置</h2> <router-outlet></router-outlet> <h2>第二路由位置</h2> <router-outlet name="second"></router-outlet>
struggler-lh/angular-demo
router/router-parameters/src/app/app.component.html
HTML
mit
1,056
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; 40b5a162-0783-48a5-9d09-0524f4eaa61a </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#DevExpress.XtraLayout.v12.2">DevExpress.XtraLayout.v12.2</a></strong></td> <td class="text-center">66.48 %</td> <td class="text-center">62.84 %</td> <td class="text-center">100.00 %</td> <td class="text-center">62.84 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="DevExpress.XtraLayout.v12.2"><h3>DevExpress.XtraLayout.v12.2</h3></a> <table> <tbody> <tr> <th>Target type</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> <th>Recommended changes</th> </tr> <tr> <td>System.Activator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CreateInstance(System.Type,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Array</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ForEach``1(``0[],System.Action{``0})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Sort``2(``0[],``1[],System.Collections.Generic.IComparer{``0})</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Collections.ArrayList</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Collections.ICollection)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">AddRange(System.Collections.ICollection)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CopyTo(System.Array,System.Int32)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">IndexOf(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Insert(System.Int32,System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Reverse</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Sort</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Sort(System.Collections.IComparer)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ToArray(System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Collections.CollectionBase</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_InnerList</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_List</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">RemoveAt(System.Int32)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Collections.Comparer</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Default</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Compare(System.Object,System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Collections.Hashtable</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Collections.IEqualityComparer)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.Object,System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ContainsKey(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Keys</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Values</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Collections.ReadOnlyCollectionBase</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.AttributeCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.AttributeProviderAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.BindableAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Bindable</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.BindableSupport</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.BrowsableAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage. This is a deprecated attribute from Winforms for design-time property window support</td> </tr> <tr> <td style="padding-left:2em">get_Browsable</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.CancelEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Invoke(System.Object,System.ComponentModel.CancelEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.CategoryAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.CollectionChangeAction</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.CollectionChangeEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.ComponentModel.CollectionChangeAction,System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Action</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Element</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.CollectionChangeEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Invoke(System.Object,System.ComponentModel.CollectionChangeEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ComplexBindingPropertiesAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String,System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Component</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Disposed(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Dispose</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</td> </tr> <tr> <td style="padding-left:2em">Dispose(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Container</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DesignMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Events</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Site</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetService(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Disposed(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Site(System.ComponentModel.ISite)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ComponentCollection</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ComponentResourceManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Container</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DefaultBindingPropertyAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Name</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DefaultPropertyAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Name</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DescriptionAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Description</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DescriptionValue(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Design.IComponentInitializer</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">InitializeNewComponent(System.Collections.IDictionary)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Design.IDesigner</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Design.IDesignerHost</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CreateComponent(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DestroyComponent(System.ComponentModel.IComponent)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_RootComponent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetDesigner(System.ComponentModel.IComponent)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Design.IInheritanceService</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetInheritanceAttribute(System.ComponentModel.IComponent)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Design.Serialization.InstanceDescriptor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Reflection.MemberInfo,System.Collections.ICollection)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DesignerAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String,System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DesignerCategoryAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DesignerSerializationVisibility</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DesignerSerializationVisibilityAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.ComponentModel.DesignerSerializationVisibility)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.DesignTimeVisibleAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.EditorAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String,System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type,System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.EventHandlerList</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">AddHandler(System.Object,System.Delegate)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">RemoveHandler(System.Object,System.Delegate)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.IComponent</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Site</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Site(System.ComponentModel.ISite)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.IContainer</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.ComponentModel.IComponent)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.ComponentModel.IComponent,System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Components</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.ComponentModel.IComponent)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.IExtenderProvider</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CanExtend(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.IListSource</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.InheritanceAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Default</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">InheritedReadOnly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ISite</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Container</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Name</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Name(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ISupportInitialize</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">BeginInit</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">EndInit</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ITypeDescriptorContext</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Instance</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_PropertyDescriptor</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.License</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.LicenseManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Validate(System.Type,System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.LicenseProviderAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ListBindableAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.ComponentModel.BindableSupport)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.LocalizableAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.MemberDescriptor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Attributes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Name</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ParenthesizePropertyNameAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.PropertyDescriptor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsReadOnly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetValue(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.PropertyDescriptorCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Sort(System.String[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.RefreshProperties</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.RefreshPropertiesAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.ComponentModel.RefreshProperties)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.ToolboxItemAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.TypeConverter</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ConvertFrom(System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Currently there is no workaround, but we are working on it. Please check back.</td> </tr> <tr> <td style="padding-left:2em">ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.TypeConverterAttribute</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.TypeDescriptor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetAttributes(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetConverter(System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Currently there is no workaround, but we are working on it. Please check back.</td> </tr> <tr> <td style="padding-left:2em">GetProperties(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetProperties(System.Type,System.Attribute[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Data.DataSet</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Data.DataTable</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Data.DataView</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Table</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Diagnostics.StackFrame</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Consider removing dependency on this API.</td> </tr> <tr> <td style="padding-left:2em">GetMethod</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Diagnostics.StackTrace</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Currently there is no workaround, but we are working on it. Please check back.</td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Threading.Thread,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetFrame(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Bitmap</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Brush</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Brushes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Blue</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Gray</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Green</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Plum</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Red</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_White</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Yellow</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Color</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Empty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromArgb(System.Int32,System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromArgb(System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromArgb(System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Black</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Green</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_LightBlue</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_LightGray</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Plum</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Red</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Transparent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Yellow</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Equality(System.Drawing.Color,System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Inequality(System.Drawing.Color,System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.ContentAlignment</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Drawing2D.DashStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Drawing2D.Matrix</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Font</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.Font,System.Drawing.FontStyle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.FontStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Graphics</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear(System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawImage(System.Drawing.Image,System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawImage(System.Drawing.Image,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromHwnd(System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromImage(System.Drawing.Image)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Transform(System.Drawing.Drawing2D.Matrix)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.GraphicsUnit</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Icon</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Image</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clone</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Dispose</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromStream(System.IO.Stream)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Height</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Width</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Pen</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.Color,System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Color</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DashPattern(System.Single[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DashStyle(System.Drawing.Drawing2D.DashStyle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Point</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Empty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Offset(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Offset(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Addition(System.Drawing.Point,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Equality(System.Drawing.Point,System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Inequality(System.Drawing.Point,System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Subtraction(System.Drawing.Point,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_X(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Y(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.PointF</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Single,System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Rectangle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Empty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.Point,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Bottom</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Height</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsEmpty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Left</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Location</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Right</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Top</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Width</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Inflate(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Inflate(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Intersect(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Intersect(System.Drawing.Rectangle,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">IntersectsWith(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Offset(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Offset(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Equality(System.Drawing.Rectangle,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Inequality(System.Drawing.Rectangle,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Height(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Location(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Size(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Width(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_X(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Y(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Union(System.Drawing.Rectangle,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.RectangleF</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.PointF,System.Drawing.SizeF)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Height(System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_X(System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Y(System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Empty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Height</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsEmpty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Width</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Addition(System.Drawing.Size,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Equality(System.Drawing.Size,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Inequality(System.Drawing.Size,System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Round(System.Drawing.SizeF)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Height(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Width(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.SizeF</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Empty</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Single,System.Single)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Height</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Width</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.SolidBrush</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.StringFormat</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clone</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_HotkeyPrefix(System.Drawing.Text.HotkeyPrefix)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.SystemBrushes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ActiveBorder</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.SystemColors</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ControlText</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_GrayText</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_WindowText</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.Text.HotkeyPrefix</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Drawing.ToolboxBitmapAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Type,System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Environment</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Choose action based feature availability, not OS / Platform</td> </tr> <tr> <td style="padding-left:2em">get_OSVersion</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Choose action based feature availability, not OS / Platform</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ICloneable</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage. Implement cloning operation yourself if needed.</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.OperatingSystem</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Couple behavior to feature availability, not OS version or Platform.</td> </tr> <tr> <td style="padding-left:2em">get_Version</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Couple behavior to feature availability, not OS version or Platform.</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Reflection.Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>typeof(CurrentType).GetTypeInfo().Assembly</td> </tr> <tr> <td style="padding-left:2em">GetExecutingAssembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>typeof(CurrentType).GetTypeInfo().Assembly</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Reflection.BindingFlags</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Resources.ResourceManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetObject(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Can now only get strings. Use manifest resources for other types of objects</td> </tr> <tr> <td style="padding-left:2em">ReleaseAllResources</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.String</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clone</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Threading.Thread</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_CurrentThread</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Type</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().BaseType</td> </tr> <tr> <td style="padding-left:2em">get_Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().Assembly</td> </tr> <tr> <td style="padding-left:2em">get_BaseType</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().BaseType</td> </tr> <tr> <td style="padding-left:2em">GetConstructor(System.Type[])</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetField(System.String,System.Reflection.BindingFlags)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetInterface(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetMethod(System.String,System.Reflection.BindingFlags)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Equivalent available: Add using for System.Reflection, and reference System.Reflection.TypeExtensions </td> </tr> <tr> <td style="padding-left:2em">IsSubclassOf(System.Type)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsSubclassOf</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AccessibleObject</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AccessibleRole</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AccessibleStates</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AnchorStyles</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Application</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">AddMessageFilter(System.Windows.Forms.IMessageFilter)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">RemoveMessageFilter(System.Windows.Forms.IMessageFilter)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AutoScaleMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.AutoSizeMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BaseCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Binding</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BindingMemberInfo</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DataSource</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DataSourceUpdateMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_FormatInfo</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_FormatString</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_FormattingEnabled</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_NullValue</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_PropertyName</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BindingContext</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">UpdateBinding(System.Windows.Forms.BindingContext,System.Windows.Forms.Binding)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BindingManagerBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_PositionChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PositionChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BindingMemberInfo</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BindingMember</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BindingNavigator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.BindingsCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Button</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ButtonState</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.CheckBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.CheckedListBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ColorDepth</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ComboBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.CommonDialog</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ShowDialog(System.Windows.Forms.IWin32Window)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ContainerControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Dispose(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ActiveControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AutoScaleMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BindingContext</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ProcessDialogKey(System.Windows.Forms.Keys)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ProcessMnemonic(System.Char)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Select(System.Boolean,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ActiveControl(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_AutoScaleMode(System.Windows.Forms.AutoScaleMode)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_BindingContext(System.Windows.Forms.BindingContext)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Validate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">WndProc(System.Windows.Forms.Message@)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Click(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_EnabledChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Enter(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_GotFocus(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_KeyDown(System.Windows.Forms.KeyEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Leave(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_LocationChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_LostFocus(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_MouseCaptureChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_MouseEnter(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_MouseLeave(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_MouseUp(System.Windows.Forms.MouseEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_SizeChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_VisibleChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">BeginInvoke(System.Delegate)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">BeginInvoke(System.Delegate,System.Object[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">BringToFront</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">CreateAccessibilityInstance</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DefWndProc(System.Windows.Forms.Message@)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Dispose(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FindForm</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Focus</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">FromHandle(System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AccessibilityObject</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Anchor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AutoSize</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BackColor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BackgroundImage</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BackgroundImageLayout</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BindingContext</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Bounds</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_CanFocus</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_CanSelect</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Capture</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ClientRectangle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ClientSize</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ContainsFocus</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Controls</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Cursor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DataBindings</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DisplayRectangle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Dock</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Enabled</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Focused</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ForeColor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Handle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_HasChildren</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Height</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsDisposed</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsHandleCreated</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Location</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_MaximumSize</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_MinimumSize</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ModifierKeys</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_MouseButtons</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Name</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Parent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Right</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ShowKeyboardCues</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Site</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TabIndex</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TabStop</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Text</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Top</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_UseWaitCursor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Visible</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Width</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetContainerControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetPreferredSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Hide</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Invalidate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Invalidate(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnChangeUICues(System.Windows.Forms.UICuesEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnControlAdded(System.Windows.Forms.ControlEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnControlRemoved(System.Windows.Forms.ControlEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnDragEnter(System.Windows.Forms.DragEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnDragLeave(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnDragOver(System.Windows.Forms.DragEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnEnabledChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnForeColorChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnGotFocus(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnHandleCreated(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnHandleDestroyed(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnKeyDown(System.Windows.Forms.KeyEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnLostFocus(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseClick(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseDown(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseEnter(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseLeave(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseMove(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseUp(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnPaint(System.Windows.Forms.PaintEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnParentChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnParentVisibleChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnSizeChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnVisibleChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">PointToClient(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">PointToScreen(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ProcessDialogKey(System.Windows.Forms.Keys)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ProcessKeyMessage(System.Windows.Forms.Message@)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ProcessKeyPreview(System.Windows.Forms.Message@)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">RaisePaintEvent(System.Object,System.Windows.Forms.PaintEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">RectangleToScreen(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Refresh</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Click(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_EnabledChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Enter(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_GotFocus(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_KeyDown(System.Windows.Forms.KeyEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Leave(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_LocationChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_LostFocus(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MouseCaptureChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MouseEnter(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MouseLeave(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MouseUp(System.Windows.Forms.MouseEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_SizeChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_VisibleChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ResumeLayout(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Select(System.Boolean,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_AllowDrop(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Anchor(System.Windows.Forms.AnchorStyles)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_AutoSize(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_BackColor(System.Drawing.Color)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_BackgroundImage(System.Drawing.Image)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_BackgroundImageLayout(System.Windows.Forms.ImageLayout)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Bounds(System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Capture(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Cursor(System.Windows.Forms.Cursor)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Dock(System.Windows.Forms.DockStyle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Enabled(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Height(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Location(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MaximumSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MinimumSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Name(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Parent(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Site(System.ComponentModel.ISite)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Size(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TabIndex(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TabStop(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Text(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Visible(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Width(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Show</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SuspendLayout</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Update</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Control.ControlCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">IndexOf(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SetChildIndex(System.Windows.Forms.Control,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ControlBindingsCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Windows.Forms.IBindableComponent)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.String,System.Object,System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String,System.IFormatProvider)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.Windows.Forms.Binding)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ControlEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ControlStyles</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.CreateParams</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ExStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Style</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ExStyle(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Style(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.CurrencyManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Cursor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Draw(System.Drawing.Graphics,System.Drawing.Rectangle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Current</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Position</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Equality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">op_Inequality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Current(System.Windows.Forms.Cursor)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Cursors</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Arrow</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Default</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_HSplit</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_No</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_PanNorth</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_PanSouth</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_PanWest</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_SizeNS</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_SizeWE</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_VSplit</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DataSourceUpdateMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DateTimePicker</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DialogResult</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DockStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DomainUpDown</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DragDropEffects</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DragEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Windows.Forms.IDataObject,System.Int32,System.Int32,System.Int32,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DragDropEffects)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AllowedEffect</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Data</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Effect</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_KeyState</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.DrawTreeNodeEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Bounds</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Graphics</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Node</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.FileDialog</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_FileName</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DefaultExt(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Filter(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_InitialDirectory(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Form</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Activate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_FormClosed(System.Windows.Forms.FormClosedEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Load(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">AddOwnedForm(System.Windows.Forms.Form)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Close</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ActiveForm</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DialogResult</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Location</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_MdiParent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Owner</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Size</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnClosing(System.ComponentModel.CancelEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnDeactivate(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnPaint(System.Windows.Forms.PaintEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnVisibleChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ClientSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DialogResult(System.Windows.Forms.DialogResult)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_FormBorderStyle(System.Windows.Forms.FormBorderStyle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Location(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MinimizeBox(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MinimumSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Opacity(System.Double)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Owner(System.Windows.Forms.Form)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ShowInTaskbar(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Size(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_SizeGripStyle(System.Windows.Forms.SizeGripStyle)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_StartPosition(System.Windows.Forms.FormStartPosition)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TabStop(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TopLevel(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TopMost(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.FormBorderStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.FormClosedEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.FormClosedEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.FormStartPosition</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.GroupBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.HandledMouseEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Handled</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Handled(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.HScrollProperties</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.IBindableComponent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BindingContext</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_BindingContext(System.Windows.Forms.BindingContext)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.IContainerControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ActiveControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ActiveControl(System.Windows.Forms.Control)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.IDataObject</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ImageLayout</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ImageList</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Images</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ColorDepth(System.Windows.Forms.ColorDepth)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ImageSize(System.Drawing.Size)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ImageList.ImageCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.Drawing.Image)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.IMessageFilter</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.IWin32Window</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.KeyEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Windows.Forms.Keys)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_KeyCode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_KeyData</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.KeyEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Keys</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Label</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TabStop(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Layout.ArrangedElementCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.LayoutEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.LinkLabel</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ListBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ListView</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Message</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_HWnd</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Msg</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_WParam</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Result(System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MessageBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MessageBoxButtons</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MessageBoxIcon</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MethodInvoker</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MonthCalendar</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MouseButtons</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MouseEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Button</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Clicks</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Delta</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Location</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_X</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Y</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.MouseEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Invoke(System.Object,System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.NumericUpDown</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.OpenFileDialog</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Orientation</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Padding</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Int32,System.Int32,System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.PaintEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ClipRectangle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Graphics</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Panel</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.PopupEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AssociatedControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.PopupEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ProgressBar</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.PropertyGrid</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Dispose(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_SelectedObject</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_SelectedObjects</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnPaint(System.Windows.Forms.PaintEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_SelectedObjects(System.Object[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.QueryAccessibilityHelpEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.RadioButton</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.RichTextBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.SaveFileDialog</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ScrollableControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AutoScroll</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_HorizontalScroll</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_VerticalScroll</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnMouseWheel(System.Windows.Forms.MouseEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnPaintBackground(System.Windows.Forms.PaintEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnVisibleChanged(System.EventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_AutoScroll(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SetScrollState(System.Int32,System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ScrollProperties</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Visible</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.SelectionMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.SizeGripStyle</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.SplitContainer</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.SystemInformation</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TerminalServerSession</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_VerticalScrollBarWidth</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TabControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TabPages</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TabControl.TabPageCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TabPage</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TextBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TextBoxBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_MultilineChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_ReadOnlyChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Multiline</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ReadOnly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MultilineChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_ReadOnlyChanged(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ReadOnly(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.Timer</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Tick(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Enabled</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Tick(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Enabled(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Interval(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Start</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Stop</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ToolTip</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Popup(System.Windows.Forms.PopupEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Popup(System.Windows.Forms.PopupEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ToolTipIcon(System.Windows.Forms.ToolTipIcon)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ToolTipTitle(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">SetToolTip(System.Windows.Forms.Control,System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.ToolTipIcon</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TrackBar</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TreeNode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Bounds</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsExpanded</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Nodes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Text</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TreeView</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ImageIndex(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_SelectedImageIndex(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Text(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TreeNodeCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.Windows.Forms.TreeNode)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Clear</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TreeView</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">BeginUpdate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">EndUpdate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ExpandAll</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ImageList</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ItemHeight</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Nodes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_SelectedNode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetNodeAt(System.Drawing.Point)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetNodeAt(System.Int32,System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">OnDrawNode(System.Windows.Forms.DrawTreeNodeEventArgs)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_DrawMode(System.Windows.Forms.TreeViewDrawMode)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ImageList(System.Windows.Forms.ImageList)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ItemHeight(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_SelectedNode(System.Windows.Forms.TreeNode)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_TopNode(System.Windows.Forms.TreeNode)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.TreeViewDrawMode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.UICuesEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.UserControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.VScrollProperties</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Forms.WebBrowserBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Xml.Formatting</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Xml.XmlTextWriter</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.IO.Stream,System.Text.Encoding)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Formatting(System.Xml.Formatting)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
kuhlenh/port-to-core
Reports/wi/windwardengine.14.0.1.1/DevExpress.XtraLayout.v12.2-net451.html
HTML
mit
475,828
<html> <head> <title>Caprice Bourret's panel show appearances</title> <script type="text/javascript" src="../common.js"></script> <link rel="stylesheet" media="all" href="../style.css" type="text/css"/> <script type="text/javascript" src="../people.js"></script> <!--#include virtual="head.txt" --> </head> <body> <!--#include virtual="nav.txt" --> <div class="page"> <h1>Caprice Bourret's panel show appearances</h1> <p>Caprice Bourret (born 1971-10-24<sup><a href="https://en.wikipedia.org/wiki/Caprice_Bourret">[ref]</a></sup>) has appeared in <span class="total">3</span> episodes between 2004-2015. <a href="http://www.imdb.com/name/nm0100153">Caprice Bourret on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Caprice_Bourret">Caprice Bourret on Wikipedia</a>.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2004</span></td> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2005</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2006</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2007</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2008</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2009</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2010</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2011</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2012</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2013</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2014</span></td> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2015</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2015-07-13</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li> <li><strong>2005-05-13</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li> <li><strong>2004-09-14</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li> </ol> </div> </body> </html>
slowe/panelshows
people/wqnfustb.html
HTML
mit
2,573
<!DOCTYPE html> <html> <head> <% include ../share/header.html %> <%- Loader() .css('/lib/bootstrap/3.3.6/css/bootstrap.css') .css('/lib/bootstrap/3.3.6/css/bootstrap-theme.css') .css('/src/css/icomoon-fonts.css') .css('/src/css/base.css') .css('/src/css/daniel/view.css') .done({}) %> </head> <body> <% include ../share/nav.html %> <article> <section> <div class="container clearfix"> <div id="aside-wrap"> <div class="aside-panel"> <div class="portrait" id="portrait" data-id="<%= data._id %>"> <div class="img-box" data-src="<%= data.head_src %>"></div> </div> <ul class="score-wrap clearfix"> <li> <div class=""><%= data.followers %></div> <div class="title">Followers</div> </li> <li> <div class=""><%= data.starred %></div> <div class="title">Starred</div> </li> </ul> <div class="name"><i class="icon-tag"></i>&nbsp;<%= data.name %>&nbsp;<small><%= data.code %></small></div> <div class="github"><i class="icon-github2"></i>&nbsp;<a href="<%= data.github_url %>" target="_blank" title="<%=data.github_url%>"><%= data.github_url %></a></div> <div class="blog"><i class="glyphicon glyphicon-link"></i>&nbsp;<a href="<%= data.blog_url?data.blog_url:'#' %>" target="_blank" title="<%=data.blog_url?data.blog_url:''%>"><%= data.blog_url?data.blog_url:'无' %></a></div> </div> </div> <div id="content-wrap"> <div class="content-panel"> <%if( data.introduction ){%> <div class="edit text-center" id="edit"><i class="glyphicon glyphicon-pencil"></i></div> <div class="content"> <%- data.introduction %> </div> <%}else{%> <div class="edit text-center hide" id="edit"><i class="glyphicon glyphicon-pencil"></i></div> <div class="content"> <div class="empty-wrap text-center"> <div id="empty-btn">暂时没有简介,点击添加吧</div> </div> </div> <%}%> <textarea id="markdown"></textarea> </div> </div> </div> </section> </article> <% include ../share/aside.html %> <% include ../share/footer.html %> <% include ../share/login.html %> <script src="/lib/seajs/3.0.0/sea.js" type="text/javascript"></script> <script src="/lib/seajs/3.0.0/seajs-css/seajs-css.js" type="text/javascript"></script> <script> seajs.config({ alias: { 'jquery': '/lib/jquery/2.2.0/jquery.js', 'simplemde': '/lib/simplemde/1.9.0/js/simplemde.min.js', 'simplemde-css': '/lib/simplemde/1.9.0/css/simplemde.min.css', 'uploadi': '/lib/simplemde/1.9.0/js/widget/uploadi.js', 'uploadi-css': '/lib/simplemde/1.9.0/css/widget/uploadi.css' } }); if(location.href.indexOf('dev=1') == -1){ seajs.use('/src/js/daniel/view.js'); }else { seajs.use('/dist/daniel/view.min.js'); } </script> </body> </html>
Tomamy/koa-coderspeek
public/views/daniel/view.html
HTML
mit
3,087
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>TeamCityRESTHelper - FAKE - F# Make</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" /> <script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="http://github.com/fsharp/fake">github page</a></li> </ul> <h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> <h1>TeamCityRESTHelper</h1> <div class="xmldoc"> <p>Contains functions which allow FAKE to interact with the <a href="http://confluence.jetbrains.com/display/TCD8/REST+API">TeamCity REST API</a>.</p> </div> <!-- Render nested types and modules, if there are any --> <h2>Nested types and modules</h2> <div> <table class="table table-bordered type-list"> <thead> <tr><td>Type</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="type-name"> <a href="fake-teamcityresthelper-build.html">Build</a> </td> <td class="xmldoc"><p>Record type which stores Build properties</p> </td> </tr> <tr> <td class="type-name"> <a href="fake-teamcityresthelper-buildconfiguration.html">BuildConfiguration</a> </td> <td class="xmldoc"><p>Record type which stores Build configuration properties</p> </td> </tr> <tr> <td class="type-name"> <a href="fake-teamcityresthelper-project.html">Project</a> </td> <td class="xmldoc"><p>Record type which stores TeamCity project properties</p> </td> </tr> <tr> <td class="type-name"> <a href="fake-teamcityresthelper-vcsroot.html">VCSRoot</a> </td> <td class="xmldoc"><p>Record type which stores VCSRoot properties</p> </td> </tr> </tbody> </table> </div> <h3>Functions and values</h3> <table class="table table-bordered member-list"> <thead> <tr><td>Function or value</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '416', 416)" onmouseover="showTip(event, '416', 416)"> getBuildConfig (...) </code> <div class="tip" id="416"> <strong>Signature:</strong> serverURL:string -&gt; username:string -&gt; password:string -&gt; id:string -&gt; BuildConfiguration<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/TeamCityRESTHelper.fs#L56-56" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Gets information about a build configuration from the TeamCity server.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '417', 417)" onmouseover="showTip(event, '417', 417)"> getProject (...) </code> <div class="tip" id="417"> <strong>Signature:</strong> serverURL:string -&gt; username:string -&gt; password:string -&gt; id:string -&gt; Project<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/TeamCityRESTHelper.fs#L69-69" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Gets informnation about a project from the TeamCity server.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '418', 418)" onmouseover="showTip(event, '418', 418)"> getProjects serverURL username password </code> <div class="tip" id="418"> <strong>Signature:</strong> serverURL:string -&gt; username:string -&gt; password:string -&gt; seq&lt;string&gt;<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/TeamCityRESTHelper.fs#L81-81" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Gets all projects on the TeamCity server.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '419', 419)" onmouseover="showTip(event, '419', 419)"> getRESTVersion (...) </code> <div class="tip" id="419"> <strong>Signature:</strong> serverURL:string -&gt; username:string -&gt; password:string -&gt; string<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/TeamCityRESTHelper.fs#L9-9" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Returns the REST version of the TeamCity server</p> </td> </tr> </tbody> </table> </div> <div class="span3"> <a href="http://fsharp.github.io/FAKE/index.html"> <img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">FAKE - F# Make</li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li> <li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li> <li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (MS-PL)</a></li> <li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li> <li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li> <li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li> <li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li> <li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li> <li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li> <li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li> <li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li> <li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li> <li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li> <li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li> <li class="nav-header">Reference</li> <li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> </body> </html>
RobGibbens/ResilientServices
FAKE.3.5.4/docs/apidocs/fake-teamcityresthelper.html
HTML
mit
9,888
<!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> <title>NIF File Format Documentation - Ni3dsAlphaAnimator</title> <link rel=StyleSheet href="docsys.css" type="text/css" /> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> </head> <body> <center><h1>NIF File Format Documentation</h1></center> <p align="center"><a href="index.html">NIF Objects</a> | <a href="compound_list.html">Compound Types</a> | <a href="enum_list.html">Enum Types</a> | <a href="basic_list.html">Basic Types</a> | <a href="version_list.html">File Versions</a></p> <center><h2>Ni3dsAlphaAnimator</h2></center> Unknown. <h3>Attributes</h3> <table> <tr> <th>Name</th> <th>Type</th> <th>Arg</th> <th>Arr1</th> <th>Arr2</th> <th>Cond</th> <th>Description</th> <th>From</th><th>To</th> </tr> <tr> <th align="left" style="text-align:left;" colspan="9">From <a href ="NiObject.html">NiObject</a></th> </tr> <tr> <th align="left" style="text-align:left;" colspan="9">From <a href ="Ni3dsAlphaAnimator.html">Ni3dsAlphaAnimator</a></th> </tr> <tr class="reg0"> <td><i>Unknown 1</i></td> <td><a href="byte.html"><b>byte<b></a></td> <td><i></i></td> <td><i>40</i></td> <td><i></i></td> <td><i></i></td> <td>Unknown.</td> <td></td> <td></td> </tr> <tr class="reg1"> <td><i>Parent</i></td> <td><a href="Ref.html"><b>Ref<b></a>&lt;<a href="NiObject.html">NiObject</a>&gt;</td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td>The parent?</td> <td></td> <td></td> </tr> <tr class="reg0"> <td><i>Num 1</i></td> <td><a href="uint.html"><b>uint<b></a></td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td>Unknown.</td> <td></td> <td></td> </tr> <tr class="reg1"> <td><i>Num 2</i></td> <td><a href="uint.html"><b>uint<b></a></td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td><i></i></td> <td>Unknown.</td> <td></td> <td></td> </tr> <tr class="reg0"> <td><i>Unknown 2</i></td> <td><a href="uint.html"><b>uint<b></a></td> <td><i></i></td> <td><i>Num 1</i></td> <td><i>Num 2</i></td> <td><i></i></td> <td>Unknown.</td> <td></td> <td></td> </tr> </table> <h3>Parent Of</h3> <ul> </ul> </body> </html>
griest024/PokyrimTools
nifdocsys-master/doc/Ni3dsAlphaAnimator.html
HTML
mit
2,462
<!doctype html> <html lang="zh-CN" xml:lang="zh-CN"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <meta name="renderer" content="webkit"/> <title>CRM2.0</title> <script src="../js/init.min.js"></script> <link rel="stylesheet" href="../css/reset.css"> <link rel="stylesheet" href="../css/main-light.css" id="profile"> <script src="../js/jquery.min.js"></script> </head> <body> <div class="crm-wrap"> <div class="info-page"> <div class="row area approvPanel inline"> <div class="cell active"> <i class="c"></i> <p>预审通过</p> </div> <div class="cell"> <i class="h"></i> <p>预审不通过</p> </div> </div> <div class="mcList"> <div class="item"> <div class="area"> <div class="row"> <div class="cell tit">预审通过</div> <div class="time">2017-02-03 08:26</div> </div> <div class="row detail">[608990]主办客户合同审批如下:陈澍[668089290]贷款合同[6680892900005689896]</div> <div class="fc-yellow">贷款利率:3.24%</div> <div class="control"> <div class="inner"> <div class="read">标记为已读</div> <div class="del">删除</div> </div> </div> </div> </div> <div class="item"> <div class="area"> <div class="row"> <div class="cell tit">预审通过</div> <div class="time">2017-02-03 08:26</div> </div> <div class="row detail">[608990]主办客户合同审批如下:陈澍[668089290]贷款合同[6680892900005689896]</div> <div class="fc-yellow">贷款利率:3.24%</div> <div class="control"> <div class="inner"> <div class="read">标记为已读</div> <div class="del">删除</div> </div> </div> </div> </div> <div class="item"> <div class="area"> <div class="row"> <div class="cell tit">预审不通过</div> <div class="time">2017-02-03 08:26</div> </div> <div class="row detail">[608990]主办客户合同审批如下:陈澍[668089290]贷款合同[6680892900005689896]</div> <div class="fc-yellow">失败原因:征信评分不足</div> <div class="control"> <div class="inner"> <div class="read">标记为已读</div> <div class="del">删除</div> </div> </div> </div> </div> <div class="item"> <div class="area"> <div class="row"> <div class="cell tit">预审不通过</div> <div class="time">2017-02-03 08:26</div> </div> <div class="row detail">[608990]主办客户合同审批如下:陈澍[668089290]贷款合同[6680892900005689896]</div> <div class="fc-yellow">失败原因:征信评分不足</div> <div class="control"> <div class="inner"> <div class="read">标记为已读</div> <div class="del">删除</div> </div> </div> </div> </div> </div> </div> </div> <script src="../js/slide-deleter.min.js"></script> <script type="text/javascript"> $(function () { // 切换皮肤 // changeTheme()() var config = { sliderName: '.area', controlName: '.control', fnButtonName: '.read', delButtonName: '.del' } $('.mcList .item').each(function (i, el) { new slideDeleter(el, $.extend({}, config, { fn: function (btn, item) { var titClassList = item.querySelector('.tit').classList; if (titClassList.contains('read')) { titClassList.remove('read'); btn.innerText = '标记为已读'; } else { titClassList.add('read'); btn.innerText = '标记为未读'; } }, delete: function () { alert(`删除了第${i+1}个节点`) } })) }) // 菜单切换 $('.approvPanel .cell').on('click', function () { $(this).addClass('active').siblings().removeClass('active') }) }) </script> </body> </html>
OwlAford/crm-builder
static/prejudication.html
HTML
mit
4,009
--- layout: base --- {% include styles/svg.html %} <!-- top menu --> <div id="title" class="ui top fixed menu"> {% include elements/title.html %} </div> <!-- animated sidebar (can be revealed in mobile view) --> <div id="sidebar-retractable" class="ui vertical inverted sidebar menu"> <!-- #indices is re-parented here for mobile view --> </div> <!-- pushing container (will be pushed right when retractable sidebar opens) --> <div class="pusher"> <div class="ui left attached internal rail"> <!-- static sidebar (visible in non-mobile view) --> <div id="sidebar-fixed" class="ui vertical inverted menu"> <div id="indices"> {% include elements/indices.html %} </div> </div> </div> <!-- main contents --> <div id="page"> <div class="ui left aligned fluid container"> <div id="content" class="ui basic segment"> {{ content }} </div> <!-- footer --> <div id="attribution" class="ui basic segment"> {% include elements/attribution.html %} </div> </div> </div> </div> <!-- help modal --> <div id="help" class="ui small modal"> {% include elements/help.html %} </div> <script type="text/javascript"> {% include scripts/title.js %} {% include scripts/indices.js %} {% include scripts/search.js %} {% include scripts/page.js %} {% include scripts/help.js %} </script>
ellemenno/pages
docs/_layouts/page.html
HTML
mit
1,272
<div class="jumbotron"> <div class="container"> <h1 class="display-3">Welcome to Grant Thornton iHub</h1> <p>This website is used to transform flat files such as .dat, .csv, and .txt to formats usable by Oracle Cloud products. To learn more about how to begin transforming your files, click the button below.</p> <p><a class="btn btn-primary btn-lg" routerLink="/pages/about" role="button">Learn more &raquo;</a></p> </div> </div> <div class="container"> </div> <div class="container animation"> <!-- Example row of columns --> <div class="row"> <div class="col-md-4"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Projects</h3> <p class="card-text">Projects contain a set of integrations and assigned users.</p> <a class="btn btn-secondary" routerLink="/pages/projects" role="button">View Projects</a> </div> </div> </div> <div class="col-md-4"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Integrations</h3> <p class="card-text">Integrations contain all of the conversions necessary to convert data from one system to another.</p> <a class="btn btn-secondary" routerLink="/pages/integrations" role="button">View Integrations</a> </div> </div> </div> <div class="col-md-4"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Conversions</h3> <p class="card-text">Conversions define the formats and maps for data being converted.</p> <a class="btn btn-secondary" routerLink="/pages/conversions" role="button">View Conversions</a> </div> </div> </div> </div> <div class="row"> <div class="col-md-3"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Formats</h3> <p class="card-text">Formats define the structure of data file or data returned from API calls.</p> <a class="btn btn-secondary" routerLink="/pages/formats" role="button">View Integrations</a> </div> </div> </div> <div class="col-md-3"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Maps</h3> <p class="card-text">Maps define how the fields from input files or data are converted to target formats.</p> <a class="btn btn-secondary" routerLink="/pages/maps" role="button">View Integrations</a> </div> </div> </div> <div class="col-md-3"> <div class="card"> <div class="card-block"> <h3 class="card-title">View All Fields</h3> <p class="card-text">Fields are representations of single values from delimited files or API calls.</p> <a class="btn btn-secondary" routerLink="/pages/fields" role="button">View Integrations</a> </div> </div> </div> <div class="col-md-3"> <div class="card"> <div class="card-block"> <h3 class="card-title">View System Logs</h3> <p class="card-text">Logs are kept for maps which have been run, as well as other events like API calls and file extractions.</p> <a class="btn btn-secondary" routerLink="/pages/logs" role="button">View Logs</a> </div> </div> </div> </div> </div>
djones01/NodeiHub
src/app/home/overview/overview.component.html
HTML
mit
3,399
<div class="card-panel teal darken-2 info-panel white-text"> <h4>Create new review</h4> <div class="row"> </div> </div>
anssihaarala/gamereview
views/newreview.html
HTML
mit
123
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="fr"> <head> <!-- Generated by javadoc (1.8.0_40) on Mon Jun 08 09:46:11 CEST 2015 --> <title>Uses of Class game.components.PlayerComponent</title> <meta name="date" content="2015-06-08"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class game.components.PlayerComponent"; } } 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="../../../game/components/PlayerComponent.html" title="class in game.components">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?game/components/class-use/PlayerComponent.html" target="_top">Frames</a></li> <li><a href="PlayerComponent.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 game.components.PlayerComponent" class="title">Uses of Class<br>game.components.PlayerComponent</h2> </div> <div class="classUseContainer">No usage of game.components.PlayerComponent</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="../../../game/components/PlayerComponent.html" title="class in game.components">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?game/components/class-use/PlayerComponent.html" target="_top">Frames</a></li> <li><a href="PlayerComponent.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>
mitsuhirato/TheEndlessCastle
third-party/doc/game/components/class-use/PlayerComponent.html
HTML
mit
4,226
<!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_11) on Fri Mar 29 12:36:16 EDT 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class edu.msu.nscl.olog.LogbookManager (Olog Directory Service 2.2.3-SNAPSHOT API)</title> <meta name="date" content="2013-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="Uses of Class edu.msu.nscl.olog.LogbookManager (Olog Directory Service 2.2.3-SNAPSHOT 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="../../../../../edu/msu/nscl/olog/package-summary.html">Package</a></li> <li><a href="../../../../../edu/msu/nscl/olog/LogbookManager.html" title="class in edu.msu.nscl.olog">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?edu/msu/nscl/olog/class-use/LogbookManager.html" target="_top">Frames</a></li> <li><a href="LogbookManager.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 edu.msu.nscl.olog.LogbookManager" class="title">Uses of Class<br>edu.msu.nscl.olog.LogbookManager</h2> </div> <div class="classUseContainer">No usage of edu.msu.nscl.olog.LogbookManager</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="../../../../../edu/msu/nscl/olog/package-summary.html">Package</a></li> <li><a href="../../../../../edu/msu/nscl/olog/LogbookManager.html" title="class in edu.msu.nscl.olog">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?edu/msu/nscl/olog/class-use/LogbookManager.html" target="_top">Frames</a></li> <li><a href="LogbookManager.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; 2010-2013 Michigan State University. All Rights Reserved.</small></p> </body> </html>
Olog/olog.github.com
2.2.3-SNAPSHOT/modules/olog-service/olog-service/apidocs/edu/msu/nscl/olog/class-use/LogbookManager.html
HTML
mit
4,386
<HTML><HEAD> <TITLE>Review for Finding Forrester (2000)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0181536">Finding Forrester (2000)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Christopher+Null">Christopher Null</A></H3><HR WIDTH="40%" SIZE="4"> <PRE> FINDING FORRESTER A film review by Christopher Null Copyright 2000 filmcritic.com filmcritic.com</PRE> <P> They're already calling it "Good Will Hunting in the hood," and it's for good reason. Gus Van Sant's latest takes us back to the inner city (or The Bronx, at least) for a second verse of that feel-good feeling, with none other than Sean Connery as a crotchety old shut-in who teaches (and learns from, natch) a local teen (Rob Brown) who sneaks into his apartment.</P> <P> If you've seen the trailer, you know the story. The local Bronx kids live in fear of "the window," a ghostlike man who stares down at them creepily while they shoot hoops. On a dare, young Jamal (Brown) sneaks into the place, finding it cluttered with books. He's given a scare and Jamal runs off, leaving his backpack behind.</P> <P> The next day, his backpack returns from the sky, and lo and behold we learn of Jamal's true passion -- not for basketball, no. For the written word. And inside the pack, he finds his six journals, which apparently go everywhere with him, have been edited and critiqued by the man in the window.</P> <P> It's tortuous plotting, but eventually Jamal befriends the peeper (Connery), who turns out to be none other than William Forrester, the famed author of a single novel published some 50 years ago -- a novel which won a Pulitzer and inexplicably drove its author into hiding.</P> <P> An obvious stand-in for J.D. Salinger, Connery's character is a neurotic shut-in, crippled with anxiety and unable to leave his home. He drinks and pontificates and wears his socks inside out. And he starts teaching Jamal how to write. (And as a side note from this professional writer to any aspiring writer types reading this review -- please do not try to take Forrester's advice.)</P> <P> Events transpire and Jamal winds up in a Manhattan prep school where he is soon accused of plagiarism due to his astounding, accelerated growth as a writer. That he is one of few blacks in a ritzy, almost-all-white environment (you know, he plays basketball) adds fuel to the fire. It'll take a miracle to get Jamal out of this jam -- and you'll just have to imagine the shocking conclusion of the film. Unless you already saw it in the trailer, I mean.</P> <P> Unfortunately, the fact that the entire story of Finding Forrester can be told verbatim in 60 seconds during a TV commercial doesn't really matter. This is the kind of film where our young hero has time in every day for playing basketball, writing at Forrester's place, writing at home (as he's not allowed to remove his work from Forrester's apartment), plus, ostensibly, doing his schoolwork and sleeping. (What, no part-time job?) This is a Hollywood movie, and it's unabashedly so. Forrester is larger than life in the way that only Connery can be. Jamal is larger than life as well, the actor that plays him custom-made to repeat that Matt Damon/Ben Affleck Good Will Hunting Oscar magic. You'll hear this a lot: Rob Brown was born in Harlem and has no training as an actor. And he isn't acting here, he's reading his lines, being himself, and wondering how the hell he got on the set of a big-time movie. The press is going to eat this guy up like buttah.</P> <P> Again, this is Hollywood, and all the old school wannabe-blockbuster elements are there. There's a commentary on class and race, there's Busta Rhymes provided for some well-done comic relief, and lest we begin to take the movie seriously, there's Joey Buttafuoco making a cameo as a security guard (no, really). The picture has the body of Girlfight and the ending of Scent of a Woman. It is unoriginal and long, it is predictable and mildly pleasant, it is cranked out for the least common denominator, and it won't offend anyone -- not even the prep school bozos it vilifies. That's fine. Movies like this don't hurt, and if they convince a few disenfranchised youths to pick up a pen and start some writing, all the better.</P> <P> While Finding Forrester is an average film that earns my average rating, the real disappointment is its ultimately disheartening theme that makes you wonder how it ever got made. (I wondered the same thing about Good Will Hunting, but that's another story.) The problem is this: Much as in Hunting, which told us that anybody can pull himself out of the hood... if they're a super-genius, Finding Forrester says that anybody with a little talent can become a great writer... if they're tutored by a Pulitzer Prize winner.</P> <P> I guess those kids will have to keep dreaming after all. Merry Christmas.</P> <PRE>RATING: ***</PRE> <PRE>|------------------------------| \ ***** Perfection \ \ **** Good, memorable film \ \ *** Average, hits and misses \ \ ** Sub-par on many levels \ \ * Unquestionably awful \ |------------------------------|</PRE> <PRE>MPAA Rating: PG-13</PRE> <P>Director: Gus Van Sant Producer: Sean Connery, Laurence Mark, Rhonda Tollefson Writer: Mike Rich Starring: Sean Connery, F. Murray Abraham, Michael Nouri, Rob Brown, Anna Paquin, Busta Rhymes</P> <P><A HREF="http://www.spe.sony.com/movies/findingforrester/">http://www.spe.sony.com/movies/findingforrester/</A></P> <P><A HREF="http://www.amazon.com/exec/obidos/redirect?tag=filmcriticcom&path=subst/video/sellers/amazon-top-100-dvd.html">http://www.amazon.com/exec/obidos/redirect?tag=filmcriticcom&path=subst/video/sellers/amazon-top-100-dvd.html</A> Movie Fiends: Check out Amazon.com's Top 100 Hot DVDs!</P> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
xianjunzhengbackup/code
data science/machine_learning_for_the_web/chapter_4/movie/27142.html
HTML
mit
6,950
<!doctype html> <html lang="en"> <head> <title></title> <link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="/styles/main.css" type="text/css"> </head> <body ng-app="todoListApp"> <ng-include src="'templates/navbar.html'"></ng-include> <h1>YSF TODOs!</h1> <div class="list" ng-controller="mainCtrl"> <div class="add"> <a href="#" ng-click="addTodo()"> + Add a New Task</a> </div> <todo></todo> </div> <ng-include src="'templates/footer.html'"></ng-include> <script src="/scripts/vendor.bundle.js"></script> <script src="/scripts/todo.bundle.js"></script> </body> </html>
ysfdev/ng-playground
projects/todos-app/public/index.html
HTML
mit
698
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>prfx: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- 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/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.7.1 / prfx - 8.10.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> prfx <small> 8.10.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-02-19 06:39:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-19 06:39:30 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base camlp5 7.11 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.7.1 Formal proof management system. num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.0 Official release 4.09.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/http://www.cs.ru.nl/~hendriks/coq/prfx/&quot; license: &quot;Unknown&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Prfx&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} ] tags: [ &quot;keyword: first-order logic&quot; &quot;keyword: natural deduction&quot; &quot;keyword: reflection&quot; &quot;keyword: proof terms&quot; &quot;keyword: de bruijn indices&quot; &quot;keyword: permutative conversions&quot; &quot;category: Mathematics/Logic/Foundations&quot; &quot;date: 15 April 2005&quot; ] authors: [ &quot;Dimitri Hendriks &lt;hendriks@cs.ru.nl&gt; [http://www.cs.ru.nl/~hendriks/]&quot; ] bug-reports: &quot;https://github.com/coq-contribs/prfx/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/prfx.git&quot; synopsis: &quot;Proof Reflection in Coq&quot; description: &quot;&quot;&quot; A formalisation of natural deduction for first-order logic with explicit proof terms. Read README.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/prfx/archive/v8.10.0.tar.gz&quot; checksum: &quot;md5=35eb746d14fa85582845fa8005aed9bc&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-prfx.8.10.0 coq.8.7.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1). The following dependencies couldn&#39;t be met: - coq-prfx -&gt; coq &gt;= 8.10 Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-prfx.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.09.0-2.0.5/released/8.7.1/prfx/8.10.0.html
HTML
mit
7,043
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Class ShutdownException </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class ShutdownException "> <meta name="generator" content="docfx 2.43.2.0"> <link rel="shortcut icon" href="../favicon.ico"> <link rel="stylesheet" href="../styles/docfx.vendor.css"> <link rel="stylesheet" href="../styles/docfx.css"> <link rel="stylesheet" href="../styles/main.css"> <meta property="docfx:navrel" content="../toc.html"> <meta property="docfx:tocrel" content="toc.html"> </head> <body data-spy="scroll" data-target="#affix" data-offset="120"> <div id="wrapper"> <header> <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"> <img id="logo" class="svg" src="../logo.svg" alt=""> </a> </div> <div class="collapse navbar-collapse" id="navbar"> <form class="navbar-form navbar-right" role="search" id="search"> <div class="form-group"> <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> </div> </form> </div> </div> </nav> <div class="subnav navbar navbar-default"> <div class="container hide-when-search" id="breadcrumb"> <ul class="breadcrumb"> <li></li> </ul> </div> </div> </header> <div role="main" class="container body-content hide-when-search"> <div class="sidenav hide-when-search"> <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> <div class="sidetoggle collapse" id="sidetoggle"> <div id="sidetoc"></div> </div> </div> <div class="article row grid-right"> <div class="col-md-10"> <article class="content wrap" id="_content" data-uid="Kephas.Application.ShutdownException"> <h1 id="Kephas_Application_ShutdownException" data-uid="Kephas.Application.ShutdownException" class="text-break">Class ShutdownException </h1> <div class="markdown level0 summary"><p>Exception for signaling shutdown errors.</p> </div> <div class="markdown level0 conceptual"></div> <div class="inheritance"> <h5>Inheritance</h5> <div class="level0"><span class="xref">System.Object</span></div> <div class="level1"><span class="xref">System.Exception</span></div> <div class="level2"><span class="xref">System.ApplicationException</span></div> <div class="level3"><span class="xref">ShutdownException</span></div> </div> <div classs="implements"> <h5>Implements</h5> <div><span class="xref">System.Runtime.Serialization.ISerializable</span></div> <div><a class="xref" href="Kephas.ExceptionHandling.ISeverityQualifiedException.html">ISeverityQualifiedException</a></div> </div> <div class="inheritedMembers"> <h5>Inherited Members</h5> <div> <span class="xref">System.Exception.GetBaseException()</span> </div> <div> <span class="xref">System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)</span> </div> <div> <span class="xref">System.Exception.GetType()</span> </div> <div> <span class="xref">System.Exception.ToString()</span> </div> <div> <span class="xref">System.Exception.Data</span> </div> <div> <span class="xref">System.Exception.HelpLink</span> </div> <div> <span class="xref">System.Exception.HResult</span> </div> <div> <span class="xref">System.Exception.InnerException</span> </div> <div> <span class="xref">System.Exception.Message</span> </div> <div> <span class="xref">System.Exception.Source</span> </div> <div> <span class="xref">System.Exception.StackTrace</span> </div> <div> <span class="xref">System.Exception.TargetSite</span> </div> <div> <span class="xref">System.Exception.SerializeObjectState</span> </div> <div> <span class="xref">System.Object.Equals(System.Object)</span> </div> <div> <span class="xref">System.Object.Equals(System.Object, System.Object)</span> </div> <div> <span class="xref">System.Object.GetHashCode()</span> </div> <div> <span class="xref">System.Object.MemberwiseClone()</span> </div> <div> <span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span> </div> </div> <h6><strong>Namespace</strong>: <a class="xref" href="Kephas.Application.html">Kephas.Application</a></h6> <h6><strong>Assembly</strong>: Kephas.Application.dll</h6> <h5 id="Kephas_Application_ShutdownException_syntax">Syntax</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public class ShutdownException : ApplicationException, ISerializable, ISeverityQualifiedException</code></pre> </div> <h3 id="constructors">Constructors </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException__ctor_System_String_.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException.%23ctor(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L26">View Source</a> </span> <a id="Kephas_Application_ShutdownException__ctor_" data-uid="Kephas.Application.ShutdownException.#ctor*"></a> <h4 id="Kephas_Application_ShutdownException__ctor_System_String_" data-uid="Kephas.Application.ShutdownException.#ctor(System.String)">ShutdownException(String)</h4> <div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Kephas.Application.ShutdownException.html">ShutdownException</a> class.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public ShutdownException(string message)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.String</span></td> <td><span class="parametername">message</span></td> <td><p>The message.</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException__ctor_System_String_System_Exception_.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException.%23ctor(System.String%2CSystem.Exception)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L37">View Source</a> </span> <a id="Kephas_Application_ShutdownException__ctor_" data-uid="Kephas.Application.ShutdownException.#ctor*"></a> <h4 id="Kephas_Application_ShutdownException__ctor_System_String_System_Exception_" data-uid="Kephas.Application.ShutdownException.#ctor(System.String,System.Exception)">ShutdownException(String, Exception)</h4> <div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Kephas.Application.ShutdownException.html">ShutdownException</a> class.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public ShutdownException(string message, Exception inner)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.String</span></td> <td><span class="parametername">message</span></td> <td><p>The message.</p> </td> </tr> <tr> <td><span class="xref">System.Exception</span></td> <td><span class="parametername">inner</span></td> <td><p>The inner.</p> </td> </tr> </tbody> </table> <h3 id="properties">Properties </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException_AmbientServices.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException.AmbientServices%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L65">View Source</a> </span> <a id="Kephas_Application_ShutdownException_AmbientServices_" data-uid="Kephas.Application.ShutdownException.AmbientServices*"></a> <h4 id="Kephas_Application_ShutdownException_AmbientServices" data-uid="Kephas.Application.ShutdownException.AmbientServices">AmbientServices</h4> <div class="markdown level1 summary"><p>Gets or sets the ambient services.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public IAmbientServices AmbientServices { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Kephas.IAmbientServices.html">IAmbientServices</a></td> <td><p>The ambient services.</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException_AppContext.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException.AppContext%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L57">View Source</a> </span> <a id="Kephas_Application_ShutdownException_AppContext_" data-uid="Kephas.Application.ShutdownException.AppContext*"></a> <h4 id="Kephas_Application_ShutdownException_AppContext" data-uid="Kephas.Application.ShutdownException.AppContext">AppContext</h4> <div class="markdown level1 summary"><p>Gets or sets a context for the application.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public IAppContext AppContext { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Kephas.Application.IAppContext.html">IAppContext</a></td> <td><p>The application context.</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException_Severity.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException.Severity%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L49">View Source</a> </span> <a id="Kephas_Application_ShutdownException_Severity_" data-uid="Kephas.Application.ShutdownException.Severity*"></a> <h4 id="Kephas_Application_ShutdownException_Severity" data-uid="Kephas.Application.ShutdownException.Severity">Severity</h4> <div class="markdown level1 summary"><p>Gets or sets the severity.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public SeverityLevel Severity { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Kephas.ExceptionHandling.SeverityLevel.html">SeverityLevel</a></td> <td><p>The severity.</p> </td> </tr> </tbody> </table> <h3 id="implements">Implements</h3> <div> <span class="xref">System.Runtime.Serialization.ISerializable</span> </div> <div> <a class="xref" href="Kephas.ExceptionHandling.ISeverityQualifiedException.html">ISeverityQualifiedException</a> </div> <h3 id="extensionmethods">Extension Methods</h3> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_SetPropertyValue_System_Object_System_String_System_Object_">DynamicObjectExtensions.SetPropertyValue(Object, String, Object)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_TrySetPropertyValue_System_Object_System_String_System_Object_">DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_GetPropertyValue_System_Object_System_String_">DynamicObjectExtensions.GetPropertyValue(Object, String)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_TryGetPropertyValue_System_Object_System_String_System_Object__">DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_GetRuntimeTypeInfo_System_Object_">DynamicObjectExtensions.GetRuntimeTypeInfo(Object)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_ToDynamic_System_Object_">DynamicObjectExtensions.ToDynamic(Object)</a> </div> <div> <a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_ToExpando_System_Object_">DynamicObjectExtensions.ToExpando(Object)</a> </div> <div> <a class="xref" href="Kephas.Behaviors.BehaviorValue.html#Kephas_Behaviors_BehaviorValue_ToBehaviorValue__1___0_">BehaviorValue.ToBehaviorValue&lt;TValue&gt;(TValue)</a> </div> <div> <a class="xref" href="Kephas.Collections.CollectionExtensions.html#Kephas_Collections_CollectionExtensions_AddRange__2___0_System_Collections_Generic_IEnumerable___1__">CollectionExtensions.AddRange&lt;T, TItem&gt;(T, IEnumerable&lt;TItem&gt;)</a> </div> <div> <a class="xref" href="Kephas.Logging.LoggerExtensions.html#Kephas_Logging_LoggerExtensions_GetLogLevel_System_Exception_">LoggerExtensions.GetLogLevel(Exception)</a> </div> <div> <a class="xref" href="Kephas.Logging.LoggingExtensions.html#Kephas_Logging_LoggingExtensions_GetLogger_System_Object_Kephas_Services_IContext_">LoggingExtensions.GetLogger(Object, IContext)</a> </div> <div> <a class="xref" href="Kephas.Model.TypeExtensions.html#Kephas_Model_TypeExtensions_GetAbstractType_System_Object_">TypeExtensions.GetAbstractType(Object)</a> </div> <div> <a class="xref" href="Kephas.Model.TypeExtensions.html#Kephas_Model_TypeExtensions_GetAbstractTypeInfo_System_Object_">TypeExtensions.GetAbstractTypeInfo(Object)</a> </div> <div> <a class="xref" href="Kephas.Reflection.ReflectionHelper.html#Kephas_Reflection_ReflectionHelper_GetTypeInfo_System_Object_">ReflectionHelper.GetTypeInfo(Object)</a> </div> <div> <a class="xref" href="Kephas.Data.Capabilities.EntityEntryExtensions.html#Kephas_Data_Capabilities_EntityEntryExtensions_TryGetAttachedEntityEntry_System_Object_">EntityEntryExtensions.TryGetAttachedEntityEntry(Object)</a> </div> </article> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <div class="contribution"> <ul class="nav"> <li> <a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Application_ShutdownException.md&amp;value=---%0Auid%3A%20Kephas.Application.ShutdownException%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a> </li> <li> <a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Application/ShutdownException.cs/#L20" class="contribution-link">View Source</a> </li> </ul> </div> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> --> </nav> </div> </div> </div> </div> <footer> <div class="grad-bottom"></div> <div class="footer"> <div class="container"> <span class="pull-right"> <a href="#top">Back to top</a> </span> <span>Generated by <strong>DocFX</strong></span> </div> </div> </footer> </div> <script type="text/javascript" src="../styles/docfx.vendor.js"></script> <script type="text/javascript" src="../styles/docfx.js"></script> <script type="text/javascript" src="../styles/main.js"></script> </body> </html>
quartz-software/kephas
docs/api/Kephas.Application.ShutdownException.html
HTML
mit
20,381
<div> <h4>Course: {{playCtrl.game.course.name}}</h4> <h5>Hole {{playCtrl.holeNumber}}</h5> <table class="row bordered"> <thead> <tr> <th>Player</th> <th>Hole Score<th> </tr> </thead> <tbody> <tr ng-repeat="player in playCtrl.game.players"> <td class="vcenter"> {{player.name}} </td> <td class="vcenter"> <i class="btn mdi-content-remove" ng-click="playCtrl.removeStrokeForPlayer(player.id)"></i> <div class="player-score">{{playCtrl.holeScores[player.id]}}</div> <i class="btn mdi-content-add" ng-click="playCtrl.addStrokeForPlayer(player.id)"></i> </td> </tr> </tbody> </table> <div class="row"> <button class="btn waves-effect waves-light" ng-click="playCtrl.prevHole()" ng-disabled="playCtrl.holeNumber <= 1">Previous Hole</button> <button class="btn waves-effect waves-light" ng-click="playCtrl.nextHole()">{{playCtrl.nextHoleBtnLabel}}</button> </div> </div>
SpencerLynn/discores
public/views/play-game.html
HTML
mit
1,014
<html lang="en"> <head> <title>Login</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="assets/css/style.css" rel="stylesheet" /> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/logout.js"></script> <script src="assets/js/profile.js"></script> </head> <body> <div class="section-menu"> <div class="menu-header"> <a href=""> <img src="assets/images/lr-logo.png"/> </a> <span style="display:block;margin-left:120px">NodeJS Web Demo</span> <div class="button-group"> <a href="index.html">Minimal</a> <a href="loginscreen.html">LoginScreen</a> </div> </div> <div class="vertical-menu"> <a href="profile.html" id="menu-profile">Profile</a> <a href="changepassword.html" id="menu-changepassword">Change Password</a> <a href="setpassword.html" id="menu-setpassword">Set Password</a> <a href="account.html" id="menu-account">Update Account</a> <a href="accountlinking.html" id="menu-accountlinking">Account Linking</a> <a href="customobjects.html" id="menu-customobjects">Custom Object Management</a> <a href="multifactor.html" id="menu-multifactor">Reset MultiFactor</a> <a href="roles.html" id="menu-roles">Roles Management</a> <a href="" id="menu-user-logout">Logout</a> </div> </div> <div class="overlay" id="lr-loading" style="display: none;"> <div class="lr_loading_screen"> <div class="lr_loading_screen_center" style="position: fixed;"> <div class="lr_loading_screen_spinner"></div> <div class="lr_loading-phrases-container"> <div class="lr_loading-phrases_wrap"> <div class="lr_loading_phrase" style="color: #646F79">Please wait...</div> </div> </div> </div> </div> </div> <div class="section-main section-minimal"> <center> <div class="container lr-roles"> <b>All Roles</b><br/> <center><table id="table-allroles" class="table-style"></table></center> <br></br> <b>Create Role</b><br/> Role: <textarea name="createrole" type='text' id="user-roles-createrole"></textarea><br/> <button id="btn-user-createrole">Create</button><br/> <span style="color:red" id="user-createrole-errorMsg"></span> <span style="color:green" id="user-createrole-successMsg"></span> <br></br> <b>Delete Role</b><br/> Role: <input name="deleterole" type='text' id='user-roles-deleterole'/><br/> <button id="btn-user-deleterole">Delete</button><br/> <span style="color:red" id="user-deleterole-errorMsg"></span> <span style="color:green" id="user-deleterole-successMsg"></span> <br></br> <b>Current User Role(s)</b><br/> <center><table id="table-userroles" class="table-style"></table></center> <br></br> <b>Assign Role to User</b><br/> Role: <textarea row="6" name="assignrole" cols="25" id="user-roles-assignrole"></textarea><br/> <button id="btn-user-assignrole">Assign</button><br/> <span style="color:red" id="user-assignrole-errorMsg"></span> <span style="color:green" id="user-assignrole-successMsg"></span> <br></br> </div><br></br><br></br> </center> </div> </body> </html>
LoginRadius/node-js-sdk
demo/demo/roles.html
HTML
mit
3,821
<!DOCTYPE html><html xmlns:date="http://exslt.org/dates-and-times" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>phpDocumentor</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="css/template.css" rel="stylesheet" media="all"> <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="js/bootstrap.js" type="text/javascript"></script><script src="js/template.js" type="text/javascript"></script><script src="js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="img/favicon.ico"> <link rel="apple-touch-icon" href="img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="index.html">phpDocumentor</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"></ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">0</span></a></li> <li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <ul></ul></a></li> <li><a href="deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">0</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"> <div class="span4"><ul class="side-nav nav nav-list"> <li class="nav-header">Filter type</li> <li><div class="btn-group type-filter" data-toggle="buttons-checkbox"> <button class="btn critical">Critical</button><button class="btn error">Error</button><button class="btn notice">Notice</button> </div></li> <li class="nav-header">Navigation</li> </ul></div> <div class="span8"> <ul class="breadcrumb"> <li> <a href=""><i class="icon-remove-sign"></i></a><span class="divider">\</span> </li> <li>Compilation Errors</li> </ul> <div class="alert alert-info">No errors have been found in this project.</div> <div class="package-contents"></div> </div> </div> <div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a6</a> and<br> generated on 2012-06-26T17:40:34-04:00.<br></footer></div> </div> </body> </html>
arithmophile/number-functions-api
api_docs/errors.html
HTML
mit
4,142
<!DOCTYPE html> <html lang="en" data-ng-app="app"> <head> <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="{{metaDescription}}" /> <title ng-bind="pageTitle"></title> <link href="assets/main.css?v=@@cacheHash" rel="stylesheet" type="text/css"> <base href="/"> </head> <body ng-controller="AppController"> <div class="container"> <div id="main-nav"> <div class="navbar-header"> <a class="navbar-brand" href="/" analytics-on analytics-category="nav" analytics-event="click" analytics-label="Logo"></a> </div> <div class="navbar-text pull-left dropdown-hover-open" uib-dropdown> <a href uib-dropdown-toggle> <i class="fa fa-lg fa-bars"></i> </a> <ul class="dropdown-menu" uib-dropdown-menu> <li class="dropdown-header"> Projects </li> <li> <a href="/bwca" analytics-on analytics-category="nav" analytics-event="click" analytics-label="Geo Photo Galleries">Geo Photo Galleries</a> </li> </ul> </div> <div class="navbar-text pull-right"> <a href="https://www.linkedin.com/in/bwilzen" target="_blank" analytics-on analytics-category="nav" analytics-event="click" analytics-label="LinkedIn"> <i class="fa fa-2x bw-fa-linkedin-square"></i> </a> <a href="https://github.com/bgwilson87/benjamingwilson.com" target="_blank" analytics-on analytics-category="nav" analytics-event="click" analytics-label="GitHub"> <i class="fa fa-2x bw-fa-github-square"></i> </a> </div> </div> </div> <div ng-view></div> <!-- _____ _ _____ _ _ _ _ / __ \ | | | __ (_) | | | | | | / \/ ___ __| | ___ ___ _ __ | | \/_| |_| |__ _ _| |__ | | / _ \ / _` |/ _ \ / _ \| '_ \ | | __| | __| '_ \| | | | '_ \ | \__/\ (_) | (_| | __/ | (_) | | | | | |_\ \ | |_| | | | |_| | |_) | \____/\___/ \__,_|\___| \___/|_| |_| \____/_|\__|_| |_|\__,_|_.__/ https://github.com/bgwilson87/benjamingwilson.com --> <script src="assets/main.js?v=@@cacheHash"></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','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-11604166-1', 'auto'); </script> </body> </html>
bgwilson87/benjamingwilson.com
app/templates/index.html
HTML
mit
2,868
<html><body> <h4>Windows 10 x64 (18363.900)</h4><br> <h2>_MI_CROSS_PARTITION_CHARGES</h2> <font face="arial"> +0x000 CurrentCharges : Uint8B<br> +0x008 ChargeFailures : Uint8B<br> +0x010 ChargePeak : Uint8B<br> +0x018 ChargeMinimum : Uint8B<br> </font></body></html>
epikcraw/ggool
public/Windows 10 x64 (18363.900)/_MI_CROSS_PARTITION_CHARGES.html
HTML
mit
297
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./e9ed4f8b56b8014477a9c4459d5c8959ad59227593a96d17093a08bcd9423a59.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/b0e3af506269328350c5db40269a3d6bfc6449a89877e920a7112977dac31223.html
HTML
mit
550
<a name='moving category'><h1>moving category</h1></a> <table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>reverting_id</th> <th>reverting_user_text</th> <th>rev_user_text</th> <th>reverting_comment</th> <th>diff</th> </tr> </thead> <tbody> <tr> <th>798236</th> <td>102554022</td> <td>Bluebot</td> <td>NekoDaemon</td> <td>Robot: Changing category U.S. philosophers</td> <td>--- \n<br/>+++ \n<br/>@@ -4,5 +4,5 @@\n<br/> <br/> {{philosopher-stub}}<br/> <br/>+[[Category:American philosophers]]<br/> [[Category:American writers]]<br/>-[[Category:U.S. philosophers]]</td> </tr> <tr> <th>820957</th> <td>61011849</td> <td>Cydebot</td> <td>Kbdankbot</td> <td>Robot - Speedily moving category 8th-century in religion to 8th century in religion per [[WP:CFD|CFD]].</td> <td>--- \n<br/>+++ \n<br/>@@ -51,7 +51,7 @@\n<br/> [[Category:Muslim dynasties]]<br/> [[Category:Tbilisi]]<br/> [[Category:736 establishments]]<br/>-[[Category:8th-century in religion]]<br/>+[[Category:8th century in religion]]<br/> [[Category:9th-century in religion]]<br/> [[Category:10th-century in religion]]<br/> [[Category:11th-century in religion]]</td> </tr> <tr> <th>820958</th> <td>61011850</td> <td>Cydebot</td> <td>Kbdankbot</td> <td>Robot - Speedily moving category 9th-century in religion to 9th century in religion per [[WP:CFD|CFD]].</td> <td>--- \n<br/>+++ \n<br/>@@ -52,7 +52,7 @@\n<br/> [[Category:Tbilisi]]<br/> [[Category:736 establishments]]<br/> [[Category:8th century in religion]]<br/>-[[Category:9th-century in religion]]<br/>+[[Category:9th century in religion]]<br/> [[Category:10th-century in religion]]<br/> [[Category:11th-century in religion]]<br/> [[Category:1122 disestablishments]]</td> </tr> <tr> <th>820959</th> <td>61011851</td> <td>Cydebot</td> <td>Kbdankbot</td> <td>Robot - Speedily moving category 10th-century in religion to 10th century in religion per [[WP:CFD|CFD]].</td> <td>--- \n<br/>+++ \n<br/>@@ -53,7 +53,7 @@\n<br/> [[Category:736 establishments]]<br/> [[Category:8th century in religion]]<br/> [[Category:9th century in religion]]<br/>-[[Category:10th-century in religion]]<br/>+[[Category:10th century in religion]]<br/> [[Category:11th-century in religion]]<br/> [[Category:1122 disestablishments]]<br/> [[ca:Emirat de Tblisi]]</td> </tr> <tr> <th>820960</th> <td>61011853</td> <td>Cydebot</td> <td>Kbdankbot</td> <td>Robot - Speedily moving category 11th-century in religion to 11th century in religion per [[WP:CFD|CFD]].</td> <td>--- \n<br/>+++ \n<br/>@@ -54,7 +54,7 @@\n<br/> [[Category:8th century in religion]]<br/> [[Category:9th century in religion]]<br/> [[Category:10th century in religion]]<br/>-[[Category:11th-century in religion]]<br/>+[[Category:11th century in religion]]<br/> [[Category:1122 disestablishments]]<br/> [[ca:Emirat de Tblisi]]<br/> [[he:אמירות טביליסי]]</td> </tr> <tr> <th>826590</th> <td>66465228</td> <td>Bluebot</td> <td>NekoDaemon</td> <td>Robot: Changing category United States musicians</td> <td>--- \n<br/>+++ \n<br/>@@ -6,5 +6,5 @@\n<br/> <br/> Mr. Rome's signature style is marked by lush orchestrations, interweaving multidimensional horns and strings to accentuate the sensuality of the compositions. His various other projects include [[Jimmy Ruffin]]'s ''Fallin' in Love with You'' (1977), [[The Sweet Inspirations]]' ''Black Sunday'' (1977), [[Chi-Lites]]' ''My First Mistake'' (1977), Flower's ''Midnight Dancing'', ''Now'', and ''Our Never-Ending Love'' (1979), and, in collaboration with [[Phil Hurtt]], [[Stanley Turrentine]]'s ''Disco Dancing'' (1978) and Phil Hurtt's ''Giving It Back'' (1978).<br/> <br/>+[[Category:American musicians|Rome, Richie]]<br/> [[Category:Disco|Rome, Richie]]<br/>-[[Category:United States musicians|Rome, Richie]]</td> </tr> <tr> <th>828482</th> <td>162458337</td> <td>ArmbrustBot</td> <td>RussBot</td> <td>/* References */re-categorisation per [[WP:CFDS|CFDS]] using [[Project:AWB|AWB]]</td> <td>--- \n<br/>+++ \n<br/>@@ -50,6 +50,6 @@\n<br/> {{reflist}}<br/> <br/> [[Category:National Oceanic and Atmospheric Administration]]<br/>-[[Category:Oceanographic institutions]]<br/>+[[Category:Oceanographic organizations]]<br/> [[Category:Meteorological institutions affiliated with universities]]<br/> [[Category:University of Colorado Boulder]]</td> </tr> </tbody> </table>
halfak/are-the-bots-really-fighting
docs/sample_tables/de/ns0/de_ns0_sample_moving_category.html
HTML
mit
4,683
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>IBaseResultOfBusinessRuleTraceLog | @picturepark/sdk-v1-angular API</title> <meta name="description" content="Documentation for @picturepark/sdk-v1-angular API"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">@picturepark/sdk-v1-angular API</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="ibaseresultofbusinessruletracelog.html">IBaseResultOfBusinessRuleTraceLog</a> </li> </ul> <h1>Interface IBaseResultOfBusinessRuleTraceLog</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-comment"> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Base class for search results</p> </div> </div> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">IBaseResultOfBusinessRuleTraceLog</span> <ul class="tsd-hierarchy"> <li> <a href="isearchbehaviorbaseresultofbusinessruletracelog.html" class="tsd-signature-type">ISearchBehaviorBaseResultOfBusinessRuleTraceLog</a> </li> </ul> </li> </ul> </section> <section class="tsd-panel"> <h3>Implemented by</h3> <ul class="tsd-hierarchy"> <li><a href="../classes/baseresultofbusinessruletracelog.html" class="tsd-signature-type">BaseResultOfBusinessRuleTraceLog</a></li> <li><a href="../classes/businessruletracelogsearchresult.html" class="tsd-signature-type">BusinessRuleTraceLogSearchResult</a></li> <li><a href="../classes/searchbehaviorbaseresultofbusinessruletracelog.html" class="tsd-signature-type">SearchBehaviorBaseResultOfBusinessRuleTraceLog</a></li> <li><a href="../classes/searchbehaviorwithaggregationbaseresultofbusinessruletracelog.html" class="tsd-signature-type">SearchBehaviorWithAggregationBaseResultOfBusinessRuleTraceLog</a></li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-external"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="ibaseresultofbusinessruletracelog.html#elapsedmilliseconds" class="tsd-kind-icon">elapsed<wbr>Milliseconds</a></li> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="ibaseresultofbusinessruletracelog.html#pagetoken" class="tsd-kind-icon">page<wbr>Token</a></li> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="ibaseresultofbusinessruletracelog.html#results" class="tsd-kind-icon">results</a></li> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="ibaseresultofbusinessruletracelog.html#totalresults" class="tsd-kind-icon">total<wbr>Results</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a name="elapsedmilliseconds" class="tsd-anchor"></a> <h3>elapsed<wbr>Milliseconds</h3> <div class="tsd-signature tsd-kind-icon">elapsed<wbr>Milliseconds<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52807">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52807</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>The search execution time in milliseconds.</p> </div> </div> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a name="pagetoken" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagOptional">Optional</span> page<wbr>Token</h3> <div class="tsd-signature tsd-kind-icon">page<wbr>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52809">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52809</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>An optional token to access the next page of results for those endpoints that support backend scrolling logic.</p> </div> </div> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a name="results" class="tsd-anchor"></a> <h3>results</h3> <div class="tsd-signature tsd-kind-icon">results<span class="tsd-signature-symbol">:</span> <a href="ibusinessruletracelog.html" class="tsd-signature-type">IBusinessRuleTraceLog</a><span class="tsd-signature-symbol">[]</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52805">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52805</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>The matched documents.</p> </div> </div> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a name="totalresults" class="tsd-anchor"></a> <h3>total<wbr>Results</h3> <div class="tsd-signature tsd-kind-icon">total<wbr>Results<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52803">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52803</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>The total number of matching documents.</p> </div> </div> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-interface tsd-is-external"> <a href="ibaseresultofbusinessruletracelog.html" class="tsd-kind-icon">IBase<wbr>Result<wbr>OfBusiness<wbr>Rule<wbr>Trace<wbr>Log</a> <ul> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a href="ibaseresultofbusinessruletracelog.html#elapsedmilliseconds" class="tsd-kind-icon">elapsed<wbr>Milliseconds</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a href="ibaseresultofbusinessruletracelog.html#pagetoken" class="tsd-kind-icon">page<wbr>Token</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a href="ibaseresultofbusinessruletracelog.html#results" class="tsd-kind-icon">results</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external"> <a href="ibaseresultofbusinessruletracelog.html#totalresults" class="tsd-kind-icon">total<wbr>Results</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> </body> </html>
Picturepark/Picturepark.SDK.TypeScript
docs/picturepark-sdk-v1-angular/api/interfaces/ibaseresultofbusinessruletracelog.html
HTML
mit
10,989
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Contact - Jessies Realm</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/business-casual.css" rel="stylesheet"> <!-- Fonts --> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css"> <!-- 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]--> <!-- awesome font link --> <link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css"> </head> <body> <div class="brand">Jessie's Realm</div> <div class="address-bar">#22-344 89 Tanglin Halt Road | Singapore 141089 |jessica272@gmail.com</div> <!-- Navigation --> <nav class="navbar navbar-default" role="navigation"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed --> <a class="navbar-brand" href="index.html">Jessie's Realm</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li> <a href="index.html">Home</a> </li> <li> <a href="about.html">About</a> </li> <li> <a href="blog.html">Blog</a> </li> <li> <a href="contact.html">Contact</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <div class="container"> <div class="row"> <div class="box"> <div class="col-lg-12"> <hr> <h2 class="intro-text text-center">How to connect <strong>with me</strong> </h2> <hr> </div> <div class="col-md-8"> <!-- Embedded Google Map using an iframe - to select your location find it on Google maps and paste the link as the iframe src. If you want to use the Google Maps API instead then have at it! --> <iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3988.78946137611!2d103.796744!3d1.3012128!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da1a476a14f12d%3A0x6201f12705819bfb!2s89+Tanglin+Halt+Rd%2C+Singapore+141089!5e0!3m2!1sen!2ssg!4v1481461499132" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe> </div> <div class="col-md-4"> <p>Phone: <strong>(65) 87107958</strong> </p> <p>Email: <strong><a href="mailto:jessica272@gmail.com">jessica272@gmail.com</a></strong> </p> <p>Address: <strong> 89 Tanglin Halt Road, (S)141089</strong> </p> </div> <div class="clearfix"></div> </div> </div> <div class="row"> <div class="box"> <div class="col-lg-12"> <hr> <h2 class="intro-text text-center">Contact <strong>form</strong> </h2> <hr> <p style="text-align:center;"> If you have any comments or feedback feel free to fill in below !</p> <form role="form"> <div class="row"> <div class="form-group col-lg-4"> <label>Name</label> <input type="text" class="form-control"> </div> <div class="form-group col-lg-4"> <label>Email Address</label> <input type="email" class="form-control"> </div> <div class="form-group col-lg-4"> <label>Phone Number</label> <input type="tel" class="form-control"> </div> <div class="clearfix"></div> <div class="form-group col-lg-12"> <label>Message</label> <textarea class="form-control" rows="6"></textarea> </div> <div class="form-group col-lg-12"> <input type="hidden" name="save" value="contact"> <button type="submit" class="btn btn-default">Submit</button> </div> </div> </form> </div> </div> </div> </div> <!-- /.container --> <footer> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <p> <a href="https://www.linkedin.com/in/jessicafideliawijaya/"> <i class="fa fa-linkedin fa-fw fa-2x" aria-hidden="true"></i> </a>| <a href="https://https://www.facebook.com/jfwijaya"> <i class="fa fa-facebook fa-fw fa-2x" aria-hidden="true"></i> </a>| <a href="https://twitter.com/Miss_Sakuranbo"> <i class="fa fa-twitter fa-fw fa-2x" aria-hidden="true"></i> </a> </p> Copyright &copy; JFW 2016 </div> </div> </div> </footer> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> </body> </html>
jessica272/jessierealm.github.io
contact.html
HTML
mit
7,436
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Thu Dec 12 16:38:41 MSK 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> API Help (Java Card Runime Environment Simulator 2.2.1-SNAPSHOT API) </TITLE> <META NAME="date" CONTENT="2013-12-12"> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="API Help (Java Card Runime Environment Simulator 2.2.1-SNAPSHOT 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"> <FONT CLASS="NavBarFont1">Package</FONT>&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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.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> <H1> How This API Document Is Organized</H1> </CENTER> This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3> Overview</H3> <BLOCKQUOTE> <P> The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE> <H3> Package</H3> <BLOCKQUOTE> <P> Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL> <LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL> </BLOCKQUOTE> <H3> Class/Interface</H3> <BLOCKQUOTE> <P> Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL> <LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description <P> <LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary <P> <LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL> Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE> </BLOCKQUOTE> <H3> Annotation Type</H3> <BLOCKQUOTE> <P> Each annotation type has its own separate page with the following sections:<UL> <LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL> </BLOCKQUOTE> </BLOCKQUOTE> <H3> Enum</H3> <BLOCKQUOTE> <P> Each enum has its own separate page with the following sections:<UL> <LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL> </BLOCKQUOTE> <H3> Use</H3> <BLOCKQUOTE> Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE> <H3> Tree (Class Hierarchy)</H3> <BLOCKQUOTE> There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL> <LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL> </BLOCKQUOTE> <H3> Deprecated API</H3> <BLOCKQUOTE> The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE> <H3> Index</H3> <BLOCKQUOTE> The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE> <H3> Prev/Next</H3> These links take you to the next or previous class, interface, package, or related page.<H3> Frames/No Frames</H3> These links show and hide the HTML frames. All pages are available with or without frames. <P> <H3> Serialized Form</H3> Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. <P> <H3> Constant Field Values</H3> The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values. <P> <FONT SIZE="-1"> <EM> This help file applies to API documentation generated using the standard doclet.</EM> </FONT> <BR> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.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>
nversbra/SIC
Resources/misc/jcardsim/javadoc/help-doc.html
HTML
mit
9,896
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> <title>תהילים 78 (WLC)</title> <link href="../../../build/mobile.css" rel="stylesheet" /> <script src="../../../build/mobile.js"></script> </head> <body dir="rtl" class="section-document"> <div class="header"><div class="nav"> <a class="name" href="PS.html">Westminster Leningrad Codex</a><a class="location" href="PS.html">תהילים 78</a><a class="prev" href="PS77.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="PS79.html">&gt;</a> </div></div> <div class="section chapter PS PS78 heb_wlc heb " dir="rtl" lang="he" data-id="PS78" data-nextid="PS79" data-previd="PS77"> <div class="c">78</div> <div class="p"> <span class="v-num v-1">1</span><span class="v PS78_1" data-id="PS78_1"> <l s="H4905">מַשְׂכִּ֗יל</l> <l s="H623">לְאָ֫סָ֥ף</l> <l s="H238">הַאֲזִ֣ינָה</l> <l s="H5971">עַ֭מִּי</l> <l s="H8451">תּוֹרָתִ֑י</l> <l s="H5186">הַטּ֥וּ</l> <l s="H241">אָ֝זְנְכֶ֗ם</l> <l s="H561">לְאִמְרֵי</l>־<l s="H6310">פִֽי</l>׃ </span> <span class="v-num v-2">2</span><span class="v PS78_2" data-id="PS78_2"> <l s="H6605">אֶפְתְּחָ֣ה</l> <l s="H4912">בְמָשָׁ֣ל</l> <l s="H6310">פִּ֑י</l> <l s="H5042">אַבִּ֥יעָה</l> <l s="H2420">חִ֝יד֗וֹת</l> <l s="H4480">מִנִּי</l>־<l s="H6924">קֶֽדֶם</l>׃ </span> <span class="v-num v-3">3</span><span class="v PS78_3" data-id="PS78_3"> <l s="H834">אֲשֶׁ֣ר</l> <l s="H8085">שָׁ֭מַעְנוּ</l> <l s="H3045">וַנֵּדָעֵ֑ם</l> <l s="H1">וַ֝אֲבוֹתֵ֗ינוּ</l> <l s="H5608">סִפְּרוּ</l>־<l s="H">לָֽנוּ</l>׃ </span> <span class="v-num v-4">4</span><span class="v PS78_4" data-id="PS78_4"> <l s="H3808">לֹ֤א</l> <l s="H3582">נְכַחֵ֨ד</l> ׀ <l s="H1121">מִבְּנֵיהֶ֗ם</l> <l s="H1755">לְד֥וֹר</l> <l s="H314">אַחֲר֗וֹן</l> <l s="H5608">מְֽ֭סַפְּרִים</l> <l s="H8416">תְּהִלּ֣וֹת</l> <l s="H3068">יְהוָ֑ה</l> <l s="H5807">וֶעֱזוּז֥וֹ</l> <l s="H6381">וְ֝נִפְלְאוֹתָ֗יו</l> <l s="H834">אֲשֶׁ֣ר</l> <l s="H6213">עָשָֽׂה</l>׃ </span> <span class="v-num v-5">5</span><span class="v PS78_5" data-id="PS78_5"> <l s="H6965">וַיָּ֤קֶם</l> <l s="H5715">עֵד֨וּת</l> ׀ <l s="H3290">בְּֽיַעֲקֹ֗ב</l> <l s="H8451">וְתוֹרָה֮</l> <l s="H7760">שָׂ֤ם</l> <l s="H3478">בְּיִשְׂרָ֫אֵ֥ל</l> <l s="H834">אֲשֶׁ֣ר</l> <l s="H6680">צִ֭וָּה</l> <l s="H853">אֶת</l>־<l s="H1">אֲבוֹתֵ֑ינוּ</l> <l s="H3045">לְ֝הוֹדִיעָ֗ם</l> <l s="H1121">לִבְנֵיהֶֽם</l>׃ </span> <span class="v-num v-6">6</span><span class="v PS78_6" data-id="PS78_6"> <l s="H4616">לְמַ֤עַן</l> <l s="H3045">יֵדְע֨וּ</l> ׀ <l s="H1755">דּ֣וֹר</l> <l s="H314">אַ֭חֲרוֹן</l> <l s="H1121">בָּנִ֣ים</l> <l s="H3205">יִוָּלֵ֑דוּ</l> <l s="H6965">יָ֝קֻ֗מוּ</l> <l s="H5608">וִֽיסַפְּר֥וּ</l> <l s="H1121">לִבְנֵיהֶֽם</l>׃ </span> <span class="v-num v-7">7</span><span class="v PS78_7" data-id="PS78_7"> <l s="H7760">וְיָשִׂ֥ימוּ</l> <l s="H430">בֵֽאלֹהִ֗ים</l> <l s="H3689">כִּ֫סְלָ֥ם</l> <l s="H3808">וְלֹ֣א</l> <l s="H7911">יִ֭שְׁכְּחוּ</l> <l s="H4611">מַֽעַלְלֵי</l>־<l s="H410">אֵ֑ל</l> <l s="H4687">וּמִצְוֺתָ֥יו</l> <l s="H5341">יִנְצֹֽרוּ</l>׃ </span> <span class="v-num v-8">8</span><span class="v PS78_8" data-id="PS78_8"> <l s="H3808">וְלֹ֤א</l> <l s="H1961">יִהְי֨וּ</l> ׀ <l s="H1">כַּאֲבוֹתָ֗ם</l> <l s="H1755">דּוֹר֮</l> <l s="H5637">סוֹרֵ֪ר</l> <l s="H4784">וּמֹ֫רֶ֥ה</l> <l s="H1755">דּ֭וֹר</l> <l s="H3808">לֹא</l>־<l s="H3559">הֵכִ֣ין</l> <l s="H3820">לִבּ֑וֹ</l> <l s="H3808">וְלֹא</l>־<l s="H539">נֶאֶמְנָ֖ה</l> <l s="H854">אֶת</l>־<l s="H410">אֵ֣ל</l> <l s="H7307">רוּחֽוֹ</l>׃ </span> <span class="v-num v-9">9</span><span class="v PS78_9" data-id="PS78_9"> <l s="H1121">בְּֽנֵי</l>־<l s="H669">אֶפְרַ֗יִם</l> <l s="H5401">נוֹשְׁקֵ֥י</l> <l s="H7411">רוֹמֵי</l>־<l s="H7198">קָ֑שֶׁת</l> <l s="H2015">הָ֝פְכ֗וּ</l> <l s="H3117">בְּי֣וֹם</l> <l s="H7128">קְרָֽב</l>׃ </span> <span class="v-num v-10">10</span><span class="v PS78_10" data-id="PS78_10"> <l s="H3808">לֹ֣א</l> <l s="H8104">שָׁ֭מְרוּ</l> <l s="H1285">בְּרִ֣ית</l> <l s="H430">אֱלֹהִ֑ים</l> <l s="H8451">וּ֝בְתוֹרָת֗וֹ</l> <l s="H3985">מֵאֲנ֥וּ</l> <l s="H3212">לָלֶֽכֶת</l>׃ </span> <span class="v-num v-11">11</span><span class="v PS78_11" data-id="PS78_11"> <l s="H7911">וַיִּשְׁכְּח֥וּ</l> <l s="H5949">עֲלִילוֹתָ֑יו</l> <l s="H6381">וְ֝נִפְלְאוֹתָ֗יו</l> <l s="H834">אֲשֶׁ֣ר</l> <l s="H7200">הֶרְאָֽם</l>׃ </span> <span class="v-num v-12">12</span><span class="v PS78_12" data-id="PS78_12"> <l s="H5048">נֶ֣גֶד</l> <l s="H1">אֲ֭בוֹתָם</l> <l s="H6213">עָ֣שָׂה</l> <l s="H6382">פֶ֑לֶא</l> <l s="H776">בְּאֶ֖רֶץ</l> <l s="H4714">מִצְרַ֣יִם</l> <l s="H7704">שְׂדֵה</l>־<l s="H6814">צֹֽעַן</l>׃ </span> <span class="v-num v-13">13</span><span class="v PS78_13" data-id="PS78_13"> <l s="H1234">בָּ֣קַע</l> <l s="H3220">יָ֭ם</l> <l s="H5674">וַיַּֽעֲבִירֵ֑ם</l> <l s="H5324">וַֽיַּצֶּב</l>־<l s="H4325">מַ֥יִם</l> <l s="H3644">כְּמוֹ</l>־<l s="H5067">נֵֽד</l>׃ </span> <span class="v-num v-14">14</span><span class="v PS78_14" data-id="PS78_14"> <l s="H5148">וַיַּנְחֵ֣ם</l> <l s="H6051">בֶּעָנָ֣ן</l> <l s="H3119">יוֹמָ֑ם</l> <l s="H3605">וְכָל</l>־<l s="H3915">הַ֝לַּ֗יְלָה</l> <l s="H216">בְּא֣וֹר</l> <l s="H784">אֵֽשׁ</l>׃ </span> <span class="v-num v-15">15</span><span class="v PS78_15" data-id="PS78_15"> <l s="H1234">יְבַקַּ֣ע</l> <l s="H6697">צֻ֭רִים</l> <l s="H4057">בַּמִּדְבָּ֑ר</l> <l s="H8248">וַ֝יַּ֗שְׁקְ</l> <l s="H8415">כִּתְהֹמ֥וֹת</l> <l s="H7227">רַבָּֽה</l>׃ </span> <span class="v-num v-16">16</span><span class="v PS78_16" data-id="PS78_16"> <l s="H3318">וַיּוֹצִ֣א</l> <l s="H5140">נוֹזְלִ֣ים</l> <l s="H5553">מִסָּ֑לַע</l> <l s="H3381">וַיּ֖וֹרֶד</l> <l s="H5104">כַּנְּהָר֣וֹת</l> <l s="H4325">מָֽיִם</l>׃ </span> <span class="v-num v-17">17</span><span class="v PS78_17" data-id="PS78_17"> <l s="H3254">וַיּוֹסִ֣יפוּ</l> <l s="H5750">ע֭וֹד</l> <l s="H2398">לַחֲטֹא</l>־<l s="H">ל֑וֹ</l> <l s="H4784">לַֽמְר֥וֹת</l> <l s="H5945">עֶ֝לְי֗וֹן</l> <l s="H6723">בַּצִּיָּֽה</l>׃ </span> <span class="v-num v-18">18</span><span class="v PS78_18" data-id="PS78_18"> <l s="H5254">וַיְנַסּוּ</l>־<l s="H410">אֵ֥ל</l> <l s="H3824">בִּלְבָבָ֑ם</l> <l s="H7592">לִֽשְׁאָל</l>־<l s="H400">אֹ֥כֶל</l> <l s="H5315">לְנַפְשָֽׁם</l>׃ </span> <span class="v-num v-19">19</span><span class="v PS78_19" data-id="PS78_19"> <l s="H1696">וַֽיְדַבְּר֗וּ</l> <l s="H430">בֵּֽאלֹ֫הִ֥ים</l> <l s="H559">אָ֭מְרוּ</l> <l s="H3201">הֲי֣וּכַל</l> <l s="H410">אֵ֑ל</l> <l s="H6186">לַעֲרֹ֥ךְ</l> <l s="H7979">שֻׁ֝לְחָ֗ן</l> <l s="H4057">בַּמִּדְבָּֽר</l>׃ </span> <span class="v-num v-20">20</span><span class="v PS78_20" data-id="PS78_20"> <l s="H2005">הֵ֤ן</l> <l s="H5221">הִכָּה</l>־<l s="H6697">צ֨וּר</l> ׀ <l s="H2100">וַיָּז֣וּבוּ</l> <l s="H4325">מַיִם֮</l> <l s="H5158">וּנְחָלִ֪ים</l> <l s="H7857">יִ֫שְׁטֹ֥פוּ</l> <l s="H1571">הֲגַם</l>־<l s="H3899">לֶ֭חֶם</l> <l s="H3201">י֣וּכַל</l> <l s="H5414">תֵּ֑ת</l> <l s="H518">אִם</l>־<l s="H3559">יָכִ֖ין</l> <l s="H7607">שְׁאֵ֣ר</l> <l s="H5971">לְעַמּֽוֹ</l>׃ </span> <span class="v-num v-21">21</span><span class="v PS78_21" data-id="PS78_21"> <l s="H3651">לָכֵ֤ן</l> ׀ <l s="H8085">שָׁמַ֥ע</l> <l s="H3068">יְהוָ֗ה</l> <l s="H5674">וַֽיִּתְעַבָּ֥ר</l> <l s="H784">וְ֭אֵשׁ</l> <l s="H5400">נִשְּׂקָ֣ה</l> <l s="H3290">בְיַעֲקֹ֑ב</l> <l s="H1571">וְגַם</l>־<l s="H639">אַ֝֗ף</l> <l s="H5927">עָלָ֥ה</l> <l s="H3478">בְיִשְׂרָאֵֽל</l>׃ </span> <span class="v-num v-22">22</span><span class="v PS78_22" data-id="PS78_22"> <l s="H3588">כִּ֤י</l> <l s="H3808">לֹ֣א</l> <l s="H539">הֶ֭אֱמִינוּ</l> <l s="H430">בֵּאלֹהִ֑ים</l> <l s="H3808">וְלֹ֥א</l> <l s="H982">בָ֝טְח֗וּ</l> <l s="H3444">בִּֽישׁוּעָתֽוֹ</l>׃ </span> <span class="v-num v-23">23</span><span class="v PS78_23" data-id="PS78_23"> <l s="H6680">וַיְצַ֣ו</l> <l s="H7834">שְׁחָקִ֣ים</l> <l s="H4605">מִמָּ֑עַל</l> <l s="H1817">וְדַלְתֵ֖י</l> <l s="H8064">שָׁמַ֣יִם</l> <l s="H6605">פָּתָֽח</l>׃ </span> <span class="v-num v-24">24</span><span class="v PS78_24" data-id="PS78_24"> <l s="H4305">וַיַּמְטֵ֬ר</l> <l s="H5921">עֲלֵיהֶ֣ם</l> <l s="H4478">מָ֣ן</l> <l s="H398">לֶאֱכֹ֑ל</l> <l s="H1715">וּדְגַן</l>־<l s="H8064">שָׁ֝מַ֗יִם</l> <l s="H5414">נָ֣תַן</l> <l s="H">לָֽמוֹ</l>׃ </span> <span class="v-num v-25">25</span><span class="v PS78_25" data-id="PS78_25"> <l s="H3899">לֶ֣חֶם</l> <l s="H47">אַ֭בִּירִים</l> <l s="H398">אָ֣כַל</l> <l s="H376">אִ֑ישׁ</l> <l s="H6720">צֵידָ֬ה</l> <l s="H7971">שָׁלַ֖ח</l> <l s="H1992">לָהֶ֣ם</l> <l s="H7648">לָשֹֽׂבַע</l>׃ </span> <span class="v-num v-26">26</span><span class="v PS78_26" data-id="PS78_26"> <l s="H5265">יַסַּ֣ע</l> <l s="H6921">קָ֭דִים</l> <l s="H8064">בַּשָּׁמָ֑יִם</l> <l s="H5090">וַיְנַהֵ֖ג</l> <l s="H5797">בְּעֻזּ֣וֹ</l> <l s="H8486">תֵימָֽן</l>׃ </span> <span class="v-num v-27">27</span><span class="v PS78_27" data-id="PS78_27"> <l s="H4305">וַיַּמְטֵ֬ר</l> <l s="H5921">עֲלֵיהֶ֣ם</l> <l s="H6083">כֶּעָפָ֣ר</l> <l s="H7607">שְׁאֵ֑ר</l> <l s="H2344">וּֽכְח֥וֹל</l> <l s="H3220">יַ֝מִּ֗ים</l> <l s="H5775">ע֣וֹף</l> <l s="H3671">כָּנָֽף</l>׃ </span> <span class="v-num v-28">28</span><span class="v PS78_28" data-id="PS78_28"> <l s="H5307">וַ֭יַּפֵּל</l> <l s="H7130">בְּקֶ֣רֶב</l> <l s="H4264">מַחֲנֵ֑הוּ</l> <l s="H5439">סָ֝בִ֗יב</l> <l s="H4908">לְמִשְׁכְּנֹתָֽיו</l>׃ </span> <span class="v-num v-29">29</span><span class="v PS78_29" data-id="PS78_29"> <l s="H398">וַיֹּאכְל֣וּ</l> <l s="H7646">וַיִּשְׂבְּע֣וּ</l> <l s="H3966">מְאֹ֑ד</l> <l s="H8378">וְ֝תַֽאֲוָתָ֗ם</l> <l s="H935">יָבִ֥א</l> <l s="H1992">לָהֶֽם</l>׃ </span> <span class="v-num v-30">30</span><span class="v PS78_30" data-id="PS78_30"> <l s="H3808">לֹא</l>־<l s="H2114">זָר֥וּ</l> <l s="H8378">מִתַּאֲוָתָ֑ם</l> <l s="H5750">ע֝֗וֹד</l> <l s="H400">אָכְלָ֥ם</l> <l s="H6310">בְּפִיהֶֽם</l>׃ </span> <span class="v-num v-31">31</span><span class="v PS78_31" data-id="PS78_31"> <l s="H639">וְאַ֤ף</l> <l s="H430">אֱלֹהִ֨ים</l> ׀ <l s="H5927">עָ֘לָ֤ה</l> <l s="H">בָהֶ֗ם</l> <l s="H2026">וַֽ֭יַּהֲרֹג</l> <l s="H4924">בְּמִשְׁמַנֵּיהֶ֑ם</l> <l s="H970">וּבַחוּרֵ֖י</l> <l s="H3478">יִשְׂרָאֵ֣ל</l> <l s="H3766">הִכְרִֽיעַ</l>׃ </span> <span class="v-num v-32">32</span><span class="v PS78_32" data-id="PS78_32"> <l s="H3605">בְּכָל</l>־<l s="H2063">זֹ֭את</l> <l s="H2398">חָֽטְאוּ</l>־<l s="H5750">ע֑וֹד</l> <l s="H3808">וְלֹֽא</l>־<l s="H539">הֶ֝אֱמִ֗ינוּ</l> <l s="H6381">בְּנִפְלְאוֹתָֽיו</l>׃ </span> <span class="v-num v-33">33</span><span class="v PS78_33" data-id="PS78_33"> <l s="H3615">וַיְכַל</l>־<l s="H1892">בַּהֶ֥בֶל</l> <l s="H3117">יְמֵיהֶ֑ם</l> <l s="H8141">וּ֝שְׁנוֹתָ֗ם</l> <l s="H928">בַּבֶּהָלָֽה</l>׃ </span> <span class="v-num v-34">34</span><span class="v PS78_34" data-id="PS78_34"> <l s="H518">אִם</l>־<l s="H2026">הֲרָגָ֥ם</l> <l s="H1875">וּדְרָשׁ֑וּהוּ</l> <l s="H7725">וְ֝שָׁ֗בוּ</l> <l s="H7836">וְשִֽׁחֲרוּ</l>־<l s="H410">אֵֽל</l>׃ </span> <span class="v-num v-35">35</span><span class="v PS78_35" data-id="PS78_35"> <l s="H2142">וַֽ֭יִּזְכְּרוּ</l> <l s="H3588">כִּֽי</l>־<l s="H430">אֱלֹהִ֣ים</l> <l s="H6697">צוּרָ֑ם</l> <l s="H410">וְאֵ֥ל</l> <l s="H5945">עֶ֝לְיוֹן</l> <l s="H1350">גֹּאֲלָֽם</l>׃ </span> <span class="v-num v-36">36</span><span class="v PS78_36" data-id="PS78_36"> <l s="H6601">וַיְפַתּ֥וּהוּ</l> <l s="H6310">בְּפִיהֶ֑ם</l> <l s="H3956">וּ֝בִלְשׁוֹנָ֗ם</l> <l s="H3576">יְכַזְּבוּ</l>־<l s="H">לֽוֹ</l>׃ </span> <span class="v-num v-37">37</span><span class="v PS78_37" data-id="PS78_37"> <l s="H3820">וְ֭לִבָּם</l> <l s="H3808">לֹא</l>־<l s="H3559">נָכ֣וֹן</l> <l s="H5973">עִמּ֑וֹ</l> <l s="H3808">וְלֹ֥א</l> <l s="H539">נֶ֝אֶמְנ֗וּ</l> <l s="H1285">בִּבְרִיתֽוֹ</l>׃ </span> <span class="v-num v-38">38</span><span class="v PS78_38" data-id="PS78_38"> <l s="H1931">וְה֤וּא</l> <l s="H7349">רַח֨וּם</l> ׀ <l s="H3722">יְכַפֵּ֥ר</l> <l s="H5771">עָוֺן֮</l> <l s="H3808">וְֽלֹא</l>־<l s="H7843">יַ֫שְׁחִ֥ית</l> <l s="H7235">וְ֭הִרְבָּה</l> <l s="H7725">לְהָשִׁ֣יב</l> <l s="H639">אַפּ֑וֹ</l> <l s="H3808">וְלֹֽא</l>־<l s="H5782">יָ֝עִיר</l> <l s="H3605">כָּל</l>־<l s="H2534">חֲמָתֽוֹ</l>׃ </span> <span class="v-num v-39">39</span><span class="v PS78_39" data-id="PS78_39"> <l s="H2142">וַ֭יִּזְכֹּר</l> <l s="H3588">כִּי</l>־<l s="H1320">בָשָׂ֣ר</l> <l s="H1992">הֵ֑מָּה</l> <l s="H7307">ר֥וּחַ</l> <l s="H1980">ה֝וֹלֵ֗ךְ</l> <l s="H3808">וְלֹ֣א</l> <l s="H7725">יָשֽׁוּב</l>׃ </span> <span class="v-num v-40">40</span><span class="v PS78_40" data-id="PS78_40"> <l s="H4100">כַּ֭מָּה</l> <l s="H4784">יַמְר֣וּהוּ</l> <l s="H4057">בַמִּדְבָּ֑ר</l> <l s="H6087">יַ֝עֲצִיב֗וּהוּ</l> <l s="H3452">בִּֽישִׁימֽוֹן</l>׃ </span> <span class="v-num v-41">41</span><span class="v PS78_41" data-id="PS78_41"> <l s="H7725">וַיָּשׁ֣וּבוּ</l> <l s="H5254">וַיְנַסּ֣וּ</l> <l s="H410">אֵ֑ל</l> <l s="H6918">וּקְד֖וֹשׁ</l> <l s="H3478">יִשְׂרָאֵ֣ל</l> <l s="H8428">הִתְווּ</l>׃ </span> <span class="v-num v-42">42</span><span class="v PS78_42" data-id="PS78_42"> <l s="H3808">לֹא</l>־<l s="H2142">זָכְר֥וּ</l> <l s="H853">אֶת</l>־<l s="H3027">יָד֑וֹ</l> <l s="H3117">י֝֗וֹם</l> <l s="H834">אֲֽשֶׁר</l>־<l s="H6299">פָּדָ֥ם</l> <l s="H4480">מִנִּי</l>־<l s="H6862">צָֽר</l>׃ </span> <span class="v-num v-43">43</span><span class="v PS78_43" data-id="PS78_43"> <l s="H834">אֲשֶׁר</l>־<l s="H7760">שָׂ֣ם</l> <l s="H4714">בְּ֭מִצְרַיִם</l> <l s="H226">אֹֽתוֹתָ֑יו</l> <l s="H4159">וּ֝מוֹפְתָ֗יו</l> <l s="H7704">בִּשְׂדֵה</l>־<l s="H6814">צֹֽעַן</l>׃ </span> <span class="v-num v-44">44</span><span class="v PS78_44" data-id="PS78_44"> <l s="H2015">וַיַּהֲפֹ֣ךְ</l> <l s="H1818">לְ֭דָם</l> <l s="H2975">יְאֹרֵיהֶ֑ם</l> <l s="H5140">וְ֝נֹזְלֵיהֶ֗ם</l> <l s="H1077">בַּל</l>־<l s="H8354">יִשְׁתָּיֽוּן</l>׃ </span> <span class="v-num v-45">45</span><span class="v PS78_45" data-id="PS78_45"> <l s="H7971">יְשַׁלַּ֬ח</l> <l s="H">בָּהֶ֣ם</l> <l s="H6157">עָ֭רֹב</l> <l s="H398">וַיֹּאכְלֵ֑ם</l> <l s="H6854">וּ֝צְפַרְדֵּ֗עַ</l> <l s="H7843">וַתַּשְׁחִיתֵֽם</l>׃ </span> <span class="v-num v-46">46</span><span class="v PS78_46" data-id="PS78_46"> <l s="H5414">וַיִּתֵּ֣ן</l> <l s="H2625">לֶחָסִ֣יל</l> <l s="H2981">יְבוּלָ֑ם</l> <l s="H3018">וִֽ֝יגִיעָ֗ם</l> <l s="H697">לָאַרְבֶּֽה</l>׃ </span> <span class="v-num v-47">47</span><span class="v PS78_47" data-id="PS78_47"> <l s="H2026">יַהֲרֹ֣ג</l> <l s="H1259">בַּבָּרָ֣ד</l> <l s="H1612">גַּפְנָ֑ם</l> <l s="H8256">וְ֝שִׁקְמוֹתָ֗ם</l> <l s="H2602">בַּֽחֲנָמַֽל</l>׃ </span> <span class="v-num v-48">48</span><span class="v PS78_48" data-id="PS78_48"> <l s="H5462">וַיַּסְגֵּ֣ר</l> <l s="H1259">לַבָּרָ֣ד</l> <l s="H1165">בְּעִירָ֑ם</l> <l s="H4735">וּ֝מִקְנֵיהֶ֗ם</l> <l s="H7565">לָרְשָׁפִֽים</l>׃ </span> <span class="v-num v-49">49</span><span class="v PS78_49" data-id="PS78_49"> <l s="H7971">יְשַׁלַּח</l>־<l s="H">בָּ֨ם</l> ׀ <l s="H2740">חֲר֬וֹן</l> <l s="H639">אַפּ֗וֹ</l> <l s="H5678">עֶבְרָ֣ה</l> <l s="H2195">וָזַ֣עַם</l> <l s="H6869">וְצָרָ֑ה</l> <l s="H4917">מִ֝שְׁלַ֗חַת</l> <l s="H4397">מַלְאֲכֵ֥י</l> <l s="H7451">רָעִֽים</l>׃ </span> <span class="v-num v-50">50</span><span class="v PS78_50" data-id="PS78_50"> <l s="H6424">יְפַלֵּ֥ס</l> <l s="H5410">נָתִ֗יב</l> <l s="H639">לְאַ֫פּ֥וֹ</l> <l s="H3808">לֹא</l>־<l s="H2820">חָשַׂ֣ךְ</l> <l s="H4194">מִמָּ֣וֶת</l> <l s="H5315">נַפְשָׁ֑ם</l> <l s="H2416">וְ֝חַיָּתָ֗ם</l> <l s="H1698">לַדֶּ֥בֶר</l> <l s="H5462">הִסְגִּֽיר</l>׃ </span> <span class="v-num v-51">51</span><span class="v PS78_51" data-id="PS78_51"> <l s="H5221">וַיַּ֣ךְ</l> <l s="H3605">כָּל</l>־<l s="H1060">בְּכ֣וֹר</l> <l s="H4714">בְּמִצְרָ֑יִם</l> <l s="H7225">רֵאשִׁ֥ית</l> <l s="H202">א֝וֹנִ֗ים</l> <l s="H168">בְּאָהֳלֵי</l>־<l s="H2526">חָֽם</l>׃ </span> <span class="v-num v-52">52</span><span class="v PS78_52" data-id="PS78_52"> <l s="H5265">וַיַּסַּ֣ע</l> <l s="H6629">כַּצֹּ֣אן</l> <l s="H5971">עַמּ֑וֹ</l> <l s="H5090">וַֽיְנַהֲגֵ֥ם</l> <l s="H5739">כַּ֝עֵ֗דֶר</l> <l s="H4057">בַּמִּדְבָּֽר</l>׃ </span> <span class="v-num v-53">53</span><span class="v PS78_53" data-id="PS78_53"> <l s="H5148">וַיַּנְחֵ֣ם</l> <l s="H983">לָ֭בֶטַח</l> <l s="H3808">וְלֹ֣א</l> <l s="H6342">פָחָ֑דוּ</l> <l s="H853">וְאֶת</l>־<l s="H341">א֝וֹיְבֵיהֶ֗ם</l> <l s="H3680">כִּסָּ֥ה</l> <l s="H3220">הַיָּֽם</l>׃ </span> <span class="v-num v-54">54</span><span class="v PS78_54" data-id="PS78_54"> <l s="H935">וַ֭יְבִיאֵם</l> <l s="H413">אֶל</l>־<l s="H1366">גְּב֣וּל</l> <l s="H6944">קָדְשׁ֑וֹ</l> <l s="H2022">הַר</l>־<l s="H2088">זֶ֝֗ה</l> <l s="H7069">קָנְתָ֥ה</l> <l s="H3225">יְמִינֽוֹ</l>׃ </span> <span class="v-num v-55">55</span><span class="v PS78_55" data-id="PS78_55"> <l s="H1644">וַיְגָ֤רֶשׁ</l> <l s="H6440">מִפְּנֵיהֶ֨ם</l> ׀ <l s="H1471">גּוֹיִ֗ם</l> <l s="H5307">וַֽ֭יַּפִּילֵם</l> <l s="H2256">בְּחֶ֣בֶל</l> <l s="H5159">נַחֲלָ֑ה</l> <l s="H7931">וַיַּשְׁכֵּ֥ן</l> <l s="H168">בְּ֝אָהֳלֵיהֶ֗ם</l> <l s="H7626">שִׁבְטֵ֥י</l> <l s="H3478">יִשְׂרָאֵֽל</l>׃ </span> <span class="v-num v-56">56</span><span class="v PS78_56" data-id="PS78_56"> <l s="H5254">וַיְנַסּ֣וּ</l> <l s="H4784">וַ֭יַּמְרוּ</l> <l s="H853">אֶת</l>־<l s="H430">אֱלֹהִ֣ים</l> <l s="H5945">עֶלְי֑וֹן</l> <l s="H5713">וְ֝עֵדוֹתָ֗יו</l> <l s="H3808">לֹ֣א</l> <l s="H8104">שָׁמָֽרוּ</l>׃ </span> <span class="v-num v-57">57</span><span class="v PS78_57" data-id="PS78_57"> <l s="H5472">וַיִּסֹּ֣גוּ</l> <l s="H898">וַֽ֭יִּבְגְּדוּ</l> <l s="H1">כַּאֲבוֹתָ֑ם</l> <l s="H2015">נֶ֝הְפְּכ֗וּ</l> <l s="H7198">כְּקֶ֣שֶׁת</l> <l s="H7423">רְמִיָּֽה</l>׃ </span> <span class="v-num v-58">58</span><span class="v PS78_58" data-id="PS78_58"> <l s="H3707">וַיַּכְעִיס֥וּהוּ</l> <l s="H1116">בְּבָמוֹתָ֑ם</l> <l s="H6456">וּ֝בִפְסִילֵיהֶ֗ם</l> <l s="H7065">יַקְנִיאֽוּהוּ</l>׃ </span> <span class="v-num v-59">59</span><span class="v PS78_59" data-id="PS78_59"> <l s="H8085">שָׁמַ֣ע</l> <l s="H430">אֱ֭לֹהִים</l> <l s="H5674">וַֽיִּתְעַבָּ֑ר</l> <l s="H3988">וַיִּמְאַ֥ס</l> <l s="H3966">מְ֝אֹ֗ד</l> <l s="H3478">בְּיִשְׂרָאֵֽל</l>׃ </span> <span class="v-num v-60">60</span><span class="v PS78_60" data-id="PS78_60"> <l s="H5203">וַ֭יִּטֹּשׁ</l> <l s="H4908">מִשְׁכַּ֣ן</l> <l s="H7887">שִׁל֑וֹ</l> <l s="H168">אֹ֝֗הֶל</l> <l s="H7931">שִׁכֵּ֥ן</l> <l s="H120">בָּאָדָֽם</l>׃ </span> <span class="v-num v-61">61</span><span class="v PS78_61" data-id="PS78_61"> <l s="H5414">וַיִּתֵּ֣ן</l> <l s="H7628">לַשְּׁבִ֣י</l> <l s="H5797">עֻזּ֑וֹ</l> <l s="H8597">וְֽתִפְאַרְתּ֥וֹ</l> <l s="H3027">בְיַד</l>־<l s="H6862">צָֽר</l>׃ </span> <span class="v-num v-62">62</span><span class="v PS78_62" data-id="PS78_62"> <l s="H5462">וַיַּסְגֵּ֣ר</l> <l s="H2719">לַחֶ֣רֶב</l> <l s="H5971">עַמּ֑וֹ</l> <l s="H5159">וּ֝בְנַחֲלָת֗וֹ</l> <l s="H5674">הִתְעַבָּֽר</l>׃ </span> <span class="v-num v-63">63</span><span class="v PS78_63" data-id="PS78_63"> <l s="H970">בַּחוּרָ֥יו</l> <l s="H398">אָֽכְלָה</l>־<l s="H784">אֵ֑שׁ</l> <l s="H1330">וּ֝בְתוּלֹתָ֗יו</l> <l s="H3808">לֹ֣א</l> <l s="H1984">הוּלָּֽלוּ</l>׃ </span> <span class="v-num v-64">64</span><span class="v PS78_64" data-id="PS78_64"> <l s="H3548">כֹּ֭הֲנָיו</l> <l s="H2719">בַּחֶ֣רֶב</l> <l s="H5307">נָפָ֑לוּ</l> <l s="H490">וְ֝אַלְמְנֹתָ֗יו</l> <l s="H3808">לֹ֣א</l> <l s="H1058">תִבְכֶּֽינָה</l>׃ </span> <span class="v-num v-65">65</span><span class="v PS78_65" data-id="PS78_65"> <l s="H3364">וַיִּקַ֖ץ</l> <l s="H3463">כְּיָשֵׁ֥ן</l> ׀ <l s="H136">אֲדֹנָ֑י</l> <l s="H1368">כְּ֝גִבּ֗וֹר</l> <l s="H7442">מִתְרוֹנֵ֥ן</l> <l s="H3196">מִיָּֽיִן</l>׃ </span> <span class="v-num v-66">66</span><span class="v PS78_66" data-id="PS78_66"> <l s="H5221">וַיַּךְ</l>־<l s="H6862">צָרָ֥יו</l> <l s="H268">אָח֑וֹר</l> <l s="H2781">חֶרְפַּ֥ת</l> <l s="H5769">ע֝וֹלָ֗ם</l> <l s="H5414">נָ֣תַן</l> <l s="H">לָֽמוֹ</l>׃ </span> <span class="v-num v-67">67</span><span class="v PS78_67" data-id="PS78_67"> <l s="H3988">וַ֭יִּמְאַס</l> <l s="H168">בְּאֹ֣הֶל</l> <l s="H3130">יוֹסֵ֑ף</l> <l s="H7626">וּֽבְשֵׁ֥בֶט</l> <l s="H669">אֶ֝פְרַ֗יִם</l> <l s="H3808">לֹ֣א</l> <l s="H977">בָחָֽר</l>׃ </span> <span class="v-num v-68">68</span><span class="v PS78_68" data-id="PS78_68"> <l s="H977">וַ֭יִּבְחַר</l> <l s="H853">אֶת</l>־<l s="H7626">שֵׁ֣בֶט</l> <l s="H3063">יְהוּדָ֑ה</l> <l s="H853">אֶֽת</l>־<l s="H2022">הַ֥ר</l> <l s="H6726">צִ֝יּ֗וֹן</l> <l s="H834">אֲשֶׁ֣ר</l> <l s="H157">אָהֵֽב</l>׃ </span> <span class="v-num v-69">69</span><span class="v PS78_69" data-id="PS78_69"> <l s="H1129">וַיִּ֣בֶן</l> <l s="H3644">כְּמוֹ</l>־<l s="H7311">רָ֭מִים</l> <l s="H4720">מִקְדָּשׁ֑וֹ</l> <l s="H776">כְּ֝אֶ֗רֶץ</l> <l s="H3245">יְסָדָ֥הּ</l> <l s="H5769">לְעוֹלָֽם</l>׃ </span> <span class="v-num v-70">70</span><span class="v PS78_70" data-id="PS78_70"> <l s="H977">וַ֭יִּבְחַר</l> <l s="H1732">בְּדָוִ֣ד</l> <l s="H5650">עַבְדּ֑וֹ</l> <l s="H3947">וַ֝יִּקָּחֵ֗הוּ</l> <l s="H4356">מִֽמִּכְלְאֹ֥ת</l> <l s="H6629">צֹֽאן</l>׃ </span> <span class="v-num v-71">71</span><span class="v PS78_71" data-id="PS78_71"> <l s="H310">מֵאַחַ֥ר</l> <l s="H5763">עָל֗וֹת</l> <l s="H935">הֱ֫בִיא֥וֹ</l> <l s="H7462">לִ֭רְעוֹת</l> <l s="H3290">בְּיַעֲקֹ֣ב</l> <l s="H5971">עַמּ֑וֹ</l> <l s="H3478">וּ֝בְיִשְׂרָאֵ֗ל</l> <l s="H5159">נַחֲלָתֽוֹ</l>׃ </span> <span class="v-num v-72">72</span><span class="v PS78_72" data-id="PS78_72"> <l s="H7462">וַ֭יִּרְעֵם</l> <l s="H8537">כְּתֹ֣ם</l> <l s="H3824">לְבָב֑וֹ</l> <l s="H8394">וּבִתְבוּנ֖וֹת</l> <l s="H3709">כַּפָּ֣יו</l> <l s="H5148">יַנְחֵֽם</l>׃ </span> </div> </div> <div class="footer"><div class="nav"> <a class="prev" href="PS77.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="PS79.html">&gt;</a> </div></div> </body> </html>
khangpng/VietnameseBible
app/content/texts/heb_wlc/PS78.html
HTML
mit
31,545
<!DOCTYPE html> <html> <head> <title>Doge Social Network - Info</title> </head> <body style="background: skyblue"> <h1>Doge Social Network</h1> <ul type="disk"> <li><a href="Problem03.Home.html">Home</a></li> <li><a href="Problem03.Profile.html">Profile</a></li> <li><a href="Problem03.Friend.html">Friends</a></li> </ul> <hr /> <h2>Welcome to the Doge Social Network</h2> <hr /> <p>Here you can find friends or stalk strangers.</p> <p>The Doge Social Network does not take any responsibility for the information found</p> </body> </html>
enchev-93/Telerik-Academy
04.HTML/HTML fundamentals/Problem03.Home.html
HTML
mit
553
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>V8 API Reference Guide for node.js v9.4.0: v8::Persistent&lt; T, M &gt; Class Template Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v9.4.0 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#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> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="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><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Persistent.html">Persistent</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-static-methods">Static Public Member Functions</a> &#124; <a href="#friends">Friends</a> &#124; <a href="classv8_1_1Persistent-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::Persistent&lt; T, M &gt; Class Template Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="v8_8h_source.html">v8.h</a>&gt;</code></p> <div class="dynheader"> Inheritance diagram for v8::Persistent&lt; T, M &gt;:</div> <div class="dyncontent"> <div class="center"><img src="classv8_1_1Persistent__inherit__graph.png" border="0" usemap="#v8_1_1Persistent_3_01T_00_01M_01_4_inherit__map" alt="Inheritance graph"/></div> <map name="v8_1_1Persistent_3_01T_00_01M_01_4_inherit__map" id="v8_1_1Persistent_3_01T_00_01M_01_4_inherit__map"> </map> <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div> <div class="dynheader"> Collaboration diagram for v8::Persistent&lt; T, M &gt;:</div> <div class="dyncontent"> <div class="center"><img src="classv8_1_1Persistent__coll__graph.png" border="0" usemap="#v8_1_1Persistent_3_01T_00_01M_01_4_coll__map" alt="Collaboration graph"/></div> <map name="v8_1_1Persistent_3_01T_00_01M_01_4_coll__map" id="v8_1_1Persistent_3_01T_00_01M_01_4_coll__map"> </map> <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a5ce14612215393683d814056015a102d"><td class="memItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Persistent.html#a5ce14612215393683d814056015a102d">Persistent</a> ()</td></tr> <tr class="separator:a5ce14612215393683d814056015a102d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aabe9a42d7971bd31173bca34186d9ac2"><td class="memTemplParams" colspan="2">template&lt;class S &gt; </td></tr> <tr class="memitem:aabe9a42d7971bd31173bca34186d9ac2"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classv8_1_1Persistent.html#aabe9a42d7971bd31173bca34186d9ac2">Persistent</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt; that)</td></tr> <tr class="separator:aabe9a42d7971bd31173bca34186d9ac2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaf9eb7c4e6d0ef2c81a2c08238653578"><td class="memTemplParams" colspan="2">template&lt;class S , class M2 &gt; </td></tr> <tr class="memitem:aaf9eb7c4e6d0ef2c81a2c08238653578"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classv8_1_1Persistent.html#aaf9eb7c4e6d0ef2c81a2c08238653578">Persistent</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S, M2 &gt; &amp;that)</td></tr> <tr class="separator:aaf9eb7c4e6d0ef2c81a2c08238653578"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a22331e91572784cd5ed5519739bb50c7"><td class="memItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Persistent.html#a22331e91572784cd5ed5519739bb50c7">Persistent</a> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a> &amp;that)</td></tr> <tr class="separator:a22331e91572784cd5ed5519739bb50c7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ace17fd143fb6414d305871bf0a53ef57"><td class="memTemplParams" colspan="2"><a class="anchor" id="ace17fd143fb6414d305871bf0a53ef57"></a> template&lt;class S , class M2 &gt; </td></tr> <tr class="memitem:ace17fd143fb6414d305871bf0a53ef57"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Persistent</b> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S, M2 &gt; &amp;that)</td></tr> <tr class="separator:ace17fd143fb6414d305871bf0a53ef57"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa1db9923b3212fb8ce57868217858b39"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa1db9923b3212fb8ce57868217858b39"></a> V8_INLINE <a class="el" href="classv8_1_1Persistent.html">Persistent</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a> &amp;that)</td></tr> <tr class="separator:aa1db9923b3212fb8ce57868217858b39"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a11104ee8739cb1f25e40fd17d746b48f"><td class="memTemplParams" colspan="2"><a class="anchor" id="a11104ee8739cb1f25e40fd17d746b48f"></a> template&lt;class S , class M2 &gt; </td></tr> <tr class="memitem:a11104ee8739cb1f25e40fd17d746b48f"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">Persistent</a> &amp;&#160;</td><td class="memTemplItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S, M2 &gt; &amp;that)</td></tr> <tr class="separator:a11104ee8739cb1f25e40fd17d746b48f"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7d4d2bebfe3919e447e22adc15464e25"><td class="memItemLeft" align="right" valign="top">V8_INLINE&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Persistent.html#a7d4d2bebfe3919e447e22adc15464e25">~Persistent</a> ()</td></tr> <tr class="separator:a7d4d2bebfe3919e447e22adc15464e25"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af58af1ffdfc2114238c49c5ba02bb042"><td class="memTemplParams" colspan="2"><a class="anchor" id="af58af1ffdfc2114238c49c5ba02bb042"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:af58af1ffdfc2114238c49c5ba02bb042"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S &gt; &amp;&#160;</td><td class="memTemplItemRight" valign="bottom"><b>As</b> () const </td></tr> <tr class="separator:af58af1ffdfc2114238c49c5ba02bb042"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ace50a178e3b772f75611e22e41fae974"><td class="memTemplParams" colspan="2"><a class="anchor" id="ace50a178e3b772f75611e22e41fae974"></a> template&lt;class S , class M2 &gt; </td></tr> <tr class="memitem:ace50a178e3b772f75611e22e41fae974"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Copy</b> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S, M2 &gt; &amp;that)</td></tr> <tr class="separator:ace50a178e3b772f75611e22e41fae974"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classv8_1_1PersistentBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1PersistentBase')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1PersistentBase.html">v8::PersistentBase&lt; T &gt;</a></td></tr> <tr class="memitem:a174bb1e45b18fd4eeaee033622825bb8 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a174bb1e45b18fd4eeaee033622825bb8">Reset</a> ()</td></tr> <tr class="separator:a174bb1e45b18fd4eeaee033622825bb8 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a11164f0dfc9a16d79809236e7a9670aa inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2">template&lt;class S &gt; </td></tr> <tr class="memitem:a11164f0dfc9a16d79809236e7a9670aa inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a11164f0dfc9a16d79809236e7a9670aa">Reset</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, const <a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt; &amp;other)</td></tr> <tr class="separator:a11164f0dfc9a16d79809236e7a9670aa inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af6b8f929b0cbaa83341df48ca3b03ef5 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2">template&lt;class S &gt; </td></tr> <tr class="memitem:af6b8f929b0cbaa83341df48ca3b03ef5 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#af6b8f929b0cbaa83341df48ca3b03ef5">Reset</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; S &gt; &amp;other)</td></tr> <tr class="separator:af6b8f929b0cbaa83341df48ca3b03ef5 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa846b995b881b4863a21cf78ad7a8dea inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa846b995b881b4863a21cf78ad7a8dea"></a> V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><b>IsEmpty</b> () const </td></tr> <tr class="separator:aa846b995b881b4863a21cf78ad7a8dea inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abb8a06471ea86de1731a3c94a879b00e inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb8a06471ea86de1731a3c94a879b00e"></a> V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><b>Empty</b> ()</td></tr> <tr class="separator:abb8a06471ea86de1731a3c94a879b00e inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a46fddc38d4b77b73a5a1967542d3d557 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a46fddc38d4b77b73a5a1967542d3d557"></a> V8_INLINE <a class="el" href="classv8_1_1Local.html">Local</a>&lt; T &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Get</b> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const </td></tr> <tr class="separator:a46fddc38d4b77b73a5a1967542d3d557 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6374a132dba19abcdece47cb2080aca7 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a6374a132dba19abcdece47cb2080aca7"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:a6374a132dba19abcdece47cb2080aca7 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memTemplItemRight" valign="bottom"><b>operator==</b> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; S &gt; &amp;that) const </td></tr> <tr class="separator:a6374a132dba19abcdece47cb2080aca7 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5609a18c202901b6ab1b510fb3b0d1dc inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a5609a18c202901b6ab1b510fb3b0d1dc"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:a5609a18c202901b6ab1b510fb3b0d1dc inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memTemplItemRight" valign="bottom"><b>operator==</b> (const <a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt; &amp;that) const </td></tr> <tr class="separator:a5609a18c202901b6ab1b510fb3b0d1dc inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5bfacec9ab828f9aa7abdb980481589a inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a5bfacec9ab828f9aa7abdb980481589a"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:a5bfacec9ab828f9aa7abdb980481589a inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memTemplItemRight" valign="bottom"><b>operator!=</b> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; S &gt; &amp;that) const </td></tr> <tr class="separator:a5bfacec9ab828f9aa7abdb980481589a inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a467b78e40a53fb8324369d8a7a147800 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a467b78e40a53fb8324369d8a7a147800"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:a467b78e40a53fb8324369d8a7a147800 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memTemplItemRight" valign="bottom"><b>operator!=</b> (const <a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt; &amp;that) const </td></tr> <tr class="separator:a467b78e40a53fb8324369d8a7a147800 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aebb8a2c97e219102f613ff3749c956f6 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2">template&lt;typename P &gt; </td></tr> <tr class="memitem:aebb8a2c97e219102f613ff3749c956f6 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#aebb8a2c97e219102f613ff3749c956f6">SetWeak</a> (P *parameter, typename <a class="el" href="classv8_1_1WeakCallbackInfo.html">WeakCallbackInfo</a>&lt; P &gt;::Callback callback, WeakCallbackType type)</td></tr> <tr class="separator:aebb8a2c97e219102f613ff3749c956f6 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a09fd1d1c3cd3ff32b91937f4d8beb1ea inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a09fd1d1c3cd3ff32b91937f4d8beb1ea">SetWeak</a> ()</td></tr> <tr class="separator:a09fd1d1c3cd3ff32b91937f4d8beb1ea inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a444d27c00650e3663348024df08cb121 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a444d27c00650e3663348024df08cb121"></a> template&lt;typename P &gt; </td></tr> <tr class="memitem:a444d27c00650e3663348024df08cb121 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">V8_INLINE P *&#160;</td><td class="memTemplItemRight" valign="bottom"><b>ClearWeak</b> ()</td></tr> <tr class="separator:a444d27c00650e3663348024df08cb121 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afe515daead108cceb1699b54051df13b inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afe515daead108cceb1699b54051df13b"></a> V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><b>ClearWeak</b> ()</td></tr> <tr class="separator:afe515daead108cceb1699b54051df13b inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a14c051e0080bbe7fbe02be35865b9923 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a14c051e0080bbe7fbe02be35865b9923">RegisterExternalReference</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const </td></tr> <tr class="separator:a14c051e0080bbe7fbe02be35865b9923 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aed12b0a54bc5ade1fb44e3bdb3a1fe74 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#aed12b0a54bc5ade1fb44e3bdb3a1fe74">MarkIndependent</a> ()</td></tr> <tr class="separator:aed12b0a54bc5ade1fb44e3bdb3a1fe74 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7244edd33a45b7d95e566fce85e3f87d inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a7244edd33a45b7d95e566fce85e3f87d">MarkActive</a> ()</td></tr> <tr class="separator:a7244edd33a45b7d95e566fce85e3f87d inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2ed93b6be1b27c299906935ef35d2114 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2ed93b6be1b27c299906935ef35d2114"></a> V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><b>IsIndependent</b> () const </td></tr> <tr class="separator:a2ed93b6be1b27c299906935ef35d2114 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4a64c26d91ed6a276aa8a7ca4bb7683a inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a4a64c26d91ed6a276aa8a7ca4bb7683a">IsNearDeath</a> () const </td></tr> <tr class="separator:a4a64c26d91ed6a276aa8a7ca4bb7683a inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a714b7794149df483837a2c6b09d52396 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a714b7794149df483837a2c6b09d52396">IsWeak</a> () const </td></tr> <tr class="separator:a714b7794149df483837a2c6b09d52396 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac4c979164b3ed4dc92319e6f5a108d3d inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#ac4c979164b3ed4dc92319e6f5a108d3d">SetWrapperClassId</a> (uint16_t class_id)</td></tr> <tr class="separator:ac4c979164b3ed4dc92319e6f5a108d3d inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a01a46bf4e69ed9a837639702ee234643 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top">V8_INLINE uint16_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentBase.html#a01a46bf4e69ed9a837639702ee234643">WrapperClassId</a> () const </td></tr> <tr class="separator:a01a46bf4e69ed9a837639702ee234643 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa403ece93fda904f5d6ab39e9383a504 inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa403ece93fda904f5d6ab39e9383a504"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>PersistentBase</b> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a> &amp;other)=delete</td></tr> <tr class="separator:aa403ece93fda904f5d6ab39e9383a504 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ada3d83b8cadaf4b83027baa41cd99d8c inherit pub_methods_classv8_1_1PersistentBase"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ada3d83b8cadaf4b83027baa41cd99d8c"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a> &amp;)=delete</td></tr> <tr class="separator:ada3d83b8cadaf4b83027baa41cd99d8c inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab4b4d3fba3498486f1f10dc7d5be90fc inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="ab4b4d3fba3498486f1f10dc7d5be90fc"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:ab4b4d3fba3498486f1f10dc7d5be90fc inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Reset</b> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, const <a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt; &amp;other)</td></tr> <tr class="separator:ab4b4d3fba3498486f1f10dc7d5be90fc inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a67cbcedf77d176d3870fa4993e300b61 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplParams" colspan="2"><a class="anchor" id="a67cbcedf77d176d3870fa4993e300b61"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:a67cbcedf77d176d3870fa4993e300b61 inherit pub_methods_classv8_1_1PersistentBase"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Reset</b> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate, const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; S &gt; &amp;other)</td></tr> <tr class="separator:a67cbcedf77d176d3870fa4993e300b61 inherit pub_methods_classv8_1_1PersistentBase"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> Static Public Member Functions</h2></td></tr> <tr class="memitem:aefcf5962630a14c198f466f64a685946"><td class="memTemplParams" colspan="2"><a class="anchor" id="aefcf5962630a14c198f466f64a685946"></a> template&lt;class S &gt; </td></tr> <tr class="memitem:aefcf5962630a14c198f466f64a685946"><td class="memTemplItemLeft" align="right" valign="top">static V8_INLINE <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; T &gt; &amp;&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Cast</b> (const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S &gt; &amp;that)</td></tr> <tr class="separator:aefcf5962630a14c198f466f64a685946"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="friends"></a> Friends</h2></td></tr> <tr class="memitem:aba4f0964bdacf2bbf62cf876e5d28d0a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aba4f0964bdacf2bbf62cf876e5d28d0a"></a> class&#160;</td><td class="memItemRight" valign="bottom"><b>Isolate</b></td></tr> <tr class="separator:aba4f0964bdacf2bbf62cf876e5d28d0a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abc0f7da619e9e72510dc07ed7b5ff6d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abc0f7da619e9e72510dc07ed7b5ff6d8"></a> class&#160;</td><td class="memItemRight" valign="bottom"><b>Utils</b></td></tr> <tr class="separator:abc0f7da619e9e72510dc07ed7b5ff6d8"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afb872edb4aac7ba55f0da004113aa2b0"><td class="memTemplParams" colspan="2"><a class="anchor" id="afb872edb4aac7ba55f0da004113aa2b0"></a> template&lt;class F &gt; </td></tr> <tr class="memitem:afb872edb4aac7ba55f0da004113aa2b0"><td class="memTemplItemLeft" align="right" valign="top">class&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Local</b></td></tr> <tr class="separator:afb872edb4aac7ba55f0da004113aa2b0"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad845ec8872174be0a9ca9a3dd1898d30"><td class="memTemplParams" colspan="2"><a class="anchor" id="ad845ec8872174be0a9ca9a3dd1898d30"></a> template&lt;class F1 , class F2 &gt; </td></tr> <tr class="memitem:ad845ec8872174be0a9ca9a3dd1898d30"><td class="memTemplItemLeft" align="right" valign="top">class&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Persistent</b></td></tr> <tr class="separator:ad845ec8872174be0a9ca9a3dd1898d30"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a53f604d3d6f2dc0647df33c9979f116a"><td class="memTemplParams" colspan="2"><a class="anchor" id="a53f604d3d6f2dc0647df33c9979f116a"></a> template&lt;class F &gt; </td></tr> <tr class="memitem:a53f604d3d6f2dc0647df33c9979f116a"><td class="memTemplItemLeft" align="right" valign="top">class&#160;</td><td class="memTemplItemRight" valign="bottom"><b>ReturnValue</b></td></tr> <tr class="separator:a53f604d3d6f2dc0647df33c9979f116a"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><h3>template&lt;class T, class M&gt;<br /> class v8::Persistent&lt; T, M &gt;</h3> <p>A <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a> which allows copy and assignment.</p> <p>Copy, assignment and destructor behavior is controlled by the traits class M.</p> <p>Note: <a class="el" href="classv8_1_1Persistent.html">Persistent</a> class hierarchy is subject to future changes. </p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a5ce14612215393683d814056015a102d"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;class T, class M&gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">v8::Persistent</a>&lt; T, M &gt;::<a class="el" href="classv8_1_1Persistent.html">Persistent</a> </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>A <a class="el" href="classv8_1_1Persistent.html">Persistent</a> with no storage cell. </p> </div> </div> <a class="anchor" id="aabe9a42d7971bd31173bca34186d9ac2"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;class T, class M&gt; </div> <div class="memtemplate"> template&lt;class S &gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">v8::Persistent</a>&lt; T, M &gt;::<a class="el" href="classv8_1_1Persistent.html">Persistent</a> </td> <td>(</td> <td class="paramtype"><a class="el" href="classv8_1_1Isolate.html">Isolate</a> *&#160;</td> <td class="paramname"><em>isolate</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; S &gt;&#160;</td> <td class="paramname"><em>that</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Construct a <a class="el" href="classv8_1_1Persistent.html">Persistent</a> from a <a class="el" href="classv8_1_1Local.html">Local</a>. When the <a class="el" href="classv8_1_1Local.html">Local</a> is non-empty, a new storage cell is created pointing to the same object, and no flags are set. </p> </div> </div> <a class="anchor" id="aaf9eb7c4e6d0ef2c81a2c08238653578"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;class T, class M&gt; </div> <div class="memtemplate"> template&lt;class S , class M2 &gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">v8::Persistent</a>&lt; T, M &gt;::<a class="el" href="classv8_1_1Persistent.html">Persistent</a> </td> <td>(</td> <td class="paramtype"><a class="el" href="classv8_1_1Isolate.html">Isolate</a> *&#160;</td> <td class="paramname"><em>isolate</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; S, M2 &gt; &amp;&#160;</td> <td class="paramname"><em>that</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Construct a <a class="el" href="classv8_1_1Persistent.html">Persistent</a> from a <a class="el" href="classv8_1_1Persistent.html">Persistent</a>. When the <a class="el" href="classv8_1_1Persistent.html">Persistent</a> is non-empty, a new storage cell is created pointing to the same object, and no flags are set. </p> </div> </div> <a class="anchor" id="a22331e91572784cd5ed5519739bb50c7"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;class T, class M&gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">v8::Persistent</a>&lt; T, M &gt;::<a class="el" href="classv8_1_1Persistent.html">Persistent</a> </td> <td>(</td> <td class="paramtype">const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>&lt; T, M &gt; &amp;&#160;</td> <td class="paramname"><em>that</em></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The copy constructors and assignment operator create a <a class="el" href="classv8_1_1Persistent.html">Persistent</a> exactly as the <a class="el" href="classv8_1_1Persistent.html">Persistent</a> constructor, but the Copy function from the traits class is called, allowing the setting of flags based on the copied <a class="el" href="classv8_1_1Persistent.html">Persistent</a>. </p> </div> </div> <a class="anchor" id="a7d4d2bebfe3919e447e22adc15464e25"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;class T, class M&gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">V8_INLINE <a class="el" href="classv8_1_1Persistent.html">v8::Persistent</a>&lt; T, M &gt;::~<a class="el" href="classv8_1_1Persistent.html">Persistent</a> </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The destructor will dispose the <a class="el" href="classv8_1_1Persistent.html">Persistent</a> based on the kResetInDestructor flags in the traits class. Since not calling dispose can result in a memory leak, it is recommended to always set this flag. </p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
v8-dox/v8-dox.github.io
43fbc39/html/classv8_1_1Persistent.html
HTML
mit
37,786
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>info</title> <!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> --> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="../assets/css/bootstrap.css"> <link rel="stylesheet" href="../assets/css/jquery.bonsai.css"> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/icons.css"> <script type="text/javascript" src="../assets/js/jquery-2.1.0.min.js"></script> <script type="text/javascript" src="../assets/js/bootstrap.js"></script> <script type="text/javascript" src="../assets/js/jquery.bonsai.js"></script> <!-- <script type="text/javascript" src="../assets/js/main.js"></script> --> </head> <body> <div> <!-- Name Title --> <h1>info</h1> <!-- Type and Stereotype --> <section style="margin-top: .5em;"> <span class="alert alert-info"> <span class="node-icon _icon-UMLParameter"></span> UMLParameter </span> </section> <!-- Path --> <section style="margin-top: 10px"> <span class="label label-info"><a href='cf9c8b720f3815adeccaf3ef6e48c6c4.html'><span class='node-icon _icon-Project'></span>Ciayn Docu</a></span> <span>::</span> <span class="label label-info"><a href='cc25605218a28e217adbc7728949f89f.html'><span class='node-icon _icon-UMLModel'></span>Ciyn Diagrams</a></span> <span>::</span> <span class="label label-info"><a href='1ce3e8f6a47545f4bc7d28061651914e.html'><span class='node-icon _icon-UMLPackage'></span>ciayn</a></span> <span>::</span> <span class="label label-info"><a href='e35979fd19f9061dbd972aa6972676a2.html'><span class='node-icon _icon-UMLPackage'></span>logger</a></span> <span>::</span> <span class="label label-info"><a href='426585637a68f9543e0482c3566d64a7.html'><span class='node-icon _icon-UMLClass'></span>ConsoleLogger</a></span> <span>::</span> <span class="label label-info"><a href='1824fe0ae7bb0752fac6e103848d1688.html'><span class='node-icon _icon-UMLOperation'></span>log</a></span> <span>::</span> <span class="label label-info"><a href='5dabc1af8886a59c3095ab79d38c20db.html'><span class='node-icon _icon-UMLParameter'></span>info</a></span> </section> <!-- Diagram --> <!-- Description --> <section> <h3>Description</h3> <div> <span class="label label-info">none</span> </div> </section> <!-- Specification --> <!-- Directed Relationship --> <!-- Undirected Relationship --> <!-- Classifier --> <!-- Interface --> <!-- Component --> <!-- Node --> <!-- Actor --> <!-- Use Case --> <!-- Template Parameters --> <!-- Literals --> <!-- Attributes --> <!-- Operations --> <!-- Receptions --> <!-- Extension Points --> <!-- Parameters --> <!-- Diagrams --> <!-- Behavior --> <!-- Action --> <!-- Interaction --> <!-- CombinedFragment --> <!-- Activity --> <!-- State Machine --> <!-- State Machine --> <!-- State --> <!-- Vertex --> <!-- Transition --> <!-- Properties --> <section> <h3>Properties</h3> <table class="table table-striped table-bordered"> <tr> <th width="50%">Name</th> <th width="50%">Value</th> </tr> <tr> <td>name</td> <td>info</td> </tr> <tr> <td>stereotype</td> <td><span class='label label-info'>null</span></td> </tr> <tr> <td>visibility</td> <td>public</td> </tr> <tr> <td>isStatic</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isLeaf</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>type</td> <td>String</td> </tr> <tr> <td>multiplicity</td> <td></td> </tr> <tr> <td>isReadOnly</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isOrdered</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isUnique</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>defaultValue</td> <td></td> </tr> <tr> <td>direction</td> <td>in</td> </tr> </table> </section> <!-- Tags --> <!-- Constraints, Dependencies, Dependants --> <!-- Relationships --> <!-- Owned Elements --> </div> </body> </html>
lki1354/Ciayn
documentation/html-docs/contents/5dabc1af8886a59c3095ab79d38c20db.html
HTML
mit
6,735
<!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>loading</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css" media="screen"> html, body { height:100%; background-color: #ffffff;} body { margin:0; padding:0; overflow:hidden; } #flashContent { width:100%; height:100%; } </style> </head> <body> <div id="flashContent"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="1920" height="1080" id="loading" align="middle"> <param name="movie" value="loading.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="loading.swf" width="1920" height="1080"> <param name="movie" value="loading.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--<![endif]--> <a href="http://www.adobe.com/go/getflash"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> </body> </html>
NullScope/open-sky-project
Src/mineralmining/MiningHUDPack/loading.html
HTML
mit
2,030
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./ed6ef95a5d4f86b08b36be434baddfd151a03129fa508fabe85d02b796761e8f.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/3d90c7d2a6e4a832fde96600180fc9547498f884d81797a0dc31f2c5df7202b4.html
HTML
mit
550
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="nl"> <head> <!-- Generated by javadoc (1.8.0_74) on Fri Feb 12 22:29:46 CET 2016 --> <title>be.thepieterdc.k8055.exceptions</title> <meta name="date" content="2016-02-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <h1 class="bar"><a href="../../../../be/thepieterdc/k8055/exceptions/package-summary.html" target="classFrame">be.thepieterdc.k8055.exceptions</a></h1> <div class="indexContainer"> <h2 title="Exceptions">Exceptions</h2> <ul title="Exceptions"> <li><a href="ConnectionException.html" title="class in be.thepieterdc.k8055.exceptions" target="classFrame">ConnectionException</a></li> <li><a href="ConnectionStatusException.html" title="class in be.thepieterdc.k8055.exceptions" target="classFrame">ConnectionStatusException</a></li> </ul> </div> </body> </html>
thepieterdc/k8055
docs/be/thepieterdc/k8055/exceptions/package-frame.html
HTML
mit
1,035
<div id="YuvaLoginWrapper"> Here we go with Login plugin. </div>
arashmilani/yuva
Yuva/Login/index.html
HTML
mit
65