HomeSort by relevance Sort by last modified time
    Searched refs:elements (Results 526 - 550 of 1581) sorted by null

<<21222324252627282930>>

  /external/libffi/testsuite/libffi.call/
cls_3byte1.c 64 cls_struct_type.elements = cls_struct_fields;
cls_3byte2.c 64 cls_struct_type.elements = cls_struct_fields;
cls_4byte.c 64 cls_struct_type.elements = cls_struct_fields;
cls_8byte.c 63 cls_struct_type.elements = cls_struct_fields;
cls_9byte1.c 64 cls_struct_type.elements = cls_struct_fields;
cls_9byte2.c 64 cls_struct_type.elements = cls_struct_fields;
struct8.c 37 ts8_type.elements = ts8_type_elements;
nested_struct.c 91 cls_struct_type.elements = cls_struct_fields;
96 cls_struct_type1.elements = cls_struct_fields1;
101 cls_struct_type2.elements = cls_struct_fields2;
nested_struct1.c 95 cls_struct_type.elements = cls_struct_fields;
100 cls_struct_type1.elements = cls_struct_fields1;
105 cls_struct_type2.elements = cls_struct_fields2;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 69 } elements[]; member in struct:dxbc_chunk_signature
  /external/v8/test/mjsunit/regress/
regress-877615.js 36 assertEquals([1].toLocaleString(), 'invalid'); // Uses ToObject on elements.
37 assertEquals([1].toString(), '1'); // Uses ToString directly on elements.
  /frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
ClassPathScannerTest.java 93 return v.elements();
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 156 return names.elements();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 184 Set<IType> elements = new HashSet<IType>(); local
190 elements.add(subType);
203 elements.add(subType);
209 List<IType> sorted = new ArrayList<IType>(elements);
  /development/apps/Development/src/com/android/development/
MediaScannerActivity.java 206 private String[] elements = new String[] { field in class:MediaScannerActivity
222 int max = elements.length;
225 mBuilder.append(elements[mRandom.nextInt(max)]);
  /external/chromium_org/v8/test/mjsunit/
array-elements-from-array-prototype-chain.js 29 // Tests below verify that elements set on Array.prototype's proto propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
array-elements-from-array-prototype.js 29 // Tests below verify that elements set on Array.prototype propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
array-elements-from-object-prototype.js 29 // Tests below verify that elements set on Object.prototype propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultimapNaturalTest.java 316 @Override protected void verify(List<Integer> elements) {
317 assertEquals(newHashSet(elements), multimap.get("foo"));
343 @Override protected void verify(List<Entry<String, Integer>> elements) {
344 assertEquals(newHashSet(elements), multimap.entries());
363 @Override protected void verify(List<String> elements) {
364 assertEquals(elements, Lists.newArrayList(multimap.keys()));
383 @Override protected void verify(List<Integer> elements) {
384 assertEquals(elements, Lists.newArrayList(multimap.values()));
408 @Override protected void verify(List<String> elements) {
409 assertEquals(newHashSet(elements), multimap.keySet())
    [all...]
  /external/v8/src/
objects-debug.cc 274 VerifyHeapPointer(elements());
277 ASSERT(this->elements()->IsFixedArray());
278 ASSERT(this->elements()->length() >= 2);
288 (elements() == GetHeap()->empty_fixed_array())),
289 (elements()->map() == GetHeap()->fixed_array_map() ||
290 elements()->map() == GetHeap()->fixed_cow_array_map()));
497 // Make sure that this object has no properties, elements.
500 CHECK_EQ(0, FixedArray::cast(elements())->length());
568 ASSERT(elements()->IsUndefined() ||
569 elements()->IsFixedArray() |
    [all...]
  /external/v8/test/mjsunit/
array-elements-from-array-prototype-chain.js 29 // Tests below verify that elements set on Array.prototype's proto propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
array-elements-from-array-prototype.js 29 // Tests below verify that elements set on Array.prototype propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
array-elements-from-object-prototype.js 29 // Tests below verify that elements set on Object.prototype propagate
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
35 // those ideally should be identical modulo host of elements and
36 // the way elements introduced.
  /libcore/luni/src/main/java/java/util/
EnumSet.java 34 * Creates an empty enum set. The permitted elements are of type
38 * the class object for the elements contained.
39 * @return an empty enum set, with permitted elements of type {@code
56 * Creates an enum set filled with all the enum elements of the specified
60 * the class object for the elements contained.
61 * @return an enum set with elements solely from the specified element type.
72 * Creates an enum set. All the contained elements are of type
73 * Class&lt;E&gt;, and the contained elements are the same as those
78 * @return an enum set with all the elements from the specified enum set.
89 * Creates an enum set. The contained elements are the same as thos
325 private E[] elements; field in class:EnumSet.SerializationProxy
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumSetTest.java 101 // test enum type with more than 64 elements
123 // Test HugeEnumSet with 65 elements
131 // Test HugeEnumSet with 130 elements
195 // test enum with more than 64 elements
228 // test enum type with more than 64 elements
278 // test enum type with more than 64 elements
333 Enum[] elements = EmptyEnum.class.getEnumConstants(); local
334 for(int i = 0; i < elements.length; i++) {
335 emptySet.add(elements[i]);
375 elements = EnumWithInnerClass.class.getEnumConstants()
479 Enum[] elements = EnumFoo.class.getEnumConstants(); local
523 Enum[] elements = EnumFoo.class.getEnumConstants(); local
674 Enum[] elements = EnumFoo.class.getEnumConstants(); local
746 Enum[] elements = EnumFoo.class.getEnumConstants(); local
    [all...]

Completed in 1002 milliseconds

<<21222324252627282930>>