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

1 23 4 5 6 7 8 91011

  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 13 // The parent register is never changed. Instead, a number of new virtual
60 LiveInterval *Parent;
82 /// scanRemattable - Identify the Parent values that may rematerialize.
105 /// Create a LiveRangeEdit for breaking down parent into smaller pieces.
106 /// @param parent The register being spilled or split.
114 LiveRangeEdit(LiveInterval *parent,
120 : Parent(parent), NewRegs(newRegs),
130 assert(Parent && "No parent LiveInterval")
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCAtom.cpp 21 Parent->remap(this, NewBegin, NewEnd);
64 MCDataAtom *RightAtom = Parent->createDataAtom(RBegin, REnd);
101 MCTextAtom *RightAtom = Parent->createTextAtom(RBegin, REnd);
112 Parent->splitBasicBlocksForAtom(this, RightAtom);
  /external/clang/include/clang/Analysis/
AnalysisContext.h 174 const StackFrameContext *getStackFrame(LocationContext const *Parent,
180 getBlockInvocationContext(const LocationContext *parent,
212 const LocationContext *Parent;
216 const LocationContext *parent)
217 : Kind(k), Ctx(ctx), Parent(parent) {}
226 const LocationContext *getParent() const { return Parent; }
261 const LocationContext *parent,
269 // The parent block of the callsite.
276 StackFrameContext(AnalysisDeclContext *ctx, const LocationContext *parent,
    [all...]
  /external/clang/lib/Frontend/
DependencyFile.cpp 176 DFGImpl &Parent;
178 DFGASTReaderListener(DFGImpl &Parent)
179 : Parent(Parent) { }
182 return Parent.includeSystemHeaders();
370 Parent.AddFilename(Filename);
375 if (Parent.includeModuleFiles())
376 Parent.AddFilename(Filename);
  /external/clang/include/clang/Basic/
Module.h 55 /// \brief The parent of this module. This will be NULL for the top-level
57 Module *Parent;
288 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
314 bool isSubModule() const { return Parent != nullptr; }
324 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
334 return IsFramework && Parent && Parent->isPartOfFramework();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 58 Assert.IsNull(t.Parent);
71 Assert.IsNull(r0.Parent);
85 Assert.IsNull(r0.Parent);
87 Assert.AreEqual(r0, c0.Parent);
89 Assert.AreEqual(r0, c1.Parent);
91 Assert.AreEqual(r0, c2.Parent);
111 Assert.IsNull(root.Parent);
114 Assert.AreEqual(root, c0.Parent);
116 Assert.AreEqual(root, c0.Parent);
118 Assert.AreEqual(root, c0.Parent);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.cc 105 // Now first find the parent directory to see if we can add it
106 ScopedNode parent;
107 error = FindNode(path.Parent(), S_IFDIR, &parent);
116 error = parent->AddChild(path.Basename(), node);
148 ScopedNode parent;
149 int error = FindNode(path.Parent(), S_IFDIR, &parent);
154 error = parent->FindChild(path.Basename(), &node);
161 // Allocate a node, with a RefCount of 1. If added to the parent
268 ScopedNode parent; local
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 240 const DelayedDiagnosticPool *Parent;
246 DelayedDiagnosticPool(const DelayedDiagnosticPool *parent) : Parent(parent) {}
253 const DelayedDiagnosticPool *getParent() const { return Parent; }
257 return (Diagnostics.empty() && (!Parent || Parent->empty()));
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 211 LoopData *Parent; ///< The parent loop.
220 LoopData(LoopData *Parent, const BlockNode &Header)
221 : Parent(Parent), IsPackaged(false), NumHeaders(1), Nodes(1, Header) {}
223 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther,
225 : Parent(Parent), IsPackaged(false), Nodes(FirstHeader, LastHeader) {
257 return isLoopHeader() && Loop->Parent && Loop->Parent->isIrreducible() &
    [all...]
IVUsers.h 40 : CallbackVH(U), Parent(P), OperandValToReplace(O) {
76 /// Parent - a pointer to the IVUsers that owns this IVStrideUse.
77 IVUsers *Parent;
  /external/llvm/lib/IR/
MDBuilder.cpp 83 /// parent in the TBAA tree, and value for 'pointsToConstantMemory'.
84 MDNode *MDBuilder::createTBAANode(StringRef Name, MDNode *Parent,
88 Value *Ops[3] = {createString(Name), Parent, Flags};
91 Value *Ops[2] = {createString(Name), Parent};
124 /// given name, an offset and a parent in the TBAA type DAG.
125 MDNode *MDBuilder::createTBAAScalarTypeNode(StringRef Name, MDNode *Parent,
128 Value *Ops[3] = {createString(Name), Parent, Off};
Globals.cpp 175 void GlobalVariable::setParent(Module *parent) {
178 Parent = parent;
260 Module *Parent) {
261 return create(Ty, AddressSpace, Linkage, Name, nullptr, Parent);
281 void GlobalAlias::setParent(Module *parent) {
284 Parent = parent;
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 159 BasicBlock *Parent = RI->getParent();
160 BranchInst::Create(UnwindBB, Parent);
163 PN->addIncoming(ExnObj, Parent);
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayXMLParser.cpp 22 "element missing parent ",
23 "element type not allowed in parent ",
43 "no parent available to resolve sink attribute ",
44 "parent element can't contain ",
61 void SkDisplayXMLParserError::setInnerError(SkAnimateMaker* parent, const SkString& src) {
68 parent->setErrorNoun(inner);
81 for (Parent* parPtr = fParents.begin() + 1; parPtr < fParents.end(); parPtr++) {
118 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
119 parent->setChildHasID();
171 Parent& container = fParents[parentIndex]
178 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
255 Parent* parent = fParents.end() - 2; local
303 Parent* parent = fParents.end() - 2; local
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 208 BasicBlock *Parent = Phi->getParent();
209 PHINode *NewPhi = PHINode::Create(Int64, 0, "", &Parent->front());
226 BasicBlock *IDom = DT->getNode(Parent)->getIDom()->getBlock();
236 CallInst *OldEnd = dyn_cast<CallInst>(Parent->getFirstInsertionPt());
251 BasicBlock *Parent = Inst->getParent();
252 TerminatorInst *Insert = Parent->getTerminator();
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 22 "element missing parent ",
23 "element type not allowed in parent ",
43 "no parent available to resolve sink attribute ",
44 "parent element can't contain ",
61 void SkDisplayXMLParserError::setInnerError(SkAnimateMaker* parent, const SkString& src) {
68 parent->setErrorNoun(inner);
81 for (Parent* parPtr = fParents.begin() + 1; parPtr < fParents.end(); parPtr++) {
118 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
119 parent->setChildHasID();
171 Parent& container = fParents[parentIndex]
178 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
255 Parent* parent = fParents.end() - 2; local
303 Parent* parent = fParents.end() - 2; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeAdaptor.cs 192 return ((ITree)t).Parent;
195 public override void SetParent(object t, object parent) {
197 ((ITree)t).Parent = (ITree)parent;
212 public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
213 if (parent != null) {
214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t);
  /external/llvm/include/llvm/MC/MCAnalysis/
MCAtom.h 74 MCModule *Parent;
79 : Kind(K), Name("(unknown)"), Parent(P), Begin(B), End(E) { }
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 87 /// \brief Including \p Parent adds the context of Parent to the hash..
88 void DIEHash::addParentContext(const DIE &Parent) {
90 DEBUG(dbgs() << "Adding parent context to hash...\n");
95 const DIE *Cur = &Parent;
204 if (const DIE *Parent = Entry.getParent())
205 addParentContext(*Parent);
494 // actually do this with a slight modification to the parent hash algorithm.
495 if (const DIE *Parent = Die.getParent())
496 addParentContext(*Parent);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.h 30 // Return true if this is the root path (i.e. it has no parent)
44 // Return the parent path.
45 Path Parent() const;
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfPageTreeNodeDictionary_autogen.cpp 23 SkPdfDictionary* SkPdfPageTreeNodeDictionary::Parent(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Parent", "");
32 return get("Parent", "") != NULL;
SkPdfPopUpAnnotationDictionary_autogen.cpp 35 SkPdfDictionary* SkPdfPopUpAnnotationDictionary::Parent(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Parent", "");
44 return get("Parent", "") != NULL;
  /external/llvm/include/llvm/IR/
GlobalValue.h 68 ThreadLocal(NotThreadLocal), Parent(nullptr) {
95 Module *Parent; // The containing module.
336 inline Module *getParent() { return Parent; }
337 inline const Module *getParent() const { return Parent; }
Metadata.h 155 // function-local operand, return the first such operand's parent function.
204 Module *Parent;
207 void setParent(Module *M) { Parent = M; }
248 /// eraseFromParent - Drop all references and remove the node from parent
259 inline Module *getParent() { return Parent; }
260 inline const Module *getParent() const { return Parent; }
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 226 BasicBlock *Parent = II->getParent();
235 if (BB->isLandingPad() && BB != Parent &&
236 isa<InvokeInst>(Parent->getTerminator())) {
245 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", nullptr, NewBBs);

Completed in 445 milliseconds

1 23 4 5 6 7 8 91011