Searched refs:Ancestor (Results 1 – 14 of 14) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | CwiseBinaryOp.h | 22 typedef typename remove_all<Lhs>::type Ancestor; 23 typedef typename traits<Ancestor>::XprKind XprKind; 25 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime, 26 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime, 27 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime, 28 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
|
D | CwiseTernaryOp.h | 22 typedef typename remove_all<Arg1>::type Ancestor; 23 typedef typename traits<Ancestor>::XprKind XprKind; 25 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime, 26 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime, 27 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime, 28 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckObjCInstMethSignature.cpp | 29 static bool AreTypesCompatible(QualType Derived, QualType Ancestor, in AreTypesCompatible() argument 34 if (Derived->isAnyPointerType() && Ancestor->isAnyPointerType()) in AreTypesCompatible() 37 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
/external/syzkaller/vendor/google.golang.org/appengine/datastore/ |
D | metadata.go | 63 q := NewQuery(propertyKind).Ancestor(kindKey)
|
D | query.go | 112 func (q *Query) Ancestor(ancestor *Key) *Query { func 277 dst.Ancestor = keyToProto(appID, q.ancestor)
|
/external/syzkaller/dashboard/app/ |
D | admin.go | 62 Ancestor(key).
|
D | jobs.go | 128 Ancestor(bugKey).
|
D | reporting.go | 641 Ancestor(bugKey).
|
D | api.go | 648 Ancestor(bugKey).
|
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/ |
D | datastore_v3.pb.go | 1045 …Ancestor *bool `protobuf:"varint,5,req,name=ancestor" json:"ancestor,omitempty… member 1062 if m != nil && m.Ancestor != nil { 1063 return *m.Ancestor 1314 …Ancestor *Reference `protobuf:"bytes,17,opt,name=ancestor" json:"ancestor,omitem… member 1380 return m.Ancestor 1780 Ancestor *Reference `protobuf:"bytes,18,opt,name=ancestor" json:"ancestor,omitempty"` member 1806 return m.Ancestor
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1209 Instruction *Ancestor = Parent.first; in Descale() local 1211 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Ancestor)) { in Descale() 1219 Worklist.Add(Ancestor); in Descale() 1221 } else if (Ancestor->getOpcode() == Instruction::Trunc) { in Descale() 1227 assert((Ancestor->getOpcode() != Instruction::SExt || NoSignedWrap) && in Descale() 1230 if (Ancestor == Val) in Descale() 1235 assert(Ancestor->hasOneUse() && "Drilled down when more than one use!"); in Descale() 1236 Ancestor = Ancestor->user_back(); in Descale()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1323 Instruction *Ancestor = Parent.first; in Descale() local 1325 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Ancestor)) { in Descale() 1333 Worklist.Add(Ancestor); in Descale() 1335 } else if (Ancestor->getOpcode() == Instruction::Trunc) { in Descale() 1341 assert((Ancestor->getOpcode() != Instruction::SExt || NoSignedWrap) && in Descale() 1344 if (Ancestor == Val) in Descale() 1349 assert(Ancestor->hasOneUse() && "Drilled down when more than one use!"); in Descale() 1350 Ancestor = Ancestor->user_back(); in Descale()
|
/external/antlr/runtime/ObjC/Framework/test/runtime/tree/ |
D | CommonTreeTest.m | 337 STAssertNotNil(ancestor, @"Ancestor should not be nil");
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 1168 Scope *Ancestor = S->getParent(); in EnterDeclaratorContext() local 1169 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); in EnterDeclaratorContext() 1170 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); in EnterDeclaratorContext() 1182 Scope *Ancestor = S->getParent(); in ExitDeclaratorContext() local 1183 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); in ExitDeclaratorContext() 1184 CurContext = Ancestor->getEntity(); in ExitDeclaratorContext()
|