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

<<11121314151617

  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 61 /// deleted. If it returns something else, replace CI with the new value and
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 307 new UnreachableInst(BB->getContext(), BB);
326 Module *New = BD.runPassesOn(M, Passes);
328 if (!New) {
332 M = New;
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.h 71 CodeGeneratorRequest* New() const;
194 CodeGeneratorResponse_File* New() const;
311 CodeGeneratorResponse* New() const;
457 parameter_ = new ::std::string;
464 parameter_ = new ::std::string;
471 parameter_ = new ::std::string;
478 parameter_ = new ::std::string;
528 name_ = new ::std::string;
535 name_ = new ::std::string;
542 name_ = new ::std::string
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 275 /// replaceSuccessor - Replace successor OLD with NEW and update weight info.
277 void replaceSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New);
384 /// 'Old', change the code and CFG so that it branches to 'New' instead.
385 void ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New);
  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 56 New Procedures and Functions
60 New Tokens
191 New State
  /external/protobuf/src/google/protobuf/
descriptor.pb.h 179 FileDescriptorSet* New() const;
273 FileDescriptorProto* New() const;
455 DescriptorProto_ExtensionRange* New() const;
552 DescriptorProto* New() const;
720 FieldDescriptorProto* New() const;
    [all...]
dynamic_message.cc 56 // Note on memory allocation: This module often calls "operator new()"
58 // "new uint8[]". This is because "operator new()" means "Give me some
59 // space which I can use as I please." while "new uint8[]" means "Give
192 Message* New() const;
226 // default values where appropriate. We use placement new to call
227 // constructors. If you haven't heard of placement new, I suggest Googling
228 // it now. We use placement new even for primitive types that don't have
229 // constructors for consistency. (In theory, placement new should be used
236 new(OffsetToPointer(type_info_->unknown_fields_offset)) UnknownFieldSet
    [all...]
  /external/v8/src/
global-handles.cc 246 current_ = new Chunk();
285 Chunk* chunk = new Chunk();
308 pool_(new Pool()),
334 // Allocate a new node.
565 object_groups_.Add(ObjectGroup::New(handles, length, info));
573 implicit_ref_groups_.Add(ImplicitRefGroup::New(parent, children, length));
scanner-base.h 214 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity));
227 new_store = Vector<byte>::New(NewCapacity(new_content_size));
537 // finally false for function if in instanceof native* new null
625 // If input equals match character, transition to new state and return true.
mksnapshot.cc 221 Persistent<Context> context = v8::Context::New();
utils.cc 86 // Since we read a new line we are done reading the line. This
94 // Allocate a new result with enough room for the new addition.
97 // Copy the existing input into the new array and set the new
223 buffer_ = Vector<char>::New(size);
  /external/v8/test/mjsunit/
debug-liveedit-2.js 57 var change_log = new Array();
62 // New instance of closure is patched.
  /external/webkit/Tools/DumpRenderTree/qt/
fonts.conf 170 <string>New Century Schoolbook</string>
  /external/clang/lib/Sema/
SemaTemplate.cpp 420 /// that the template parameter 'PrevDecl' is being shadowed by a new
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
ownership_service.cc 29 : manager_(new OwnerManager),
60 policy_.reset(pol.New());
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 287 Diag(new DiagnosticsEngine(
288 llvm::IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs))),
290 FileMgr(new FileManager(FileSystemOpts)),
291 SourceMgr(new SourceManager(*Diag, *FileMgr)),
615 AllocatedResults.Results = new CXCompletionResult [StoredResults.size()];
676 new AllocatedCXCodeCompleteResults(AST->getFileSystemOpts());
828 return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
877 /// \brief Simple utility function that appends a \p New string to the given
884 /// \param New The string to append to \p Old.
888 static void AppendToString(StringRef &Old, StringRef New,
    [all...]
  /external/llvm/include/llvm/Support/
ValueHandle.h 107 static void ValueIsRAUWd(Value *Old, Value *New);
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 30 void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
211 // the new branch will be invoked when we come back.
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 151 BinaryOperator *New =
153 New->setHasNoSignedWrap(I.hasNoSignedWrap());
154 New->setHasNoUnsignedWrap(I.hasNoUnsignedWrap());
155 return New;
250 // Okay, the xform is safe. Insert the new add pronto.
297 // Insert the new, smaller add.
300 return new SExtInst(NewAdd, I.getType());
313 // Insert the new integer add.
316 return new SExtInst(NewAdd, I.getType());
370 // Insert the new integer add
    [all...]
InstCombineCasts.cpp 134 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
135 New->setAlignment(AI.getAlignment());
136 New->takeName(&AI);
139 // things that used it to use the new cast. This will also hack on CI, but it
142 // New is the allocation instruction, pointer typed. AI is the original
144 Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast");
147 return ReplaceInstUsesWith(CI, New);
191 // new.
195 // Otherwise, must be the same type of cast, so just reinsert a new one.
403 // trunc(ext(x)) -> ext(x) if the source type is smaller than the new des
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.h 98 return v8::Local<v8::String>::New(lastV8String);
  /external/webkit/Tools/DumpRenderTree/gtk/fonts/
fonts.conf 52 <string>Times New Roman</string>
139 <!-- We need to ensure that layout tests that use "Courier", "Courier New",
152 <string>Courier New</string>
  /external/webrtc/src/modules/audio_processing/main/test/unit_test/
audio_processing_unittest.pb.cc 28 Test::default_instance_ = new Test();
29 Test_Statistic::default_instance_ = new Test_Statistic();
30 Test_EchoMetrics::default_instance_ = new Test_EchoMetrics();
31 OutputData::default_instance_ = new OutputData();
99 Test_Statistic* Test_Statistic::New() const {
100 return new Test_Statistic;
370 Test_EchoMetrics* Test_EchoMetrics::New() const {
371 return new Test_EchoMetrics;
645 Test* Test::New() const {
646 return new Test
    [all...]
  /hardware/ril/mock-ril/src/cpp/
msgheader.pb.h 66 MsgHeader* New() const;
  /external/pcre/
pcregexp.pas 263 such as way as to be extensible. Always add new fields at the end, in order to
762 P:=New(ppcRegExp,Init(ARegExp,PCRE_CASELESS,nil));
772 PpcRE:=New(ppcRegExp,Init(WildCard,AOptions,Alocale));
781 PpcRE:=New(ppcRegExp,Init(WildCard,AOptions,Alocale));
835 Result := New( PpcRegExp, Init( Pattern,
842 PRegExpCache:=New(PRegExpCollection,Init(64));

Completed in 839 milliseconds

<<11121314151617