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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
v8-counters.h 1 // Copyright 2007-2008 the V8 project authors. All rights reserved.
33 namespace v8 { namespace
38 HT(gc_compactor, V8.GCCompactor) \
39 HT(gc_scavenger, V8.GCScavenger) \
40 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \
42 HT(parse, V8.Parse) \
43 HT(parse_lazy, V8.ParseLazy) \
44 HT(pre_parse, V8.PreParse) \
46 HT(compile, V8.Compile) \
47 HT(compile_eval, V8.CompileEval)
    [all...]
v8.cc 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
28 #include "v8.h"
38 namespace v8 { namespace
41 bool V8::is_running_ = false;
42 bool V8::has_been_setup_ = false;
43 bool V8::has_been_disposed_ = false;
44 bool V8::has_fatal_error_ = false;
46 bool V8::Initialize(Deserializer *des) {
72 // Ensure that the thread has a valid stack guard. The v8::Locker object
91 v8::Locker locker
    [all...]
v8.h 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
29 // Top include for all V8 .cc files.
38 // If both are defined in Google3, then we are building an optimized v8 with
42 // If neither is defined in Google3, then we are building a debug v8. Mark it
48 // V8 only uses DEBUG, but included external files
55 #include "../include/v8.h"
72 namespace v8 { namespace
77 class V8 : public AllStatic {
105 // True if V8 has ever been run
115 } } // namespace v8::interna
    [all...]
snapshot-common.cc 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
30 #include "v8.h"
37 namespace v8 { namespace
43 return V8::Initialize(&deserializer);
82 } } // namespace v8::internal
allocation.cc 1 // Copyright 2008 the V8 project authors. All rights reserved.
30 #include "v8.h"
32 namespace v8 { namespace
39 if (result == NULL) V8::FatalProcessOutOfMemory("Malloced operator new");
50 V8::FatalProcessOutOfMemory("Out of memory");
198 } } // namespace v8::internal
api.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
28 #include "v8.h"
56 namespace v8 { namespace
78 i::V8::FatalProcessOutOfMemory(NULL); \
89 if (v8::Locker::IsActive()) { \
92 "Entering the V8 API without proper locking in place"); \
127 // When V8 cannot allocated memory FatalProcessOutOfMemory is called.
129 void i::V8::FatalProcessOutOfMemory(const char* location) {
172 i::V8::SetFatalError();
183 void V8::SetFatalErrorHandler(FatalErrorCallback that)
    [all...]
heap-inl.h 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
32 #include "v8-counters.h"
34 namespace v8 { namespace
115 v8::String::ExternalStringResourceBase** resource_addr =
116 reinterpret_cast<v8::String::ExternalStringResourceBase**>(
295 ASSERT(!FLAG_gc_greedy || v8::internal::Heap::GarbageCollectionGreedyCheck())
311 v8::internal::V8::FatalProcessOutOfMemory("CALL_AND_RETRY_0"); \
319 v8::internal::V8::FatalProcessOutOfMemory("CALL_AND_RETRY_1");
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptProfiler.cpp 39 v8::HandleScope scope;
40 v8::Context::Scope contextScope(v8::Context::GetCurrent());
41 v8::V8::ResumeProfiler();
46 v8::V8::PauseProfiler();
V8Index.cpp 475 v8::Persistent<v8::FunctionTemplate> V8ClassIndex::getTemplate(V8WrapperType type)
479 case V8ClassIndex::type: return V8##name::GetTemplate();
484 return v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
V8DOMWindowShell.cpp 64 #include <v8-debug.h>
65 #include <v8.h>
80 // FIXME: We temporarily deal with V8 internal error situations
87 // V8 is shutdown, we cannot use V8 api.
90 printf("V8 error: %s (%s)\n", message, location);
96 static Frame* getTargetFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> data
    [all...]
  /external/webkit/WebKit/chromium/src/
ProfilerAgentImpl.cpp 34 #include <v8.h>
40 m_delegate->didGetActiveProfilerModules(v8::V8::GetActiveProfilerModules());
46 const int readSize = v8::V8::GetLogLines(position, buffer, sizeof(buffer) - 1);
WebBindings.cpp 40 #if USE(V8)
132 #if USE(V8)
181 #if USE(V8)
207 #if USE(V8)
209 static v8::Local<v8::Value> getEvent(const v8::Handle<v8::Context>& context)
211 static v8::Persistent<v8::String> eventSymbol(v8::Persistent<v8::String>::New(v8::String::NewSymbol("event")))
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
V8Counters.cpp 26 #if USE(V8)
85 v8::V8::SetCounterFunction(counterForName);
86 v8::V8::SetCreateHistogramFunction(createHistogram);
87 v8::V8::SetAddHistogramSampleFunction(addHistogramSample);
115 #endif // USE(V8)
V8Counters.h 29 #if USE(V8)
34 #include <v8.h>
41 // Counter callbacks, see v8.h
76 #endif // USE(V8)
  /external/v8/test/cctest/
test-threads.cc 1 // Copyright 2008 the V8 project authors. All rights reserved.
28 #include "v8.h"
36 v8::Locker locker;
37 v8::V8::Initialize();
38 v8::HandleScope scope;
39 v8::Context::Scope context_scope(v8::Context::New());
41 v8::Locker::StartPreemption(100);
43 v8::Handle<v8::Script> script = v8::Script::Compile
    [all...]
test-thread-termination.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
28 #include "v8.h"
33 v8::internal::Semaphore* semaphore = NULL;
36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) {
38 return v8::Undefined();
42 v8::Handle<v8::Value> TerminateCurrentThread(const v8::Arguments& args)
    [all...]
test-regexp.cc 1 // Copyright 2008 the V8 project authors. All rights reserved.
31 #include "v8.h"
58 using namespace v8::internal;
62 V8::Initialize(NULL);
63 v8::HandleScope scope;
67 return v8::internal::ParseRegExp(&reader, false, &result);
72 V8::Initialize(NULL);
73 v8::HandleScope scope;
77 CHECK(v8::internal::ParseRegExp(&reader, false, &result));
85 V8::Initialize(NULL)
    [all...]
  /external/webkit/WebCore/
Android.derived.v8bindings.mk 66 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include css --include dom --include html --outputdir $(dir $@) $<
67 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/css/%.idl $(js_binding_scripts)
128 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
129 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/dom/%.idl $(js_binding_scripts)
222 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
223 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/%.idl $(js_binding_scripts)
260 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include html/canvas --outputdir $(dir $@) $<
261 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/canvas/%.idl $(js_binding_scripts)
274 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
275 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/loader/appcache/%.idl $(js_binding_scripts
    [all...]
  /external/webkit/WebCore/bridge/jni/
JNIBridge.h 37 #elif USE(V8)
  /external/webkit/WebCore/websockets/
WebSocket.h 53 #if USE(V8)
  /external/v8/samples/
shell.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
28 #include <v8.h>
35 void RunShell(v8::Handle<v8::Context> context);
36 bool ExecuteString(v8::Handle<v8::String> source,
37 v8::Handle<v8::Value> name,
40 v8::Handle<v8::Value> Print(const v8::Arguments& args)
    [all...]
lineprocessor.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
28 #include <v8.h>
29 #include <v8-debug.h>
37 * standalone V8-based application.
72 * When run with "-p" argument, the program starts V8 Debugger Agent and
80 * This way V8 will suspend on the first statement and wait for
83 * 2. Unresponsive V8
84 * V8 Debugger Agent holds a connection with remote debugger, but it does
85 * respond only when V8 is running some script. In particular, when this program
86 * is waiting for input, all requests from debugger get deferred until V8
    [all...]
  /external/v8/test/mjsunit/regress/
regress-r3391.js 1 // Copyright 2009 the V8 project authors. All rights reserved.
30 // vague on this point. This test is now passed by both V8 and JSC.
  /external/v8/test/mozilla/
mozilla-shell-emulation.js 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
29 // necessary to run the tests in V8.
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 31 #include <v8.h>
54 using namespace v8;
59 v8::String::New("Bad argument."))); \
65 v8::String::New("Bad argument."))); \
69 v8::String::New("Must have start <= end"))); \
73 v8::String::New("end cannot be longer than parent.length"))); \
105 V8::AdjustAmountOfExternalAllocatedMemory(sizeof(Blob) + length);
123 V8::AdjustAmountOfExternalAllocatedMemory(-(sizeof(Blob) + blob->length));
131 // When someone calls buffer.asciiSlice, data is not copied. Instead V8
191 Handle<Value> index = v8::Number::New(i)
    [all...]

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>