HomeSort by relevance Sort by last modified time
    Searched full:sites (Results 1 - 25 of 712) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/doclava/src/com/google/doclava/
DoclavaDiff.java 45 private final List<FederatedSite> sites = new ArrayList<FederatedSite>(); field in class:DoclavaDiff
54 sites.add(new FederatedSite("Android", new URL("http://manatee/doclava/android")));
55 sites.add(new FederatedSite("GWT", new URL("http://manatee/doclava/gwt")));
56 //sites.add(new FederatedSite("Crore", new URL("http://manatee/doclava/crore")));
78 * sites.0.name = projectA
79 * sites.0.url = http://proja.domain.com/reference
80 * sites.1.name = projectB
81 * sites.1.url = http://projb.domain.com
83 * packages.0.sites.0.hasPackage = 1
84 * packages.0.sites.0.link = http://proja.domain.com/reference/java/lan
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.cpp 51 Vector<String> sites; local
52 copyToVector(m_sites, sites);
54 m_webPluginSiteDataManager->didGetSitesWithDataForAllPlugins(sites, m_callbackID);
62 void didGetSitesWithDataForSinglePlugin(const Vector<String>& sites)
64 for (size_t i = 0; i < sites.size(); ++i)
65 m_sites.add(sites[i]);
79 explicit ClearSiteDataState(WebPluginSiteDataManager* webPluginSiteDataManager, const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
81 , m_sites(sites)
177 void WebPluginSiteDataManager::didGetSitesWithData(const Vector<String>& sites, uint64_t callbackID)
185 Vector<RefPtr<APIObject> > sitesWK(sites.size())
    [all...]
WebPluginSiteDataManager.h 53 void didGetSitesWithData(const Vector<String>& sites, uint64_t callbackID);
55 void clearSiteData(ImmutableArray* sites, uint64_t flags, uint64_t maxAgeInSeconds, PassRefPtr<VoidCallback>);
59 void didGetSitesWithDataForSinglePlugin(const Vector<String>& sites, uint64_t callbackID);
75 void didGetSitesWithDataForAllPlugins(const Vector<String>& sites, uint64_t callbackID);
PluginProcessProxy.cpp 100 // Ask the plug-in process for the sites with data.
104 void PluginProcessProxy::clearSiteData(WebPluginSiteDataManager* webPluginSiteDataManager, const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
111 request.sites = sites;
120 m_connection->send(Messages::PluginProcess::ClearSiteData(sites, flags, maxAgeInSeconds, callbackID), 0);
207 m_connection->send(Messages::PluginProcess::ClearSiteData(request.sites, request.flags, request.maxAgeInSeconds, request.callbackID), 0);
229 void PluginProcessProxy::didGetSitesWithData(const Vector<String>& sites, uint64_t callbackID)
234 webPluginSiteDataManager->didGetSitesWithDataForSinglePlugin(sites, callbackID);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginProcess.messages.in 34 # Asks the plug-in process for sites with data. The plug-in process sends back a
35 # DidGetSitesWithData message with the sites.
38 # Asks the plug-in to clear data for the given sites. The plug-in process sends back
40 ClearSiteData(Vector<WTF::String> sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
PluginProcess.cpp 175 Vector<String> sites; local
177 sites = module->sitesWithData();
179 m_connection->send(Messages::PluginProcessProxy::DidGetSitesWithData(sites, callbackID), 0);
182 void PluginProcess::clearSiteData(const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
187 if (sites.isEmpty()) {
191 for (size_t i = 0; i < sites.size(); ++i)
192 module->clearSiteData(sites[i], flags, maxAgeInSeconds);
  /external/skia/
skia.gyp 9 # Full documentation at https://sites.google.com/site/skiadocs/
  /external/chromium/chrome/browser/history/
top_sites.h 39 // Stores the data for the top "most visited" sites. This includes a cache of
41 // of those sites.
100 // not invoked at this point then we load from the top sites service.
135 // Shuts down top sites.
157 // Returns true if the given URL is known to the top sites service.
161 // Returns true if the top sites list is full (i.e. we already have the
162 // maximum number of top sites). This function also returns false if
182 // History finished loading and we need to migrate top sites out of history.
189 // Enumeration of possible states the top sites backend can be in.
195 // the top sites db didn't exist, or if the db existed but is from an ol
    [all...]
top_sites_cache.h 20 // TopSitesCache caches the top sites and thumbnails for TopSites.
26 // The top sites.
61 // Removes any thumbnails that are no longer referenced by the top sites.
81 // sites have a lot of redirects, we instead use the MostVisitedURL* and the
97 // The top sites.
top_sites_backend.h 47 // Updates top sites database from the specified delta.
83 // Updates top sites.
  /external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/
HeightBasedTerrain.j3md 10 // slopeColorMap: the texture to be used for cliffs, and steep mountain sites
  /external/chromium/chrome/browser/ui/webui/options/
cookies_view_handler.h 43 // Remove all sites data.
46 // Remove selected sites data.
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
NetscapePluginModule.cpp 59 Vector<String> sites; local
62 tryGetSitesWithData(sites);
65 return sites;
77 bool NetscapePluginModule::tryGetSitesWithData(Vector<String>& sites)
88 // There were no sites with data.
97 sites.append(siteString);
  /libcore/benchmarks/src/benchmarks/regression/
SSLSocketBenchmark.java 41 SITES("https://sites.google.com"),
  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 235 private void addFeatureToSite(Map<String, Site> sites, String origin, int feature) {
237 if (sites.containsKey(origin)) {
238 site = (Site) sites.get(origin);
241 sites.put(origin, site);
258 Map<String, Site> sites = new HashMap<String, Site>();
262 addFeatureToSite(sites, iter.next(), Site.FEATURE_WEB_STORAGE);
265 askForGeolocation(sites);
270 public void askForGeolocation(final Map<String, Site> sites) {
276 addFeatureToSite(sites, iter.next(), Site.FEATURE_GEOLOCATION);
279 populateIcons(sites);
    [all...]
  /docs/source.android.com/src/compatibility/2.1/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /docs/source.android.com/src/compatibility/2.2/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /docs/source.android.com/src/compatibility/2.3/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /docs/source.android.com/src/compatibility/4.0/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /docs/source.android.com/src/compatibility/4.1/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /docs/source.android.com/src/compatibility/4.2/
versions.jd 7 applications and web sites may rely on predictable values for this string, and
  /external/chromium/chrome/browser/ui/webui/
thumbnail_source.h 23 // thumbnails and the history/top-sites backend that serves these.
  /external/doclava/res/assets/templates/
diff.cs 127 <?cs each:site = sites ?>
140 <?cs each:site = package.sites ?>
160 <?cs each:site = class.sites ?>
174 <?cs each:site = method.sites ?>
  /external/e2fsprogs/debian/
uuid-dev.README.Debian 5 available from other sites on the network, if you do a quick web
  /external/valgrind/unittest/output_tests/
output_test1.tmpl 11 Locks involved in this report .reporting last lock sites.: .L\d+, L\d+.

Completed in 722 milliseconds

1 2 3 4 5 6 7 8 91011>>