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

1 23 4 5

  /external/clang/include/clang/Analysis/
AnalysisContext.h 179 const StackFrameContext *getStackFrame(LocationContext const *Parent,
185 getBlockInvocationContext(const LocationContext *parent,
217 const LocationContext *Parent;
221 const LocationContext *parent)
222 : Kind(k), Ctx(ctx), Parent(parent) {}
231 const LocationContext *getParent() const { return Parent; }
266 const LocationContext *parent,
274 // The parent block of the callsite.
281 StackFrameContext(AnalysisDeclContext *ctx, const LocationContext *parent,
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 230 const DelayedDiagnosticPool *Parent;
236 DelayedDiagnosticPool(const DelayedDiagnosticPool *parent) : Parent(parent) {}
243 const DelayedDiagnosticPool *getParent() const { return Parent; }
247 return (Diagnostics.empty() && (Parent == NULL || Parent->empty()));
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 160 /// Add each synthetic statement in the CFG to the parent map, using the
161 /// source statement's parent.
273 AnalysisDeclContext::getStackFrame(LocationContext const *Parent, const Stmt *S,
275 return getLocationContextManager().getStackFrame(this, Parent, S, Blk, Idx);
279 AnalysisDeclContext::getBlockInvocationContext(const LocationContext *parent,
282 return getLocationContextManager().getBlockInvocationContext(this, parent,
299 const LocationContext *parent,
303 ID.AddPointer(parent);
326 const LocationContext *parent,
329 LOC::Profile(ID, ctx, parent, d)
    [all...]
  /external/clang/test/Analysis/
inline.cpp 59 class Parent {
67 class Child : public Parent {
85 class Parent {
90 Parent() : m_parent(0) {}
99 class Child : public Parent {
133 class Parent {
138 Parent() : m_parent(0) {}
147 class Child : virtual public Parent {
341 struct Parent {
346 struct A : Parent {
    [all...]
  /external/llvm/include/llvm/IR/
GlobalValue.h 63 Visibility(DefaultVisibility), Alignment(0), UnnamedAddr(0), Parent(0) {
73 Module *Parent; // The containing module.
296 inline Module *getParent() { return Parent; }
297 inline const Module *getParent() const { return Parent; }
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 128 DIE *Parent;
140 : Offset(0), Size(0), Abbrev(Tag, dwarf::DW_CHILDREN_no), Parent(0) {}
151 DIE *getParent() const { return Parent; }
152 /// Climb up the parent chain to get the compile unit DIE this DIE belongs
170 assert (Child->getParent() == this && "Unexpected DIE Parent!");
175 Child->Parent = this;
  /external/chromium/base/
bind_unittest.cc 59 class Parent {
68 class Child : public Parent {
187 int UnwrapNoRefParentRef(Parent& p) {
276 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
281 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
576 // const Parent* const_parent_ptr;
578 // Callback<Parent*(void)> pointer_same_cb =
579 // Bind(&PolymorphicIdentity<Parent*>, const_parent_ptr);
581 // Callback<Parent*(void)> pointer_super_cb =
582 // Bind(&PolymorphicIdentity<Parent*>, const_child_ptr)
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 487 // parent.
491 // as there is a single parent.
500 "used in the parent map.");
503 assert(false && "Found node that is not in the parent map.");
522 // Only one parent - do recursive memoization.
523 const ast_type_traits::DynTypedNode Parent = Parents[0];
524 if (Matcher.matches(Parent, this, &Result.Nodes)) {
531 Parent, Matcher, &Result.Nodes, MatchMode);
533 // same as the parent's result.
  /external/clang/lib/Format/
TokenAnnotator.cpp 180 FormatToken *Parent = Left->getPreviousNonComment();
183 (!Parent || Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
185 Parent->isUnaryOperator() || Parent->Type == TT_ObjCForIn ||
186 Parent->Type == TT_CastRParen ||
187 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown);
190 bool StartsObjCArrayLiteral = Parent && Parent->is(tok::at);
212 if (Parent != NULL && Parent->Type == TT_PointerOrReference
    [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 168 class Parent {
172 class Child: public Parent {};
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 301 LazyValueInfoCache *Parent;
304 : CallbackVH(V), Parent(P) { }
346 LazyValueInfoCache *Parent;
353 : Parent(P), Val(V), BB(B), BBLV(LV) { }
357 Parent->OverDefinedCache.insert(std::make_pair(BB, Val));
418 I = Parent->OverDefinedCache.begin(),
419 E = Parent->OverDefinedCache.end();
427 Parent->OverDefinedCache.erase(*I);
431 Parent->ValueCache.erase(*this);
    [all...]
ProfileInfo.cpp 299 const BasicBlock *Parent = P.find(BB)->second;
300 Edge e = getEdge(Parent,BB);
304 if (Parent != oldedge.first) {
307 BB = Parent;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 269 Parent(P), Default(D), Cases(C) { }
276 MachineBasicBlock *Parent;
  /external/llvm/lib/CodeGen/
SplitKit.cpp 379 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
449 // Can't remat, just insert a copy from parent.
617 "Parent changes value in extended range");
734 LiveInterval *Parent = &Edit->getParent();
739 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
741 // Find the nearest common dominator for parent values with multiple
749 assert(ParentVNI && "Parent not live at complement def");
759 // Keep directly defined parent values. This is either a PHI or an
794 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
800 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i)
    [all...]
StrongPHIElimination.cpp 69 /// from a normal union-find data structure. We steal two bits from the parent
82 Node(unsigned v) : value(v), rank(0) { parent.setPointer(this); }
86 PointerIntPair<Node*, 2> parent; member in struct:__anon23597::StrongPHIElimination::Node
415 Node *Parent = parent.getPointer();
416 Node *Grandparent = Parent->parent.getPointer();
418 while (Parent != Grandparent) {
419 N->parent.setPointer(Grandparent);
421 Parent = Parent->parent.getPointer()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 325 BasicBlock *Parent = cast<Instruction>(Condition)->getParent();
330 if (!User || User->getParent() != Parent)
338 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator());
456 BasicBlock *Parent = Term->getParent();
462 PhiInserter.AddAvailableValue(Loops ? SuccFalse : Parent, Default);
467 Dominator.addBlock(Parent, false);
473 if (PI->first == Parent) {
487 Term->setCondition(PhiInserter.GetValueInMiddleOfBlock(Parent));
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 321 // Array of bit values passed down from our parent.
322 // Set to all BIT_UNFILTERED's for Parent == NULL.
326 const FilterChooser *Parent;
334 // Parent emitter
341 FilterBitValues(FC.FilterBitValues), Parent(FC.Parent),
351 Parent(NULL), BestIndex(-1), BitWidth(BW), Emitter(E) {
362 const FilterChooser &parent)
365 Parent(&parent), BestIndex(-1), BitWidth(parent.BitWidth)
    [all...]
  /external/chromium_org/base/
bind_unittest.cc 58 class Parent {
67 class Child : public Parent {
359 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
364 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xmesaP.h 157 XMesaBuffer Parent; /**< The XMesaBuffer this renderbuffer belongs to */
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 552 StringRef Parent = llvm::sys::path::parent_path(OutputPath);
553 EC = llvm::sys::fs::create_directories(Parent);
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 518 const Stmt *Parent = S;
520 Parent = PM.getParent(Parent);
526 if (!Parent) {
535 L = UseEnd ? Parent->getLocEnd() : Parent->getLocStart();
    [all...]
  /external/llvm/include/llvm/Analysis/
Dominators.h 210 unsigned Parent;
214 InfoRec() : DFSNum(0), Parent(0), Semi(0), Label(0) {}
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 40 MachineBasicBlock* Parent;
124 /// parent function.

Completed in 660 milliseconds

1 23 4 5