HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 276 - 300 of 1083) sorted by null

<<11121314151617181920>>

  /external/v8/test/cctest/compiler/
test-loop-assignment-analysis.cc 19 Handle<JSFunction> function;
23 : function(Handle<JSFunction>::null()), result(NULL) {
27 Handle<Object> obj = v8::Utils::OpenHandle(*v);
28 function = Handle<JSFunction>::cast(obj);
test-run-variables.cc 61 Handle<Object> r = v8::Utils::OpenHandle(*CompileRun(tests[i + 1]));
69 Handle<Object> r = v8::Utils::OpenHandle(*CompileRun(tests[i + 2]));
  /external/v8/test/cctest/
test-assembler-x87.cc 64 Handle<Code> code = isolate->factory()->NewCode(
65 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
101 Handle<Code> code = isolate->factory()->NewCode(
102 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
142 Handle<Code> code = isolate->factory()->NewCode(
143 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
173 Handle<Code> code = isolate->factory()->NewCode(
174 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
222 Handle<Code> code = isolate->factory()->NewCode(
223 desc, Code::ComputeFlags(Code::STUB), Handle<Code>())
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymactoolbox.h 175 extern PyObject *ResObj_New(Handle);
176 extern int ResObj_Convert(PyObject *, Handle *);
177 extern PyObject *OptResObj_New(Handle);
178 extern int OptResObj_Convert(PyObject *, Handle *);
  /prebuilts/gdb/linux-x86/include/python2.7/
pymactoolbox.h 175 extern PyObject *ResObj_New(Handle);
176 extern int ResObj_Convert(PyObject *, Handle *);
177 extern PyObject *OptResObj_New(Handle);
178 extern int OptResObj_Convert(PyObject *, Handle *);
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftmac.h 23 /* Handle, FSSpec, FSRef, etc.) */
76 /* library :: A handle to the library resource. */
85 /* aface :: A handle to a new face object. */
101 Handle fond,
206 /* library :: A handle to the library resource. */
214 /* aface :: A handle to a new face object. */
241 /* library :: A handle to the library resource. */
249 /* aface :: A handle to a new face object. */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymactoolbox.h 175 extern PyObject *ResObj_New(Handle);
176 extern int ResObj_Convert(PyObject *, Handle *);
177 extern PyObject *OptResObj_New(Handle);
178 extern int OptResObj_Convert(PyObject *, Handle *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymactoolbox.h 175 extern PyObject *ResObj_New(Handle);
176 extern int ResObj_Convert(PyObject *, Handle *);
177 extern PyObject *OptResObj_New(Handle);
178 extern int OptResObj_Convert(PyObject *, Handle *);
  /art/compiler/optimizing/
reference_type_propagation.h 35 Handle<mirror::DexCache> hint_dex_cache,
97 Handle<mirror::DexCache> hint_dex_cache_;
ssa_builder.h 51 Handle<mirror::DexCache> dex_cache,
118 Handle<mirror::DexCache> dex_cache_;
  /art/runtime/gc/
heap_test.cc 49 Handle<mirror::Class> c(
53 Handle<mirror::ObjectArray<mirror::Object>> array(hs2.NewHandle(
57 // handle scope operator -> deferences the handle scope before running the method.
  /art/runtime/native/
java_lang_reflect_Array.cc 35 Handle<mirror::Class> element_class(hs.NewHandle(soa.Decode<mirror::Class*>(javaElementClass)));
42 Handle<mirror::IntArray> dimensions_array(
  /external/v8/src/
codegen.h 78 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
82 static void PrintCode(Handle<Code> code, CompilationInfo* info);
optimizing-compile-dispatcher.h 55 OptimizedCompileJob* FindReadyOSRCandidate(Handle<JSFunction> function,
57 bool IsQueuedForOSR(Handle<JSFunction> function, BailoutId osr_ast_id);
global-handles.h 101 NORMAL_WEAK, // Embedder gets a handle to the dying object.
116 // Creates a new global handle that is alive until Destroy is called.
117 Handle<Object> Create(Object* value);
119 // Copy a global handle
120 static Handle<Object> CopyGlobal(Object** location);
122 // Destroy a global handle.
133 // Make the global handle weak and set the callback parameter for the
134 // handle. When the garbage collector recognizes that only weak global
136 // handle) with the handle and corresponding parameter as arguments. B
    [all...]
  /external/v8/src/compiler/
code-stub-assembler.h 37 Handle<Code> GenerateCode();
43 Node* HeapConstant(Handle<HeapObject> object);
js-frame-specialization.cc 30 Handle<Object> value;
34 value = handle(frame()->context(), isolate());
36 value = handle(frame()->GetExpression(index - parameters_count), isolate());
40 handle(index ? frame()->GetParameter(index - 1) : frame()->receiver(),
49 Handle<Object> value;
54 value = handle(frame()->function(), isolate());
57 value = handle(Smi::FromInt(parameters_count - 1), isolate());
60 value = handle(frame()->context(), isolate());
64 handle(index ? frame()->GetParameter(index - 1) : frame()->receiver(),
  /external/v8/src/crankshaft/
hydrogen-types.h 17 template <typename T> class Handle;
67 static HType FromValue(Handle<Object> value) WARN_UNUSED_RESULT;
typing.h 22 AstTyper(Isolate* isolate, Zone* zone, Handle<JSFunction> closure,
38 Handle<JSFunction> closure_;
  /external/v8/src/interpreter/
interpreter.h 37 static Handle<FixedArray> CreateUninitializedInterpreterTable(
106 bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table);
  /external/v8/src/profiler/
heap-profiler.h 44 SnapshotObjectId GetSnapshotObjectId(Handle<Object> obj);
66 Handle<HeapObject> FindHeapObjectById(SnapshotObjectId id);
  /external/v8/src/runtime/
runtime-strings.cc 22 int StringMatch(Isolate* isolate, Handle<String> sub, Handle<String> pat,
63 Isolate* isolate, Handle<String> subject, Handle<String> search,
64 Handle<String> replace, bool* found, int recursion_limit) {
72 Handle<String> first = Handle<String>(cons->first());
73 Handle<String> second = Handle<String>(cons->second());
74 Handle<String> new_first
    [all...]
  /art/runtime/
transaction_test.cc 35 Handle<mirror::ClassLoader> class_loader(
95 Handle<mirror::Class> h_klass(
101 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
115 Handle<mirror::Class> h_klass(
118 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
144 Handle<mirror::Class> h_klass(
154 Handle<mirror::Array> h_obj(
172 Handle<mirror::ClassLoader> class_loader(
176 Handle<mirror::Class> h_klass(
232 Handle<mirror::Class> object_klass
    [all...]
  /external/libchrome/base/
sync_socket_posix.cc 32 // Writes |length| of |buffer| into |handle|. Returns the number of bytes
34 size_t SendHelper(SyncSocket::Handle handle,
39 DCHECK_NE(handle, SyncSocket::kInvalidHandle);
41 return WriteFileDescriptor(handle, charbuffer, length)
46 bool CloseHandle(SyncSocket::Handle handle) {
47 if (handle != SyncSocket::kInvalidHandle && close(handle) < 0) {
57 const SyncSocket::Handle SyncSocket::kInvalidHandle = -1
    [all...]
  /external/skia/experimental/SkV8Example/
DrawingMethods.cpp 18 DrawingMethods* DrawingMethods::Unwrap(v8::Handle<v8::Object> obj) {
19 v8::Handle<v8::External> field = v8::Handle<v8::External>::Cast(obj->GetInternalField(0));
104 v8::Handle<v8::External> field = v8::Handle<v8::External>::Cast(
153 void DrawingMethods::addAttributesAndMethods(v8::Handle<v8::ObjectTemplate> tmpl) {

Completed in 3563 milliseconds

<<11121314151617181920>>