HomeSort by relevance Sort by last modified time
    Searched refs:New (Results 151 - 175 of 424) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
V8WorkerContextErrorHandler.cpp 56 v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
WorkerContextExecutionProxy.cpp 142 // Create a new environment
144 m_context = v8::Context::New(0, globalTemplate);
149 v8::Local<v8::Context> context = v8::Local<v8::Context>::New(m_context);
153 // Set DebugId for the new context.
154 context->SetData(v8::String::New("worker"));
156 // Create a new JS object and use it as the prototype for the shadow global object.
173 V8DOMWrapper::setJSWrapperForDOMObject(m_workerContext, v8::Persistent<v8::Object>::New(jsWorkerContext));
WorkerContextExecutionProxy.h 73 v8::Local<v8::Context> context() { return v8::Local<v8::Context>::New(m_context); }
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomXPathNSResolver.cpp 43 return adoptRef(new V8CustomXPathNSResolver(resolver));
58 v8::Handle<v8::String> lookupNamespaceURIName = v8::String::New("lookupNamespaceURI");
V8FileReaderCustom.cpp 60 V8DOMWrapper::setJSWrapperForActiveDOMObject(fileReader.get(), v8::Persistent<v8::Object>::New(args.Holder()));
V8HTMLDocumentCustom.cpp 56 shadowTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
59 shadowTemplate->SetClassName(v8::String::New("HTMLDocument"));
143 v8::Local<v8::Value> function = global->Get(v8::String::New("open"));
150 v8::Local<v8::Value>* params = new v8::Local<v8::Value>[args.Length()];
V8HTMLPlugInElementCustom.cpp 55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
70 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
140 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
156 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
V8JavaScriptCallFrameCustom.cpp 61 return v8::Int32::New(impl->scopeType(scopeIndex));
V8NodeListCustom.cpp 53 return v8::Integer::New(list->length());
V8SharedWorkerCustom.cpp 86 V8DOMWrapper::setJSWrapperForActiveDOMObject(obj.get(), v8::Persistent<v8::Object>::New(wrapperObject));
V8WebSocketCustom.cpp 91 V8DOMWrapper::setJSWrapperForActiveDOMObject(webSocket.get(), v8::Persistent<v8::Object>::New(args.Holder()));
V8WebGLRenderingContextCustom.cpp 71 // Allocates new storage via tryFastMalloc.
80 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i));
90 // Allocates new storage via tryFastMalloc.
99 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i));
115 return v8::Boolean::New(info.getBool());
118 v8::Local<v8::Array> array = v8::Array::New(value.size());
120 array->Set(v8::Integer::New(ii), v8::Boolean::New(value[ii]));
124 return v8::Number::New(info.getFloat());
126 return v8::Integer::New(info.getInt())
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
InspectorFrontendClientImpl.cpp 74 global->Set(v8::String::New("InspectorFrontendHost"), frontendHostObj);
WebBindings.cpp 241 v8::Handle<v8::Array> result = v8::Array::New(data.size());
243 result->Set(i, v8::Number::New(data[i]));
252 v8::Handle<v8::Array> result = v8::Array::New(data.size());
254 result->Set(i, data[i].data() ? v8::String::New(reinterpret_cast<const uint16_t*>((data[i].data())), data[i].length()) : v8::String::New(""));
  /hardware/ril/mock-ril/src/cpp/
requests.cpp 56 static Buffer *emptyBuffer = Buffer::New(0L);
79 ril_proto::ReqEnterSimPin *req = new ril_proto::ReqEnterSimPin();
82 buffer = Buffer::New(req->ByteSize());
107 ril_proto::ReqDial *req = new ril_proto::ReqDial();
138 buffer = Buffer::New(req->ByteSize());
164 ril_proto::ReqHangUp *req = new ril_proto::ReqHangUp();
167 buffer = Buffer::New(req->ByteSize());
191 ril_proto::ReqSeparateConnection *req = new ril_proto::ReqSeparateConnection();
195 buffer = Buffer::New(req->ByteSize());
219 ril_proto::ReqSetMute *req = new ril_proto::ReqSetMute()
    [all...]
  /external/v8/include/
