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

12 3

  /external/llvm/lib/MC/
MCSectionMachO.cpp 255 StringRef Attrs = Comma.first;
258 std::pair<StringRef, StringRef> Plus = Attrs.split('+');
  /frameworks/compile/slang/
Android.mk 93 Attrs.inc \
199 Attrs.inc \
  /external/clang/include/clang/AST/
DeclBase.h 367 void setAttrs(const AttrVec& Attrs);
397 AttrVec &Attrs = getAttrs();
398 for (unsigned i = 0, e = Attrs.size(); i != e; /* in loop */) {
399 if (isa<T>(Attrs[i])) {
400 Attrs.erase(Attrs.begin() + i);
406 if (Attrs.empty())
    [all...]
  /external/clang/
clang-tblgen-rules.mk 54 ifneq ($(findstring Attrs.inc,$(TBLGEN_TABLES)),)
55 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/AST/Attrs.inc
56 $(intermediates)/include/clang/AST/Attrs.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
  /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/Transforms/IPO/
DeadArgumentElimination.cpp 743 if (Attributes Attrs = PAL.getParamAttributes(i + 1))
744 AttributesVec.push_back(AttributeWithIndex::get(Params.size(), Attrs));
804 if (Attributes Attrs = CallPAL.getParamAttributes(i + 1))
805 AttributesVec.push_back(AttributeWithIndex::get(Args.size(), Attrs));
811 if (Attributes Attrs = CallPAL.getParamAttributes(i + 1))
812 AttributesVec.push_back(AttributeWithIndex::get(Args.size(), Attrs));
    [all...]
ArgumentPromotion.cpp 523 if (Attributes attrs = PAL.getRetAttributes())
524 AttributesVec.push_back(AttributeWithIndex::get(0, attrs));
540 if (Attributes attrs = PAL.getParamAttributes(ArgIndex))
541 AttributesVec.push_back(AttributeWithIndex::get(Params.size(), attrs));
593 if (Attributes attrs = PAL.getFnAttributes())
594 AttributesVec.push_back(AttributeWithIndex::get(~0, attrs));
648 if (Attributes attrs = CallPAL.getRetAttributes())
649 AttributesVec.push_back(AttributeWithIndex::get(0, attrs));
660 if (Attributes Attrs = CallPAL.getParamAttributes(ArgIndex))
661 AttributesVec.push_back(AttributeWithIndex::get(Args.size(), Attrs));
    [all...]
GlobalOpt.cpp     [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/skia/src/animator/
SkScript2.h 27 enum Attrs {
  /external/clang/lib/Parse/
ParseDecl.cpp 104 void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
151 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
154 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
173 ParsedAttributes &Attrs,
180 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
186 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
269 Attrs.addNew(AttrName, SourceRange(AttrNameLoc, RParen), 0, AttrNameLoc,
286 void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &attrs) {
313 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
319 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc
3983 attrs, T.getCloseLocation()); local
4132 attrs, EndLoc); local
4498 attrs, T.getCloseLocation()); local
    [all...]
ParseStmt.cpp 85 ParsedAttributesWithRange attrs(AttrFactory);
86 MaybeParseCXX0XAttributes(attrs);
110 return ParseLabeledStatement(attrs);
212 DeclEnd, attrs);
221 return ParseExprStatement(attrs);
225 return ParseCaseStatement(attrs);
227 return ParseDefaultStatement(attrs);
230 return ParseCompoundStatement(attrs);
237 return ParseIfStatement(attrs);
239 return ParseSwitchStatement(attrs);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
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 & 0xffff;
176 if (PAWI.Attrs & Attribute::Alignment)
177 FauxAttr |= (1ull<<16)<<(((PAWI.Attrs & Attribute::Alignment)-1) >> 16);
178 FauxAttr |= (PAWI.Attrs & (0x3FFull << 21)) << 11;
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 210 IRBuilder<> &B, const AttrListPtr &Attrs) {
229 CI->setAttributes(Attrs);
  /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/include/clang/Parse/
Parser.h     [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 356 void WriteAttributes(const AttrVec &Attrs, RecordDataImpl &Record);
  /external/clang/lib/AST/
DumpXML.cpp 84 DISPATCH(dispatch##BASE##Attrs, BASE); \
138 DISPATCH(dispatch##BASE##Attrs, BASE); \
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 242 AttrVec Attrs;
243 Reader.ReadAttributes(F, Attrs, Record, Idx);
244 D->setAttrs(Attrs);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 428 SmallVector<AttributeWithIndex, 8> Attrs;
505 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
508 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute));
510 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1]));
513 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
514 Attrs.clear();
    [all...]
  /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/llvm/include/llvm/
Instructions.h     [all...]
  /external/clang/lib/Sema/
SemaType.cpp 252 assert(cur && cur->getNext() && "ran out of attrs?");
270 AttributeList *attrs);
494 assert(state.getDeclarator().getAttributes() && "declarator has no attrs!");
    [all...]

Completed in 4106 milliseconds

12 3