/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLDocument13.js | 79 of elements whose name value is given by the elementName. 81 Retrieve all the elements whose name attribute is "mapid".
|
HTMLDocument14.js | 79 of elements whose name value is given by the elementName. 81 Retrieve all the elements whose name attribute is "noid".
|
/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();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
StringUtils.java | 58 final String[] elements = csv.split(","); 59 if (!containsInArray(key, elements)) return csv; 60 final ArrayList<String> result = CollectionUtils.newArrayList(elements.length - 1); 61 for (final String element : 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/expat/ |
Makefile.in | 54 all: $(LIBRARY) expat.pc xmlwf/xmlwf@EXEEXT@ examples/elements examples/outline 59 cd examples && rm -f elements outline *.@OBJEXT@ *.lo && rm -rf .libs _libs 155 examples/elements.@OBJEXT@: examples/elements.c 156 examples/elements: examples/elements.@OBJEXT@ $(LIBRARY)
|
/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/libffi/testsuite/libffi.call/ |
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/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...] |
json-parser.h | 326 ZoneList<Handle<Object> > elements(4); 334 elements.Add(element); 341 // Allocate a fixed array with all the elements. 343 isolate()->factory()->NewFixedArray(elements.length()); 344 for (int i = 0, n = elements.length(); i < n; i++) { 345 fast_elements->set(i, *elements[i]);
|
/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.
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityRenderObject.h | 113 // Provides common logic used by all elements when determining isIgnored. 263 void ariaLabeledByElements(Vector<Element*>& elements) const; 298 String accessibilityDescriptionForElements(Vector<Element*> &elements) const; 299 void elementsFromAttribute(Vector<Element*>& elements, const QualifiedName&) const;
|
/external/webkit/Source/WebCore/storage/ |
IDBKeyPath.cpp | 161 void IDBParseKeyPath(const String& keyPath, Vector<IDBKeyPathElement>& elements, IDBKeyPathParseError& error) 197 elements.append(element); 225 elements.append(element);
|
/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<E>, 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 324 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...] |
/libcore/luni/src/test/java/tests/api/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...] |
/external/jhead/ |
exif.c | [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
DomTest.java | 1466 NodeList elements = item.getElementsByTagNameNS("http:\/\/addons", "option"); local 1473 NodeList elements = item.getElementsByTagName("a:option"); local 1481 NodeList elements = item.getElementsByTagName("nutrition"); local 1487 NodeList elements = item.getElementsByTagName("*"); local 1499 NodeList elements = item.getElementsByTagNameNS("*", "*"); local [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryInputCapsule.java | 1165 int elements = readInt(content); local 1176 int elements = readInt(content); local 1187 int elements = readInt(content); local 1200 int elements = readInt(content); local 1211 int elements = readInt(content); local 1223 int elements = readInt(content); local [all...] |
/external/libffi/src/sh/ |
ffi.c | 50 else if (arg->elements[1]) 53 return simple_type (arg->elements[0]); 64 type = simple_type (arg->elements[0]); 65 if (! arg->elements[1]) 88 while ((e = arg->elements[i++]))
|