HomeSort by: relevance | last modified time | path
    Searched refs:NumAttrs (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
AttributeImpl.h 217 unsigned NumAttrs; ///< Number of attributes in this node.
240 unsigned getNumAttributes() const { return NumAttrs; }
246 bool hasAttributes() const { return NumAttrs != 0; }
267 iterator end() const { return begin() + NumAttrs; }
Attributes.cpp 893 : NumAttrs(Attrs.size()) {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDie.cpp 713 auto NumAttrs = AbbrDecl.getNumAttributes();
714 if (Index < NumAttrs) {
731 assert(Index == NumAttrs && "Indexes should be [0, NumAttrs) only");
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 426 unsigned NumAttrs) {
427 assert(NumAttrs > 0 && "NumAttrs should be greater than zero");
428 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs),
430 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 151 unsigned NumAttrs : 32 - NumStmtBits;
1856 AttributedStmtBits.NumAttrs = Attrs.size();
1861 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
1863 AttributedStmtBits.NumAttrs = NumAttrs;
1865 std::fill_n(getAttrArrayPtr(), NumAttrs, nullptr);
1878 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
1882 return llvm::makeArrayRef(getAttrArrayPtr(), AttributedStmtBits.NumAttrs);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 199 // NumAttrs in AttributedStmt is set when creating an empty
202 uint64_t NumAttrs = Record.readInt();
205 (void)NumAttrs;
206 assert(NumAttrs == S->AttributedStmtBits.NumAttrs);
207 assert(NumAttrs == Attrs.size());
2729 /*NumAttrs*/Record[ASTStmtReader::NumStmtFields]);
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 515 unsigned NumAttrs;
520 NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
521 if (NumAttrs != 0) {
523 for (i = 0; i != NumAttrs; ++i) {

Completed in 60 milliseconds