HomeSort by relevance Sort by last modified time
    Searched refs:Attrs (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /external/chromium_org/third_party/skia/src/animator/
SkScript2.h 34 enum Attrs {
  /external/clang/include/clang/AST/
Comment.h 484 void setAttrs(ArrayRef<Attribute> Attrs) {
485 Attributes = Attrs;
486 if (!Attrs.empty()) {
487 const Attribute &Attr = Attrs.back();
CommentSema.h 179 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
DeclBase.h 421 void setAttrs(const AttrVec& Attrs) {
422 return setAttrsImpl(Attrs, getASTContext());
440 attr_range attrs() const { function in class:clang::Decl
    [all...]
Stmt.h 825 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr*> Attrs, Stmt *SubStmt)
827 NumAttrs(Attrs.size()) {
828 memcpy(getAttrArrayPtr(), Attrs.data(), Attrs.size() * sizeof(Attr *));
843 ArrayRef<const Attr*> Attrs, Stmt *SubStmt);
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 89 ParsedAttributes attrs(AttrFactory);
92 ParseGNUAttributes(attrs);
102 if (!attrs.empty())
178 attrs.getList());
186 InlineLoc, attrs, T);
202 ParsedAttributes& attrs,
206 ParsedAttributesWithRange attrs(AttrFactory);
207 MaybeParseCXX11Attributes(attrs);
208 MaybeParseMicrosoftAttributes(attrs);
209 ParseExternalDeclaration(attrs);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 310 const AttributeSet &Attrs) {
318 CI->setAttributes(Attrs);
331 IRBuilder<> &B, const AttributeSet &Attrs) {
339 CI->setAttributes(Attrs);
  /external/skia/src/animator/
SkScript2.h 34 enum Attrs {
  /external/clang/tools/libclang/
IndexingContext.cpp 70 for (const auto *A : D->attrs()) {
75 Attrs.push_back(AttrInfo(CXIdxAttr_Unexposed, C, Loc, A));
78 Attrs.push_back(AttrInfo(CXIdxAttr_IBAction, C, Loc, A));
81 Attrs.push_back(AttrInfo(CXIdxAttr_IBOutlet, C, Loc, A));
112 for (unsigned i = 0, e = Attrs.size(); i != e; ++i)
113 CXAttrs.push_back(&Attrs[i]);
119 AttrListInfo *attrs = SA.allocate<AttrListInfo>(); local
120 return new (attrs) AttrListInfo(D, IdxCtx);
    [all...]
IndexingContext.h 240 SmallVector<AttrInfo, 2> Attrs;
  /external/llvm/lib/IR/
Function.cpp 105 AttributeSet Attrs = getParent()->getAttributes();
106 return Attrs.hasAttribute(getArgNo() + 1, Attribute::ByVal) ||
107 Attrs.hasAttribute(getArgNo() + 1, Attribute::InAlloca);
313 void Function::addAttributes(unsigned i, AttributeSet attrs) {
315 PAL = PAL.addAttributes(getContext(), i, attrs);
319 void Function::removeAttributes(unsigned i, AttributeSet attrs) {
321 PAL = PAL.removeAttributes(getContext(), i, attrs);
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 192 AttrVec &Attrs = D->getAttrs();
193 for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
    [all...]
Stmt.cpp 286 ArrayRef<const Attr*> Attrs,
288 assert(!Attrs.empty() && "Attrs should not be empty");
289 void *Mem = C.Allocate(sizeof(AttributedStmt) + sizeof(Attr *) * Attrs.size(),
291 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
    [all...]
CommentSema.cpp 467 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
470 Tag->setAttrs(Attrs);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 405 AttrVec Attrs;
406 Reader.ReadAttributes(F, Attrs, Record, Idx);
409 D->setAttrsImpl(Attrs, Reader.getContext());
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 497 SmallVector<AttributeSet, 8> Attrs;
527 Attrs.push_back(AttributeSet::get(Context, Record[i], B));
530 MAttributes.push_back(AttributeSet::get(Context, Attrs));
531 Attrs.clear();
536 Attrs.push_back(MAttributeGroups[Record[i]]);
538 MAttributes.push_back(AttributeSet::get(Context, Attrs));
539 Attrs.clear();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 478 SmallVector<AttributeSet, 8> Attrs;
507 Attrs.push_back(AttributeSet::get(Context, Record[i], B));
510 MAttributes.push_back(AttributeSet::get(Context, Attrs));
511 Attrs.clear();
516 Attrs.push_back(MAttributeGroups[Record[i]]);
518 MAttributes.push_back(AttributeSet::get(Context, Attrs));
519 Attrs.clear();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 757 SmallVector<AttributeSet, 8> Attrs;
787 Attrs.push_back(AttributeSet::get(Context, Record[i], B));
790 MAttributes.push_back(AttributeSet::get(Context, Attrs));
791 Attrs.clear();
796 Attrs.push_back(MAttributeGroups[Record[i]]);
798 MAttributes.push_back(AttributeSet::get(Context, Attrs));
799 Attrs.clear();
    [all...]
  /external/chromium_org/tools/grit/grit/node/
base.py 43 self.attrs = {} # The set of attributes (keys to values)
135 name_attr = child.attrs['name']
171 self.attrs[attrib] = value
222 if mandatt in self.attrs:
233 if not defattr in self.attrs:
234 self.attrs[defattr] = self.DefaultAttributes()[defattr]
264 for attrib, value in sorted(self.attrs.items()):
391 return self.attrs['file']
411 if not 'translateable' in self.attrs:
414 return self.attrs['translateable'] == 'true
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 481 void WriteAttributes(ArrayRef<const Attr*> Attrs, RecordDataImpl &Record);
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 303 const std::vector<AttributeSet> &Attrs = VE.getAttributes();
304 if (Attrs.empty()) return;
309 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
310 const AttributeSet &A = Attrs[i];
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 138 const std::vector<AttributeSet> &Attrs = VE.getAttributes();
139 if (Attrs.empty()) return;
144 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
145 const AttributeSet &A = Attrs[i];
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 161 const std::vector<AttributeSet> &Attrs = VE.getAttributes();
162 if (Attrs.empty()) return;
167 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
168 const AttributeSet &A = Attrs[i];
    [all...]

Completed in 449 milliseconds

1 23 4 5