Searched refs:div (Results 51 - 75 of 184) sorted by relevance

12345678

/external/chromium/chrome/browser/resources/ntp/
H A Dapps.js159 var div = document.createElement('div');
160 div.className = 'app';
162 var a = div.appendChild(document.createElement('a'));
169 return div;
681 var div = createElement(app);
682 var a = div.firstChild;
689 div.setAttribute('new', 'new');
696 div.setAttribute('new', 'installed');
698 div
[all...]
/external/markdown/markdown/extensions/
H A Dfootnotes.py66 # Insert a tree-processor that would actually add the footnote div
68 # run on the contents of the div.
115 """ Return div of footnotes as et Element. """
120 div = etree.Element("div")
121 div.set('class', 'footnote')
122 hr = etree.SubElement(div, "hr")
123 ol = etree.SubElement(div, "ol")
144 return div
274 """ Build and append footnote div t
[all...]
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dfile_manager.js909 var div = this.document_.createElement('div');
910 div.className = 'img-container';
911 li.appendChild(div);
915 div.appendChild(img);
917 div = this.document_.createElement('div');
918 div.className = 'filename-label';
923 div.textContent = labelText;
924 div
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dsync_setup_overlay.css46 #chooseDataTypes > div {
52 #chooseDataTypesBody > div {
109 #sync-setup-overlay * div.errormsg {
157 div.errormsgspacer {
235 #captcha-div {
274 #chooseDataTypes > div {
H A Dcontent_settings.css35 #exception-column-headers > div {
H A Dsearch_page.js13 var el = cr.doc.createElement('div');
47 // to wrap the bubble div into another div with position:relative.
50 this.wrapper = cr.doc.createElement('div');
381 var div, child, tmp;
397 // Create a temporary div element and set the innerHTML to the new
399 div = document.createElement('div');
400 div.innerHTML = newValue;
402 // Insert all the child nodes of the temporary div elemen
[all...]
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-docs.css157 #side-nav .toggle-list div {
331 /* a div that holds a short description */
359 div.api-level {
368 #api-info-block div.api-level {
378 div.api-level a {
381 #api-info-block div.api-level a:link {
388 div#naMessage {
395 div#naMessage div {
405 * html div#naMessag
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jar ... public org.osgi.util.measurement.Measurement div (org.osgi.util.measurement.Measurement) org ...
/external/llvm/docs/_static/
H A Dllvm.css65 /* <div class="doc_code"> would use this class, and <div> adds more padding */
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
86 * <div class="doc_code"><pre>...</ptr></div> construct.
111 div.contents ul { list-style-type: decimal }
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_stdlib.c162 div ecx
165 div ecx
180 div ecx
222 div ecx
225 div ecx
240 div ebx
296 div ecx
298 div ecx
316 div ecx
356 div ec
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Djquery-1.3.2.js315 var div = this.ownerDocument.createElement("div");
316 div.appendChild( this.cloneNode(true) );
317 html = div.innerHTML;
862 var ret = [], scripts = [], div = context.createElement("div");
906 [ 1, "div<div>", "</div>" ] ||
911 div
[all...]
/external/libgsm/src/
H A Dadd.c201 * of the div(num, denum) arithmetic operation. Compute div
210 word div = 0; local
225 div <<= 1;
230 div++;
234 return div;
/external/mesa3d/src/pixelflinger2/
H A Dscanline.cpp212 const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX)); local
221 vertexDx.position *= div;
225 vertexDx.varyings[i] *= div;
228 vertexDx.frontFacingPointCoord *= div; // gl_PointCoord, only zw
270 // const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX));
279 // vertexDx.position *= div;
283 // vertexDx.varyings[i] *= div;
286 // vertexDx.frontFacingPointCoord *= div; // gl_PointCoord, only zw
/external/speex/libspeex/
H A D_kiss_fft_guts.h42 C_FIXDIV( c , div ) : if a fixed point impl., c /= div. noop otherwise
78 # define C_FIXDIV(c,div) \
79 do { DIVSCALAR( (c).r , div); \
80 DIVSCALAR( (c).i , div); }while (0)
95 # define C_FIXDIV(c,div) /* NOOP */
/external/webkit/Source/WebCore/inspector/front-end/
H A DEventListenersSidebarPane.js92 var div = document.createElement("div");
93 div.className = "info";
94 div.textContent = WebInspector.UIString("No Event Listeners");
95 body.appendChild(div);
134 this.eventBars = document.createElement("div");
H A DDetailedHeapshotGridNodes.js178 var div = document.createElement("div");
179 div.className = "source-code event-properties";
180 div.style.overflow = "hidden";
183 this._prefixObjectCell(div, data);
187 div.appendChild(valueSpan);
188 cell.appendChild(div);
333 _prefixObjectCell: function(div, data)
341 div.appendChild(nameSpan);
342 div
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomnode.c129 WebKitDOMElement* p, *div; local
156 div = webkit_dom_document_create_element(document, "DIV", NULL);
157 webkit_dom_node_replace_child(WEBKIT_DOM_NODE(body), WEBKIT_DOM_NODE(div), WEBKIT_DOM_NODE(p), NULL);
163 g_assert(webkit_dom_node_is_same_node(WEBKIT_DOM_NODE(div), node));
/external/aac/libFDK/src/
H A Dfixpoint_math.cpp451 INT div = 0; local
461 div <<= 1;
466 div++;
469 return (FIXP_DBL)(div << (DFRACT_BITS - count));
501 FIXP_DBL div; local
522 div = schur_div(L_num, L_denum, FRACT_BITS);
524 return div;
556 FIXP_DBL div; local
577 div = schur_div(num, denom, 31);
578 return div;
[all...]
/external/chromium/chrome/browser/resources/net_internals/
H A Dlogviewpainter.js30 var div = addNode(node, 'div');
31 div.className = 'logSourceEntry';
33 var p = addNode(div, 'p');
38 var p2 = addNode(div, 'p');
45 var pre = addNode(div, 'pre');
/external/openfst/src/include/fst/
H A Dstring-weight.h470 StringWeight<L, S> div;
474 div.PushBack(iter.Value());
476 return div;
500 StringWeight<L, STRING_RIGHT> div;
504 div.PushFront(iter.Value());
506 return div;
530 StringWeight<L, STRING_RIGHT_RESTRICT> div;
534 div.PushFront(iter.Value());
536 return div;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstring-weight.h445 StringWeight<L, S> div;
449 div.PushBack(iter.Value());
451 return div;
470 StringWeight<L, STRING_RIGHT> div;
474 div.PushFront(iter.Value());
476 return div;
495 StringWeight<L, STRING_RIGHT_RESTRICT> div;
499 div.PushFront(iter.Value());
501 return div;
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php169 <div id="access-level">
175 </div>
188 <div id="container">
193 <div id="license-server-response"></div>
194 </div>
247 el.innerHTML = ['<div class="error">Error ', resp.error.code,
248 ': ', resp.error.message, '</div>'].join('');
/external/guava/guava/src/com/google/common/math/
H A DLongMath.java298 long div = p / q; // throws if q == 0
299 long rem = p - q * div; // equals p % q
302 return div;
338 increment = (mode == HALF_UP | (mode == HALF_EVEN & (div & 1) != 0));
346 return increment ? div + signum : div;
/external/webkit/Tools/CSSTestSuiteHarness/harness/
H A Dharness.css40 .controls div {
48 .details > div {
93 .info > div {
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble.c720 if (p_dev_rec && p_dev_rec->ble.keys.div)
723 *p_div = p_dev_rec->ble.keys.div;
803 p_rec->ble.keys.div = p_keys->lenc_key.div; /* update DIV */
810 p_rec->ble.keys.div,
816 p_rec->ble.keys.div = p_keys->lcsrk_key.div; /* update DIV */
822 p_rec->ble.keys.div,
1174 UINT16 div, y; local
1185 div
1438 UINT16 div; local
[all...]

Completed in 584 milliseconds

12345678