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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/svg/
SVGViewElement.h 48 virtual void parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebCore/wml/
WMLTimerElement.h 38 virtual void parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebKit/chromium/src/
WebAttribute.cpp 34 #include "Attribute.h"
53 WebAttribute::WebAttribute(const PassRefPtr<Attribute>& other)
  /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...]
DeprecatedAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a deprecated attribute.
31 public class DeprecatedAttribute extends Attribute
50 // Implementations for Attribute.
ExceptionsAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
28 * This Attribute represents an exceptions attribute.
32 public class ExceptionsAttribute extends Attribute
60 // Implementations for Attribute.
InnerClassesAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents an inner classes attribute.
31 public class InnerClassesAttribute extends Attribute
60 // Implementations for Attribute.
SyntheticAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a synthetic attribute.
31 public class SyntheticAttribute extends Attribute
50 // Implementations for Attribute.
  /external/proguard/src/proguard/optimize/peephole/
RetargetedInnerClassAttributeRemover.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
53 Attribute[] attributes = programClass.attributes;
60 Attribute attribute = attributes[index]; local
62 // Check if it's an InnerClasses or EnclosingMethod attribute in
65 attribute.accept(programClass, this);
68 attributes[newAtributesCount++] = attribute;
85 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLObjectElement.h 61 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
69 virtual void parseMappedAttribute(Attribute*);
80 virtual bool isURLAttribute(Attribute*) const;
HTMLParamElement.cpp 26 #include "Attribute.h"
50 void HTMLParamElement::parseMappedAttribute(Attribute* attr)
66 bool HTMLParamElement::isURLAttribute(Attribute* attr) const
69 Attribute* attr = attributes()->getAttributeItem(nameAttr);
HTMLElement.h 80 static void addHTMLAlignmentToStyledElement(StyledElement*, Attribute*);
89 void addHTMLAlignment(Attribute*);
92 virtual void parseMappedAttribute(Attribute*);
99 void setContentEditable(Attribute*);
106 void dirAttributeChanged(Attribute*);
HTMLBlockquoteElement.cpp 48 bool HTMLBlockquoteElement::isURLAttribute(Attribute* attribute) const
50 return attribute->name() == citeAttr;
HTMLDataGridColElement.h 65 virtual void parseMappedAttribute(Attribute*);
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 40 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
41 AWI[1] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
42 Attribute::NoUnwind);
63 AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
81 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
82 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
83 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
84 Attribute::NoUnwind);
107 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 78 /// need DW_AT_containing_type attribute. This attribute points to a DIE that
179 /// addUInt - Add an unsigned integer attribute data and value.
181 void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
183 /// addSInt - Add an signed integer attribute data and value.
185 void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
187 /// addString - Add a string attribute data and value.
189 void addString(DIE *Die, unsigned Attribute, const StringRef Str);
191 /// addLabel - Add a Dwarf label attribute data and value.
193 void addLabel(DIE *Die, unsigned Attribute, unsigned Form
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_Format.java 23 import java.text.AttributedCharacterIterator.Attribute;
81 * which stores start and end indexes and an attribute this range
90 Iterator<Attribute> it = iterator.getAttributes().keySet().iterator();
92 AttributedCharacterIterator.Attribute attribute = it.next(); local
93 Object value = iterator.getAttribute(attribute);
94 result.add(new FieldContainer(start, end, attribute, value));
95 // System.out.println(start + " " + end + ": " + attribute + ",
98 // end +"," + attribute+ "," + value+ "));");
108 AttributedCharacterIterator.Attribute attribute field in class:Support_Format.FieldContainer
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 41 .set (Attribute.HTTP_EQUIV, "Content-Type")
42 .set (Attribute.CONTENT, "text/html; charset=" + encoding);
50 //getAttributes ().set (Attribute.TITLE, title);
121 style.getAttributes ().set (Attribute.TYPE, "text/css");
144 link.getAttributes ().set (Attribute.TYPE, type); // TODO: escape
145 link.getAttributes ().set (Attribute.HREF, href); // TODO: escape
146 link.getAttributes ().set (Attribute.SRC, href); // TODO: escape
176 hr.getAttributes ().set (Attribute.SIZE, size);
  /libcore/support/src/test/java/tests/support/
Support_Format.java 23 import java.text.AttributedCharacterIterator.Attribute;
81 * which stores start and end indexes and an attribute this range
90 Iterator<Attribute> it = iterator.getAttributes().keySet().iterator();
92 AttributedCharacterIterator.Attribute attribute = it.next(); local
93 Object value = iterator.getAttribute(attribute);
94 result.add(new FieldContainer(start, end, attribute, value));
95 // System.out.println(start + " " + end + ": " + attribute + ",
98 // end +"," + attribute+ "," + value+ "));");
108 AttributedCharacterIterator.Attribute attribute field in class:Support_Format.FieldContainer
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Attribute.java 34 public class Attribute {
41 /** The name of the attribute "foo" */
44 /** The optional attribute intialization expression */
47 public Attribute(String decl) {
51 public Attribute(String name, String decl) {
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 22 #define ATTRIBUTE(_attr) { _attr, #_attr }
24 struct Attribute {
25 EGLint attribute; member in struct:Attribute
29 Attribute attributes[] = {
30 ATTRIBUTE( EGL_BUFFER_SIZE ),
31 ATTRIBUTE( EGL_ALPHA_SIZE ),
32 ATTRIBUTE( EGL_BLUE_SIZE ),
33 ATTRIBUTE( EGL_GREEN_SIZE ),
34 ATTRIBUTE( EGL_RED_SIZE ),
35 ATTRIBUTE( EGL_DEPTH_SIZE )
    [all...]
  /external/proguard/src/proguard/classfile/editor/
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/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) {}
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.h 105 struct Attribute
107 Attribute() : type(GL_NONE), name("")
111 Attribute(GLenum type, const std::string &name) : type(type), name(name)
119 typedef std::vector<Attribute> AttributeArray;

Completed in 1061 milliseconds

1 2 3 4 56 7 8 91011>>