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

  /external/llvm/lib/IR/
AttributeImpl.h 141 unsigned NumAttrs; ///< Number of attributes in this node.
143 AttributeSetNode(ArrayRef<Attribute> Attrs) : NumAttrs(Attrs.size()) {
157 bool hasAttributes() const { return NumAttrs != 0; }
168 iterator end() const { return begin() + NumAttrs; }
189 unsigned NumAttrs; ///< Number of entries in this set.
202 : Context(C), NumAttrs(Attrs.size()) {
221 unsigned getNumAttributes() const { return NumAttrs; }
Attributes.cpp 693 uint64_t NumAttrs = pImpl->getNumAttributes();
696 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
720 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
746 uint64_t NumAttrs = pImpl->getNumAttributes();
749 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
771 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
    [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/include/clang/AST/
Stmt.h 802 unsigned NumAttrs;
809 NumAttrs(Attrs.size()) {
813 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
814 : Stmt(AttributedStmtClass, Empty), NumAttrs(NumAttrs) {
815 memset(Attrs, 0, NumAttrs * sizeof(Attr*));
822 static AttributedStmt *CreateEmpty(ASTContext &C, unsigned NumAttrs);
826 return ArrayRef<const Attr*>(Attrs, NumAttrs);
    [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 106 milliseconds