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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
nested-struct.cpp 15 struct Local {
22 i = Local::my_number();
  /external/v8/src/inspector/
v8-internal-value-type.h 14 bool markAsInternal(v8::Local<v8::Context>, v8::Local<v8::Object>,
16 bool markArrayEntriesAsInternal(v8::Local<v8::Context>, v8::Local<v8::Array>,
18 v8::Local<v8::Value> v8InternalValueTypeFrom(v8::Local<v8::Context>,
19 v8::Local<v8::Object>);
v8-value-copier.h 15 v8::Isolate*, v8::Local<v8::Context> debuggerContext,
16 v8::Local<v8::Context> toContext, v8::Local<v8::Value>);
17 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>,
18 v8::Local<v8::Object>,
19 v8::Local<v8::Name> key,
20 v8::Local<v8::Value>);
21 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>, v8::Local<v8::Array>,
22 int index, v8::Local<v8::Value>)
    [all...]
v8-function-call.h 44 V8FunctionCall(V8InspectorImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>,
47 void appendArgument(v8::Local<v8::Value>);
52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);
53 v8::Local<v8::Value> callWithoutExceptionHandling();
57 v8::Local<v8::Context> m_context;
58 std::vector<v8::Local<v8::Value>> m_arguments;
59 v8::Local<v8::String> m_name;
60 v8::Local<v8::Value> m_value;
java-script-call-frame.cc 38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
39 v8::Local<v8::Object> callFrame)
50 v8::Local<v8::Context> context =
51 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext);
52 v8::Local<v8::Object> callFrame =
53 v8::Local<v8::Object>::New(m_isolate, m_callFrame);
54 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(
57 v8::Local<v8::Value> result;
82 v8::Local<v8::Context> context
    [all...]
v8-internal-value-type.cc 14 v8::Local<v8::Private> internalSubtypePrivate(v8::Isolate* isolate) {
20 v8::Local<v8::String> subtypeForInternalType(v8::Isolate* isolate,
33 return v8::Local<v8::String>();
38 bool markAsInternal(v8::Local<v8::Context> context,
39 v8::Local<v8::Object> object, V8InternalValueType type) {
41 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate);
42 v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type);
46 bool markArrayEntriesAsInternal(v8::Local<v8::Context> context,
47 v8::Local<v8::Array> array,
50 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate)
    [all...]
v8-function-call.cc 42 v8::Local<v8::Context> context,
43 v8::Local<v8::Value> value, const String16& name)
49 void V8FunctionCall::appendArgument(v8::Local<v8::Value> value) {
66 v8::Local<v8::Value> V8FunctionCall::call(bool& hadException,
71 v8::Local<v8::Value> result = callWithoutExceptionHandling();
76 v8::Local<v8::Value> V8FunctionCall::callWithoutExceptionHandling() {
77 v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value);
78 v8::Local<v8::Value> value;
80 return v8::Local<v8::Value>()
    [all...]
java-script-call-frame.h 46 v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame) {
57 v8::Local<v8::Object> details() const;
59 v8::MaybeLocal<v8::Value> evaluate(v8::Local<v8::Value> expression);
62 v8::Local<v8::Value> variableName,
63 v8::Local<v8::Value> newValue);
66 JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
67 v8::Local<v8::Object> callFrame);
v8-debugger.h 33 static int contextId(v8::Local<v8::Context>);
34 static int getGroupId(v8::Local<v8::Context>);
57 const String16& sourceID, v8::Local<v8::String> newSource, bool dryRun,
73 v8::Local<v8::Context> pausedContext() { return m_pausedContext; }
78 std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>);
81 v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>,
82 v8::Local<v8::Value>);
101 v8::Local<v8::Value> argv[]);
102 v8::Local<v8::Context> debuggerContext() const;
106 void handleProgramBreak(v8::Local<v8::Context> pausedContext
    [all...]
v8-inspector-impl.h 62 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
63 v8::Local<v8::Script>);
64 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>,
65 v8::Local<v8::Context>,
66 v8::Local<v8::Value> receiver,
67 int argc, v8::Local<v8::Value> info[]);
68 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>,
69 v8::Local<v8::String>);
70 v8::Local<v8::Script> compileScript(v8::Local<v8::Context>
    [all...]
  /external/v8/include/
v8-debug.h 61 virtual Local<Object> GetExecutionState() const = 0;
62 virtual Local<Object> GetEventData() const = 0;
67 virtual Local<String> GetJSON() const = 0;
74 virtual Local<Context> GetEventContext() const = 0;
105 virtual Local<Object> GetExecutionState() const = 0;
106 virtual Local<Object> GetEventData() const = 0;
113 virtual Local<Context> GetEventContext() const = 0;
119 virtual Local<Value> GetCallbackData() const = 0;
159 Local<Value> data = Local<Value>())
    [all...]
