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

<<11121314151617181920>>

  /external/v8/src/
runtime.cc 79 Handle<Type> name = args.at<Type>(index);
278 static Handle<Map> ComputeObjectLiteralMap(
279 Handle<Context> context,
280 Handle<FixedArray> constant_properties,
308 Handle<FixedArray> keys =
325 Handle<Map>(context->object_function()->initial_map()),
330 static Handle<Object> CreateLiteralBoilerplate(
332 Handle<FixedArray> literals,
333 Handle<FixedArray> constant_properties);
336 static Handle<Object> CreateObjectLiteralBoilerplate
    [all...]
accessors.cc 121 Handle<JSObject> object_handle(object, isolate);
122 Handle<Object> value_handle(value, isolate);
125 Handle<Object> uint32_v = Execution::ToUint32(value_handle, &has_exception);
127 Handle<Object> number_v = Execution::ToNumber(value_handle, &has_exception);
131 return Handle<JSArray>::cast(object_handle)->SetElementsLength(*uint32_v);
321 Handle<Script> script(Script::cast(wrapper->value()), isolate);
324 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
328 Handle<JSArray> js_array =
367 Handle<SharedFunctionInfo> eval_from_shared(
371 Handle<Script> eval_from_script(Script::cast(eval_from_shared->script()))
    [all...]
codegen.cc 96 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
104 Handle<Code> code =
115 void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
123 Handle<Script> script = info->script();
159 Handle<String> name = Handle<String>::cast(type->AsLiteral()->handle());
d8-debug.h 40 Handle<Object> exec_state,
41 Handle<Object> event_data,
42 Handle<Value> data);
63 // Handle events from the subordinate threads.
74 // Handle a message from the debugged V8.
76 // Handle a keyboard command.
gdb-jit.h 121 static void AddCode(Handle<String> name,
122 Handle<Script> script,
123 Handle<Code> code,
prettyprinter.h 72 void PrintLiteral(Handle<Object> value, bool quote);
103 void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote);
106 Handle<Object> value);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.cpp 68 v8::Handle<v8::String> s = m_value->ToString();
69 // Handle the case where an exception is thrown as part of invoking toString on the object.
76 static PassRefPtr<InspectorValue> v8ToInspectorValue(v8::Handle<v8::Value> value)
91 v8::Handle<v8::Array> array = v8::Handle<v8::Array>::Cast(value);
107 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value);
113 if (name->IsString() && !object->HasRealNamedProperty(v8::Handle<v8::String>::Cast(name)))
V8NPObject.cpp 69 static v8::Handle<v8::Value> npObjectInvokeImpl(const v8::Arguments& args, InvokeFunctionType functionId)
116 v8::Handle<v8::String> functionName(v8::String::Cast(*args.Data()));
140 v8::Handle<v8::Value> returnValue = convertNPVariantToV8Object(&result, npObject);
147 v8::Handle<v8::Value> npObjectMethodHandler(const v8::Arguments& args)
153 v8::Handle<v8::Value> npObjectInvokeDefaultHandler(const v8::Arguments& args)
177 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key)
193 return v8::Handle<v8::Value>();
195 v8::Handle<v8::Value> returnValue = convertNPVariantToV8Object(&result, npObject);
215 v8Function->SetName(v8::Handle<v8::String>::Cast(key));
219 return v8::Handle<v8::Value>()
    [all...]
