/dalvik/dx/tests/108-string-annotation/ |
expected.txt | 2 elements[0]: 6 elements[0]: 10 elements[0]:
|
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/resources/ |
elements.qml | 4 url: "elements.html"
|
/frameworks/compile/slang/tests/F_large_array/ |
stderr.txt.expect | 1 large_array.rs:5:15: error: array is too large (4294967296 elements)
|
/external/webkit/Source/WebCore/editing/ |
RemoveFormatCommand.cpp | 48 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, elements, ()); 49 if (elements.isEmpty()) { 50 elements.add(acronymTag); 51 elements.add(bTag); 52 elements.add(bdoTag); 53 elements.add(bigTag); 54 elements.add(citeTag); 55 elements.add(codeTag); 56 elements.add(dfnTag); 57 elements.add(emTag) [all...] |
/external/webkit/LayoutTests/fast/dom/getElementsByClassName/resources/ |
common.js | 2 function t(collection, elements) { 9 if(collection.length != elements.length) { 11 log += "Got " + collection.length + " elements, expected " + elements.length + ". " 13 for(var i = 0, max = collection.length > elements.length ? elements.length : collection.length; i < max; i++) { 14 if(collection[i] != elements[i]) { 17 log += ", expected element `" + elements[i].tagName + "` (" + elements[i].namespaceURI + "). "
|
/external/v8/test/mjsunit/ |
for-in-special-cases.js | 75 var elements = Accumulate("abcd"); 76 // We do not assume that for-in enumerates elements in order. 77 assertTrue(-1 != elements.indexOf("0")); 78 assertTrue(-1 != elements.indexOf("1")); 79 assertTrue(-1 != elements.indexOf("2")); 80 assertTrue(-1 != elements.indexOf("3")); 81 assertEquals(4, elements.length); 97 var elements = Accumulate(y); 99 // If for-in returns elements in a different order on multiple calls, this 101 assertEquals(elements, elements1, "For-in elements not the same both times.") [all...] |
/external/stlport/test/unit/ |
count_test.cpp | 49 int elements = count(numbers.begin(), numbers.end(), 2); local 50 CPPUNIT_ASSERT(elements==33); 52 elements = 0; 53 count(numbers.begin(), numbers.end(), 2, elements); 54 CPPUNIT_ASSERT(elements==33); 62 int elements = count_if(numbers.begin(), numbers.end(), odd); local 63 CPPUNIT_ASSERT(elements==33); 65 elements = 0; 66 count_if(numbers.begin(), numbers.end(), odd, elements); 67 CPPUNIT_ASSERT(elements==33) [all...] |
/external/webkit/LayoutTests/fast/dom/HTMLFormElement/script-tests/ |
elements-not-in-document.js | 1 description('Test the elements collection when the form is not a descendant of the document. This test case failed in an early version of Acid3.'); 15 shouldBe("f.elements.length", "1"); 16 shouldBe("f.elements[0]", "i"); 17 shouldBe("f.elements.first", "i"); 19 f.elements.second; 25 shouldBe("f.elements.second", "i"); 32 shouldBe("f.elements.length", "1"); 33 shouldBe("f.elements[0]", "i"); 34 shouldBe("f.elements.first", "undefined"); 35 shouldBe("f.elements.second", "i") [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
count_test.cpp | 49 int elements = count(numbers.begin(), numbers.end(), 2); local 50 CPPUNIT_ASSERT(elements==33); 52 elements = 0; 53 count(numbers.begin(), numbers.end(), 2, elements); 54 CPPUNIT_ASSERT(elements==33); 62 int elements = count_if(numbers.begin(), numbers.end(), odd); local 63 CPPUNIT_ASSERT(elements==33); 65 elements = 0; 66 count_if(numbers.begin(), numbers.end(), odd, elements); 67 CPPUNIT_ASSERT(elements==33) [all...] |
/ndk/tests/device/test-stlport/unit/ |
count_test.cpp | 49 int elements = count(numbers.begin(), numbers.end(), 2); local 50 CPPUNIT_ASSERT(elements==33); 52 elements = 0; 53 count(numbers.begin(), numbers.end(), 2, elements); 54 CPPUNIT_ASSERT(elements==33); 62 int elements = count_if(numbers.begin(), numbers.end(), odd); local 63 CPPUNIT_ASSERT(elements==33); 65 elements = 0; 66 count_if(numbers.begin(), numbers.end(), odd, elements); 67 CPPUNIT_ASSERT(elements==33) [all...] |
/external/antlr/src/org/antlr/runtime/debug/ |
RemoteDebugEventSocketListener.java | 254 String[] elements = getEventElements(line); local 255 if ( elements==null || elements[0]==null ) { 259 if ( elements[0].equals("enterRule") ) { 260 listener.enterRule(elements[1], elements[2]); 262 else if ( elements[0].equals("exitRule") ) { 263 listener.exitRule(elements[1], elements[2]); 265 else if ( elements[0].equals("enterAlt") ) 481 String[] elements = new String[MAX_EVENT_ELEMENTS]; local [all...] |
/external/proguard/src/proguard/gui/splash/ |
package.html | 3 with text, graphical elements, and some special effects.
|
/external/webkit/LayoutTests/fast/dom/HTMLFormElement/ |
elements-not-in-document-expected.txt | 1 Test the elements collection when the form is not a descendant of the document. This test case failed in an early version of Acid3. 11 PASS f.elements.length is 1 12 PASS f.elements[0] is i 13 PASS f.elements.first is i 14 PASS f.elements.second is i 20 PASS f.elements.length is 1 21 PASS f.elements[0] is i 22 PASS f.elements.first is undefined 23 PASS f.elements.second is i
|
/external/webkit/LayoutTests/fast/dom/beforeload/ |
link-before-load-expected.txt | 1 This page tests the beforeload event on link elements. You should see the word PASS below underneath a green square.
|
script-before-load-dynamic-expected.txt | 1 This page tests the beforeload event on script elements. You should see a PASS message below if everything works.
|
script-before-load-expected.txt | 1 This page tests the beforeload event on script elements. You should see a PASS message below if everything works.
|
script-before-load-xhtml-expected.txt | 1 This page tests the beforeload event on script elements. You should see a PASS message below if everything works.
|
/external/webkit/Source/WebCore/html/ |
CollectionType.h | 31 DocImages, // all <img> elements in the document 32 DocApplets, // all <object> and <applet> elements 33 DocEmbeds, // all <embed> elements 34 DocObjects, // all <object> elements 35 DocForms, // all <form> elements 36 DocLinks, // all <a> _and_ <area> elements with a value for href 37 DocAnchors, // all <a> elements with a value for name 38 DocScripts, // all <script> elements 40 DocAll, // "all" elements (IE) 50 TableTBodies, // all <tbody> elements in this tabl [all...] |
/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...] |
PriorityQueue.java | 24 * A PriorityQueue holds elements on a priority heap, which orders the elements 26 * construction time. If the queue uses natural ordering, only elements that are 49 private transient E[] elements; field in class:PriorityQueue 87 elements = newElementArray(initialCapacity); 92 * Constructs a priority queue that contains the elements of a collection. 95 * elements. 98 * the collection whose elements will be added to the priority 101 * if any of the elements in the collection are not comparable. 103 * if any of the elements in the collection are null [all...] |
/external/guava/src/com/google/common/collect/ |
ImmutableSet.java | 36 * iteration order. Does not permit null elements. 74 // Casting to any type is safe because the set will never hold any elements. 93 * Returns an immutable set containing the given elements, in order. Repeated 105 * Returns an immutable set containing the given elements, in order. Repeated 117 * Returns an immutable set containing the given elements, in order. Repeated 129 * Returns an immutable set containing the given elements, in order. Repeated 141 * Returns an immutable set containing the given elements, in order. Repeated 146 * @throws NullPointerException if any of {@code elements} is null 148 public static <E> ImmutableSet<E> of(E... elements) { 149 checkNotNull(elements); // for GW 259 List<E> elements = new ArrayList<E>(count); local 294 final transient Object[] elements; field in class:ImmutableSet.ArrayImmutableSet 425 final Object[] elements; field in class:SerializedForm [all...] |
ImmutableCollection.java | 29 * An immutable collection. Does not permit null elements. 32 * #asList()} method, which returns a list view of the collection's elements. 51 * Returns an unmodifiable iterator across the elements in this collection. 221 private final E[] elements; field in class:ImmutableCollection.ArrayImmutableCollection 223 ArrayImmutableCollection(E[] elements) { 224 this.elements = elements; 228 return elements.length; 236 return Iterators.forArray(elements); 245 final Object[] elements; field in class:ImmutableCollection.SerializedForm [all...] |
/external/chromium/chrome/browser/bookmarks/ |
bookmark_pasteboard_helper_mac.h | 17 // Writes a set of bookmark elements from a profile to the general pasteboard. 19 void WriteToClipboard(const std::vector<BookmarkNodeData::Element>& elements, 22 // Writes a set of bookmark elements from a profile to the dragging pasteboard 25 const std::vector<BookmarkNodeData::Element>& elements, 28 // Reads a set of bookmark elements from the general copy/paste clipboard. 29 bool ReadFromClipboard(std::vector<BookmarkNodeData::Element>& elements, 32 // Reads a set of bookmark elements from the drag and drop clipboard. 33 bool ReadFromDragClipboard(std::vector<BookmarkNodeData::Element>& elements, 37 // bookmark elements. It currently does not consider a plaintext url a 42 // elements [all...] |
/external/collada/include/1.4/dom/ |
domMesh.h | 39 protected: // Elements 41 * The mesh element must contain one or more source elements. @see domSource 49 * The mesh element may contain any number of lines elements. @see domLines 53 * The mesh element may contain any number of linestrips elements. @see 58 * The mesh element may contain any number of polygons elements. @see domPolygons 62 * The mesh element may contain any number of polylist elements. @see domPolylist 66 * The mesh element may contain any number of triangles elements. @see domTriangles 70 * The mesh element may contain any number of trifans elements. @see domTrifans 74 * The mesh element may contain any number of tristrips elements. @see domTristrips 82 * Used to preserve order in elements that do not specify strict sequencing of sub-elements [all...] |
/external/icu4c/common/ |
uvectr32.cpp | 31 elements(NULL) 40 elements(0) 58 elements = (int32_t *)uprv_malloc(sizeof(int32_t)*initialCapacity); 59 if (elements == 0) { 67 uprv_free(elements); 68 elements = 0; 78 elements[i] = other.elements[i]; 88 if (elements[i] != other.elements[i]) [all...] |