HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 176 - 200 of 686) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/svg/
SVGTextPositioningElement.h 38 virtual void parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedPropertySynchronizer.h 39 Attribute* old = namedAttrMap->getAttributeItem(attrName);
  /external/webkit/Source/WebCore/wml/
WMLElement.h 38 virtual void parseMappedAttribute(Attribute*);
WMLGoElement.h 43 virtual void parseMappedAttribute(Attribute*);
WMLOptGroupElement.h 43 virtual void parseMappedAttribute(Attribute*);
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 29 /// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
32 /// Attribute - Dwarf attribute code.
34 uint16_t Attribute;
40 DIEAbbrevData(uint16_t A, uint16_t F) : Attribute(A), Form(F) {}
43 uint16_t getAttribute() const { return Attribute; }
83 /// AddAttribute - Adds another set of attribute information to the
85 void AddAttribute(uint16_t Attribute, uint16_t Form) {
86 Data.push_back(DIEAbbrevData(Attribute, Form));
89 /// AddFirstAttribute - Adds a set of attribute information to the fron
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
FieldSourcer.java 20 import org.objectweb.asm.Attribute;
53 public void visitAttribute(Attribute attr) {
54 mOutput.write("%s /* non-standard attribute */ ", attr.type);
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AllAnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
50 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.h 101 virtual void parseMappedAttribute(Attribute*);
110 virtual bool isURLAttribute(Attribute*) const;
HTMLBodyElement.h 74 virtual void parseMappedAttribute(Attribute*);
80 virtual bool isURLAttribute(Attribute*) const;
HTMLImageElement.h 84 virtual void parseMappedAttribute(Attribute*);
91 virtual bool isURLAttribute(Attribute*) const;
HTMLTableElement.h 75 virtual void parseMappedAttribute(Attribute*);
76 virtual bool isURLAttribute(Attribute*) const;
HTMLFormControlElement.h 104 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
112 virtual void parseMappedAttribute(Attribute*);
221 virtual void parseMappedAttribute(Attribute*);
HTMLIFrameElement.cpp 28 #include "Attribute.h"
70 static SandboxFlags parseSandboxAttribute(Attribute* attribute)
72 if (attribute->isNull())
77 const UChar* characters = attribute->value().characters();
78 unsigned length = attribute->value().length();
106 void HTMLIFrameElement::parseMappedAttribute(Attribute* attr)
160 bool HTMLIFrameElement::isURLAttribute(Attribute* attr) const
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorTest.java 155 * @tests java.text.AttributedCharacterIterator#getRunLimit(java.text.AttributedCharacterIterator$Attribute)
157 public void test_getRunLimitLjava_text_AttributedCharacterIterator$Attribute() {
159 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
163 2, it.getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
166 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
170 4, it.getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
29 * This Attribute represents a code attribute.
33 public class CodeAttribute extends Attribute
42 public Attribute[] attributes;
64 Attribute[] attributes)
80 * Returns the (first) attribute with the given name.
82 public Attribute getAttribute(Clazz clazz, String name)
86 Attribute attribute = attributes[index] local
    [all...]
EnclosingMethodAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
28 * This Attribute represents an enclosing method attribute.
32 public class EnclosingMethodAttribute extends Attribute
126 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/editor/
MemberAdder.java 24 import proguard.classfile.attribute.Attribute;
45 private static final Attribute[] EMPTY_ATTRIBUTES = new Attribute[0];
138 new Attribute[programField.u2attributesCount] :
226 new Attribute[programMethod.u2attributesCount] :
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.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.*;
148 programClass.attributes = new Attribute[programClass.u2attributesCount];
151 Attribute attribute = createAttribute(programClass); local
152 attribute.accept(programClass, this)
178 Attribute attribute = createAttribute(programClass); local
198 Attribute attribute = createAttribute(programClass); local
385 Attribute attribute = createAttribute(clazz); local
774 Attribute attribute = local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 69 * Maps attribute name to the location of the attribute in the shader.
71 private IntMap<Attribute> attribs;
222 attribs = new IntMap<Attribute>();
236 //attribs = new IntMap<Attribute>();
257 attribs = (IntMap<Attribute>) ic.readIntSavableMap("attribs", null);
335 public Attribute getAttribute(VertexBuffer.Type attribType){
337 Attribute attrib = attribs.get(ordinal);
339 attrib = new Attribute();
354 // public Collection<Attribute> getAttributes() {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 73 module Attribute = struct
655 let pack_attr (attr:Attribute.t) : int32 =
657 Attribute.Zext -> Int32.shift_left 1l 0
658 | Attribute.Sext -> Int32.shift_left 1l 1
659 | Attribute.Noreturn -> Int32.shift_left 1l 2
660 | Attribute.Inreg -> Int32.shift_left 1l 3
661 | Attribute.Structret -> Int32.shift_left 1l 4
662 | Attribute.Nounwind -> Int32.shift_left 1l 5
663 | Attribute.Noalias -> Int32.shift_left 1l 6
664 | Attribute.Byval -> Int32.shift_left 1l
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 164 // Return true if this attribute is in the attributes map.
165 bool HasAttribute(WebAccessibility::Attribute attribute);
167 // Retrieve the string value of an attribute from the attribute map and
169 bool GetAttribute(WebAccessibility::Attribute attribute, string16* value);
171 // Retrieve the value of an attribute from the attribute map and
173 // Returns true only if both the attribute was found and it was successfull
    [all...]
  /external/webkit/Source/WebCore/dom/
InputElement.h 29 class Attribute;
82 // This should be applied to values from the HTML value attribute and the DOM value property.
99 static void parseSizeAttribute(InputElementData&, Element*, Attribute*);
100 static void parseMaxLengthAttribute(InputElementData&, InputElement*, Element*, Attribute*);
StyledElement.cpp 27 #include "Attribute.h"
73 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr)
87 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl)
123 PassRefPtr<Attribute> StyledElement::createAttribute(const QualifiedName& name, const AtomicString& value)
125 return Attribute::createMapped(name, value);
145 void StyledElement::attributeChanged(Attribute* attr, bool preserveDecls)
181 // parseMappedAttribute() might create a CSSMappedAttributeDeclaration on the attribute.
185 // webarchive/adopt-attribute-styled-node-webarchive.html should catch any resulting crashes.
234 void StyledElement::parseMappedAttribute(Attribute* attr)
262 void StyledElement::addCSSProperty(Attribute* attribute, int id, const String &value
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 41 import com.android.dx.cf.iface.Attribute;
63 * all the standard attribute types.
80 protected Attribute parse0(DirectClassFile cf, int context, String name,
193 * Parses an {@code AnnotationDefault} attribute.
195 private Attribute annotationDefault(DirectClassFile cf,
209 * Parses a {@code Code} attribute.
211 private Attribute code(DirectClassFile cf, int offset, int length,
313 * Parses a {@code ConstantValue} attribute.
315 private Attribute constantValue(DirectClassFile cf, int offset, int length,
325 Attribute result = new AttConstantValue(cst)
    [all...]

Completed in 1009 milliseconds

1 2 3 4 5 6 78 91011>>