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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/bindings/v8/
NPV8Object.cpp 83 OwnArrayPtr<v8::Handle<v8::Value> > argv = adoptArrayPtr(new v8::Handle<v8::Value>[argumentCount]);
96 return v8::String::New(static_cast<const char*>(identifier->value.string));
100 return v8::String::New(buffer);
130 v8npObject->v8Object = v8::Persistent<v8::Object>::New(object);
176 v8::Handle<v8::Value> functionObject = v8NpObject->v8Object->Get(v8::String::New(identifier->value.string));
487 v8::Handle<v8::String> source = v8::String::New(enumeratorCode);
501 v8::Local<v8::Value> name = props->Get(v8::Integer::New(i));
ScriptController.cpp 115 , m_proxy(new V8Proxy(frame))
284 v8::Persistent<v8::Context> v8Context = v8::Context::New();
289 v8::Local<v8::String> source = v8::String::New("if (gc) gc();");
290 v8::Local<v8::String> name = v8::String::New("gc");
452 // when a frame is loading a new page. V8Proxy::clearForNavigation
453 // creates a new context for the new page.
OptionsObject.cpp 118 v8::Local<v8::Value> indexedValue = v8Array->Get(v8::Integer::New(i));
V8Proxy.h 90 (attribute.onProto ? proto : instance)->SetAccessor(v8::String::New(attribute.name),
157 // Evaluate JavaScript in a new isolated world. The script gets its own
234 // a new context. It is potentially slow and consumes memory.
363 V8DOMWrapper::setJSWrapperForDOMObject(obj.get(), v8::Persistent<v8::Object>::New(args.Holder()));
382 V8DOMWrapper::setJSWrapperForDOMObject(obj.get(), v8::Persistent<v8::Object>::New(args.Holder()));
424 V8DOMWrapper::setJSWrapperForDOMObject(object.get(), v8::Persistent<v8::Object>::New(holder));
V8WorkerContextEventListener.cpp 112 return v8::Local<v8::Object>::New(v8::Handle<v8::Object>::Cast(value));
  /external/chromium/base/metrics/
stats_table.cc 55 // shared-memory table only, and is used when we create new counters (e.g.
56 // use rows) or when we register new threads (e.g. use columns). Reading
104 // Construct a new Private based on expected size parameters, or
106 static Private* New(const std::string& name, int size,
138 // Constructor is private because you should use New() instead.
166 StatsTable::Private* StatsTable::Private::New(const std::string& name,
173 scoped_ptr<Private> priv(new Private());
269 impl_ = Private::New(name, table_size, max_threads, max_counters);
328 TLSData* data = new TLSData;
541 // We have space, so create a new counter
    [all...]
  /external/clang/lib/Rewrite/
DeltaTree.cpp 233 // Okay, this split the subtree, producing a new value and two children to
236 // Now that we have two nodes and a new element, insert the perclated value
238 // the new one.
304 // Create the new child node.
308 // into the new node.
309 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode();
310 memcpy(&New->Children[0], &IN->Children[WidthFactor],
312 NewNode = New;
314 // Just create the new leaf node
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 176 unsigned *New = Allocator.Allocate<unsigned>(Bits.size());
177 std::uninitialized_copy(Bits.begin(), Bits.end(), New);
178 return FoldingSetNodeIDRef(New, Bits.size());
253 // Clear out new buckets.
257 // Walk the old buckets, rehashing nodes into their new place.
267 // Insert the node into the new bucket, after recomputing the hash.
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 87 return new XCoreDAGToDAGISel(TM);
232 /// Given a chain return a new chain where any appearance of Old is replaced
233 /// by New. There must be at most one instruction between Old and Chain and
237 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New)
240 return New;
247 Ops.push_back(New);
274 // indirect branch then build a new chain which uses the chain coming into
  /external/libvpx/examples/includes/geshi/contrib/
aliased.php 44 $geshi =& new GeSHi($contents, "PHP");
49 $geshi->set_line_style('font: normal normal 95% \'Courier New\', Courier, monospace; color: #003030;', 'font-weight: bold; color: #006060;', true);
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 318 // that an old indirect call site was deleted and replaced with a new direct
320 // to iteratively optimize the new code. Unfortunately, we don't really
369 // call graph by introducing new calls or deleting other ones. This flag
506 /// Old node has been deleted, and New is to be used in its place.
507 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) {
508 assert(Old != New && "Should not replace node with self");
512 Nodes[i] = New;
519 CGI->ReplaceNode(Old, New);
541 // Create new Call Graph SCC Pass Manager if it does not exist.
545 // [1] Create new Call Graph Pass Manage
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeEdit.h 13 // The parent register is never changed. Instead, a number of new virtual
48 /// This is used for new registers representing connected components of Old.
49 virtual void LRE_DidCloneVirtReg(unsigned New, unsigned Old) {}
92 /// @param newRegs List to receive any new registers created. This needn't be
109 /// Iterator for accessing the new registers added by this edit.
128 /// createFrom - Create a new virtual register based on OldReg.
131 /// create - Create a new register with the same class and original slot as
164 /// instruction into MBB before MI. The new instruction is mapped, but
166 /// Return the SlotIndex of the new instruction.
198 /// calculateRegClassAndHint - Recompute register class and hint for each new
    [all...]
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
  /external/mesa3d/docs/
MESA_drm_image.spec 43 New Procedures and Functions
54 New Tokens
141 so we use a new EGL extension entry point instead.
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 101 New Procedures and Functions
105 New Tokens
141 The new texture coordinates are not effected by texgen or the texture
180 New State
  /external/v8/src/
zone.cc 85 // Creates a new segment, sets it size, and pushes it to the front
86 // of the segment chain. Returns the new segment.
88 Segment* result = reinterpret_cast<Segment*>(Malloced::New(size));
140 // force a new segment to be allocated on demand.
164 // Compute the new segment size. We use a 'high water mark'
175 // Limit the size of new segments to avoid growing the segment size
187 // Recompute 'top' and 'limit' based on the new segment.
  /external/v8/test/cctest/
test-list.cc 38 static void* New(size_t size) {
test-profile-generator.cc 44 v8::Local<v8::String> token1(v8::String::New("1"));
47 v8::Local<v8::String> token2(v8::String::New("2"));
53 v8::Local<v8::String> token3(v8::String::New("3"));
714 if (name->Equals(v8::String::New("startProfiling"))) {
715 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling);
716 } else if (name->Equals(v8::String::New("stopProfiling"))) {
717 return v8::FunctionTemplate::New(ProfilerExtension::StopProfiling);
730 v8::CpuProfiler::StartProfiling(v8::String::New(""));
740 v8::CpuProfiler::StopProfiling(v8::String::New(""));
768 env = v8::Context::New(&config)
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestCallback.cpp 43 , m_callback(v8::Persistent<v8::Object>::New(callback))
V8TestMediaQueryListListener.cpp 97 v8::Persistent<v8::Object> wrapperHandle = v8::Persistent<v8::Object>::New(wrapper);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DirectoryEntrySyncCustom.cpp 52 v8::Local<v8::Value> value = object->Get(v8::String::New(name));
V8SVGLengthCustom.cpp 53 return v8::Number::New(value);
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 72 Buffer *b = Buffer::New(length);
232 // Run the new thread
279 v8::Handle<v8::String> name = v8::String::New("onCtrlServerCmd");
286 v8::Handle<v8::Value> v8CmdValue = v8::Number::New(mh->cmd());
287 v8::Handle<v8::Value> v8TokenValue = v8::Number::New(mh->token());
448 g_ctrl_server = new CtrlServerThread(context);
465 g_ctrl_server = new CtrlServerThread(context);
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 62 const Decl *Tmpl, Decl *New) {
77 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
85 AddAlignedAttr(Aligned->getLocation(), New, Result);
93 New->addAttr(NewAttr);
145 // Create the new typedef
157 // tag decl, re-establish that relationship for the new typedef.
510 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
719 // the new declaration in the appropriate context.
    [all...]
  /external/clang/include/clang/Sema/
Template.h 94 /// \brief Add a new outermost level to the multi-level template argument
101 /// \brief Add a new outmost level to the multi-level template argument
175 /// A new instance of this class type will be created whenever we
176 /// instantiate a new function declaration, which will have its own
410 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
411 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);

Completed in 934 milliseconds

1 2 3 4 5 6 7 891011>>