HomeSort by relevance Sort by last modified time
    Searched full:specific_attr_iterator (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/AST/
AttrIterator.h 10 // This file defines the Attr vector and specific_attr_iterator interfaces.
45 /// specific_attr_iterator - Iterates over a subrange of an AttrVec, only
48 class specific_attr_iterator { class in namespace:clang
77 specific_attr_iterator() : Current() { } function in class:clang::specific_attr_iterator
78 explicit specific_attr_iterator(Iterator i) : Current(i) { } function in class:clang::specific_attr_iterator
89 specific_attr_iterator& operator++() {
93 specific_attr_iterator operator++(int) {
94 specific_attr_iterator Tmp(*this);
99 friend bool operator==(specific_attr_iterator Left,
100 specific_attr_iterator Right)
    [all...]
DeclBase.h 477 llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const {
482 specific_attr_iterator<T> specific_attr_begin() const {
483 return specific_attr_iterator<T>(attr_begin());
486 specific_attr_iterator<T> specific_attr_end() const {
487 return specific_attr_iterator<T>(attr_end());
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 326 specific_attr_iterator<AlignedAttr> I(V.begin()), E(V.end());
    [all...]
ItaniumMangle.cpp 483 // FIXME: specific_attr_iterator iterates in reverse order. Fix that and use
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
SemaOpenMP.cpp 539 for (specific_attr_iterator<AlignedAttr> I(Attrs->begin()), E(Attrs->end());
    [all...]

Completed in 561 milliseconds