HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 1 - 25 of 763) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
handles.h 38 // A Handle provides a reference to an object that survives relocation by
41 // When a handle is created for an object a cell is allocated in the heap.
44 class Handle {
46 INLINE(explicit Handle(T** location)) { location_ = location; }
47 INLINE(explicit Handle(T* obj));
48 INLINE(Handle(T* obj, Isolate* isolate));
50 INLINE(Handle()) : location_(NULL) {}
53 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
54 template <class S> Handle(Handle<S> handle)
    [all...]
factory.h 38 // Interface for handle based allocation.
43 Handle<FixedArray> NewFixedArray(
48 Handle<FixedArray> NewFixedArrayWithHoles(
53 Handle<FixedDoubleArray> NewFixedDoubleArray(
57 Handle<SeededNumberDictionary> NewSeededNumberDictionary(
60 Handle<UnseededNumberDictionary> NewUnseededNumberDictionary(
63 Handle<StringDictionary> NewStringDictionary(int at_least_space_for);
65 Handle<ObjectHashSet> NewObjectHashSet(int at_least_space_for);
67 Handle<ObjectHashTable> NewObjectHashTable(int at_least_space_for);
69 Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors)
    [all...]
stub-cache.h 80 Handle<Code> ComputeLoadNonexistent(Handle<String> name,
81 Handle<JSObject> receiver);
83 Handle<Code> ComputeLoadField(Handle<String> name,
84 Handle<JSObject> receiver,
85 Handle<JSObject> holder,
88 Handle<Code> ComputeLoadCallback(Handle<String> name,
89 Handle<JSObject> receiver
    [all...]
liveedit.h 71 void RecordFunctionInfo(Handle<SharedFunctionInfo> info,
73 void RecordRootFunctionInfo(Handle<Code> code);
87 static JSArray* GatherCompileInfo(Handle<Script> script,
88 Handle<String> source);
90 static void WrapSharedFunctionInfos(Handle<JSArray> array);
93 Handle<JSArray> new_compile_info_array,
94 Handle<JSArray> shared_info_array);
96 static MaybeObject* FunctionSourceUpdated(Handle<JSArray> shared_info_array);
99 static void SetFunctionScript(Handle<JSValue> function_wrapper,
100 Handle<Object> script_handle)
    [all...]
d8-windows.cc 38 void Shell::AddOSMethods(Handle<ObjectTemplate> os_templ) {
messages.h 48 v8::internal::Handle<v8::internal::JSArray> args,
52 v8::internal::Handle<v8::internal::JSArray> args() const { return args_; }
56 v8::internal::Handle<v8::internal::JSArray> const args_;
69 MessageLocation(Handle<Script> script,
77 Handle<Script> script() const { return script_; }
82 Handle<Script> script_;
93 static Handle<JSMessageObject> MakeMessageObject(
96 Vector< Handle<Object> > args,
97 Handle<String> stack_trace,
98 Handle<JSArray> stack_frames)
    [all...]
compilation-cache.h 53 Handle<CompilationCacheTable> GetTable(int generation);
56 Handle<CompilationCacheTable> GetFirstTable() {
59 void SetFirstTable(Handle<CompilationCacheTable> value) {
76 void Remove(Handle<SharedFunctionInfo> function_info);
98 Handle<SharedFunctionInfo> Lookup(Handle<String> source,
99 Handle<Object> name,
102 void Put(Handle<String> source, Handle<SharedFunctionInfo> function_info);
106 Handle<String> source, Handle<SharedFunctionInfo> function_info)
    [all...]
execution.h 65 static Handle<Object> Call(Handle<Object> callable,
66 Handle<Object> receiver,
68 Handle<Object> argv[],
79 static Handle<Object> New(Handle<JSFunction> func,
81 Handle<Object> argv[],
88 static Handle<Object> TryCall(Handle<JSFunction> func,
89 Handle<Object> receiver
    [all...]
interpreter-irregexp.h 40 Handle<ByteArray> code,
41 Handle<String> subject,
messages.cc 42 Handle<Object> message_obj) {
48 Handle<Object> data(loc->script()->name());
51 data_str = Handle<String>::cast(data)->ToCString(DISALLOW_NULLS);
58 Handle<JSMessageObject> MessageHandler::MakeMessageObject(
61 Vector< Handle<Object> > args,
62 Handle<String> stack_trace,
63 Handle<JSArray> stack_frames) {
64 Handle<String> type_handle = FACTORY->LookupAsciiSymbol(type);
65 Handle<FixedArray> arguments_elements =
70 Handle<JSArray> arguments_handle
    [all...]
v8checks.h 37 template <class T> class Handle;
48 v8::Handle<v8::Value> unexpected,
50 v8::Handle<v8::Value> value);
55 v8::Handle<v8::Value> expected,
57 v8::Handle<v8::Value> value);
compilation-cache.cc 68 static Handle<CompilationCacheTable> AllocateTable(Isolate* isolate, int size) {
75 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) {
77 Handle<CompilationCacheTable> result;
84 result = Handle<CompilationCacheTable>(table, isolate());
120 void CompilationSubCache::Remove(Handle<SharedFunctionInfo> function_info) {
122 // into the caller's handle scope.
125 Handle<CompilationCacheTable> table = GetTable(generation);
143 Handle<SharedFunctionInfo> function_info,
144 Handle<Object> name,
147 Handle<Script> script
    [all...]
  /external/webkit/Source/WebKit2/Shared/
SandboxExtension.h 54 class Handle {
55 WTF_MAKE_NONCOPYABLE(Handle);
58 Handle();
59 ~Handle();
62 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
71 static PassRefPtr<SandboxExtension> create(const Handle&);
72 static void createHandle(const String& path, Type type, Handle&);
73 static String createHandleForTemporaryFile(const String& prefix, Type type, Handle&);
81 explicit SandboxExtension(const Handle&);
89 inline SandboxExtension::Handle::Handle() {
    [all...]
  /external/webkit/Source/WebKit2/Platform/gtk/
SharedMemoryGtk.cpp 34 SharedMemory::Handle::Handle()
39 SharedMemory::Handle::~Handle()
44 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
49 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
61 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection
    [all...]
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.h 22 extern v8::Handle<v8::Value> SendCtrlRequestComplete(const v8::Arguments& args);
24 extern void ctrlServerInit(v8::Handle<v8::Context> context);
worker_v8.h 26 extern void WorkerV8ObjectTemplateInit(v8::Handle<v8::ObjectTemplate> target);
28 extern void testWorkerV8(v8::Handle<v8::Context> context);
experiments.h 22 void experiments(v8::Handle<v8::Context> context);
protobuf_v8.h 22 extern "C" void SchemaObjectTemplateInit(v8::Handle<v8::ObjectTemplate> target);
  /external/v8/include/
v8-debug.h 119 virtual Handle<Object> GetExecutionState() const = 0;
120 virtual Handle<Object> GetEventData() const = 0;
125 virtual Handle<String> GetJSON() const = 0;
132 virtual Handle<Context> GetEventContext() const = 0;
161 virtual Handle<Object> GetExecutionState() const = 0;
162 virtual Handle<Object> GetEventData() const = 0;
169 virtual Handle<Context> GetEventContext() const = 0;
175 virtual Handle<Value> GetCallbackData() const = 0;
198 Handle<Object> exec_state,
199 Handle<Object> event_data
    [all...]
  /external/v8/src/extensions/
externalize-string-extension.h 39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8::Handle<v8::Value> Externalize(const v8::Arguments& args);
42 static v8::Handle<v8::Value> IsAscii(const v8::Arguments& args);
gc-extension.h 39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8::Handle<v8::Value> GC(const v8::Arguments& args);
  /external/webkit/Source/WebCore/bindings/v8/
DateExtension.h 46 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(v8::Handle<v8::String>);
47 static v8::Handle<v8::Value> Setup(const v8::Arguments&);
48 static v8::Handle<v8::Value> OnSleepDetected(const v8::Arguments&);
JavaScriptCallFrame.h 44 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
57 v8::Handle<v8::Value> scopeChain() const;
59 v8::Handle<v8::Value> thisObject() const;
61 v8::Handle<v8::Value> evaluate(const String& expression);
64 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
  /external/chromium/base/
sync_socket.h 26 typedef HANDLE Handle;
28 typedef int Handle;
31 // Creates a SyncSocket from a Handle. Used in transport.
32 explicit SyncSocket(Handle handle) : handle_(handle) { }
44 // Note it is not safe to send messages from the same socket handle by
63 // Extracts the contained handle. Used for transferring between
65 Handle handle() const { return handle_; function in class:base::SyncSocket
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.h 47 class Handle {
48 WTF_MAKE_NONCOPYABLE(Handle);
51 Handle();
52 ~Handle();
55 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
66 // Create a shareable surface from a handle. Returns 0 on failure.
67 static PassRefPtr<ShareableSurface> create(CGLContextObj, const Handle&);
71 bool createHandle(Handle&);

Completed in 651 milliseconds

1 2 3 4 5 6 7 8 91011>>