HomeSort by relevance Sort by last modified time
    Searched defs:Current (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
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
  /external/chromium_org/v8/src/
data-flow.h 36 int Current() const {
189 int Current() const { return it_.Current(); }
210 Add(it.Current(), zone);
types.cc 342 if (*it.Current() == map) return true;
355 if (!it.Current()->is_stable()) return false;
420 if (*it.Current() == value) return true;
740 static i::Handle<T> current(typename TypeImpl<Config>::TypeHandle type);
748 static i::Handle<i::Map> current(typename TypeImpl<Config>::TypeHandle type) { function in struct:v8::internal::TypeImplIteratorAux
758 static i::Handle<i::Object> current( function in struct:v8::internal::TypeImplIteratorAux
770 i::Handle<T> TypeImpl<Config>::Iterator<T>::Current() {
771 return TypeImplIteratorAux<Config, T>::current(get_type());
  /external/clang/include/clang/AST/
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/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'}}
  /external/llvm/include/llvm/Option/
ArgList.h 30 /// The current argument.
31 SmallVectorImpl<Arg*>::const_iterator Current;
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/
InterferenceCache.h 51 /// MF - The current function.
173 BlockInterference *Current;
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;
215 /// hasInterference - Return true if the current block has any interference.
217 return Current->First.isValid();
221 /// current block.
223 return Current->First
    [all...]
PostRASchedulerList.cpp 129 /// This is the instruction number from the top of the current block, not
147 // Set the index of RegionEnd within the current BB.
156 /// Notify that the scheduler has finished scheduling the current region.
165 /// Observe - Update liveness information to account for the current
309 MachineBasicBlock::iterator Current = MBB->end();
311 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
318 Scheduler.enterRegion(MBB, I, Current, CurrentCount - Count);
323 Current = MI;
332 assert((MBB->begin() == Current || CurrentCount != 0) &&
334 Scheduler.enterRegion(MBB, MBB->begin(), Current, CurrentCount)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 439 Value *Current = V;
443 if (Constant *C = dyn_cast<Constant>(Current)) {
444 // If Current is a constant, apply s/zext using ConstantExpr::getCast.
446 Current = ConstantExpr::getCast((*I)->getOpcode(), C, (*I)->getType());
449 Ext->setOperand(0, Current);
451 Current = Ext;
454 return Current;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.cc 58 Thread* Thread::Current() {
394 Thread *current_thread = Thread::Current();
  /external/chromium_org/third_party/webrtc/base/
thread.cc 41 Thread* Thread::Current() {
377 Thread *current_thread = Thread::Current();
  /external/clang/lib/Analysis/
ReachableCode.cpp 62 // Look to see if the current control flow ends with a 'return', and see if
65 const CFGBlock *Current = B;
67 for (CFGBlock::const_reverse_iterator I = Current->rbegin(),
68 E = Current->rend();
90 if (Current->getTerminator().isTemporaryDtorsBranch()) {
95 assert(Current->succ_size() == 2);
96 Current = *(Current->succ_begin() + 1);
97 } else if (!Current->getTerminator() && Current->succ_size() == 1)
    [all...]
  /external/clang/lib/Format/
ContinuationIndenter.cpp 47 // Returns \c true if \c Current starts a new parameter.
48 static bool startsNextParameter(const FormatToken &Current,
50 const FormatToken &Previous = *Current.Previous;
51 if (Current.Type == TT_CtorInitializerComma &&
54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
92 const FormatToken &Current = *State.NextToken;
93 const FormatToken &Previous = *Current.Previous;
94 assert(&Previous == Current.Previous);
95 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
96 Current.closesBlockTypeList(Style))
    [all...]
TokenAnnotator.cpp 75 // the context for the current opening angle bracket.
331 void updateParameterCount(FormatToken *Left, FormatToken *Current) {
332 if (Current->Type == TT_LambdaLSquare ||
333 (Current->is(tok::caret) && Current->Type == TT_UnaryOperator) ||
335 Current->TokenText == "function")) {
338 if (Current->is(tok::comma)) {
342 Left->Role->CommaFound(Current);
343 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) {
692 void determineTokenType(FormatToken &Current) {
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 497 const MCSectionCOFF *Current = static_cast<const MCSectionCOFF*>(
503 if (Current->getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT)
504 return Error(Loc, Twine("section '") + Current->getSectionName() +
507 Current->setSelection(Type);
  /external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
SDL_epocaudio.cpp 170 inline static CEpocAudio& Current(SDL_AudioDevice* thisdevice);
210 inline CEpocAudio& CEpocAudio::Current(SDL_AudioDevice* thisdevice)
240 CActiveScheduler* as = CActiveScheduler::Current();
349 CEpocAudio::Current(thisdevice).Dump(buf);
541 CEpocAudio::Current(thisdevice).Open(spec->freq, spec->channels, type, bytes);
543 CEpocAudio::Current(thisdevice).SetPause(ETrue);
567 CEpocAudio::Current(thisdevice).ThreadInitL(thisdevice);
580 CEpocAudio::Current(thisdevice).Wait();
593 if(CEpocAudio::Current(thisdevice).SetPause(SDL_GetAudioStatus() == SDL_AUDIO_PAUSED))
596 CEpocAudio::Current(thisdevice).Play()
    [all...]
  /art/compiler/optimizing/
ssa_liveness_analysis.h 246 LiveRange* current = first_range_; local
247 while (current != nullptr) {
248 if (position >= current->GetStart() && position < current->GetEnd()) {
251 current = current->GetNext();
359 LiveRange* current = first_range_; local
364 if (position >= current->GetEnd()) {
366 previous = current;
367 current = current->next_
411 LiveRange* current = first_range_; local
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-param-util.h 84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
88 virtual const T* Current() const = 0;
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
215 virtual const T* Current() const { return &value_; }
308 // responsible for not calling Current() on an out-of-range iterator.
309 virtual const T* Current() const {
336 // value_ needs to be mutable to be accessed in Current().
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-param-util.h 84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
88 virtual const T* Current() const = 0;
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
215 virtual const T* Current() const { return &value_; }
308 // responsible for not calling Current() on an out-of-range iterator.
309 virtual const T* Current() const {
336 // value_ needs to be mutable to be accessed in Current().
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_utility.cc     [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 858 /// \brief The current position within the identifier lookup table.
859 IdentifierIndexTable::key_iterator Current;
866 Current = Idx.key_begin();
871 if (Current == End)
874 StringRef Result = *Current;
875 ++Current;
  /external/gtest/include/gtest/internal/
gtest-param-util.h 84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
88 virtual const T* Current() const = 0;
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
215 virtual const T* Current() const { return &value_; }
308 // responsible for not calling Current() on an out-of-range iterator.
309 virtual const T* Current() const {
336 // value_ needs to be mutable to be accessed in Current().
  /external/llvm/include/llvm/Support/
TargetRegistry.h 499 const Target *Current;
500 explicit iterator(Target *T) : Current(T) {}
503 iterator() : Current(nullptr) {}
506 return Current == x.Current;
514 assert(Current && "Cannot increment end iterator!");
515 Current = Current->getNext();
525 assert(Current && "Cannot dereference end iterator!");
526 return *Current;
    [all...]

Completed in 2472 milliseconds

12 3 4