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

1 2 34 5 6 7 8 91011

  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Private.h 33 LVM_INT32 Current; /* 32 bit number specifying fractional valude of Current Gain */
  /external/v8/test/cctest/
test-assembler-x64.cc 96 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
118 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
150 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
172 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
200 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
234 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
263 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
test-parsing.cc 159 i::Isolate::Current()->stack_guard()->SetStackLimit(
190 i::Isolate::Current()->stack_guard()->SetStackLimit(
253 i::Isolate::Current()->stack_guard()->SetStackLimit(
265 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit();
272 i::V8JavaScriptScanner scanner(i::Isolate::Current()->unicode_cache());
291 i::Isolate::Current()->stack_guard()->SetStackLimit(
318 i::Isolate::Current()->stack_guard()->SetStackLimit(
356 i::Isolate::Current()->stack_guard()->SetStackLimit(
365 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit();
371 i::V8JavaScriptScanner scanner(i::Isolate::Current()->unicode_cache())
    [all...]
  /external/bison/data/
glr.c 111 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
131 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
485 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
486 If N is 0, then set CURRENT to the empty location which ends
492 # define YYLLOC_DEFAULT(Current, Rhs, N) \
496 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
497 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
498 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
499 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
503 (Current).first_line = (Current).last_line =
    [all...]
lalr1.cc 83 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
84 If N is 0, then set CURRENT to the empty location which ends
88 # define YYLLOC_DEFAULT(Current, Rhs, N) \
92 (Current).begin = (Rhs)[1].begin; \
93 (Current).end = (Rhs)[N].end; \
97 (Current).begin = (Current).end = (Rhs)[0].end; \
139 /// The current debugging stream.
141 /// Set the current debugging stream.
146 /// The current debugging level
    [all...]
yacc.c 103 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
123 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
591 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
592 If N is 0, then set CURRENT to the empty location which ends
597 # define YYLLOC_DEFAULT(Current, Rhs, N) \
601 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
602 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
603 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
604 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
608 (Current).first_line = (Current).last_line =
    [all...]
glr.cc 265 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
266 If N is 0, then set CURRENT to the empty location which ends
270 # define YYLLOC_DEFAULT(Current, Rhs, N) \
274 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
275 (Current).end = YYRHSLOC (Rhs, N).end; \
279 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
320 /// The current debugging stream.
322 /// Set the current debugging stream.
327 /// The current debugging level
    [all...]
  /external/v8/src/arm/
simulator-arm.h 151 static Simulator* current(v8::internal::Isolate* isolate);
218 // Checks if the current instruction should be executed based on its
378 reinterpret_cast<Object*>(Simulator::current(Isolate::Current())->Call( \
382 Simulator::current(Isolate::Current())->Call( \
398 return Simulator::current(Isolate::Current())->StackLimit();
402 Simulator* sim = Simulator::current(Isolate::Current());
    [all...]
  /external/v8/src/mips/
simulator-mips.h 86 // the address of "this" to get a value on the current execution stack and then
178 static Simulator* current(v8::internal::Isolate* isolate);
357 reinterpret_cast<Object*>(Simulator::current(Isolate::Current())->Call( \
361 Simulator::current(Isolate::Current())->Call( \
377 return Simulator::current(Isolate::Current())->StackLimit();
381 Simulator* sim = Simulator::current(Isolate::Current());
    [all...]
  /external/v8/tools/
test.py 865 def Current(self, length = 1):
879 while self.HasMore() and self.Current().isspace():
888 if self.Current() == '(':
891 elif self.Current() == ')':
894 elif self.Current() == '$':
897 elif self.Current() == ',':
900 elif IsAlpha(self.Current()):
902 while self.HasMore() and IsAlpha(self.Current()):
903 buf += self.Current()
906 elif self.Current(2) == '&&'
    [all...]
  /external/libpcap/
grammar.c     [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang_tab.cpp     [all...]
  /external/v8/src/
handles.cc 49 Isolate* isolate = Isolate::Current();
59 Isolate* isolate = Isolate::Current();
60 v8::ImplementationUtilities::HandleScopeData* current = local
63 Object** result = current->next;
65 ASSERT(result == current->limit);
68 if (current->level == 0) {
78 if (current->limit != limit) {
79 current->limit = limit;
80 ASSERT(limit - current->next < kHandleBlockSize);
85 // current handle scope by allocating a new handle block
101 v8::ImplementationUtilities::HandleScopeData* current = local
    [all...]
execution.cc 107 // make the current one is indeed a global object.
131 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception());
159 return Invoke(true, func, Isolate::Current()->global(), argc, args,
182 Isolate* isolate = Isolate::Current();
194 ASSERT(!Isolate::Current()->has_pending_exception());
195 ASSERT(!Isolate::Current()->external_caught_exception());
202 Isolate* isolate = Isolate::Current();
239 Isolate* isolate = Isolate::Current();
273 // If the current limits are special (eg due to a pending interrupt) then
397 // current thread_local_ from StackGuard)-- but is thi
    [all...]
messages.cc 108 // Thus we need to save current exception state, reset it to the clean one
150 Isolate::Current()->js_builtins_object()->
157 Isolate::Current()->js_builtins_object(), 1, argv, &caught_exception);
checks.cc 55 i::Isolate::Current()->PrintStack();
ic-inl.h 44 Debug* debug = Isolate::Current()->debug();
contexts.cc 58 ASSERT(Isolate::Current()->bootstrapper()->IsActive());
59 Context* current = this; local
60 while (!current->IsGlobalContext()) {
61 JSFunction* closure = JSFunction::cast(current->closure());
62 current = Context::cast(closure->context());
64 return current;
313 return Isolate::Current()->bootstrapper()->IsActive() || object->IsContext();
320 Isolate* isolate = Isolate::Current();
frame-element.h 111 Isolate::Current()->frame_element_constant_list()->length());
156 return Isolate::Current()->frame_element_constant_list()->
226 Isolate::Current()->frame_element_constant_list();
isolate.h 145 // Returns ThreadId for current thread.
146 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); }
227 // The context where the current execution method is created and for variable
453 // Returns the PerIsolateThreadData for the current thread (or NULL if one is
460 // Returns the isolate inside which the current thread is running.
461 INLINE(static Isolate* Current()) {
507 // Returns the key used to store the pointer to the current isolate.
520 // we assume that the client is using legacy behavior. Set up the current
533 // Access to top context (where the current function object was created).
545 // Access to current thread id
    [all...]
regexp-macro-assembler.cc 161 ASSERT(isolate == Isolate::Current());
216 ASSERT(isolate == Isolate::Current());
249 ASSERT(isolate == Isolate::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'}}
  /external/chromium/third_party/libjingle/source/talk/base/
httprequest.cc 46 ASSERT(Thread::Current() != NULL);
  /frameworks/base/media/libeffects/lvm/lib/Reverb/src/
LVREV_GetInstanceHandle.c 255 pLVREV_Private->GainMixer.Current = 0x03ffffff;
287 pLVREV_Private->Mixer_SGFeedforward[i].Current = 0;
295 pLVREV_Private->Mixer_SGFeedback[i].Current = 0;
303 pLVREV_Private->FeedbackMixer[i].Current = 0;
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.cc 136 int64 metahandle = iterator.Current();
162 int64 metahandle = iterator.Current();
225 int64 metahandle = iterator.Current();

Completed in 1334 milliseconds

1 2 34 5 6 7 8 91011