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

<<11121314151617181920>>

  /external/llvm/include/llvm/
Attributes.h 25 namespace Attribute {
39 } // namespace Attribute
47 /*implicit*/ Attributes(Attribute::AttrConst Val) : Bits(Val.v) { }
86 namespace Attribute {
145 /// unwind table. The nounwind attribute is about an exception passing by the
194 /// This returns the alignment field of an attribute as a byte alignment value.
196 Attributes Align = A & Attribute::Alignment;
215 /// This returns the stack alignment field of an attribute as a byte alignment
218 Attributes StackAlign = A & Attribute::StackAlignment;
229 /// @brief Convert attribute bits to tex
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.h 35 class Attribute;
82 // These four attribute event handler attributes are overridden by HTMLBodyElement
122 // Call this to get the value of an attribute that is known not to be the style
123 // attribute or one of the SVG animatable attributes.
142 // Call this to get the value of the id attribute for style resolution purposes.
219 // This method is called whenever an attribute is added, changed or removed.
220 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
242 void dispatchAttrRemovalEvent(Attribute*);
243 void dispatchAttrAdditionEvent(Attribute*);
247 virtual bool isURLAttribute(Attribute*) const
    [all...]
DatasetDOMStringMap.cpp 29 #include "Attribute.h"
79 const UChar* attribute = attributeName.characters(); local
87 if (attribute[a] == '-' && a + 1 < attributeLength && attribute[a + 1] != '-')
90 if ((wordBoundary ? toASCIIUpper(attribute[a]) : attribute[a]) != property[p])
152 Attribute* attribute = attributeMap->attributeItem(i); local
153 if (isValidAttributeName(attribute->localName()))
154 names.append(convertAttributeNameToPropertyName(attribute->localName()))
165 Attribute* attribute = attributeMap->attributeItem(i); local
180 Attribute* attribute = attributeMap->attributeItem(i); local
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.cc 185 WebAccessibility::Attribute attribute) {
186 return (attributes_.find(attribute) != attributes_.end());
190 WebAccessibility::Attribute attribute, string16* value) {
191 std::map<int32, string16>::iterator iter = attributes_.find(attribute);
201 WebAccessibility::Attribute attribute, int* value_int) {
204 if (!GetAttribute(attribute, &value_str))
  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.h 36 class Attribute;
81 void appendAttributeValue(Vector<UChar>& result, const String& attribute, bool documentIsHTML);
85 bool shouldAddNamespaceAttribute(const Attribute&, Namespaces&);
95 void appendAttribute(Vector<UChar>& out, Element* element, const Attribute&, Namespaces*);
  /external/webkit/Source/WebCore/html/
HTMLScriptElement.cpp 26 #include "Attribute.h"
51 bool HTMLScriptElement::isURLAttribute(Attribute* attr) const
62 void HTMLScriptElement::attributeChanged(Attribute* attr, bool preserveDecls)
69 void HTMLScriptElement::parseMappedAttribute(Attribute* attr)
HTMLButtonElement.cpp 29 #include "Attribute.h"
82 void HTMLButtonElement::parseMappedAttribute(Attribute* attr)
93 // Don't map 'align' attribute. This matches what Firefox and IE do, but not Opera.
172 bool HTMLButtonElement::isURLAttribute(Attribute* attr) const
HTMLFormElement.h 126 virtual void parseMappedAttribute(Attribute*);
128 virtual bool isURLAttribute(Attribute*) const;
  /external/webkit/Tools/DumpRenderTree/qt/
TextInputControllerQt.cpp 135 QList<QInputMethodEvent::Attribute> attributes;
136 QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant());
144 QList<QInputMethodEvent::Attribute> attributes;
  /external/llvm/lib/CodeGen/
