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

1 23 4 5 6 7 8 91011

  /external/clang/include/clang/Analysis/
AnalysisContext.h 183 const StackFrameContext *getStackFrame(LocationContext const *Parent,
189 getBlockInvocationContext(const LocationContext *parent,
221 const LocationContext *Parent;
225 const LocationContext *parent)
226 : Kind(k), Ctx(ctx), Parent(parent) {}
235 const LocationContext *getParent() const { return Parent; }
270 const LocationContext *parent,
278 // The parent block of the callsite.
285 StackFrameContext(AnalysisDeclContext *ctx, const LocationContext *parent,
    [all...]
  /external/llvm/include/llvm/IR/
MDBuilder.h 129 /// parent in the TBAA tree, and value for 'pointsToConstantMemory'.
130 MDNode *createTBAANode(StringRef Name, MDNode *Parent,
152 /// given name, an offset and a parent in the TBAA type DAG.
153 MDNode *createTBAAScalarTypeNode(StringRef Name, MDNode *Parent,
GlobalValue.h 73 ThreadLocal(NotThreadLocal), IntID((Intrinsic::ID)0U), Parent(nullptr) {
115 Module *Parent; // The containing module.
357 Module *getParent() { return Parent; }
358 const Module *getParent() const { return Parent; }
  /external/clang/include/clang/Basic/
Module.h 57 /// \brief The parent of this module. This will be NULL for the top-level
59 Module *Parent;
309 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
335 bool isSubModule() const { return Parent != nullptr; }
345 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
355 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/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 200 LoopData *Parent; ///< The parent loop.
209 LoopData(LoopData *Parent, const BlockNode &Header)
210 : Parent(Parent), IsPackaged(false), NumHeaders(1), Nodes(1, Header),
213 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther,
215 : Parent(Parent), IsPackaged(false), Nodes(FirstHeader, LastHeader) {
256 return isLoopHeader() && Loop->Parent && Loop->Parent->isIrreducible() &
    [all...]
IVUsers.h 41 : CallbackVH(U), Parent(P), OperandValToReplace(O) {
77 /// Parent - a pointer to the IVUsers that owns this IVStrideUse.
78 IVUsers *Parent;
RegionInfo.h 125 /// In the BBtoRegionNode map of the parent of this node, BB will always map
133 /// @brief The parent Region of this RegionNode.
135 RegionT *parent; member in class:llvm::RegionNodeBase
140 /// @param Parent The parent of this RegionNode.
146 inline RegionNodeBase(RegionT *Parent, BlockT *Entry,
148 : entry(Entry, isSubRegion), parent(Parent) {}
151 /// @brief Get the parent Region of this RegionNode.
153 /// The parent Region is the Region this RegionNode belongs to. If fo
    [all...]
  /external/llvm/lib/IR/
MDBuilder.cpp 109 /// parent in the TBAA tree, and value for 'pointsToConstantMemory'.
110 MDNode *MDBuilder::createTBAANode(StringRef Name, MDNode *Parent,
115 {createString(Name), Parent, createConstant(Flags)});
117 return MDNode::get(Context, {createString(Name), Parent});
156 /// given name, an offset and a parent in the TBAA type DAG.
157 MDNode *MDBuilder::createTBAAScalarTypeNode(StringRef Name, MDNode *Parent,
161 {createString(Name), Parent, createConstant(Off)});
Globals.cpp 181 void GlobalVariable::setParent(Module *parent) {
182 Parent = parent;
248 Module *Parent) {
249 return create(Ty, AddressSpace, Linkage, Name, nullptr, Parent);
269 void GlobalAlias::setParent(Module *parent) {
270 Parent = parent;
  /external/llvm/include/llvm/CodeGen/
MachineRegionInfo.h 53 inline MachineRegionNode(MachineRegion *Parent,
56 : RegionNodeBase<RegionTraits<MachineFunction>>(Parent, Entry, isSubRegion) {
69 MachineDominatorTree *DT, MachineRegion *Parent = nullptr);
  /external/lzma/CPP/Common/
Wildcard.h 65 CCensorNode *Parent;
71 CCensorNode(): Parent(0) { };
72 CCensorNode(const UString &name, CCensorNode *parent): Name(name), Parent(parent) { };
  /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/lib/Analysis/
RegionInfo.cpp 69 DominatorTree *DT, Region *Parent) :
70 RegionBase<RegionTraits<Function>>(Entry, Exit, RI, DT, Parent) {
  /external/llvm/lib/CodeGen/
MachineRegionInfo.cpp 26 MachineDominatorTree *DT, MachineRegion *Parent) :
27 RegionBase<RegionTraits<MachineFunction>>(Entry, Exit, RI, DT, Parent) {
  /external/llvm/lib/Target/WebAssembly/
Relooper.cpp 164 : Parent(nullptr), Id(-1), IsCheckedMultipleEntry(false) {
203 RelooperAlgorithm *Parent;
204 RelooperRecursor(RelooperAlgorithm *ParentInit) : Parent(ParentInit) {}
210 PreOptimizer(RelooperAlgorithm *Parent) : RelooperRecursor(Parent) {}
254 Parent->AddBlock(Split, Original->Id);
299 Analyzer(RelooperAlgorithm *Parent) : RelooperRecursor(Parent) {}
303 New->Id = Parent->ShapeIdCounter++;
304 Parent->Shapes.push_back(New)
    [all...]
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 228 BasicBlock *Parent = II->getParent();
237 if (BB->isLandingPad() && BB != Parent &&
238 isa<InvokeInst>(Parent->getTerminator())) {
247 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", NewBBs);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 46 WSDXML_ELEMENT *Parent;
  /external/clang/tools/libclang/
IndexDecl.cpp 35 const NamedDecl *Parent = nullptr) {
36 if (!Parent) Parent = D;
39 IndexCtx.indexTypeSourceInfo(D->getTypeSourceInfo(), Parent);
40 IndexCtx.indexNestedNameSpecifierLoc(D->getQualifierLoc(), Parent);
257 // FIXME: Parent for the following is CXIdxEntity_Unexposed with no USR,
268 // FIXME: Parent for the following is CXIdxEntity_Unexposed with no USR,
IndexingContext.h 381 void indexTypeSourceInfo(TypeSourceInfo *TInfo, const NamedDecl *Parent,
384 void indexTypeLoc(TypeLoc TL, const NamedDecl *Parent,
388 const NamedDecl *Parent,
393 void indexBody(const Stmt *S, const NamedDecl *Parent,
435 const NamedDecl *Parent,
441 const NamedDecl *Parent,
  /external/mesa3d/src/mesa/drivers/x11/
xm_buffer.c 285 assert(xrb->Parent);
286 alloc_back_buffer(xrb->Parent, width, height);
461 ximage = XGetImage(xrb->Parent->display,
474 ximage = XCreateImage(xrb->Parent->display,
475 xrb->Parent->xm_visual->visinfo->visual,
476 xrb->Parent->xm_visual->visinfo->depth,
531 GC gc = XCreateGC(xrb->Parent->display, xrb->pixmap, 0, NULL);
533 XPutImage(xrb->Parent->display,
541 XFreeGC(xrb->Parent->display, gc);
  /external/libchrome/base/memory/
scoped_ptr_unittest.cc 240 // Test assignment to a scoped_ptr deleter of parent type.
699 struct Parent {};
700 struct Child : public Parent {};
702 scoped_ptr<Parent> p(new Parent);
703 scoped_ptr<Parent> p2(new Parent);
705 scoped_ptr<Parent> pnull;
772 struct Parent {};
773 struct Child : public Parent {};
    [all...]
  /external/libweave/third_party/chromium/base/memory/
scoped_ptr_unittest.cc 241 // Test assignment to a scoped_ptr deleter of parent type.
700 struct Parent {};
701 struct Child : public Parent {};
703 scoped_ptr<Parent> p(new Parent);
704 scoped_ptr<Parent> p2(new Parent);
706 scoped_ptr<Parent> pnull;
773 struct Parent {};
774 struct Child : public Parent {};
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 80 /// \brief Including \p Parent adds the context of Parent to the hash..
81 void DIEHash::addParentContext(const DIE &Parent) {
83 DEBUG(dbgs() << "Adding parent context to hash...\n");
88 const DIE *Cur = &Parent;
193 if (const DIE *Parent = Entry.getParent())
194 addParentContext(*Parent);
501 if (const DIE *Parent = Die.getParent())
502 addParentContext(*Parent);

Completed in 341 milliseconds

1 23 4 5 6 7 8 91011