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

1 2 3 4 5 6 78 91011>>

  /external/v8/src/
preparse-data.cc 95 Vector<unsigned> data = Vector<unsigned>::New(total_size);
151 Vector<unsigned> data = Vector<unsigned>::New(total_size);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.cpp 95 v8::Local<v8::Value> value = array->Get(v8::Int32::New(i));
111 v8::Local<v8::Value> name = propertyNames->Get(v8::Int32::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
230 // a new context. It is potentially slow and consumes memory.
355 V8DOMWrapper::setJSWrapperForDOMObject(obj.get(), v8::Persistent<v8::Object>::New(args.Holder()));
374 V8DOMWrapper::setJSWrapperForDOMObject(obj.get(), v8::Persistent<v8::Object>::New(args.Holder()));
416 V8DOMWrapper::setJSWrapperForDOMObject(object.get(), v8::Persistent<v8::Object>::New(holder));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ConsoleCustom.cpp 56 v8::Handle<v8::Array> result = v8::Array::New(profiles.size());
60 result->Set(v8::Integer::New(index++), toV8(iter->get()));
V8DataViewCustom.cpp 70 return v8::Integer::New(result);
87 return v8::Integer::New(result);
V8InjectedScriptHostCustom.cpp 130 return v8::Number::New(host->databaseIdImpl(database));
144 return v8::Number::New(host->storageIdImpl(storage));
V8WorkerCustom.cpp 85 V8DOMWrapper::setJSWrapperForActiveDOMObject(obj.get(), v8::Persistent<v8::Object>::New(wrapperObject));
  /hardware/ril/mock-ril/src/cpp/
node_util.cpp 58 uint16_t * twobytebuf = new uint16_t[len];
63 v8::Local<v8::String> chunk = v8::String::New(twobytebuf, len);
69 v8::Local<v8::String> chunk = v8::String::New((const char*)buf, len);
131 uint16_t * twobytebuf = new uint16_t[buflen];
mock_ril.cpp 229 v8::Handle<v8::String> name = v8::String::New("onUnsolicitedTick");
235 v8::Handle<v8::Value> v8TickValue = v8::Number::New(tick);
276 v8::Handle<v8::String> name = v8::String::New("startMockRil");
356 UnsolicitedThread *ut = new UnsolicitedThread(context);
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 52 /// whose machine code is at OLD turns into a call to NEW, perhaps by
53 /// overwriting OLD with a branch to NEW. This is used for self-modifying
56 virtual void replaceMachineCodeForFunction(void *Old, void *New);
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 131 MachineInstr *New;
134 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
139 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
143 // Replace the pseudo instruction with a new instruction...
144 MBB.insert(I, New);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
textreplacewholetext01.js 79 new value containing white space characters. Verify the replaceWholeText by
106 replacedText = textNode.replaceWholeText("New Content");
109 assertEquals("textreplacewholetext01_1","New Content",wholeText);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestInterface.cpp 90 v8::Persistent<v8::Object> wrapperHandle = v8::Persistent<v8::Object>::New(wrapper);
V8TestSerializedScriptValueInterface.cpp 86 v8::Persistent<v8::Object> wrapperHandle = v8::Persistent<v8::Object>::New(wrapper);
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandle.h 49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
101 enum ConnectingSubstate { New, ExecutingPACFile, WaitingForCredentials, WaitingForConnect, Connected };
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 146 bool New = PhysRegSet.insert(Reg).second;
147 assert((!New || SUnits[Reg].empty()) && "stale SUnits vector");
148 (void)New;
255 /// newSUnit - Creates a new SUnit and return a ptr to it.
330 /// newSUnit - Creates a new SUnit and return a ptr to it.
  /external/llvm/lib/Support/
FoldingSet.cpp 160 unsigned *New = Allocator.Allocate<unsigned>(Bits.size());
161 std::uninitialized_copy(Bits.begin(), Bits.end(), New);
162 return FoldingSetNodeIDRef(New, Bits.size());
237 // Clear out new buckets.
241 // Walk the old buckets, rehashing nodes into their new place.
251 // Insert the node into the new bucket, after recomputing the hash.
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 96 return new ArgPromotion(maxElements);
182 // the new alloca we introduce.
489 /// arguments, and returns the new function. At this point, we know that it's
495 // Start by computing a new prototype for the function, which is the same as
513 // what the new GEP/Load instructions we are inserting look like.
526 // First, determine the new argument list
606 // Construct the new function type using the new arguments.
609 // Create the new function body and insert it into the module.
617 // Recompute the parameter attributes list based on the new arguments fo
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 123 // Okay, we need to create a new constant. We've already processed some or
192 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
193 if (New != Old)
194 I->setMetadata(MI->first, New);
  /external/v8/test/cctest/
test-utils.cc 68 Vector<char> buffer = Vector<char>::New(i + 1);
110 Vector<byte> buffer1 = Vector<byte>::New(N);
111 Vector<byte> buffer2 = Vector<byte>::New(N);
test-compiler.cc 63 return v8::FunctionTemplate::New(PrintExtension::Print);
95 env = v8::Context::New(&config);
237 "a = new Object;\n"
239 "if (a != new Object()) r+=2;\n" // 2
249 "if (new Cons0().x == 42) r+=64;\n" // 64
250 "if (new Cons0().y == 87) r+=128;\n" // 128
252 "if (new Cons2(3,4).sum == 7) r+=256;"; // 256
334 v8::ScriptOrigin origin = v8::ScriptOrigin(v8::String::New("test"));
346 v8::Handle<v8::String> script_body = v8::String::New(buffer.start());
349 env->Global()->Get(v8::String::New("f")))
    [all...]
  /external/elfutils/
elfutils.spec 65 elfutils package use it also to generate new ELF files.
199 - libdwfl: bug fixes; new segment interfaces; all the libdwfl-based
221 - libelf: new function elf_scnshndx.
234 new option --archive-index (or -c); improved -n output fo
236 - libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
237 new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
240 - libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debu
244 - unstrip: new option --list (or -n)
248 - readelf: new options --hex-dump (or -x), --strings (or -p)
249 - addr2line: new option --symbols (or -S
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 64 const Decl *Tmpl, Decl *New,
82 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
89 AddAlignedAttr(Aligned->getLocation(), New, Result);
101 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
105 New->addAttr(NewAttr);
158 // Create the new typedef
170 // tag decl, re-establish that relationship for the new typedef.
465 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
716 // the new declaration in the appropriate context.
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 57 RegInfo = new (Allocator) MachineRegisterInfo(*TM.getRegisterInfo());
61 FrameInfo = new (Allocator) MachineFrameInfo(*TM.getFrameLowering());
65 ConstantPool = new (Allocator) MachineConstantPool(TM.getTargetData());
102 JumpTableInfo = new (Allocator)
149 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
150 /// of `new MachineInstr'.
155 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
159 /// CloneMachineInstr - Create a new MachineInstr which is a copy of the
165 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
177 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use thi
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 191 Pass *llvm::createLICMPass() { return new LICM(); }
208 CurAST = new AliasSetTracker(*AA);
530 Instruction *New;
533 New = &I;
535 New = I.clone();
537 New->setName(I.getName()+".le");
538 ExitBlock->getInstList().insert(InsertPt, New);
543 SSA.AddAvailableValue(ExitBlock, New);
580 // Move the new node to the Preheader, before its terminator.
661 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos)
    [all...]

Completed in 395 milliseconds

1 2 3 4 5 6 78 91011>>