HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 1 - 25 of 769) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 41 * Get the {@code n}th attribute.
43 * @param n {@code n >= 0, n < size();} which attribute
44 * @return {@code non-null;} the attribute in question
46 public Attribute get(int n);
58 * Get the first attribute in the list with the given name, if any.
60 * @param name {@code non-null;} attribute name
61 * @return {@code null-ok;} first attribute in the list with the given name,
64 public Attribute findFirst(String name);
67 * Get the next attribute in the list after the given one, with the same
70 * @param attrib {@code non-null;} attribute to start looking afte
    [all...]
Attribute.java 22 public interface Attribute {
24 * Get the name of the attribute.
31 * Get the total length of the attribute in bytes, including the
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/
AttributeList.java 41 * Get the {@code n}th attribute.
43 * @param n {@code n >= 0, n < size();} which attribute
44 * @return {@code non-null;} the attribute in question
46 public Attribute get(int n);
58 * Get the first attribute in the list with the given name, if any.
60 * @param name {@code non-null;} attribute name
61 * @return {@code null-ok;} first attribute in the list with the given name,
64 public Attribute findFirst(String name);
67 * Get the next attribute in the list after the given one, with the same
70 * @param attrib {@code non-null;} attribute to start looking afte
    [all...]
Attribute.java 22 public interface Attribute {
24 * Get the name of the attribute.
31 * Get the total length of the attribute in bytes, including the
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Attribute.java 36 * An attribute is a shader variable mapping to a VertexBuffer data
41 public class Attribute extends ShaderVariable {
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 7 * $Id: Attribute.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Attribute implements IContent
22 public static final Attribute ID = new AttributeImpl ("ID");
23 public static final Attribute NAME = new AttributeImpl ("NAME");
24 public static final Attribute TITLE = new AttributeImpl ("TITLE");
25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
26 public static final Attribute CLASS = new AttributeImpl ("CLASS");
27 public static final Attribute HTTP_EQUIV = new AttributeImpl ("HTTP-EQUIV");
28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
29 public static final Attribute HREF = new AttributeImpl ("HREF")
    [all...]
  /external/llvm/unittests/IR/
AttributesTest.cpp 20 Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline);
21 Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
25 AttributeSet::get(C, 1, Attribute::ZExt),
26 AttributeSet::get(C, 2, Attribute::SExt)
  /external/webkit/Source/WebCore/svg/
SVGExternalResourcesRequired.h 27 class Attribute;
31 // The SVG DOM defines the attribute externalResourcesRequired as being of type SVGAnimatedBoolean, whereas the
39 bool parseMappedAttribute(Attribute*);
SVGURIReference.h 30 class Attribute;
36 bool parseMappedAttribute(Attribute*);
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 40 public static class Attribute implements Serializable {
45 * This attribute marks segments from an input method. Most input
51 public static final Attribute INPUT_METHOD_SEGMENT = new Attribute("input_method_segment");
54 * The attribute describing the language of a character. The value
57 public static final Attribute LANGUAGE = new Attribute("language");
61 * Japanese), this attribute allows to define which reading should be
65 public static final Attribute READING = new Attribute("reading")
    [all...]
  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 14 #include <mcld/MC/Attribute.h>
24 const Attribute& predefined() const { return m_Predefined; }
25 Attribute& predefined() { return m_Predefined; }
31 Attribute m_Predefined;
  /frameworks/compile/mclinker/include/mcld/MC/
AttributeSet.h 19 class Attribute;
22 * \brief AttributeSet is a set of Attribute.
30 typedef std::vector<Attribute*> AttrSet;
37 AttributeSet(unsigned int pNum, const Attribute& pPredefined);
47 // exists- return the recorded attribute whose content is identical to the
48 // input attribute.
49 Attribute *exists(const Attribute& pAttr) const;
51 // record - record the attribute no mater if it has been recorded.
52 void record(Attribute& pAttr)
    [all...]
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 9 #include <mcld/MC/Attribute.h>
18 bool AttrConstraint::isLegal(const Attribute& pAttr) const
52 const Attribute& pBase,
102 const Attribute *&pBase,
103 Attribute *&pCopy)
105 Attribute *result = pParent.exists(*pCopy);
118 Attribute *copy = new Attribute(*m_pBase);
125 Attribute *copy = new Attribute(*m_pBase)
    [all...]
AttributeSet.cpp 9 #include <mcld/MC/Attribute.h>
18 AttributeSet::AttributeSet(unsigned int pNum, const Attribute& pPredefined)
34 Attribute* AttributeSet::exists(const Attribute& pAttr) const
37 return const_cast<Attribute*>(&m_Predefined);
50 void AttributeSet::record(mcld::Attribute &pAttr)
  /external/llvm/lib/DebugInfo/
DWARFAttribute.h 18 uint16_t Attribute;
22 : Attribute(attr), Form(form) {}
24 uint16_t getAttribute() const { return Attribute; }
DWARFAbbreviationDeclaration.h 25 SmallVector<DWARFAttribute, 8> Attribute;
34 uint32_t getNumAttributes() const { return Attribute.size(); }
36 return Attribute.size() > idx ? Attribute[idx].getAttribute() : 0;
39 return Attribute.size() > idx ? Attribute[idx].getForm() : 0;
48 return Attribute;
  /external/webkit/Source/WebCore/bindings/js/
ScriptEventListener.h 41 class Attribute;
46 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node*, Attribute*);
47 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Frame*, Attribute*);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.h 40 class Attribute;
46 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, Attribute*);
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, Attribute*);
  /external/webkit/Source/WebCore/dom/