v8.h 175 * Creates a new handle for the specified value.
292 inline static Local<T> New(Handle<T> that);
304 * the garbage collector whenever the object is moved. A new storage
305 * cell can be created using Persistent::New and existing handles can
366 * Creates a new persistent handle for an existing local or
369 inline static Persistent<T> New(Handle<T> that);
417 * handle scope and a new one is created, all allocations will take
418 * place in the new handle scope until it is deleted. After that,
419 * new handles will again be allocated in the original handle scope.
434 * previous scope, which is the new current scope after the call
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 39 if (env.IsEmpty()) env = v8::Context::New();
321 v8::Local<v8::String> name1 = v8::String::New("1");
332 v8::Local<v8::String> name2 = v8::String::New("2");
341 v8::Local<v8::String> name3 = v8::String::New("3");
367 v8::Local<v8::String> name1 = v8::String::New("1");
374 v8::Local<v8::String> token1 = v8::String::New("token1");
386 v8::Local<v8::String> name2 = v8::String::New("2");
388 v8::Local<v8::String> token2 = v8::String::New("token2");
396 v8::Local<v8::String> name3 = v8::String::New("3");
test-log.cc 135 v8::Script::Compile(v8::String::New(src))->Run();
170 env_(v8::Context::New()) {
264 // Force compiler to generate new code by parametrizing source.
319 // No new data beyond last retrieved position.
383 v8::Persistent<v8::Context> context = v8::Context::New();
452 sampler = new TestSampler(v8::internal::Isolate::Current());
509 v8::Handle<v8::Context> env = v8::Context::New();
515 v8::Handle<v8::String> origin = v8::String::New("issue-23768-test");
539 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
    [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 448 Instruction *New = clone_impl();
449 New->SubclassOptionalData = SubclassOptionalData;
451 return New;
454 // new one.
458 New->setMetadata(TheMDs[i].first, TheMDs[i].second);
460 New->setDebugLoc(getDebugLoc());
461 return New;
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 44 Matcher *New = 0;
47 New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(),
53 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
55 if (New) {
56 // Insert the new node.
57 New->setNext(MatcherPtr.take());
58 MatcherPtr.reset(New);
134 MatcherPtr.reset(new MorphNodeToMatcher(EN->getOpcodeName()
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 95 static DescriptorDatabaseTestCase* New() {
96 return new SimpleDescriptorDatabaseTestCase;
115 static DescriptorDatabaseTestCase* New() {
116 return new EncodedDescriptorDatabaseTestCase;
137 static DescriptorDatabaseTestCase* New() {
138 return new EncodedDescriptorDatabaseTestCase;
475 testing::Values(&SimpleDescriptorDatabaseTestCase::New));
477 testing::Values(&EncodedDescriptorDatabaseTestCase::New));
479 testing::Values(&DescriptorPoolDatabaseTestCase::New));
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
textreplacewholetext07.js 113 textNode = doc.createTextNode("New Text");
118 replacedText = textNode.replaceWholeText("New Text and Cdata");
124 assertEquals("nodeValueSame","New Text and Cdata",nodeValue);
  /external/llvm/include/llvm/ADT/
SCCIterator.h 188 /// has been deleted, and New is to be used in its place.
189 void ReplaceNode(NodeType *Old, NodeType *New) {
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 70 return new BlackfinDAGToDAGISel(TM, OptLevel);
133 SDNode *New = DAG.UpdateNodeOperands(N, ops.data(), ops.size());
134 DAG.ReplaceAllUsesWith(N, New);
  /external/v8/src/
global-handles.h 49 static ObjectGroup* New(Object*** handles,
71 void* operator new(size_t size);
83 static ImplicitRefGroup* New(HeapObject** parent,
104 void* operator new(size_t size);
117 // Creates a new global handle that is alive until Destroy is called.

Completed in 787 milliseconds

1 2 3 4 5 67 8 91011>>