/external/v8/src/debug/ |
debug-scopes.cc | 31 context_ = Handle<Context>(Context::cast(frame_inspector->GetContext())); 34 Handle<JSFunction> function = GetFunction(); 35 Handle<SharedFunctionInfo> shared_info(function->shared()); 36 Handle<ScopeInfo> scope_info(shared_info->scope_info()); 39 context_ = Handle<Context>(context_->previous(), isolate_); 59 Handle<DebugInfo> debug_info(shared_info->GetDebugInfo()); 73 context_ = Handle<Context>(context_->declaration_context(), isolate_); 76 context_ = Handle<Context>(context_->previous(), isolate_); 91 Handle<Script> script(Script::cast(shared_info->script())); 98 info.set_context(Handle<Context>(function->context())) [all...] |
/external/skia/include/utils/ |
SkEventTracer.h | 28 typedef uint64_t Handle; 53 virtual SkEventTracer::Handle 67 SkEventTracer::Handle handle) = 0;
|
/external/v8/src/ |
layout-descriptor.h | 52 static Handle<LayoutDescriptor> New(Handle<Map> map, 53 Handle<DescriptorArray> descriptors, 58 static Handle<LayoutDescriptor> ShareAppend(Handle<Map> map, 64 static Handle<LayoutDescriptor> AppendIfFastOrUseFull( 65 Handle<Map> map, PropertyDetails details, 66 Handle<LayoutDescriptor> full_layout_descriptor); 92 static Handle<LayoutDescriptor> NewForTesting(Isolate* isolate, int length); 98 V8_INLINE static Handle<LayoutDescriptor> New(Isolate* isolate, int length) [all...] |
lookup.h | 47 LookupIterator(Handle<Object> receiver, Handle<Name> name, 70 LookupIterator(Handle<Object> receiver, Handle<Name> name, 71 Handle<JSReceiver> holder, 94 LookupIterator(Isolate* isolate, Handle<Object> receiver, uint32_t index, 114 LookupIterator(Isolate* isolate, Handle<Object> receiver, uint32_t index, 115 Handle<JSReceiver> holder, 136 Isolate* isolate, Handle<Object> receiver, Handle<Name> name [all...] |
execution.h | 25 Handle<Object> callable, 26 Handle<Object> receiver, 28 Handle<Object> argv[]); 32 MUST_USE_RESULT static MaybeHandle<Object> New(Handle<JSFunction> constructor, 34 Handle<Object> argv[]); 36 Handle<Object> constructor, 37 Handle<Object> new_target, 39 Handle<Object> argv[]); 47 static MaybeHandle<Object> TryCall(Isolate* isolate, Handle<Object> callable, 48 Handle<Object> receiver, int argc [all...] |
handles.h | 26 // Base class for Handle instantiations. Don't use directly. 32 // Check if this handle refers to the exact same object as the other handle. 73 // A Handle provides a reference to an object that survives relocation by 76 // Handles are only valid within a HandleScope. When a handle is created 81 // semantics is ambiguous between Handle location and object identity. Instead 84 class Handle final : public HandleBase { 86 V8_INLINE explicit Handle(T** location = nullptr) 93 V8_INLINE explicit Handle(T* object) : Handle(object, object->GetIsolate()) { 159 V8_INLINE Handle<T> handle(T* object, Isolate* isolate) { function in namespace:v8::internal 164 V8_INLINE Handle<T> handle(T* object) { function in namespace:v8::internal [all...] |
allocation-site-scopes.cc | 11 Handle<AllocationSite> AllocationSiteCreationContext::EnterNewScope() { 12 Handle<AllocationSite> scope_site; 17 scope_site = Handle<AllocationSite>(*top(), isolate()); 40 Handle<AllocationSite> scope_site, 41 Handle<JSObject> object) { 63 bool AllocationSiteUsageContext::ShouldCreateMemento(Handle<JSObject> object) {
|
accessors.cc | 23 Handle<AccessorInfo> Accessors::MakeAccessor( 25 Handle<Name> name, 30 Handle<ExecutableAccessorInfo> info = factory->NewExecutableAccessorInfo(); 36 Handle<Object> get = v8::FromCData(isolate, getter); 37 Handle<Object> set = v8::FromCData(isolate, setter); 44 Handle<ExecutableAccessorInfo> Accessors::CloneAccessor( 46 Handle<ExecutableAccessorInfo> accessor) { 48 Handle<ExecutableAccessorInfo> info = factory->NewExecutableAccessorInfo(); 59 static V8_INLINE bool CheckForName(Handle<Name> name, 60 Handle<String> property_name [all...] |
api-natives.cc | 19 Handle<ObjectTemplateInfo> data); 23 Handle<FunctionTemplateInfo> data, 24 Handle<Name> name = Handle<Name>()); 27 MaybeHandle<Object> Instantiate(Isolate* isolate, Handle<Object> data, 28 Handle<Name> name = Handle<Name>()) { 31 Handle<FunctionTemplateInfo>::cast(data), name); 33 return InstantiateObject(isolate, Handle<ObjectTemplateInfo>::cast(data)); 41 Handle<JSObject> object [all...] |
string-builder.cc | 19 Handle<String> joined_string; 21 Handle<SeqOneByteString> seq; 30 joined_string = Handle<String>::cast(seq); 33 Handle<SeqTwoByteString> seq; 42 joined_string = Handle<String>::cast(seq); 54 // Create an accumulator handle starting with the empty string. 55 accumulator_ = Handle<String>::New(isolate->heap()->empty_string(), isolate); 61 void IncrementalStringBuilder::Accumulate(Handle<String> new_part) { 62 Handle<String> new_accumulator; 81 Handle<String> new_part [all...] |
type-info.cc | 19 Isolate* isolate, Zone* zone, Handle<Code> code, 20 Handle<TypeFeedbackVector> feedback_vector, Handle<Context> native_context) 37 Handle<Object> TypeFeedbackOracle::GetInfo(TypeFeedbackId ast_id) { 43 return Handle<Object>(cell->value(), isolate()); 45 return Handle<Object>(value, isolate()); 48 return Handle<Object>::cast(isolate()->factory()->undefined_value()); 52 Handle<Object> TypeFeedbackOracle::GetInfo(FeedbackVectorSlot slot) { 54 Handle<Object> undefined = 55 Handle<Object>::cast(isolate()->factory()->undefined_value()) [all...] |
property-descriptor.cc | 19 bool GetPropertyIfPresent(Handle<Object> obj, Handle<String> name, 20 Handle<Object>* value) { 40 bool ToPropertyDescriptorFastPath(Isolate* isolate, Handle<Object> obj, 43 Map* map = Handle<JSObject>::cast(obj)->map(); 56 Handle<DescriptorArray> descs = 57 Handle<DescriptorArray>(map->instance_descriptors()); 61 Handle<Object> value; 64 value = JSObject::FastPropertyAt(Handle<JSObject>::cast(obj), 69 value = handle(descs->GetConstant(i), isolate) [all...] |
type-feedback-vector.h | 146 static Handle<TypeFeedbackMetadata> New(Isolate* isolate, const Spec* spec); 210 static Handle<TypeFeedbackVector> New(Isolate* isolate, 211 Handle<TypeFeedbackMetadata> metadata); 213 static Handle<TypeFeedbackVector> Copy(Isolate* isolate, 214 Handle<TypeFeedbackVector> vector); 234 static inline Handle<Object> UninitializedSentinel(Isolate* isolate); 237 static inline Handle<Object> MegamorphicSentinel(Isolate* isolate); 240 static inline Handle<Object> PremonomorphicSentinel(Isolate* isolate); 251 static Handle<TypeFeedbackVector> DummyVector(Isolate* isolate); 281 explicit TypeFeedbackMetadataIterator(Handle<TypeFeedbackMetadata> metadata [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
adptif.h | 13 HANDLE WINAPI CreateSocketPort(USHORT Socket); 14 DWORD WINAPI DeleteSocketPort(HANDLE Handle); 15 DWORD WINAPI IpxRecvPacket(HANDLE Handle,PUCHAR IpxPacket,ULONG IpxPacketLength,PADDRESS_RESERVED lpReserved,LPOVERLAPPED lpOverlapped,LPOVERLAPPED_COMPLETION_ROUTINE CompletionRoutine); 16 DWORD WINAPI IpxSendPacket(HANDLE Handle,ULONG AdapterIdx,PUCHAR IpxPacket,ULONG IpxPacketLength,PADDRESS_RESERVED lpReserved,LPOVERLAPPED lpOverlapped,LPOVERLAPPED_COMPLETION_ROUTINE CompletionRoutine);
|
/external/v8/src/compiler/ |
access-info.h | 32 typedef std::vector<std::pair<Handle<Map>, Handle<Map>>> MapTransitionList; 75 Handle<Object> constant, 94 Handle<Object> constant() const { return constant_; } 102 PropertyAccessInfo(MaybeHandle<JSObject> holder, Handle<Object> constant, 111 Handle<Object> constant_; 124 Handle<Context> native_context, Zone* zone); 126 bool ComputeElementAccessInfo(Handle<Map> map, AccessMode access_mode, 131 bool ComputePropertyAccessInfo(Handle<Map> map, Handle<Name> name [all...] |
/external/v8/src/runtime/ |
runtime-literals.cc | 17 static Handle<Map> ComputeObjectLiteralMap( 18 Handle<Context> context, Handle<FixedArray> constant_properties, 37 Isolate* isolate, Handle<LiteralsArray> literals, 38 Handle<FixedArray> constant_properties, bool is_strong); 42 Isolate* isolate, Handle<LiteralsArray> literals, 43 Handle<FixedArray> constant_properties, bool should_have_fast_elements, 45 Handle<Context> context = isolate->native_context(); 52 Handle<Map> map = has_function_literal 53 ? Handle<Map>(is_stron [all...] |
runtime-scopes.cc | 19 static Object* ThrowRedeclarationError(Isolate* isolate, Handle<String> name) { 34 static Object* DeclareGlobals(Isolate* isolate, Handle<JSGlobalObject> global, 35 Handle<String> name, Handle<Object> value, 38 Handle<ScriptContextTable> script_contexts( 91 Handle<JSGlobalObject> global(isolate->global_object()); 92 Handle<Context> context(isolate->context()); 101 Handle<String> name(String::cast(pairs->get(i))); 102 Handle<Object> initial_value(pairs->get(i + 1), isolate); 113 Handle<Object> value [all...] |
/external/v8/src/ic/ |
ic-compiler.cc | 16 Handle<Code> PropertyICCompiler::Find(Handle<Name> name, 17 Handle<Map> stub_holder, Code::Kind kind, 23 if (probe->IsCode()) return handle(Code::cast(probe)); 24 return Handle<Code>::null(); 36 Handle<Code> PropertyICCompiler::ComputeKeyedLoadMonomorphicHandler( 37 Handle<Map> receiver_map, ExtraICState extra_ic_state) { 48 Handle<Code> stub; 68 Handle<Code> PropertyICCompiler::ComputeKeyedStoreMonomorphicHandler( 69 Handle<Map> receiver_map, LanguageMode language_mode [all...] |
ic.h | 36 void UpdateState(Handle<Object> receiver, Handle<Object> name); 38 bool IsNameCompatibleWithPrototypeFailure(Handle<Object> name); 39 void MarkPrototypeFailure(Handle<Object> name) { 60 static inline Handle<Map> GetHandlerCacheHolder(Handle<Map> receiver_map, 64 static inline Handle<Map> GetICCacheHolder(Handle<Map> receiver_map, 86 Handle<Code> target() const { return target_; } 117 void ConfigureVectorState(Handle<Name> name, Handle<Map> map [all...] |
/external/libchrome/base/threading/ |
thread_id_name_manager.h | 27 // Register the mapping between a thread |id| and |handle|. 28 void RegisterThread(PlatformThreadHandle::Handle handle, PlatformThreadId id); 37 void RemoveName(PlatformThreadHandle::Handle handle, PlatformThreadId id); 42 typedef std::map<PlatformThreadId, PlatformThreadHandle::Handle> 44 typedef std::map<PlatformThreadHandle::Handle, std::string*>
|
/external/v8/test/cctest/compiler/ |
test-pipeline.cc | 16 Handle<JSFunction> function = Handle<JSFunction>::cast(v8::Utils::OpenHandle( 21 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code())); 24 Handle<Code> code = pipeline.GenerateCode();
|
/art/runtime/ |
object_lock.h | 22 #include "handle.h" 31 ObjectLock(Thread* self, Handle<T> object) SHARED_REQUIRES(Locks::mutator_lock_); 43 Handle<T> const obj_;
|
/external/selinux/policycoreutils/mcstrans/share/examples/pipes/setrans.d/ |
pipes.conf | 2 Prefix=Handle Via
|
/art/runtime/mirror/ |
stack_trace_element.cc | 42 StackTraceElement* StackTraceElement::Alloc(Thread* self, Handle<String> declaring_class, 43 Handle<String> method_name, Handle<String> file_name, 58 void StackTraceElement::Init(Handle<String> declaring_class, Handle<String> method_name, 59 Handle<String> file_name, int32_t line_number) {
|
/external/v8/test/cctest/ |
test-elements-kind.cc | 28 Handle<String> MakeString(const char* str) { 35 Handle<String> MakeName(const char* str, int suffix) { 43 bool EQUALS(Handle<T> left, Handle<M> right) { 45 return JSObject::Equals(Handle<Object>::cast(left), 46 Handle<Object>::cast(right)) 52 bool EQUALS(Handle<T> left, M right) { 53 return EQUALS(left, handle(right)); 58 bool EQUALS(T left, Handle<M> right) { 59 return EQUALS(handle(left), right) [all...] |