Searched defs:Current (Results 1 - 25 of 113) sorted by relevance

12345

/external/llvm/lib/Target/NVPTX/
H A DManagedStringPool.h32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin(); local
33 while (Current != Pool.end()) {
34 delete *Current;
35 Current++;
/external/annotation-tools/annotation-file-utilities/
H A Ddesign.tex54 \section{Current AFU}
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs73 public object Current { property in class:Antlr.Runtime.Tree.TreeIterator
97 Current = tree;
101 Current = nodes.Dequeue();
105 Current = eof;
111 Current = down;
127 Current = nodes.Dequeue();
134 Current = nodes.Dequeue();
141 return Current != eof;
/external/swiftshader/src/OpenGL/libEGL/
H A Dmain.h34 struct Current struct in namespace:egl
/external/swiftshader/src/OpenGL/libGL/
H A Dmain.h32 struct Current struct in namespace:gl
/external/v8/src/crankshaft/
H A Dlithium-inl.h44 LOperand* TempIterator::Current() { function in class:v8::internal::TempIterator
70 LOperand* InputIterator::Current() { function in class:v8::internal::InputIterator
101 LOperand* UseIterator::Current() { function in class:v8::internal::UseIterator
103 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
104 : input_iterator_.Current();
/external/v8/tools/testrunner/server/
H A Dcompression.py61 def Current(self): member in class:Receiver
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs78 public object Current property in class:Antlr.Runtime.Tree.TreeIterator
107 Current = tree;
114 Current = nodes.Dequeue();
121 Current = eof;
130 Current = down;
150 Current = nodes.Dequeue();
159 Current = nodes.Dequeue();
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
H A DBufferedTreeNodeStream.cs82 public object Current property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
/external/pdfium/core/fxcrt/
H A Dcfx_seekablestreamproxy.h20 Current, member in class:CFX_SeekableStreamProxy::From
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUse.cpp52 const Use *Current = this; local
55 unsigned Tag = (Current++)->Prev.getInt();
62 ++Current;
65 unsigned Tag = Current->Prev.getInt();
69 ++Current;
73 return Current + Offset;
79 return Current;
/external/clang/include/clang/AST/
H A DAttrIterator.h51 /// Current - The current, underlying iterator.
58 mutable Iterator Current; member in class:clang::specific_attr_iterator
61 while (!isa<SpecificAttr>(*Current))
62 ++Current;
66 while (Current != I && !isa<SpecificAttr>(*Current))
67 ++Current;
77 specific_attr_iterator() : Current() { }
78 explicit specific_attr_iterator(Iterator i) : Current(i) { }
82 return cast<SpecificAttr>(*Current);
[all...]
H A DRedeclarable.h181 /// Current - The current declaration.
182 decl_type *Current; member in class:clang::Redeclarable::redecl_iterator
193 redecl_iterator() : Current(nullptr) { }
195 : Current(C), Starter(C), PassedFirst(false) { }
197 reference operator*() const { return Current; }
198 pointer operator->() const { return Current; }
201 assert(Current && "Advancing while iterator has reached end");
203 if (Current->isFirstDecl()) {
206 Current = nullptr;
213 decl_type *Next = Current
[all...]
/external/llvm/lib/IR/
H A DUse.cpp95 const Use *Current = this; local
98 unsigned Tag = (Current++)->Prev.getInt();
105 ++Current;
108 unsigned Tag = Current->Prev.getInt();
112 ++Current;
116 return Current + Offset;
122 return Current;
/external/v8/src/ic/
H A Dic-stats.h57 V8_INLINE ICInfo& Current() { function in class:v8::internal::ICStats
/external/clang/lib/Format/
H A DTokenAnnotator.h53 FormatToken *Current = First; local
58 Current->Next = I->Tok;
59 I->Tok->Previous = Current;
60 Current = Current->Next;
61 Current->Children.clear();
64 Current->Children.push_back(Children.back());
67 Last = Current;
75 FormatToken *Current = First; local
76 while (Current) {
[all...]
H A DSortJavaScriptImports.cpp203 FormatToken *Current; member in class:clang::format::JavaScriptImportSorter
210 void skipComments() { Current = skipComments(Current); }
219 Current = Current->Next;
221 if (!Current || Current == LineEnd->Next) {
225 Current = &invalidToken;
289 Current = Line->First;
297 if (!Current)
[all...]
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp91 CommentList::const_iterator Current; member in class:clang::CommentVerifier
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
100 CommentVerifier(CommentVerifier &&C) : Current(C.Current), End(C.End), PP(C.PP) {
101 C.Current = C.End;
105 if (Current != End) {
106 EXPECT_TRUE(Current == End) << "Unexpected comment \""
107 << Current->Message << "\" at line " << Current->Line << ", column "
108 << Current
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSpeculativeExecution.cpp262 // We have to increment I before moving Current as moving Current
264 auto Current = I; local
266 if (!NotHoisted.count(&*Current)) {
267 Current->moveBefore(ToBlock.getTerminator());
/external/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp224 CallInst *Current = dyn_cast<CallInst>(&I); local
225 if (!Current || isa<DbgInfoIntrinsic>(&I))
228 DILocation *CurrentDIL = Current->getDebugLoc();
238 Current->setDebugLoc(DILocation::get(Ctx, CurrentDIL->getLine(),
/external/swiftshader/third_party/subzero/src/
H A DIceMemory.h65 sz_allocator() : Current() {}
68 : Current() {}
100 if (Current == nullptr) {
101 Current = Traits::current();
103 assert(Current == Traits::current());
104 return Current;
108 typename Traits::allocator_type Current; member in struct:Ice::sz_allocator
H A DIceTimerTree.cpp184 double Current = timestamp(); local
185 double Delta = Current - LastTimestamp;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs145 public object Current property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
304 result.Append((iter.Current == null) ? "null" : iter.Current);
308 result.Append((iter.Current == null) ? "null" : iter.Current);
/external/clang/lib/Basic/
H A DModule.cpp86 for (const Module *Current = this; Current; Current = Current->Parent) {
87 for (unsigned I = 0, N = Current->Requirements.size(); I != N; ++I) {
88 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) !=
89 Current->Requirements[I].second) {
90 Req = Current->Requirements[I];
94 if (!Current->MissingHeaders.empty()) {
95 MissingHeader = Current
208 Module *Current = Stack.back(); local
[all...]
/external/libchrome/base/process/
H A Dprocess_posix.cc235 Process Process::Current() { function in class:base::Process
242 return Current();
282 return Current();

Completed in 881 milliseconds

12345