/external/perfetto/src/trace_processor/dynamic/ |
D | ancestor_generator.cc | 27 uint32_t GetConstraintColumnIndex(AncestorGenerator::Ancestor type, in GetConstraintColumnIndex() 30 case AncestorGenerator::Ancestor::kSlice: in GetConstraintColumnIndex() 32 case AncestorGenerator::Ancestor::kStackProfileCallsite: in GetConstraintColumnIndex() 85 AncestorGenerator::AncestorGenerator(Ancestor type, in AncestorGenerator() 113 case Ancestor::kSlice: in ComputeTable() 116 case Ancestor::kStackProfileCallsite: in ComputeTable() 127 case Ancestor::kSlice: in CreateSchema() 130 case Ancestor::kStackProfileCallsite: in CreateSchema() 142 case Ancestor::kSlice: in TableName() 144 case Ancestor::kStackProfileCallsite: in TableName()
|
D | ancestor_generator.h | 37 enum class Ancestor { kSlice = 1, kStackProfileCallsite = 2 }; enum 39 AncestorGenerator(Ancestor type, TraceProcessorContext* context); 56 Ancestor type_;
|
/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/llvm-project/clang-tools-extra/clangd/ |
D | ConfigProvider.cpp | 114 for (llvm::StringRef Ancestor : Ancestors) { in fromAncestorRelativeYAMLFiles() local 115 auto It = Cache.find(Ancestor); in fromAncestorRelativeYAMLFiles() 118 llvm::SmallString<256> ConfigPath = Ancestor; in fromAncestorRelativeYAMLFiles() 122 It = Cache.try_emplace(Ancestor, ConfigPath.str(), Ancestor).first; in fromAncestorRelativeYAMLFiles()
|
D | TidyProvider.cpp | 92 llvm::StringRef Ancestor(Parent.begin(), I->end() - Parent.begin()); in apply() local 93 auto It = Cache.find(Ancestor); in apply() 97 llvm::SmallString<256> ConfigPath = Ancestor; in apply() 99 It = Cache.try_emplace(Ancestor, ConfigPath.str()).first; in apply()
|
D | Selection.cpp | 845 const Node *Ancestor = Root; in commonAncestor() local 846 while (Ancestor->Children.size() == 1 && !Ancestor->Selected) in commonAncestor() 847 Ancestor = Ancestor->Children.front(); in commonAncestor() 851 return Ancestor != Root ? Ancestor : nullptr; in commonAncestor()
|
/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/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckObjCInstMethSignature.cpp | 28 static bool AreTypesCompatible(QualType Derived, QualType Ancestor, in AreTypesCompatible() argument 33 if (Derived->isAnyPointerType() && Ancestor->isAnyPointerType()) in AreTypesCompatible() 36 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
/external/rust/crates/walkdir/src/ |
D | lib.rs | 563 stack_path: Vec<Ancestor>, 588 struct Ancestor { struct 599 impl Ancestor { argument 602 fn new(dent: &DirEntry) -> io::Result<Ancestor> { in new() argument 604 Ok(Ancestor { path: dent.path().to_path_buf(), handle: handle }) in new() 609 fn new(dent: &DirEntry) -> io::Result<Ancestor> { in new() argument 610 Ok(Ancestor { path: dent.path().to_path_buf() }) in new() 898 let ancestor = Ancestor::new(&dent) in push()
|
/external/llvm-project/clang-tools-extra/clang-tidy/utils/ |
D | ExprSequence.cpp | 54 bool isDescendantOrEqual(const Stmt *Descendant, const Stmt *Ancestor, in isDescendantOrEqual() argument 56 if (Descendant == Ancestor) in isDescendantOrEqual() 59 if (isDescendantOrEqual(Parent, Ancestor, Context)) in isDescendantOrEqual()
|
/external/perfetto/test/trace_processor/dynamic/ |
D | index | 3 # Ancestor slice table.
|
/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-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1403 Instruction *Ancestor = Parent.first; in Descale() local 1405 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Ancestor)) { in Descale() 1413 Worklist.Add(Ancestor); in Descale() 1415 } else if (Ancestor->getOpcode() == Instruction::Trunc) { in Descale() 1421 assert((Ancestor->getOpcode() != Instruction::SExt || NoSignedWrap) && in Descale() 1424 if (Ancestor == Val) in Descale() 1429 assert(Ancestor->hasOneUse() && "Drilled down when more than one use!"); in Descale() 1430 Ancestor = Ancestor->user_back(); in Descale()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1486 Instruction *Ancestor = Parent.first; in Descale() local 1488 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Ancestor)) { in Descale() 1496 Worklist.push(Ancestor); in Descale() 1498 } else if (Ancestor->getOpcode() == Instruction::Trunc) { in Descale() 1504 assert((Ancestor->getOpcode() != Instruction::SExt || NoSignedWrap) && in Descale() 1507 if (Ancestor == Val) in Descale() 1512 assert(Ancestor->hasOneUse() && "Drilled down when more than one use!"); in Descale() 1513 Ancestor = Ancestor->user_back(); in Descale()
|
/external/perfetto/src/trace_processor/ |
D | trace_processor_impl.cc | 751 new AncestorGenerator(AncestorGenerator::Ancestor::kSlice, &context_))); in TraceProcessorImpl() 753 AncestorGenerator::Ancestor::kStackProfileCallsite, &context_))); in TraceProcessorImpl()
|
/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()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDecl.cpp | 1339 Scope *Ancestor = S->getParent(); in EnterDeclaratorContext() local 1340 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); in EnterDeclaratorContext() 1341 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); in EnterDeclaratorContext() 1359 Scope *Ancestor = S->getParent(); in ExitDeclaratorContext() local 1360 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); in ExitDeclaratorContext() 1361 CurContext = Ancestor->getEntity(); in ExitDeclaratorContext()
|
/external/perfetto/docs/analysis/ |
D | trace-processor.md | 297 ### Ancestor slice
|