Home
last modified time | relevance | path

Searched refs:constraint_it (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/trace_processor/dynamic/
Ddescendant_generator.cc104 auto constraint_it = in ComputeTable() local
108 PERFETTO_DCHECK(constraint_it != cs.end()); in ComputeTable()
109 if (constraint_it == cs.end() || in ComputeTable()
110 constraint_it->value.type != SqlValue::Type::kLong) { in ComputeTable()
113 auto start_id = constraint_it->value.AsLong(); in ComputeTable()
Dancestor_generator.cc116 auto constraint_it = in ComputeTable() local
120 PERFETTO_DCHECK(constraint_it != cs.end()); in ComputeTable()
121 if (constraint_it == cs.end() || in ComputeTable()
122 constraint_it->value.type != SqlValue::Type::kLong) { in ComputeTable()
125 auto start_id = constraint_it->value.AsLong(); in ComputeTable()
Dexperimental_annotated_stack_generator.cc132 auto constraint_it = in ComputeTable() local
136 PERFETTO_DCHECK(constraint_it != cs.end()); in ComputeTable()
137 if (constraint_it == cs.end() || in ComputeTable()
138 constraint_it->value.type != SqlValue::Type::kLong) { in ComputeTable()
142 uint32_t start_id = static_cast<uint32_t>(constraint_it->value.AsLong()); in ComputeTable()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_op_registry.cc285 auto constraint_it = in RegisterCompilationKernels() local
288 constraint_it != op_registration->type_constraints.end() in RegisterCompilationKernels()
289 ? &constraint_it->second in RegisterCompilationKernels()