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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
string-search.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
5 #include "src/v8.h"
9 namespace v8 { namespace
19 }} // namespace v8::internal
  /external/llvm/test/MC/AArch64/
arm64-verbose-vector-case.s 3 pmull v8.8h, v8.8b, v8.8b
4 pmull2 v8.8h, v8.16b, v8.16b
5 pmull v8.1q, v8.1d, v8.1d
6 pmull2 v8.1q, v8.2d, v8.2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8NPObject.h 34 #include <v8.h>
42 void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
43 void npObjectIndexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>&);
44 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&)
    [all...]
V8ScriptRunner.h 29 #include "bindings/core/v8/V8CacheOptions.h"
34 #include <v8.h>
47 static v8::Local<v8::Script> compileScript(const ScriptSourceCode&, v8::Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOptionsOff);
48 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String& fileName, const TextPosition&, ScriptResource*, ScriptStreamer*, v8::Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOptionsOff)
    [all...]
V8GCController.h 34 #include <v8.h>
42 static void gcPrologue(v8::GCType, v8::GCCallbackFlags);
43 static void gcEpilogue(v8::GCType, v8::GCCallbackFlags);
44 static void minorGCPrologue(v8::Isolate*);
45 static void minorGCEpilogue(v8::Isolate*);
46 static void majorGCPrologue(bool constructRetainedObjectInfos, v8::Isolate*);
47 static void majorGCEpilogue(v8::Isolate*);
49 static void collectGarbage(v8::Isolate*)
    [all...]
CustomElementBinding.h 34 #include "bindings/core/v8/ScopedPersistent.h"
36 #include <v8.h>
42 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
46 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
49 CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype)
    [all...]
V8ThrowException.h 29 #include <v8.h>
36 static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
40 static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*)
    [all...]
  /external/chromium_org/v8/src/extensions/
free-buffer-extension.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 { namespace
13 class FreeBufferExtension : public v8::Extension {
16 : v8::Extension("v8/free-buffer", "native function freeBuffer();") {}
17 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate,
19 v8::Handle<v8::String> name)
    [all...]
statistics-extension.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 { namespace
13 class StatisticsExtension : public v8::Extension {
15 StatisticsExtension() : v8::Extension("v8/statistics", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8::String> name)
    [all...]
externalize-string-extension.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 { namespace
13 class ExternalizeStringExtension : public v8::Extension {
15 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8::String> name)
    [all...]
gc-extension.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
9 namespace v8 { namespace
13 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunctionTemplate(
14 v8::Isolate* isolate,
15 v8::Handle<v8::String> str) {
16 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
20 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
trigger-failure-extension.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 { namespace
13 class TriggerFailureExtension : public v8::Extension {
15 TriggerFailureExtension() : v8::Extension("v8/trigger-failure", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8::String> name)
    [all...]
free-buffer-extension.cc 1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 { namespace
14 v8::Handle<v8::FunctionTemplate> FreeBufferExtension::GetNativeFunctionTemplate(
15 v8::Isolate* isolate,
16 v8::Handle<v8::String> str) {
17 return v8::FunctionTemplate::New(isolate, FreeBufferExtension::FreeBuffer);
22 const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
trigger-failure-extension.cc 1 // Copyright 2013 the V8 project authors. All rights reserved.
6 #include "src/v8.h"
8 namespace v8 { namespace
18 v8::Handle<v8::FunctionTemplate>
20 v8::Isolate* isolate,
21 v8::Handle<v8::String> str) {
22 if (strcmp(*v8::String::Utf8Value(str), "triggerCheckFalse") == 0) {
23 return v8::FunctionTemplate::New
    [all...]
  /external/chromium_org/v8/test/cctest/
print-extension.h 1 // Copyright 2014 the V8 project authors. All rights reserved.
31 #include "src/v8.h"
33 namespace v8 { namespace
36 class PrintExtension : public v8::Extension {
38 PrintExtension() : v8::Extension("v8/print", "native function print();") { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8::String> name)
    [all...]
profiler-extension.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
33 #include "include/v8-profiler.h"
35 namespace v8 { namespace
38 class ProfilerExtension : public v8::Extension {
40 ProfilerExtension() : v8::Extension("v8/profiler", kSource) { }
41 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
42 v8::Isolate* isolate,
43 v8::Handle<v8::String> name)
    [all...]
trace-extension.h 1 // Copyright 2014 the V8 project authors. All rights reserved.
31 #include "src/v8.h"
33 namespace v8 { namespace
36 class TraceExtension : public v8::Extension {
38 TraceExtension() : v8::Extension("v8/trace", kSource) { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8::String> name)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTestHelper.h 9 #include <v8.h>
13 v8::Handle<v8::Value> stringToV8Value(String);
15 v8::Handle<v8::Value> doubleToV8Value(double);
17 void setV8ObjectPropertyAsString(v8::Handle<v8::Object>, String, String);
19 void setV8ObjectPropertyAsNumber(v8::Handle<v8::Object>, String, double);
  /external/chromium_org/third_party/WebKit/public/web/
WebArrayBufferConverter.h 36 namespace v8 { namespace
47 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(WebArrayBuffer*, v8::Handle<v8::Object>, v8::Isolate*);
48 BLINK_EXPORT static WebArrayBuffer* createFromV8Value(v8::Handle<v8::Value>, v8::Isolate*);
  /external/chromium_org/extensions/renderer/
safe_builtins.h 8 #include "v8/include/v8.h"
17 // Creates the v8::Extension which manages SafeBuiltins instances.
18 static v8::Extension* CreateV8Extension();
31 v8::Local<v8::Object> GetArray() const;
32 v8::Local<v8::Object> GetFunction() const;
33 v8::Local<v8::Object> GetJSON() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.h 30 // #include <v8.h>
31 // ...but this file is used in cases where we don't have V8 (e.g., Skia)
32 namespace v8 { namespace
44 void injectInternalsObject(v8::Local<v8::Context>);
45 void resetInternalsObject(v8::Local<v8::Context>);
  /external/chromium_org/chrome/renderer/
playback_extension.cc 7 #include "v8/include/v8.h"
9 const char kPlaybackExtensionName[] = "v8/PlaybackMode";
13 v8::Extension* PlaybackExtension::Get() {
14 v8::Extension* extension = new v8::Extension(
  /external/chromium_org/gin/modules/
console.h 9 #include "v8/include/v8.h"
18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/gin/test/
file.h 8 #include "v8/include/v8.h"
15 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
gc.h 8 #include "v8/include/v8.h"
16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);

Completed in 345 milliseconds

1 2 3 4 5 6 7 8 91011>>