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

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLCollection02.js 82 the elements attribute. The first SELECT element is further retrieved
83 using the elements name attribute.
107 formsnodeList = testNode.elements;
HTMLCollection12.js 81 on those elements that are allowed a name attribute. If there isn't
85 the elements attribute. The method returns null since there is not a
109 formsnodeList = testNode.elements;
HTMLOptionsCollection03.js 85 those elements that are allowed a name attribute.
87 Retrieve the first FORM element. Create a HTMLCollection of the elements.
113 formsnodeList = testNode.elements;
HTMLOptionsCollection04.js 85 those elements that are allowed a name attribute.
87 Retrieve the first FORM element. Create a HTMLCollection of the elements.
113 formsnodeList = testNode.elements;
HTMLOptionsCollection05.js 85 those elements that are allowed a name attribute. Upon failure(e.q., no
88 Retrieve the first FORM element. Create a HTMLCollection of the elements.
115 formsnodeList = testNode.elements;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 94 NSArray *elements = [[NSArray alloc] initWithObjects:
105 CFRetain(elements);
106 return elements;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java 157 String elements[] = key.split("/"); //$NON-NLS-1$ local
159 if (elements.length < 1) {
161 } else if (elements.length == 1) {
162 overrideAttrLocalName = elements[0];
163 elements = null;
165 overrideAttrLocalName = elements[elements.length - 1];
166 elements = elements[0].split(","); //$NON-NLS-1$
174 boolean ok_element = elements != null && elements.length < 1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 94 * Returns all elements below the given node (which can be a document,
98 * @return all elements in the subtree formed by the node parameter
102 List<Element> elements = new ArrayList<Element>(64); local
103 addElements(node, elements);
104 return elements;
107 private static void addElements(@NonNull Node node, @NonNull List<Element> elements) {
109 elements.add((Element) node);
114 addElements(childNodes.item(i), elements); local
269 * @return a pair of parent and child elements, where either the parent or the child
381 * Returns a range of elements for the given caret range. Note that the two element
    [all...]
  /external/v8/src/
liveobjectlist.cc 382 // If we have elements to process, we're good to go.
447 // If we have elements to process, we're good to go.
951 Element* elements = lol->elements_; local
953 HeapObject* heap_obj = elements[i].obj_;
993 // For lol elements, it doesn't matter which comes first if 2 elements point
2283 Element* elements = lol->elements_; local
2308 Element* elements = NewArray<Element>(total_count); local
2397 Element* elements = lol->elements_; local
2486 Element* elements = NewArray<Element>(total_count); local
2599 Element* elements = lol->elements_; local
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
ListIntSetTest.java 26 assertEquals(0, set.elements());
36 assertEquals(3, set.elements());
  /external/chromium/chrome/browser/resources/chromeos/
proxy_settings.js 18 // Decorate the existing elements in the document.
  /external/chromium/chrome/browser/webdata/
autofill_table.h 119 // Records the form elements in |elements| in the database in the
122 bool AddFormFieldValues(const std::vector<webkit_glue::FormField>& elements,
302 const std::vector<webkit_glue::FormField>& elements,
  /external/chromium/net/base/
upload_data.cc 180 void UploadData::SetElements(const std::vector<Element>& elements) {
181 elements_ = elements;
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 116 @Override protected Queue<String> create(String[] elements) {
118 Lists.newLinkedList(asList(elements)));
ForwardingSortedSetTest.java 111 @Override protected Set<String> create(String[] elements) {
113 new SafeTreeSet<String>(Arrays.asList(elements)));
MutableClassToInstanceMapTest.java 59 public Map<Class, Number> create(Object... elements) {
62 for (Object object : elements) {
TransformedSetTest.java 100 @Override public Set<Integer> create(Object... elements) {
105 Iterable<Integer> integers = (Iterable) Arrays.asList(elements);
108 // the expected elements themselves, not their image under the bijection
  /external/libffi/testsuite/libffi.call/
nested_struct2.c 71 cls_struct_type.elements = cls_struct_fields;
76 cls_struct_type1.elements = cls_struct_fields1;
nested_struct3.c 72 cls_struct_type.elements = cls_struct_fields;
77 cls_struct_type1.elements = cls_struct_fields1;
nested_struct4.c 72 cls_struct_type.elements = cls_struct_fields;
77 cls_struct_type1.elements = cls_struct_fields1;
nested_struct5.c 72 cls_struct_type.elements = cls_struct_fields;
77 cls_struct_type1.elements = cls_struct_fields1;
nested_struct7.c 72 cls_struct_type.elements = cls_struct_fields;
77 cls_struct_type1.elements = cls_struct_fields1;
  /external/skia/bench/
bench_graph_svg.py 337 elements = expectation.strip().split(',')
338 if not elements[0] or elements[0].startswith('#'):
340 if len(elements) != 5:
343 bench_entry = elements[0] + ',' + elements[1]
348 expectations[bench_entry] = (float(elements[-2]),
349 float(elements[-1]))
540 var elements = node.getElementsByTagName(tag);
542 for (var i = 0, elementsFound = 0; i < elements.length; ++i)
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
XMLFormatter.java 119 StackTraceElement[] elements = t.getStackTrace(); local
120 for (StackTraceElement e : elements) {
  /libcore/support/src/test/java/tests/support/
Support_Exec.java 63 * Returns a command-line ready path formed by joining the path elements
66 public static String createPath(String... elements) {
68 for (String element : elements) {

Completed in 904 milliseconds

<<11121314151617181920>>