HomeSort by relevance Sort by last modified time
    Searched refs:Local (Results 226 - 250 of 551) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceConstructor3.cpp 86 v8::Local<v8::Signature> defaultSignature;
87 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionTemplate, "TestInterfaceConstructor3", v8::Local<v8::FunctionTemplate>(), V8TestInterfaceConstructor3::internalFieldCount,
94 v8::Local<v8::ObjectTemplate> instanceTemplate ALLOW_UNUSED = functionTemplate->InstanceTemplate();
95 v8::Local<v8::ObjectTemplate> prototypeTemplate ALLOW_UNUSED = functionTemplate->PrototypeTemplate();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromiseResolver.cpp 64 v8::Local<v8::Promise::Resolver> v8Resolver = m_resolver.v8Value().As<v8::Promise::Resolver>();
V8LazyEventListener.h 68 virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) OVERRIDE;
Dictionary.h 104 bool get(const String&, v8::Local<v8::Value>&) const;
183 bool getKey(const String& key, v8::Local<v8::Value>&) const;
295 v8::Local<v8::Value> v8Value;
310 v8::Local<v8::Value> v8Value;
338 v8::Local<v8::Value> v8Value;
PageScriptDebugServer.cpp 123 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
126 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate);
133 v8::Local<v8::Context> context = shell->context();
134 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getScripts")));
249 v8::Local<v8::Context> debugContext = v8::Debug::GetDebugContext();
DOMWrapperMap.h 128 static WeakCallbackDataType* WeakCallbackParameter(MapType* map, KeyType* key, v8::Local<v8::Object>& value)
164 releaseObject(v8::Local<v8::Object>::New(isolate, value));
V8NPUtils.cpp 46 void convertV8ObjectToNPVariant(v8::Local<v8::Value> object, NPObject* owner, NPVariant* result, v8::Isolate* isolate)
102 return v8::Local<v8::Object>::New(isolate, v8Object->v8Object);
117 // Use local stack buffer to avoid heap allocations for small strings. Here we should only use the stack space for
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 181 void V8CSSStyleDeclaration::namedPropertyQueryCustom(v8::Local<v8::String> v8Name, const v8::PropertyCallbackInfo<v8::Integer>& info)
191 void V8CSSStyleDeclaration::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
215 void V8CSSStyleDeclaration::namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
V8HTMLOptionsCollectionCustom.cpp 70 void V8HTMLOptionsCollection::lengthAttributeSetterCustom(v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8MutationObserverCustom.cpp 53 v8::Local<v8::Value> arg = info[0];
V8InjectedScriptHostCustom.cpp 208 v8::Local<v8::Object> location = v8::Object::New(isolate);
213 v8::Local<v8::Object> result = v8::Object::New(isolate);
244 v8::Local<v8::Array> result = v8::Array::New(isolate);
253 v8::Local<v8::Context> context = toV8Context(executionContext, v8Listener->world());
257 v8::Local<v8::Object> function;
266 v8::Local<v8::Object> listenerEntry = v8::Object::New(isolate);
280 v8::Local<v8::Value> value = info[0];
294 v8::Local<v8::Object> result = v8::Object::New(info.GetIsolate());
442 v8::Local<v8::Value> result = function->Call(receiver, argc, argv.get());
  /external/chromium_org/v8/src/extensions/
statistics-extension.cc 23 v8::Local<v8::Object> object,
33 v8::Local<v8::Object> object,
42 v8::Local<v8::Object> object,
62 v8::Local<v8::Object> result = v8::Object::New(args.GetIsolate());
  /external/clang/test/Modules/
module-private.cpp 86 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} local
88 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
  /external/llvm/unittests/Transforms/Utils/
