HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 126 - 150 of 1394) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementBinding.h 44 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype, WrapperTypeInfo*);
48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
52 CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype, WrapperTypeInfo*);
V8DOMConfiguration.h 58 static void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::ObjectTemplate>, const BatchedAttribute*, size_t attributeCount, v8::Isolate*, WrapperWorldType currentWorldType);
61 static inline void configureAttribute(v8::Handle<ObjectOrTemplate> instance, v8::Handle<ObjectOrTemplate> prototype, const BatchedAttribute& attribute, v8::Isolate*)
72 static inline void configureAttribute(v8::Handle<ObjectOrTemplate> instance, v8::Handle<ObjectOrTemplate> prototype, const BatchedAttribute& attribute, v8::Isolate*, WrapperWorldType currentWorldType)
98 static void batchConfigureConstants(v8::Handle<v8::FunctionTemplate>, v8::Handle<v8::ObjectTemplate>, const BatchedConstant*, size_t constantCount, v8::Isolate*);
108 static void batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::Signature>, v8::PropertyAttribute, const BatchedMethod*, size_t callbackCount, v8::Isolate*, W (…)
    [all...]
ScriptDebugServer.h 95 v8::Local<v8::Value> functionScopes(v8::Handle<v8::Function>);
96 v8::Local<v8::Value> getInternalProperties(v8::Handle<v8::Object>&);
97 v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
110 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) = 0;
111 virtual void runMessageLoopOnPause(v8::Handle<v8::Context>) = 0;
115 void handleProgramBreak(v8::Handle<v8::Object> executionState, v8::Handle<v8::Value> exception, v8::Handle<v8::Array> hitBreakpoints)
    [all...]
