HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 76 - 100 of 773) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/include/clang/AST/
DeclBase.h 142 /// *introduces* a number of other declarations into the current
689 /// scoped decl is defined outside the current function or method. This is
731 /// Current - The current declaration.
732 Decl *Current;
742 redecl_iterator() : Current(nullptr) { }
743 explicit redecl_iterator(Decl *C) : Current(C), Starter(C) { }
745 reference operator*() const { return Current; }
746 value_type operator->() const { return Current; }
749 assert(Current && "Advancing while iterator has reached end")
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Init.c 32 /* "Current" based on maximum(TargetGain,CurrentGain) */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
36 /* fraction gain is provided through Current=0.475 and Target=0.625 */
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
  /external/llvm/lib/Support/
YAMLParser.cpp 277 if (Current >= End)
278 Current = End - 1;
283 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message);
288 setError(Message, Current);
298 return StringRef(Current, End - Current);
400 /// Invalid simple keys are not on the current line or are further than 1024
474 /// @brief The current position of the scanner.
475 StringRef::iterator Current;
480 /// @brief Current YAML indentation level in spaces
    [all...]
  /art/runtime/
atomic.cc 47 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
52 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
58 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
signal_catcher.cc 44 // Show the original command line, and the current command line too if it's changed.
74 Thread* self = Thread::Current();
90 MutexLock mu(Thread::Current(), lock_);
95 MutexLock mu(Thread::Current(), lock_);
105 ScopedThreadStateChange tsc(Thread::Current(), kWaitingForSignalCatcherOutput);
120 Runtime* runtime = Runtime::Current();
127 Thread* self = Thread::Current();
165 Runtime::Current()->GetHeap()->CollectGarbage(false);
182 Runtime::Current()->DumpLockHolders(LOG(INFO));
192 Runtime* runtime = Runtime::Current();
    [all...]
