/external/ceres-solver/include/ceres/internal/ |
fixed_array.h | 109 // Returns a pointer to the underlying element array. 110 inline const T* get() const { return &array_[0].element; } 111 inline T* get() { return &array_[0].element; } 114 // Returns a reference to the "i"th element. 117 return array_[i].element; 121 // Returns a reference to the "i"th element. 124 return array_[i].element; 127 inline iterator begin() { return &array_[0].element; } 128 inline iterator end() { return &array_[size_].element; } 130 inline const_iterator begin() const { return &array_[0].element; } 139 T element; member in struct:ceres::internal::FixedArray::InnerContainer [all...] |
/external/deqp/scripts/ |
convert_case_list_to_xml.py | 56 element = doc.createElement("TestCase") 57 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1]) 58 element.setAttribute("Description", testCase.description) 59 element.setAttribute("CaseType", testCase.caseType) 60 parent.appendChild(element) 62 exportCase(doc, element, child) 88 element = doc.createElement("TestCaseList") variable 89 doc.appendChild(element) 91 exportCase(doc, element, testCase)
|
/external/droiddriver/src/io/appium/droiddriver/base/ |
DroidDriverContext.java | 49 E element = map.get(rawElement); local 50 if (element == null) { 51 element = driver.newUiElement(rawElement, parent); 52 map.put(rawElement, element); 54 return element;
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_elementnormalize2.java | 31 * Add an empty text node to an existing attribute node, normalize the containing element 60 Element root; 62 Element element; local 73 element = (Element) elementList.item(0); 74 attrNode = element.getAttributeNode("title"); 76 element.normalize(); 77 attrNode = element.getAttributeNode("title");
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
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...] |
elementhasattributens03.java | 35 * and namespace URI is specified on this element or has a default value, 38 * Create a new element and an attribute node that has an empty namespace. 39 * Add the attribute node to the element node. Check if the newly created element 77 Element element; local 84 element = doc.createElementNS("http://www.w3.org/DOM", "address"); 85 assertNotNull("createElementNotNull", element); 87 newAttribute = element.setAttributeNode(attribute); 88 state = element.hasAttributeNS(nullNS, "domestic") [all...] |
elementremoveattributens01.java | 35 * Create a new element and add a new attribute node to it. 38 * method on the element and check if it returns false. 73 Element element; local 78 element = doc.createElementNS("http://www.w3.org/DOM", "elem"); 80 newAttribute = element.setAttributeNodeNS(attribute); 81 element.removeAttributeNS("http://www.w3.org/DOM/Test/createAttributeNS", "attr"); 82 state = element.hasAttributeNS("http://www.w3.org/DOM/Test/createAttributeNS", "attr");
|
elementsetattributenodens06.java | 36 * Attempt to add an attribute node to an element node which is part of the replacement text of 72 Element element; local 80 element = doc.createElementNS("http://www.w3.org/DOM/Test", "elem1"); 84 newAttribute = element.setAttributeNodeNS(attribute); 86 element = (Element) elementList.item(0); 92 newAttribute = element.setAttributeNodeNS(attribute2);
|
namednodemapgetnameditemns03.java | 36 * Create a new Element node and add 2 new attribute nodes having the same local name but different 73 Node element; local 80 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root"); 82 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(newAttr1); 84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(newAttr2); 85 attributes = element.getAttributes();
|
namednodemapgetnameditemns06.java | 34 * Retreive the second address element node having localName=adrress. Retreive the attributes 35 * of this element into 2 nodemaps. Create a new attribute node and add it to this element. 74 Element element; local 82 element = (Element) elementList.item(1); 83 attributesMap1 = element.getAttributes(); 84 attributesMap2 = element.getAttributes(); 86 newAttribute = element.setAttributeNodeNS(newAttr1) [all...] |
namednodemapremovenameditemns03.java | 36 * Create a new element node and add 2 new attribute nodes to it that have the same localName 38 * new element node and check to see that the second attribute still exists. 73 Node element; local 80 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root"); 82 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute1); 84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute2); 85 attributes = element.getAttributes();
|
namednodemapsetnameditemns06.java | 34 * Retreieve the first element whose localName is address and its attributes into a named node map. 36 * Retreieve the second element whose localName is address and its attributes into a named node map. 74 Element element; local 79 element = (Element) elementList.item(0); 80 attributes = element.getAttributes(); 82 element = (Element) elementList.item(1); 83 attributes = element.getAttributes() [all...] |
namednodemapsetnameditemns07.java | 36 * attribute of another Element object. 38 * Retreieve the attributes of first element whose localName is address into a named node map. 40 * from the NamedNodeMap. Retreieve the attributes of second element whose localName is address 80 Element element; local 85 element = (Element) elementList.item(0); 86 attributes = element.getAttributes(); 88 element = (Element) elementList.item(1) [all...] |
namednodemapsetnameditemns08.java | 35 * attribute of another Element object. 36 * Retreieve the first element whose localName is address and its attributes into a named node map. 37 * Retreiving the domestic attribute from the namednodemap. Retreieve the second element whose 76 Element element; local 81 element = (Element) elementList.item(0); 82 attributes = element.getAttributes(); 84 element = (Element) elementList.item(1) [all...] |
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);
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/ |
bootstrap.js | 182 var Button = function (element, options) { 183 this.$element = $(element) 189 , $el = this.$element 207 var $parent = this.$element.parent('[data-toggle="buttons-radio"]') 213 this.$element.toggleClass('active') 277 var Carousel = function (element, options) { 278 this.$element = $(element) 281 this.options.pause == 'hover' && this.$element [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/ |
formatting_element_list.js | 35 var element = entry.element,
36 elementAttrs = this.treeAdapter.getAttrList(element);
38 if (this.treeAdapter.getTagName(element) === neTagName &&
39 this.treeAdapter.getNamespaceURI(element) === neNamespaceURI &&
58 //NOTE: build attrs map for the new element so we can perform fast lookups
93 FormattingElementList.prototype.pushElement = function (element, token) {
94 this._ensureNoahArkCondition(element);
98 element: element,
[all...] |
/external/droiddriver/src/io/appium/droiddriver/finders/ |
Predicates.java | 153 public boolean apply(UiElement element) { 154 Boolean actual = element.get(attribute); 172 public boolean apply(UiElement element) { 173 Boolean actual = element.get(attribute); 192 public boolean apply(UiElement element) { 193 Object actual = element.get(attribute); 211 public boolean apply(UiElement element) { 212 String actual = element.get(attribute); 231 public boolean apply(UiElement element) { 232 String actual = element.get(attribute) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
PropertyDescriptorEditorProvider.java | 62 Object element = enumElements[i]; local 63 if (i % 3 == 0 && !(element instanceof String)) { 66 if (i % 3 == 2 && !(element instanceof String)) {
|
/external/freetype/src/cff/ |
cffload.h | 35 FT_UInt element ); 44 FT_UInt element, 54 FT_UInt element );
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest_xml_test_utils.py | 83 'attribute numbers differ in element ' + actual_node.tagName) 89 'expected attribute %s not found in element %s' % 92 ' values of attribute %s in element %s differ' % 99 'number of child elements differ in element ' + actual_node.tagName) 102 '<%s> is not in <%s> (in element %s)' % 113 def _GetChildren(self, element): 115 Fetches all of the child nodes of element, a DOM Element object. 121 "detail". An exception is raised if any element other than the above 127 for child in element.childNodes [all...] |
/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 | 74 public E element() { method in class:ForwardingQueue 75 return delegate().element(); 94 * A sensible definition of {@link #peek} in terms of {@link #element}. If you 95 * override {@link #element}, you may wish to override {@link #peek} to 102 return element();
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
ArraySerializer.java | 64 Object element = Array.get(array, i); 65 if (element == null) continue; 66 dimensions[dimension] = Math.max(dimensions[dimension], Array.getLength(element)); 67 if (elementsAreArrays) collectDimensions(element, dimension + 1, dimensions); 121 Object element = Array.get(array, i); 123 if (element != null) writeArray(elementSerializer, buffer, element, dimension + 1, dimensionCount); 125 elementSerializer.writeObject(buffer, element); 127 // Each element could be a different type. Store the class with the object. 128 Serializer.writeClassAndObject(buffer, element); [all...] |
/external/pdfium/third_party/freetype/src/cff/ |
cffload.h | 35 FT_UInt element ); 44 FT_UInt element, 54 FT_UInt element );
|