/third_party/python/Lib/test/ |
H A D | test_site.py | 1 """Tests for 'site'. 37 import site namespace 40 HAS_USER_SITE = (site.USER_SITE is not None) 48 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE): 49 # need to add user site directory for tests 51 os.makedirs(site.USER_SITE) 53 site.addsitedir(site.USER_SITE) 55 raise unittest.SkipTest('unable to create user site director [all...] |
H A D | future_test2.py | 3 from __future__ import nested_scopes; import site namespace
|
/third_party/node/deps/v8/src/objects/ |
H A D | allocation-site-inl.h | 10 #include "src/objects/allocation-site.h" 19 #include "torque-generated/src/objects/allocation-site-tq-inl.inc" 122 // Heuristic: We only need to create allocation site info if the boilerplate 212 bool AllocationSite::DigestTransitionFeedback(Handle<AllocationSite> site, in DigestTransitionFeedback() argument 214 Isolate* isolate = site->GetIsolate(); in DigestTransitionFeedback() 217 if (site->PointsToLiteral() && site->boilerplate().IsJSArray()) { in DigestTransitionFeedback() 218 Handle<JSArray> boilerplate(JSArray::cast(site->boilerplate()), isolate); in DigestTransitionFeedback() 234 bool is_nested = site->IsNested(); in DigestTransitionFeedback() 236 reinterpret_cast<void*>(site in DigestTransitionFeedback() [all...] |
H A D | allocation-site-scopes.h | 9 #include "src/objects/allocation-site.h" 30 void update_current_site(AllocationSite site) { current_.PatchValue(site); } in update_current_site() argument 32 inline void InitializeTraversal(Handle<AllocationSite> site); 44 AllocationSiteUsageContext(Isolate* isolate, Handle<AllocationSite> site, in AllocationSiteUsageContext() argument 47 top_site_(site), in AllocationSiteUsageContext()
|
H A D | allocation-site-scopes-inl.h | 8 #include "src/objects/allocation-site-scopes.h" 10 #include "src/objects/allocation-site-inl.h" 15 void AllocationSiteContext::InitializeTraversal(Handle<AllocationSite> site) { in InitializeTraversal() argument 16 top_ = site; in InitializeTraversal() 26 // Advance current site in EnterNewScope()
|
/third_party/glslang/ |
H A D | update_glslang_sources.py | 31 # Maps a site name to its hostname. 81 self.site = json['site'] 88 host = SITE_TO_HOST[self.site] 121 def GetGoodCommits(site): 123 known_good_file = SITE_TO_KNOWN_GOOD_FILE[site] 132 parser.add_argument('--site', dest='site', default='github', 133 help="Set git server site. Default is github.") 137 commits = GetGoodCommits(args.site) [all...] |
/third_party/node/deps/v8/src/snapshot/ |
H A D | object-deserializer.cc | 11 #include "src/objects/allocation-site-inl.h" 84 for (Handle<AllocationSite> site : new_allocation_sites()) { in LinkAllocationSites() 85 if (!site->HasWeakNext()) continue; in LinkAllocationSites() 90 site->set_weak_next(ReadOnlyRoots(heap).undefined_value()); in LinkAllocationSites() 92 site->set_weak_next(heap->allocation_sites_list()); in LinkAllocationSites() 94 heap->set_allocation_sites_list(*site); in LinkAllocationSites()
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_install.py | 6 import site namespace 78 @unittest.skipUnless(HAS_USER_SITE, 'need user site') 82 self.old_user_base = site.USER_BASE 83 self.old_user_site = site.USER_SITE 87 site.USER_BASE = self.user_base 88 site.USER_SITE = self.user_site 98 site.USER_BASE = self.old_user_base 99 site.USER_SITE = self.old_user_site 121 # user base and site shouldn't be created yet
|
H A D | test_build_ext.py | 34 import site namespace 35 self.old_user_base = site.USER_BASE 36 site.USER_BASE = self.mkdtemp() 38 build_ext.USER_BASE = site.USER_BASE 47 import site namespace 48 site.USER_BASE = self.old_user_base 140 import site namespace 153 lib = os.path.join(site.USER_BASE, 'lib') 154 incl = os.path.join(site.USER_BASE, 'include')
|
/third_party/python/Tools/scripts/ |
H A D | win_add2path.py | 11 import site namespace 24 if hasattr(site, "USER_SITE"): 25 usersite = site.USER_SITE.replace(appdata, "%APPDATA%")
|
/third_party/node/deps/v8/tools/ |
H A D | callstats.py | 165 def run_site(site, domain, args, timeout=None): 200 ] + chrome_flags + [ site ] 218 print("URL: {}".format(site), file=f) 264 return [{'url': site, 'timeout': args.timeout} for site in args.sites] 273 site = item['url'] 280 m = re.match(r'^(https?://)?([^/]+)(/.*)?$', site) 282 args.error("Invalid URL {}.".format(site)) 285 entry = [site, domain, None, item['timeout']] 297 for site, domai [all...] |
/third_party/libunwind/libunwind/src/arm/ |
H A D | getcontext.S | 49 @ reconstruct r13 at call site, then store 52 @ retrieve r14 from call site, then store 55 @ point lr to instruction after call site's stack adjustment
|
/third_party/node/tools/pip/ |
H A D | sitecustomize.py | 2 import site namespace 3 site.addsitedir(os.path.dirname(os.path.realpath(__file__)) + '/site-packages')
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-array.cc | 14 #include "src/objects/allocation-site-inl.h" 62 Handle<AllocationSite> site = type_info->IsAllocationSite() in RUNTIME_FUNCTION() local 77 bool can_use_type_feedback = !site.is_null(); in RUNTIME_FUNCTION() 104 ElementsKind to_kind = can_use_type_feedback ? site->GetElementsKind() in RUNTIME_FUNCTION() 108 // Update the allocation site info to reflect the advice alteration. in RUNTIME_FUNCTION() 109 if (!site.is_null()) site->SetElementsKind(to_kind); in RUNTIME_FUNCTION() 112 // We should allocate with an initial map that reflects the allocation site in RUNTIME_FUNCTION() 121 allocation_site = site; in RUNTIME_FUNCTION() 132 if (!site in RUNTIME_FUNCTION() [all...] |
H A D | runtime-literals.cc | 10 #include "src/objects/allocation-site-scopes-inl.h" 541 Handle<AllocationSite> site; in CreateLiteral() local 545 site = Handle<AllocationSite>::cast(literal_site); in CreateLiteral() 546 boilerplate = Handle<JSObject>(site->boilerplate(), isolate); in CreateLiteral() 562 site = creation_context.EnterNewScope(); in CreateLiteral() 565 creation_context.ExitScope(site, boilerplate); in CreateLiteral() 567 vector->SynchronizedSet(literals_slot, *site); in CreateLiteral() 575 AllocationSiteUsageContext usage_context(isolate, site, enable_mementos); in CreateLiteral() 578 usage_context.ExitScope(site, boilerplate); in CreateLiteral()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | compilation-dependencies.h | 62 // Return the pretenure mode of {site} and record the assumption that it does 64 AllocationType DependOnPretenureMode(const AllocationSiteRef& site); 93 // Record the assumption that {site}'s {ElementsKind} doesn't change. 94 void DependOnElementsKind(const AllocationSiteRef& site); 125 void DependOnElementsKinds(const AllocationSiteRef& site);
|
H A D | compilation-dependencies.cc | 10 #include "src/objects/allocation-site-inl.h" 623 PretenureModeDependency(const AllocationSiteRef& site, in PretenureModeDependency() argument 626 site_(site), in PretenureModeDependency() 905 ElementsKindDependency(const AllocationSiteRef& site, ElementsKind kind) in ElementsKindDependency() argument 906 : CompilationDependency(kElementsKind), site_(site), kind_(kind) { in ElementsKindDependency() 911 Handle<AllocationSite> site = site_.object(); variable 913 site->PointsToLiteral() 914 ? site->boilerplate(kAcquireLoad).map().elements_kind() 915 : site->GetElementsKind(); 1062 const AllocationSiteRef& site) { in DependOnPretenureMode() 1061 DependOnPretenureMode( const AllocationSiteRef& site) DependOnPretenureMode() argument 1140 DependOnElementsKind( const AllocationSiteRef& site) DependOnElementsKind() argument 1316 DependOnElementsKinds( const AllocationSiteRef& site) DependOnElementsKinds() argument [all...] |
H A D | js-create-lowering.cc | 583 // by the {elements_kind} feedback on the {site}, so it's safe to just in ReduceNewArray() 631 base::Optional<AllocationSiteRef> site_ref = p.site(broker()); in ReduceJSCreateArray() 645 // Tells whether we are protected by either the {site} or a in ReduceJSCreateArray() 649 // Check if we have a feedback {site} on the {node}. in ReduceJSCreateArray() 1106 AllocationSiteRef site = feedback.AsLiteral().value(); in ReduceJSCreateLiteralArrayOrObject() local 1107 if (!site.boilerplate().has_value()) return NoChange(); in ReduceJSCreateLiteralArrayOrObject() 1108 AllocationType allocation = dependencies()->DependOnPretenureMode(site); in ReduceJSCreateLiteralArrayOrObject() 1111 TryAllocateFastLiteral(effect, control, *site.boilerplate(), allocation, in ReduceJSCreateLiteralArrayOrObject() 1114 dependencies()->DependOnElementsKinds(site); in ReduceJSCreateLiteralArrayOrObject() 1128 AllocationSiteRef site in ReduceJSCreateEmptyLiteralArray() local [all...] |
/third_party/skia/third_party/externals/freetype/builds/ |
H A D | freetype.mk | 296 --site=reference \ 301 @echo Building static site... 324 --site=reference \ 329 @echo Building static site...
|
/third_party/skia/tools/skp/ |
H A D | webpages_playback.py | 407 def _GetChromiumSkpFileName(self, page_set, site): 410 _, webpage = os.path.split(site) 432 for site in subdirs: 434 filename = self._GetChromiumSkpFileName(page_set, site) 443 largest_skp = max(glob.glob(os.path.join(site, '*.skp')), 449 shutil.rmtree(site)
|
/third_party/node/deps/v8/src/heap/ |
H A D | object-stats.cc | 430 void RecordVirtualAllocationSiteDetails(AllocationSite site); 525 AllocationSite site) { in RecordVirtualAllocationSiteDetails() 526 if (!site.PointsToLiteral()) return; in RecordVirtualAllocationSiteDetails() 527 JSObject boilerplate = site.boilerplate(); in RecordVirtualAllocationSiteDetails() 529 RecordSimpleVirtualObjectStats(site, boilerplate, in RecordVirtualAllocationSiteDetails() 534 site, boilerplate, ObjectStats::JS_OBJECT_BOILERPLATE_TYPE, in RecordVirtualAllocationSiteDetails() 541 site, properties, ObjectStats::BOILERPLATE_PROPERTY_ARRAY_TYPE); in RecordVirtualAllocationSiteDetails() 545 site, properties, ObjectStats::BOILERPLATE_PROPERTY_DICTIONARY_TYPE); in RecordVirtualAllocationSiteDetails() 549 RecordSimpleVirtualObjectStats(site, elements, in RecordVirtualAllocationSiteDetails() 802 AllocationSite site in CollectGlobalStatistics() local 524 RecordVirtualAllocationSiteDetails( AllocationSite site) RecordVirtualAllocationSiteDetails() argument [all...] |
H A D | heap.cc | 1106 AllocationSite site; in MergeAllocationSitePretenuringFeedback() local 1108 site = site_and_count.first; in MergeAllocationSitePretenuringFeedback() 1109 MapWord map_word = site.map_word(cage_base, kRelaxedLoad); in MergeAllocationSitePretenuringFeedback() 1111 site = AllocationSite::cast(map_word.ToForwardingAddress()); in MergeAllocationSitePretenuringFeedback() 1114 // We have not validated the allocation site yet, since we have not in MergeAllocationSitePretenuringFeedback() 1115 // dereferenced the site during collecting information. in MergeAllocationSitePretenuringFeedback() 1117 if (!site.IsAllocationSite() || site.IsZombie()) continue; in MergeAllocationSitePretenuringFeedback() 1121 if (site.IncrementMementoFoundCount(value)) { in MergeAllocationSitePretenuringFeedback() 1122 // For sites in the global map the count is accessed through the site in MergeAllocationSitePretenuringFeedback() 1170 MakePretenureDecision( AllocationSite site, AllocationSite::PretenureDecision current_decision, double ratio, bool maximum_size_scavenge) MakePretenureDecision() argument 1196 ResetPretenuringFeedback(AllocationSite site) ResetPretenuringFeedback() argument 1201 DigestPretenuringFeedback(Isolate* isolate, AllocationSite site, bool maximum_size_scavenge) DigestPretenuringFeedback() argument 1232 PretenureAllocationSiteManually(Isolate* isolate, AllocationSite site) PretenureAllocationSiteManually() argument 1258 RemoveAllocationSitePretenuringFeedback(AllocationSite site) RemoveAllocationSitePretenuringFeedback() argument 1276 AllocationSite site; ProcessPretenuringFeedback() local 1351 PretenureAllocationSiteOnNextCollection(AllocationSite site) PretenureAllocationSiteOnNextCollection() argument 3103 AllocationSite site = AllocationSite::cast(current); ForeachAllocationSite() local [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | control-flow-builders.cc | 98 for (auto site : case_sites_) { in ~SwitchBuilder() 99 DCHECK(!site.has_referrer_jump() || site.is_bound()); in ~SwitchBuilder()
|
/third_party/node/deps/npm/lib/commands/ |
H A D | view.js | 362 site: ( 388 if (info.repo || info.site) { 389 info.site && this.npm.output(chalk.cyan(info.site))
|
/third_party/json/docs/docset/ |
H A D | Makefile | 20 cp -r ../mkdocs/site/* JSON_for_Modern_C++.docset/Contents/Resources/Documents
|