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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
d8-debug.h 1 // Copyright 2008 the V8 project authors. All rights reserved.
13 namespace v8 { namespace
17 } // namespace v8
d8-windows.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
12 namespace v8 { namespace
19 } // namespace v8
string-search.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
5 #include "src/v8.h"
8 namespace v8 { namespace
18 }} // namespace v8::internal
assert-scope.cc 1 // Copyright 2014 the V8 project authors. All rights reserved.
7 #include "src/v8.h"
9 namespace v8 { namespace
21 } } // namespace v8::internal
disassembler.h 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
10 namespace v8 { namespace
33 } } // namespace v8::internal
field-index.cc 1 // Copyright 2014 the V8 project authors. All rights reserved.
5 #include "src/v8.h"
11 namespace v8 { namespace
23 } } // namespace v8::internal
fixed-dtoa.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 namespace v8 { namespace
30 } } // namespace v8::internal
hydrogen-canonicalize.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
10 namespace v8 { namespace
26 } } // namespace v8::internal
hydrogen-dehoist.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
10 namespace v8 { namespace
26 } } // namespace v8::internal
  /external/chromium_org/chrome/renderer/
benchmarking_extension.h 8 namespace v8 { namespace
16 // name is to distinguish it from the built-in V8 Profiler.
19 static v8::Extension* Get();
external_extension.h 10 namespace v8 { namespace
18 static v8::Extension* Get();
loadtimes_extension_bindings.h 5 // The LoadTimesExtension is a v8 extension to access the time it took
11 namespace v8 { namespace
19 static v8::Extension* Get();
playback_extension.h 8 namespace v8 { namespace
27 static v8::Extension* Get();
principals_extension_bindings.h 5 // A v8 extension to expose Chrome account management functions.
10 namespace v8 { namespace
18 static v8::Extension* Get();
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.h 8 namespace v8 { namespace
14 // V8 extension for gpu benchmarking
17 static v8::Extension* Get();
  /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/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*);
WebCryptoNormalize.h 38 namespace v8 { namespace
57 BLINK_EXPORT WebCryptoAlgorithm normalizeCryptoAlgorithm(v8::Handle<v8::Object>, WebCryptoOperation, int* exceptionCode, WebString* errorDetails, v8::Isolate*);
WebKit.h 36 namespace v8 { namespace
51 // This is a special variant of initialize that does not intitialize V8.
54 // Get the V8 Isolate for the main thread.
56 BLINK_EXPORT v8::Isolate* mainThreadIsolate();
WebScriptBindings.h 36 namespace v8 { namespace
49 // Efficiently converts a WebString to a v8::String. The caller must have
51 BLINK_EXPORT static v8::Local<v8::String> toV8String(const WebString&, v8::Isolate*);
53 // You can use v8::Value::toString() to get a v8::String, but remember to wrap that in a v8::TryCatch.
54 BLINK_EXPORT static WebString toWebString(v8::Handle<v8::String>)
    [all...]
WebScriptController.h 36 namespace v8 { namespace
44 // Registers a v8 extension to be available on webpages. Will only affect
45 // v8 contexts initialized after this call. Takes ownership of the
46 // v8::Extension object passed.
47 BLINK_EXPORT static void registerExtension(v8::Extension*);
  /external/chromium_org/v8/src/arm/
cpu-arm.cc 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
15 #include "src/v8.h"
23 namespace v8 { namespace
83 } } // namespace v8::internal
  /external/chromium_org/v8/src/base/
once.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
15 namespace v8 { namespace
53 } } // namespace v8::base
  /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...]
gc-extension.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 namespace v8 { namespace
12 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunctionTemplate(
13 v8::Isolate* isolate,
14 v8::Handle<v8::String> str) {
15 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
19 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]

Completed in 269 milliseconds

1 2 3 4 5 6 7 8 91011>>