/external/doclava/res/assets/templates/ |
class.cs | 23 <?cs if:subcount(cl.attrs) ?> 36 <?cs if:subcount(class.attrs) ?> 37 <?cs if:linkcount ?>| <?cs /if ?><a href="#lattrs">XML Attrs</a> 41 <?cs if:linkcount ?>| <?cs /if ?><a href="#inhattrs">Inherited XML Attrs</a> 221 <?cs def:write_attr_summary(attrs, included) ?> 228 <?cs each:attr=attrs ?> 263 || subcount(class.attrs) 285 <?cs if:subcount(class.attrs) ?> 288 <?cs call:write_attr_summary(class.attrs, 1) ?> 291 <?cs # if there are inherited attrs, write the table ? [all...] |
/external/llvm/lib/MC/ |
MCSectionMachO.cpp | 255 StringRef Attrs = Comma.first; 258 std::pair<StringRef, StringRef> Plus = Attrs.split('+');
|
/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/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::InReg) 43 if (Attrs & Attribute::NoAlias) 45 if (Attrs & Attribute::NoCapture) 47 if (Attrs & Attribute::StructRet [all...] |
AsmWriter.cpp | [all...] |
Verifier.cpp | 290 void VerifyParameterAttrs(Attributes Attrs, Type *Ty, 292 void VerifyFunctionAttrs(FunctionType *FT, const AttrListPtr &Attrs, 517 void Verifier::VerifyParameterAttrs(Attributes Attrs, Type *Ty, 519 if (Attrs == Attribute::None) 522 Attributes FnCheckAttr = Attrs & Attribute::FunctionOnly; 527 Attributes RetI = Attrs & Attribute::ParameterOnly; 534 Attributes MutI = Attrs & Attribute::MutuallyIncompatible[i]; 539 Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty); 543 Attributes ByValI = Attrs & Attribute::ByVal; 558 const AttrListPtr &Attrs, [all...] |
/external/llvm/include/llvm/ |
Attributes.h | 160 std::string getAsString(Attributes Attrs); 166 Attributes Attrs; ///< The attributes that are set, or'd together. 171 static AttributeWithIndex get(unsigned Idx, Attributes Attrs) { 174 P.Attrs = Attrs; 215 AttrListPtr addAttr(unsigned Idx, Attributes Attrs) const; 220 AttrListPtr removeAttr(unsigned Idx, Attributes Attrs) const;
|
/external/llvm/include/llvm/Support/ |
GraphWriter.h | 273 const std::string &Attrs) { 284 if (!Attrs.empty()) 285 O << "[" << Attrs << "]";
|
/external/llvm/utils/TableGen/ |
ClangAttrEmitter.cpp | 510 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); 512 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(); 587 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); 588 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ri, re; 651 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"), 653 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(); 678 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr") [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.h | 173 bool ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind); 304 unsigned Attrs; 305 ParamInfo(LocTy loc, Value *v, unsigned attrs) 306 : Loc(loc), V(v), Attrs(attrs) {} 325 unsigned Attrs; 328 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
|
/hardware/ti/omap3/dspbridge/inc/ |
qosregistry.h | 274 struct DSP_STRMATTR Attrs; /* Stream attributes for this stream */
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
qosregistry.h | 268 struct DSP_STRMATTR Attrs; /* Stream attributes for this stream */
|
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | 122 const std::vector<AttrListPtr> &Attrs = VE.getAttributes(); 123 if (Attrs.empty()) return; 128 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) { 129 const AttrListPtr &A = Attrs[i]; 138 uint64_t FauxAttr = PAWI.Attrs & 0xffff; 139 if (PAWI.Attrs & Attribute::Alignment) 140 FauxAttr |= (1ull<<16)<<(((PAWI.Attrs & Attribute::Alignment)-1) >> 16); 141 FauxAttr |= (PAWI.Attrs & (0x3FFull << 21)) << 11; [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCalls.cpp | [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriter.cpp | 131 const std::vector<AttrListPtr> &Attrs = VE.getAttributes(); 132 if (Attrs.empty()) return; 137 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) { 138 const AttrListPtr &A = Attrs[i]; 147 uint64_t FauxAttr = PAWI.Attrs & 0xffff; 148 if (PAWI.Attrs & Attribute::Alignment) 149 FauxAttr |= (1ull<<16)<<(((PAWI.Attrs & Attribute::Alignment)-1) >> 16); 150 FauxAttr |= (PAWI.Attrs & (0x3FFull << 21)) << 11; [all...] |
/external/clang/lib/CodeGen/ |
CGCall.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderDecl.cpp | 225 AttrVec Attrs; 226 Reader.ReadAttributes(F, Attrs, Record, Idx); 227 D->setAttrs(Attrs); [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | 390 SmallVector<AttributeWithIndex, 8> Attrs; 467 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute)); 470 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute)); 472 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1])); 475 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end())); 476 Attrs.clear(); [all...] |
/external/skia/src/animator/ |
SkScript2.h | 27 enum Attrs {
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 403 SmallVector<AttributeWithIndex, 8> Attrs; 480 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute)); 483 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute)); 485 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1])); 488 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end())); 489 Attrs.clear(); [all...] |
/external/clang/include/clang/Sema/ |
DeclSpec.h | 321 ParsedAttributes Attrs; 391 Attrs(attrFactory), 606 return Attrs.getPool(); 622 Attrs.addAll(AL); 625 Attrs.set(AL); 628 bool hasAttributes() const { return !Attrs.empty(); } 630 ParsedAttributes &getAttributes() { return Attrs; } 631 const ParsedAttributes &getAttributes() const { return Attrs; } 637 return Attrs; 640 void takeAttributesFrom(ParsedAttributes &attrs) { [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |