HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 301 - 325 of 2771) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/classfile/attribute/annotation/target/
LocalVariableTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.TypeAnnotation;
26 import proguard.classfile.attribute.annotation.target.visitor.*;
TargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.TypeAnnotation;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapTableAttribute.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
29 * This Attribute represents a stack map table attribute.
33 public class StackMapTableAttribute extends Attribute
67 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/editor/
BootstrapMethodsAttributeEditor.java 23 import proguard.classfile.attribute.*;
27 * This class can add bootstrap methods to a given bootstrap methods attribute.
39 * methods in the given bootstrap methods attribute.
48 * Adds a given bootstrap method to the bootstrap methods attribute.
LocalVariableTableAttributeEditor.java 23 import proguard.classfile.attribute.*;
27 * This class can add local variables to a given local variable table attribute.
39 * variables in the given local variable table attribute.
48 * Adds a given line number to the line number table attribute.
LocalVariableTypeTableAttributeEditor.java 23 import proguard.classfile.attribute.*;
28 * attribute.
40 * variable types in the given local variable type table attribute.
49 * Adds a given local variable type to the local variable type table attribute.
ParameterAnnotationsAttributeEditor.java 23 import proguard.classfile.attribute.annotation.*;
27 * This class can add annotations to a given parameter annotations attribute.
39 * annotations in the given parameter annotations attribute.
48 * Adds a given annotation to the annotations attribute.
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 24 import proguard.classfile.attribute.CodeAttribute;
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
InverseBindingMethod.java 29 * attribute = "android:text",
35 * <code>method</code> is optional. If it isn't provided, the attribute name is used to
36 * find the method name, either prefixing with "is" or "get". For the attribute
41 * attribute name suffixed with <code>AttrChanged</code>. For the <code>android:text</code>
42 * attribute, the default event name would be <code>android:textAttrChanged</code>. The event
78 * The View type that is associated with the attribute.
83 * The attribute that supports two-way binding.
85 String attribute(); method in interface:InverseBindingMethod
88 * The event used to notify the data binding system that the attribute value has changed.
89 * Defaults to attribute() + "AttrChanged
    [all...]
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
AbsListViewBindingAdapter.java 25 @BindingMethod(type = AbsListView.class, attribute = "android:listSelector", method = "setSelector"),
26 @BindingMethod(type = AbsListView.class, attribute = "android:scrollingCache", method = "setScrollingCacheEnabled"),
27 @BindingMethod(type = AbsListView.class, attribute = "android:smoothScrollbar", method = "setSmoothScrollbarEnabled"),
28 @BindingMethod(type = AbsListView.class, attribute = "android:onMovedToScrapHeap", method = "setRecyclerListener"),
AutoCompleteTextViewBindingAdapter.java 28 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:completionThreshold", method = "setThreshold"),
29 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:popupBackground", method = "setDropDownBackgroundDrawable"),
30 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:onDismiss", method = "setOnDismissListener"),
31 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:onItemClick", method = "setOnItemClickListener"),
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributenodens04.java 34 * The method setAttributeNodeNS Adds a new attribute and raises an INUSE_ATTRIBUTE_ERR
35 * if newAttr is already an attribute of another Element object.
37 * Create two new element nodes and a new attribute node. Attempt to add the same attribute
76 Attr attribute; local
81 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr");
82 newAttribute = element1.setAttributeNodeNS(attribute);
87 newAttribute = element2.setAttributeNodeNS(attribute);
elementsetattributenodens06.java 34 * The method setAttributeNodeNS Adds a new attribute and raises an WRONG_DOCUMENT_ERR if this node
36 * Attempt to add an attribute node to an element node which is part of the replacement text of
73 Attr attribute; local
81 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr");
83 newChild = attribute.appendChild(entRef);
84 newAttribute = element.setAttributeNodeNS(attribute);
elementsetattributens01.java 34 * The method setAttributeNS adds a new attribute.
35 * Create a new element and add a new attribute node to it using the setAttributeNS method.
36 * Check if the attribute was correctly set by invoking the getAttributeNodeNS method
73 Attr attribute; local
79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr");
80 attrName = attribute.getNodeName();
81 attrValue = attribute.getNodeValue();
elementsetattributens02.java 34 * The method setAttributeNS adds a new attribute.
36 * Retrieve an existing element node with attributes and add a new attribute node to it using
37 * the setAttributeNS method. Check if the attribute was correctly set by invoking the
74 Attr attribute; local
82 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "street");
83 attrName = attribute.getNodeName();
84 attrValue = attribute.getNodeValue();
elementsetattributens03.java 34 * The method setAttributeNS adds a new attribute.
35 * Retreive an existing element node with a default attribute node and
36 * add two new attribute nodes that have the same local name as the
37 * default attribute but different namespaceURI to it using the setAttributeNS method.
38 * Check if the attribute was correctly set by invoking the getAttributeNodeNS method
75 Attr attribute; local
85 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/1", "defaultAttr");
86 attrName = attribute.getNodeName();
87 attrValue = attribute.getNodeValue();
namednodemapremovenameditemns01.java 36 * Retreive an attribute node and then remove from the NamedNodeMap. Verify if the attribute
73 Attr attribute; local
79 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
80 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", "domestic");
81 assertNull("namednodemapremovenameditemns01", attribute);
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/droiddriver/src/io/appium/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/ImageMagick/MagickCore/
mime.c 810 *attribute;
840 attribute=GetXMLTreeAttribute(include,"file");
841 if (attribute != (const char *) NULL)
856 if (*attribute == *DirectorySeparator)
857 (void) CopyMagickString(path,attribute,MagickPathExtent);
859 (void) ConcatenateMagickString(path,attribute,MagickPathExtent);
882 attribute=GetXMLTreeAttribute(mime,"data-type");
883 if (attribute != (const char *) NULL)
885 MagickTrue,attribute);
886 attribute=GetXMLTreeAttribute(mime,"description")
796 *attribute; local
    [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);
146 serializer.attribute(ns, "build", buildId);
149 serializer.attribute(ns, "name", "testStatusTimeoutMs");
152 serializer.attribute(ns, "value", "600000")
    [all...]
  /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...]

Completed in 331 milliseconds

<<11121314151617181920>>