Searched defs:New (Results 101 - 125 of 186) sorted by relevance

12345678

/external/chromium_org/third_party/re2/re2/
H A Dregexp.cc864 CharClass* CharClass::New(int maxranges) { function in class:re2::CharClass
881 CharClass* cc = CharClass::New(nranges_+1);
918 CharClass* cc = CharClass::New(ranges_.size());
/external/chromium_org/ui/base/l10n/
H A Dl10n_util.cc74 "en-NZ", // English (New Zealand)
269 static std::vector<std::string>* New(void* instance) { function in struct:__anon16652::AvailableLocalesTraits
271 base::DefaultLazyInstanceTraits<std::vector<std::string> >::New(
361 // Map Australian, Canadian, New Zealand and South African English
/external/chromium_org/v8/src/
H A Dexecution.cc145 MaybeHandle<Object> Execution::New(Handle<JSFunction> func, function in class:v8::internal::Execution
626 ASSIGN_RETURN_ON_EXCEPTION(isolate, result, New(cons, 0, NULL), JSObject);
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp175 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { argument
176 OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator();
193 New->getType()->getAs<FunctionProtoType>(), New->getLocation(),
201 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
202 Diag(New->getLocation(), diag::ext_implicit_exception_spec_mismatch)
216 New->getType()->castAs<FunctionProtoType>();
234 New->setType(NewType);
255 New->setType(NewType);
297 if (TypeSourceInfo *TSInfo = New
324 CheckEquivalentExceptionSpec( const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc) argument
345 CheckEquivalentExceptionSpec(const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID, const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc, bool *MissingExceptionSpecification, bool*MissingEmptyExceptionSpecification, bool AllowNoexceptAllMatchWithNoSpec, bool IsOperatorNew) argument
773 CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h589 void addTopLevelLoop(LoopT *New) { argument
590 assert(!New->getParentLoop() && "Loop already in subloop!");
591 TopLevelLoops.push_back(New);
712 inline void addTopLevelLoop(Loop *New) { argument
713 LI.addTopLevelLoop(New);
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp96 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
201 void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) { argument
207 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
209 // If New is not address taken, just move our symbol over to it.
211 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
212 NewEntry = OldEntry; // Set New's entry.
H A DRegAllocFast.cpp588 bool New; local
589 std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg));
590 if (New) {
621 bool New; local
622 std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg));
624 if (New) {
H A DMachineBasicBlock.cpp531 MachineBasicBlock *New) {
532 if (Old == New)
544 if (*I == New) {
553 // If New isn't already a successor, let it take Old's place.
555 New->addPredecessor(this);
556 *OldI = New;
560 // New is already a successor.
1018 /// 'Old', change the code and CFG so that it branches to 'New' instead.
1020 MachineBasicBlock *New) {
1021 assert(Old != New
530 replaceSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New) argument
1019 ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New) argument
[all...]
H A DMachineFunction.cpp771 /// the jump tables to branch to New instead.
773 MachineBasicBlock *New) {
774 assert(Old != New && "Not making a change?");
777 ReplaceMBBInJumpTable(i, Old, New);
782 /// the jump table to branch to New instead.
785 MachineBasicBlock *New) {
786 assert(Old != New && "Not making a change?");
791 JTE.MBBs[j] = New;
772 ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New) argument
783 ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old, MachineBasicBlock *New) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp169 void ReplaceNode(SDNode *Old, SDNode *New) { argument
170 DAG.ReplaceAllUsesWith(Old, New);
173 void ReplaceNode(SDValue Old, SDValue New) { argument
174 DAG.ReplaceAllUsesWith(Old, New);
177 void ReplaceNode(SDNode *Old, const SDValue *New) { argument
178 DAG.ReplaceAllUsesWith(Old, New);
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp508 MachineInstr *New; local
511 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
516 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
521 MBB.insert(I, New);
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp742 Instruction *New; local
744 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
746 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
747 cast<InvokeInst>(New)->setAttributes(AttributeSet::get(II->getContext(),
750 New = CallInst::Create(NF, Args, "", Call);
751 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
752 cast<CallInst>(New)->setAttributes(AttributeSet::get(New->getContext(),
755 cast<CallInst>(New)->setTailCall();
757 New
[all...]
H A DDeadArgumentElimination.cpp255 Instruction *New; local
257 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
259 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
260 cast<InvokeInst>(New)->setAttributes(PAL);
262 New = CallInst::Create(NF, Args, "", Call);
263 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
264 cast<CallInst>(New)->setAttributes(PAL);
266 cast<CallInst>(New)->setTailCall();
268 New->setDebugLoc(Call->getDebugLoc());
273 Call->replaceAllUsesWith(New);
923 Instruction *New; local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp692 BinaryOperator *New = local
696 New->setHasNoUnsignedWrap(BO->hasNoUnsignedWrap());
697 New->setHasNoSignedWrap(BO->hasNoSignedWrap());
700 New->setIsExact(BO->isExact());
703 New->copyFastMathFlags(I);
704 return New;
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp545 Instruction *New = I.clone(); local
546 ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New);
547 if (!I.getName().empty()) New->setName(I.getName() + ".le");
556 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
568 return New;
604 Instruction *New; local
607 New = It->second;
609 New = SunkCopies[ExitBlock] =
612 PN->replaceAllUsesWith(New);
[all...]
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp224 BasicBlock::iterator New = BIL.insert(BI, I); local
230 BI = New;
277 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split"); local
283 L->addBasicBlockToLoop(New, LI->getBase());
288 // Old dominates New. New node dominates all other nodes dominated by Old.
295 DomTreeNode *NewNode = DT.addNewBlock(New, Old);
302 return New;
H A DCodeExtractor.cpp269 BasicBlock *New = (*I)->splitBasicBlock(RI, (*I)->getName()+".ret"); local
271 // Old dominates New. New node dominates all other nodes dominated
279 DomTreeNode *NewNode = DT->addNewBlock(New, *I);
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp337 Module *New = TestMergedProgram(BD, ToOptimizeLoopExtracted, ToNotOptimize, local
339 if (!New)
343 Module *Old = BD.swapProgramIn(New);
536 if (Module *New = BD.ExtractMappedBlocksFromModule(BBsOnClone, ToOptimize)) {
540 bool Ret = TestFn(BD, New, ToNotOptimize, Error);
740 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken); local
741 if (New) {
744 delete BD.swapProgramIn(New);
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h164 // static Type* New();
271 static GenericType* New() { return new GenericType; } function in class:google::protobuf::internal::GenericTypeHandler
297 static string* New();
655 typename TypeHandler::Type* result = TypeHandler::New();
/external/regex-re2/re2/
H A Dregexp.cc864 CharClass* CharClass::New(int maxranges) { function in class:re2::CharClass
883 CharClass* cc = CharClass::New(nranges_+1);
920 CharClass* cc = CharClass::New(ranges_.size());
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.h216 // static Type* New();
335 static GenericType* New() { return new GenericType; } function in class:google::protobuf::internal::GenericTypeHandler
381 static string* New();
843 typename TypeHandler::Type* result = TypeHandler::New();
/external/clang/lib/AST/
H A DDeclTemplate.cpp310 ClassTemplateDecl *New = new (C, DC) ClassTemplateDecl(C, DC, L, Name, local
312 New->setPreviousDecl(PrevDecl);
313 return New;
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp930 /// \brief Simple utility function that appends a \p New string to the given
937 /// \param New The string to append to \p Old.
941 static void AppendToString(StringRef &Old, StringRef New, argument
944 Old = New;
950 Buffer.append(New.begin(), New.end());
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp1873 StatementMatcher New = newExpr(); local
1875 EXPECT_TRUE(matches("class X { public: X(); }; void x() { new X; }", New));
1877 matches("class X { public: X(); }; void x() { new X(); }", New));
1879 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1880 EXPECT_TRUE(matches("class X {}; void x(int) { new X; }", New));
1884 StatementMatcher New = constructExpr( local
1889 New));
1892 New));
1895 New));
1905 StatementMatcher New local
[all...]
/external/llvm/include/llvm/ADT/
H A Dilist.h412 iterator insert(iterator where, NodeTy *New) { argument
415 this->setNext(New, CurNode);
416 this->setPrev(New, PrevNode);
419 this->setNext(PrevNode, New);
421 Head = New;
422 this->setPrev(CurNode, New);
424 this->addNodeToList(New); // Notify traits that we added a node...
425 return New;
428 iterator insertAfter(iterator where, NodeTy *New) { argument
430 return insert(begin(), New);
[all...]

Completed in 1884 milliseconds

12345678