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 145 unsigned NumAttrs; ///< Number of attributes in this node.
147 AttributeSetNode(ArrayRef<Attribute> Attrs) : NumAttrs(Attrs.size()) {
161 bool hasAttributes() const { return NumAttrs != 0; }
173 iterator end() const { return begin() + NumAttrs; }
194 unsigned NumAttrs; ///< Number of entries in this set.
207 : Context(C), NumAttrs(Attrs.size()) {
226 unsigned getNumAttributes() const { return NumAttrs; }
Attributes.cpp 771 uint64_t NumAttrs = pImpl->getNumAttributes();
774 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
798 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
824 uint64_t NumAttrs = pImpl->getNumAttributes();
827 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
849 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 831 unsigned NumAttrs;
837 NumAttrs(Attrs.size()) {
841 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
842 : Stmt(AttributedStmtClass, Empty), NumAttrs(NumAttrs) {
843 memset(getAttrArrayPtr(), 0, NumAttrs * sizeof(Attr *));
855 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
859 return llvm::makeArrayRef(getAttrArrayPtr(), 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 338 milliseconds