HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 76 - 100 of 3364) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
LinearLayoutBindingAdapter.java 22 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:measureWithLargestChild", method = "setMeasureWithLargestChildEnabled"),
ToolbarBindingAdapter.java 23 @BindingMethod(type = Toolbar.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
24 @BindingMethod(type = Toolbar.class, attribute = "android:onNavigationClick", method = "setNavigationOnClickListener"),
ZoomControlsBindingAdapter.java 23 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomIn", method = "setOnZoomInClickListener"),
24 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomOut", method = "setOnZoomOutClickListener"),
  /libcore/luni/src/test/java/libcore/java/nio/file/attribute/
UserPrincipalNotFoundExceptionTest.java 17 package libcore.java.nio.file.attribute;
22 import java.nio.file.attribute.UserPrincipalNotFoundException;
  /libcore/ojluni/src/main/java/sun/nio/fs/
FileOwnerAttributeViewImpl.java 28 import java.nio.file.attribute.*;
61 public void setAttribute(String attribute, Object value)
64 if (attribute.equals(OWNER_NAME)) {
68 attribute + "' not recognized");
75 for (String attribute: attributes) {
76 if (attribute.equals("*") || attribute.equals(OWNER_NAME)) {
80 attribute + "' not recognized");
AbstractFileSystemProvider.java 41 * Splits the given attribute name into the name of an attribute view and
42 * the attribute. If the attribute view is not identified then it assumed
45 private static String[] split(String attribute) {
47 int pos = attribute.indexOf(':');
50 s[1] = attribute;
52 s[0] = attribute.substring(0, pos++);
53 s[1] = (pos == attribute.length()) ? "" : attribute.substring(pos)
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
attr-merge-unknown-1.d 5 #error: Unknown mandatory EABI object attribute 40
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 209 #define SORT_SMALLER(attribute) \
210 if(x.attribute != y.attribute) \
212 return x.attribute < y.attribute; \
298 #define SORT_SMALLER(attribute) \
299 if(x->attribute != y->attribute) \
301 return x->attribute < y->attribute; \
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 21 import java.text.AttributedCharacterIterator.Attribute;
34 * @tests java.text.AttributedCharacterIterator$Attribute()
37 MyAttribute attribute = new MyAttribute("attribute"); local
39 assertEquals("Attribute has wrong name", "attribute", attribute.getExposedName());
41 attribute = new MyAttribute(null);
42 assertEquals("Attribute has wrong name", null, attribute.getExposedName())
54 MyAttribute attribute = new MyAttribute("test"); local
79 MyAttribute attribute; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
TestReport.java 84 xml.attribute(null, "report-version", Integer.toString(REPORT_VERSION));
85 xml.attribute(null, "creation-time", DATE_FORMAT.format(new Date()));
88 xml.attribute(null, "version-name", Version.getVersionName(mContext));
89 xml.attribute(null, "version-code", Integer.toString(Version.getVersionCode(mContext)));
94 xml.attribute(null, "board", Build.BOARD);
95 xml.attribute(null, "brand", Build.BRAND);
96 xml.attribute(null, "device", Build.DEVICE);
97 xml.attribute(null, "display", Build.DISPLAY);
98 xml.attribute(null, "fingerprint", Build.FINGERPRINT);
99 xml.attribute(null, "id", Build.ID)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
FieldInfo.java 36 ArrayList attribute; // may be null. field in class:FieldInfo
41 attribute = null;
83 attribute = AttributeInfo.copyAll(attribute, cp);
116 attribute = newAttributes;
186 * Finds a ConstantValue attribute and returns the index into
189 * @return 0 if a ConstantValue attribute is not found.
205 * is shared with this object. If you add a new attribute to the list,
206 * the attribute is also added to the field represented by this
207 * object. If you remove an attribute from the list, it is also remove
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 24 import proguard.classfile.attribute.*;
67 * target code attribute.
82 * Finds the specified attribute in the target.
84 public Attribute findAttribute(String attributeName)
103 * Adds the given attribute to the target.
105 public void addAttribute(Attribute attribute)
110 // Try to replace an existing attribute.
114 attribute))
116 // Otherwise append the attribute
282 Attribute attribute = attributes[index]; local
304 Attribute attribute = attributes[index]; local
    [all...]
CodeAttributeEditorResetter.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
30 * code attribute.
43 * @param codeAttributeEditor the code attribute editor that will be reset.
53 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
StackSizeUpdater.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
43 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/jsilver/src/com/google/streamhtmlparser/util/
HtmlUtils.java 50 * attribute of the {@code meta} HTML tag. Used by
68 * A regular expression matching the format of a {@code content} attribute
186 * Determines if the HTML attribute specified expects javascript
188 * attribute.
190 * <p>Currently returns {@code true} for any attribute name that starts
192 * not use non-spec compliant attribute names (e.g. onbogus).
194 * @param attribute the name of an HTML attribute
195 * @return {@code false} if the input is null or is not an attribute
198 public static boolean isAttributeJavascript(String attribute) {
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/item/
DvmLockSampleItem.java 64 public void setAttribute(String attribute, Object value) throws IllegalArgumentException {
65 if(ATTRIBUTES.contains(attribute)) {
66 if (TYPES.get(attribute).isAssignableFrom(value.getClass())) {
67 super.setAttribute(attribute, value);
70 "Invalid attribute type for " + attribute +
72 " expected " + TYPES.get(attribute).getCanonicalName());
75 throw new IllegalArgumentException("Invalid attribute key: " + attribute);
81 public Object getAttribute(String attribute) throws IllegalArgumentException
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
IAttributeCollection.java 11 import com.vladium.jcd.cls.attribute.*;
30 * Returns the attribute descriptor at a given offset.
32 * @param offset attribute offset [must be in [0, size()) range; input not checked]
66 * that all data referenced in 'attribute' will eventually appear in the
69 * @param attribute new attribute descriptor [may not be null]
71 int add (Attribute_info attribute);
76 * all data referenced in 'attribute' will eventually appear in the constant
79 * @param offset attribute offset [must be in [0, size()) range; input not checked]
80 * @param attribute new attribute descriptor [may not be null
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
SuperTypeTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
24 import proguard.classfile.attribute.annotation.TypeAnnotation;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.Annotation;
TypeAnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.*;
TypePathInfoVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.*;
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameZeroFrame.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
49 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /frameworks/base/core/java/android/util/
XmlPullAttributes.java 57 public int getAttributeListValue(String namespace, String attribute,
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute,
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute,
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute,
78 getAttributeValue(namespace, attribute), defaultValue);
81 public int getAttributeUnsignedIntValue(String namespace, String attribute,
84 getAttributeValue(namespace, attribute), defaultValue)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 104 Attr attribute; local
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
114 attrName = attribute.getNodeName();
121 Attr attribute; local
133 attribute = (Attr) attributes.getNamedItemNS(
135 attrName = attribute.getNodeName();
142 Attr attribute; local
152 attribute = (Attr) attributes.getNamedItemNS(
154 attrName = attribute.getNodeName();
161 Attr attribute; local
    [all...]

Completed in 984 milliseconds

1 2 34 5 6 7 8 91011>>