HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 701 - 725 of 2398) sorted by null

<<21222324252627282930>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns03.java 36 * Create a new element node and add 2 new attribute nodes to it that have the same localName
37 * but different namespaceURI's. Remove the first attribute node from the namedNodeMap of the
38 * new element node and check to see that the second attribute still exists.
74 Attr attribute; local
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.w3.org/DOM/L1", "att");
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
88 nodeName = attribute.getNodeName();
namednodemapremovenameditemns09.java 38 * Retreive an attribute node. Remove the attribute node from the node map.
39 * Check the element object to ensure that the attribute node has been removed from it.
76 Attr attribute; local
82 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
84 attribute = (Attr) newAttributes.getNamedItemNS("http://www.nist.gov", "domestic");
85 assertNull("namednodemapremovenameditemns09", attribute);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnWord.java 35 /** The attribute of this word when it is assumed a candidate. */
36 public int attribute; field in class:WnnWord
110 * @param attribute The attribute of word
112 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency, int attribute) {
118 this.attribute = attribute;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathElement.idl 30 readonly attribute SVGAnimatedNumber pathLength;
75 readonly attribute SVGPathSegList pathSegList;
76 readonly attribute SVGPathSegList normalizedPathSegList;
77 readonly attribute SVGPathSegList animatedPathSegList;
78 readonly attribute SVGPathSegList animatedNormalizedPathSegList;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.idl 39 readonly attribute DOMString? name;
40 [CallWith=ScriptState] readonly attribute any keyPath;
41 readonly attribute DOMStringList indexNames;
42 readonly attribute IDBTransaction transaction;
43 readonly attribute boolean autoIncrement;
  /external/droiddriver/src/com/google/android/droiddriver/finders/
Predicates.java 148 * if its {@code attribute} is {@code true}.
150 public static Predicate<UiElement> attributeTrue(final Attribute attribute) {
154 Boolean actual = element.get(attribute);
160 return String.format("{%s}", attribute);
167 * if its {@code attribute} is {@code false}.
169 public static Predicate<UiElement> attributeFalse(final Attribute attribute) {
173 Boolean actual = element.get(attribute);
179 return String.format("{not %s}", attribute);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
AttributesTest.java 250 Attributes attribute = new Attributes(); local
252 assertFalse(attribute.containsKey(null));
253 assertFalse(attribute.containsValue(null));
254 attribute.put(null, null);
255 attribute.put(null, null);
256 assertEquals(1, attribute.size());
257 assertTrue(attribute.containsKey(null));
258 assertTrue(attribute.containsValue(null));
259 assertNull(attribute.get(null));
262 attribute.put(null, value)
    [all...]
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.cc 402 ui::AXBoolAttribute attribute) const {
405 if (data.bool_attributes[i].first == attribute)
414 ui::AXBoolAttribute attribute) const {
417 if (data.bool_attributes[i].first == attribute)
425 ui::AXBoolAttribute attribute, bool* value) const {
428 if (data.bool_attributes[i].first == attribute) {
438 ui::AXFloatAttribute attribute) const {
441 if (data.float_attributes[i].first == attribute)
449 ui::AXFloatAttribute attribute) const {
452 if (data.float_attributes[i].first == attribute)
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
CrossProfileIntentFilter.java 109 String getStringFromXml(XmlPullParser parser, String attribute, String defaultValue) {
110 String value = parser.getAttributeValue(null, attribute);
112 String msg = "Missing element under " + TAG +": " + attribute + " at " +
121 int getIntFromXml(XmlPullParser parser, String attribute, int defaultValue) {
122 String stringValue = getStringFromXml(parser, attribute, null);
130 serializer.attribute(null, ATTR_TARGET_USER_ID, Integer.toString(mTargetUserId));
131 serializer.attribute(null, ATTR_FLAGS, Integer.toString(mFlags));
132 serializer.attribute(null, ATTR_OWNER_USER_ID, Integer.toString(mOwnerUserId));
133 serializer.attribute(null, ATTR_OWNER_PACKAGE, mOwnerPackage);
  /sdk/attribute_stats/src/
Analyzer.java 48 * Gathers statistics about attribute usage in layout files. This is how the "topAttrs"
67 /** Map from view id to map from attribute to frequency count */
92 System.err.println("computes statistics about attribute frequencies.");
255 Node attribute = attributes.item(i); local
256 String name = attribute.getNodeName();
297 Node attribute = attributes.item(i); local
298 String name = attribute.getNodeName();
365 System.out.println(" Rank Count Share Attribute");
379 System.out.println(" Rank Count Share Attribute");
432 percentage, usage.attribute);
567 String attribute = usage.attribute; local
583 String attribute = usage.attribute; local
607 public String attribute; field in class:Analyzer.Usage
    [all...]
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrl.c 248 unsigned int attribute,
264 req->attribute = attribute;
274 unsigned int attribute,
278 display_mask, attribute, value);
287 unsigned int attribute,
307 req->attribute = attribute;
325 unsigned int attribute,
331 attribute, value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleDeclaration.idl 26 [RaisesException=Setter] attribute DOMString? cssText;
35 readonly attribute unsigned long length;
39 readonly attribute CSSRule parentRule;
WebKitCSSFilterValue.idl 45 readonly attribute unsigned short operationType;
  /external/proguard/src/proguard/optimize/peephole/
RetargetedInnerClassAttributeRemover.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
55 Attribute[] attributes = programClass.attributes;
62 Attribute attribute = attributes[index]; local
64 // Check if it's an InnerClasses or EnclosingMethod attribute in
67 attribute.accept(programClass, this);
70 attributes[newAtributesCount++] = attribute;
84 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResults.java 131 serializer.attribute(ns, "name", hostName);
134 serializer.attribute(ns, "name", System.getProperty("os.name"));
135 serializer.attribute(ns, "version", System.getProperty("os.version"));
136 serializer.attribute(ns, "arch", System.getProperty("os.arch"));
140 serializer.attribute(ns, "name", System.getProperty("java.vendor"));
141 serializer.attribute(ns, "version", System.getProperty("java.version"));
145 serializer.attribute(ns, "version", CtsBuildProvider.CTS_BUILD_VERSION);
148 serializer.attribute(ns, "name", "testStatusTimeoutMs");
151 serializer.attribute(ns, "value", "600000");
166 serializer.attribute(ns, FAILED_ATTR, Integer.toString(countTests(CtsTestStatus.FAIL)))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DeletionHandler.java 45 * {@link SdkConstants#ATTR_LAYOUT_ALIGN_WITH_PARENT_MISSING} attribute to a
98 private static String getId(@NonNull IAttribute attribute) {
99 if (attribute.getName().startsWith(ATTR_LAYOUT_RESOURCE_PREFIX)
100 && ANDROID_URI.equals(attribute.getUri())
101 && !attribute.getName().startsWith(ATTR_LAYOUT_MARGIN)) {
102 String id = attribute.getValue();
136 for (IAttribute attribute : child.getLiveAttributes()) {
137 String id = getId(attribute);
144 String name = attribute.getName();
169 for (IAttribute attribute : deleted.getLiveAttributes())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestInterfaceNamedConstructor.idl 41 // An attribute of type {interface_name}ConstructorConstructor is generated
44 attribute TestNamedConstructorConstructor testNamedConstructorConstructorAttribute;
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataTransferItemList.idl 37 readonly attribute long length;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMTokenList.idl 29 readonly attribute unsigned long length;
  /external/chromium_org/third_party/WebKit/Source/core/events/
CustomEvent.idl 29 [Custom=Getter, InitializedByEventConstructor] readonly attribute any detail;
TextEvent.idl 29 readonly attribute DOMString data;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileError.idl 46 [DeprecateAs=FileError] readonly attribute unsigned short code;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.idl 34 readonly attribute unsigned long length;
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
MimeTypeArray.idl 25 readonly attribute unsigned long length;
PluginArray.idl 25 readonly attribute unsigned long length;

Completed in 1965 milliseconds

<<21222324252627282930>>