SerializedScriptValue.cpp 356 Status serialize(v8::Handle<v8::Value> value)
367 StateBase* doSerialize(v8::Handle<v8::Value> value, StateBase* next);
407 v8::Handle<v8::Value> composite() { return m_composite; }
415 StateBase(v8::Handle<v8::Value> composite, StateBase* next)
422 v8::Handle<v8::Value> m_composite;
430 : StateBase(v8::Handle<v8::Value>(), 0)
444 v8::Handle<T> composite() { return v8::Handle<T>::Cast(StateBase::composite()); }
447 State(v8::Handle<T> composite, StateBase* next)
457 ArrayState(v8::Handle<v8::Array> array, StateBase* next
    [all...]
ScriptFunctionCall.cpp 129 OwnArrayPtr<v8::Handle<v8::Value> > args = adoptArrayPtr(new v8::Handle<v8::Value>[m_arguments.size()]);
162 OwnArrayPtr<v8::Handle<v8::Value> > args = adoptArrayPtr(new v8::Handle<v8::Value>[m_arguments.size()]);
193 v8::Handle<v8::Object> object = v8::Context::GetCurrent()->Global();
194 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value());
196 OwnArrayPtr<v8::Handle<v8::Value> > args = adoptArrayPtr(new v8::Handle<v8::Value>[m_arguments.size()]);
200 v8::Handle<v8::Value> result = V8Proxy::callFunctionWithoutFrame(function, object, m_arguments.size(), args.g (…)
    [all...]
V8Proxy.cpp 91 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance,
92 v8::Handle<v8::ObjectTemplate> proto,
100 void batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> proto,
101 v8::Handle<v8::Signature> signature,
109 v8::Handle<v8::Value>(),
115 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor,
116 v8::Handle<v8::ObjectTemplate> proto,
203 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData)
206 v8::Handle<v8::String> name = v8::String::New(fileNameString, fileName.length())
    [all...]
V8AbstractEventListener.cpp 103 v8::Handle<v8::Value> jsEvent = toV8(event);
120 void V8AbstractEventListener::setListenerObject(v8::Handle<v8::Object> listener)
131 void V8AbstractEventListener::invokeEventHandler(ScriptExecutionContext* context, Event* event, v8::Handle<v8::Value> jsEvent)
142 v8::Handle<v8::String> eventSymbol = V8HiddenPropertyName::event();
206 v8::Handle<v8::Value> value = V8DOMWrapper::convertEventTargetToV8Object(target);
209 return v8::Local<v8::Object>::New(v8::Handle<v8::Object>::Cast(value));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 47 v8::Handle<v8::Value> V8HTMLOptionsCollection::removeCallback(const v8::Arguments& args)
55 v8::Handle<v8::Value> V8HTMLOptionsCollection::addCallback(const v8::Arguments& args)
63 HTMLOptionElement* option = V8HTMLOptionElement::toNative(v8::Handle<v8::Object>(v8::Handle<v8::Object>::Cast(args[0])));
88 v8::Handle<v8::Value> V8HTMLOptionsCollection::lengthAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
117 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
129 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
V8HTMLDocumentCustom.cpp 76 v8::Handle<v8::Value> V8HTMLDocument::GetNamedProperty(HTMLDocument* htmlDocument, const AtomicString& key)
79 return v8::Handle<v8::Value>();
83 return v8::Handle<v8::Value>();
111 v8::Handle<v8::Value> V8HTMLDocument::writeCallback(const v8::Arguments& args)
120 v8::Handle<v8::Value> V8HTMLDocument::writelnCallback(const v8::Arguments& args)
129 v8::Handle<v8::Value> V8HTMLDocument::openCallback(const v8::Arguments& args)
169 v8::Handle<v8::Value> V8HTMLDocument::allAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
172 v8::Handle<v8::Object> holder = info.Holder();
183 v8::Handle<v8::Value> toV8(HTMLDocument* impl, bool forceNewObject)
187 v8::Handle<v8::Object> wrapper = V8HTMLDocument::wrap(impl, forceNewObject)
    [all...]
V8NotificationCenterCustom.cpp 49 v8::Handle<v8::Value> V8NotificationCenter::createHTMLNotificationCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> V8NotificationCenter::createNotificationCallback(const v8::Arguments& args)
80 v8::Handle<v8::Value> V8NotificationCenter::requestPermissionCallback(const v8::Arguments& args)
  /external/v8/src/ia32/
