HomeSort by relevance Sort by last modified time
    Searched refs:Local (Results 101 - 125 of 469) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptState.cpp 73 v8::Local<v8::Object> innerGlobal = v8::Local<v8::Object>::Cast(context->Global()->GetPrototype());
75 v8::Local<v8::Value> scriptStateWrapper = innerGlobal->GetHiddenValue(V8HiddenPropertyName::scriptState());
87 v8::Local<v8::Context> context = v8::Context::GetCurrent();
SharedPersistent.h 50 v8::Local<T> newLocal(v8::Isolate* isolate) const
V8EventListenerList.cpp 40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
V8Initializer.cpp 55 static Frame* findFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> data, v8::Isolate* isolate)
109 v8::Local<v8::Value> wrappedEvent = toV8(event.get(), v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
112 v8::Local<v8::Object>::Cast(wrappedEvent)->SetHiddenValue(V8HiddenPropertyName::error(), data);
119 static void failedAccessCheckCallbackInMainThread(v8::Local<v8::Object> host, v8::AccessType type, v8::Local<v8::Value> data)
129 static bool codeGenerationCheckCallbackInMainThread(v8::Local<v8::Context> context)
186 v8::Local<v8::Value> wrappedEvent = toV8(event.get(), v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
189 v8::Local<v8::Object>::Cast(wrappedEvent)->SetHiddenValue(V8HiddenPropertyName::error(), data);
V8NPUtils.h 39 void convertV8ObjectToNPVariant(v8::Local<v8::Value>, NPObject*, NPVariant*);
V8PerContextData.h 83 v8::Local<v8::Object> createWrapperFromCache(WrapperTypeInfo* type)
89 v8::Local<v8::Function> constructorForType(WrapperTypeInfo* type)
127 v8::Local<v8::Object> createWrapperFromCacheSlowCase(WrapperTypeInfo*);
128 v8::Local<v8::Function> constructorForTypeSlowCase(WrapperTypeInfo*);
V8Binding.cpp 142 v8::Local<v8::Array> result = v8::Array::New(stringList->length());
210 v8::Local<v8::Number> numberObject = value->ToNumber();
247 v8::Local<v8::Number> numberObject = value->ToNumber();
274 v8::Local<v8::Number> numberObject = value->ToNumber();
311 v8::Local<v8::Number> numberObject = value->ToNumber();
336 v8::Local<v8::Number> numberObject = value->ToNumber();
374 v8::Local<v8::Number> numberObject = value->ToNumber();
394 v8::Local<v8::FunctionTemplate> result = v8::FunctionTemplate::New(V8ObjectConstructor::isValidConstructorMode);
400 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(value))
    [all...]
ScopedPersistent.h 55 ALWAYS_INLINE v8::Local<T> newLocal(v8::Isolate* isolate) const
57 return v8::Local<T>::New(isolate, m_handle);
ScriptFunctionCall.cpp 121 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
129 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(value);
136 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(function, getScriptExecutionContext(), thisObject, m_arguments.size(), args.get());
156 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
164 v8::Local<v8::Function> constructor = v8::Local<v8::Function>::Cast(value);
169 v8::Local<v8::Object> result = V8ObjectConstructor::newInstance(constructor, m_arguments.size(), args.get());
UnsafePersistent.h 90 v8::Local<T> newLocal(v8::Isolate* isolate)
92 return v8::Local<T>::New(isolate, *persistent());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8FileReaderCustom.cpp 41 void V8FileReader::resultAttrGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
V8TrackEventCustom.cpp 41 void V8TrackEvent::trackAttrGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
  /external/eigen/demos/opengl/
trackball.h 21 enum Mode {Around, Local};
  /external/chromium_org/v8/samples/
process.cc 107 static void GetPath(Local<String> name,
109 static void GetReferrer(Local<String> name,
111 static void GetHost(Local<String> name,
113 static void GetUserAgent(Local<String> name,
117 static void MapGet(Local<String> name,
119 static void MapSet(Local<String> name,
120 Local<Value> value,
243 v8::Local<v8::Context> context =
244 v8::Local<v8::Context>::New(GetIsolate(), context_);
260 v8::Local<v8::Context> context
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 116 *v8::Local<v8::Function>::Cast(
352 v8::Local<v8::String> name1 = v8::String::New("1");
363 v8::Local<v8::String> name2 = v8::String::New("2");
372 v8::Local<v8::String> name3 = v8::String::New("3");
419 v8::Local<v8::String> profile_name = v8::String::New("test");
433 v8::Local<v8::String> profile_name = v8::String::New("my_profile");
565 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(
626 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast
    [all...]
cctest.h 89 return v8::Local<v8::Context>::New(default_isolate_, context_);
212 v8::Local<v8::Context> context = v8::Context::New(isolate,
224 v8::Local<v8::Context>::New(isolate_, context_)->Exit();
234 v8::Local<v8::Context> local() { function in class:LocalContext
235 return v8::Local<v8::Context>::New(isolate_, context_);
243 static inline v8::Local<v8::Value> v8_num(double x) {
248 static inline v8::Local<v8::String> v8_str(const char* x) {
253 static inline v8::Local<v8::Script> v8_compile(const char* x) {
259 static inline v8::Local<v8::Value> CompileRun(const char* source)
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 24 import com.google.dexmaker.Local;
418 Local<G> localThis = code.getThis(generatedType);
419 Local<InvocationHandler> localHandler = code.newLocal(handlerType);
420 Local<Object> invokeResult = code.newLocal(TypeId.OBJECT);
421 Local<Integer> intValue = code.newLocal(TypeId.INT);
422 Local<Object[]> args = code.newLocal(objectArrayType);
423 Local<Integer> argsLength = code.newLocal(TypeId.INT);
424 Local<Object> temp = code.newLocal(TypeId.OBJECT);
425 Local<?> resultHolder = code.newLocal(resultType);
426 Local<Method[]> methodArray = code.newLocal(methodArrayType)
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 82 Local<Long> localA = code.getParameter(0, TypeId.LONG);
83 Local<Boolean> localB = code.getParameter(1, TypeId.BOOLEAN);
86 Local<Constructable> localResult = code.newLocal(constructable);
130 Local<Integer> localA = code.getParameter(0, TypeId.INT);
131 Local<Integer> localResult = code.newLocal(TypeId.INT);
149 Local<Method> localMethod = code.newLocal(methodType);
175 Local<DexMakerTest> localInstance = code.getParameter(0, TEST_TYPE);
176 Local<Integer> localA = code.getParameter(1, TypeId.INT);
177 Local<Integer> localResult = code.newLocal(TypeId.INT);
207 Local<Integer> localA = directCode.newLocal(TypeId.INT)
    [all...]
  /external/v8/src/
api.h 165 static Local<FunctionTemplate> ToFunctionTemplate(NeanderObject obj);
166 static Local<ObjectTemplate> ToObjectTemplate(NeanderObject obj);
168 static inline Local<Context> ToLocal(
170 static inline Local<Value> ToLocal(
172 static inline Local<Function> ToLocal(
174 static inline Local<String> ToLocal(
176 static inline Local<RegExp> ToLocal(
178 static inline Local<Object> ToLocal(
180 static inline Local<Array> ToLocal(
182 static inline Local<External> ToLocal
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
set_icon_natives.cc 37 const v8::Local<v8::Object> image_data,
39 v8::Local<v8::Object> data =
95 v8::Local<v8::Object> extension_args = args[1]->ToObject();
96 v8::Local<v8::Object> details =
98 v8::Local<v8::Object> image_data_set =
105 v8::Local<v8::Object> image_data =
122 v8::Local<v8::Object> extension_args = args[1]->ToObject();
123 v8::Local<v8::Object> details =
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 50 v8::Handle<v8::Value> NamedCallbackGetter(v8::Local<v8::String> name,
153 v8::Local<v8::Context> context =
154 v8::Local<v8::Context>::New(isolate_, context_);
230 v8::Local<v8::Context> context =
231 v8::Local<v8::Context>::New(isolate_, context_);
267 v8::Local<v8::Context> context =
268 v8::Local<v8::Context>::New(isolate_, context_);
281 v8::Local<v8::Context> context =
282 v8::Local<v8::Context>::New(isolate_, context_);
321 v8::Local<v8::Context> context
    [all...]
  /external/clang/tools/libclang/
CIndexer.h 46 /// \brief Whether we only want to see "local" declarations (that did not
50 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
  /external/chromium_org/v8/test/mjsunit/
arguments-apply.js 49 function Local() {
54 assertEquals(0, Local().length);
55 assertEquals(1, Local(1).length);
56 assertEquals(2, Local(2)[0]);
57 assertEquals(2, Local(3, 4).length);
58 assertEquals(3, Local(3, 4)[0]);
59 assertEquals(4, Local(3, 4)[1]);
  /external/v8/test/mjsunit/
arguments-apply.js 49 function Local() {
54 assertEquals(0, Local().length);
55 assertEquals(1, Local(1).length);
56 assertEquals(2, Local(2)[0]);
57 assertEquals(2, Local(3, 4).length);
58 assertEquals(3, Local(3, 4)[0]);
59 assertEquals(4, Local(3, 4)[1]);
  /external/chromium_org/v8/src/extensions/i18n/
i18n-utils.cc 144 static v8::Local<v8::ObjectTemplate> ToLocal(i::Handle<i::Object> handle) {
150 static v8::Local<v8::ObjectTemplate> GetEternal(v8::Isolate* external) {
155 v8::Local<v8::ObjectTemplate> raw_template(v8::ObjectTemplate::New());
166 v8::Local<v8::ObjectTemplate> Utils::GetTemplate(v8::Isolate* isolate) {
172 v8::Local<v8::ObjectTemplate> Utils::GetTemplate2(v8::Isolate* isolate) {

Completed in 584 milliseconds

1 2 3 45 6 7 8 91011>>