Home
last modified time | relevance | path

Searched refs:Ancestor (Results 1 – 14 of 14) sorted by relevance

/external/eigen/Eigen/src/Core/
DCwiseBinaryOp.h22 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
DCwiseTernaryOp.h22 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/
DCheckObjCInstMethSignature.cpp29 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/
Dmetadata.go63 q := NewQuery(propertyKind).Ancestor(kindKey)
Dquery.go112 func (q *Query) Ancestor(ancestor *Key) *Query { func
277 dst.Ancestor = keyToProto(appID, q.ancestor)
/external/syzkaller/dashboard/app/
Dadmin.go62 Ancestor(key).
Djobs.go128 Ancestor(bugKey).
Dreporting.go641 Ancestor(bugKey).
Dapi.go648 Ancestor(bugKey).
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
Ddatastore_v3.pb.go1045Ancestor *bool `protobuf:"varint,5,req,name=ancestor" json:"ancestor,omitempty… member
1062 if m != nil && m.Ancestor != nil {
1063 return *m.Ancestor
1314Ancestor *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/
DInstructionCombining.cpp1209 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/
DInstructionCombining.cpp1323 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/
DCommonTreeTest.m337 STAssertNotNil(ancestor, @"Ancestor should not be nil");
/external/clang/lib/Sema/
DSemaDecl.cpp1168 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()