lithium-codegen-ia32.h 86 Handle<Object> ToHandle(LConstantOperand* op) const;
93 // chunk contains constructs we cannot handle. Returns true if the
99 void FinishCode(Handle<Code> code);
114 void DoCheckMapCommon(Register reg, Handle<Map> map,
156 Handle<String> class_name,
184 void CallCode(Handle<Code> code,
188 void CallCodeGeneric(Handle<Code> code,
211 void CallKnownFunction(Handle<JSFunction> function,
226 void PopulateDeoptimizationData(Handle<Code> code);
227 int DefineDeoptimizationLiteral(Handle<Object> literal)
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.h 83 Handle<Object> ToHandle(LConstantOperand* op) const;
87 // chunk contains constructs we cannot handle. Returns true if the
93 void FinishCode(Handle<Code> code);
107 void DoCheckMapCommon(Register reg, Handle<Map> map,
147 Handle<String> class_name,
173 void CallCodeGeneric(Handle<Code> code,
180 void CallCode(Handle<Code> code,
201 void CallKnownFunction(Handle<JSFunction> function,
217 void PopulateDeoptimizationData(Handle<Code> code);
218 int DefineDeoptimizationLiteral(Handle<Object> literal)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
cookie_fetcher_unittest.cc 58 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
65 EXPECT_CALL(*i_handler, Handle(token_, cf))
87 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
109 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
114 EXPECT_CALL(*i_handler, Handle(token_, cf))
136 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
160 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
165 EXPECT_CALL(*i_handler, Handle(token_, cf))
178 scoped_ptr<URLFetcher> fetcher(handler.Handle(input, NULL));
188 scoped_ptr<URLFetcher> fetcher(handler.Handle(input, NULL))
    [all...]
issue_response_handler.cc 23 URLFetcher* IssueResponseHandler::Handle(
  /external/webrtc/src/modules/audio_processing/
echo_cancellation_impl.cc 24 typedef void Handle;
88 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
128 Handle* my_handle = handle(handle_index);
254 Handle* my_handle = static_cast<Handle*>(handle(0));
297 // TODO(bjornv): How should we handle the multi-channel case
341 Handle* handle = NULL; local
    [all...]
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 61 v8::Handle<v8::Context> context_;
187 CtrlServerThread(v8::Handle<v8::Context> context) :
279 v8::Handle<v8::String> name = v8::String::New("onCtrlServerCmd");
280 v8::Handle<v8::Value> onCtrlServerCmdFunctionValue =
282 v8::Handle<v8::Function> onCtrlServerCmdFunction =
283 v8::Handle<v8::Function>::Cast(onCtrlServerCmdFunctionValue);
286 v8::Handle<v8::Value> v8CmdValue = v8::Number::New(mh->cmd());
287 v8::Handle<v8::Value> v8TokenValue = v8::Number::New(mh->token());
291 v8::Handle<v8::Value> buf;
297 v8::Handle<v8::Value> argv[argc] =
    [all...]
util.cpp 34 const char* ToCString(v8::Handle<v8::Value> value) {
40 void LogErrorMessage(v8::Handle<v8::Message> message,
86 v8::Handle<v8::Message> msg = try_catch->Message();
  /external/chromium/chrome/browser/sessions/
base_session_service.h 56 typedef Callback2<Handle, scoped_refptr<InternalGetCommandsRequest> >::Type
151 Handle ScheduleGetLastSessionCommands(
157 Handle ScheduleGetCurrentSessionCommands(
  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.h 81 // The Handle given to us by the FaviconService for the icon fetch request.
82 FaviconService::Handle icon_handle;
174 void OnVisitedHistoryResults(CancelableRequestProvider::Handle handle,
189 void GotFaviconData(FaviconService::Handle handle,
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestSerializedScriptValueInterface.cpp 70 bool V8TestSerializedScriptValueInterface::HasInstance(v8::Handle<v8::Value> value)
76 v8::Handle<v8::Object> V8TestSerializedScriptValueInterface::wrapSlow(TestSerializedScriptValueInterface* impl)
78 v8::Handle<v8::Object> wrapper;

Completed in 516 milliseconds

<<11121314151617181920>>