Searched refs:visited (Results 1 - 25 of 125) sorted by relevance

12345

/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h37 IndexVector visited(m);
38 visited.setConstant(-1);
42 visited(j) = j; // Do not include the diagonal element
47 if (visited(idx) != j )
49 visited(idx) = j;
57 if(visited(idx) != j)
59 visited(idx) = j;
69 visited.setConstant(-1);
75 visited(j) = j; // Do not include the diagonal element
80 if (visited(id
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DGraph.java82 Set<Node> visited = new OrderedHashSet<Node>();
84 while ( visited.size() < nodes.size() ) {
89 if ( !visited.contains(n) ) break;
91 DFS(n, visited, sorted);
96 public void DFS(Node n, Set<Node> visited, ArrayList<Object> sorted) { argument
97 if ( visited.contains(n) ) return;
98 visited.add(n);
102 DFS(target, visited, sorted);
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
H A Dtest_treeadapters.py40 assert expected == handler.visited
H A Dsupport.py139 self.visited = []
142 self.visited.append('startDocument')
145 self.visited.append('endDocument')
156 self.visited.append(('startElement', name, attrs))
159 self.visited.append(('endElement', name))
162 self.visited.append(('startElementNS', name, qname, dict(attrs)))
165 self.visited.append(('endElementNS', name, qname))
168 self.visited.append(('characters', content))
171 self.visited.append(('ignorableWhitespace', whitespace))
174 self.visited
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFAOptimizer.java128 protected Set visited = new HashSet(); field in class:DFAOptimizer
157 visited.clear();
172 visited.clear();
177 visited.clear();
186 if ( visited.contains(sI) ) {
187 return; // already visited
189 visited.add(sI);
216 if ( visited.contains(sI) ) {
217 return; // already visited
219 visited
[all...]
H A DMachineProbe.java49 Set<DFAState> visited = new HashSet<DFAState>();
50 return getAnyDFAPathToTarget(dfa.startState, targetState, visited);
54 DFAState targetState, Set<DFAState> visited) {
56 visited.add(startState);
65 if (!visited.contains(e.target)) {
67 (DFAState) e.target, targetState, visited);
53 getAnyDFAPathToTarget(DFAState startState, DFAState targetState, Set<DFAState> visited) argument
/external/libdaemon/doc/
H A Dstyle.css27 a:link, a:visited { color: #900000; }
/external/v8/src/compiler/
H A Dselect-lowering.cc68 BoolVector visited(graph()->NodeCount(), false, &zone);
70 visited[source->id()] = true;
76 if (!visited[input->id()]) {
78 visited[input->id()] = true;
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp44 llvm::BitVector visited(analyzed.size());
57 if (visited[block->getBlockID()])
59 visited[block->getBlockID()] = true;
/external/guava/guava/src/com/google/common/reflect/
H A DTypeVisitor.java53 * <p>One {@code Type} is visited at most once. The second time the same type is visited, it's
63 private final Set<Type> visited = Sets.newHashSet(); field in class:TypeVisitor
71 if (type == null || !visited.add(type)) {
72 // null owner type, or already visited;
93 visited.remove(type);
/external/mockito/cglib-and-asm/src/org/mockito/asm/signature/
H A DSignatureReader.java147 boolean visited, inner;
173 visited = false;
179 if (!visited) {
192 visited = false;
203 visited = true;
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
H A DGraphUtil.py98 Returns (visited, removes, orphans).
100 * visited: the set of visited nodes
110 visited, removes, orphans = set([head]), set(), set()
130 if tail not in visited:
131 visited.add(tail)
137 return visited, removes, orphans
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp226 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, argument
239 unsigned oldSize = visited.size();
240 visited.insert(N);
241 if (visited.size() != oldSize) {
246 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit;
260 DenseSet<SDNode *> visited; local
262 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) {
265 setSubgraphColorHelper(N, "blue", visited, 0, printed);
267 setSubgraphColorHelper(N, "green", visited, 0, printed);
/external/avahi/man/
H A Dxmltoman.css20 a:link, a:visited { color: #900000; }
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
H A Dcommon.css39 #butter a:visited,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp10 // path-sensitive analysis. We mark any path visited, and then walk the CFG as a
11 // post-analysis to determine what was never visited.
47 CFGBlocksSet &visited);
56 CFGBlocksSet reachable, visited; local
111 if (!visited.count(CB->getBlockID()))
112 FindUnreachableEntryPoints(CB, reachable, visited);
176 CFGBlocksSet &visited) {
177 visited.insert(CB->getBlockID());
188 if (!visited.count((*I)->getBlockID()))
189 // If we haven't previously visited th
174 FindUnreachableEntryPoints(const CFGBlock *CB, CFGBlocksSet &reachable, CFGBlocksSet &visited) argument
[all...]
/external/clang/www/
H A Dmenu.css37 #menu a:visited {
/external/compiler-rt/www/
H A Dmenu.css37 #menu a:visited {
/external/libcxx/www/
H A Dmenu.css37 #menu a:visited {
/external/libcxxabi/www/
H A Dmenu.css37 #menu a:visited {
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h113 &visited = t2; local
115 visited.clear();
116 visited.setBit(from);
119 if (visited.setBit(idx))
122 return targets.intersectsWith(visited);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_graph.h138 int visited; member in class:nv50_ir::Graph::Node
196 if (visited == v)
198 visited = v;
204 return visited;
/external/v8/test/cctest/
H A Dtest-global-handles.cc80 visited.Add(*o);
83 List<Object*> visited; member in class:TestObjectVisitor
130 // Nothing was visited.
131 CHECK(visitor.visited.length() == 0);
139 // The first grough should still be visited, since only one object is
154 // The first group was visited.
155 CHECK(visitor.visited.length() == 2);
156 CHECK(visitor.visited.Contains(*g1s1.location()));
157 CHECK(visitor.visited.Contains(*g1s2.location()));
173 // The second group was visited
[all...]
/external/valgrind/docs/lib/
H A Dvg_basic.css2 a, a:link, a:visited, a:active { color: #74240f; }
20 code a, code a:link, code a:visited, code a:active, code a:hover {
/external/llvm/unittests/Support/
H A DPath.cpp666 v_t visited; local
677 visited.push_back(path::filename(i->path()));
679 v_t::const_iterator a0 = std::find(visited.begin(), visited.end(), "a0");
680 v_t::const_iterator aa1 = std::find(visited.begin(), visited.end(), "aa1");
681 v_t::const_iterator ab1 = std::find(visited.begin(), visited.end(), "ab1");
682 v_t::const_iterator dontlookhere = std::find(visited.begin(), visited
[all...]

Completed in 941 milliseconds

12345