Home
last modified time | relevance | path

Searched refs:site (Results 1 – 25 of 686) sorted by relevance

12345678910>>...28

/external/swiftshader/third_party/LLVM/test/
DMakefile57 extra-lit-site-cfgs::
58 .PHONY: extra-lit-site-cfgs
66 clang-lit-site-cfg: FORCE
67 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
68 extra-lit-site-cfgs:: clang-lit-site-cfg
98 check-local-dg:: site.exp
103 check-local-dg:: site.exp
107 check-local-lit:: lit.site.cfg Unit/lit.site.cfg
111 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
137 site.exp: FORCE
[all …]
/external/python/cpython2/Lib/test/
Dtest_site.py23 import site
27 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
30 os.makedirs(site.USER_SITE)
31 site.addsitedir(site.USER_SITE)
34 % (site.USER_SITE, exc))
48 self.old_base = site.USER_BASE
49 self.old_site = site.USER_SITE
50 self.old_prefixes = site.PREFIXES
56 site.USER_BASE = self.old_base
57 site.USER_SITE = self.old_site
[all …]
/external/doclava/src/com/google/doclava/
DDoclavaDiff.java103 for (FederatedSite site : sites) { in generateHdf()
105 data.setValue(base + ".name", site.name()); in generateHdf()
106 data.setValue(base + ".url", site.baseUrl().toString()); in generateHdf()
118 for (FederatedSite site : sites) { in generateHdf()
120 if (site.apiInfo().getPackages().containsKey(pkg)) { in generateHdf()
122 data.setValue(siteBase + ".link", site.linkFor(packageInfo.htmlPage())); in generateHdf()
139 for (FederatedSite site : sites) { in generateHdf()
141 ClassInfo classInfo = site.apiInfo().findClass(qualifiedClassName); in generateHdf()
144 data.setValue(siteBase + ".link", site.linkFor(classInfo.htmlPage())); in generateHdf()
168 for (FederatedSite site : sites) { in generateHdf()
[all …]
DFederationTagger.java49 public void addSiteUrl(String name, URL site) { in addSiteUrl() argument
53 federatedUrls.put(name, site); in addSiteUrl()
74 for (FederatedSite site : federatedSites) { in tag()
75 applyFederation(site, new ClassInfo[] { classDoc }); in tag()
81 for (FederatedSite site : federatedSites) { in tagAll()
82 applyFederation(site, classDocs); in tagAll()
150 private void federateMethods(FederatedSite site, ClassInfo federatedClass, ClassInfo localClass) { in federateMethods() argument
154 method.addFederatedReference(site); in federateMethods()
161 private void federateConstructors(FederatedSite site, ClassInfo federatedClass, in federateConstructors() argument
165 constructor.addFederatedReference(site); in federateConstructors()
[all …]
/external/testng/
DNOTES30 The program arguments are (replace the update site directory appropriately):
33site -site file:/usr/local/cbeust/java/testng-eclipse-update-site/site.xml -metadataRepository fi…
36site -site file:/Users/cbeust/java/testng-eclipse-update-site/site.xml -metadataRepository file:/…
38 This will generate the site in ~/java/testng-eclipse-update-site
/external/python/cpython2/Doc/library/
Dsite.rst1 :mod:`site` --- Site-specific configuration hook
4 .. module:: site
5 :synopsis: Module responsible for site-specific configuration.
7 **Source code:** :source:`Lib/site.py`
18 Importing this module will append site-specific paths to the module search path
22 pair: site-python; directory
23 pair: site-packages; directory
28 :file:`lib/site-packages` (on Windows) or
29 :file:`lib/python{X.Y}/site-packages` and then :file:`lib/site-python` (on
52 a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three
[all …]
/external/autotest/apache/conf/
Ddjango-directives39 RewriteCond /usr/lib/python2.7/site-packages/autotest/frontend/frontend.wsgi -f
40 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.7/site-packages/autotest/frontend/frontend…
42 RewriteCond /usr/lib/python2.6/site-packages/autotest/frontend/frontend.wsgi -f
43 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.6/site-packages/autotest/frontend/frontend…
45 RewriteCond /usr/lib/python2.5/site-packages/autotest/frontend/frontend.wsgi -f
46 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.5/site-packages/autotest/frontend/frontend…
48 RewriteCond /usr/lib/python2.4/site-packages/autotest/frontend/frontend.wsgi -f
49 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.4/site-packages/autotest/frontend/frontend…
80 # Force our own site-packages to be loaded by mod_python prior to
81 # mod_python's system python site-packages directory.
[all …]
Dtko-directives3 # These rules are disabled so our site specific ReWrite rules will work,
4 # these are located in site-misc-directives.
37 # libraries on python site-packages. Covers python versions 2.4 through 2.7.
38 RewriteCond /usr/lib/python2.7/site-packages/autotest/tko -d
39 RewriteRule ^/tko(.*) /usr/lib/python2.7/site-packages/autotest/tko/$1
41 RewriteCond /usr/lib/python2.6/site-packages/autotest/tko -d
42 RewriteRule ^/tko(.*) /usr/lib/python2.6/site-packages/autotest/tko/$1
44 RewriteCond /usr/lib/python2.5/site-packages/autotest/tko -d
45 RewriteRule ^/tko(.*) /usr/lib/python2.5/site-packages/autotest/tko/$1
47 RewriteCond /usr/lib/python2.4/site-packages/autotest/tko -d
[all …]
/external/lisa/libs/utils/
Denergy.py145 available_sites = [c.site for c in self._hwmon.get_channels('energy')]
163 self._channels = {site: site for site in available_sites}
180 site = s.channel.site
183 if site not in self.readings:
184 self.readings[site] = {
191 self.readings[site]['delta'] = value - self.readings[site]['last']
192 self.readings[site]['last'] = value
193 self.readings[site]['total'] += self.readings[site]['delta']
202 for site in self.readings:
203 self.readings[site]['delta'] = 0
[all …]
/external/v8/src/
Dallocation-site-scopes.h31 void update_current_site(AllocationSite* site) { in update_current_site() argument
32 *(current_.location()) = site; in update_current_site()
35 void InitializeTraversal(Handle<AllocationSite> site) { in InitializeTraversal() argument
36 top_ = site; in InitializeTraversal()
55 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object);
63 AllocationSiteUsageContext(Isolate* isolate, Handle<AllocationSite> site, in AllocationSiteUsageContext() argument
66 top_site_(site), in AllocationSiteUsageContext()
/external/v8/src/runtime/
Druntime-literals.cc244 Handle<AllocationSite> site; in RUNTIME_FUNCTION() local
255 site = creation_context.EnterNewScope(); in RUNTIME_FUNCTION()
258 creation_context.ExitScope(site, boilerplate); in RUNTIME_FUNCTION()
261 vector->Set(literals_slot, *site); in RUNTIME_FUNCTION()
263 site = Handle<AllocationSite>::cast(literal_site); in RUNTIME_FUNCTION()
265 Handle<JSObject>(JSObject::cast(site->transition_info()), isolate); in RUNTIME_FUNCTION()
268 AllocationSiteUsageContext usage_context(isolate, site, enable_mementos); in RUNTIME_FUNCTION()
272 usage_context.ExitScope(site, boilerplate); in RUNTIME_FUNCTION()
281 Handle<AllocationSite> site; in GetLiteralAllocationSite() local
290 site = creation_context.EnterNewScope(); in GetLiteralAllocationSite()
[all …]
/external/devlib/devlib/instrument/
D__init__.py109 return '{}_{}'.format(self.channel.site, self.channel.kind)
165 site = entry[:-len(suffix)]
167 name = '{}_{}'.format(site, measure)
170 site = entry
174 chan = InstrumentChannel(name, site, measure)
182 return '{}_{}'.format(self.site, self.kind)
192 def __init__(self, name, site, measurement_type, **attrs): argument
194 self.site = site
235 def add_channel(self, site, measure, name=None, **attrs): argument
237 name = '{}_{}'.format(site, measure)
[all …]
Ddaq.py86 site = os.path.splitext(entry)[0]
88 raw_file_map[site] = path
90 active_sites = unique([c.site for c in self.active_channels])
94 for site in active_sites:
96 site_file = raw_file_map[site]
98 site_readers[site] = csv.reader(fh)
102 raise HostError(message.format(site, tempdir))
106 for site, reader in site_readers.iteritems():
107 channel_order.extend(['{}_{}'.format(site, kind)
/external/curl/tests/data/
Dtest109838 ftp://ftp-site/moo/1098 ftp://ftp-site/moo/1098 --proxy http://%HOSTIP:%HTTPPORT
49 GET ftp://ftp-site/moo/1098 HTTP/1.1
50 Host: ftp-site:21
54 GET ftp://ftp-site/moo/1098 HTTP/1.1
55 Host: ftp-site:21
/external/autotest/frontend/
Dfrontend.wsgi3 path_list = ['/usr/local/autotest/site-packages',
5 '/usr/lib/python2.7/site-packages/autotest',
6 '/usr/lib/python2.6/site-packages/autotest',
7 '/usr/lib/python2.5/site-packages/autotest',
8 '/usr/lib/python2.4/site-packages/autotest']
/external/autotest/frontend/afe/
Dadmin.py54 admin.site.register(models.AtomicGroup, AtomicGroupAdmin)
71 admin.site.register(models.Label, LabelAdmin)
78 admin.site.register(models.User, UserAdmin)
255 admin.site.register(models.Host, HostAdmin)
267 admin.site.register(models.Test, TestAdmin)
274 admin.site.register(models.Profiler, ProfilerAdmin)
295 admin.site.register(models.AclGroup, AclGroupAdmin)
314 admin.site.register(models.DroneSet, DroneSetAdmin)
316 admin.site.register(models.Drone)
324 admin.site.register(models.Job, JobAdmin)
[all …]
/external/fonttools/Windows/
Dmcmillan.bat6site-packages\FontTools\fontTools\encodings;C:\Python23\Lib\site-packages\FontTools\fontTools\misc…
/external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/
Dverify.bsh15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.htm…
20 File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" );
25 File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" );
30 File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" );
39 File htmlReportFile = new File( basedir, "target/site/jacoco-it/index.html" );
44 File xmlReportFile = new File( basedir, "target/site/jacoco-it/jacoco.xml" );
49 File csvReportFile = new File( basedir, "target/site/jacoco-it/jacoco.csv" );
/external/llvm/test/
DCMakeLists.txt6 ${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
7 ${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
10 ${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in
11 ${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg
124 PARAMS llvm_site_config=${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
125 llvm_unit_site_config=${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg
131 PARAMS llvm_site_config=${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
132 llvm_unit_site_config=${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg
/external/doclava/res/assets/templates/
Ddiff.cs127 <?cs each:site = sites ?>
128 <th><?cs var:site.name ?></th>
140 <?cs each:site = package.sites ?>
142 <?cs if:site.hasPackage ?>
160 <?cs each:site = class.sites ?>
162 <?cs if:site.hasClass ?>
174 <?cs each:site = method.sites ?>
176 <?cs if:site.hasMethod ?>
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/
DMakefile.in396 check-DEJAGNU: site.exp
407 site.exp: Makefile $(EXTRA_DEJAGNU_SITE_CONFIG)
409 @echo '## these variables are automatically generated by make ##' >site.tmp
410 @echo '# Do not edit here. If you wish to override these values' >>site.tmp
411 @echo '# edit the last section' >>site.tmp
412 @echo 'set srcdir "$(srcdir)"' >>site.tmp
413 @echo "set objdir `pwd`" >>site.tmp
414 @echo 'set build_alias "$(build_alias)"' >>site.tmp
415 @echo 'set build_triplet $(build_triplet)' >>site.tmp
416 @echo 'set host_alias "$(host_alias)"' >>site.tmp
[all …]
/external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/LLVM.InTree/test/
Dlit.cfg31 # Otherwise, we haven't loaded the site specific configuration (the user is
32 # probably trying to run on a test file directly, and either the site
40 # automagically generate the lit.site.cfg if we are in some kind of fresh
46 lit.fatal('No site specific configuration available!')
55 lit.fatal('No site specific configuration available!')
57 # Check that the site specific configuration exists.
58 site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
60 lit.fatal('No site specific configuration available!')
69 # Load site data from DejaGNU's site.exp.
72 # FIXME: Implement lit.site.cfg.
[all …]
/external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/
Dlit.cfg31 # Otherwise, we haven't loaded the site specific configuration (the user is
32 # probably trying to run on a test file directly, and either the site
40 # automagically generate the lit.site.cfg if we are in some kind of fresh
46 lit.fatal('No site specific configuration available!')
55 lit.fatal('No site specific configuration available!')
57 # Check that the site specific configuration exists.
58 site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
60 lit.fatal('No site specific configuration available!')
69 # Load site data from DejaGNU's site.exp.
72 # FIXME: Implement lit.site.cfg.
[all …]
/external/compiler-rt/test/asan/
DCMakeLists.txt63 ${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
64 ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg
73 ${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
74 ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg)
84 ${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in
85 ${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg)
89 ${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in
90 ${CMAKE_CURRENT_BINARY_DIR}/Unit/dynamic/lit.site.cfg)
/external/swiftshader/third_party/LLVM/test/Unit/
Dlit.cfg35 # Otherwise, we haven't loaded the site specific configuration (the user is
36 # probably trying to run on a test file directly, and either the site
50 # automagically generate the lit.site.cfg if we are in some kind of fresh
56 lit.fatal('No site specific configuration available!')
65 lit.fatal('No site specific configuration available!')
67 # Check that the site specific configuration exists.
68 site_cfg = os.path.join(llvm_obj_root, 'test', 'Unit', 'lit.site.cfg')
70 lit.fatal('No site specific configuration available!')

12345678910>>...28