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

<<31323334353637383940>>

  /dalvik/dexgen/src/com/android/dexgen/rop/
StdAttributeList.java 23 * an array of {@link Attribute} objects and can be made immutable.
37 public Attribute get(int n) {
38 return (Attribute) get0(n);
54 public Attribute findFirst(String name) {
58 Attribute att = get(i);
68 public Attribute findNext(Attribute attrib) {
74 Attribute att = get(at);
86 Attribute att = get(at);
96 * Sets the attribute at the given index
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 23 * an array of {@link Attribute} objects and can be made immutable.
37 public Attribute get(int n) {
38 return (Attribute) get0(n);
54 public Attribute findFirst(String name) {
58 Attribute att = get(i);
68 public Attribute findNext(Attribute attrib) {
74 Attribute att = get(at);
86 Attribute att = get(at);
96 * Sets the attribute at the given index
    [all...]
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 30 struct attribute attr;
53 struct attribute attr;
  /external/chromium_org/components/autofill/core/browser/
autofill_xml_parser.h 33 // |context| is a parsing context used to resolve element/attribute names.
39 // |context| is a parsing context used to resolve element/attribute names.
82 // |context| is a parsing context used to resolve element/attribute names.
101 int GetIntValue(buzz::XmlParseContext* context, const char* attribute);
131 // |context| is a parsing context used to resolve element/attribute names.
142 double GetDoubleValue(buzz::XmlParseContext* context, const char* attribute);
  /external/chromium_org/third_party/WebKit/Source/core/css/
WebKitCSSTransformValue.idl 56 readonly attribute unsigned short operationType;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
AtomicHTMLToken.h 30 #include "core/dom/Attribute.h"
68 Attribute* getAttributeItem(const QualifiedName& attributeName)
74 Vector<Attribute>& attributes()
80 const Vector<Attribute>& attributes() const
165 for (Vector<CompactHTMLToken::Attribute>::const_iterator it = token.attributes().begin(); it != token.attributes().end(); ++it) {
169 m_attributes.append(Attribute(name, AtomicString(it->value)));
189 AtomicHTMLToken(HTMLToken::Type type, const AtomicString& name, const Vector<Attribute>& attributes = Vector<Attribute>())
202 QualifiedName nameForAttribute(const HTMLToken::Attribute&) const;
220 Vector<Attribute> m_attributes
232 const HTMLToken::Attribute& attribute = attributes[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerGlobalScopeFileSystem.idl 36 [RuntimeEnabled=FileSystem] attribute FileErrorConstructor FileError;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglsync.c 59 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%04x", attr);
93 EGLint attribute, EGLint *value)
98 switch (attribute) {
  /external/chromium_org/tools/grit/grit/format/
js_map_format_unittest.py 30 element\u2019s \u201c<ph name="NAME">%s<ex>name</ex></ph>\u201d attribute
52 localizedStrings["element\u2019s \u201c%s\u201d attribute"] = "element\u2019s \u201c%s\u201d attribute";
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_formatted_writer.py 48 '''Adds a new attribute to the parent Element. If an attribute with the
52 attribute = doc.createAttribute(name)
53 attribute.value = value
54 parent.setAttributeNode(attribute)
  /external/chromium_org/ui/ozone/platform/egltest/
eglplatform_shim_xeleven.cc 70 bool ShimQueryWindow(ShimNativeWindowId window_id, int attribute, int* value) {
72 switch (attribute) {
  /external/deqp/framework/egl/
egluApiPrototypes.inl 12 EGLBoolean eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value);
17 EGLBoolean eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint* value);
23 EGLBoolean eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value);
33 EGLBoolean eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint* value);
  /external/libsepol/tests/policies/test-expander/
base-base-only.conf 35 attribute myattr;
  /external/llvm/test/MC/ARM/
directive-cpu.s 4 @ CHECK: Name: .ARM.attribute
directive-fpu.s 4 @ CHECK: Name: .ARM.attribute
  /external/mesa3d/src/egl/main/
eglsync.c 59 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%04x", attr);
93 EGLint attribute, EGLint *value)
98 switch (attribute) {
  /external/proguard/src/proguard/classfile/attribute/
Attribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This abstract class represents an attribute that is attached to a class,
28 * a class member, or a code attribute. Specific types of attributes are
34 public abstract class Attribute implements VisitorAccepter
47 * Create an uninitialized Attribute.
49 protected Attribute()
55 * Create an initialized Attribute.
57 protected Attribute(int u2attributeNameIndex)
64 * Returns the String name of the attribute
    [all...]
LineNumberTableAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents a line number table attribute.
31 public class LineNumberTableAttribute extends Attribute
130 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/attribute/annotation/
Annotation.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
EnumConstantElementValue.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.Annotation;
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.annotation.visitor.*;
27 import proguard.classfile.attribute.preverification.*;
28 import proguard.classfile.attribute.preverification.visitor.*;
29 import proguard.classfile.attribute.visitor.*;
103 public void visitAnyAttribute(Clazz clazz, Attribute attribute)
105 clean(attribute);
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 28 * attribute() - the attribute options
81 const AttributeOption& attribute() const { return m_Attribute; } function in class:mcld::LinkerConfig
82 AttributeOption& attribute() { return m_Attribute; } function in class:mcld::LinkerConfig
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value )
13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value )
19 EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value )
29 EGLBoolean eglQueryContext ( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value )
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS03.java 81 Attr attribute; local
102 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);

Completed in 1938 milliseconds

<<31323334353637383940>>