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

1234

/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dmain.h27 struct Current struct in namespace:gl
/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/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;
H A DBufferedTreeNodeStream.cs78 public object Current { property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
/external/chromium_org/base/process/
H A Dprocess_posix.cc17 Process Process::Current() { function in class:base::Process
H A Dprocess_win.cc78 Process Process::Current() { function in class:base::Process
/external/chromium_org/media/cast/common/
H A Dclock_drift_smoother.cc20 base::TimeDelta ClockDriftSmoother::Current() const { function in class:media::cast::ClockDriftSmoother
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.h17 struct Current struct in namespace:egl
/external/chromium_org/v8/src/
H A Dlithium-inl.h40 LOperand* TempIterator::Current() { function in class:v8::internal::TempIterator
66 LOperand* InputIterator::Current() { function in class:v8::internal::InputIterator
97 LOperand* UseIterator::Current() { function in class:v8::internal::UseIterator
99 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
100 : input_iterator_.Current();
H A Ddata-flow.h36 int Current() const { function in class:v8::internal::BitVector::BASE_EMBEDDED
203 int Current() const { return it_.Current(); } function in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
224 Add(it.Current(), zone);
/external/chromium_org/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/llvm/include/llvm/ADT/
H A Dedit_distance.h66 unsigned *Current = Previous + (n + 1); local
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;
[all...]
/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.h175 /// Current - The current declaration.
176 decl_type *Current; member in class:clang::Redeclarable::redecl_iterator
187 redecl_iterator() : Current(nullptr) { }
189 : Current(C), Starter(C), PassedFirst(false) { }
191 reference operator*() const { return Current; }
192 pointer operator->() const { return Current; }
195 assert(Current && "Advancing while iterator has reached end");
197 if (Current->isFirstDecl()) {
200 Current = nullptr;
207 decl_type *Next = Current
[all...]
H A DStmtOpenMP.h95 ArrayRef<OMPClause *>::const_iterator Current; member in class:clang::OMPExecutableDirective::filtered_clause_iterator
99 while (Current != End && !Pred(*Current))
100 ++Current;
105 filtered_clause_iterator() : Current(), End() {}
107 : Current(Arr.begin()), End(Arr.end()), Pred(Pred) {
110 value_type operator*() const { return *Current; }
111 value_type operator->() const { return *Current; }
113 ++Current;
124 bool operator!() { return 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/clang/lib/Format/
H A DTokenAnnotator.h52 FormatToken *Current = First; local
57 Current->Next = I->Tok;
58 I->Tok->Previous = Current;
59 Current = Current->Next;
60 Current->Children.clear();
66 Current->Children.push_back(Children.back());
69 Last = Current;
/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)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
103 << Current->Message << "\" at line " << Current->Line << ", column "
104 << Current->Col;
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
112 const Comment &C = *Current;
[all...]
/external/llvm/include/llvm/Object/
H A DSymbolicFile.h49 content_type Current; member in class:llvm::object::content_iterator
52 content_iterator(content_type symb) : Current(symb) {}
54 const content_type *operator->() const { return &Current; }
56 const content_type &operator*() const { return Current; }
59 return Current == other.Current;
67 Current.moveNext();
/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.cpp79 for (const Module *Current = this; Current; Current = Current->Parent) {
80 if (!Current->MissingHeaders.empty()) {
81 MissingHeader = Current->MissingHeaders.front();
84 for (unsigned I = 0, N = Current->Requirements.size(); I != N; ++I) {
85 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) !=
86 Current->Requirements[I].second) {
87 Req = Current
175 Module *Current = Stack.back(); local
[all...]
/external/llvm/include/llvm/Option/
H A DArgList.h31 SmallVectorImpl<Arg*>::const_iterator Current; member in class:llvm::opt::arg_iterator
58 : Current(it), Args(_Args), Id0(_Id0), Id1(_Id1), Id2(_Id2) {
62 operator const Arg*() { return *Current; }
63 reference operator*() const { return *Current; }
64 pointer operator->() const { return Current; }
67 ++Current;
79 return LHS.Current == RHS.Current;
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h173 BlockInterference *Current; member in class:llvm::InterferenceCache::Cursor
177 Current = nullptr;
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {}
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) {
212 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
217 return Current->First.isValid();
223 return Current->First;
229 return Current->Last;

Completed in 5393 milliseconds

1234