HomeSort by relevance Sort by last modified time
    Searched refs:Parent (Results 101 - 125 of 285) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/lib/IR/
BasicBlock.cpp 43 : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(nullptr) {
55 assert(NewParent && "Expected a parent");
56 assert(!Parent && "Already has a parent");
88 void BasicBlock::setParent(Function *parent) {
89 // Set Parent=parent, updating instruction symtab entries as appropriate.
90 InstList.setSymTabObject(&Parent, parent);
Instruction.cpp 25 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
37 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
47 assert(!Parent && "Instruction still linked in the program!");
54 Parent = P;
397 // instructions, just check to see whether the parent of the use matches up.
GCOV.cpp 138 if (Parent.getChecksum() != CfgChecksum) {
139 errs() << "File checksums do not match: " << Parent.getChecksum()
276 if (Parent.getChecksum() != CfgChecksum) {
277 errs() << "File checksums do not match: " << Parent.getChecksum()
396 FI.addBlockLine(Parent.getFilename(), N, this);
519 // "..", the parent directory, is replaced with "^".
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
124 public override ITree Parent {
126 return parent;
129 parent = (CommonTree)value;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
149 public override ITree Parent
153 return parent;
158 parent = (CommonTree)value;
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.h 83 virtual bool selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 166 GepNode *Parent;
172 GepNode() : Flags(0), Parent(0), Idx(0), PTy(0) {}
177 Parent = N->Parent;
221 OS << "Parent:" << GN.Parent;
336 N->Parent = F->second;
366 Nx->Parent = PN; // Link Nx to the previous node.
423 GepNode *PN = N->Parent;
470 // Include everything except flags and parent
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 165 for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc);
166 Parent.isValid(); Parent = getIncludeOrExpansionLoc(Parent))
388 assert(RegionStack.size() >= ParentIndex && "parent not in stack");
412 // sure we don't overlap the parent region with it.
451 /// \brief Check whether \c Loc is included or expanded from \c Parent.
452 bool isNestedIn(SourceLocation Loc, FileID Parent) {
457 } while (!SM.isInFileID(Loc, Parent));
512 // corresponding to the parent
    [all...]
  /external/clang/include/clang/Sema/
Scope.h 128 /// The parent scope for this scope. This is null for the translation-unit
154 /// FnParent - If this scope has a parent scope that is a function body, this
200 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag)
202 Init(Parent, ScopeFlags);
435 /// containedInPrototypeScope - Return true if this or a parent scope
471 void Init(Scope *parent, unsigned flags);
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 60 void VisitChild(ExprParent Parent, const Stmt *S) {
63 Calls.push_back(CallRecord(Parent, cast<Expr>(S), AllocCall.first,
  /external/clang/tools/libclang/
CXCursor.h 51 CXCursor MakeCXCursor(const clang::Attr *A, const clang::Decl *Parent,
56 CXCursor MakeCXCursor(const clang::Stmt *S, const clang::Decl *Parent,
  /external/llvm/lib/Analysis/
CFG.cpp 116 while (const Loop *Parent = L->getParentLoop())
117 L = Parent;
  /external/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 129 // assumes that we only emit the LSDA when ending the parent function.
159 // Give catches and cleanups a name based off of their parent function and
242 // If this is a C++ catch funclet (or the parent function),
243 // emit a reference to the LSDA for the parent function.
250 // If this is the parent function in Win64 SEH, emit the LSDA immediately
712 // All funclets use the same parent frame offset currently.
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 32 LinkingSymbolResolver(MCJIT &Parent,
34 : ParentEngine(Parent), ClientResolver(std::move(Resolver)) {}
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 385 BasicBlock *Parent = Inst->getParent();
388 if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition))))
392 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator());
521 BasicBlock *Parent = Term->getParent();
527 PhiInserter.AddAvailableValue(Loops ? SuccFalse : Parent, Default);
532 Dominator.addBlock(Parent, false);
538 if (PI->first == Parent) {
552 Term->setCondition(PhiInserter.GetValueInMiddleOfBlock(Parent));
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
scope.go 22 // (parent) and contained (children) scopes. Objects may be inserted
26 parent *Scope
33 // NewScope returns a new, empty scope contained in the given parent
35 func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
36 s := &Scope{parent, nil, nil, pos, end, comment}
38 if parent != nil && parent != Universe {
39 parent.children = append(parent.children, s)
44 // Parent returns the scope's containing (parent) scope
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
scope.go 22 // (parent) and contained (children) scopes. Objects may be inserted
26 parent *Scope
33 // NewScope returns a new, empty scope contained in the given parent
35 func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
36 s := &Scope{parent, nil, nil, pos, end, comment}
38 if parent != nil && parent != Universe {
39 parent.children = append(parent.children, s)
44 // Parent returns the scope's containing (parent) scope
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 155 const CXXRecordDecl *parent = CXXMethod->getParent(); local
156 if (!parent->isLambda())
159 for (const LambdaCapture &LC : parent->captures()) {
191 /// Add each synthetic statement in the CFG to the parent map, using the
192 /// source statement's parent.
307 AnalysisDeclContext::getStackFrame(LocationContext const *Parent, const Stmt *S,
309 return getLocationContextManager().getStackFrame(this, Parent, S, Blk, Idx);
313 AnalysisDeclContext::getBlockInvocationContext(const LocationContext *parent,
316 return getLocationContextManager().getBlockInvocationContext(this, parent,
333 const LocationContext *parent,
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 76 DeclContext *Parent, std::size_t Extra) {
77 assert(!Parent || &Parent->getParentASTContext() == &Ctx);
740 // 1. this is the translation unit (and thus has no parent)
842 /// \brief Find the parent context of this context that will be
845 /// Generally, the parent lookup context is the semantic context. However, for
846 /// a friend function the parent lookup context is the lexical context, which
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 44 Insts.Parent = this;
71 /// When an MBB is added to an MF, we need to update the parent pointer of the
94 /// When we add an instruction to a basic block list, we update its parent
98 N->setParent(Parent);
102 MachineFunction *MF = Parent->getParent();
106 /// When we remove an instruction from a basic block list, we update its parent
119 /// update the parent pointers and the use/def lists.
124 assert(Parent->getParent() == FromList.Parent->getParent() &&
125 "MachineInstr parent mismatch!")
    [all...]

Completed in 1275 milliseconds

1 2 3 45 6 7 8 91011>>