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

1 2 3 4 5 6 78 91011>>

  /external/v8/src/
preparse-data.cc 97 Vector<unsigned> data = Vector<unsigned>::New(total_size);
153 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));
  /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 145 MachineInstr *New;
148 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
153 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
157 // Replace the pseudo instruction with a new instruction...
158 MBB.insert(I, New);
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 140 FunctionPass *llvm::createJumpThreadingPass() { return new JumpThreading(); }
    [all...]
LICM.cpp 183 Pass *llvm::createLICMPass() { return new LICM(); }
197 CurAST = new AliasSetTracker(*AA);
517 Instruction *New;
520 New = &I;
522 New = I.clone();
524 New->setName(I.getName()+".le");
525 ExitBlock->getInstList().insert(InsertPt, New);
530 SSA.AddAvailableValue(ExitBlock, New);
567 // Move the new node to the Preheader, before its terminator.
648 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos)
    [all...]
  /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);
textreplacewholetext06.js 115 textNode = doc.createTextNode("New Text");
121 replacedText = textNode.replaceWholeText("New Text and Cdata");
124 assertEquals("textreplacewholetext06","New Text and Cdata",nodeValue);
  /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/clang/lib/Index/
Entity.cpp 73 EntityImpl *New =
74 new (Buf) EntityImpl(Parent, Name, IdNS, isObjCInstanceMethod);
75 Entities.InsertNode(New, InsertPos);
77 return Entity(New);
  /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);
BasicBlockUtils.cpp 213 /// updated to point to the new instruction.
220 // Insert the new instruction into the basic block...
221 BasicBlock::iterator New = BIL.insert(BI, I);
227 BI = New;
285 /// to a new block. The two blocks are joined by an unconditional branch and
292 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
294 // The new block lives in whichever loop the old one did. This preserves
298 L->addBasicBlockToLoop(New, LI->getBase());
301 // Old dominates New. New node dominates all other nodes dominated by Old
    [all...]
  /external/v8/test/cctest/
test-utils.cc 67 Vector<char> buffer = Vector<char>::New(i + 1);
109 Vector<byte> buffer1 = Vector<byte>::New(N);
110 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/llvm/lib/CodeGen/
MachineFunction.cpp 59 RegInfo = new (Allocator) MachineRegisterInfo(*TM.getRegisterInfo());
63 FrameInfo = new (Allocator) MachineFrameInfo(*TM.getFrameLowering());
67 ConstantPool = new (Allocator) MachineConstantPool(TM.getTargetData());
104 JumpTableInfo = new (Allocator)
151 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
152 /// of `new MachineInstr'.
157 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
161 /// CloneMachineInstr - Create a new MachineInstr which is a copy of the
167 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
179 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use thi
    [all...]
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 35 transfer depth and stencil image data. Specifically, we defined new
55 New Procedures and Functions
59 New Tokens
79 The new table is:
187 The new format is added to the discussion of Obtaining Pixels from the
192 The new format is added to the discussion of Index Lookup. It should
219 New State
229 Brian's edits, assigned values to new enums.

Completed in 429 milliseconds

1 2 3 4 5 6 78 91011>>