Attribute.cpp 25 #include "Attribute.h"
34 typedef HashMap<Attribute*, Attr*> AttributeAttrMap;
41 PassRefPtr<Attribute> Attribute::clone() const
43 return adoptRef(new Attribute(m_name, m_value, m_isMappedAttribute, m_styleDecl.get()));
46 Attr* Attribute::attr() const
49 ASSERT(attributeAttrMap().contains(const_cast<Attribute*>(this)));
50 return attributeAttrMap().get(const_cast<Attribute*>(this));
53 ASSERT(!attributeAttrMap().contains(const_cast<Attribute*>(this)));
57 PassRefPtr<Attr> Attribute::createAttrIfNeeded(Element* e
    [all...]
StyledElement.h 33 class Attribute;
44 void addCSSLength(Attribute*, int id, const String& value);
45 void addCSSProperty(Attribute*, int id, const String& value);
46 void addCSSProperty(Attribute*, int id, int value);
47 void addCSSImageProperty(Attribute*, int propertyID, const String& url);
48 void addCSSColor(Attribute*, int id, const String& color);
54 static CSSMappedAttributeDeclaration* getMappedAttributeDecl(MappedAttributeEntry, Attribute*);
55 static void setMappedAttributeDecl(MappedAttributeEntry, Attribute*, CSSMappedAttributeDeclaration*);
68 virtual PassRefPtr<Attribute> createAttribute(const QualifiedName&, const AtomicString& value);
76 virtual void attributeChanged(Attribute*, bool preserveDecls = false)
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 11 // \brief This file implements the Attribute, AttributeImpl, AttrBuilder,
30 // Attribute Construction Methods
33 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
52 // Return the Attribute that we found or created.
53 return Attribute(PA);
56 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) {
72 // Return the Attribute that we found or created
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorTest.java 34 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
37 HashSet<AttributedCharacterIterator.Attribute> attr =
38 new HashSet<AttributedCharacterIterator.Attribute>();
39 attr.add(AttributedCharacterIterator.Attribute.LANGUAGE);
44 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
50 attr.add(AttributedCharacterIterator.Attribute.READING);
58 Set<AttributedCharacterIterator.Attribute> emptyAttributes =
64 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE,
68 Set<AttributedCharacterIterator.Attribute> attributes =
70 for(AttributedCharacterIterator.Attribute attr:attributes)
77 Object attribute = local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 34 using Attribute = System.Attribute;
39 public sealed class GrammarRuleAttribute : Attribute {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 35 using Attribute = System.Attribute;
40 public sealed class GrammarRuleAttribute : Attribute

Completed in 1350 milliseconds

1 2 3 4 5 6 7 8 91011>>