v8.h 111 template <class T> class Local;
202 * There are two types of handles: local and persistent handles.
203 * Local handles are light-weight and transient and typically used in
204 * local operations. They are managed by HandleScopes. Persistent
211 * a Local<Object>); the value will still be governed by a handle
216 class Local {
218 V8_INLINE Local() : val_(0) {}
220 V8_INLINE Local(Local<S> that)
224 * handles. For example, converting from a Local<String> to
    [all...]
  /external/v8/src/debug/
debug-interface.h 30 virtual Local<Object> GetExecutionState() const = 0;
31 virtual Local<Object> GetEventData() const = 0;
38 virtual Local<Context> GetEventContext() const = 0;
44 virtual Local<Value> GetCallbackData() const = 0;
60 Local<Value> data = Local<Value>());
69 static Local<Context> GetDebugContext(Isolate* isolate);
90 static MaybeLocal<Value> Call(Local<Context> context,
91 v8::Local<v8::Function> fun,
92 Local<Value> data = Local<Value>())
    [all...]
  /external/pdfium/fxjs/
fxjs_v8.h 59 const v8::Local<v8::Object>& value) {
88 void set(void* key, v8::Local<v8::Object> handle);
136 v8::Local<v8::Object> obj);
137 using Destructor = void (*)(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj);
140 static int GetObjDefnID(v8::Local<v8::Object> pObj);
164 v8::Local<v8::Value> pDefault);
177 v8::Local<v8::Context> NewLocalContext();
178 v8::Local<v8::Context> GetPersistentContext();
179 v8::Local<v8::Object> GetThisObj();
181 v8::Local<v8::Value> NewNull()
    [all...]
cfxjse_context.cpp 51 m_cscope(v8::Local<v8::Context>::New(pContext->m_pIsolate,
54 v8::Local<v8::Context> GetLocalContext() {
55 return v8::Local<v8::Context>::New(m_context->m_pIsolate,
71 v8::Local<v8::Object> FXJSE_GetGlobalObjectFromContext(
72 const v8::Local<v8::Context>& hContext) {
76 void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject,
85 const v8::Local<v8::Object>& hJSObject,
91 v8::Local<v8::Object> hObject = hJSObject;
93 v8::Local<v8::Value> hProtoObject = hObject->GetPrototype();
102 v8::Local<v8::FunctionTemplate> hClass
    [all...]
  /external/v8/src/extensions/
free-buffer-extension.h 17 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate, v8::Local<v8::String> name);
ignition-statistics-extension.h 18 v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
19 v8::Isolate* isolate, v8::Local<v8::String> name) override;
statistics-extension.h 16 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate, v8::Local<v8::String> name);
  /external/v8/samples/
process.cc 85 JsHttpRequestProcessor(Isolate* isolate, Local<String> script)
96 bool ExecuteScript(Local<String> script);
104 static Local<ObjectTemplate> MakeRequestTemplate(Isolate* isolate);
105 static Local<ObjectTemplate> MakeMapTemplate(Isolate* isolate);
108 static void GetPath(Local<String> name,
110 static void GetReferrer(Local<String> name,
112 static void GetHost(Local<String> name,
114 static void GetUserAgent(Local<String> name,
118 static void MapGet(Local<Name> name, const PropertyCallbackInfo<Value>& info);
119 static void MapSet(Local<Name> name, Local<Value> value
    [all...]
  /external/pdfium/fpdfsdk/javascript/
Consts.h 14 explicit CJS_Border(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
22 explicit CJS_Display(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
30 explicit CJS_Font(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
38 explicit CJS_Highlight(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
46 explicit CJS_Position(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
54 explicit CJS_ScaleHow(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
62 explicit CJS_ScaleWhen(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
70 explicit CJS_Style(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
78 explicit CJS_Zoomtype(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
  /external/v8/tools/clang/blink_gc_plugin/tests/
templated_class_with_local_class_requires_trace.h 32 class Local final : public GarbageCollected<Local> {
44 Member<Local> m_local;
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 18 void local() { function
21 struct Local {
22 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Local.java 24 public final class Local<T> {
30 private Local(Code code, TypeId<T> type) {
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type);
40 * Assigns registers to this local.
51 * Returns the number of registered required to hold this local.
  /external/libmojo/mojo/edk/js/
core.h 17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
support.h 17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);

Completed in 2403 milliseconds

1 2 3 4 5 6 7 8 91011>>