HomeSort by relevance Sort by last modified time
    Searched refs:elements (Results 301 - 325 of 1272) sorted by null

<<11121314151617181920>>

  /external/libffi/testsuite/libffi.call/
nested_struct10.c 81 cls_struct_type.elements = cls_struct_fields;
86 cls_struct_type1.elements = cls_struct_fields1;
91 cls_struct_type2.elements = cls_struct_fields2;
nested_struct6.c 80 cls_struct_type.elements = cls_struct_fields;
85 cls_struct_type1.elements = cls_struct_fields1;
90 cls_struct_type2.elements = cls_struct_fields2;
nested_struct8.c 80 cls_struct_type.elements = cls_struct_fields;
85 cls_struct_type1.elements = cls_struct_fields1;
90 cls_struct_type2.elements = cls_struct_fields2;
nested_struct9.c 80 cls_struct_type.elements = cls_struct_fields;
85 cls_struct_type1.elements = cls_struct_fields1;
90 cls_struct_type2.elements = cls_struct_fields2;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
splice1.js 43 function mySplice(testArray, splicedArray, first, len, elements)
64 for (i = 0; i < elements.length; i++) splicedArray.push(elements[i]);
splice2.js 43 function mySplice(testArray, splicedArray, first, len, elements)
61 for (i = 0; i < elements.length; i++) splicedArray.push(elements[i]);
  /external/webkit/Source/WebCore/platform/network/
FormData.h 118 const Vector<FormDataElement>& elements() const { return m_elements; } function in class:WebCore::FormData
148 return a.elements() == b.elements();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 174 private <T> void assertContains(Collection<T> elements, T value) {
175 assertTrue("Expected " + value + " in " + elements, elements.contains(value));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
PerformanceResultsElement.java 75 BuildResultsElement[] elements = new BuildResultsElement[length]; local
77 elements[i] = new BuildResultsElement(this.buildNames[i], this);
79 return elements;
135 ComponentResultsElement[] elements = new ComponentResultsElement[length]; local
137 elements[i] = new ComponentResultsElement(components[i], this);
139 return elements;
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingMultisetTest.java 148 @Override protected Multiset<String> create(String[] elements) {
150 LinkedHashMultiset.create(Arrays.asList(elements)));
159 @Override protected Multiset<String> create(String[] elements) {
161 ImmutableMultiset.copyOf(elements));
175 @Override protected Set<String> create(String[] elements) {
177 LinkedHashMultiset.create(Arrays.asList(elements));
ImmutableListTest.java 93 @Override protected List<String> create(String[] elements) {
95 ImmutableList.copyOf(elements));
432 elements(), method
437 elements(), method
442 elements(), method
447 elements(), method
452 elements(1),
457 elements(1),
462 elements(1, 2),
467 elements(1, 2)
487 private static ImmutableList<Integer> elements(Integer... elements) { method in class:ImmutableListTest.ConcurrentTests
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLFormElement01.js 78 The elements attribute specifies a collection of all control element
81 Retrieve the elements attribute and examine its value.
104 elementnodeList = testNode.elements;
HTMLCollection10.js 81 on those elements that are allowed a name attribute.
84 the elements attribute. The first SELECT element is further retrieved
85 using the elements name attribute since the id attribute doesn't match.
109 formsnodeList = testNode.elements;
HTMLCollection11.js 81 on those elements that are allowed a name attribute.
84 the elements attribute. The first SELECT element is further retrieved
85 using the elements id attribute.
109 formsnodeList = testNode.elements;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLFormElement01.js 78 The elements attribute specifies a collection of all control element
81 Retrieve the elements attribute and examine its value.
104 elementnodeList = testNode.elements;
HTMLCollection10.js 81 on those elements that are allowed a name attribute.
84 the elements attribute. The first SELECT element is further retrieved
85 using the elements name attribute since the id attribute doesn't match.
109 formsnodeList = testNode.elements;
HTMLCollection11.js 81 on those elements that are allowed a name attribute.
84 the elements attribute. The first SELECT element is further retrieved
85 using the elements id attribute.
109 formsnodeList = testNode.elements;
  /external/webkit/Source/WebCore/inspector/front-end/
Panel.js 406 var elements = this.elementsToRestoreScrollPositionsFor();
407 for (var i = 0; i < elements.length; ++i) {
408 var container = elements[i];
415 var elements = this.elementsToRestoreScrollPositionsFor();
416 for (var i = 0; i < elements.length; ++i) {
417 var container = elements[i];
  /cts/tools/dasm/src/java_cup/
non_terminal.java 57 /** Table of all non-terminals -- elements are stored using name strings
63 public static Enumeration all() {return _all.elements();};
209 public Enumeration productions() {return _productions.elements();};
  /cts/tools/signature-tools/src/signature/model/util/
ModelUtil.java 148 public static String separate(Collection<? extends Object> elements,
152 for (Object object : elements) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 175 * Add multiple elements into this set.
176 * @param {Array|org.antlr.runtime.BitSet} elements the elements to be added to
179 addAll: function(elements) {
184 if ( elements instanceof org.antlr.runtime.BitSet ) {
185 this.orInPlace(elements);
187 else if ( elements instanceof org.antlr.runtime.IntervalSet ) {
188 other = elements;
195 } else if (org.antlr.lang.isArray(elements)) {
196 for (i = 0; i < elements.length; i++)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 33 //Elements to check for post fetch (use name of project in dev.eclipse.org)
37 //keeps track of missing elements
108 Enumeration enumeration = plugins.elements();
120 enumeration = features.elements();
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 61 * @param first the first array of elements to concatenate
62 * @param second the second array of elements to concatenate
77 * @param array the array of elements to append
80 * elements of {@code array} occupying the remaining elements.
92 * @param array the array of elements to prepend
113 * Returns an array containing all of the elements in the specified
120 * the array has more elements than the collection), the element in the array
123 * the caller knows that the collection does not contain any null elements.
125 * <p>This method returns the elements in the order they are returned by th
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListListIteratorTester.java 82 @Override protected void verify(List<E> elements) {
83 expectContents(elements);
  /external/libffi/src/
prep_cif.c 42 FFI_ASSERT(arg->elements != NULL);
46 ptr = &(arg->elements[0]);
81 /* The CRIS ABI specifies structure elements to have byte

Completed in 1409 milliseconds

<<11121314151617181920>>