Home
last modified time | relevance | path

Searched refs:environment (Results 1 – 25 of 1797) sorted by relevance

12345678910>>...72

/external/libchrome/third_party/jinja2/
Dlexer.py196 def compile_rules(environment): argument
200 (len(environment.comment_start_string), 'comment',
201 e(environment.comment_start_string)),
202 (len(environment.block_start_string), 'block',
203 e(environment.block_start_string)),
204 (len(environment.variable_start_string), 'variable',
205 e(environment.variable_start_string))
208 if environment.line_statement_prefix is not None:
209 rules.append((len(environment.line_statement_prefix), 'linestatement',
210 r'^[ \t\v]*' + e(environment.line_statement_prefix)))
[all …]
Dloaders.py70 def get_source(self, environment, template): argument
100 def load(self, environment, name, globals=None): argument
113 source, filename, uptodate = self.get_source(environment, name)
117 bcc = environment.bytecode_cache
119 bucket = bcc.get_bucket(environment, name, filename, source)
125 code = environment.compile(source, name, filename)
134 return environment.template_class.from_code(environment, code,
167 def get_source(self, environment, template): argument
231 def get_source(self, environment, template): argument
282 def get_source(self, environment, template): argument
[all …]
Dfilters.py62 def make_attrgetter(environment, attribute, postprocess=None): argument
77 item = environment.getitem(item, part)
247 environment, value, reverse=False, case_sensitive=False, attribute=None argument
275 environment, attribute,
282 def do_unique(environment, value, case_sensitive=False, attribute=None): argument
297 environment, attribute,
310 def _min_or_max(environment, value, func, case_sensitive, attribute): argument
316 return environment.undefined('No aggregated item, sequence was empty.')
319 environment, attribute,
326 def do_min(environment, value, case_sensitive=False, attribute=None): argument
[all …]
Doptimizer.py23 def optimize(node, environment): argument
26 optimizer = Optimizer(environment)
32 def __init__(self, environment): argument
33 self.environment = environment
41 environment=self.environment)
Dext.py21 from jinja2.environment import Environment
72 def __init__(self, environment): argument
73 self.environment = environment
75 def bind(self, environment): argument
79 rv.environment = environment
169 def __init__(self, environment): argument
170 Extension.__init__(self, environment)
171 environment.globals['_'] = _gettext_alias
172 environment.extend(
199 self.environment.newstyle_gettext = newstyle
[all …]
Dnodes.py81 def __init__(self, environment, template_name=None): argument
82 self.environment = environment
83 if callable(environment.autoescape):
84 self.autoescape = environment.autoescape(template_name)
86 self.autoescape = environment.autoescape
99 if node.environment is None:
103 return EvalContext(node.environment)
219 def set_environment(self, environment): argument
224 node.environment = environment
424 if self.environment.sandboxed and \
[all …]
Dcompiler.py74 def generate(node, environment, name, filename, stream=None, argument
79 generator = environment.code_generator_class(environment, name, filename,
246 def __init__(self, environment, name, filename, stream=None, argument
250 self.environment = environment
258 self.optimizer = Optimizer(environment)
501 if self.environment.is_async:
697 eval_ctx = EvalContext(self.environment, self.name)
703 if self.environment.is_async:
764 if supports_yield_from and not self.environment.is_async:
770 (self.environment.is_async and 'async ' or ''))
[all …]
/external/v8/src/compiler/
Dbytecode-graph-builder.cc125 : builder_(builder), parent_(builder->environment()->Copy()) {} in SubEnvironment()
617 Node* frame_state_before = environment()->Checkpoint( in PrepareEagerCheckpoint()
625 Node* effect = environment()->GetEffectDependency(); in PrepareEagerCheckpoint()
652 environment()->Checkpoint(bailout_id, combine, liveness_after); in PrepareFrameState()
786 environment()->FillWithOsrValues(); in AdvanceToOsrEntryAndPeelLoops()
854 if (environment() != nullptr) { in VisitSingleBytecode()
892 environment()->BindGeneratorState( in VisitBytecodes()
914 environment()->BindAccumulator(node); in VisitLdaZero()
919 environment()->BindAccumulator(node); in VisitLdaSmi()
925 environment()->BindAccumulator(node); in VisitLdaConstant()
[all …]
/external/python/cpython3/Doc/library/
Dvenv.rst20 site directories. Each virtual environment has its own Python binary (which
21 matches the version of the binary that was used to create this environment) and
35 Python interpreter a virtual environment will be based on.
46 .. note:: A virtual environment is a Python environment such that the Python
52 A virtual environment is a directory tree which contains Python executable
53 files and other files which indicate that it is a virtual environment.
57 environment is active, they install Python packages into the virtual
58 environment without needing to be told to do so explicitly.
60 When a virtual environment is active (i.e., the virtual environment's Python
63 environment, whereas :attr:`sys.base_prefix` and
[all …]
/external/u-boot/env/
DKconfig18 Define this if you don't want to or can't have an environment stored
19 on a storage medium. In this case the environment will still exist
22 environment.
35 environment area within the total memory of your EEPROM.
43 EEPROM, which holds the environment, is on the I2C bus.
52 EEPROM which holds the environment, is reached over
64 Define this if you want to use the FAT file system for the environment.
71 Define this if you want to use the EXT4 file system for the environment.
85 environment.
87 a) The environment occupies one whole flash sector, which is
[all …]
/external/python/cpython3/Doc/using/
Dvenv-create.inc4 python3 -m venv /path/to/new/virtual/environment
11 platform or arguments used at environment creation time). It also creates an
44 ENV_DIR A directory to create the environment in.
49 Give the virtual environment access to the system
55 --clear Delete the contents of the environment directory if it
56 already exists, before environment creation.
57 --upgrade Upgrade the environment directory to use this version
60 environment (pip is bootstrapped by default)
62 environment.
64 Once an environment has been created, you may wish to activate it, e.g. by
[all …]
/external/tensorflow/tensorflow/contrib/specs/python/
Dspecs.py29 def eval_params(params, environment=None): argument
45 if environment:
46 bindings.update(environment)
51 def eval_spec(spec, environment=None): argument
73 if environment:
74 bindings.update(environment)
79 def create_net_fun(spec, environment=None): argument
99 bindings = eval_spec(spec, environment)
106 def create_net(spec, inputs, environment=None): argument
121 return create_net_fun(spec, environment)(inputs)
/external/u-boot/tools/env/
Dfw_env.c107 struct environment { struct
115 static struct environment environment = { argument
401 for (env = environment.data; *env; env = nxt + 1) { in fw_getenv()
405 if (nxt >= &environment.data[ENV_SIZE]) { in fw_getenv()
467 for (env = environment.data; *env; env = nxt + 1) { in fw_printenv()
469 if (nxt >= &environment.data[ENV_SIZE]) { in fw_printenv()
514 *environment.crc = crc32(0, (uint8_t *) environment.data, ENV_SIZE); in fw_env_flush()
540 for (nxt = env = environment.data; *env; env = nxt + 1) { in fw_env_write()
542 if (nxt >= &environment.data[ENV_SIZE]) { in fw_env_write()
617 for (env = environment.data; *env || *(env + 1); ++env) in fw_env_write()
[all …]
DREADME3 the U-Boot's environment variables.
40 that does not have support for redundant environment enabled.
45 be used to access the environment.
47 The DEVICEx_OFFSET constants define the environment offset within the
50 ENVx_SIZE defines the size in bytes taken by the environment, which
51 may be less then flash sector size, if the environment takes less
55 partition where the environment resides.
58 this environment instance. On NAND this is used to limit the range
61 To prevent losing changes to the environment and to prevent confusing the MTD
63 to the environment.
/external/llvm/utils/lit/lit/
DTestingConfig.py19 environment = {
34 environment[var] = val
37 environment.update({
49 environment.update({
66 environment = environment,
120 environment, substitutions, unsupported, argument
128 self.environment = dict(environment)
148 self.environment = dict(self.environment)
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestingConfig.py13 environment = {
22 environment.update({
34 environment = environment,
66 environment, substitutions, unsupported, on_clone, argument
73 self.environment = dict(environment)
87 self.environment, self.substitutions,
100 self.environment = dict(self.environment)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DTestingConfig.py18 environment = {
35 environment[var] = val
38 environment.update({
57 environment = environment,
107 environment, substitutions, unsupported, argument
115 self.environment = dict(environment)
136 self.environment = dict(self.environment)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Unit/
Dlit.cfg.py30 config.environment['TMP'] = os.environ['TMP']
32 config.environment['TEMP'] = os.environ['TEMP']
37 config.environment[symbolizer] = os.environ[symbolizer]
41 config.environment['PATH'] = os.path.pathsep.join((
42 config.shlibdir, config.environment['PATH']))
46 config.environment['SYSTEMDRIVE'] = os.environ['SYSTEMDRIVE']
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DGrpcThreadPool.cs39 readonly GrpcEnvironment environment; field in Grpc.Core.Internal.GrpcThreadPool
62 …public GrpcThreadPool(GrpcEnvironment environment, int poolSize, int completionQueueCount, bool in… in GrpcThreadPool() argument
64 this.environment = environment; in GrpcThreadPool()
80 completionQueues = CreateCompletionQueueList(environment, completionQueueCount); in Start()
217 …n<CompletionQueueSafeHandle> CreateCompletionQueueList(GrpcEnvironment environment, int completion… in CreateCompletionQueueList() argument
222 …etionRegistry = new CompletionRegistry(environment, () => environment.BatchContextPool.Lease(), ()… in CreateCompletionQueueList()
DCompletionRegistry.cs38 readonly GrpcEnvironment environment; field in Grpc.Core.Internal.CompletionRegistry
45 …public CompletionRegistry(GrpcEnvironment environment, Func<BatchContextSafeHandle> batchContextFa… in CompletionRegistry() argument
47 this.environment = GrpcPreconditions.CheckNotNull(environment); in CompletionRegistry()
54 environment.DebugStats.PendingBatchCompletions.Increment(); in Register()
101 environment.DebugStats.PendingBatchCompletions.Decrement(); in Extract()
/external/ImageMagick/
DMake.com92 $ define/nolog magickshr 'f$environment("default")'magickshr.exe
118 $display:==$'f$environment("default")'display
130 $import:==$'f$environment("default")'import
142 $animate:==$'f$environment("default")'animate
154 $montage:==$'f$environment("default")'montage
166 $mogrify:==$'f$environment("default")'mogrify
178 $convert:==$'f$environment("default")'convert
189 $compare:==$'f$environment("default")'compare
200 $identify:==$'f$environment("default")'identify
211 $composite:==$'f$environment("default")'composite
/external/u-boot/doc/
DREADME.marubun-pcmcia38 You should do the setting matched to your environment.
40 ( for MS7722SE01 environment )
44 You should do the setting matched to your environment.
46 ( for MS7722SE01 environment )
50 You should do the setting matched to your environment.
52 ( for MS7722SE01 environment )
56 You should do the setting matched to your environment.
58 ( for MS7722SE01 environment )
DREADME.enetaddr18 - environment ("ethaddr", "eth1addr", ...)
34 2. Read from environment in net/eth.c after initialize()
35 3. The environment variable will be compared to the driver initialized
37 environment variable will be used unchanged.
38 If the environment variable is not set, it will be initialized from
44 b) The user hasn't set an 'ethmacskip' environment variable
57 address(es) and initializing the respective environment variable(s) from it.
58 Note that this shall be done if, and only if, the environment does not already
59 contain these environment variables, i.e. existing variable definitions must
62 During runtime, the ethernet layer will use the environment variables to sync
[all …]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
DRobolectricProcessor.java75 public synchronized void init(ProcessingEnvironment environment) { in init() argument
76 super.init(environment); in init()
77 processOptions(environment.getOptions()); in init()
78 modelBuilder = new Builder(environment); in init()
80 addValidator(new ImplementationValidator(modelBuilder, environment)); in init()
81 addValidator(new ImplementsValidator(modelBuilder, environment, sdkCheckMode)); in init()
82 addValidator(new RealObjectValidator(modelBuilder, environment)); in init()
83 addValidator(new ResetterValidator(modelBuilder, environment)); in init()
/external/grpc-grpc/tools/distrib/python/
Ddocgen.py57 environment = os.environ.copy() variable
58 environment.update({
70 'env': environment
74 'env': environment
78 'env': environment
82 'env': environment
86 'env': environment

12345678910>>...72