/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 268 if (Current >= End) in setError() 269 Current = End - 1; in setError() 274 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message); in setError() 279 setError(Message, Current); in setError() 289 return StringRef(Current, End - Current); in currentInput() 469 StringRef::iterator Current; member in llvm::yaml::Scanner 711 Current = InputBuffer->getBufferStart(); in Scanner() 833 StringRef::iterator Start = Current; in scan_ns_uri_char() 835 if (Current == End) in scan_ns_uri_char() 837 if (( *Current == '%' in scan_ns_uri_char() [all …]
|
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
D | main.cpp | 42 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); in DllMain() 89 Current *current = (Current*)TlsGetValue(currentTLS); in setCurrentError() 96 Current *current = (Current*)TlsGetValue(currentTLS); in getCurrentError() 103 Current *current = (Current*)TlsGetValue(currentTLS); in setCurrentAPI() 110 Current *current = (Current*)TlsGetValue(currentTLS); in getCurrentAPI() 117 Current *current = (Current*)TlsGetValue(currentTLS); in setCurrentDisplay() 124 Current *current = (Current*)TlsGetValue(currentTLS); in getCurrentDisplay() 131 Current *current = (Current*)TlsGetValue(currentTLS); in setCurrentDrawSurface() 138 Current *current = (Current*)TlsGetValue(currentTLS); in getCurrentDrawSurface() 145 Current *current = (Current*)TlsGetValue(currentTLS); in setCurrentReadSurface() [all …]
|
/external/clang/include/clang/AST/ |
D | Redeclarable.h | 117 decl_type *Current; variable 128 redecl_iterator() : Current(0) { } in redecl_iterator() 130 : Current(C), Starter(C), PassedFirst(false) { } in redecl_iterator() 132 reference operator*() const { return Current; } 133 pointer operator->() const { return Current; } 136 assert(Current && "Advancing while iterator has reached end"); 138 if (Current->isFirstDeclaration()) { 141 Current = 0; 148 decl_type *Next = Current->RedeclLink.getNext(); 149 Current = (Next != Starter ? Next : 0); [all …]
|
D | Attr.h | 165 mutable AttrVec::const_iterator Current; variable 168 while (!isa<SpecificAttr>(*Current)) in AdvanceToNext() 169 ++Current; in AdvanceToNext() 173 while (Current != I && !isa<SpecificAttr>(*Current)) in AdvanceToNext() 174 ++Current; in AdvanceToNext() 184 specific_attr_iterator() : Current() { } in specific_attr_iterator() 185 explicit specific_attr_iterator(AttrVec::const_iterator i) : Current(i) { } in specific_attr_iterator() 189 return cast<SpecificAttr>(*Current); 193 return cast<SpecificAttr>(*Current); 197 ++Current; [all …]
|
D | DeclBase.h | 691 Decl *Current; variable 701 redecl_iterator() : Current(0) { } in redecl_iterator() 702 explicit redecl_iterator(Decl *C) : Current(C), Starter(C) { } in redecl_iterator() 704 reference operator*() const { return Current; } 705 pointer operator->() const { return Current; } 708 assert(Current && "Advancing while iterator has reached end"); 710 Decl *Next = Current->getNextRedeclaration(); 712 Current = (Next != Starter ? Next : 0); 723 return x.Current == y.Current; 726 return x.Current != y.Current; [all …]
|
/external/llvm/include/llvm/ADT/ |
D | edit_distance.h | 66 unsigned *Current = Previous + (n + 1); variable 72 Current[0] = y; 73 unsigned BestThisRow = Current[0]; 77 Current[x] = std::min( 79 std::min(Current[x-1], Previous[x])+1); 82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1]; 83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1; 85 BestThisRow = std::min(BestThisRow, Current[x]); 91 unsigned *tmp = Current; 92 Current = Previous;
|
/external/v8/src/ |
D | cpu-profiler.cc | 175 Isolate* isolate = Isolate::Current(); in AddCurrentStack() 263 ASSERT(Isolate::Current()->cpu_profiler() != NULL); in StartProfiling() 264 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title); in StartProfiling() 269 ASSERT(Isolate::Current()->cpu_profiler() != NULL); in StartProfiling() 270 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title); in StartProfiling() 275 Isolate* isolate = Isolate::Current(); in StopProfiling() 282 Isolate* isolate = Isolate::Current(); in StopProfiling() 290 ASSERT(Isolate::Current()->cpu_profiler() != NULL); in GetProfilesCount() 292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles( in GetProfilesCount() 298 ASSERT(Isolate::Current()->cpu_profiler() != NULL); in GetProfile() [all …]
|
D | heap-profiler.cc | 55 Isolate* isolate = Isolate::Current(); in SetUp() 63 Isolate* isolate = Isolate::Current(); in TearDown() 72 ASSERT(Isolate::Current()->heap_profiler() != NULL); in TakeSnapshot() 73 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name, in TakeSnapshot() 82 ASSERT(Isolate::Current()->heap_profiler() != NULL); in TakeSnapshot() 83 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name, in TakeSnapshot() 141 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); in GetSnapshotsCount() 148 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); in GetSnapshot() 155 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); in FindSnapshot() 162 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); in DeleteAllSnapshots()
|
D | api.cc | 130 i::VMState __state__(i::Isolate::Current(), i::OTHER); in DefaultFatalErrorHandler() 136 i::Isolate* isolate = i::Isolate::Current(); in GetFatalErrorHandler() 203 i::Isolate* isolate = i::Isolate::Current(); in FatalProcessOutOfMemory() 305 ASSERT(isolate == i::Isolate::Current()); in EnsureInitializedForIsolate() 322 isolate = i::Isolate::Current(); in EnterIsolateIfNeeded() 486 i::Isolate* isolate = i::Isolate::Current(); in ThrowException() 537 i::Isolate* isolate = i::Isolate::Current(); in Undefined() 547 i::Isolate* isolate = i::Isolate::Current(); in Null() 557 i::Isolate* isolate = i::Isolate::Current(); in True() 567 i::Isolate* isolate = i::Isolate::Current(); in False() [all …]
|
D | handles-inl.h | 41 return Isolate::Current(); in GetIsolateForHandle() 71 Isolate* isolate = Isolate::Current(); in HandleScope() 82 ASSERT(isolate == Isolate::Current()); in HandleScope() 97 ASSERT(isolate_ == Isolate::Current()); in CloseScope() 133 ASSERT(isolate == Isolate::Current()); in CreateHandle() 153 Isolate::Current()->handle_scope_data(); in NoHandleAllocation() 168 Isolate::Current()->handle_scope_data(); in ~NoHandleAllocation()
|
D | lithium-allocator-inl.h | 72 LOperand* TempIterator::Current() { in Current() function 100 LOperand* InputIterator::Current() { in Current() function 128 LOperand* UseIterator::Current() { in Current() function 131 ? env_iterator_.Current() in Current() 132 : input_iterator_.Current(); in Current()
|
/external/mesa3d/src/glsl/ |
D | glsl_parser_extras.h | 157 # define YYLLOC_DEFAULT(Current, Rhs, N) \ argument 161 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 162 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \ 163 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \ 164 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \ 168 (Current).first_line = (Current).last_line = \ 170 (Current).first_column = (Current).last_column = \ 173 (Current).source = 0; \
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | main.cpp | 34 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current)); in DllMain() 78 Current *current = (Current*)TlsGetValue(currentTLS); in makeCurrent() 91 Current *current = (Current*)TlsGetValue(currentTLS); in getContext() 98 Current *current = (Current*)TlsGetValue(currentTLS); in getDisplay()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeIterator.cs | 78 public object Current property in Antlr.Runtime.Tree.TreeIterator 107 Current = tree; in MoveNext() 114 Current = nodes.Dequeue(); in MoveNext() 121 Current = eof; in MoveNext() 130 Current = down; in MoveNext() 150 Current = nodes.Dequeue(); in MoveNext() 159 Current = nodes.Dequeue(); in MoveNext() 166 bool result = Current != eof || !reachedEof; in MoveNext() 167 reachedEof = Current == eof; in MoveNext()
|
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp.h | 72 # define YYLLOC_DEFAULT(Current, Rhs, N) \ argument 76 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 77 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \ 78 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \ 79 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \ 83 (Current).first_line = (Current).last_line = \ 85 (Current).first_column = (Current).last_column = \ 88 (Current).source = 0; \
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeIterator.cs | 73 public object Current { property in Antlr.Runtime.Tree.TreeIterator 97 Current = tree; in MoveNext() 101 Current = nodes.Dequeue(); in MoveNext() 105 Current = eof; in MoveNext() 111 Current = down; in MoveNext() 127 Current = nodes.Dequeue(); in MoveNext() 134 Current = nodes.Dequeue(); in MoveNext() 141 return Current != eof; in MoveNext()
|
/external/llvm/lib/CodeGen/ |
D | InterferenceCache.h | 145 BlockInterference *Current; variable 149 Current = 0; in setEntry() 161 Cursor() : CacheEntry(0), Current(0) {} in Cursor() 164 Cursor(const Cursor &O) : CacheEntry(0), Current(0) { in Cursor() 184 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference; in moveToBlock() 189 return Current->First.isValid(); in hasInterference() 195 return Current->First; in first() 201 return Current->Last; in last()
|
/external/llvm/lib/VMCore/ |
D | Use.cpp | 53 const Use *Current = this; in getImpliedUser() local 56 unsigned Tag = (Current++)->Prev.getInt(); in getImpliedUser() 63 ++Current; in getImpliedUser() 66 unsigned Tag = Current->Prev.getInt(); in getImpliedUser() 70 ++Current; in getImpliedUser() 74 return Current + Offset; in getImpliedUser() 80 return Current; in getImpliedUser()
|
/external/clang/lib/Basic/ |
D | Module.cpp | 73 for (const Module *Current = this; Current; Current = Current->Parent) { in isAvailable() local 74 for (unsigned I = 0, N = Current->Requires.size(); I != N; ++I) { in isAvailable() 75 if (!hasFeature(Current->Requires[I], LangOpts, Target)) { in isAvailable() 76 Feature = Current->Requires[I]; in isAvailable() 146 Module *Current = Stack.back(); in addRequirement() local 149 if (!Current->IsAvailable) in addRequirement() 152 Current->IsAvailable = false; in addRequirement() 153 for (submodule_iterator Sub = Current->submodule_begin(), in addRequirement() 154 SubEnd = Current->submodule_end(); in addRequirement()
|
/external/v8/test/cctest/ |
D | test-deoptimization.cc | 133 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 149 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 171 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 188 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 212 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 236 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 268 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 289 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 306 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() 335 CHECK_EQ(0, Deoptimizer::GetDeoptimizedCodeCount(Isolate::Current())); in TEST() [all …]
|
D | test-compiler.cc | 104 return Isolate::Current()->context()->global()->GetProperty(*symbol); in GetGlobalProperty() 111 Handle<JSObject> global(Isolate::Current()->context()->global()); in SetGlobalProperty() 128 Isolate::Current()->global_context()); in Compile() 141 Handle<JSObject> global(Isolate::Current()->context()->global()); in Inc() 162 Handle<JSObject> global(Isolate::Current()->context()->global()); in Add() 182 Handle<JSObject> global(Isolate::Current()->context()->global()); in Abs() 203 Handle<JSObject> global(Isolate::Current()->context()->global()); in Sum() 224 Handle<JSObject> global(Isolate::Current()->context()->global()); in TEST() 257 Handle<JSObject> global(Isolate::Current()->context()->global()); in TEST() 272 Handle<JSObject> global(Isolate::Current()->context()->global()); in TEST() [all …]
|
D | test-dataflow.cc | 39 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); in TEST() 63 CHECK_EQ(27, iter.Current()); in TEST() 65 CHECK_EQ(30, iter.Current()); in TEST() 67 CHECK_EQ(31, iter.Current()); in TEST() 69 CHECK_EQ(33, iter.Current()); in TEST()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | autodetectproxy.cc | 65 Thread::Current()->ProcessMessages(kForever); in DoWork() 92 Thread::Current()->Clear(this, MSG_TIMEOUT); in Next() 94 Thread::Current()->Dispose(socket_); in Next() 98 socket_ = Thread::Current()->socketserver()->CreateAsyncSocket(SOCK_STREAM); in Next() 105 Thread::Current()->PostDelayed(2000, this, MSG_TIMEOUT); in Next() 109 Thread::Current()->Clear(this, MSG_TIMEOUT); in Complete() 117 Thread::Current()->Quit(); in Complete()
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
D | mediamonitor.cc | 71 ASSERT(talk_base::Thread::Current() == worker_thread_); in OnMessage() 79 ASSERT(talk_base::Thread::Current() == worker_thread_); in OnMessage() 87 ASSERT(talk_base::Thread::Current() == worker_thread_); in OnMessage() 92 ASSERT(talk_base::Thread::Current() == monitor_thread_); in OnMessage() 100 ASSERT(talk_base::Thread::Current() == worker_thread_); in PollMediaChannel()
|
D | audiomonitor.cc | 67 assert(talk_base::Thread::Current() == voice_channel_->worker_thread()); in OnMessage() 75 assert(talk_base::Thread::Current() == voice_channel_->worker_thread()); in OnMessage() 83 assert(talk_base::Thread::Current() == voice_channel_->worker_thread()); in OnMessage() 89 assert(talk_base::Thread::Current() == monitoring_thread_); in OnMessage() 101 assert(talk_base::Thread::Current() == voice_channel_->worker_thread()); in PollVoiceChannel()
|