Home
last modified time | relevance | path

Searched refs:Top (Results 1 – 25 of 108) sorted by relevance

12345

/external/v8/src/
Dtop.cc41 ThreadLocalTop Top::thread_local_;
42 Mutex* Top::break_access_ = OS::CreateMutex();
47 #define C(name) reinterpret_cast<Address>(Top::name()),
78 Address Top::get_address_from_id(Top::AddressId id) { in get_address_from_id()
83 char* Top::Iterate(ObjectVisitor* v, char* thread_storage) { in Iterate()
90 void Top::Iterate(ObjectVisitor* v, ThreadLocalTop* thread) { in Iterate()
112 void Top::Iterate(ObjectVisitor* v) { in Iterate()
118 void Top::InitializeThreadLocal() { in InitializeThreadLocal()
237 void Top::Initialize() { in Initialize()
255 void Top::TearDown() { in TearDown()
[all …]
Dexecution.cc107 ASSERT(*has_pending_exception == Top::has_pending_exception()); in Invoke()
109 Top::ReportPendingMessages(); in Invoke()
112 Top::clear_pending_message(); in Invoke()
130 return Invoke(true, func, Top::global(), argc, args, pending_exception); in New()
152 ASSERT(Top::has_pending_exception()); in TryCall()
153 ASSERT(Top::external_caught_exception()); in TryCall()
154 if (Top::pending_exception() == Heap::termination_exception()) { in TryCall()
159 Top::OptionalRescheduleException(true); in TryCall()
162 ASSERT(!Top::has_pending_exception()); in TryCall()
163 ASSERT(!Top::external_caught_exception()); in TryCall()
[all …]
Dtop.h38 if (Top::has_scheduled_exception()) return Top::PromoteScheduledException()
135 class Top {
396 : context_(Top::context()), in SaveContext()
398 dummy_(Top::context()), in SaveContext()
400 prev_(Top::save_context()) { in SaveContext()
401 Top::set_save_context(this); in SaveContext()
409 Top::set_context(*context_); in ~SaveContext()
410 Top::set_save_context(prev_); in ~SaveContext()
435 context_(Top::context()) { in AssertNoContextChange()
439 ASSERT(Top::context() == *context_); in ~AssertNoContextChange()
Dv8threads.cc160 from = Top::RestoreThread(from); in RestoreThread()
195 Top::ArchiveSpacePerThread() + in ArchiveSpacePerThread()
291 to = Top::ArchiveThread(to); in EagerlyArchiveThread()
306 Top::FreeThreadResources(); in FreeThreadResources()
328 data = Top::Iterate(v, data); in Iterate()
340 Top::MarkCompactPrologue(is_compacting, data); in MarkCompactPrologue()
351 Top::MarkCompactEpilogue(is_compacting, data); in MarkCompactEpilogue()
367 Top::set_thread_id(thread_id); in AssignId()
Dbootstrapper.cc437 Handle<JSObject> prototype = Factory::NewJSObject(Top::object_function(), in CreateEmptyFunction()
483 Top::set_context(*global_context()); in CreateRoots()
538 Top::object_function(), NONE); in CreateNewGlobals()
640 SetProperty(inner_global, object_name, Top::object_function(), DONT_ENUM); in InitializeGlobal()
651 Top::initial_object_prototype(), Builtins::ArrayCode, in InitializeGlobal()
681 Top::initial_object_prototype(), Builtins::Illegal, in InitializeGlobal()
689 Top::initial_object_prototype(), Builtins::Illegal, in InitializeGlobal()
697 Top::initial_object_prototype(), Builtins::Illegal, in InitializeGlobal()
719 Top::initial_object_prototype(), Builtins::Illegal, in InitializeGlobal()
730 Top::initial_object_prototype(), Builtins::Illegal, in InitializeGlobal()
[all …]
Dcompiler.cc131 ASSERT(!i::Top::global_context().is_null()); in MakeFunction()
132 script->set_context_data((*i::Top::global_context())->data()); in MakeFunction()
167 ASSERT(Top::has_pending_exception()); in MakeFunction()
185 Top::StackOverflow(); in MakeFunction()
301 if (result.is_null()) Top::ReportPendingMessages(); in Compile()
377 ASSERT(Top::has_pending_exception()); in CompileLazy()
392 Top::StackOverflow(); in CompileLazy()
Druntime.cc54 if (!(value)) return Top::ThrowIllegalOperation();
101 if (check.HasOverflowed()) return Top::StackOverflow(); in DeepCopyBoilerplate()
480 Top::context()->global_context()->context_extension_function(); in Runtime_CreateCatchExtensionObject()
721 return Top::Throw(*error); in ThrowRedeclarationError()
727 Handle<GlobalObject> global = Handle<GlobalObject>(Top::context()->global()); in Runtime_DeclareGlobals()
899 context_ext = Factory::NewJSObject(Top::context_extension_function()); in Runtime_DeclareContextSlot()
928 GlobalObject* global = Top::context()->global(); in Runtime_InitializeVarGlobal()
954 if (real_holder != Top::context()->global()) break; in Runtime_InitializeVarGlobal()
976 if (real_holder != Top::context()->global()) break; in Runtime_InitializeVarGlobal()
1002 global = Top::context()->global(); in Runtime_InitializeVarGlobal()
[all …]
Dframes.cc72 frame_(NULL), handler_(NULL), thread_(Top::GetCurrentThread()), in StackFrameIterator()
85 thread_(use_top ? Top::GetCurrentThread() : NULL), in StackFrameIterator()
134 type = ExitFrame::GetStateForFramePointer(Top::c_entry_fp(thread_), &state); in Reset()
135 handler_ = StackHandler::FromAddress(Top::handler(thread_)); in Reset()
208 Top::c_entry_fp(Top::GetCurrentThread())) && in SafeStackFrameIterator()
209 Top::handler(Top::GetCurrentThread()) != NULL), in SafeStackFrameIterator()
Dmessages.cc76 Handle<JSFunction> fun(Top::global_context()->make_message_fun()); in MakeMessageObject()
150 JSFunction::cast(Top::builtins()->GetProperty(*fmt_str))); in GetMessage()
155 Execution::TryCall(fun, Top::builtins(), 1, argv, &caught_exception); in GetMessage()
Dbuiltins.cc151 Address fp = Top::c_entry_fp(Top::GetCurrentThread()); in CalledAsConstructor()
191 Top::context()->global_context()->array_function(); in BUILTIN()
313 Top::context()->global_context()->array_function(); in BUILTIN()
341 Top::context()->global_context()->array_function(); in BUILTIN()
384 Top::context()->global_context()->array_function(); in BUILTIN()
434 GetProperty(Handle<JSObject>(Top::global_context()->builtins()), in CallJsBuiltin()
499 Top::context()->global_context()->array_function(); in BUILTIN()
575 Top::context()->global_context()->array_function(); in BUILTIN()
737 ASSERT(Top::has_pending_exception() == pending_exception); in HandleApiCallHelper()
749 return Top::Throw(*obj); in HandleApiCallHelper()
Dv8.cc88 Top::Initialize(); in Initialize()
148 Top::TearDown(); in TearDown()
Dhandles.cc345 Handle<Object> hidden_obj = Factory::NewJSObject(Top::object_function()); in GetHiddenProperties()
430 Handle<JSFunction> constructor = Top::script_function(); in GetScriptWrapper()
569 Top::context()->global_context()->arguments_boilerplate()); in GetKeysInFixedArrayFor()
582 !Top::MayNamedAccess(*current, Heap::undefined_value(), in GetKeysInFixedArrayFor()
584 Top::ReportFailedAccessCheck(*current, v8::ACCESS_KEYS); in GetKeysInFixedArrayFor()
696 ASSERT(result != Top::has_pending_exception()); in CompileLazyHelper()
697 if (!result && flag == CLEAR_EXCEPTION) Top::clear_pending_exception(); in CompileLazyHelper()
Dfactory.cc307 boilerplate, Top::function_map(), pretenure); in NewFunctionFromBoilerplate()
419 Handle<Object> fun_obj(Top::builtins()->GetProperty(*make_str)); in NewError()
433 Top::builtins(), in NewError()
452 Top::builtins()->GetProperty(*constr))); in NewError()
459 Top::builtins(), in NewError()
670 Handle<JSObject> obj = NewJSObject(Top::array_function(), pretenure); in NewJSArray()
678 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure)); in NewJSArrayWithElements()
706 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*Top::function_map(), in NewFunctionHelper()
716 fun->set_context(Top::context()->global_context()); in NewFunction()
Dregexp-macro-assembler.cc179 if (result == EXCEPTION && !Top::has_pending_exception()) { in Execute()
182 Top::StackOverflow(); in Execute()
Ddebug.cc698 ASSERT(Top::has_pending_exception()); in CompileDebuggerScript()
699 Top::clear_pending_exception(); in CompileDebuggerScript()
704 Handle<Context> context = Top::global_context(); in CompileDebuggerScript()
751 Top::set_context(*context); in Load()
949 Top::builtins(), argc, argv, in CheckBreakPoint()
1656 ASSERT(Top::context() == *Debug::debug_context()); in ClearMirrorCache()
1661 Handle<Object> fun(Top::global()->GetProperty(*function_name)); in ClearMirrorCache()
1763 ASSERT(Top::context() == *Debug::debug_context()); in MakeJSObject()
1767 Handle<Object> constructor(Top::global()->GetProperty(*constructor_str)); in MakeJSObject()
1911 ASSERT(Top::context() == *Debug::debug_context()); in OnDebugBreak()
[all …]
Dobjects.cc78 Context* global_context = Top::context()->global_context(); in ToObject()
118 Context* global_context = Top::context()->global_context(); in Lookup()
273 Top::ReportFailedAccessCheck(this, v8::ACCESS_GET); in GetPropertyWithFailedAccessCheck()
336 Top::ReportFailedAccessCheck(this, v8::ACCESS_HAS); in GetPropertyAttributeWithFailedAccessCheck()
466 if (!Top::MayNamedAccess(checked, name, v8::ACCESS_GET)) { in GetProperty()
524 Context* context = Top::context()->global_context(); in GetPrototype()
590 Top::context()->mark_out_of_memory(); in RetryAfterGC()
1254 (Top::context()->global_context()->object_function()->map() != map()); in AddFastProperty()
1317 if (old_map == Top::context()->global_context()->object_function()->map()) { in AddConstantFunctionProperty()
1450 if (map() == Top::context()->global_context()->object_function()->map()) { in ConvertDescriptorToFieldAndMapTransition()
[all …]
/external/v8/test/cctest/
Dtest-compiler.cc103 return Top::context()->global()->GetProperty(*symbol); in GetGlobalProperty()
110 Handle<JSObject> global(Top::context()->global()); in SetGlobalProperty()
126 Top::global_context()); in Compile()
139 Handle<JSObject> global(Top::context()->global()); in Inc()
160 Handle<JSObject> global(Top::context()->global()); in Add()
180 Handle<JSObject> global(Top::context()->global()); in Abs()
201 Handle<JSObject> global(Top::context()->global()); in Sum()
222 Handle<JSObject> global(Top::context()->global()); in TEST()
255 Handle<JSObject> global(Top::context()->global()); in TEST()
270 Handle<JSObject> global(Top::context()->global()); in TEST()
[all …]
Dtest-mark-compact.cc176 JSFunction::cast(Heap::AllocateFunction(*Top::function_map(), in TEST()
182 Top::context()->global()->SetProperty(func_name, function, NONE); in TEST()
188 CHECK(Top::context()->global()->HasLocalProperty(func_name)); in TEST()
189 Object* func_value = Top::context()->global()->GetProperty(func_name); in TEST()
195 Top::context()->global()->SetProperty(obj_name, obj, NONE); in TEST()
202 CHECK(Top::context()->global()->HasLocalProperty(obj_name)); in TEST()
203 CHECK(Top::context()->global()->GetProperty(obj_name)->IsJSObject()); in TEST()
204 obj = JSObject::cast(Top::context()->global()->GetProperty(obj_name)); in TEST()
Dtest-log-stack-tracer.cc31 using v8::internal::Top;
61 v8::internal::Address saved_c_frame_fp = *(Top::c_entry_fp_address()); in DoTraceHideCEntryFPAddress()
63 *(Top::c_entry_fp_address()) = 0; in DoTraceHideCEntryFPAddress()
65 *(Top::c_entry_fp_address()) = saved_c_frame_fp; in DoTraceHideCEntryFPAddress()
155 CHECK_NE(NULL, Top::GetCurrentThread()); in GetJsEntrySp()
156 return Top::js_entry_sp(Top::GetCurrentThread()); in GetJsEntrySp()
Dtest-heap.cc162 CHECK(Top::context()->global()->HasLocalProperty(object_symbol)); in TEST()
213 JSFunction::cast(Heap::AllocateFunction(*Top::function_map(), in TEST()
219 Top::context()->global()->SetProperty(func_name, function, NONE); in TEST()
235 CHECK(Top::context()->global()->HasLocalProperty(func_name)); in TEST()
237 Object* func_value = Top::context()->global()->GetProperty(func_name); in TEST()
245 Top::context()->global()->SetProperty(obj_name, obj, NONE); in TEST()
254 CHECK(Top::context()->global()->HasLocalProperty(obj_name)); in TEST()
255 CHECK(Top::context()->global()->GetProperty(obj_name)->IsJSObject()); in TEST()
256 obj = JSObject::cast(Top::context()->global()->GetProperty(obj_name)); in TEST()
516 JSFunction::cast(Heap::AllocateFunction(*Top::function_map(), in TEST()
[all …]
/external/skia/src/images/
DSkImageDecoder_libgif.cpp210 if ( (desc.Top | desc.Left) < 0 || in onDecode()
212 desc.Top + desc.Height > height) { in onDecode()
261 if ((desc.Top | desc.Left) > 0 || in onDecode()
277 scanline += desc.Top * rowBytes + desc.Left; in onDecode()
/external/libvpx/examples/includes/geshi/docs/
Dgeshi-doc.txt99 Top | Contents | Next | Previous
105 Top | Contents | Next | Previous
119 Top | Contents | Next | Previous
142 Top | Contents | Next | Previous
148 Top | Contents | Next | Previous
157 Top | Contents | Next | Previous
161 Top | Contents | Next | Previous
165 Top | Contents | Next | Previous
169 Top | Contents | Next | Previous
180 Top | Contents | Next | Previous
[all …]
/external/chromium/third_party/icu/source/test/testdata/
Dra.txt15 * Top level comments for the string.Tag name: test1
29 * Top level comments for TestTable. Tag name: TestTable
60 * Top level comments for Tag name: TestArray
/external/icu4c/test/testdata/
Dra.txt15 * Top level comments for the string.Tag name: test1
29 * Top level comments for TestTable. Tag name: TestTable
60 * Top level comments for Tag name: TestArray
/external/e2fsprogs/lib/et/
Dcom_err.texinfo120 @node Top, Why com_err?, (dir), (dir)
142 @node Why com_err?, Error codes, Top, Top
178 @node Error codes, Error table source file, Why com_err?, Top
207 @node Error table source file, The error-table compiler, Error codes, Top
245 @node The error-table compiler, Run-time support routines, Error table source file, Top
259 @node Run-time support routines, Coding Conventions, The error-table compiler, Top
394 @node Coding Conventions, Building and Installation, Run-time support routines, Top
505 @node Building and Installation, Bug Reports, Coding Conventions, Top
518 @node Bug Reports, Acknowledgements, Building and Installation, Top
528 @node Acknowledgements, , Bug Reports, Top

12345