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

  /external/llvm/lib/IR/
AttributeImpl.h 144 unsigned NumAttrs; ///< Number of attributes in this node.
146 AttributeSetNode(ArrayRef<Attribute> Attrs) : NumAttrs(Attrs.size()) {
160 bool hasAttributes() const { return NumAttrs != 0; }
171 iterator end() const { return begin() + NumAttrs; }
192 unsigned NumAttrs; ///< Number of entries in this set.
205 : Context(C), NumAttrs(Attrs.size()) {
224 unsigned getNumAttributes() const { return NumAttrs; }
Attributes.cpp 711 uint64_t NumAttrs = pImpl->getNumAttributes();
714 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
738 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
764 uint64_t NumAttrs = pImpl->getNumAttributes();
767 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
789 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 821 unsigned NumAttrs;
827 NumAttrs(Attrs.size()) {
831 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
832 : Stmt(AttributedStmtClass, Empty), NumAttrs(NumAttrs) {
833 memset(getAttrArrayPtr(), 0, NumAttrs * sizeof(Attr *));
845 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
849 return ArrayRef<const Attr*>(getAttrArrayPtr(), NumAttrs);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 295 unsigned NumAttrs) {
296 assert(NumAttrs > 0 && "NumAttrs should be greater than zero");
297 void *Mem = C.Allocate(sizeof(AttributedStmt) + sizeof(Attr *) * NumAttrs,
299 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 173 uint64_t NumAttrs = Record[Idx++];
176 (void)NumAttrs;
177 assert(NumAttrs == S->NumAttrs);
178 assert(NumAttrs == Attrs.size());
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 415 unsigned NumAttrs;
420 NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
421 if (NumAttrs != 0) {
423 for (i = 0; i != NumAttrs; ++i) {
    [all...]

Completed in 99 milliseconds