HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 176 - 200 of 2278) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/src/runtime/
runtime-module.cc 25 Handle<Module> module(isolate->context()->module());
33 Handle<Module> module(isolate->context()->module());
42 Handle<Module> module(isolate->context()->module());
runtime-classes.cc 35 Handle<Object> name(constructor->shared()->name(), isolate);
57 Object* ThrowNotSuperConstructor(Isolate* isolate, Handle<Object> constructor,
58 Handle<JSFunction> function) {
59 Handle<Object> super_name;
61 super_name = handle(Handle<JSFunction>::cast(constructor)->shared()->name(),
70 if (Handle<String>::cast(super_name)->length() == 0) {
73 Handle<Object> function_name(function->shared()->name(), isolate);
75 if (Handle<String>::cast(function_name)->length() == 0) {
102 Handle<Object> super_class
    [all...]
runtime-proxy.cc 24 Handle<String> trap_name = isolate->factory()->apply_string();
26 Handle<Object> handler(proxy->handler(), isolate);
35 Handle<JSReceiver> target(proxy->target(), isolate);
37 Handle<Object> trap;
40 Object::GetMethod(Handle<JSReceiver>::cast(handler), trap_name));
45 ScopedVector<Handle<Object>> argv(arguments_length);
54 Handle<JSArray> arg_array = isolate->factory()->NewJSArray(
64 Handle<Object> trap_args[] = {target, receiver, arg_array};
77 Handle<String> trap_name = isolate->factory()->construct_string();
80 Handle<Object> handler(proxy->handler(), isolate)
    [all...]
runtime-liveedit.cc 28 Handle<Script> script = Handle<Script>(Script::cast(script_value->value()));
30 List<Handle<SharedFunctionInfo> > found;
39 found.Add(Handle<SharedFunctionInfo>(shared));
43 Handle<FixedArray> result = isolate->factory()->NewFixedArray(found.length());
45 Handle<SharedFunctionInfo> shared = found[i];
47 Handle<String> name(String::cast(shared->name()));
71 Handle<Script> script_handle = Handle<Script>(Script::cast(script->value()));
90 Handle<Script> original_script(Script::cast(original_script_value->value()))
    [all...]
  /external/v8/src/
json-stringifier.cc 90 MaybeHandle<Object> JsonStringifier::Stringify(Handle<Object> object,
91 Handle<Object> replacer,
92 Handle<Object> gap) {
104 bool IsInList(Handle<String> key, List<Handle<String> >* list) {
107 for (const Handle<String>& existing : *list) {
113 bool JsonStringifier::InitializeReplacer(Handle<Object> replacer) {
120 List<Handle<String> > list;
121 Handle<Object> length_obj;
128 Handle<Object> element
    [all...]
lookup.cc 18 Handle<Object> receiver,
19 Handle<Object> key,
28 Handle<Name> name;
96 if (holder != *holder_) holder_ = handle(holder, isolate_);
104 holder_ = handle(holder, isolate_);
119 Handle<JSReceiver> LookupIterator::GetRootForNonJSReceiver(
120 Isolate* isolate, Handle<Object> receiver, uint32_t index) {
127 Handle<JSFunction> constructor = isolate->string_function();
128 Handle<JSObject> result = isolate->factory()->NewJSObject(constructor);
129 Handle<JSValue>::cast(result)->set_value(*receiver)
    [all...]
field-type.cc 28 Handle<FieldType> FieldType::None(Isolate* isolate) {
29 return handle(None(), isolate);
33 Handle<FieldType> FieldType::Any(Isolate* isolate) {
34 return handle(Any(), isolate);
41 Handle<FieldType> FieldType::Class(i::Handle<i::Map> map, Isolate* isolate) {
42 return handle(Class(*map), isolate);
53 Handle<i::Map> FieldType::AsClass() {
56 return handle(map, map->GetIsolate());
73 bool FieldType::NowIs(Handle<FieldType> other) { return NowIs(*other);
    [all...]
api.h 39 inline v8::internal::Handle<v8::internal::Object> FromCData(
42 if (obj == nullptr) return handle(v8::internal::Smi::kZero, isolate);
127 v8::internal::Handle<v8::internal::Context> obj);
129 v8::internal::Handle<v8::internal::Object> obj);
131 v8::internal::Handle<v8::internal::Module> obj);
133 v8::internal::Handle<v8::internal::Name> obj);
135 v8::internal::Handle<v8::internal::String> obj);
137 v8::internal::Handle<v8::internal::Symbol> obj);
139 v8::internal::Handle<v8::internal::JSRegExp> obj);
141 v8::internal::Handle<v8::internal::JSReceiver> obj)
267 v8::internal::Handle<v8::internal::Object> handle; local
    [all...]
  /external/v8/src/wasm/
wasm-js.cc 40 // in it, rather, use a provided ErrorThrower, or let caller handle it.
41 static bool HasBrand(i::Handle<i::Object> value, i::Handle<i::Symbol> sym) {
43 i::Handle<i::JSObject> object = i::Handle<i::JSObject>::cast(value);
48 static bool BrandCheck(i::Handle<i::Object> value, i::Handle<i::Symbol> sym,
53 i::Handle<i::String> v8_str(i::Isolate* isolate, const char* str) {
69 i::Handle<i::Context> i_context = Utils::OpenHandle(*context);
71 i::handle(i_context->wasm_module_sym()), thrower
    [all...]
wasm-objects.cc 98 Handle<WasmCompiledModule>> {
101 Handle<WasmCompiledModule> start_module, bool at_end)
104 current_(at_end ? Handle<WasmCompiledModule>::null() : start_module) {}
106 Handle<WasmCompiledModule> operator*() const {
126 handle(WasmCompiledModule::cast(weak_next->value()), isolate_);
138 handle(WasmCompiledModule::cast(weak_prev->value()), isolate_);
142 current_ = Handle<WasmCompiledModule>::null();
147 Handle<WasmCompiledModule> start_module_;
148 Handle<WasmCompiledModule> current_;
156 Handle<WasmInstanceObject>>
    [all...]
  /art/compiler/driver/
dex_compilation_unit.h 24 #include "handle.h"
37 DexCompilationUnit(Handle<mirror::ClassLoader> class_loader,
45 Handle<mirror::DexCache> dex_cache);
47 Handle<mirror::ClassLoader> GetClassLoader() const {
111 Handle<mirror::DexCache> GetDexCache() const {
116 const Handle<mirror::ClassLoader> class_loader_;
128 const Handle<mirror::DexCache> dex_cache_;
  /external/pdfium/core/fxcrt/
cfx_weak_ptr.h 24 : m_pHandle(new Handle(std::move(pObj))) {}
52 m_pHandle.Reset(new Handle(std::move(pObj)));
57 class Handle {
59 explicit Handle(std::unique_ptr<T, D> ptr)
77 ~Handle() {}
83 CFX_RetainPtr<Handle> m_pHandle;
  /external/v8/src/ic/
access-compiler.cc 12 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags,
17 Handle<Code> code = factory()->NewCode(desc, flags, masm()->CodeObject());
30 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags,
31 Handle<Name> name) {
34 Handle<String>::cast(name)->ToCString().get())
41 Handle<Code> code(masm->isolate()->builtins()->builtin(name));
  /art/runtime/
class_loader_utils.h 30 Handle<mirror::ClassLoader> class_loader)
41 Handle<mirror::ClassLoader> class_loader)
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiPerformanceLib/
PeiPerformanceLib.c 85 Searches in the log array with keyword Handle, Token, Module and Identifier.
95 @param Handle Pointer to environment specific context used
110 IN CONST VOID *Handle, OPTIONAL
136 (LogEntryArray[Index2].Handle == (EFI_PHYSICAL_ADDRESS) (UINTN) Handle) &&
150 Creates a record that contains the Handle, Token, Module and Identifier.
155 @param Handle Pointer to environment specific context used
172 IN CONST VOID *Handle, OPTIONAL
192 LogEntryArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePerformanceLibNull/
PerformanceLib.c 26 Creates a record that contains the Handle, Token, and Module.
31 @param Handle The pointer to environment specific context used
47 IN CONST VOID *Handle, OPTIONAL
59 Looks up the record that matches Handle, Token, and Module.
66 @param Handle The pointer to environment specific context used
82 IN CONST VOID *Handle, OPTIONAL
105 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
107 If Handle is NULL, then ASSERT().
116 @param Handle The pointer to environment specific context used to identify the component
134 OUT CONST VOID **Handle,
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenIoMmioLib/
XenIoMmioLib.c 56 the handle pointed to by @Handle, or on a new handle if it points to
59 @param Handle Pointer to the handle to install the protocols
60 on, may point to a NULL handle.
75 IN OUT EFI_HANDLE *Handle,
84 ASSERT (Handle != NULL);
86 OutHandle = *Handle;
108 *Handle = OutHandle;
    [all...]
  /external/libmojo/mojo/edk/js/
drain_data.h 26 // Starts waiting for data on the specified data pipe consumer handle.
28 DrainData(v8::Isolate* isolate, mojo::Handle handle);
32 v8::Handle<v8::Value> GetPromise();
45 // When the remote data pipe handle is closed, or an error occurs, deliver
  /external/skia/src/gpu/vk/
GrVkDescriptorSet.h 22 GrVkDescriptorSetManager::Handle handle);
41 GrVkDescriptorSetManager::Handle fHandle;
  /external/skia/tools/trace/
SkDebugfTracer.h 21 SkEventTracer::Handle addTraceEvent(char phase,
33 SkEventTracer::Handle handle) override;
  /external/v8/src/builtins/
builtins-proxy.cc 27 Handle<Object> target = args.atOrUndefined(isolate, 1);
28 Handle<Object> handler = args.atOrUndefined(isolate, 2);
  /external/v8/src/compiler/
js-create-lowering.h 38 Handle<Context> native_context, Zone* zone)
61 Handle<AllocationSite> site);
67 Node* context, Handle<SharedFunctionInfo>,
73 Handle<JSObject> boilerplate,
76 Handle<JSObject> boilerplate,
80 Reduction ReduceNewArrayToStubCall(Node* node, Handle<AllocationSite> site);
89 Handle<Context> native_context() const { return native_context_; }
100 Handle<Context> const native_context_;
js-operator.h 34 VectorSlotPair(Handle<FeedbackVector> vector, FeedbackSlot slot)
39 Handle<FeedbackVector> vector() const { return vector_; }
45 const Handle<FeedbackVector> vector_;
282 CreateCatchContextParameters(Handle<String> catch_name,
283 Handle<ScopeInfo> scope_info);
285 Handle<String> catch_name() const { return catch_name_; }
286 Handle<ScopeInfo> scope_info() const { return scope_info_; }
289 Handle<String> const catch_name_;
290 Handle<ScopeInfo> const scope_info_;
336 StoreNamedOwnParameters(Handle<Name> name, VectorSlotPair const& feedback
    [all...]
  /external/v8/src/interpreter/
bytecode-dead-code-optimizer.h 29 Handle<BytecodeArray> ToBytecodeArray(
31 Handle<FixedArray> handler_table) override;
  /prebuilts/go/darwin-x86/src/html/
escape_test.go 22 // Handle no entities.
28 // Handle simple named entities.
34 // Handle hitting the end of the string.
40 // Handle entities with two codepoints.
46 // Handle decimal numeric entities.
52 // Handle hexadecimal numeric entities.
58 // Handle numeric early termination.
64 // Handle numeric ISO-8859-1 entity replacements.
70 // Handle single ampersand.
76 // Handle ampersand followed by non-entity
    [all...]

Completed in 1316 milliseconds

1 2 3 4 5 6 78 91011>>