Home
last modified time | relevance | path

Searched +full:- +full:- +full:site (Results 1 – 25 of 1057) sorted by relevance

12345678910>>...43

/third_party/python/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`
9 --------------
14 import can be suppressed using the interpreter's :option:`-S` option.
18 Importing this module will append site-specific paths to the module search path
19 and add a few builtins, unless :option:`-S` was used. In that case, this module
21 or additions to the builtins. To explicitly trigger the usual site-specific
22 additions, call the :func:`site.main` function.
[all …]
/third_party/python/Lib/test/
Dtest_site.py1 """Tests for 'site'.
30 # These tests are not particularly useful if Python was invoked with -S.
31 # If you add tests that are useful under -S, this skip should be moved
34 raise unittest.SkipTest("Python was invoked with -S")
36 import site
39 HAS_USER_SITE = (site.USER_SITE is not None)
47 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
48 # need to add user site directory for tests
50 os.makedirs(site.USER_SITE)
52 site.addsitedir(site.USER_SITE)
[all …]
/third_party/node/test/message/
Dsource_map_enabled_by_api.out1 *enclosing-call-site.js:16
6 at functionD (*enclosing-call-site.js:16:17)
7 at functionC (*enclosing-call-site.js:10:3)
8 at functionB (*enclosing-call-site.js:6:3)
9 at functionA (*enclosing-call-site.js:2:3)
10 at Object.<anonymous> (*enclosing-call-site.js:24:3)
16 *enclosing-call-site-min.js:1
21 at functionD (*enclosing-call-site-min.js:1:156)
22 at functionC (*enclosing-call-site-min.js:1:97)
23 at functionB (*enclosing-call-site-min.js:1:60)
[all …]
Dsource_map_disabled_by_api.out2 at functionD (*enclosing-call-site-min.js:1:156)
3 at functionC (*enclosing-call-site-min.js:1:97)
4 at functionB (*enclosing-call-site-min.js:1:60)
5 at functionA (*enclosing-call-site-min.js:1:26)
6 at Object.<anonymous> (*enclosing-call-site-min.js:1:199)
12 *enclosing-call-site.js:16
17 at functionD (*enclosing-call-site.js:16:17)
18 at functionC (*enclosing-call-site.js:10:3)
19 at functionB (*enclosing-call-site.js:6:3)
20 at functionA (*enclosing-call-site.js:2:3)
[all …]
Dsource_map_enclosing_function.out1 *enclosing-call-site.js:16
6 at functionD (*enclosing-call-site.js:16:17)
7 at functionC (*enclosing-call-site.js:10:3)
8 at functionB (*enclosing-call-site.js:6:3)
9 at functionA (*enclosing-call-site.js:2:3)
10 at Object.<anonymous> (*enclosing-call-site.js:24:3)
Dsource_map_enabled_by_api.js7 require('../fixtures/source-map/enclosing-call-site-min.js');
13 .resolve('../fixtures/source-map/enclosing-call-site-min.js')];
17 require('../fixtures/source-map/enclosing-call-site-min.js');
/third_party/python/Lib/
Dsite.py1 """Append module search paths for third-party packages to sys.path.
7 This will append site-specific paths to the module search path. On
10 lib/python<version>/site-packages.
12 prefixes directly, as well as with lib/site-packages appended. The
18 it is also checked for site-packages (sys.base_prefix and
21 the key "include-system-site-packages" set to anything other than "false"
22 (case-insensitive), the system-level prefixes will still also be
23 searched for site-packages; otherwise they won't.
25 All of the resulting site-specific directories, if they exist, are
31 to be added to sys.path. Non-existing directories (or
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DCallPromotionUtils.h1 //===- CallPromotionUtils.h - Utilities for call promotion ------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
21 /// Return true if the given indirect call site can be made to call \p Callee.
23 /// This function ensures that the number and type of the call site's arguments
26 /// is non-null and the indirect call cannot be promoted, the failure reason
31 /// Promote the given indirect call site to unconditionally call \p Callee.
33 /// This function promotes the given call site, returning the direct call or
34 /// invoke instruction. If the function type of the call site doesn't match that
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp1 //===- CodeGen/AsmPrinter/EHStreamer.cpp - Exception Directive Streamer ---===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
39 EHStreamer::EHStreamer(AsmPrinter *A) : Asm(A), MMI(Asm->MMI) {} in EHStreamer()
46 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds; in sharedTypeIDs()
59 /// pad site.
64 // The action table follows the call-site table in the LSDA. The individual in computeActionsTable()
74 // indicates a catch-all clause. in computeActionsTable()
87 const std::vector<unsigned> &FilterIds = Asm->MF->getFilterIds(); in computeActionsTable()
[all …]
/third_party/glslang/
Dupdate_glslang_sources.py9 # http://www.apache.org/licenses/LICENSE-2.0
34 # Maps a site name to its hostname.
84 self.site = json['site']
91 host = SITE_TO_HOST[self.site]
97 """Add the remote 'known-good' if it does not exist."""
99 if b'known-good' not in remotes:
100 command_output(['git', 'remote', 'add', 'known-good', self.GetUrl()], self.subdir)
103 """Check if the repository contains the known-good commit."""
104 return 0 == subprocess.call(['git', 'rev-parse', '--verify', '--quiet',
113 command_output(['git', 'fetch', 'known-good'], self.subdir)
[all …]
/third_party/libffi/testsuite/
DMakefile.in4 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
18 if test -z '$(MAKELEVEL)'; then \
20 elif test -n '$(MAKE_HOST)'; then \
22 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
29 case $${target_option-} in \
32 "target option '$${target_option-}' specified" >&2; \
55 *=*|--*) continue;; \
56 -*I) strip_trailopt 'I'; skip_next=yes;; \
57 -*I?*) strip_trailopt 'I';; \
58 -*O) strip_trailopt 'O'; skip_next=yes;; \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCallPromotionUtils.cpp1 //===- CallPromotionUtils.cpp - Utilities for call promotion ----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
20 #define DEBUG_TYPE "call-promotion-utils"
22 /// Fix-up phi nodes in an invoke instruction's normal destination.
49 for (PHINode &Phi : Invoke->getNormalDest()->phis()) { in fixupPHINodeForNormalDest()
51 if (Idx == -1) in fixupPHINodeForNormalDest()
57 /// Fix-up phi nodes in an invoke instruction's unwind destination.
81 for (PHINode &Phi : Invoke->getUnwindDest()->phis()) { in fixupPHINodeForUnwindDest()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCCodeView.h1 //===- MCCodeView.h - Machine Code CodeView support -------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
87 /// Information describing a function or inlined call site introduced by
89 /// directives used with this function's id or the id of an inlined call site
90 /// within this function or inlined call site.
92 /// If this represents an inlined call site, then ParentFuncIdPlusOne will be
113 /// Map from inlined call site id to the inlined at location to use for that
114 /// call site. Call chains are collapsed, so for the call chain 'f -> g -> h',
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCallSite.h1 //===- CallSite.h - Abstract Call & Invoke instrs ---------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // in non-mutation context (e.g. an analysis) ImmutableCallSite should be used.
13 // extremes, CallSiteBase<> can be supplied with fine-tuned parameters.
23 //===----------------------------------------------------------------------===//
70 /// call site for a Call, Invoke or CallBr instruction, but it can also create
72 /// site.
75 if (II->getOpcode() == Instruction::Call) in get()
77 if (II->getOpcode() == Instruction::Invoke) in get()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-chroma.c17 * Boston, MA 02110-1301, USA.
27 #include "video-orc.h"
28 #include "video-format.h"
29 #include <gst/video/video-enumtypes.h>
54 cat_done = (gsize) _gst_debug_category_new ("video-chroma", 0, in ensure_debug_category()
55 "video-chroma object"); in ensure_debug_category()
69 GstVideoChromaSite site; member
76 {"alt-line", GST_VIDEO_CHROMA_SITE_ALT_LINE},
104 * not contain a valid chroma-site description.
119 return chromasite[i].site; in gst_video_chroma_site_from_string()
[all …]
/third_party/libxml2/
Dlibxml.spec.in9 …d.gnome.org/sources/libxml2/@LIBXML_MAJOR_VERSION@.@LIBXML_MINOR_VERSION@/libxml2-%{version}.tar.xz
10 BuildRoot: %{_tmppath}/%{name}-%{version}-root
11 BuildRequires: python-devel
13 BuildRequires: python3-devel
15 BuildRequires: zlib-devel
17 BuildRequires: xz-devel
25 can be a simple SAX stream or and in-memory DOM like representations.
26 In this case one can use the built-in XPath and XPointer implementation
34 Requires: libxml2 = %{version}-%{release}
35 Requires: zlib-devel
[all …]
/third_party/node/deps/npm/docs/src/components/
Dseo.js5 * See: https://www.gatsbyjs.org/docs/use-static-query/
9 import PropTypes from 'prop-types'
10 import Helmet from 'react-helmet'
14 const { site } = useStaticQuery(
17 site {
28 const metaDescription = description || site.siteMetadata.description
36 titleTemplate={`%s | ${site.siteMetadata.title}`}
60 content: site.siteMetadata.author
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DCallSiteSplitting.cpp1 //===- CallSiteSplitting.cpp ----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements a transformation that tries to split a call-site to pass
12 // threading, or IPA-CP based function cloning, etc.).
15 // 1) Try to a split call-site with constrained arguments, if any constraints
17 // all site's predecessors. Currently this pass only handles call-sites with 2
18 // predecessors. For example, in the code below, we try to split the call-site
28 // callee(nonnull ptr) // set non-null attribute in the argument
30 // 2) We can also split a call-site based on constant incoming values of a PHI
[all …]
/third_party/python/Lib/distutils/tests/
Dtest_install.py6 import site
43 # - that --home generates the desired set of directory names
44 # - test --home is supported on all platforms
78 @unittest.skipUnless(HAS_USER_SITE, 'need user site')
80 # test install with --user
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
[all …]
/third_party/skia/site/docs/dev/tools/
Dmarkdown.md1 ---
4 ---
6 This site is build with [Hugo](https://gohugo.io/) and
9 Any file you put under `/site/` that has the extension `.md` will be processed
14 When preparing for a code review of site docs you can get a preview of how the
15 page will render by visiting the skia.org site and add a query parameter `cl`
18 https://skia.org/path/to/markdown-file?cl=REITVELD_ISSUE_NUMBER
22 [Navigation](https://www.docsy.dev/docs/adding-content/navigation/) section
32 ---
35 ---
[all …]
/third_party/python/Mac/BuildScript/scripts/
Dpostflight.framework9 "${FWK}/bin/python@PYVER@" -E -s -Wi \
10 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
11 -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
14 "${FWK}/bin/python@PYVER@" -E -s -Wi -O \
15 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
16 -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
19 "${FWK}/bin/python@PYVER@" -E -s -Wi \
20 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
21 -f -x badsyntax \
22 "${FWK}/lib/python${PYVER}/site-packages"
[all …]
/third_party/python/Doc/tutorial/
Dappendix.rst1 .. _tut-appendix:
8 .. _tut-interac:
13 .. _tut-error:
16 --------------
28 Typing the interrupt character (usually :kbd:`Control-C` or :kbd:`Delete`) to the primary or
35 .. _tut-scripts:
38 -------------------------
48 with a Unix-style line ending (``'\n'``), not a Windows (``'\r\n'``) line
55 .. code-block:: shell-session
61 a double-click on a Python file will run it as a script. The extension can
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProf.h1 //===- InstrProf.h - Instrumented profiling format support ------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Instrumentation-based profiling data is generated by instrumented
10 // binaries through library functions in compiler-rt, and read by the clang
13 //===----------------------------------------------------------------------===//
71 /// for a given site.
84 /// Return the name prefix of variables containing per-function control data.
117 /// Return the name of function that registers all the per-function control
126 /// Return the name of the runtime interface that registers per-function control
[all …]
/third_party/mtdev/config-aux/
Dmissing4 scriptversion=2009-04-28.21; # UTC
28 if test $# -eq 0; then
29 echo 1>&2 "Try \`$0 --help' for more information"
34 sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
35 sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
39 if test -f configure.ac; then
48 --run)
57 # if --run hadn't been passed.
64 -h|--h|--he|--hel|--help)
72 -h, --help display this help and exit
[all …]
/third_party/python/Doc/install/
Dindex.rst3 .. _install-index:
18 :ref:`What's New <distutils-deprecated>` entry for more information.
22 :ref:`installing-index`
33 recommendations section <https://packaging.python.org/guides/tool-recommendations/>`__
37 .. _inst-intro:
54 See :ref:`installing-index` and :ref:`distributing-index` for more details.
59 .. _inst-new-standard:
62 ------------------------------------
67 in the name of the downloaded archive, e.g. :file:`foo-1.0.tar.gz` or
68 :file:`widget-0.9.7.zip`. Next, the archive will unpack into a similarly-named
[all …]

12345678910>>...43