HomeSort by relevance Sort by last modified time
    Searched refs:NumAttrs (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/IR/
Attributes.cpp 675 uint64_t NumAttrs = pImpl->getNumAttributes();
678 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
702 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
728 uint64_t NumAttrs = pImpl->getNumAttributes();
731 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
753 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 809 unsigned NumAttrs;
816 NumAttrs(Attrs.size()) {
820 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
821 : Stmt(AttributedStmtClass, Empty), NumAttrs(NumAttrs) {
822 memset(Attrs, 0, NumAttrs * sizeof(Attr*));
829 static AttributedStmt *CreateEmpty(ASTContext &C, unsigned NumAttrs);
833 return ArrayRef<const Attr*>(Attrs, NumAttrs);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 293 AttributedStmt *AttributedStmt::CreateEmpty(ASTContext &C, unsigned NumAttrs) {
294 assert(NumAttrs > 0 && "NumAttrs should be greater than zero");
296 sizeof(Attr*) * (NumAttrs - 1),
298 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 163 uint64_t NumAttrs = Record[Idx++];
166 (void)NumAttrs;
167 assert(NumAttrs == S->NumAttrs);
168 assert(NumAttrs == Attrs.size());
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 340 unsigned NumAttrs;
345 NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
346 if (NumAttrs != 0) {
348 for (i = 0; i != NumAttrs; ++i) {
    [all...]

Completed in 37 milliseconds