/external/gtest/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' % 95 ' values of attribute %s in element %s differ: %s vs %s' % 103 'number of child elements differ in element ' + actual_node.tagName) 106 '<%s> is not in <%s> (in element %s)' % 117 def _GetChildren(self, element): 119 Fetches all of the child nodes of element, a DOM Element object. 125 "detail". An exception is raised if any element other than the above 131 for child in element.childNodes [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingQueue.java | 75 public E element() { method in class:ForwardingQueue 76 return delegate().element(); 95 * A sensible definition of {@link #peek} in terms of {@link #element}. If you 96 * override {@link #element}, you may wish to override {@link #peek} to 103 return element();
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/ |
cffload.h | 35 FT_UInt element ); 44 FT_UInt element, 54 FT_UInt element );
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentgetelementbyid01.java | 47 * The method getElementById returns the element whose ID is given by elementId. 48 * If not such element exists, returns null. 51 * This should return a null element. 80 Element element; local 83 element = doc.getElementById(elementId); 84 assertNull("documentgetelementbyid01", element);
|
elementgetelementsbytagnamens02.java | 86 Element element; local 89 element = doc.getDocumentElement(); 90 elementList = element.getElementsByTagNameNS("**", "*");
|
elementgetelementsbytagnamens05.java | 87 Element element; local 90 element = doc.getDocumentElement(); 91 elementList = element.getElementsByTagNameNS("http://www.altavista.com", "*");
|
elementhasattribute01.java | 48 * on this element or has a default value, false otherwise 84 Element element; local 87 element = doc.getDocumentElement(); 88 state = element.hasAttribute("");
|
elementsetattributens05.java | 36 * Invoke the setAttributeNS method on a new Element object with null namespaceURI and a 67 Element element; local 71 element = doc.createElementNS("http://www.w3.org/DOM/Test/L2", "dom:elem"); 76 element.setAttributeNS(nullNS, "dom:root", "test");
|
getElementById01.java | 35 * Document should return an element whose ID matches elementId. 38 * with elementId equals "CANADA". Method should return an element 74 Element element; local 77 element = doc.getElementById("CANADA"); 78 tagname = element.getTagName();
|
nodesetprefix06.java | 36 * Invoke the setPrefix method on this Element object with namespaceURI that is different from 66 Element element; local 68 element = doc.createElementNS("http://www.w3.org/DOM/Test/L2", "dom:elem"); 73 element.setPrefix("xml");
|
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/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
Spectrum.js | 38 this.element.classList.add("spectrum-container"); 39 this.element.tabIndex = 0; 41 this._draggerElement = this.element.createChild("div", "spectrum-color"); 44 this._sliderElement = this.element.createChild("div", "spectrum-hue"); 47 var rangeContainer = this.element.createChild("div", "spectrum-range-container"); 58 var displayContainer = this.element.createChild("div", "spectrum-text"); 67 * @param {!Element} element 72 function hueDrag(element, dragX, dragY) 90 * @param {!Element} elemen [all...] |
/art/runtime/base/ |
hash_set.h | 177 // If an element inbetween doesn't rehash to the range from the current empty slot to the 181 // element to its actual location/index. 191 // If the next element is empty, we are done. Make sure to clear the current empty index. 196 // Otherwise try to see if the next element can fill the current empty index. 227 // Find an element, returns end() if not found. 232 Iterator Find(const K& element) { 233 return FindWithHash(element, hashfn_(element)); 236 Iterator FindWithHash(const K& element, size_t hash) { 237 DCHECK_EQ(hashfn_(element), hash) 275 const T& element = ElementForIndex(i); local 295 T& element = data_[i]; local 376 T& element = old_data[i]; local [all...] |
/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/mojo/services/html_viewer/ |
blink_url_request_type_converters.cc | 58 blink::WebHTTPBody::Element element; local 59 while (request.httpBody().elementAt(i++, element)) { 60 switch (element.type) { 61 case blink::WebHTTPBody::Element::TypeData: 62 if (!element.data.isEmpty()) { 65 uint32_t num_bytes = static_cast<uint32_t>(element.data.size()); 75 element.data.data(), 80 case blink::WebHTTPBody::Element::TypeFile: 81 case blink::WebHTTPBody::Element::TypeFileSystemURL [all...] |
/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:blink::CSSCanvasValue 93 HTMLCanvasElement* elt = element(&renderer->document());
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
MediaControlElementTypes.cpp | 64 HTMLElement* element = toHTMLElement(node); local 65 if (isHTMLInputElement(*element)) 66 return static_cast<MediaControlInputElement*>(element)->displayType(); 67 return static_cast<MediaControlDivElement*>(element)->displayType(); 70 MediaControlElement::MediaControlElement(MediaControls& mediaControls, MediaControlElementType displayType, HTMLElement* element) 73 , m_element(element)
|