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

1 2 3

  /external/chromium_org/base/process/
process_posix.cc 17 Process Process::Current() {
process_win.cc 78 Process Process::Current() {
  /external/chromium_org/third_party/angle/src/libEGL/
main.h 17 struct Current
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.h 27 struct Current
  /external/llvm/lib/Target/NVPTX/
ManagedStringPool.h 32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin();
33 while (Current != Pool.end()) {
34 delete *Current;
35 Current++;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 73 public object Current {
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;
BufferedTreeNodeStream.cs 78 public object Current {
142 /** <summary>The index into the nodes list of the current node (next node
430 calls.Push(p); // save current index
  /external/chromium_org/media/cast/common/
clock_drift_smoother.cc 20 base::TimeDelta ClockDriftSmoother::Current() const {
  /external/chromium_org/v8/src/
lithium-inl.h 40 LOperand* TempIterator::Current() {
66 LOperand* InputIterator::Current() {
81 LOperand* current = instr_->InputAt(current_); local
82 if (current != NULL && !current->IsConstantOperand()) break;
97 LOperand* UseIterator::Current() {
99 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
100 : input_iterator_.Current();
data-flow.h 36 int Current() const {
203 int Current() const { return it_.Current(); }
224 Add(it.Current(), zone);
  /external/chromium_org/v8/tools/testrunner/server/
compression.py 61 def Current(self):
  /external/llvm/include/llvm/ADT/
edit_distance.h 66 unsigned *Current = Previous + (n + 1);
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/llvm/lib/IR/
Use.cpp 95 const Use *Current = this;
98 unsigned Tag = (Current++)->Prev.getInt();
105 ++Current;
108 unsigned Tag = Current->Prev.getInt();
112 ++Current;
116 return Current + Offset;
122 return Current;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 78 public object Current
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;
BufferedTreeNodeStream.cs 82 public object Current
151 /** <summary>The index into the nodes list of the current node (next node
511 calls.Push( p ); // save current index
  /art/runtime/
thread-inl.h 31 // Quickly access the current thread from a JNIEnv.
37 inline Thread* Thread::Current() {
38 // We rely on Thread::Current returning NULL for a detached thread, so it's not obvious
52 DCHECK_EQ(this, Thread::Current());
83 DCHECK_EQ(this, Thread::Current());
94 // Change the state but keep the current flags (kCheckpointRequest is clear).
159 if (Runtime::Current()->GetHeap()->IsObjectValidationEnabled()) {
193 DCHECK(Thread::Current() == this) << "Should be called by self";
206 Thread* self = Thread::Current();
  /external/clang/include/clang/AST/
AttrIterator.h 51 /// Current - The current, underlying iterator.
58 mutable Iterator Current;
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) {
    [all...]
Redeclarable.h 175 /// Current - The current declaration.
176 decl_type *Current;
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
    [all...]
StmtOpenMP.h 95 ArrayRef<OMPClause *>::const_iterator Current;
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 == End;
    [all...]
  /external/clang/lib/Basic/
Module.cpp 57 /// \brief Determine whether a translation unit built using the current
79 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)
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.h 52 FormatToken *Current = First;
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/
CommentHandlerTest.cpp 91 CommentList::const_iterator Current;
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/
SymbolicFile.h 49 content_type Current;
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/
HashList.cs 145 public object Current
304 result.Append((iter.Current == null) ? "null" : iter.Current);
308 result.Append((iter.Current == null) ? "null" : iter.Current);
  /external/clang/test/SemaCXX/
constructor-initializer.cpp 89 struct Current : Derived {
91 Current() : Derived(1), ::Derived(), // expected-warning {{field 'Derived' will be initialized after base '::Derived'}} \
93 ::Derived::Base(), // expected-error {{type '::Derived::Base' is not a direct or virtual base of 'Current'}}
94 Derived::Base1(), // expected-error {{type 'Derived::Base1' is not a direct or virtual base of 'Current'}}

Completed in 447 milliseconds

1 2 3