HomeSort by relevance Sort by last modified time
    Searched full:elements (Results 126 - 150 of 5422) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/collada/include/1.4/dom/
domCg_newarray_type.h 33 protected: // Elements
36 * Nested array elements allow you to create multidemensional arrays. @see
46 * Used to preserve order in elements that do not specify strict sequencing of sub-elements.
50 * Used to preserve order in elements that have a complex content model.
74 * @return Returns a reference to the array of cg_param_type elements.
79 * @return Returns a constant reference to the array of cg_param_type elements.
84 * @return Returns a reference to the array of array elements.
89 * @return Returns a constant reference to the array of array elements.
94 * @return Returns a reference to the array of usertype elements
    [all...]
  /external/icu4c/i18n/
ucol_cnt.cpp 60 tbl->elements = (ContractionTable **)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(ContractionTable *));
61 if(tbl->elements == NULL) {
67 uprv_memset(tbl->elements, 0, INIT_EXP_TABLE_SIZE*sizeof(ContractionTable *));
98 table->elements[table->size] = el;
100 //uhash_put(table->elements, (void *)table->size, el, status);
107 /* table->elements = (ContractionTable **)realloc(table->elements, table->capacity*2*sizeof(ContractionTable *));*/
113 ContractionTable **oldElements = table->elements;
117 table->elements = newElements;
151 table->position += table->elements[i]->position
    [all...]
  /external/expat/bcb5/
makefile.mak 1 all: setup expat expatw expat_static expatw_static elements outline xmlwf
18 elements:
  /external/stlport/test/unit/
mvctor_traits_test.cpp 96 // vect contains 4 elements
118 // vect contains 8 elements
136 // vect contains 8 elements
150 // vect contains 6 elements
162 // vect contains 4 elements
169 // vect contains 3 elements
180 //vect with 3 elements and v2 with 4 elements are now out of scope
195 // vect contains 4 elements
218 // vect contains 8 elements
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
AppletsCollection-expected.txt 1 This test demonstrates a couple of object tags being added that do not contain Java applets. Previously these Object element would be included in the document.applets collection even though the spec says that collection should contain only Applet elements and Object elements that contain applets.
  /external/webkit/Source/WebCore/manual-tests/
disabled-option-elements.html 2 <p>This tests that disabled option elements shouldn't be selectable and that no elements in disabled optgroups are selectable.</p>
  /external/webkit/Source/WebCore/rendering/svg/
SVGResources.h 105 // clipper: 'container elements' and 'graphics elements'
106 // filter: 'container elements' and 'graphics elements'
107 // masker: 'container elements' and 'graphics elements'
152 // fill: 'shapes' and 'text content elements'
153 // stroke: 'shapes' and 'text content elements'
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.qrc 6 <file>resources/elements.html</file>
7 <file>resources/elements.qml</file>
  /libcore/luni/src/main/java/java/util/
ListIterator.java 43 * Returns whether there are more elements to iterate.
45 * @return {@code true} if there are more elements, {@code false} otherwise.
51 * Returns whether there are previous elements to iterate.
53 * @return {@code true} if there are previous elements, {@code false}
64 * if there are no more elements.
75 * if there are no more elements.
85 * if there are no previous elements.
96 * if there are no previous elements.
Enumeration.java 24 * enumeration interface and adds a way to remove elements from a collection.
38 * Returns whether this {@code Enumeration} has more elements.
40 * @return {@code true} if there are more elements, {@code false} otherwise.
50 * if there are no more elements.
  /ndk/tests/device/test-gnustl-full/unit/
mvctor_traits_test.cpp 96 // vect contains 4 elements
118 // vect contains 8 elements
136 // vect contains 8 elements
150 // vect contains 6 elements
162 // vect contains 4 elements
169 // vect contains 3 elements
180 //vect with 3 elements and v2 with 4 elements are now out of scope
195 // vect contains 4 elements
218 // vect contains 8 elements
    [all...]
  /ndk/tests/device/test-stlport/unit/
mvctor_traits_test.cpp 96 // vect contains 4 elements
118 // vect contains 8 elements
136 // vect contains 8 elements
150 // vect contains 6 elements
162 // vect contains 4 elements
169 // vect contains 3 elements
180 //vect with 3 elements and v2 with 4 elements are now out of scope
195 // vect contains 4 elements
218 // vect contains 8 elements
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementSequentialTimeContainer.java 16 * A <code>seq</code> container defines a sequence of elements in which
17 * elements play one after the other.
  /external/collada/include/
dom.h 20 // Register all elements
  /external/guava/src/com/google/common/collect/
RegularImmutableSet.java 24 * Implementation of {@link ImmutableSet} with two or more elements.
31 // the same elements in hashed positions (plus nulls)
38 Object[] elements, int hashCode, Object[] table, int mask) {
39 super(elements);
  /external/iptables/include/linux/netfilter/
xt_u32.h 22 * Any way to allow for an arbitrary number of elements?
  /external/llvm/test/CodeGen/X86/
promote-trunc.ll 1 ; RUN: llc -promote-elements < %s -march=x86-64
  /external/webkit/LayoutTests/fast/dom/beforeload/
script-before-load.html 7 <p>This page tests the beforeload event on script elements. You should see a PASS message below if everything
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
importList.html 8 var radio = document.forms["foo"].elements[name];
16 document.forms["foo"].elements["testList"].value.split(/\r?\n/);
18 var elems = window.opener.document.forms["testCases"].elements;
20 if (document.forms["foo"].elements["clear_all"].checked)
  /external/webkit/Source/WebCore/manual-tests/dom/
form-control-for-label.html 9 <label>The border of this progress bar would change color when it is inside fieldset and legend elements <fieldset><legend><progress></progress></legend></fieldset></label><br>
  /dalvik/dexgen/src/com/android/dexgen/util/
IntSet.java 55 * Returns the count of unique elements in this set.
57 * @return {@code > = 0;} count of unique elements
59 int elements(); method in interface:IntSet
  /dalvik/dx/src/com/android/dx/util/
IntSet.java 55 * Returns the count of unique elements in this set.
57 * @return {@code > = 0;} count of unique elements
59 int elements(); method in interface:IntSet
  /dalvik/vm/native/
java_lang_Throwable.cpp 48 ArrayObject* elements = NULL; local
55 elements = dvmGetStackTrace(stackState);
56 RETURN_PTR(elements);
  /external/chromium/net/base/
upload_data_stream.cc 59 std::vector<UploadData::Element>& elements = *data_->elements(); local
61 while (buf_len_ < kBufSize && next_element_ < elements.size()) {
64 UploadData::Element& element = elements[next_element_];
155 if (next_element_ == elements.size() && !buf_len_) {
157 (!elements.empty() && elements.back().is_last_chunk())) {
166 const std::vector<UploadData::Element>& elements = *data_->elements(); local
169 (!elements.empty() &
    [all...]
  /external/clang/test/Sema/
vector-init.c 8 float4 foo2 = (float4){ 1.0, 2.0, 3.0, 4.0 , 5.0 }; // expected-warning{{excess elements in vector initializer}}
14 9.0 }; // expected-warning {{excess elements in array initializer}}
17 9.0 }; // expected-warning {{excess elements in array initializer}}

Completed in 3145 milliseconds

1 2 3 4 56 7 8 91011>>