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

1 2

  /external/clang/lib/Sema/
SemaStmtAttr.cpp 64 SmallVector<const Attr*, 8> Attrs;
67 Attrs.push_back(a);
70 if (Attrs.empty())
73 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
  /build/tools/droiddoc/templates-sdk/
class.cs 29 <?cs if:subcount(cl.attrs) ?>
42 <?cs if:subcount(class.attrs) ?>
43 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lattrs">XML Attrs</a>
47 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhattrs">Inherited XML Attrs</a>
231 <?cs def:write_attr_summary(attrs, included) ?>
238 <?cs each:attr=attrs ?>
273 || subcount(class.attrs)
295 <?cs if:subcount(class.attrs) ?>
298 <?cs call:write_attr_summary(class.attrs, 1) ?>
301 <?cs # if there are inherited attrs, write the table ?
    [all...]
  /external/doclava/res/assets/templates/
class.cs 23 <?cs if:subcount(cl.attrs) ?>
36 <?cs if:subcount(class.attrs) ?>
37 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lattrs">XML Attrs</a>
41 <?cs if:linkcount ?>&#124; <?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/clang/lib/ARCMigrate/
TransGCAttrs.cpp 243 Attrs = ObjCPropertyDecl::OBJC_PR_noattr;
247 Attrs = PD->getPropertyAttributesAsWritten();
284 if (Attrs & ObjCPropertyDecl::OBJC_PR_assign)
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 115 const std::string &Attrs = Graph->getGraphAttrs(N);
116 if (!Attrs.empty()) {
117 if (Attrs.find("shape=") == std::string::npos)
118 return std::string("shape=Mrecord,") + Attrs;
120 return Attrs;
176 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) {
178 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::ReturnsTwice)
43 if (Attrs & Attribute::InReg)
45 if (Attrs & Attribute::NoAlias)
47 if (Attrs & Attribute::NoCapture
    [all...]
AsmWriter.cpp     [all...]
  /external/llvm/include/llvm/
Attributes.h 31 AttrConst operator | (const AttrConst Attrs) const {
32 AttrConst Res = {v | Attrs.v};
52 bool operator == (const Attributes &Attrs) const {
53 return Bits == Attrs.Bits;
55 bool operator != (const Attributes &Attrs) const {
56 return Bits != Attrs.Bits;
58 Attributes operator | (const Attributes &Attrs) const {
59 return Attributes(Bits | Attrs.Bits);
61 Attributes operator & (const Attributes &Attrs) const {
62 return Attributes(Bits & Attrs.Bits)
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 273 const std::string &Attrs) {
284 if (!Attrs.empty())
285 O << "[" << Attrs << "]";
  /external/llvm/lib/AsmParser/
LLParser.h 178 bool ParseOptionalAttrs(Attributes &Attrs, unsigned AttrKind);
311 Attributes Attrs;
312 ParamInfo(LocTy loc, Value *v, Attributes attrs)
313 : Loc(loc), V(v), Attrs(attrs) {}
332 Attributes Attrs;
335 : 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/clang/lib/AST/
CommentParser.cpp 419 SmallVector<HTMLStartTagComment::Attribute, 2> Attrs;
426 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
436 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
443 Attrs.push_back(HTMLStartTagComment::Attribute(
456 S.copyArray(llvm::makeArrayRef(Attrs)),
464 S.copyArray(llvm::makeArrayRef(Attrs)),
483 S.copyArray(llvm::makeArrayRef(Attrs)),
491 S.copyArray(llvm::makeArrayRef(Attrs)),
DeclPrinter.cpp 193 AttrVec &Attrs = D->getAttrs();
194 for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 249 SmallVector<AttrInfo, 2> Attrs;
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 674 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
676 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
763 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr");
764 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ri, re;
860 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"),
862 for (std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end();
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 169 const std::vector<AttrListPtr> &Attrs = VE.getAttributes();
170 if (Attrs.empty()) return;
175 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
176 const AttrListPtr &A = Attrs[i];
180 Record.push_back(Attribute::encodeLLVMAttributesForBitcode(PAWI.Attrs));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 137 const std::vector<AttrListPtr> &Attrs = VE.getAttributes();
138 if (Attrs.empty()) return;
143 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
144 const AttrListPtr &A = Attrs[i];
153 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
154 if (PAWI.Attrs & Attribute::Alignment)
156 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
157 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 159 const std::vector<AttrListPtr> &Attrs = VE.getAttributes();
160 if (Attrs.empty()) return;
165 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
166 const AttrListPtr &A = Attrs[i];
175 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
176 if (PAWI.Attrs & Attribute::Alignment)
178 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
179 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 109 void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
157 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
160 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
179 ParsedAttributes &Attrs,
186 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
192 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
197 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
281 Attrs.addNew(AttrName, SourceRange(AttrNameLoc, RParen), 0, AttrNameLoc,
293 ParsedAttributes &Attrs)
306 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation()
4497 attrs, T.getCloseLocation()); local
5064 attrs, T.getCloseLocation()); local
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 166 AttrVec Attrs;
167 Reader.ReadAttributes(F, Attrs, Record, Idx);
170 assert(NumAttrs == Attrs.size());
171 std::copy(Attrs.begin(), Attrs.end(), S->Attrs);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 443 SmallVector<AttributeWithIndex, 8> Attrs;
484 Attrs.push_back(AttributeWithIndex::get(Record[i],
488 MAttributes.push_back(AttrListPtr::get(Attrs));
489 Attrs.clear();
    [all...]

Completed in 785 milliseconds

1 2