/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
address_formatter.cc | 154 FormatElement element = format[i]; local 155 if (element.IsNewline()) { 160 } else if (element.IsField()) { 161 AddressField field = element.GetField(); 175 line.append(element.GetLiteral());
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
xmpplogintask.cc | 82 XmppLoginTask::IncomingStanza(const XmlElement *element, bool isStart) { 83 pelStanza_ = element; 102 const XmlElement * element = NULL; local 126 if (NULL == (element = NextStanza())) 129 if (!isStart_ || !HandleStartStream(element)) 137 if (NULL == (element = NextStanza())) 140 if (!HandleFeatures(element)) 176 if (NULL == (element = NextStanza())) 178 if (element->Name() != QN_TLS_PROCEED) 243 if (NULL == (element = NextStanza()) [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrReducedClip.cpp | 11 typedef SkClipStack::Element Element; 40 // The clip established by the element list might be cached based on the last 93 SkNEW_INSERT_AT_LLIST_HEAD(result, Element, (isectRect, SkRegion::kReplace_Op, doAA)); 140 // element. 167 const Element* element = iter.prev(); local 168 if (NULL == element) { 172 if (SkClipStack::kEmptyGenID == element->getGenID()) { 176 if (SkClipStack::kWideOpenGenID == element->getGenID()) 369 Element* element = result->headIter().get(); local [all...] |
/external/chromium_org/ui/compositor/ |
scoped_layer_animation_settings.cc | 61 "Inverse supported only for single element sequences."; 63 LayerAnimationElement* element = sequence->FirstElement(); local 66 element->properties()) 70 LayerAnimationElement::CreateInverseTransformElement(base, element));
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-builtinbust-6.js | 22 function element() { element_receiver = this; return "x"; } function 24 Object.defineProperty(Number.prototype, "0", { get:element, set:element }); 25 Object.defineProperty(Number.prototype, "1", { get:element, set:element }); 26 Object.defineProperty(Number.prototype, "2", { get:element, set:element });
|
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 20 int element = Ident(42); local 24 MEMSET(array, element, size); 25 MEMSET(array, element, size - 1); 26 MEMSET(array + length - 1, element, sizeof(T)); 27 MEMSET(array, element, 1); 30 MEMSET(array - 10, element, zero); 31 MEMSET(array - 1, element, zero); 32 MEMSET(array, element, zero); 39 EXPECT_DEATH(MEMSET((char*)(array + length) - 1, element, 6), 41 EXPECT_DEATH(MEMSET(array + 1, element, size + sizeof(T)) [all...] |
/external/deqp/executor/ |
xeXMLWriter.hpp | 56 std::string element; member in struct:xe::xml::Writer::BeginElement 57 BeginElement (const char* element_) : element(element_) {}
|
/external/deqp/scripts/ |
convert_case_list_to_xml.py | 36 element = doc.createElement("TestCase") 37 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1]) 38 element.setAttribute("Description", testCase.description) 39 element.setAttribute("CaseType", testCase.caseType) 40 parent.appendChild(element) 42 exportCase(doc, element, child) 68 element = doc.createElement("TestCaseList") variable 69 doc.appendChild(element) 71 exportCase(doc, element, testCase)
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingList.java | 65 public void add(int index, E element) { 66 delegate().add(index, element); 80 public int indexOf(Object element) { 81 return delegate().indexOf(element); 85 public int lastIndexOf(Object element) { 86 return delegate().lastIndexOf(element); 105 public E set(int index, E element) { 106 return delegate().set(index, element); 130 @Beta protected boolean standardAdd(E element){ 131 add(size(), element); local [all...] |
SingletonImmutableSet.java | 27 * Implementation of {@link ImmutableSet} with exactly one element. 36 final transient E element; field in class:SingletonImmutableSet 46 SingletonImmutableSet(E element) { 47 this.element = Preconditions.checkNotNull(element); 50 SingletonImmutableSet(E element, int hashCode) { 52 this.element = element; 66 return element.equals(target); 70 return Iterators.singletonIterator(element); [all...] |
/external/protobuf/gtest/samples/ |
sample3-inl.h | 42 // The element type must support copy constructor. 43 template <typename E> // E is the element type 46 // QueueNode is a node in a Queue, which consists of an element of 48 template <typename E> // E is the element type 53 // Gets the element in this node. 54 const E & element() const { return element_; } function in class:QueueNode 61 // Creates a node with a given element value. The next pointer is 63 QueueNode(const E & element) : element_(element), next_(NULL) {} 73 template <typename E> // E is the element type 144 E * element = new E(old_head->element()); local [all...] |
/external/skia/src/gpu/ |
GrReducedClip.cpp | 11 typedef SkClipStack::Element Element; 40 // The clip established by the element list might be cached based on the last 93 SkNEW_INSERT_AT_LLIST_HEAD(result, Element, (isectRect, SkRegion::kReplace_Op, doAA)); 140 // element. 167 const Element* element = iter.prev(); local 168 if (NULL == element) { 172 if (SkClipStack::kEmptyGenID == element->getGenID()) { 176 if (SkClipStack::kWideOpenGenID == element->getGenID()) 369 Element* element = result->headIter().get(); local [all...] |
/external/srec/portable/src/ |
ArrayListImpl.c | 74 static ESR_ReturnCode ArrayList_Insert_Internal(ArrayListImpl *impl, size_t index, void *element) 92 impl->contents[index] = element; 96 ESR_ReturnCode ArrayList_Add(ArrayList* self, void* element) 100 return ArrayList_Insert_Internal(impl, impl->size, element); 103 ESR_ReturnCode ArrayList_InsertAt(ArrayList *self, size_t index, void *element) 110 return ArrayList_Insert_Internal(impl, index, element); 137 ESR_ReturnCode ArrayList_Remove(ArrayList* self, const void* element) 142 /* Remove element */ 145 if (impl->contents[i] == element) 170 ESR_ReturnCode ArrayList_Contains(ArrayList* self, const void* element, 219 void* element; local [all...] |
/external/srec/shared/src/ |
Int8ArrayListImpl.c | 75 ESR_ReturnCode Int8ArrayList_Add(Int8ArrayList* self, const asr_int8_t element) 88 impl->contents[impl->virtualSize] = element; 93 ESR_ReturnCode Int8ArrayList_Remove(Int8ArrayList* self, const asr_int8_t element) 102 if (contents[i] == element) 131 ESR_ReturnCode Int8ArrayList_Contains(Int8ArrayList* self, const asr_int8_t element, ESR_BOOL* exists) 140 if (contents[i] == element) 150 ESR_ReturnCode Int8ArrayList_Get(Int8ArrayList* self, size_t index, asr_int8_t* element) 155 *element = impl->contents[index]; 159 ESR_ReturnCode Int8ArrayList_Set(Int8ArrayList* self, size_t index, const asr_int8_t element) 164 impl->contents[index] = element; 188 asr_int8_t element; local [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
attrgetownerelement01.java | 34 * The "getOwnerElement()" will return the Element node this attribute is attached to or 37 * Retreive the default attribute defaultAttr and check its owner element. Verify if the name 75 Element element; local 76 Element ownerElement; 84 element = (Element) elementList.item(1); 85 attributes = element.getAttributes();
|
attrgetownerelement02.java | 34 * The "getOwnerElement()" will return the Element node this attribute 37 * Create a new element and attribute node, attach the attribute to the element. 38 * Check the value of owner element of the new attribute node 72 Element element; local 73 Element ownerElement; 78 element = doc.createElement("root"); 80 newAttr = element.setAttributeNodeNS(attr);
|
attrgetownerelement04.java | 32 * The "getOwnerElement()" will return the Element node this attribute is attached to or 73 Element element; local 80 element = (Element) addresses.item(1); 81 assertNotNull("empAddressNotNull", element); 82 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
|
attrgetownerelement05.java | 34 * The "getOwnerElement()" will return the Element node this attribute is attached to 37 * Retreive an element and its attributes. Then remove the element and check the name of 73 Node element; local 74 Element ownerElement; 75 Element parentElement; 85 element = elementList.item(1); 86 parentElement = (Element) element.getParentNode(); 87 nodeMap = element.getAttributes() [all...] |
documentcreateelementNS01.java | 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI. 50 * and qualifiedName. Check if a valid Element object is returned with the same node attributes. 79 Element element; local 88 element = doc.createElementNS(namespaceURI, qualifiedName); 89 nodeName = element.getNodeName(); 90 nsURI = element.getNamespaceURI(); 91 localName = element.getLocalName(); 92 prefix = element.getPrefix(); 93 tagName = element.getTagName() [all...] |
documentcreateelementNS06.java | 73 Element element; local 83 element = newDoc.createElementNS(namespaceURI, qualifiedName);
|
documentimportnode01.java | 40 * element node, from a list of nodes whose local names are "address" and namespaceURI 77 Element element; local 86 element = (Element) childList.item(1); 87 attr = element.getAttributeNode("street");
|
documentimportnode02.java | 40 * element node which is retreived by its elementId="CANADA", into the another document. 79 Element element; local 90 element = (Element) addresses.item(1); 91 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
|
documentimportnode03.java | 40 * "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and 79 Element element; local 88 element = (Element) childList.item(1); 89 attr = element.getAttributeNode("defaultAttr");
|
documentimportnode04.java | 40 * "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and 83 Element element; local 94 element = (Element) childList.item(1); 95 attr = element.getAttributeNode("defaultAttr");
|
elementgetattributenodens01.java | 33 * Create a new element node and add 2 new attribute nodes to it that have the same 71 Element element; local 83 element = doc.createElementNS("namespaceURI", "root"); 85 newAttribute1 = element.setAttributeNodeNS(attribute1); 87 newAttribute2 = element.setAttributeNodeNS(attribute2); 88 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
|