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

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodesetprefix08.java 65 Element element; local
70 element = (Element) elementList.item(0);
71 attribute = element.getAttributeNode("xmlns");
nodesetprefix09.java 35 * Create a new namespace aware element node and call the setPrefix method on it with a prefix having
65 Element element; local
67 element = doc.createElementNS("http://www.w3.org/DOM/Test/L2", "dom:elem");
72 element.setPrefix(value);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 4 import org.w3c.dom.Element;
9 * The method getElementById returns the element whose ID is given by elementId.
10 * If not such element exists, returns null.
13 * elementId. This should return a null element.
53 Element element; local
56 element = doc.getElementById(elementId);
57 assertNull("documentgetelementbyid01", element);
GetElementById.java 25 import org.w3c.dom.Element;
31 * element whose ID matches elementId.
34 * equals "CANADA". Method should return an element whose tag name is
76 // Element element;
79 // element = doc.getElementById("CANADA");
80 // tagname = element.getTagName();
85 Element element; local
87 element = doc.getElementById("Cancun")
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 83 'attribute numbers differ in element %s:\nExpected: %r\nActual: %r' % (
91 'expected attribute %s not found in element %s' %
94 ' values of attribute %s in element %s differ' %
101 'number of child elements differ in element ' + actual_node.tagName)
104 '<%s> is not in <%s> (in element %s)' %
115 def _GetChildren(self, element):
117 Fetches all of the child nodes of element, a DOM Element object.
123 "detail". An exception is raised if any element other than the above
129 for child in element.childNodes
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchShortcut.java 39 protected ILaunchConfigurationWorkingCopy createLaunchConfiguration(IJavaElement element)
41 ILaunchConfigurationWorkingCopy config = super.createLaunchConfiguration(element);
43 String instrumentation = new InstrumentationRunnerValidator(element.getJavaProject()).
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleSubtreeStream.h 40 element:(id)anElement;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
50 - (id) dup:(id)element;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleSubtreeStream.h 40 element:(id)anElement;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
50 - (id) dup:(id)element;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleSubtreeStream.h 40 element:(id)anElement;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
50 - (id) dup:(id)element;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleSubtreeStream.h 40 element:(id)anElement;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
50 - (id) dup:(id)element;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCanvasValue.cpp 67 void CSSCanvasValue::canvasDestroyed(HTMLCanvasElement* element)
69 ASSERT_UNUSED(element, element == m_element);
76 if (HTMLCanvasElement* elt = element(&renderer->document()))
81 HTMLCanvasElement* CSSCanvasValue::element(Document* document) function in class:WebCore::CSSCanvasValue
93 HTMLCanvasElement* elt = element(&renderer->document());
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 47 * Returns a new array that prepends {@code element} to {@code array}.
49 * @param element the element to prepend to the front of {@code array}
52 * {@code element} occupying the first position, and the
55 public static <T> T[] concat(@Nullable T element, T[] array) {
57 result[0] = element;
63 * Returns a new array that appends {@code element} to {@code array}.
66 * @param element the element to append to the end
68 * the same contents as {@code array}, plus {@code element} occupying th
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlSerializer.java 28 import org.w3c.dom.Element;
47 private static void writeElement(Writer writer, Element element)
50 writer.write(element.getTagName());
52 if (element.hasAttributes()) {
53 NamedNodeMap attributes = element.getAttributes();
62 SMILElement childElement = (SMILElement) element.getFirstChild();
73 writer.write(element.getTagName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeContentProvider.java 46 * Returns all the UI node children of the given element or null if not the right kind
61 public Object getParent(Object element) {
62 if (element instanceof UiElementNode) {
63 UiElementNode node = (UiElementNode) element;
72 public boolean hasChildren(Object element) {
73 if (element instanceof UiElementNode) {
74 UiElementNode node = (UiElementNode) element;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 84 public Object getParent(Object element) {
90 public boolean hasChildren(Object element) {
91 if (element instanceof ResourceType) {
92 return mResources.hasResourcesOfType((ResourceType)element);
93 } else if (mFullLevels && element instanceof ResourceItem) {
94 return ((ResourceItem)element).hasAlternates();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as 32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
33 super(adaptor, elementDescription, element);
36 /** Treat next element as a single node even if it's a subtree.
RewriteRuleTokenStream.as 34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
35 super(adaptor, elementDescription, element);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNamedNodeMap.java 50 /** The DTM element handle. */
51 int element; field in class:DTMNamedNodeMap
57 * Create a getAttributes NamedNodeMap for a given DTM element node
60 * @param element The DTM element handle.
62 public DTMNamedNodeMap(DTM dtm, int element)
65 this.element = element;
69 * Return the number of Attributes on this Element
80 for (int n = dtm.getFirstAttribute(element); n != -1
    [all...]
  /external/chromium_org/chrome/renderer/autofill/
password_generation_agent_browsertest.cc 58 WebElement element = local
60 ASSERT_FALSE(element.isNull());
61 WebInputElement target_element = element.to<WebInputElement>();
148 WebElement element = local
150 ASSERT_FALSE(element.isNull());
151 WebInputElement first_password_element = element.to<WebInputElement>();
152 element = document.getElementById(WebString::fromUTF8("second_password"));
153 ASSERT_FALSE(element.isNull());
154 WebInputElement second_password_element = element.to<WebInputElement>();
171 // TODO(zysxqn): Change this back to the address element once Bug 9022
184 WebElement element = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptRunner.cpp 30 #include "core/dom/Element.h"
54 Element* element = scriptLoader->element(); local
55 ASSERT(element);
56 ASSERT(element->inDocument());
62 m_pendingAsyncScripts.add(scriptLoader, PendingScript(element, resource.get()));
66 m_scriptsToExecuteInOrder.append(PendingScript(element, resource.get()));
130 RefPtrWillBeRawPtr<Element> element = scripts[i].releaseElementAndClear() local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RemoveCSSPropertyCommand.h 34 class Element;
38 static PassRefPtrWillBeRawPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property)
40 return adoptRefWillBeNoop(new RemoveCSSPropertyCommand(document, element, property));
46 RemoveCSSPropertyCommand(Document&, PassRefPtrWillBeRawPtr<Element>, CSSPropertyID);
52 RefPtrWillBeMember<Element> m_element;
SetNodeAttributeCommand.h 36 static PassRefPtrWillBeRawPtr<SetNodeAttributeCommand> create(PassRefPtrWillBeRawPtr<Element> element, const QualifiedName& attribute, const AtomicString& value)
38 return adoptRefWillBeNoop(new SetNodeAttributeCommand(element, attribute, value));
44 SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element>, const QualifiedName& attribute, const AtomicString& value);
49 RefPtrWillBeMember<Element> m_element;
SplitElementCommand.h 35 static PassRefPtrWillBeRawPtr<SplitElementCommand> create(PassRefPtrWillBeRawPtr<Element> element, PassRefPtrWillBeRawPtr<Node> splitPointChild)
37 return adoptRefWillBeNoop(new SplitElementCommand(element, splitPointChild));
43 SplitElementCommand(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<Node> splitPointChild);
50 RefPtrWillBeMember<Element> m_element1;
51 RefPtrWillBeMember<Element> m_element2;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionsCollection.cpp 45 // represented by the collection, in tree order, ignoring later duplicates, with the id of an element preceding its
50 Element* element = item(i); local
51 ASSERT(element);
52 const AtomicString& idAttribute = element->getIdAttribute();
58 const AtomicString& nameAttribute = element->getNameAttribute();
72 void HTMLOptionsCollection::add(PassRefPtrWillBeRawPtr<HTMLOptionElement> element, ExceptionState& exceptionState)
74 add(element, length(), exceptionState);
77 void HTMLOptionsCollection::add(PassRefPtrWillBeRawPtr<HTMLOptionElement> element, int index, ExceptionState& exceptionState)
79 HTMLOptionElement* newOption = element.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseCheckableInputType.h 41 BaseCheckableInputType(HTMLInputElement& element) : InputType(element) { }

Completed in 901 milliseconds

<<11121314151617181920>>