/external/chromium_org/third_party/WebKit/ManualTests/ |
visited-link-new-window.html | 4 <title>Visited link coloring test</test> 6 :visited { 12 <h1>Visited link coloring test</h1> 13 <p>Make sure the link below is not colored as visited (delete the item 14 for visited-link.html from your history and restart if 16 <a href="resources/visited-link.html">Am I a visited link?</a>
|
redraw-page-cache-visited-links.html | 27 <div><a href="http://bugs.webkit.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div> 30 <li><a id="mylink" href="./resources/redraw-page-cache-visited-links-2.html">Click This Link Once</a><br><br> 31 <li value="4">The test passes if the link in Step 2 is rendered in a visited link color after the click.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/topsites/basic/ |
popup.html | 4 <h2>Most Visited:</h2>
|
/external/chromium_org/tools/perf/page_sets/ |
top_10_mobile.json | 10 "why": "#1 (Alexa) most visited page worldwide, picked a reasonable search term" 14 "why": "#2 (Alexa) most visited page worldwide, picked the most liked page" 18 "why": "#3 (Alexa) most visited page worldwide, picked a reasonable search term" 22 "why": "#4 (Alexa) most visited page worldwide, picked a reasonable search term" 26 "why": "#5 (Alexa) most visited page worldwide, picked a reasonable search term" 30 "why": "#6 (Alexa) most visited page worldwide, picked a reasonable page" 34 "why": "#10 (Alexa) most visited page worldwide, picked the most followed user" 38 "why": "#11 (Alexa) most visited page worldwide, picked a reasonable page" 42 "why": "#13 (Alexa) most visited page worldwide, picked the first real page" 46 "why": "#18 (Alexa) most visited page worldwide, picked a reasonable search term [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PVisitedNetworkIDHeader.java | 40 * P-Visited-Network-ID SIP Private Header: RFC 3455. 45 * particular visited network, is the existence of a roaming agreement between the home and 46 * the visited network. There is a need to indicate to the home network which one is the visited 50 * one or more proxies located in the visited network towards the home network 52 * . the visited network includes an identification that is known at the home network 57 * (e.g., different visited networks), a SIP proxy MAY insert a NEW P-Visited-Network-ID header 58 * if the request does not contain a P-Visited-Network-ID header with the same network 65 * P-Visited-Network-ID = "P-Visited-Network-ID" HCOLO [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
SceneGraphVisitorAdapter.java | 14 * Called when a {@link Geometry} is visited. 16 * @param geom The visited geometry 21 * Called when a {@link visit} is visited. 23 * @param geom The visited node
|
SceneGraphVisitor.java | 11 * Called when a spatial is visited in the scene graph. 13 * @param spatial The visited spatial
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ |
DoDidNodeVisitor.java | 7 * Pre-visit node. Visitable children (if any) of {@code node} will be visited afterwards. 14 * have been visited.
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/ |
MostVisitedSites.java | 19 * Interface for receiving the list of most visited urls. 23 * This is called when the list of most visited URLs is initially available or updated. 26 * @param titles Array of most visited url page titles. 27 * @param urls Array of most visited urls. 34 * Interface for receiving a thumbnail for a most visited site. 38 * Callback method for fetching thumbnail of a most visited URL. 50 * @param profile The profile for which to fetch most visited sites. 72 * Sets the MostVisitedURLsObserver to receive the list of most visited sites now or soon, and 75 * @param observer The MostVisitedURLsObserver to be called once when the most visited sites 76 * are initially available and again whenever the list of most visited sites changes [all...] |
/external/chromium_org/chrome/browser/resources/ntp4/ |
most_visited_page.css | 5 .most-visited { 10 .most-visited { 17 .most-visited:focus { 40 .most-visited .close-button { 49 html[dir=rtl] .most-visited .close-button { 54 .most-visited:hover .close-button { 59 .most-visited .close-button:hover { 63 .most-visited .favicon { 75 html[dir='rtl'] .most-visited .favicon { 79 .most-visited .color-stripe [all...] |
/external/chromium_org/chrome/browser/android/ |
most_visited_sites.h | 16 // Provides the list of most visited sites and their thumbnails to Java. 43 // The profile whose most visited sites will be queried. 46 // The observer to be notified when the list of most visited sites changes. 49 // The maximum number of most visited sites to return.
|
/external/chromium_org/components/dom_distiller/webui/resources/ |
about_dom_distiller.css | 6 a:visited {
|
/external/chromium_org/chrome/browser/history/ |
most_visited_tiles_experiment.h | 15 // types of actions carried out by the Most Visited Tile Placement experiment. 21 // The number of Most Visited Tile Placement experiment actions logged. 25 // Class for implementing the Most Visited Tile Placement experiment. 31 // Returns true if this user is part of the Most Visited Tile Placement 37 // Visited recommendations to drop below eight. 53 // Helper method to log the actions carried out by the Most Visited Tile
|
/external/llvm/unittests/Support/ |
Path.cpp | 308 v_t visited; local 319 visited.push_back(path::filename(i->path())); 321 v_t::const_iterator a0 = std::find(visited.begin(), visited.end(), "a0"); 322 v_t::const_iterator aa1 = std::find(visited.begin(), visited.end(), "aa1"); 323 v_t::const_iterator ab1 = std::find(visited.begin(), visited.end(), "ab1"); 324 v_t::const_iterator dontlookhere = std::find(visited.begin(), visited.end() [all...] |
/cts/tools/signature-tools/templates/ |
Styles.st | 8 a.default:visited {color: blue; text-decoration: none} 12 a.discreet:visited {color: black; text-decoration: none}
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
Graph.java | 82 Set<Node> visited = new OrderedHashSet<Node>(); local 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) { 97 if ( visited.contains(n) ) return; 98 visited.add(n); 102 DFS(target, visited, sorted);
|
/external/chromium/chrome/browser/resources/ntp4/ |
new_tab_theme.css | 3 #most-visited-settings { 13 html[bookmarkbarattached='true'] #most-visited-settings { 51 :visited, 102 /* Most Visited ***************************************************************/ 104 .most-visited, 105 .most-visited > .title { 109 .most-visited:focus:not(.filler) .thumbnail-wrapper, 110 .most-visited:hover .thumbnail-wrapper {
|
most_visited_page.css | 6 .most-visited { 10 .most-visited { 17 .most-visited:focus { 74 .most-visited:focus .edit-bar, 75 .most-visited:hover .edit-bar { 79 .most-visited:hover .edit-bar { 137 .most-visited .title { 188 .most-visited:focus:not(.filler) .thumbnail-wrapper, 189 .most-visited:hover .thumbnail-wrapper { 195 .most-visited:hover .thumbnail-wrapper [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
top_sites.json | 13 "description": "An object encapsulating a most visited URL, such as the URLs on the new tab page.", 15 "url": {"type": "string", "description": "The most visited URL."},
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
most_visited_iframe.css | 18 a:visited {
|
most_visited_title.js | 7 * @fileoverview Rendering for iframed most visited titles.
|
/external/chromium_org/chrome/browser/search/ |
most_visited_iframe_source.h | 20 // Number of Most Visited elements on the NTP for logging purposes. 22 // Name of the histogram keeping track of Most Visited clicks. 42 // Logs the click on a Most Visited tile for a specific |provider|. Note that 48 // specified Most Visited |provider|.
|
/external/chromium_org/tools/grit/grit/testdata/ |
header.html | 14 A:visited { COLOR: #551a8b} 15 .fl:visited { COLOR: #551a8b} 20 .a, .a:link, .a:visited { COLOR: #008000} 24 .q A:visited { COLOR: #00c} 35 .c:visited { COLOR: #551a8b}
|
/external/proguard/src/proguard/classfile/visitor/ |
ClassHierarchyTraveler.java | 28 * optionally travel to the visited class, its superclass, its interfaces, and 45 * @param visitThisClass specifies whether to visit the originally visited 48 * the visited classes. 50 * the visited classes. 52 * the visited classes.
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/ |
ImportTask.java | 66 int visited = 0; local 68 mListener.onImportProgress(visited, total, null); 72 visited++; 84 mListener.onImportProgress(visited, total, importedPath); 88 mListener.onImportFinish(objectsNotImported, visited);
|