dex_method_iterator_test.cc 30 ScopedObjectAccess soa(Thread::Current());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeperiodicvideocapturer.h 59 talk_base::Thread::Current()->Post(this, MSG_CREATEFRAME);
64 talk_base::Thread::Current()->Clear(this);
71 talk_base::Thread::Current()->PostDelayed(static_cast<int>(
  /external/chromium_org/third_party/libjingle/source/talk/base/
autodetectproxy.cc 75 Thread::Current()->ProcessMessages(kForever);
152 Thread::Current()->Post(this, MSG_TIMEOUT);
159 Thread::Current()->Post(this, MSG_UNRESOLVABLE);
173 Thread::Current()->Clear(this, MSG_TIMEOUT);
174 Thread::Current()->Clear(this, MSG_UNRESOLVABLE);
176 Thread::Current()->Dispose(socket_);
190 Thread::Current()->Post(this, MSG_TIMEOUT);
194 Thread::Current()->PostDelayed(timeout, this, MSG_TIMEOUT);
203 Thread::Current()->socketserver()->CreateAsyncSocket(
217 Thread::Current()->Clear(this, MSG_TIMEOUT)
    [all...]
thread.h 126 static Thread* Current();
129 return Current() == this;
150 // Never call Stop on the current thread. Instead use the inherited Quit
165 // Uses Send() internally, which blocks the current thread until execution
209 // owned to false. This must be called from the current thread.
266 // _not already_ associated with the current OS thread.
296 old_ss_ = Thread::Current()->socketserver();
297 Thread::Current()->set_socketserver(ss);
300 Thread::Current()->set_socketserver(old_ss_);
  /external/chromium_org/third_party/webrtc/base/
autodetectproxy.cc 58 Thread::Current()->ProcessMessages(kForever);
135 Thread::Current()->Post(this, MSG_TIMEOUT);
142 Thread::Current()->Post(this, MSG_UNRESOLVABLE);
156 Thread::Current()->Clear(this, MSG_TIMEOUT);
157 Thread::Current()->Clear(this, MSG_UNRESOLVABLE);
159 Thread::Current()->Dispose(socket_);
173 Thread::Current()->Post(this, MSG_TIMEOUT);
177 Thread::Current()->PostDelayed(timeout, this, MSG_TIMEOUT);
186 Thread::Current()->socketserver()->CreateAsyncSocket(
200 Thread::Current()->Clear(this, MSG_TIMEOUT)
    [all...]
thread.h 109 static Thread* Current();
112 return Current() == this;
133 // Never call Stop on the current thread. Instead use the inherited Quit
148 // Uses Send() internally, which blocks the current thread until execution
192 // owned to false. This must be called from the current thread.
249 // _not already_ associated with the current OS thread.
279 old_ss_ = Thread::Current()->socketserver();
280 Thread::Current()->set_socketserver(ss);
283 Thread::Current()->set_socketserver(old_ss_);
  /art/runtime/gc/space/
bump_pointer_space.cc 78 MutexLock mu(Thread::Current(), block_lock_);
96 MutexLock mu(Thread::Current(), block_lock_);
101 Thread* self = Thread::Current();
105 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
113 MutexLock mu(Thread::Current(), block_lock_);
120 Thread* self = Thread::Current();
124 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
158 MutexLock mu(Thread::Current(), block_lock_);
193 // We don't know how many objects are allocated in the current block. When we hit a null class
211 Thread* self = Thread::Current();
    [all...]
  /art/compiler/dex/
verification_results.cc 42 Thread* self = Thread::Current();
64 WriterMutexLock mu(Thread::Current(), verified_methods_lock_);
82 ReaderMutexLock mu(Thread::Current(), verified_methods_lock_);
89 WriterMutexLock mu(Thread::Current(), rejected_classes_lock_);
96 ReaderMutexLock mu(Thread::Current(), rejected_classes_lock_);
  /art/runtime/entrypoints/portable/
portable_throw_entrypoints.cc 42 Thread* self = Thread::Current();
48 ThrowStackOverflowError(Thread::Current());
53 Thread* self = Thread::Current();
74 Thread* self = Thread::Current(); // TODO: make an argument.
116 Runtime::Current()->GetInstrumentation()->ExceptionCaughtEvent(
portable_field_entrypoints.cc 37 field = FindFieldFromCode<StaticPrimitiveWrite, true>(field_idx, referrer, Thread::Current(),
57 field = FindFieldFromCode<StaticPrimitiveWrite, true>(field_idx, referrer, Thread::Current(),
78 field = FindFieldFromCode<StaticObjectWrite, true>(field_idx, referrer, Thread::Current(),
95 field = FindFieldFromCode<StaticPrimitiveRead, true>(field_idx, referrer, Thread::Current(),
110 field = FindFieldFromCode<StaticPrimitiveRead, true>(field_idx, referrer, Thread::Current(),
126 field = FindFieldFromCode<StaticObjectRead, true>(field_idx, referrer, Thread::Current(),
144 field = FindFieldFromCode<InstancePrimitiveWrite, true>(field_idx, referrer, Thread::Current(),
164 field = FindFieldFromCode<InstancePrimitiveWrite, true>(field_idx, referrer, Thread::Current(),
186 field = FindFieldFromCode<InstanceObjectWrite, true>(field_idx, referrer, Thread::Current(),
204 field = FindFieldFromCode<InstancePrimitiveRead, true>(field_idx, referrer, Thread::Current(),
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 53 LOperand* TempIterator::Current() {
81 LOperand* InputIterator::Current() {
96 LOperand* current = instr_->InputAt(current_); local
97 if (current != NULL && !current->IsConstantOperand()) break;
112 LOperand* UseIterator::Current() {
115 ? env_iterator_.Current()
116 : input_iterator_.Current();
  /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();
ELF.h 69 ELFEntityIterator() : EntitySize(0), Current(nullptr) {}
71 : EntitySize(EntSize), Current(Start) {}
74 assert(Current && "Attempted to dereference an invalid iterator!");
75 return *reinterpret_cast<pointer>(Current);
79 assert(Current && "Attempted to dereference an invalid iterator!");
80 return reinterpret_cast<pointer>(Current);
84 return Current == Other.Current;
92 assert(Current && "Attempted to increment an invalid iterator!");
93 Current += EntitySize
    [all...]
  /art/compiler/driver/
compiler_driver_test.cc 44 Runtime::Current()->GetCompileTimeClassPath(class_loader),
54 Thread::Current()->TransitionFromSuspendedToRunnable();
57 env_ = Thread::Current()->GetJniEnv();
70 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
79 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
83 ScopedObjectAccess soa(Thread::Current());
108 ScopedObjectAccess soa(Thread::Current());
157 ScopedObjectAccess soa(Thread::Current());
180 ScopedObjectAccess soa(Thread::Current());
181 Thread::Current()->ClearException()
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 46 return Runtime::Current()->GetHeap()->GetTargetHeapUtilization();
50 Runtime::Current()->GetHeap()->SetTargetHeapUtilization(target);
71 Runtime* runtime = Runtime::Current();
95 Runtime* runtime = Runtime::Current();
118 if (Runtime::Current()->GetHeap()->IsMovableObject(array)) {
126 Runtime::Current()->GetHeap()->ClearGrowthLimit();
134 return toStringArray(env, Runtime::Current()->GetProperties());
147 return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetBootClassPathString()));
151 return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetClassPathString()));
163 InstructionSet isa = Runtime::Current()->GetInstructionSet()
    [all...]
  /art/runtime/gc/
reference_queue.cc 51 if (Runtime::Current()->IsActiveTransaction()) {
57 if (Runtime::Current()->IsActiveTransaction()) {
76 if (Runtime::Current()->IsActiveTransaction()) {
83 if (Runtime::Current()->IsActiveTransaction()) {
113 if (Runtime::Current()->IsActiveTransaction()) {
137 if (Runtime::Current()->IsActiveTransaction()) {
heap_test.cc 32 Heap* heap = Runtime::Current()->GetHeap();
44 ScopedObjectAccess soa(Thread::Current());
61 Runtime::Current()->GetHeap()->CollectGarbage(false);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
arbprogram.c 68 * Bind a program (make it current)
83 curProg = &ctx->VertexProgram.Current->Base;
89 curProg = &ctx->FragmentProgram.Current->Base;
140 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
145 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
150 ASSERT(ctx->VertexProgram.Current);
151 ASSERT(ctx->FragmentProgram.Current);
186 if (ctx->VertexProgram.Current &&
187 ctx->VertexProgram.Current->Base.Id == ids[i]) {
194 if (ctx->FragmentProgram.Current &
    [all...]
  /external/mesa3d/src/mesa/main/
arbprogram.c 68 * Bind a program (make it current)
83 curProg = &ctx->VertexProgram.Current->Base;
89 curProg = &ctx->FragmentProgram.Current->Base;
140 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
145 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
150 ASSERT(ctx->VertexProgram.Current);
151 ASSERT(ctx->FragmentProgram.Current);
186 if (ctx->VertexProgram.Current &&
187 ctx->VertexProgram.Current->Base.Id == ids[i]) {
194 if (ctx->FragmentProgram.Current &
    [all...]
  /art/runtime/gc/collector/
partial_mark_sweep.cc 36 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);

Completed in 1571 milliseconds

1 2 34 5 6 7 8 91011>>