HomeSort by relevance Sort by last modified time
    Searched defs:Self (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/lib/AST/
InheritViz.cpp 138 QualType Self = Context.getTypeDeclType(this);
143 Self.getAsString(), "dot", FD, Filename)) {
153 Writer.WriteGraph(Self);
DeclBase.cpp 1020 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this);
1021 for (NamespaceDecl *N = Self->getMostRecentDecl(); N;
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 40 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
41 friend class EntryFactory<Self>;
HashBase.h 74 typedef HashTableImpl<HashEntryTy, HashFunctionTy> Self;
113 friend class ChainIteratorBase<Self>;
114 friend class ChainIteratorBase<const Self>;
115 friend class EntryIteratorBase<Self>;
116 friend class EntryIteratorBase<const Self>;
HashIterator.h 253 typedef HashIterator<IteratorBase, Traits> Self;
285 Self& operator++() {
290 Self operator++(int) {
291 Self tmp = *this;
BinTree.h 95 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self;
138 typedef PolicyIterator<DataType, Traits, IteratorType> Self;
155 Self& operator++() {
160 Self operator++(int) {
161 Self tmp = *this;
187 typedef TreeIterator<value_type, Traits> Self;
218 Self& operator++() {
223 Self operator++(int) {
224 Self tmp = *this;
229 Self& operator--()
    [all...]
  /external/clang/lib/CodeGen/
ModuleBuilder.cpp 40 CodeGeneratorImpl &Self;
41 HandlingTopLevelDeclRAII(CodeGeneratorImpl &Self) : Self(Self) {
42 ++Self.HandlingTopLevelDecls;
45 if (--Self.HandlingTopLevelDecls == 0)
46 Self.EmitDeferredDecls();
  /external/clang/test/SemaTemplate/
enum-argument.cpp 6 typedef C<v> Self;
  /art/runtime/
scoped_thread_state_change.h 36 ScopedThreadStateChange(Thread* self, ThreadState new_thread_state)
38 : self_(self), thread_state_(new_thread_state), expected_has_no_thread_(false) {
45 DCHECK_EQ(self, Thread::Current());
48 old_thread_state_ = self->GetState();
83 Thread* Self() const {
107 Thread* Self() const {
134 Locks::mutator_lock_->AssertSharedHeld(Self());
143 Locks::mutator_lock_->AssertSharedHeld(Self());
145 return down_cast<T>(Self()->DecodeJObject(obj));
150 Locks::mutator_lock_->AssertSharedHeld(Self());
    [all...]
handle_scope.h 148 explicit ALWAYS_INLINE StackHandleScope(Thread* self, mirror::Object* fill_value = nullptr);
161 Thread* Self() const {
198 explicit StackHandleScopeCollection(Thread* const self) :
199 self_(self),
safe_map.h 35 typedef SafeMap<K, V, Comparator, Allocator> Self;
53 Self& operator=(const Self& rhs) {
70 void swap(Self& other) { map_.swap(other.map_); }
140 bool Equals(const Self& rhs) const {
thread.h 163 // Get the currently executing thread, frequently referred to as 'self'. This call has reasonably
164 // high cost and so we favor passing self around when possible.
229 bool ModifySuspendCount(Thread* self, int delta, AtomicInteger* suspend_barrier, bool for_debugger)
465 void Interrupt(Thread* self) REQUIRES(!*wait_mutex_);
472 void NotifyLocked(Thread* self) REQUIRES(wait_mutex_);
602 return ThreadOffsetFromTlsPtr<pointer_size>(OFFSETOF_MEMBER(tls_ptr_sized_values, self));
1392 Thread* self; variable
    [all...]
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 110 ContinuousRangeMap &Self;
116 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { }
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
120 std::unique(Self.Rep.begin(), Self.Rep.end(),
131 Self.Rep.push_back(Val);
  /external/google-benchmark/src/
stat.h 33 typedef Stat1<VType, NumType> Self;
57 Stat1(const Self &stat) {
68 Self &operator=(const Self &stat) {
75 Self &operator+=(const Self &stat) {
82 Self &operator-=(const Self &stat) {
89 Self &operator*=(const VType &k) {
97 Self operator+(const Self &stat) const { return Self(*this) += stat;
    [all...]
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 90 typedef RNSuccIterator<NodeType, BlockT, RegionT> Self;
113 inline bool operator==(const Self& x) const {
121 inline bool operator!=(const Self& x) const { return !operator==(x); }
129 inline Self& operator++() {
143 inline Self operator++(int) {
144 Self tmp = *this;
168 typedef RNSuccIterator<FlatIt<NodeType>, BlockT, RegionT> Self;
196 inline bool operator==(const Self& x) const {
203 inline bool operator!=(const Self& x) const { return !operator==(x); }
218 inline Self& operator++()
    [all...]
RegionInfo.h 568 typedef block_iterator_wrapper<IsConst> Self;
    [all...]
  /external/llvm/include/llvm/IR/
CFG.h 34 typedef PredIterator<Ptr, USE_iterator> Self;
53 inline bool operator==(const Self& x) const { return It == x.It; }
54 inline bool operator!=(const Self& x) const { return !operator==(x); }
62 inline Self& operator++() { // Preincrement
68 inline Self operator++(int) { // Postincrement
69 Self tmp = *this; ++*this; return tmp;
InstrTypes.h 113 typedef SuccIterator<Term, BB> Self;
121 Self it;
124 explicit SuccessorProxy(const Self &it) : it(it) {}
162 inline bool operator==(const Self &x) const { return idx == x.idx; }
163 inline bool operator!=(const Self &x) const { return !operator==(x); }
168 inline Self &operator++() {
173 inline Self operator++(int) { // Postincrement
174 Self tmp = *this;
179 inline Self &operator--() {
183 inline Self operator--(int) { // Postdecremen
    [all...]
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 29 typedef PolicyIterator<Input, Traits, IteratorType> Self;
47 Self& operator++() {
55 Self operator++(int) {
56 Self tmp(*this);
76 typedef BinaryTree<Input> Self;
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 63 typedef DataIterator<ChunkType, Traits> Self;
90 Self& operator++() {
95 Self operator++(int) {
96 Self tmp = *this;
  /external/clang/include/clang/AST/
ExternalASTSource.h 508 LazyVector *Self;
510 iterator(LazyVector *Self, int Position)
511 : iterator::iterator_adaptor_base(Position), Self(Self) {}
521 return Self->Loaded.end()[this->I];
522 return Self->Local.begin()[this->I];
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 401 PreprocessingRecord *Self;
403 iterator(PreprocessingRecord *Self, int Position)
404 : iterator::iterator_adaptor_base(Position), Self(Self) {}
413 Self->LoadedPreprocessedEntities.size() + this->I : this->I;
414 PPEntityID ID = Self->getPPEntityID(Index, isLoaded);
415 return Self->getPreprocessedEntity(ID);
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 233 : Self(P), Class(C) {}
236 Self->DeallocateParsedClasses(Class);
240 Self->ParseLexedMethodDeclarations(*Class);
244 Self->ParseLexedMemberInitializers(*Class);
248 Self->ParseLexedMethodDefs(*Class);
252 Self->ParseLexedMethodDeclaration(*this);
256 Self->ParseLexedMethodDef(*this);
260 Self->ParseLexedMemberInitializer(*this);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h     [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 478 ASTUnit &Self;
481 explicit ConcurrencyCheck(ASTUnit &Self)
482 : Self(Self)
484 Self.ConcurrencyCheckValue.start();
487 Self.ConcurrencyCheckValue.finish();
    [all...]

Completed in 844 milliseconds

1 2