HomeSort by relevance Sort by last modified time
    Searched full:site (Results 401 - 425 of 4550) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 213 // project and the current editor's site.
221 IWorkbenchPartSite site = getUiParent().getEditor().getSite(); local
222 if (site == null) {
223 AdtPlugin.log(IStatus.ERROR, "Failed to get editor site for UiPackageAttribute"); //$NON-NLS-1$
230 ShowInPackageViewAction action = new ShowInPackageViewAction(site);
  /prebuilts/tools/common/http-client/src/
httpcomponents-client-4.1.1-src.zip 
  /external/chromium_org/chrome/test/functional/webdriver_pages/
settings.py 597 """Returns the site field value."""
655 """Returns a list of the site names.
657 This is a public function since the test needs to check if the site is
663 '//div[@class="cookie-site"]')]
667 """Returns a list where each item is the list of cookie names of each site.
685 def DeleteSiteData(self, site):
686 """Delete a site entry with its cookies in cookies content settings.
689 site: The site string as it appears in the UI.
695 if site_list[i] == site
    [all...]
  /external/chromium_org/content/public/browser/
content_browser_client.h 181 // rendered by the same process, rather than using process-per-site-instance.
233 // Called when a site instance is first associated with a process.
236 // Called from a site instance's destructor.
256 // Returns true if the passed in URL should be assigned as the site of the
257 // current SiteInstance, if it does not yet have a site.
345 // config with a site.
348 const GURL& site);
357 // site. A storage partition configuration includes a domain of the embedder's
362 // |site| is known to not be in the default partition. This is useful in
373 const GURL& site,
    [all...]
  /external/opencv/cvaux/src/
cvlcm.cpp 90 #define _CV_IS_SITE_REFLEX( SITE ) ((SITE) ->node[0] == (SITE) ->node[1])
91 #define _CV_IS_EDGE_REFLEX( EDGE ) (( (EDGE)->site[0]->node[0] == (EDGE)->site[0]->node[0] ) || \
92 ( (EDGE)->site[1]->node[0] == (EDGE)->site[1]->node[0] ) )
94 #define _CV_INITIALIZE_CVLCMDATA(STRUCT,SITE,EDGE,NODE)\
95 { (STRUCT)->psite = SITE ; (STRUCT)->pedge = EDGE; (STRUCT)->pnode = NODE;}
182 // pSite: in, original site (pNode must be the begin point of pEdg
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sysconfig.py 12 'purelib': '{base}/lib/python{py_version_short}/site-packages',
13 'platlib': '{platbase}/lib/python{py_version_short}/site-packages',
42 'purelib': '{base}/Lib/site-packages',
43 'platlib': '{base}/Lib/site-packages',
52 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
53 'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
70 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
71 'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
79 'purelib': '{userbase}/lib/python/site-packages',
80 'platlib': '{userbase}/lib/python/site-packages'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sysconfig.py 12 'purelib': '{base}/lib/python{py_version_short}/site-packages',
13 'platlib': '{platbase}/lib/python{py_version_short}/site-packages',
42 'purelib': '{base}/Lib/site-packages',
43 'platlib': '{base}/Lib/site-packages',
52 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
53 'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
70 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
71 'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
79 'purelib': '{userbase}/lib/python/site-packages',
80 'platlib': '{userbase}/lib/python/site-packages'
    [all...]
  /packages/apps/Browser/res/values-tl/
strings.xml 42 <string name="ssl_warnings_header" msgid="79744901983636370">"May mga problema sa certificate na pangseguridad para sa site na ito."</string>
48 <string name="ssl_mismatch" msgid="3809794439740523641">"Ang pangalan ng site ay hindi tumutugma sa pangalan sa certificate."</string>
152 <item msgid="6092441301001006473">"Mga pinakamadalas bisitahing site"</item>
165 <string name="pref_autologin_progress" msgid="8333244467048833461">"Pag-sign in sa mga site ng Google gamit ang <xliff:g id="ID_1">%s</xliff:g>"</string>
211 <string name="pref_privacy_enable_geolocation_summary" msgid="8437020934664306205">"Payagan ang mga site na humiling ng access sa iyong lokasyon"</string>
221 <string name="pref_security_show_security_warning_summary" msgid="5260098316025397525">"Magpakita ng babala kung mayroong problema sa seguridad ng site"</string>
223 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Payagan ang mga site na mag-save at magbasa ng data ng cookie"</string>
311 <string name="popup_window_attempt" msgid="31565781154067629">"Bigyang-daan ang site na ito na magbukas ng pop-up window?"</string>
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 240 # For standalone apps, we have our own minimal site.py. We don't need
241 # all the cruft of the real site.py.
351 SITE_PACKAGES = os.path.join(LIB, "site-packages")
579 # add site.pyc
581 "site" + PYC_EXT)
637 # manually add our own site.py
638 site = mf.add_module("site")
639 site.__code__ = self._getSiteCode()
640 mf.scan_code(site.__code__, site
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_process_host_impl.cc 204 // Map of site to process, to ensure we only have one RenderProcessHost per
205 // site in process-per-site mode. Each map is specific to a BrowserContext.
211 void RegisterProcess(const std::string& site, RenderProcessHost* process) {
212 map_[site] = process;
215 RenderProcessHost* FindProcess(const std::string& site) {
216 SiteToProcessMap::iterator i = map_.find(site);
1687 std::string site = SiteInstance::GetSiteForURL(browser_context, url) local
1712 std::string site = SiteInstance::GetSiteForURL(browser_context, url) local
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_prefs.cc 138 bool TranslatePrefs::IsSiteBlacklisted(const std::string& site) const {
139 return IsValueBlacklisted(kPrefTranslateSiteBlacklist, site);
142 void TranslatePrefs::BlacklistSite(const std::string& site) {
143 BlacklistValue(kPrefTranslateSiteBlacklist, site);
146 void TranslatePrefs::RemoveSiteFromBlacklist(const std::string& site) {
147 RemoveValueFromBlacklist(kPrefTranslateSiteBlacklist, site);
  /external/chromium_org/content/browser/frame_host/
render_frame_host_manager.h 188 // will be used for a pending cross-site navigation.
299 // cross-site URLs. Enabled unless we see the --process-per-tab command line
355 // either cross-site request is (in the new process model), or when required
371 // A RenderViewHost used to load a cross-site page. This remains hidden
372 // while a cross-site request is pending until it calls DidNavigate. It may
393 // A map of site instance ID to swapped out RenderViewHosts. This may include
  /external/grub/
INSTALL 155 you can create a site shell script called `config.site' that gives
157 `configure' looks for `PREFIX/share/config.site' if it exists, then
158 `PREFIX/etc/config.site' if it exists. Or, you can set the
159 `CONFIG_SITE' environment variable to the location of the site script.
160 A warning: not all `configure' scripts look for a site script.
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/project/4.1.1/
project-4.1.1.pom 243 <site>
247 </site>
277 <artifactId>maven-site-plugin</artifactId>
367 <artifactId>maven-site-plugin</artifactId>
391 <phase>pre-site</phase>
396 <outputDirectory>${basedir}/target/site/examples</outputDirectory>
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsub_task.cc 131 // to="john@site.com/gcomm582B14C9">
144 // to="john@site.com/gcomm582B14C9">
168 // to="john@site.com/gcomm582B14C9"
  /external/clang/docs/
ReleaseNotes.rst 27 site <http://llvm.org/releases/>`_.
31 Site <http://clang.llvm.org>`_ or the `LLVM Web
32 Site <http://llvm.org>`_.
  /external/llvm/docs/HistoricalNotes/
2003-06-25-Reoptimizer1.txt 79 call site. If the time has arrived for a particular call site, we pop
81 call site.
  /external/llvm/utils/lit/tests/
discovery.py 52 # CHECK-ASEXEC-ERR: loading suite config '{{.*}}/exec-discovery/lit.site.cfg'
55 # CHECK-ASEXEC-ERR: loaded config '{{.*}}/exec-discovery/lit.site.cfg'
89 # Check that we don't recurse infinitely when loading an site specific test
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
XF86keysym.h 92 #define XF86XK_VendorHome 0x1008FF34 /* Display vendor home web site */
94 #define XF86XK_Shop 0x1008FF36 /* Display shopping web site */
100 #define XF86XK_Finance 0x1008FF3C /* Display financial site */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XF86keysym.h 92 #define XF86XK_VendorHome 0x1008FF34 /* Display vendor home web site */
94 #define XF86XK_Shop 0x1008FF36 /* Display shopping web site */
100 #define XF86XK_Finance 0x1008FF3C /* Display financial site */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XF86keysym.h 92 #define XF86XK_VendorHome 0x1008FF34 /* Display vendor home web site */
94 #define XF86XK_Shop 0x1008FF36 /* Display shopping web site */
100 #define XF86XK_Finance 0x1008FF3C /* Display financial site */
  /cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java 75 * the declaration site of the variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
README.rtf 30 and announce them on the mailing list antlr-interest@antlr.org and on my site http://classdump.org/pages/antlr\
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page.h 69 // normal site.
  /external/chromium/chrome/browser/
crash_recovery_browsertest.cc 55 // There was an earlier bug (1270510) in process-per-site in which the max page

Completed in 1367 milliseconds

<<11121314151617181920>>