ScriptString.h 43 explicit ScriptString(v8::Handle<v8::String> value) : ScriptValue(value) { }
V8DOMActivityLogger.h 43 virtual void log(const String& apiName, int argc, const v8::Handle<v8::Value>* argv, const String& extraInfo) { }
V8MutationCallback.h 43 static PassRefPtr<V8MutationCallback> create(v8::Handle<v8::Function> callback, ScriptExecutionContext* context, v8::Handle<v8::Object> owner, v8::Isolate* isolate)
53 V8MutationCallback(v8::Handle<v8::Function>, ScriptExecutionContext*, v8::Handle<v8::Object>, v8::Isolate*);
V8ScriptRunner.cpp 39 PassOwnPtr<v8::ScriptData> V8ScriptRunner::precompileScript(v8::Handle<v8::String> code, ScriptResource* resource)
66 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData, v8::Isolate* isolate, AccessControlStatus corsStatus)
70 v8::Handle<v8::String> name = v8String(fileName, isolate);
71 v8::Handle<v8::Integer> line = v8::Integer::New(scriptStartPosition.m_line.zeroBasedInt(), isolate);
72 v8::Handle<v8::Integer> column = v8::Integer::New(scriptStartPosition.m_column.zeroBasedInt(), isolate);
73 v8::Handle<v8::Boolean> isSharedCrossOrigin = corsStatus == SharableCrossOrigin ? v8::True() : v8::False();
78 v8::Local<v8::Value> V8ScriptRunner::runCompiledScript(v8::Handle<v8::Script> script, ScriptExecutionContext* context)
108 v8::Local<v8::Value> V8ScriptRunner::compileAndRunInternalScript(v8::Handle<v8::String> source, v8::Isolate* isolate, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData)
112 v8::Handle<v8::Script> script = V8ScriptRunner::compileScript(source, fileName, scriptStartPosition, scriptData, isolate);
122 v8::Local<v8::Value> V8ScriptRunner::callFunction(v8::Handle<v8::Function> function, ScriptExecutionContext* context, v8::Handle<v8::Object> receiver, int argc (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeIteratorCustom.cpp 41 v8::Handle<v8::Object> wrap(NodeIterator* nodeIterator, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
46 v8::Handle<v8::Object> wrapper = V8NodeIterator::createWrapper(nodeIterator, creationContext, isolate);
V8SVGDocumentCustom.cpp 41 v8::Handle<v8::Object> wrap(SVGDocument* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
44 v8::Handle<v8::Object> wrapper = V8SVGDocument::createWrapper(impl, creationContext, isolate);
V8TreeWalkerCustom.cpp 41 v8::Handle<v8::Object> wrap(TreeWalker* treeWalker, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
46 v8::Handle<v8::Object> wrapper = V8TreeWalker::createWrapper(treeWalker, creationContext, isolate);
  /external/llvm/lib/Support/Windows/
Windows.h 49 handle_type Handle;
55 : Handle(HandleTraits::GetInvalid()) {}
58 : Handle(h) {}
61 if (HandleTraits::IsValid(Handle))
62 HandleTraits::Close(Handle);
66 handle_type t = Handle;
67 Handle = HandleTraits::GetInvalid();
72 if (HandleTraits::IsValid(Handle))
73 HandleTraits::Close(Handle);
74 Handle = h
    [all...]
  /external/v8/src/extensions/
gc-extension.cc 36 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction(
37 v8::Handle<v8::String> str) {
42 v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) {
  /external/v8/include/
v8.h 101 template <class T> class Handle;
163 * It is safe to extract the object stored in the handle by
164 * dereferencing the handle (for instance, to extract the Object* from
165 * a Handle<Object>); the value will still be governed by a handle
169 template <class T> class Handle {
172 * Creates an empty handle.
174 inline Handle() : val_(0) {}
177 * Creates a new handle for the specified value.
179 inline explicit Handle(T* val) : val_(val) {
    [all...]
v8-profiler.h 74 Handle<String> GetFunctionName() const;
77 Handle<String> GetScriptResourceName() const;
127 Handle<String> GetTitle() const;
170 Handle<Value> security_token = Handle<Value>());
175 Handle<Value> security_token = Handle<Value>());
185 static void StartProfiling(Handle<String> title);
192 Handle<String> title,
193 Handle<Value> security_token = Handle<Value>())
    [all...]
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 39 using ::v8::internal::Handle;
51 static void CheckFunctionName(v8::Handle<v8::Script> script,
58 Handle<Object> obj = v8::Utils::OpenHandle(*script);
59 Handle<SharedFunctionInfo> shared_function;
62 Handle<SharedFunctionInfo>(SharedFunctionInfo::cast(*obj));
65 Handle<SharedFunctionInfo>(JSFunction::cast(*obj)->shared());
67 Handle<Script> i_script(Script::cast(shared_function->script()));
69 Handle<String> script_src(String::cast(i_script->source()));
72 Handle<String> func_pos_str =
86 Handle<SharedFunctionInfo> shared_func_info
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
module_system.h 45 virtual v8::Handle<v8::Value> GetSource(const std::string& name) = 0;
76 v8::Handle<v8::Value> Require(const std::string& module_name);
86 std::vector<v8::Handle<v8::Value> >* args);
91 v8::Handle<v8::Value> argv[]);
113 void SetLazyField(v8::Handle<v8::Object> object,
118 void SetLazyField(v8::Handle<v8::Object> object,
127 void SetNativeLazyField(v8::Handle<v8::Object> object,
161 v8::Handle<v8::Value> RunString(v8::Handle<v8::String> code,
162 v8::Handle<v8::String> name)
    [all...]
native_handler.h 24 virtual v8::Handle<v8::Object> NewInstance() = 0;
  /external/chromium_org/v8/src/
json-parser.h 46 static Handle<Object> Parse(Handle<String> source) {
53 explicit JsonParser(Handle<String> source)
67 seq_source_ = Handle<SeqOneByteString>::cast(source_);
72 Handle<Object> ParseJson();
120 Handle<String> ParseJsonString() {
124 bool ParseJsonString(Handle<String> expected) {
150 Handle<String> ParseJsonInternalizedString() {
155 Handle<String> ScanJsonString();
160 Handle<String> SlowScanJsonString(Handle<String> prefix, int start, int end)
    [all...]
execution.cc 70 static Handle<Object> Invoke(bool is_construct,
71 Handle<JSFunction> function,
72 Handle<Object> receiver,
74 Handle<Object> args[],
90 Handle<Code> code = is_construct
98 Handle<GlobalObject> global = Handle<GlobalObject>::cast(receiver);
99 receiver = Handle<JSObject>(global->global_receiver());
108 // allocation of handles without explicit handle scopes.
142 return Handle<Object>()
    [all...]
bootstrapper.cc 80 Handle<String> Bootstrapper::NativesSourceLookup(int index) {
90 Handle<String> source_code =
94 Handle<Object> cached_source(heap->natives_source_cache()->get(index),
96 return Handle<String>::cast(cached_source);
157 Handle<Object> global_object,
158 v8::Handle<v8::ObjectTemplate> global_template,
166 Handle<Context> result() { return result_; }
169 Handle<Context> native_context() { return native_context_; }
174 Handle<JSFunction> CreateEmptyFunction(Isolate* isolate);
176 Handle<JSFunction> GetThrowTypeErrorFunction()
    [all...]
liveedit.cc 52 void SetElementNonStrict(Handle<JSObject> object,
54 Handle<Object> value) {
58 Handle<Object> no_failure =
274 static bool CompareSubstrings(Handle<String> s1, int pos1,
275 Handle<String> s2, int pos2, int len) {
356 Handle<JSArray> GetResult() {
364 Handle<Object>(Smi::FromInt(char_pos1), isolate));
367 Handle<Object>(Smi::FromInt(char_pos1 + char_len1),
371 Handle<Object>(Smi::FromInt(char_pos2 + char_len2),
377 Handle<JSArray> array_
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterface.h 34 static bool HasInstance(v8::Handle<v8::Value>, v8::Isolate*, WrapperWorldType);
35 static bool HasInstanceInAnyWorld(v8::Handle<v8::Value>, v8::Isolate*);
36 static v8::Handle<v8::FunctionTemplate> GetTemplate(v8::Isolate*, WrapperWorldType);
37 static TestInterface* toNative(v8::Handle<v8::Object> object)
43 static ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object>);
62 static void installPerContextProperties(v8::Handle<v8::Object>, TestInterface*, v8::Isolate*);
63 static void installPerContextPrototypeProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
65 friend v8::Handle<v8::Object> wrap(TestInterface*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
66 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterface>, v8::Handle<v8::Object> creationContext, v8::I (…)
    [all...]
V8TestObject.h 34 static bool HasInstance(v8::Handle<v8::Value>, v8::Isolate*, WrapperWorldType);
35 static bool HasInstanceInAnyWorld(v8::Handle<v8::Value>, v8::Isolate*);
36 static v8::Handle<v8::FunctionTemplate> GetTemplate(v8::Isolate*, WrapperWorldType);
37 static TestObj* toNative(v8::Handle<v8::Object> object)
43 static EventTarget* toEventTarget(v8::Handle<v8::Object>);
61 static void installPerContextProperties(v8::Handle<v8::Object>, TestObj*, v8::Isolate*);
62 static void installPerContextPrototypeProperties(v8::Handle<v8::Object>, v8::Isolate*);
64 friend v8::Handle<v8::Object> wrap(TestObj*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
65 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestObj>, v8::Handle<v8::Object> creationContext, v8::Isolate (…)
    [all...]
V8TestCustomAccessors.h 33 static bool HasInstance(v8::Handle<v8::Value>, v8::Isolate*, WrapperWorldType);
34 static bool HasInstanceInAnyWorld(v8::Handle<v8::Value>, v8::Isolate*);
35 static v8::Handle<v8::FunctionTemplate> GetTemplate(v8::Isolate*, WrapperWorldType);
36 static TestCustomAccessors* toNative(v8::Handle<v8::Object> object)
60 static void installPerContextProperties(v8::Handle<v8::Object>, TestCustomAccessors*, v8::Isolate*) { }
61 static void installPerContextPrototypeProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
63 friend v8::Handle<v8::Object> wrap(TestCustomAccessors*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
64 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestCustomAccessors>, v8::Handle<v8::Object> creationContext, v8::Isolate*)
    [all...]
  /external/chromium_org/base/threading/
thread_id_name_manager.h 26 // Register the mapping between a thread |id| and |handle|.
27 void RegisterThread(PlatformThreadHandle::Handle handle, PlatformThreadId id);
36 void RemoveName(PlatformThreadHandle::Handle handle, PlatformThreadId id);
41 typedef std::map<PlatformThreadId, PlatformThreadHandle::Handle>
43 typedef std::map<PlatformThreadHandle::Handle, std::string*>

Completed in 636 milliseconds

1 2 3 4 56 7 8 91011>>