HomeSort by relevance Sort by last modified time
    Searched refs:Parent (Results 426 - 450 of 818) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 51 #define BASIC_SVAL(Id, Parent) Id ## Kind,
52 #define ABSTRACT_SVAL_WITH_KIND(Id, Parent) Id ## Kind,
311 #define NONLOC_SVAL(Id, Parent) Id ## Kind,
517 #define LOC_SVAL(Id, Parent) Id ## Kind,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCFragment.h 66 MCSection *Parent;
85 uint8_t BundlePadding, MCSection *Parent = nullptr);
102 MCSection *getParent() const { return Parent; }
103 void setParent(MCSection *Value) { Parent = Value; }
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 166 GepNode *Parent;
172 GepNode() : Flags(0), Parent(0), Idx(0), PTy(0) {}
177 Parent = N->Parent;
220 OS << "Parent:" << GN.Parent;
335 N->Parent = F->second;
365 Nx->Parent = PN; // Link Nx to the previous node.
422 GepNode *PN = N->Parent;
469 // Include everything except flags and parent
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 133 /// \brief Check whether \c Loc is included or expanded from \c Parent.
134 bool isNestedIn(SourceLocation Loc, FileID Parent) {
139 } while (!SM.isInFileID(Loc, Parent));
180 for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc);
181 Parent.isValid(); Parent = getIncludeOrExpansionLoc(Parent))
417 assert(RegionStack.size() >= ParentIndex && "parent not in stack");
441 // sure we don't overlap the parent region with it.
553 // corresponding to the parent
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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 = 1
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Input.c 699 TCP_CB *Parent;
709 Parent = NULL;
797 Parent = Tcb;
799 Tcb = TcpCloneTcb (Parent);
1350 // Tcb is a new child of the listening Parent,
1353 if (Parent != NULL) {
1354 Tcb->Parent = Parent;
1386 // Tcb is a child of Parent, and it doesn't survive
1391 if ((Parent != NULL) && (Tcb != NULL)) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpInput.c 733 TCP_CB *Parent;
746 Parent = NULL;
856 Parent = Tcb;
858 Tcb = TcpCloneTcb (Parent);
    [all...]
  /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/ExecutionEngine/MCJIT/
MCJIT.h 31 LinkingSymbolResolver(MCJIT &Parent,
33 : ParentEngine(Parent), ClientResolver(std::move(Resolver)) {}
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 395 BasicBlock *Parent = Inst->getParent();
398 if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition))))
402 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator());
531 BasicBlock *Parent = Term->getParent();
537 PhiInserter.AddAvailableValue(Loops ? SuccFalse : Parent, Default);
542 Dominator.addBlock(Parent, false);
548 if (PI->first == Parent) {
562 Term->setCondition(PhiInserter.GetValueInMiddleOfBlock(Parent));
  /external/python/cpython2/Lib/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/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 44 : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(0) {
85 void BasicBlock::setParent(Function *parent) {
89 // Set Parent=parent, updating instruction symtab entries as appropriate.
90 InstList.setSymTabObject(&Parent, parent);
Globals.cpp 124 void GlobalVariable::setParent(Module *parent) {
127 Parent = parent;
203 void GlobalAlias::setParent(Module *parent) {
206 Parent = 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/llvm/lib/IR/
GCOV.cpp 139 if (Parent.getChecksum() != CfgChecksum) {
140 errs() << "File checksums do not match: " << Parent.getChecksum()
279 if (Parent.getChecksum() != CfgChecksum) {
280 errs() << "File checksums do not match: " << Parent.getChecksum()
401 FI.addBlockLine(Parent.getFilename(), N, this);
524 // "..", the parent directory, is replaced with "^".
  /external/clang/lib/AST/
DeclBase.cpp 76 DeclContext *Parent, std::size_t Extra) {
77 assert(!Parent || &Parent->getParentASTContext() == &Ctx);
783 // 1. this is the translation unit (and thus has no parent)
885 /// \brief Find the parent context of this context that will be
888 /// Generally, the parent lookup context is the semantic context. However, for
889 /// a friend function the parent lookup context is the lexical context, which
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopInfo.h 342 /// Because of this, it is added as a member of all parent loops, and is added
350 /// parent pointer of OldChild to be null and the NewChild to be this loop.
355 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
368 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
478 // Check the parent loop pointer.
482 "Loop is not a subloop of its parent!");
812 // Remove the subloop from its current parent...
817 assert(I != SLP->SubLoops.end() &&"SubLoop not a child of parent?");
818 SLP->SubLoops.erase(I); // Remove from parent...
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
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:__anon32590::StrongPHIElimination::Node
418 Node *Parent = parent.getPointer();
419 Node *Grandparent = Parent->parent.getPointer();
421 while (Parent != Grandparent) {
422 N->parent.setPointer(Grandparent);
424 Parent = Parent->parent.getPointer()
    [all...]

Completed in 4063 milliseconds

<<11121314151617181920>>