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

123

/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/llvm/unittests/ExecutionEngine/Orc/
H A DIndirectionUtilsTest.cpp22 SmallVector<AttributeSet, 4> Attrs; local
23 Attrs.push_back(
26 Attrs.push_back(
29 Attrs.push_back(
32 F->setAttributes(AttributeSet::get(MB.getModule()->getContext(), Attrs));
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h340 AttributeSet Attrs = F.getAttributes(), NewAttrs; local
374 // Let NewAttrs override Attrs.
375 NewAttrs = Attrs.addAttributes(Ctx, AttributeSet::FunctionIndex, NewAttrs);
/external/llvm/utils/TableGen/
H A DAttributes.cpp40 const std::vector<Record*> &Attrs = local
43 for (auto A : Attrs)
/external/clang/lib/CodeGen/
H A DCGLoopInfo.cpp22 static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs) { argument
24 if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 &&
25 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 &&
26 Attrs.VectorizeEnable == LoopAttributes::Unspecified &&
27 Attrs.UnrollEnable == LoopAttributes::Unspecified)
36 if (Attrs.VectorizeWidth > 0) {
39 Type::getInt32Ty(Ctx), Attrs.VectorizeWidth))};
44 if (Attrs
101 LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs) argument
112 push(BasicBlock *Header, clang::ASTContext &Ctx, ArrayRef<const clang::Attr *> Attrs) argument
[all...]
H A DCGLoopInfo.h66 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs);
75 const LoopAttributes &getAttributes() const { return Attrs; }
83 LoopAttributes Attrs; member in class:clang::CodeGen::LoopInfo
100 /// \brief Begin a new structured loop. Stage attributes from the Attrs list.
103 llvm::ArrayRef<const Attr *> Attrs);
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp132 const SmallVectorImpl<const Attr *> &Attrs) {
146 for (const auto *I : Attrs) {
230 SmallVector<const Attr*, 8> Attrs; local
233 Attrs.push_back(a);
236 CheckForIncompatibleAttributes(*this, Attrs);
238 if (Attrs.empty())
241 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
131 CheckForIncompatibleAttributes(Sema &S, const SmallVectorImpl<const Attr *> &Attrs) argument
/external/llvm/lib/Analysis/
H A DStratifiedSets.h66 StratifiedAttrs Attrs; member in struct:llvm::StratifiedLink
268 return Link.Attrs;
274 Link.Attrs.set(index);
279 Link.Attrs |= other;
371 auto &CurrentBits = Links[CurrentIndex].Attrs;
373 auto &NextBits = Links[NextIndex].Attrs;
455 auto Attrs = Link->getAttrs();
458 Attrs |= Link->getAttrs();
461 return Attrs;
466 auto Attrs
[all...]
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp188 StringRef Attrs = GetEmptyOrTrim(3); local
228 if (Attrs.empty()) {
238 Attrs.split(SectionAttrs, '+', /*MaxSplit=*/-1, /*KeepEmpty=*/false);
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
H A Dtest_treewalkers.py87 from genshi.core import QName, Attrs namespace
110 attrs = Attrs([(QName("{%s}%s" % attr if attr[0] is not None else attr[1]), value)
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp238 Attrs = ObjCPropertyDecl::OBJC_PR_noattr; local
242 Attrs = PD->getPropertyAttributesAsWritten();
280 if (Attrs & ObjCPropertyDecl::OBJC_PR_assign)
/external/llvm/include/llvm/IR/
H A DAttributes.h194 ArrayRef<std::pair<unsigned, Attribute> > Attrs);
197 AttributeSetNode*> > Attrs);
201 AttributeSetNode*> > Attrs);
213 static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
238 AttributeSet Attrs) const;
250 AttributeSet Attrs) const;
256 const AttrBuilder &Attrs) const;
392 std::bitset<Attribute::EndAttrKinds> Attrs; member in class:llvm::AttributeSet::AttrBuilder
401 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
404 : Attrs(
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp118 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { argument
121 Attrs.NAME = V; \
361 // Go through the attributes from \param Attrs in the order specified in 7.27.4
363 void DIEHash::hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag) { argument
370 ADD_ATTR(Attrs.DW_AT_name);
371 ADD_ATTR(Attrs.DW_AT_accessibility);
372 ADD_ATTR(Attrs.DW_AT_address_class);
373 ADD_ATTR(Attrs.DW_AT_allocated);
374 ADD_ATTR(Attrs.DW_AT_artificial);
375 ADD_ATTR(Attrs
425 DIEAttrs Attrs = {}; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp123 const std::string &Attrs = Graph->getGraphAttrs(N); local
124 if (!Attrs.empty()) {
125 if (Attrs.find("shape=") == std::string::npos)
126 return std::string("shape=Mrecord,") + Attrs;
128 return Attrs;
184 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) { argument
186 NodeGraphAttrs[N] = Attrs;
/external/llvm/lib/IR/
H A DAttributeImpl.h152 AttributeSetNode(ArrayRef<Attribute> Attrs) : NumAttrs(Attrs.size()) { argument
154 std::copy(Attrs.begin(), Attrs.end(), getTrailingObjects<Attribute>());
161 static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
218 ArrayRef<std::pair<unsigned, AttributeSetNode *> > Attrs)
219 : Context(C), NumAttrs(Attrs.size()) {
222 if (Attrs.size() >= 2) {
223 for (const std::pair<unsigned, AttributeSetNode *> *i = Attrs.begin() + 1,
224 *e = Attrs
217 AttributeSetImpl(LLVMContext &C, ArrayRef<std::pair<unsigned, AttributeSetNode *> > Attrs) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp253 const AttributeSet &Attrs) {
261 CI->setAttributes(Attrs);
274 IRBuilder<> &B, const AttributeSet &Attrs) {
282 CI->setAttributes(Attrs);
252 EmitUnaryFloatFnCall(Value *Op, StringRef Name, IRBuilder<> &B, const AttributeSet &Attrs) argument
273 EmitBinaryFloatFnCall(Value *Op1, Value *Op2, StringRef Name, IRBuilder<> &B, const AttributeSet &Attrs) argument
/external/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp300 lto_symbol_attributes Attrs = Module->getSymbolAttributes(I); local
301 unsigned Scope = Attrs & LTO_SYMBOL_SCOPE_MASK;
/external/clang/include/clang/Lex/
H A DModuleMap.h180 Attributes Attrs; member in struct:clang::ModuleMap::InferredDirectory
264 Attributes Attrs, Module *Parent);
/external/llvm/include/llvm/Support/
H A DGraphWriter.h287 const std::string &Attrs) {
298 if (!Attrs.empty())
299 O << "[" << Attrs << "]"; local
285 emitEdge(const void *SrcNodeID, int SrcNodePort, const void *DestNodeID, int DestNodePort, const std::string &Attrs) argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp69 AttributeSet Attrs = F.getAttributes(); local
70 if (Attrs.hasAttribute(AttrIdx, Attribute::SExt))
72 else if (Attrs.hasAttribute(AttrIdx, Attribute::ZExt))
/external/clang/lib/AST/
H A DCommentParser.cpp440 SmallVector<HTMLStartTagComment::Attribute, 2> Attrs; local
447 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
457 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
464 Attrs.push_back(HTMLStartTagComment::Attribute(
477 S.copyArray(llvm::makeArrayRef(Attrs)),
485 S.copyArray(llvm::makeArrayRef(Attrs)),
504 S.copyArray(llvm::makeArrayRef(Attrs)),
512 S.copyArray(llvm::makeArrayRef(Attrs)),
/external/clang/lib/Index/
H A DCommentToXML.cpp998 const AttrVec &Attrs = DI->CommentDecl->getAttrs(); local
999 for (unsigned i = 0, e = Attrs.size(); i != e; i++) {
1000 const AvailabilityAttr *AA = dyn_cast<AvailabilityAttr>(Attrs[i]);
1002 if (const DeprecatedAttr *DA = dyn_cast<DeprecatedAttr>(Attrs[i])) {
1011 else if (const UnavailableAttr *UA = dyn_cast<UnavailableAttr>(Attrs[i])) {
/external/clang/tools/libclang/
H A DIndexingContext.h243 SmallVector<AttrInfo, 2> Attrs; member in class:clang::cxindex::AttrListInfo
/external/llvm/lib/AsmParser/
H A DLLParser.h388 AttributeSet Attrs; member in struct:llvm::LLParser::ParamInfo
390 : Loc(loc), V(v), Attrs(attrs) {}
439 AttributeSet Attrs; member in struct:llvm::LLParser::ArgInfo
442 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp188 auto Attrs = F.getAttributes(); local
190 Attrs = Attrs.addAttribute(F.getContext(), AttributeSet::FunctionIndex,
192 F.setAttributes(Attrs);

Completed in 651 milliseconds

123