Home
last modified time | relevance | path

Searched defs:visited (Results 1 – 25 of 195) sorted by relevance

12345678

/external/auto/factory/src/main/java/com/google/auto/factory/processor/
DTypeVariables.java51 public ImmutableSet<TypeVariable> visitArray(ArrayType t, Set<Element> visited) { in visitArray()
56 public ImmutableSet<TypeVariable> visitDeclared(DeclaredType t, Set<Element> visited) { in visitDeclared()
68 public ImmutableSet<TypeVariable> visitTypeVariable(TypeVariable t, Set<Element> visited) { in visitTypeVariable()
80 public ImmutableSet<TypeVariable> visitUnion(UnionType t, Set<Element> visited) { in visitUnion()
89 public ImmutableSet<TypeVariable> visitIntersection(IntersectionType t, Set<Element> visited) { in visitIntersection()
98 public ImmutableSet<TypeVariable> visitWildcard(WildcardType t, Set<Element> visited) { in visitWildcard()
/external/python/cpython2/Tools/gdb/
Dlibpython.py201 def write_field_repr(self, name, out, visited): argument
253 def proxyval(self, visited): argument
292 def write_repr(self, out, visited): argument
410 def _write_instance_repr(out, visited, name, pyop_attrdict, address): argument
492 def proxyval(self, visited): argument
514 def write_repr(self, out, visited): argument
540 def proxyval(self, visited): argument
549 def write_repr(self, out, visited): argument
566 def proxyval(self, visited): argument
607 def proxyval(self, visited): argument
[all …]
/external/python/cpython3/Tools/gdb/
Dlibpython.py232 def write_field_repr(self, name, out, visited): argument
284 def proxyval(self, visited): argument
323 def write_repr(self, out, visited): argument
440 def _write_instance_repr(out, visited, name, pyop_attrdict, address): argument
522 def proxyval(self, visited): argument
544 def write_repr(self, out, visited): argument
570 def proxyval(self, visited): argument
579 def write_repr(self, out, visited): argument
623 def proxyval(self, visited): argument
700 def proxyval(self, visited): argument
[all …]
/external/ComputeLibrary/src/graph/algorithms/
DTopologicalSort.cpp46 inline bool all_inputs_are_visited(const INode *node, const std::vector<bool> &visited) in all_inputs_are_visited()
77 std::vector<bool> visited(g.nodes().size(), false); in bfs() local
132 std::vector<bool> visited(g.nodes().size(), false); in dfs() local
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DFieldWalker.kt44 val visited = walkRefs(root, rootStatics) in <lambda>() constant
60 val visited = IdentityHashMap<Any, Ref>() in <lambda>() constant
/external/antlr/tool/src/main/java/org/antlr/misc/
DGraph.java83 Set<Node<T>> visited = new OrderedHashSet<Node<T>>(); in sort() local
97 public void DFS(Node<T> n, Set<Node<T>> visited, ArrayList<T> sorted) { in DFS()
/external/mesa3d/src/panfrost/midgard/
Dmidgard_helper_invocations.c105 struct set *visited = _mesa_set_create(NULL, in mir_analyze_helper_terminate() local
214 struct set *visited = _mesa_set_create(NULL, in mir_analyze_helper_requirements() local
/external/linux-kselftest/tools/testing/selftests/bpf/map_tests/
Dlpm_trie_map_batch_ops.c43 static void map_batch_verify(int *visited, __u32 max_entries, in map_batch_verify()
69 int map_fd, *values, *visited; in test_lpm_trie_map_batch_ops() local
Darray_map_batch_ops.c39 static void map_batch_verify(int *visited, __u32 max_entries, int *keys, in map_batch_verify()
71 int map_fd, *keys, *visited; in __test_map_lookup_and_update_batch() local
Dhtab_map_batch_ops.c40 static void map_batch_verify(int *visited, __u32 max_entries, in map_batch_verify()
80 int map_fd, *keys, *visited, key; in __test_map_lookup_and_delete_batch() local
/external/antlr/tool/src/main/java/org/antlr/analysis/
DMachineProbe.java49 Set<DFAState> visited = new HashSet<DFAState>(); in getAnyDFAPathToTarget() local
54 DFAState targetState, Set<DFAState> visited) { in getAnyDFAPathToTarget()
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/debug/
DDebugSequenceOverheadBenchmark.kt35 val visited = HashSet<Node>() in generateRecursiveSequence() constant
/external/rust/crates/grpcio-sys/grpc/src/proto/
Dgen_build_yaml.py24 def update_deps(key, proto_filename, deps, deps_external, is_trans, visited): argument
/external/grpc-grpc/src/proto/
Dgen_build_yaml.py24 def update_deps(key, proto_filename, deps, deps_external, is_trans, visited): argument
/external/clang/lib/StaticAnalyzer/Checkers/
DUnreachableCodeChecker.cpp52 CFGBlocksSet reachable, visited; in checkEndAnalysis() local
172 CFGBlocksSet &visited) { in FindUnreachableEntryPoints()
/external/skia/tests/
DPDFPrimitivesTest.cpp278 static sk_sp<TestImageFilter> Make(bool visited = false) { in Make()
282 bool visited() const { return fVisited; } in visited() function in __anona34cda860111::TestImageFilter
293 TestImageFilter(bool visited) : INHERITED(nullptr, 0, nullptr), fVisited(visited) {} in TestImageFilter()
302 bool visited = buffer.readBool(); in CreateProc() local
/external/tensorflow/tensorflow/core/graph/
Dalgorithm.cc42 std::vector<bool> visited(g.num_node_ids(), false); in DFSFromHelper() local
139 std::vector<bool> visited(g.num_node_ids(), false); in ReverseDFSFromHelper() local
223 std::vector<bool> visited(g->num_node_ids()); in PruneForReverseReachability() local
/external/clang/lib/Analysis/
DCFGReachabilityAnalysis.cpp44 llvm::BitVector visited(analyzed.size()); in mapReachability() local
/external/guava/android/guava/src/com/google/common/reflect/
DTypeVisitor.java60 private final Set<Type> visited = Sets.newHashSet(); field in TypeVisitor
/external/guava/guava/src/com/google/common/reflect/
DTypeVisitor.java60 private final Set<Type> visited = Sets.newHashSet(); field in TypeVisitor
/external/guice/core/test/com/google/inject/internal/
DSpiUtils.java226 Object visited = b.acceptTargetVisitor(visitor); in mapInjectorTest() local
427 Object visited = b.acceptTargetVisitor(visitor); in mapModuleTest() local
621 Object visited = b.acceptTargetVisitor(visitor); in setInjectorTest() local
702 Object visited = binding.acceptTargetVisitor(visitor); in setModuleTest() local
927 Object visited = b.acceptTargetVisitor(visitor); in optionalInjectorTest() local
1081 Object visited = b.acceptTargetVisitor(visitor); in optionalModuleTest() local
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph_test.cc378 std::vector<const HloComputation*> visited; in TEST_F() local
512 std::vector<HloComputation*> visited; in TEST_F() local
531 std::vector<const HloComputation*> visited; in TEST_F() local
544 std::vector<HloComputation*> visited; in TEST_F() local
/external/rust/crates/protobuf/src/reflect/file/
Dfds.rs52 let mut visited = HashSet::new(); in fds_extend_with_public() localVariable
/external/perfetto/tools/
Dgen_merged_protos60 def get_transitive_imports(rel_path, visited): argument
/external/harfbuzz_ng/src/
Dhb-repacker.hh123 hb_set_t visited; in _promote_extensions_if_needed() local
158 hb_set_t visited; in _promote_extensions_if_needed() local

12345678