Local.cpp 1 //===- Local.cpp - Unit tests for Local -----------------------------------===//
10 #include "llvm/Transforms/Utils/Local.h"
19 TEST(Local, RecursivelyDeleteDeadPHINodes) {
  /external/pdfium/fpdfsdk/include/javascript/
JS_Define.h 99 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
100 v8::Local<v8::Value> v = context->GetEmbedderData(1);\
145 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
146 v8::Local<v8::Value> v = context->GetEmbedderData(1);\
196 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
197 v8::Local<v8::Value> v = context->GetEmbedderData(1);\
402 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
403 v8::Local<v8::Value> v = context->GetEmbedderData(1);\
450 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
451 v8::Local<v8::Value> v = context->GetEmbedderData(1);\
    [all...]
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 48 #define JS_PROPGET_ARGS v8::Local<v8::String> property,const v8::PropertyCallbackInfo<v8::Value>& info
49 #define JS_PROPPUT_ARGS v8::Local<v8::String> property,v8::Local<v8::Value> value,const v8::PropertyCallbackInfo<void>& info
54 #define JS_PROPQUERY_ARGS v8::Local<v8::String> property,const v8::PropertyCallbackInfo<v8::Integer>& info
56 #define JS_NAMED_PROPPUT_ARGS v8::Local<v8::String> property,v8::Local<v8::Value> value,const v8::PropertyCallbackInfo<v8::Value>& info
57 #define JS_PROPDEL_ARGS v8::Local<v8::String> property,const v8::PropertyCallbackInfo<v8::Boolean>& info
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 124 return v8::Local<v8::Function>::New(isolate_, callback_);
128 return v8::Local<v8::Context>::New(isolate_, context_);
485 v8::Local<v8::Function> callback_local =
486 v8::Local<v8::Function>::Cast(args[1]);
575 v8::Local<v8::Function> callback_local =
576 v8::Local<v8::Function>::Cast(args[4]);
680 v8::Local<v8::Function> callback_local =
681 v8::Local<v8::Function>::Cast(args[3]);
738 v8::Local<v8::Function> callback_local =
739 v8::Local<v8::Function>::Cast(args[2])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 222 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
246 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
267 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
288 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
309 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
387 void WebBindings::toNPVariant(v8::Local<v8::Value> object, NPObject* root, NPVariant* result)
  /external/chromium_org/v8/src/
d8.h 252 static Local<Context> CreateEvaluationContext(Isolate* isolate);
270 static Local<Object> DebugMessageDetails(Isolate* isolate,
272 static Local<Value> DebugCommandToJSONRequest(Isolate* isolate,
285 static void RealmSharedGet(Local<String> property,
287 static void RealmSharedSet(Local<String> property,
288 Local<Value> value,
362 // We statically allocate a set of local counters to be used if we
  /external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc 91 static v8::Local<v8::ObjectTemplate> CreateConstructor(
98 v8::Local<v8::FunctionTemplate> constructor =
100 v8::Local<v8::ObjectTemplate> obj_template = constructor->InstanceTemplate();
119 v8::Handle<v8::Context> context = local_context.local();
123 v8::Local<v8::Object> obj = v8::Local<v8::Object>::Cast(
132 v8::Local<v8::Value> value;
test-compiler.cc 154 v8::Local<v8::Context> context = CcTest::NewContext(PRINT_EXTENSION);
220 v8::Local<v8::Context> context =
285 v8::Local<v8::Function> f =
286 v8::Local<v8::Function>::Cast(context->Global()->Get(
389 *v8::Local<v8::Function>::Cast(env->Global()->Get(v8_str("closure1"))));
391 *v8::Local<v8::Function>::Cast(env->Global()->Get(v8_str("closure2"))));
404 v8::Local<v8::Function> fun =
405 v8::Local<v8::Function>::Cast(obj->Get(v8_str(property_name)));
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
options.js 9 alert('Local storage is required for changing providers');
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScopeChainSidebarPane.js 78 case DebuggerAgent.ScopeType.Local:
80 title = WebInspector.UIString("Local");
135 else if (!foundLocalScope || scope.type === DebuggerAgent.ScopeType.Local || title in this._expandedSections)
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 42 template <class T> class Local;
188 BLINK_EXPORT static void toNPVariant(v8::Local<v8::Value>, NPObject* root, NPVariant* result);
  /external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
Android.mk 12 # Local filename of the skia shared object

Completed in 301 milliseconds

1 2 3 4 5 6 7 8 91011>>