Searched defs:New (Results 51 - 75 of 186) sorted by relevance

12345678

/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Darray_internal.h337 static Array_Data<T>* New(size_t num_elements, Buffer* buf) { function in class:mojo::internal::Array_Data
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database_unittest.cc95 static DescriptorDatabaseTestCase* New() { function in class:google::protobuf::__anon14828::SimpleDescriptorDatabaseTestCase
115 static DescriptorDatabaseTestCase* New() { function in class:google::protobuf::__anon14828::EncodedDescriptorDatabaseTestCase
137 static DescriptorDatabaseTestCase* New() { function in class:google::protobuf::__anon14828::DescriptorPoolDatabaseTestCase
475 testing::Values(&SimpleDescriptorDatabaseTestCase::New));
477 testing::Values(&EncodedDescriptorDatabaseTestCase::New));
479 testing::Values(&DescriptorPoolDatabaseTestCase::New));
H A Ddynamic_message.cc204 Message* New() const;
418 Message* DynamicMessage::New() const { function in class:google::protobuf::DynamicMessage
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc93 Span* PageHeap::New(Length n) { function in class:tcmalloc::PageHeap
459 StackTrace* t = Static::stacktrace_allocator()->New();
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc93 Span* PageHeap::New(Length n) { function in class:tcmalloc::PageHeap
398 StackTrace* t = Static::stacktrace_allocator()->New();
/external/chromium_org/v8/src/compiler/
H A Dgeneric-node-inl.h144 void* deque_buffer = zone->New(sizeof(InputDeque));
226 S* GenericNode<B, S>::New(GenericGraphBase* graph, int input_count, function in class:v8::internal::compiler::GenericNode
233 void* buffer = zone->New(size);
/external/clang/include/clang/AST/
H A DUnresolvedSet.h126 bool replace(const NamedDecl* Old, NamedDecl *New) { argument
129 return (I->setDecl(New), true);
135 void replace(iterator I, NamedDecl *New) { argument
136 I.ir->setDecl(New);
139 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { argument
140 I.ir->set(New, AS);
/external/clang/lib/Driver/
H A DMultilib.cpp191 static Multilib compose(const Multilib &Base, const Multilib &New) { argument
193 llvm::sys::path::append(GCCSuffix, "/", Base.gccSuffix(), New.gccSuffix());
195 llvm::sys::path::append(OSSuffix, "/", Base.osSuffix(), New.osSuffix());
198 New.includeSuffix());
205 Flags.insert(Flags.end(), New.flags().begin(), New.flags().end());
218 for (const Multilib &New : MultilibSegments) {
220 Multilib MO = compose(Base, New);
/external/clang/lib/Rewrite/Core/
H A DDeltaTree.cpp306 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode(); local
307 memcpy(&New->Children[0], &IN->Children[WidthFactor],
309 NewNode = New;
/external/clang/lib/Sema/
H A DIdentifierResolver.cpp255 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { argument
257 if (Existing == New)
261 if (Existing->getKind() != New->getKind())
265 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
271 if (New == MostRecent)
276 for (auto RD : New->redecls()) {
/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp138 BitsetType::New();
144 static void New() { function in struct:PR19613::TypeImpl::BitsetType
/external/llvm/include/llvm/ADT/
H A DSCCIterator.h133 /// has been deleted, and \c New is to be used in its place.
134 void ReplaceNode(NodeType *Old, NodeType *New) { argument
136 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
H A DScopedHashTable.h65 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>(); local
67 new (New) ScopedHashTableVal(key, val);
68 New->NextInScope = nextInScope;
69 New->NextForKey = nextForKey;
70 return New;
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h54 virtual void LRE_DidCloneVirtReg(unsigned New, unsigned Old) {} argument
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp268 bool *New) {
284 if (New) *New = true;
266 getAliasSetForPointer(Value *Pointer, uint64_t Size, const MDNode *TBAAInfo, bool *New) argument
/external/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp516 /// Old node has been deleted, and New is to be used in its place.
517 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) { argument
518 assert(Old != New && "Should not replace node with self");
522 Nodes[i] = New;
529 CGI->ReplaceNode(Old, New);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.h134 void NoteDeletion(SDNode *Old, SDNode *New) { argument
136 ExpungeNode(New);
138 ReplacedValues[SDValue(Old, i)] = SDValue(New, i);
/external/llvm/lib/IR/
H A DBasicBlock.cpp309 BasicBlock *New = BasicBlock::Create(getContext(), BBName, local
314 New->getInstList().splice(New->end(), this->getInstList(), I, end());
317 BranchInst::Create(New, this);
319 // Now we must loop through all of the successors of the New block (which
322 // know that incoming branches will be from New, not from Old.
324 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
333 PN->setIncomingBlock((unsigned)IDX, New);
338 return New;
341 replaceSuccessorsPhiUsesWith(BasicBlock *New) argument
[all...]
H A DInstruction.cpp524 Instruction *New = clone_impl(); local
525 New->SubclassOptionalData = SubclassOptionalData;
527 return New;
534 New->setMetadata(MD.first, MD.second);
536 New->setDebugLoc(getDebugLoc());
537 return New;
/external/llvm/lib/Support/
H A DFoldingSet.cpp176 unsigned *New = Allocator.Allocate<unsigned>(Bits.size()); local
177 std::uninitialized_copy(Bits.begin(), Bits.end(), New);
178 return FoldingSetNodeIDRef(New, Bits.size());
/external/llvm/lib/Target/ARM/
H A DARMJITInfo.cpp30 void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp30 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
31 unsigned NewAddr = (intptr_t)New;
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp479 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
480 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
/external/llvm/lib/Target/Sparc/
H A DSparcJITInfo.cpp215 void SparcJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp35 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
39 unsigned NewAddr = (intptr_t)New;
41 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.

Completed in 495 milliseconds

12345678