HomeSort by relevance Sort by last modified time
    Searched defs:Attrs (Results 51 - 56 of 56) sorted by null

1 23

  /external/clang/lib/Sema/
SemaStmt.cpp 484 ArrayRef<const Attr*> Attrs,
487 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 499 AttrVec Attrs;
500 Reader.ReadAttributes(F, Attrs, Record, Idx);
503 D->setAttrsImpl(Attrs, Reader.getContext());
    [all...]
ASTReaderStmt.cpp 174 AttrVec Attrs;
175 Reader.ReadAttributes(F, Attrs, Record, Idx);
178 assert(NumAttrs == Attrs.size());
179 std::copy(Attrs.begin(), Attrs.end(), S->getAttrArrayPtr());
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 417 bool VerifyAttributeCount(AttributeSet Attrs, unsigned Params);
418 void VerifyAttributeTypes(AttributeSet Attrs, unsigned Idx, bool isFunction,
420 void VerifyParameterAttrs(AttributeSet Attrs, unsigned Idx, Type *Ty,
422 void VerifyFunctionAttrs(FunctionType *FT, AttributeSet Attrs,
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 367 ParsedAttributes Attrs;
432 Attrs(attrFactory),
706 return Attrs.getPool();
727 Attrs.addAll(AL);
730 bool hasAttributes() const { return !Attrs.empty(); }
732 ParsedAttributes &getAttributes() { return Attrs; }
733 const ParsedAttributes &getAttributes() const { return Attrs; }
735 void takeAttributesFrom(ParsedAttributes &attrs) {
736 Attrs.takeAllFrom(attrs);
    [all...]

Completed in 180 milliseconds

1 23