Analysis.cpp 259 if ((CalleeRetAttr ^ CallerRetAttr) & ~Attribute::NoAlias)
263 if ((CallerRetAttr & Attribute::ZExt) || (CallerRetAttr & Attribute::SExt))
299 if (CallerRetAttr & ~Attribute::NoAlias)
303 if ((CallerRetAttr & Attribute::ZExt) || (CallerRetAttr & Attribute::SExt))
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 19 import com.android.dx.cf.iface.Attribute;
33 /** attribute parsing context */
39 /** {@code non-null;} attribute factory to use */
56 * @param context attribute parsing context (see {@link AttributeFactory})
58 * @param attributeFactory {@code non-null;} attribute factory to use
141 Attribute attrib =
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 22 import org.objectweb.asm.Attribute;
138 public void visitAttribute(Attribute attr) {
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
ClassSourcer.java 20 import org.objectweb.asm.Attribute;
109 public void visitAttribute(Attribute attr) {
110 mOutput.write("%s /* non-standard class attribute */ ", attr.type);
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 95 if (Callee->hasFnAttr(Attribute::StackProtectReq))
96 Caller->addFnAttr(Attribute::StackProtectReq);
97 else if (Callee->hasFnAttr(Attribute::StackProtect) &&
98 !Caller->hasFnAttr(Attribute::StackProtectReq))
99 Caller->addFnAttr(Attribute::StackProtect);
209 Caller->hasFnAttr(Attribute::OptimizeForSize) &&
216 Callee->hasFnAttr(Attribute::InlineHint))
530 if (AlwaysInlineOnly && !F->hasFnAttr(Attribute::AlwaysInline))
  /external/proguard/src/proguard/classfile/util/
StringSharer.java 24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
53 // Replace attribute name strings in the constant pool by internalized
149 public void visitAnyAttribute(Clazz clazz, Attribute attribute)
151 // Put the internalized attribute's name string in the class pool.
152 name = attribute.getAttributeName(clazz).intern();
153 clazz.constantPoolEntryAccept(attribute.u2attributeNameIndex, this);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.cpp 34 #include "Attribute.h"
45 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node* node, Attribute* attr)
68 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame* frame, Attribute* attr)
  /external/webkit/Source/WebCore/wml/
WMLAElement.cpp 32 #include "Attribute.h"
61 void WMLAElement::parseMappedAttribute(Attribute* attr)
146 bool WMLAElement::isURLAttribute(Attribute *attr) const
WMLImageElement.cpp 26 #include "Attribute.h"
73 void WMLImageElement::parseMappedAttribute(Attribute* attr)
109 // If we have no image at all because we have no src attribute, set
133 bool WMLImageElement::isURLAttribute(Attribute* attr) const
  /libcore/luni/src/main/java/java/awt/font/
TextAttribute.java 23 import java.text.AttributedCharacterIterator.Attribute;
26 * The TextAttribute class defines attribute keys and attribute values
33 * <li>default action if the attribute is absent;</li>
37 public final class TextAttribute extends Attribute {
52 * The BACKGROUND text attribute.
56 /** The BIDI_EMBEDDING text attribute key. */
59 /** The CHAR_REPLACEMENT text attribute key. */
62 /** The FAMILY text attribute key. */
65 /** The FONT text attribute key. *
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RuleLabelScope.java 88 public Attribute getAttribute(String name) {
  /external/emma/core/java12/com/vladium/emma/report/
IItemAttribute.java 53 if ($assert.ENABLED) $assert.ASSERT (attributeID >= ATTRIBUTE_NAME_ID && attributeID <= ATTRIBUTE_LINE_COVERAGE_ID, "invalid attribute ID: " + attributeID);
66 private static abstract class Attribute implements IItemAttribute
73 protected Attribute (final String name)
86 private static final class NameAttribute extends Attribute
130 private static final class FractionAttribute extends Attribute
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
ISimpleElement.java 54 getAttributes ().set (Attribute.CLASS, classID);
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 53 if (F.paramHasAttr(Idx, Attribute::SExt)) {
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapTableAttribute.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
29 * This Attribute represents a stack map table attribute.
33 public class StackMapTableAttribute extends Attribute
67 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllAttributeVisitor.java 21 package proguard.classfile.attribute.visitor;
24 import proguard.classfile.attribute.*;
30 * AttributeVisitor visit all Attribute objects of the program classes,
110 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}

Completed in 954 milliseconds

<<11121314151617181920>>