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 150 unsigned NumAttrs; ///< Number of attributes in this node.
152 AttributeSetNode(ArrayRef<Attribute> Attrs) : NumAttrs(Attrs.size()) {
165 bool hasAttributes() const { return NumAttrs != 0; }
178 iterator end() const { return begin() + NumAttrs; }
203 unsigned NumAttrs; ///< Number of entries in this set.
206 size_t numTrailingObjects(OverloadToken<IndexAttrPair>) { return NumAttrs; }
219 : Context(C), NumAttrs(Attrs.size()) {
238 unsigned getNumAttributes() const { return NumAttrs; }
Attributes.cpp 827 uint64_t NumAttrs = pImpl->getNumAttributes();
830 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
854 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
878 uint64_t NumAttrs = pImpl->getNumAttributes();
881 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
903 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
919 uint64_t NumAttrs = pImpl->getNumAttributes();
922 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
939 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 std::fill_n(getAttrArrayPtr(), NumAttrs, nullptr);
847 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
851 return llvm::makeArrayRef(getAttrArrayPtr(), NumAttrs);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 323 unsigned NumAttrs) {
324 assert(NumAttrs > 0 && "NumAttrs should be greater than zero");
325 void *Mem = C.Allocate(sizeof(AttributedStmt) + sizeof(Attr *) * NumAttrs,
327 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 428 unsigned NumAttrs;
433 NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
434 if (NumAttrs != 0) {
436 for (i = 0; i != NumAttrs; ++i) {
    [all...]

Completed in 657 milliseconds