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

1 23 4 5 6 7 8 91011>>

  /external/clang/include/clang/AST/
UnresolvedSet.h 119 /// Replaces the given declaration with the new one, once.
122 bool replace(const NamedDecl* Old, NamedDecl *New) {
125 return (I->setDecl(New), true);
129 /// Replaces the declaration at the given iterator with the new one,
131 void replace(iterator I, NamedDecl *New) {
132 I.ir->setDecl(New);
135 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) {
136 I.ir->set(New, AS);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 64 v8::Handle<v8::String> alpha = v8::String::New("alpha");
67 v8::Handle<v8::String> depth = v8::String::New("depth");
70 v8::Handle<v8::String> stencil = v8::String::New("stencil");
73 v8::Handle<v8::String> antialias = v8::String::New("antialias");
76 v8::Handle<v8::String> premultipliedAlpha = v8::String::New("premultipliedAlpha");
79 v8::Handle<v8::String> preserveDrawingBuffer = v8::String::New("preserveDrawingBuffer");
V8ScriptProfileNodeCustom.cpp 47 v8::Handle<v8::Array> result = v8::Array::New(children.size());
51 result->Set(v8::Integer::New(index++), toV8(iter->get()));
59 return v8::Number::New(imp->callUID());
V8XMLHttpRequestConstructor.cpp 60 V8DOMWrapper::setJSWrapperForActiveDOMObject(xmlHttpRequest.get(), v8::Persistent<v8::Object>::New(args.Holder()));
V8SQLResultSetRowListCustom.cpp 64 v8::Local<v8::Object> item = v8::Object::New();
79 value = v8::Number::New(sqlValue.number());
  /external/giflib/
gifalloc.c 178 /* Color is new - copy it to a new slot: */
234 MakeExtension(SavedImage * New,
237 New->Function = Function;
251 AddExtensionBlock(SavedImage * New,
257 if (New->ExtensionBlocks == NULL)
258 New->ExtensionBlocks=(ExtensionBlock *)malloc(sizeof(ExtensionBlock));
260 New->ExtensionBlocks = (ExtensionBlock *)realloc(New->ExtensionBlocks,
262 (New->ExtensionBlockCount + 1))
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 58 m_value = v8::Persistent<v8::Value>::New(value);
69 m_value = v8::Persistent<v8::Value>::New(value.m_value);
85 m_value = v8::Persistent<v8::Value>::New(value.m_value);
ScheduledAction.cpp 50 m_function = v8::Persistent<v8::Function>::New(func);
58 m_argv = new v8::Persistent<v8::Value>[argc];
60 m_argv[i] = v8::Persistent<v8::Value>::New(argv[i]);
109 v8::Handle<v8::Context> v8Context = v8::Local<v8::Context>::New(m_context.get());
137 v8::Handle<v8::Context> v8Context = v8::Local<v8::Context>::New(m_context.get());
V8HiddenPropertyName.cpp 51 return new v8::Persistent<v8::String>(v8::Persistent<v8::String>::New(v8::String::NewSymbol(key)));
V8AbstractEventListener.h 83 return v8::Local<v8::Object>::New(m_listener);
88 return v8::Local<v8::Object>::New(m_listener);
  /external/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 121 MachineInstr *New = 0;
123 New = BuildMI(MF, Old->getDebugLoc(),
132 New = BuildMI(MF, Old->getDebugLoc(),
137 if (New) {
139 New->getOperand(3).setIsDead();
141 // Replace the pseudo instruction with a new instruction...
142 MBB.insert(I, New);
150 MachineInstr *New =
154 New->getOperand(3).setIsDead();
156 MBB.insert(I, New);
    [all...]
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 53 ModulePass *llvm::createIPConstantPropagationPass() { return new IPCP(); }
239 Value* New = RetVals[0];
240 if (Argument *A = dyn_cast<Argument>(New))
243 New = CS.getArgument(A->getArgNo());
244 Call->replaceAllUsesWith(New);
264 Value *New = RetVals[index];
265 if (New) {
266 if (Argument *A = dyn_cast<Argument>(New))
269 New = CS.getArgument(A->getArgNo());
270 Ins->replaceAllUsesWith(New);
    [all...]
  /external/protobuf/src/google/protobuf/
dynamic_message_unittest.cc 121 scoped_ptr<Message> message(prototype_->New());
130 scoped_ptr<Message> message(extensions_prototype_->New());
139 scoped_ptr<Message> message(packed_prototype_->New());
152 scoped_ptr<Message> message(prototype_->New());
  /external/v8/src/extensions/
gc-extension.cc 38 return v8::FunctionTemplate::New(GCExtension::GC);
  /external/v8/src/
d8-debug.cc 66 Local<String> to_json_fun_name = String::New("toJSONProtocol");
82 String::Utf8Value str(details->Get(String::New("text")));
90 Local<String> fun_name = String::New("debugCommandProcessor");
114 Shell::DebugCommandToJSONRequest(String::New(command));
135 fun_name = String::New("processDebugRequest");
151 String::Utf8Value text_str(response_details->Get(String::New("text")));
156 response_details->Get(String::New("running"))->ToBoolean()->Value();
226 new RemoteDebuggerEvent(RemoteDebuggerEvent::kMessage, message);
233 new RemoteDebuggerEvent(RemoteDebuggerEvent::kKeyboard, command);
240 new RemoteDebuggerEvent(RemoteDebuggerEvent::kDisconnect
    [all...]
hashmap.h 40 virtual void* New(size_t size) { return Malloced::New(size); }
75 // but insert is set, a new entry is inserted with
zone.h 60 // allocating new segments of memory on demand using malloc().
61 inline void* New(int size);
81 // All pointers returned from New() have this alignment.
110 // Creates a new segment, sets it size, and pushes it to the front
111 // of the segment chain. Returns the new segment.
134 // Allocate a new ZoneObject of 'size' bytes in the Zone.
135 inline void* operator new(size_t size);
136 inline void* operator new(size_t size, Zone* zone);
165 static inline void* New(int size);
179 // Construct a new ZoneList with the given capacity; the length i
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 86 /// createJumpTableIndex - Create a new jump table.
105 /// the jump tables to branch to New instead.
106 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
109 /// the jump table to branch to New instead.
111 MachineBasicBlock *New);
  /external/mesa3d/docs/
MESA_resize_buffers.spec 43 the new window size. This extension exports a new function to solve
46 New Procedures and Functions
50 New Tokens
71 New State
75 New Implementation Dependent State
  /hardware/ril/mock-ril/src/cpp/
node_object_wrap.h 64 handle_ = v8::Persistent<v8::Object>::New(handle);
65 handle_->SetInternalField(0, v8::External::New(this));
  /external/llvm/lib/VMCore/
Value.cpp 196 // Create the new name.
214 // Name is changing to something new.
283 void Value::replaceAllUsesWith(Value *New) {
284 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
285 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
286 assert(New->getType() == getType() &&
287 "replaceAllUses of value with new value of different type!");
291 ValueHandleBase::ValueIsRAUWd(this, New);
299 C->replaceUsesOfWithOnConstant(this, New, &U);
304 U.set(New);
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 93 Module *New = runPassesOn(Clone, Passes);
95 if (!New) {
99 return New;
119 Module *New = runPassesOn(M, CleanupPasses);
120 if (New == 0) {
125 return New;
129 /// ExtractLoop - Given a module, extract up to one loop from it into a new
144 // Check to see if we created any new functions. If not, no loops were
235 new GlobalVariable(*M1, M1Init->getType(), false,
247 new GlobalVariable(*M2, M2Init->getType(), false
    [all...]
  /external/v8/samples/
process.cc 77 // Creates a new processor that processes requests by invoking the
152 Handle<ObjectTemplate> global = ObjectTemplate::New();
153 global->Set(String::New("log"), FunctionTemplate::New(LogCallback));
156 // affect each other. Context::New returns a persistent handle which
160 context_ = Context::New(NULL, global);
162 // Enter the new context so all the following operations take place
176 Handle<String> process_name = String::New("Process");
188 process_ = Persistent<Function>::New(process_fun);
232 context_->Global()->Set(String::New("options"), opts_obj)
    [all...]
  /external/v8/test/cctest/
cctest.h 169 : context_(v8::Context::New(extensions, global_template, global_object)) {
183 return v8::Local<v8::Context>::New(context_);
192 return v8::Number::New(x);
197 return v8::String::New(x);
208 return v8::Script::Compile(v8::String::New(source))->Run();
test-threads.cc 40 v8::Context::Scope context_scope(v8::Context::New());
45 v8::String::New("var count = 0; var obj = new Object(); count++;\n"));
72 v8::Context::Scope context_scope(v8::Context::New());
78 v8::String::New(
111 v8::Context::Scope context_scope(v8::Context::New());
179 new ThreadIdValidationThread(prev, &refs, i, semaphore);

Completed in 1035 milliseconds

1 23 4 5 6 7 8 91011>>