HomeSort by relevance Sort by last modified time
    Searched refs:Attrs (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/llvm/lib/VMCore/
Attributes.cpp 29 std::string Attribute::getAsString(Attributes Attrs) {
31 if (Attrs & Attribute::ZExt)
33 if (Attrs & Attribute::SExt)
35 if (Attrs & Attribute::NoReturn)
37 if (Attrs & Attribute::NoUnwind)
39 if (Attrs & Attribute::UWTable)
41 if (Attrs & Attribute::ReturnsTwice)
43 if (Attrs & Attribute::InReg)
45 if (Attrs & Attribute::NoAlias)
47 if (Attrs & Attribute::NoCapture
    [all...]
Verifier.cpp 305 void VerifyParameterAttrs(Attributes Attrs, Type *Ty,
307 void VerifyFunctionAttrs(FunctionType *FT, const AttrListPtr &Attrs,
532 void Verifier::VerifyParameterAttrs(Attributes Attrs, Type *Ty,
534 if (Attrs == Attribute::None)
537 Attributes FnCheckAttr = Attrs & Attribute::FunctionOnly;
542 Attributes RetI = Attrs & Attribute::ParameterOnly;
549 Attributes MutI = Attrs & Attribute::MutuallyIncompatible[i];
554 Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty);
558 Attributes ByValI = Attrs & Attribute::ByVal;
573 const AttrListPtr &Attrs,
    [all...]
  /external/elfutils/tests/
run-show-die-info.sh 31 Attrs : name stmt_list low_pc high_pc language comp_dir producer
41 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
48 Attrs : name byte_size encoding
55 Attrs : name stmt_list low_pc high_pc language comp_dir producer
65 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
72 Attrs : name byte_size encoding
79 Attrs : name stmt_list low_pc high_pc language comp_dir producer
89 Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
96 Attrs : sibling name decl_file decl_line declaration external type
101 Attrs
    [all...]
  /external/llvm/include/llvm/
Attributes.h 159 std::string getAsString(Attributes Attrs);
165 Attributes Attrs; ///< The attributes that are set, or'd together.
170 static AttributeWithIndex get(unsigned Idx, Attributes Attrs) {
173 P.Attrs = Attrs;
214 AttrListPtr addAttr(unsigned Idx, Attributes Attrs) const;
219 AttrListPtr removeAttr(unsigned Idx, Attributes Attrs) const;
  /external/clang/include/clang/AST/
Makefile 3 BUILT_SOURCES = Attrs.inc AttrImpl.inc StmtNodes.inc DeclNodes.inc
9 $(ObjDir)/Attrs.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \
  /external/clang/lib/Index/
Android.mk 14 Attrs.inc \
  /external/clang/lib/Rewrite/
Android.mk 14 Attrs.inc \
  /external/clang/lib/StaticAnalyzer/Frontend/
Android.mk 8 Attrs.inc \
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 118 const std::string &Attrs = Graph->getGraphAttrs(N);
119 if (!Attrs.empty()) {
120 if (Attrs.find("shape=") == std::string::npos)
121 return std::string("shape=Mrecord,") + Attrs;
123 return Attrs;
179 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) {
181 NodeGraphAttrs[N] = Attrs;
  /external/clang/lib/ARCMigrate/
Android.mk 9 Attrs.inc \
  /external/clang/lib/Analysis/
Android.mk 10 Attrs.inc \
  /external/clang/lib/Parse/
Android.mk 11 Attrs.inc \
  /external/clang/lib/Serialization/
Android.mk 19 Attrs.inc \
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 519 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
521 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
596 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
597 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ri, re;
660 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
662 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
687 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr")
    [all...]
  /external/clang/lib/Frontend/
Android.mk 10 Attrs.inc \
  /external/clang/lib/StaticAnalyzer/Core/
Android.mk 5 Attrs.inc \
  /external/llvm/lib/AsmParser/
LLParser.cpp 882 bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
883 Attrs = Attribute::None;
889 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
895 (Attrs & ~(Attribute::FunctionOnly | Attribute::Alignment)))
898 if (AttrKind != 0 && (Attrs & Attribute::ParameterOnly))
902 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
903 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
904 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
905 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
906 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break
    [all...]
LLParser.h 174 bool ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind);
307 unsigned Attrs;
308 ParamInfo(LocTy loc, Value *v, unsigned attrs)
309 : Loc(loc), V(v), Attrs(attrs) {}
328 unsigned Attrs;
331 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
  /external/clang/include/clang/Sema/
DeclSpec.h 324 ParsedAttributes Attrs;
394 Attrs(attrFactory),
613 return Attrs.getPool();
629 Attrs.addAll(AL);
632 Attrs.set(AL);
635 bool hasAttributes() const { return !Attrs.empty(); }
637 ParsedAttributes &getAttributes() { return Attrs; }
638 const ParsedAttributes &getAttributes() const { return Attrs; }
644 return Attrs;
647 void takeAttributesFrom(ParsedAttributes &attrs) {
    [all...]
  /external/clang/lib/AST/
Android.mk 11 Attrs.inc \
  /external/clang/lib/CodeGen/
Android.mk 10 Attrs.inc \
  /external/clang/lib/Sema/
Android.mk 10 Attrs.inc \
  /external/clang/lib/StaticAnalyzer/Checkers/
Android.mk 6 Attrs.inc \
  /external/llvm/include/llvm/Support/
GraphWriter.h 273 const std::string &Attrs) {
284 if (!Attrs.empty())
285 O << "[" << Attrs << "]";
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 72 const AttrListPtr &Attrs);

Completed in 1370 milliseconds

1 2 3