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

1 2 3 4 5 6 78 91011>>

  /external/proguard/src/proguard/classfile/editor/
MemberAdder.java 24 import proguard.classfile.attribute.Attribute;
46 private static final Attribute[] EMPTY_ATTRIBUTES = new Attribute[0];
160 new Attribute[programField.u2attributesCount] :
257 new Attribute[programMethod.u2attributesCount] :
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 165 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) {
167 Die.addValue(Attribute, dwarf::DW_FORM_flag_present, DIEIntegerOne);
169 Die.addValue(Attribute, dwarf::DW_FORM_flag, DIEIntegerOne);
172 /// addUInt - Add an unsigned integer attribute data and value.
174 void DwarfUnit::addUInt(DIE &Die, dwarf::Attribute Attribute,
180 Die.addValue(Attribute, *Form, Value);
184 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
187 /// addSInt - Add an signed integer attribute data and value
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
AttributeCollection.h 37 #include "core/dom/Attribute.h"
79 typedef const Attribute ValueType;
81 AttributeArray(const Attribute* array, unsigned size)
86 const Attribute* data() const { return m_array; }
90 const Attribute* m_array;
100 AttributeCollection(const Attribute* array, unsigned size)
105 typedef Vector<Attribute, 4> AttributeVector;
119 m_attributes.append(Attribute(name, value));
153 // Optimize for the case where the attribute exists and its name exactly matches.
186 // This relies on the fact that Attr's QualifiedName == the Attribute's name
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 77 module Attribute = struct
727 let pack_attr (attr:Attribute.t) : int32 =
729 Attribute.Zext -> Int32.shift_left 1l 0
730 | Attribute.Sext -> Int32.shift_left 1l 1
731 | Attribute.Noreturn -> Int32.shift_left 1l 2
732 | Attribute.Inreg -> Int32.shift_left 1l 3
733 | Attribute.Structret -> Int32.shift_left 1l 4
734 | Attribute.Nounwind -> Int32.shift_left 1l 5
735 | Attribute.Noalias -> Int32.shift_left 1l 6
736 | Attribute.Byval -> Int32.shift_left 1l
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
RetargetedInnerClassAttributeRemover.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
55 Attribute[] attributes = programClass.attributes;
62 Attribute attribute = attributes[index]; local
64 // Check if it's an InnerClasses or EnclosingMethod attribute in
67 attribute.accept(programClass, this);
70 attributes[newAtributesCount++] = attribute;
84 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 132 void emitAttribute(unsigned Attribute, unsigned Value) override;
133 void emitTextAttribute(unsigned Attribute, StringRef String) override;
134 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
208 void ARMTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
209 OS << "\t.eabi_attribute\t" << Attribute << ", " << Twine(Value);
211 StringRef Name = ARMBuildAttrs::AttrTypeAsString(Attribute);
217 void ARMTargetAsmStreamer::emitTextAttribute(unsigned Attribute,
219 switch (Attribute) {
224 OS << "\t.eabi_attribute\t" << Attribute << ", \"" << String << "\"";
226 StringRef Name = ARMBuildAttrs::AttrTypeAsString(Attribute);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 41 import com.android.dx.cf.iface.Attribute;
62 * all the standard attribute types.
79 protected Attribute parse0(DirectClassFile cf, int context, String name,
192 * Parses an {@code AnnotationDefault} attribute.
194 private Attribute annotationDefault(DirectClassFile cf,
208 * Parses a {@code Code} attribute.
210 private Attribute code(DirectClassFile cf, int offset, int length,
312 * Parses a {@code ConstantValue} attribute.
314 private Attribute constantValue(DirectClassFile cf, int offset, int length,
324 Attribute result = new AttConstantValue(cst)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBodyElement.h 58 virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
HTMLTableCellElement.h 62 virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
HTMLTrackElement.h 70 virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.h 57 virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
  /external/chromium_org/third_party/angle/src/compiler/translator/
Compiler.h 71 const std::vector<sh::Attribute> &getAttributes() const { return attributes; }
72 const std::vector<sh::Attribute> &getOutputVariables() const { return outputVariables; }
139 std::vector<sh::Attribute> attributes;
140 std::vector<sh::Attribute> outputVariables;
  /external/chromium_org/third_party/angle/src/libGLESv2/
Shader.cpp 170 const std::vector<sh::Attribute> &Shader::getActiveAttributes() const
175 const std::vector<sh::Attribute> &Shader::getActiveOutputVariables() const
195 std::vector<sh::Attribute> &Shader::getActiveAttributes()
200 std::vector<sh::Attribute> &Shader::getActiveOutputVariables()
  /external/llvm/lib/Object/
RecordStreamer.h 35 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 60 cl::desc("Threshold for inlining functions with cold attribute"));
87 // If upgrading the SSP attribute, clear out the old SSP Attributes first.
91 B.addAttribute(Attribute::StackProtect)
92 .addAttribute(Attribute::StackProtectStrong);
100 Attribute::StackProtectReq)) {
102 Caller->addFnAttr(Attribute::StackProtectReq);
104 Attribute::StackProtectStrong) &&
106 Attribute::StackProtectReq)) {
108 Caller->addFnAttr(Attribute::StackProtectStrong);
110 Attribute::StackProtect) &
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 135 Attribute::NoUnwind);
155 Attribute::NoUnwind);
172 Attribute::NoUnwind);
173 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassVisitor.java 106 * Visits a non standard attribute of the class.
108 * @param attr an attribute.
110 void visitAttribute(Attribute attr);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
UndeclaredThrowableStrategy.java 18 import org.mockito.asm.Attribute;
  /external/proguard/src/proguard/classfile/attribute/
BootstrapMethodsAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
28 * This Attribute represents a bootstrap methods attribute.
32 public class BootstrapMethodsAttribute extends Attribute
60 // Implementations for Attribute.
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.
LocalVariableTableAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents a local variable table attribute.
31 public class LocalVariableTableAttribute extends Attribute
59 // Implementations for Attribute.
LocalVariableTypeTableAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents a local variable table type attribute.
31 public class LocalVariableTypeTableAttribute extends Attribute
59 // Implementations for Attribute.
SignatureAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
28 * This Attribute represents a signature attribute.
32 public class SignatureAttribute extends Attribute
84 // Implementations for Attribute.
UnknownAttribute.java 21 package proguard.classfile.attribute;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
28 * This Attribute represents an unknown attribute.
32 public class UnknownAttribute extends Attribute
61 // Implementations for Attribute.

Completed in 869 milliseconds

1 2 3 4 5 6 78 91011>>