HomeSort by relevance Sort by last modified time
    Searched defs:element (Results 326 - 350 of 1193) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 5 import org.w3c.dom.Element;
39 // Element element;
40 // Element ownerElement;
50 // element = (Element) elementList.item(1);
51 // attributes = element.getAttributes();
60 Element element; local
61 Element ownerElement
86 Element element; local
105 Node element; local
    [all...]
DocumentCreateElementNS.java 4 import org.w3c.dom.Element;
12 * The method createElementNS creates an element of the given valid
16 * namespaceURI and qualifiedName. Check if a valid Element object is returned
57 Element element; local
66 element = doc.createElementNS(namespaceURI, qualifiedName);
67 nodeName = element.getNodeName();
68 nsURI = element.getNamespaceURI();
69 localName = element.getLocalName();
70 prefix = element.getPrefix()
    [all...]
ElementSetAttributeNodeNS.java 24 import org.w3c.dom.Element;
35 * Testing Element.setAttributeNodeNS: If an attribute with that local name and
36 * that namespace URI is already present in the element, it is replaced by the
37 * new one. Create a new element and two new attribute nodes (in the same
39 * element node using the setAttributeNodeNS method. Check that only one
78 Element element; local
89 element = doc.createElementNS("http://www.w3.org/DOM/Test/Level2",
90 "new:element");
96 element.setAttributeNodeNS(attribute1)
111 Element element; local
185 Element element; local
206 Element element; local
    [all...]
NamedNodeMapRemoveNamedItemNS.java 29 import org.w3c.dom.Element;
78 Node element; local
84 element = elementList.item(1);
85 attributes = element.getAttributes();
97 // Node element;
106 // element = elementList.item(1);
107 // attributes = element.getAttributes();
118 Node element; local
125 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root");
128 ((Element) /* Node */element).setAttributeNodeNS(attribute1)
143 Node element; local
210 Node element; local
232 Node element; local
254 Element element; local
278 Element element; local
    [all...]
NodeIsSupported.java 29 import org.w3c.dom.Element;
42 * Call the isSupported method on the document element node with a combination
84 Element element; local
100 element = doc.getDocumentElement();
103 success = element.isSupported(featureXML, version);
105 success = element.isSupported(featureXML, version1);
110 success = element.isSupported(featureCore, version);
112 success = element.isSupported(featureCore, version1);
113 success = element.isSupported(featureCore, version2)
    [all...]
NodeSetPrefix.java 30 import org.w3c.dom.Element;
41 * Element and Attr interfaces, when applicable.
43 * Create a new element node with a namespace prefix. Add it to a new
45 * Check if the prefix was set correctly on the element.
84 Element element; local
90 element = doc.createElementNS("http://www.w3.org/DOM/Test",
92 docFragment.appendChild(element);
93 element.setPrefix("dmstc");
94 elementTagName = element.getTagName()
127 Element element; local
168 Element element; local
196 Element element; local
230 Element element; local
251 Element element; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListing.java 40 public void add(BluetoothMapMessageListingElement element) {
41 list.add(element);
43 if (element.getReadBool())
97 for (BluetoothMapMessageListingElement element : list) {
98 element.encode(xmlMsgElement, includeThreadId); // Append the list element
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsType.h 40 const Element * element; member in struct:android::renderscript::Type::Hal::State
59 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
64 const Element * getElement() const {return mElement.get();}
100 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e,
104 static Type* getType(Context *rsc, const Element *e,
125 ObjectBaseRef<const Element> mElement;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsType.h 40 const Element * element; member in struct:android::renderscript::Type::Hal::State
59 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
64 const Element * getElement() const {return mElement.get();}
100 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e,
104 static Type* getType(Context *rsc, const Element *e,
125 ObjectBaseRef<const Element> mElement;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsType.h 40 const Element * element; member in struct:android::renderscript::Type::Hal::State
59 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
64 const Element * getElement() const {return mElement.get();}
100 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e,
104 static Type* getType(Context *rsc, const Element *e,
125 ObjectBaseRef<const Element> mElement;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 65 Object element = it.next(); local
67 if (element instanceof IProject) {
68 project = (IProject) element;
69 } else if (element instanceof IAdaptable) {
70 project = (IProject) ((IAdaptable) element)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 37 /** The root element descriptor */
39 /** The root element descriptors */
104 // Allow arbitrary nesting: the children of all of these element can include
121 * element, if it exists, can also be optionally added into a list.
123 * @param descriptors an optional list to add the element into, or null
125 * @param xmlName the XML tag name to use for the element
126 * @param uiName the UI name to display the element as
129 * @param tooltip the tooltip or documentation for this element, or null
130 * @param sdkUrl an optional SDK url to display for the element, or null
132 * @param childrenElements an array of children allowed by this element, or nul
148 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, tooltip, sdkUrl, local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
MenuDescriptors.java 39 /** The root element descriptor. */
64 // The root element MUST be a menu.
143 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, null, sdkUrl, local
146 return updateElement(element, styleMap,
155 private ElementDescriptor updateElement(ElementDescriptor element,
169 element.setTooltip(style.getJavaDoc());
176 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
177 return element;
182 * for a given XML element name.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 31 import org.w3c.dom.Element;
61 Element element = (Element) node; local
63 NamedNodeMap attributes = element.getAttributes();
RemoveUselessViewFix.java 35 import org.w3c.dom.Element;
57 if (node instanceof Element && node.getParentNode() instanceof Element) {
58 Element element = (Element) node; local
59 Element parent = (Element) node.getParentNode();
62 parent.removeChild(element);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 92 Object element = it.next(); local
94 if (element instanceof IProject) {
95 project = (IProject) element;
96 } else if (element instanceof IAdaptable) {
97 project = (IProject) ((IAdaptable) element).getAdapter(IProject.class);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 39 import org.w3c.dom.Element;
55 Element element = (Element) node; local
56 String prefix = XmlUtils.lookupNamespacePrefix(element, TOOLS_URI, null, false);
59 prefix = XmlUtils.lookupNamespacePrefix(element,
62 element.setAttribute(prefix + ':' + "foo", "bar");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 27 import org.w3c.dom.Element;
121 Element element = info.mElement; local
123 List<Element> selectedElements = Collections.singletonList(element);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DexPool.java 160 for (AnnotationElement element: annotationEncodedValue.getElements()) {
161 stringPool.intern(element.getName());
162 internEncodedValue(element.getValue(), stringPool, typePool, fieldPool, methodPool);
166 for (EncodedValue element: ((ArrayEncodedValue)encodedValue).getValue()) {
167 internEncodedValue(element, stringPool, typePool, fieldPool, methodPool);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java 51 import org.w3c.dom.Element;
164 * @param element the element to read back from
171 @NonNull Element element,
175 if (!TAG_PREVIEW.equals(element.getTagName())) {
179 String displayName = element.getAttribute(ATTR_NAME);
184 String config = element.getAttribute(ATTR_CONFIG);
188 String theme = element.getAttribute(ATTR_THEME);
193 String targetId = element.getAttribute(ATTR_TARGET)
267 Element element = document.createElement(TAG_PREVIEW); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/twdata/maven/mojo-executor/2.2.0/
mojo-executor-2.2.0.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
FilterBar.js 42 this._filterButton.element.addEventListener("click", this._handleFilterButtonClick.bind(this), false);
76 * @return {!Element}
97 this._element.appendChild(filter.element());
191 * @return {!Element}
193 element: function() { }
248 * @return {!Element}
250 element: function()
501 * @return {!Element}
503 element: function()
606 this._filterComboBox.element.title = this._filterComboBox.selectedOption().title
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 53 import org.w3c.dom.Element;
95 /** Orders element attributes by optional URI and name. */
166 Element testSuiteElement = document.getDocumentElement();
168 for (Element testCatalog : elementsOf(testSuiteElement.getElementsByTagName("test-catalog"))) {
169 Element majorPathElement = (Element) testCatalog.getElementsByTagName("major-path").item(0);
173 for (Element testCaseElement : elementsOf(testCatalog.getElementsByTagName("test-case"))) {
182 * Returns a JUnit test for the test described by the given element.
184 private TestCase create(File base, Element testCaseElement) {
203 Element filePathElement = (Element) testCaseElement.getElementsByTagName("file-path").item(0)
486 Element element = (Element) node; local
    [all...]

Completed in 1493 milliseconds

<<11121314151617181920>>