Searched defs:Attrs (Results 1 - 25 of 35) sorted by relevance

12

/external/doclava/res/assets/templates/
H A Dclass.cs37 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lattrs">XML Attrs</a> external variable declarations
41 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhattrs">Inherited XML Attrs</a> external variable declarations
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp38 AttrVec Attrs; local
41 Attrs.push_back(a);
44 if (Attrs.empty())
47 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp255 StringRef Attrs = Comma.first; local
258 std::pair<StringRef, StringRef> Plus = Attrs.split('+');
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp242 Attrs = ObjCPropertyDecl::OBJC_PR_noattr; local
246 Attrs = PD->getPropertyAttributesAsWritten();
283 if (Attrs & ObjCPropertyDecl::OBJC_PR_assign)
/external/llvm/include/llvm/
H A DAttributes.h30 AttrConst operator | (const AttrConst Attrs) const {
31 AttrConst Res = {v | Attrs.v};
48 Attributes(const Attributes &Attrs) : Bits(Attrs.Bits) { } argument
52 Attributes &operator = (const Attributes &Attrs) { argument
53 Bits = Attrs.Bits;
56 bool operator == (const Attributes &Attrs) const {
57 return Bits == Attrs.Bits;
59 bool operator != (const Attributes &Attrs) const {
60 return Bits != Attrs
71 operator |=(const Attributes &Attrs) argument
75 operator &=(const Attributes &Attrs) argument
236 Attributes Attrs; ///< The attributes that are set, or'd together. member in struct:llvm::AttributeWithIndex
241 get(unsigned Idx, Attributes Attrs) argument
[all...]
/external/llvm/include/llvm/Support/
H A DGraphWriter.h273 const std::string &Attrs) {
284 if (!Attrs.empty())
285 O << "[" << Attrs << "]"; local
271 emitEdge(const void *SrcNodeID, int SrcNodePort, const void *DestNodeID, int DestNodePort, const std::string &Attrs) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp116 const std::string &Attrs = Graph->getGraphAttrs(N); local
117 if (!Attrs.empty()) {
118 if (Attrs.find("shape=") == std::string::npos)
119 return std::string("shape=Mrecord,") + Attrs;
121 return Attrs;
177 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) { argument
179 NodeGraphAttrs[N] = Attrs;
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp214 const AttrListPtr &Attrs) {
230 CI->setAttributes(Attrs);
213 EmitUnaryFloatFnCall(Value *Op, StringRef Name, IRBuilder<> &B, const AttrListPtr &Attrs) argument
/external/llvm/lib/VMCore/
H A DAttributes.cpp29 std::string Attribute::getAsString(Attributes Attrs) { argument
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
132 SmallVector<AttributeWithIndex, 4> Attrs; member in class:llvm::AttributeListImpl
171 get(const AttributeWithIndex *Attrs, unsigned NumAttrs) argument
253 const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs; local
265 const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs; local
[all...]
H A DAsmWriter.cpp1149 void writeParamOperand(const Value *Operand, Attributes Attrs);
1158 void printArgument(const Argument *FA, Attributes Attrs);
1203 Attributes Attrs) {
1212 if (Attrs != Attribute::None)
1213 Out << ' ' << Attribute::getAsString(Attrs);
1514 const AttrListPtr &Attrs = F->getAttributes(); local
1515 Attributes RetAttrs = Attrs.getRetAttributes();
1517 Out << Attribute::getAsString(Attrs.getRetAttributes()) << ' ';
1533 printArgument(I, Attrs.getParamAttributes(Idx));
1545 Attributes ArgAttrs = Attrs
1202 writeParamOperand(const Value *Operand, Attributes Attrs) argument
1588 printArgument(const Argument *Arg, Attributes Attrs) argument
[all...]
H A DVerifier.cpp298 void VerifyParameterAttrs(Attributes Attrs, Type *Ty,
300 void VerifyFunctionAttrs(FunctionType *FT, const AttrListPtr &Attrs,
525 void Verifier::VerifyParameterAttrs(Attributes Attrs, Type *Ty, argument
527 if (Attrs == Attribute::None)
530 Attributes FnCheckAttr = Attrs & Attribute::FunctionOnly;
535 Attributes RetI = Attrs & Attribute::ParameterOnly;
542 Attributes MutI = Attrs & Attribute::MutuallyIncompatible[i];
547 Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty);
551 Attributes ByValI = Attrs & Attribute::ByVal;
566 const AttrListPtr &Attrs,
565 VerifyFunctionAttrs(FunctionType *FT, const AttrListPtr &Attrs, const Value *V) argument
608 VerifyAttributeCount(const AttrListPtr &Attrs, unsigned Params) argument
644 const AttrListPtr &Attrs = F.getAttributes(); local
1141 const AttrListPtr &Attrs = CS.getAttributes(); local
[all...]
/external/clang/lib/AST/
H A DDeclPrinter.cpp188 AttrVec &Attrs = D->getAttrs(); local
189 for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp668 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
670 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
751 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
752 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ri, re;
834 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), local
836 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
861 std::vector<Record*> Attrs local
899 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), Args; local
926 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
944 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
968 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1034 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1067 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.h175 bool ParseOptionalAttrs(Attributes &Attrs, unsigned AttrKind);
308 Attributes Attrs; member in struct:llvm::LLParser::ParamInfo
310 : Loc(loc), V(v), Attrs(attrs) {}
329 Attributes Attrs; member in struct:llvm::LLParser::ArgInfo
332 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
/external/clang/lib/Parse/
H A DParseStmt.cpp84 ParsedAttributesWithRange Attrs(AttrFactory);
85 MaybeParseCXX0XAttributes(Attrs, 0, /*MightBeObjCMessageSend*/ true);
88 OnlyStatement, TrailingElseLoc, Attrs);
90 assert((Attrs.empty() || Res.isInvalid() || Res.isUsable()) &&
93 if (Attrs.empty() || Res.isInvalid())
96 return Actions.ProcessStmtAttributes(Res.get(), Attrs.getList(), Attrs.Range);
102 ParsedAttributesWithRange &Attrs) {
115 ProhibitAttributes(Attrs); // TODO: is it correct?
129 return ParseLabeledStatement(Attrs);
100 ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts, bool OnlyStatement, SourceLocation *TrailingElseLoc, ParsedAttributesWithRange &Attrs) argument
[all...]
H A DParseDecl.cpp177 ParsedAttributes &Attrs,
184 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
190 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
274 Attrs.addNew(AttrName, SourceRange(AttrNameLoc, RParen), 0, AttrNameLoc,
792 ParsedAttributes Attrs(AttrFactory);
810 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
822 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
828 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs); local
882 ParsedAttributes &Attrs,
908 Attrs
175 ParseGNUAttributeArgs(IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc) argument
880 ParseThreadSafetyAttribute(IdentifierInfo &AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc) argument
1778 ParseAlignmentSpecifier(ParsedAttributes &Attrs, SourceLocation *endLoc) argument
[all...]
/external/clang/tools/libclang/
H A DIndexingContext.h249 SmallVector<AttrInfo, 2> Attrs; member in class:clang::cxindex::AttrListInfo
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1064 Attributes Attrs = CallerPAL.getParamAttributes(i + 1);
1065 if (Attrs & Attribute::typeIncompatible(ParamTy))
1070 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
1121 Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
1258 const AttrListPtr &Attrs = CS.getAttributes(); local
1262 if (Attrs.hasAttrSomewhere(Attribute::Nest))
1294 NewAttrs.reserve(Attrs.getNumSlots() + 1);
1300 if (Attributes Attr = Attrs.getRetAttributes())
1321 if (Attributes Attr = Attrs.getParamAttributes(Idx))
1330 if (Attributes Attr = Attrs
[all...]
/external/clang/include/clang/AST/
H A DDeclBase.h400 void setAttrs(const AttrVec& Attrs) { argument
401 return setAttrsImpl(Attrs, getASTContext());
432 AttrVec &Attrs = getAttrs();
433 for (unsigned i = 0, e = Attrs.size(); i != e; /* in loop */) {
434 if (isa<T>(Attrs[i])) {
435 Attrs.erase(Attrs.begin() + i);
441 if (Attrs.empty())
864 void setAttrsImpl(const AttrVec& Attrs, ASTContext &Ctx);
/external/clang/lib/CodeGen/
H A DCGCall.cpp964 llvm::Attributes Attrs; local
972 Attrs |= llvm::Attribute::SExt;
974 Attrs |= llvm::Attribute::ZExt;
983 Attrs |= llvm::Attribute::InReg;
997 Attrs |= llvm::Attribute::ByVal;
999 Attrs |=
1021 if (Attrs)
1022 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attrs));
2069 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(), local
2073 if (!(Attrs
[all...]
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp164 AttrVec Attrs; local
165 Reader.ReadAttributes(F, Attrs, Record, Idx);
166 S->Attrs = Attrs;
H A DASTReaderDecl.cpp355 AttrVec Attrs; local
356 Reader.ReadAttributes(F, Attrs, Record, Idx);
359 D->setAttrsImpl(Attrs, Reader.getContext());
1608 void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs, argument
1618 Attrs.push_back(New);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp428 SmallVector<AttributeWithIndex, 8> Attrs; local
506 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
509 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute));
511 Attrs.push_back(AttributeWithIndex::get(Record[i],
515 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
516 Attrs.clear();
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp166 const std::vector<AttrListPtr> &Attrs = VE.getAttributes(); local
167 if (Attrs.empty()) return;
172 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
173 const AttrListPtr &A = Attrs[i];
182 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
183 if (PAWI.Attrs & Attribute::Alignment)
185 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
186 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
/external/skia/src/animator/
H A DSkScript2.h34 enum Attrs { enum in class:SkScriptEngine2

Completed in 3333 milliseconds

12