HomeSort by relevance Sort by last modified time
    Searched refs:Site (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_site_list.h 23 // This class represents a "site list" that is part of a content pack. It is
26 // Every site has -- among other attributes -- a whitelist of URLs that are
29 // which can tell for a given URL if it is part of the whitelist for any site.
35 struct Site {
36 Site(const base::string16& name, int category_id);
37 ~Site();
39 // The human-readable name for the site.
47 // A list of URL patterns that should be whitelisted for the site.
51 // for the site.
59 // Creates a copy of the site list
    [all...]
supervised_user_site_list.cc 69 // (via URL patterns or hostname hashes) and the URL in the corresponding Site
72 SupervisedUserSiteList::Site* site) {
73 std::vector<std::string>* patterns = &site->patterns;
91 std::vector<std::string>* hashes = &site->hostname_hashes;
128 SupervisedUserSiteList::Site::Site(const base::string16& name,
133 SupervisedUserSiteList::Site::~Site() {}
158 void SupervisedUserSiteList::GetSites(std::vector<Site>* sites)
    [all...]
supervised_user_url_filter.h 78 std::vector<SupervisedUserSiteList::Site*>* sites) const;
81 // behavior and whether it is on a site list.
87 // Asynchronously loads the specified site lists from disk and updates the
88 // filter to recognize each site on them.
supervised_user_url_filter.cc 35 std::vector<SupervisedUserSiteList::Site> sites;
59 // Adds a single URL pattern for the site identified by |site_id|.
62 // Adds a single hostname SHA1 hash for the site identified by |site_id|.
118 std::vector<SupervisedUserSiteList::Site> sites;
121 for (std::vector<SupervisedUserSiteList::Site>::const_iterator it =
123 const SupervisedUserSiteList::Site& site = *it; local
124 contents_->sites.push_back(site);
127 site.patterns.begin();
128 pattern_it != site.patterns.end(); ++pattern_it)
    [all...]
supervised_user_service_unittest.cc 348 std::vector<SupervisedUserSiteList::Site> sites;
373 // The site lists might be returned in any order, so we put them into a set.
375 for (std::vector<SupervisedUserSiteList::Site>::const_iterator it =
supervised_user_service.cc 225 std::vector<SupervisedUserSiteList::Site*> sites;
  /external/chromium_org/chrome/test/chromedriver/
archive.py 20 class Site(object):
26 def GetLatestRevision(site=Site.CONTINUOUS):
30 site: the archive site to check against, default to the continuous one.
32 url = site + '/%s/LAST_CHANGE'
36 def DownloadChrome(revision, dest_dir, site=Site.CONTINUOUS):
42 site: the archive site to download from, default to the continuous one
    [all...]
  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 62 private static final String EXTRA_SITE = "site";
66 private Site mSite = null;
68 static class Site implements Parcelable {
74 // These constants provide the set of features that a site may support
83 public Site(String origin) {
103 * Gets the number of features supported by this site.
114 * Gets the ID of the nth (zero-based) feature supported by this site.
117 * position in the list of features for this site. This is used both
173 private Site(Parcel in) {
180 public static final Parcelable.Creator<Site> CREATO
236 Site site = null; local
309 Site site = entry.getValue(); local
345 Site site = sitesIter.next(); local
387 Site site = entry.getValue(); local
480 Site site = getItem(position); local
622 Site site = (Site) view.getTag(); local
    [all...]
  /external/chromium_org/chrome/tools/
webforms_aggregator_unittests.py 38 <p>This is a mock site. Its mere purpose is to contribute towards testing \
125 """Site One has a registration form.
136 'Site One home page', 'Welcome to site one. It has a reg page!',
141 'Site One page 1',
147 'Site One page 2', 'Page 2!',
153 'Site One page 3', 'Page 3!',
159 'Site One signin',
165 'Site One signin', self.files['site1_home'])
175 """ Site Two has no registration page.""
    [all...]
  /external/chromium_org/third_party/cld/base/
vlog_is_on.h 51 // Atomic32 at every VLOG_IS_ON() call site. The level determines
52 // whether the site should log, and the epoch determines whether the
53 // site is stale and should be reinitialized. A verbosity level of
55 // the verbosity level. When the site is (re)initialized, a verbosity
90 // Each log site determines whether its log level is up to date by
93 // global epoch is advanced, invalidating all site epochs.
108 // The least significant half of a site is the epoch.
109 inline int SiteEpoch(Atomic32 site) { return site & 0x0000FFFF; }
111 // The most significant half of a site is the logging level
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 121 /// LPadToCallSiteMap - Map a landing pad's EH symbol to the call site
125 /// CallSiteMap - Map of invoke call site index values to associated begin
129 /// CurCallSite - The current call site index being processed, if any. 0 if
346 /// site indexes.
349 /// getCallSiteLandingPad - Get the call site indexes for a landing pad EH
353 "missing call site number for landing pad!");
358 /// associated call site.
363 /// setCallSiteBeginLabel - Map the begin label for a call site.
364 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) {
365 CallSiteMap[BeginLabel] = Site;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 48 /// pad site.
54 // The action table follows the call-site table in the LSDA. The individual
136 // Record the first action of the landing pad site.
140 // Information used when created the call-site table. The action record
141 // field of the call site record is the offset of the first associated
190 /// Compute the call-site table. The entry for an invoke has a try-range
238 // create a call-site entry with no landing pad for the region between the
241 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 };
242 CallSites.push_back(Site);
254 CallSiteEntry Site =
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
run_all_tests.py 202 download_site = archive.Site.CONTINUOUS
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 323 // Try to fold GEPs of constant-offset call site argument pointers. This
674 /// \brief Try to simplify a call site.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmdfs.h 319 DFS_SITENAME_INFO Site[1];
wininet.h     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/
tycho-metadata-model-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 
  /external/opencv/cvaux/src/
cvlee.cpp 118 CvVoronoiSiteInt* site; member in struct:CvVoronoiEdgeInt
199 // (site is an edge of polygon or a reflex vertex).
361 pReflexSite: out, pointer to reflex site,if any exist,else NULL
382 pTopSite: out, pointer to the most left site of polygon (it is the most left
418 pTopSite : in, the most left site of hole
429 Description : Compute the initial Voronoi Diagram for single site
433 pSite: in, pointer to site
491 Description : Function finds the nearest site for top vertex
502 Description : Function seeks for site, which has common bisector in
517 Description : Function seeks for site, which has common bisector i
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtilsImpl.js 530 contentHelper.appendStackTrace(callSiteStackTraceLabel || WebInspector.UIString("Call Site stack"), callSiteStackTrace);
TracingTimelineUIUtils.js 604 contentHelper.appendStackTrace(callSiteStackTraceLabel || WebInspector.UIString("Call Site stack"), callSiteStackTrace);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-model-3.2.1.jar 

Completed in 507 milliseconds

1 2