HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 851 - 875 of 1285) sorted by null

<<31323334353637383940>>

  /frameworks/base/tools/aapt2/flatten/
TableFlattener.cpp 83 void visit(Attribute* attr) override {
102 for (Attribute::Symbol& s : attr->symbols) {
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 441 Attribute.push_back(PAL);
442 Entry = Attribute.size();
445 // Do lookups for all attribute groups.
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 441 Attribute.push_back(PAL);
442 Entry = Attribute.size();
445 // Do lookups for all attribute groups.
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 441 Attribute.push_back(PAL);
442 Entry = Attribute.size();
445 // Do lookups for all attribute groups.
  /hardware/libhardware/include/hardware/
hwcomposer2.h 291 static inline const char* getAttributeName(hwc2_attribute_t attribute) {
292 switch (attribute) {
514 enum class Attribute : int32_t {
522 TO_STRING(hwc2_attribute_t, Attribute, getAttributeName)
    [all...]
  /external/llvm/test/Bindings/OCaml/
core.ml 750 add_param_attr p1 Attribute.Sext;
751 add_param_attr p2 Attribute.Noalias;
752 remove_param_attr p2 Attribute.Noalias;
753 add_function_attr f Attribute.Nounwind;
754 add_function_attr f Attribute.Noreturn;
755 remove_function_attr f Attribute.Noreturn;
961 group "function attribute";
963 ignore (add_function_attr fn Attribute.UWTable);
967 insist ([Attribute.UWTable] = function_attr fn);
    [all...]
  /external/llvm/include/llvm/IR/
Statepoint.h 179 /// \brief Return true if the call or the callee has the given attribute.
180 bool paramHasAttr(unsigned i, Attribute::AttrKind A) const {
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 382 F->hasFnAttribute(Attribute::StackAlignment));
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 137 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
418 MCSymbolAttr Attribute) {
419 switch (Attribute) {
420 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
429 return false; // Symbol attribute not supported
433 switch (Attribute) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 272 if (F.isDeclaration() || F.hasFnAttribute(Attribute::OptimizeNone))
  /external/llvm/unittests/CodeGen/
DIEHashTest.cpp 686 PIBlock.addValue(Alloc, (dwarf::Attribute)0, dwarf::DW_FORM_data1, Blk1);
687 PIBlock.addValue(Alloc, (dwarf::Attribute)0, dwarf::DW_FORM_data1, Blk2);
688 PIBlock.addValue(Alloc, (dwarf::Attribute)0, dwarf::DW_FORM_data1, Blk3);
689 PIBlock.addValue(Alloc, (dwarf::Attribute)0, dwarf::DW_FORM_data1, Blk4);
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 21 package proguard.classfile.attribute.visitor;
24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.preverification.*;
33 * only when the visited attribute has a name that that matches a given regular
47 * @param regularExpression the regular expression against which attribute
62 * @param regularExpression the regular expression against which attribute
78 * attribute names will be matched.
463 private boolean accepted(Clazz clazz, Attribute attribute)
    [all...]
  /external/proguard/src/proguard/classfile/editor/
MemberReferenceFixer.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.annotation.visitor.*;
27 import proguard.classfile.attribute.visitor.AttributeVisitor;
291 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/proguard/src/proguard/classfile/util/
DynamicClassReferenceInitializer.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
375 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
412 * given code attribute match with the given instruction matcher.
  /external/proguard/src/proguard/obfuscate/
ClassObfuscator.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
177 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
73 * It will run this evaluator on every code attribute that it visits.
186 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/proguard/src/proguard/optimize/peephole/
TargetClassChanger.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.annotation.visitor.*;
27 import proguard.classfile.attribute.visitor.*;
249 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /frameworks/base/tools/aapt2/
Debug.cpp 37 void visit(Attribute* attr) override {
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 73 // Transform the attribute reference so that it is using the fully qualified package
80 // Find the attribute in the symbol table and check if it is visible from this callsite.
89 // attribute it is set to.
91 symbol->attribute.get());
96 // Now verify that the type of this item is compatible with the attribute it
99 if (!symbol->attribute->matches(entry.value.get(), nullptr)) {
100 // The actual type of this item is incompatible with the attribute.
105 symbol->attribute->matches(entry.value.get(), &msg);
112 msg << "style attribute '";
135 * Attribute. If a non RawString value is passed in, this is an identity transform
    [all...]
  /frameworks/base/tools/aapt2/xml/
XmlPullParser.cpp 187 * Extracts the namespace and name of an expanded element or attribute name.
228 Attribute attribute; local
229 splitName(*attrs++, attribute.namespaceUri, attribute.name);
230 attribute.value = util::utf8ToUtf16(*attrs++);
233 auto iter = std::lower_bound(data.attributes.begin(), data.attributes.end(), attribute);
234 data.attributes.insert(iter, std::move(attribute));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authz.h 168 } Attribute;
  /external/llvm/bindings/python/llvm/
core.py 74 class Attribute(LLVMEnumeration):
75 """Represents an individual Attribute enumeration."""
80 super(Attribute, self).__init__(name, value)
593 (Attribute, enumerations.Attributes),
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 56 .removeAttribute(Attribute::NoAlias).hasAttributes())
60 if (CallerAttrs.hasAttribute(AttributeSet::ReturnIndex, Attribute::ZExt) ||
61 CallerAttrs.hasAttribute(AttributeSet::ReturnIndex, Attribute::SExt))
68 /// \brief Set CallLoweringInfo attribute flags based on a call instruction
72 isSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt);
73 isZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt);
74 isInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg);
75 isSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet);
76 isNest = CS->paramHasAttr(AttrIdx, Attribute::Nest);
77 isByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal)
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 272 /// RefUnit by \p Attr. The attribute should be fixed up later to
285 /// \brief Keep track of a DW_AT_range attribute that we will need to
289 /// \brief Keep track of a location attribute pointing to a location
350 /// offset isn't known you emit the reference attribute.
538 /// the DW_TAG_compile_unit's DW_AT_ranges attribute.
750 /// compile_unit level DW_AT_ranges attribute (Which are basically the
    [all...]

Completed in 3827 milliseconds

<<31323334353637383940>>