HomeSort by relevance Sort by last modified time
    Searched refs:New (Results 226 - 250 of 443) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/cctest/
test-heap.cc 18 if (env.IsEmpty()) env = v8::Context::New();
484 "new",
824 char* str = new char[large_size];
869 // The plan: create JSObject which references objects in new space.
885 // Step 2: allocate a lot of objects so to almost fill new space: we need
901 // Step 3: now allocate fixed array and JSObject to fill the whole new space.
916 // Create a reference to object in new space in jsobject.
1022 ctx[i] = v8::Context::New();
    [all...]
test-profile-generator.cc 40 v8::Local<v8::String> token1(v8::String::New("1x"));
43 v8::Local<v8::String> token2(v8::String::New("2x"));
49 v8::Local<v8::String> token3(v8::String::New("3x"));
711 if (name->Equals(v8::String::New("startProfiling"))) {
712 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling);
713 } else if (name->Equals(v8::String::New("stopProfiling"))) {
714 return v8::FunctionTemplate::New(ProfilerExtension::StopProfiling);
727 v8::CpuProfiler::StartProfiling(v8::String::New(""));
737 v8::CpuProfiler::StopProfiling(v8::String::New(""));
765 env = v8::Context::New(&config)
    [all...]
test-func-name-inference.cc 55 env = v8::Context::New();
107 return v8::Script::Compile(v8::String::New(src));
308 "var foo = new Foo(function() { return 1; })\n"
309 "var bar = new Foo(function() { return 2; }, function() { return 3; })");
test-heap-profiler.cc 100 "var a2 = new A2();\n"
101 "var b2_1 = new B2(a2), b2_2 = new B2(a2);\n"
102 "var c2 = new C2(a2);");
139 "x = new X(new X(), new X());\n"
167 "boundFunction = myFunction.bind(new AAAAA(), 20, new Number(12)); \n");
174 CHECK_EQ(v8::String::New("native_bind"), f->GetName())
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
avl-crash.js 46 "50th St-New Utrecht Ave",
  /external/giflib/
gif_lib.h 188 GifFileType *DGifOpen(void *userPtr, InputFunc readFunc); /* new one
258 * Everything below this point is new after version 1.2, supporting `slurp
296 extern void MakeExtension(SavedImage * New, int Function);
297 extern int AddExtensionBlock(SavedImage * New, int Len,
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 160 void splitBlock(const BType *Old, const BType* New);
167 void transfer(const FType *Old, const FType *New);
228 MachineProfile = new ProfileInfoT<MachineFunction, MachineBasicBlock>();
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 315 // Fill in the new target.
467 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
468 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 58 Pass *llvm::createPruneEHPass() { return new PruneEH(); }
201 DeleteBasicBlock(UnwindBlock); // Delete the new BB.
213 // new BB.
214 BasicBlock *New = BB->splitBasicBlock(I);
218 new UnreachableInst(BB->getContext(), BB);
220 DeleteBasicBlock(New); // Delete the new BB.
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 336 Module *New = TestMergedProgram(BD, ToOptimizeLoopExtracted, ToNotOptimize,
338 if (!New)
340 // Delete the original and set the new program.
341 delete BD.swapProgramIn(New);
500 if (Module *New = BD.ExtractMappedBlocksFromModule(BBsOnClone, ToOptimize)) {
504 bool Ret = TestFn(BD, New, ToNotOptimize, Error);
587 // Set the new program and delete the old one.
704 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken);
705 if (New) {
707 // Delete the original and set the new program
    [all...]
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 67 New Procedures and Functions
85 New Tokens
190 New State
194 New Implementation Dependent State
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferViewCustom.h 92 // the user calls "new <Type>Array()" from JavaScript. We must
132 len = toUInt32(srcArray->Get(v8::String::New("length")));
191 uint32_t length = toUInt32(array->Get(v8::String::New("length")));
V8InjectedScriptManager.cpp 71 v8::Persistent<v8::Object> weakHandle = v8::Persistent<v8::Object>::New(instance);
106 v8::Number::New(id),
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 110 AllocaInst *New = Builder->CreateAlloca(NewTy, 0, AI.getName());
111 New->setAlignment(AI.getAlignment());
116 BasicBlock::iterator It = New;
127 GetElementPtrInst::CreateInBounds(New, Idx, New->getName()+".sub");
206 return new BitCastInst(NewLoad, LI.getType());
251 // Insert a new store to null instruction before the load to indicate
255 new StoreInst(UndefValue::get(LI.getType()),
265 // Insert a new store to null instruction before the load to indicate that
268 new StoreInst(UndefValue::get(LI.getType())
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 176 // Get the new insert position for the node we care about.
182 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
383 BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
507 Result = new (Mem) AttrVec;
542 = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation);
    [all...]
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 278 // If the old 'LHS' was an input, add the new 'LHS' as an input.
352 // If successful, return the new value.
372 // PredBB. If so, there is no need to insert a new instance of it.
389 CastInst *New = CastInst::Create(Cast->getOpcode(),
393 NewInsts.push_back(New);
394 return New;
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 33 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
  /external/chromium/base/memory/
singleton_unittest.cc 38 static Init5Singleton* New() {
39 Init5Singleton* instance = new Init5Singleton();
  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 82 static void UpdateAssumption(Assumption &A, const Assumption &New);
346 BugType *BT = new BugType("Idempotent operation", "Dead code");
416 BugReport *report = new BugReport(*BT, os.str(), *I);
437 // Updates the current assumption given the new assumption
439 const Assumption &New) {
441 if (A == New)
447 A = New;
450 // If we have determined that a valid state happened, ignore the new
  /external/llvm/include/llvm/
BasicBlock.h 99 /// Create - Creates a new BasicBlock. If the Parent parameter is specified,
104 return new BasicBlock(Context, Name, Parent, InsertBefore);
243 /// to the new BB, including the old terminator. The newly formed BasicBlock
261 /// to refer to basic block New instead of to us.
262 void replaceSuccessorsPhiUsesWith(BasicBlock *New);
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 97 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
114 // Otherwise, this is a new entry, create a new symbol for it and add an
202 void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) {
208 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
210 // If New is not address taken, just move our symbol over to it.
212 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
213 NewEntry = OldEntry; // Set New's entry.
219 // Otherwise, we need to add the old symbol to the new block's set. If it is
222 std::vector<MCSymbol*> *SymList = new std::vector<MCSymbol*>()
    [all...]
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 114 New Procedures and Functions (and datatypes)
124 New Tokens
166 Add a new section 5.7 "Callback Functions"
211 Add a new section 6.1.3 "Program Value Queries":
275 New State
294 New Implementation Dependent State
  /external/v8/src/
zone.cc 87 // Creates a new segment, sets it size, and pushes it to the front
88 // of the segment chain. Returns the new segment.
90 Segment* result = reinterpret_cast<Segment*>(Malloced::New(size));
141 // force a new segment to be allocated on demand.
173 // Compute the new segment size. We use a 'high water mark'
190 // Limit the size of new segments to avoid growing the segment size
202 // Recompute 'top' and 'limit' based on the new segment.
  /external/webkit/Source/WebCore/bindings/v8/
IDBBindingUtilities.cpp 104 : m_context(v8::Context::New())
JavaScriptCallFrame.cpp 104 v8::Handle<v8::Array> result = v8::Array::New(scopeChain->Length());

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>