HomeSort by relevance Sort by last modified time
    Searched full:visited (Results 101 - 125 of 1387) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 95 SmallPtrSet<BasicBlock*, 32> Visited;
103 Visited.clear();
157 if (!Visited.insert(SuccBB).second)
170 if (LI->getLoopFor(ExitBB) == L && Visited.insert(ExitBB).second)
StructurizeCFG.cpp 176 BBSet Visited;
296 // for outer loops will be visited before backedges for inner loops.
318 // Make sure we have visited all blocks in this loop before moving back to
353 if (Visited.count(Exit))
362 if (Visited.count(Succ))
442 if (Visited.count(*PI)) {
447 if (Visited.count(Other) && !Loops.count(Other) &&
474 if (Visited.count(Entry))
491 // Reset the visited nodes
492 Visited.clear()
    [all...]
  /external/llvm/test/Transforms/GVN/
2008-12-15-CacheVisited.ll 2 ; Cached results must be added to and verified against the visited sets.
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 138 int visited; member in class:nv50_ir::Graph::Node
196 if (visited == v)
198 visited = v;
204 return visited;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/signature/
SignatureVisitor.java 80 * Visits the class bound of the last visited formal type parameter.
87 * Visits an interface bound of the last visited formal type parameter.
168 * Visits an unbounded type argument of the last visited class or inner
174 * Visits a type argument of the last visited class or inner class type.
SignatureReader.java 147 boolean visited, inner;
173 visited = false;
179 if (!visited) {
192 visited = false;
203 visited = true;
  /external/proguard/src/proguard/classfile/visitor/
SubclassTraveler.java 28 * travel to direct subclasses of the visited class.
  /external/skia/tools/skp/page_sets/other/
CRASHING-skia_wikipedia_galaxynexus.json 36 # Why: #6 Alexa most visited worldwide; from robertphillips
  /system/update_engine/payload_generator/
topological_sort.h 27 // the nodes, in order visited, in 'out'.
  /external/google-breakpad/src/testing/gtest/test/
gtest-typed-test_test.cc 98 // Static members of the fixture class template can be visited via
102 // Typedefs in the fixture class template can be visited via the
110 // Non-static members of the fixture class must be visited via
118 // Static members of the fixture class template can also be visited
243 // Static members of the fixture class template can be visited via
247 // Non-static members of the fixture class must be visited via
255 // Static members of the fixture class template can also be visited
  /external/gtest/test/
gtest-typed-test_test.cc 98 // Static members of the fixture class template can be visited via
102 // Typedefs in the fixture class template can be visited via the
110 // Non-static members of the fixture class must be visited via
118 // Static members of the fixture class template can also be visited
243 // Static members of the fixture class template can be visited via
247 // Non-static members of the fixture class must be visited via
255 // Static members of the fixture class template can also be visited
  /external/protobuf/gtest/test/
gtest-typed-test_test.cc 98 // Static members of the fixture class template can be visited via
102 // Typedefs in the fixture class template can be visited via the
110 // Non-static members of the fixture class must be visited via
118 // Static members of the fixture class template can also be visited
243 // Static members of the fixture class template can be visited via
247 // Non-static members of the fixture class must be visited via
255 // Static members of the fixture class template can also be visited
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-typed-test_test.cc 98 // Static members of the fixture class template can be visited via
102 // Typedefs in the fixture class template can be visited via the
110 // Non-static members of the fixture class must be visited via
118 // Static members of the fixture class template can also be visited
243 // Static members of the fixture class template can be visited via
247 // Non-static members of the fixture class must be visited via
255 // Static members of the fixture class template can also be visited
  /ndk/sources/third_party/googletest/googletest/test/
gtest-typed-test_test.cc 98 // Static members of the fixture class template can be visited via
102 // Typedefs in the fixture class template can be visited via the
110 // Non-static members of the fixture class must be visited via
118 // Static members of the fixture class template can also be visited
243 // Static members of the fixture class template can be visited via
247 // Non-static members of the fixture class must be visited via
255 // Static members of the fixture class template can also be visited
  /external/eigen/Eigen/src/SparseLU/
SparseLU_panel_dfs.h 92 // Representative visited before
135 { // Visited before
197 * marker[i] == jj, if i was visited during dfs of current column jj;
198 * marker1[i] >= jcol, if i was visited by earlier columns in this panel;
246 continue; // krow visited before, go to the next nonzero
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 50 /// preorder visited by DFS. It's postorder number is initially zero and set
83 /// Return true if this block has been preorder visited.
95 assert(I != PostNumbers.end() && "block not visited by DFS");
149 /// is contained in the loop and has not been visited, then mark it preorder
150 /// visited and return true.
  /external/testng/src/main/java/org/testng/internal/
Graph.java 220 // of all predecessors. "visited" is the set of items we've
225 Set<T> visited = new HashSet<>(); local
227 visited.add(o);
232 if (! visited.contains(obj)) {
233 visited.add(obj);
  /external/v8/src/compiler/
control-equivalence.h 83 bool visited; // Indicates node has already been visited. member in struct:v8::internal::compiler::final::NodeData
108 // \ / - Pre-visit: When N1 is visited in direction D the preferred
111 // | N been visited, we switch the direction and start considering
114 // / \ to D have been visited, we pop N and call VisitPost(N).
  /external/v8/test/webkit/fast/js/
JSON-parse-reviver.js 72 debug("Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering.");
91 testPassed("Ensured that property was visited despite Array length being reduced.");
98 testFailed("Visited unexpected property " + i + " with value " + v);
154 debug("Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering.");
164 testFailed("Visited unexpected property " + i + " with value " + v);
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
SpiUtils.java 192 Object visited = b.acceptTargetVisitor(visitor); local
193 if(visited instanceof MapBinderBinding) {
194 if(visited.equals(mapbinder)) {
197 otherMapBindings.add(visited);
329 Object visited = b.acceptTargetVisitor(visitor); local
330 if(visited instanceof MapBinderBinding) {
332 if(visited.equals(mapbinder)) {
335 otherMapBindings.add(visited);
490 Object visited = b.acceptTargetVisitor(visitor); local
491 if(visited != null)
567 Object visited = binding.acceptTargetVisitor(visitor); local
749 Object visited = b.acceptTargetVisitor(visitor); local
893 Object visited = b.acceptTargetVisitor(visitor); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 311 getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited);
314 /// use it to define the order in which the functions should be visited.
421 const SetOfConstDecls &Visited,
436 // Otherwise, if we visited the function before, do not reanalyze it.
437 return Visited.count(D);
442 const SetOfConstDecls &Visited) {
446 if (Visited.count(D)) {
469 // the previously processed functions. Use external Visited set to identify
473 SetOfConstDecls Visited;
489 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel)
    [all...]
  /external/guava/
javadoc-stylesheet.css 12 a:link, a:visited {
86 .bar a, .bar a:link, .bar a:visited, .bar a:active {
167 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
372 caption a:link, caption a:hover, caption a:active, caption a:visited {
416 td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
  /external/icu/icu4j/
stylesheet7.css 19 a:link, a:visited {
93 .bar a, .bar a:link, .bar a:visited, .bar a:active {
174 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
385 caption a:link, caption a:hover, caption a:active, caption a:visited {
429 td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
  /external/libjpeg-turbo/java/doc/
stylesheet.css 12 a:link, a:visited {
86 .bar a, .bar a:link, .bar a:visited, .bar a:active {
167 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
372 caption a:link, caption a:hover, caption a:active, caption a:visited {
416 td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 42 // body has not been visited yet.
44 // body has been visited.
48 visited. */
50 worklist, and the body has been visited. */
53 /// A DenseMap that records visited states of FunctionDecls.
56 /// The CallExpr whose body is currently being visited. This is used for

Completed in 1038 milliseconds

1 2 3 45 6 7 8 91011>>