Searched refs:environment (Results 1 - 25 of 324) sorted by relevance

1234567891011>>

/external/v8/src/compiler/
H A Dcontrol-builders.cc16 else_environment_ = environment()->CopyForConditional();
25 then_environment_ = environment();
32 then_environment_->Merge(environment());
38 loop_environment_ = environment()->CopyForLoop(assigned, is_osr);
39 continue_environment_ = environment()->CopyAsUnreachable();
40 break_environment_ = environment()->CopyAsUnreachable();
46 continue_environment_->Merge(environment());
47 environment()->MarkAsUnreachable();
52 break_environment_->Merge(environment());
53 environment()
[all...]
H A Dbytecode-graph-builder.cc23 // The abstract execution environment simulates the content of the interpreter
24 // register file. The environment performs SSA-renaming of all tracked nodes at
31 // Specifies whether environment binding methods should attach frame state
52 // Effect dependency tracked by this environment.
58 // Preserve a checkpoint of the environment for the IR graph. Any
59 // further mutation of the environment will not affect checkpoints.
64 // Control dependency tracked by this environment.
254 // the current environment's control dependency accordingly.
260 // the current environment's effect dependency accordingly.
314 // environment'
[all...]
H A Dast-graph-builder.cc60 Environment* environment() const { return owner_->environment(); } function in class:v8::internal::compiler::BASE_EMBEDDED
120 depth_(builder_->environment()->context_chain_length()) {
121 builder_->environment()->PushContext(context); // Push.
127 builder_->environment()->PopContext();
128 CHECK_EQ(depth_, builder_->environment()->context_chain_length());
154 context_length_(builder->environment()->context_chain_length()),
155 stack_height_(builder->environment()->stack_height()) {
177 // this also drops extra operands from the environment for each skipped scope.
198 Environment* environment() { retur function in class:v8::internal::compiler::BASE_EMBEDDED
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-osr.cc45 HEnvironment *environment = builder_->environment(); local
46 int first_expression_index = environment->first_expression_index();
47 int length = environment->length();
52 = builder_->Add<HUnknownOSRValue>(environment, i);
53 environment->Bind(i, osr_value);
58 environment->Drop(length - first_expression_index);
61 = builder_->Add<HUnknownOSRValue>(environment, i);
62 environment->Push(osr_value);
68 environment
[all...]
H A Dlithium-codegen.cc137 if (instr->HasEnvironment() && !instr->environment()->has_been_used()) {
138 V8_Fatal(__FILE__, __LINE__, "unused environment for %s (%s)",
218 void LCodeGenBase::WriteTranslationFrame(LEnvironment* environment, argument
220 int translation_size = environment->translation_size();
222 int height = translation_size - environment->parameter_count();
224 switch (environment->frame_type()) {
227 environment->entry() ? environment->entry()->shared()
229 translation->BeginJSFrame(environment->ast_id(), shared_id, height);
230 if (info()->closure().is_identical_to(environment
[all...]
/external/tensorflow/tensorflow/contrib/specs/python/
H A Dspecs.py29 def eval_params(params, environment=None):
30 """Evaluates a parameter specification and returns the environment.
34 environment: a dictionary of input bindings
45 if environment:
46 bindings.update(environment)
51 def eval_spec(spec, environment=None):
52 """Evaluates a spec and returns the environment.
55 in an environment. That is useful if you use the spec language to
62 environment: a dictionary of input bindings
73 if environment
[all...]
/external/libmojo/third_party/jinja2/
H A Doptimizer.py23 def optimize(node, environment):
26 optimizer = Optimizer(environment)
32 def __init__(self, environment):
33 self.environment = environment
60 environment=self.environment)
H A Dlexer.py189 def compile_rules(environment):
190 """Compiles all the rules from the environment into a list of rules."""
193 (len(environment.comment_start_string), 'comment',
194 e(environment.comment_start_string)),
195 (len(environment.block_start_string), 'block',
196 e(environment.block_start_string)),
197 (len(environment.variable_start_string), 'variable',
198 e(environment.variable_start_string))
201 if environment.line_statement_prefix is not None:
202 rules.append((len(environment
[all...]
H A Dloaders.py39 implement a custom loading mechanism. The environment provides a
54 def get_source(self, environment, template):
70 def get_source(self, environment, template):
72 It's passed the environment and template name and has to return a
100 def load(self, environment, name, globals=None):
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
[all...]
H A Dmeta.py20 def __init__(self, environment):
21 CodeGenerator.__init__(self, environment, '<introspection>',
52 codegen = TrackingCodeGenerator(ast.environment)
H A Dfilters.py54 def make_attrgetter(environment, attribute):
56 passed object with the rules of the environment. Dots are allowed
62 return lambda x: environment.getitem(x, attribute)
68 item = environment.getitem(item, part)
227 def do_sort(environment, value, reverse=False, case_sensitive=False,
262 getter = make_attrgetter(environment, attribute)
314 value = imap(make_attrgetter(eval_ctx.environment, attribute), value)
346 def do_first(environment, seq):
351 return environment.undefined('No first item, sequence was empty.')
355 def do_last(environment, se
[all...]
H A D__init__.py8 an optional sandboxed environment.
33 from jinja2.environment import Environment, Template
H A Dext.py19 from jinja2.environment import Environment
43 system at the parser level. Custom extensions are bound to an environment
44 but may not store environment specific data on `self`. The reason for
45 this is that an extension can be bound to another environment (for
46 overlays) by creating a copy and reassigning the `environment` attribute.
48 As extensions are created by the environment they cannot accept any
52 storing the configuration values on the environment. Because this way the
53 environment ends up acting as central configuration storage the
70 def __init__(self, environment):
71 self.environment
[all...]
H A Dnodes.py81 def __init__(self, environment, template_name=None):
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:
102 'environment.')
103 return EvalContext(node.environment)
119 two attributes: `lineno` (the line number of the node) and `environment`
[all...]
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DTestingConfig.py12 # Set the environment based on the command line arguments.
13 environment = {
22 environment.update({
34 environment = environment,
66 environment, substitutions, unsupported, on_clone,
73 self.environment = dict(environment)
87 self.environment, self.substitutions,
100 self.environment
[all...]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
H A DRobolectricProcessor.java67 public synchronized void init(ProcessingEnvironment environment) { argument
68 super.init(environment);
69 processOptions(environment.getOptions());
70 model = new RobolectricModel(environment.getElementUtils(), environment.getTypeUtils());
72 addValidator(new ImplementationValidator(model, environment));
73 addValidator(new ImplementsValidator(model, environment));
74 addValidator(new RealObjectValidator(model, environment));
75 addValidator(new ResetterValidator(model, environment));
77 generators.add(new ShadowProviderGenerator(model, environment, shadowPackag
[all...]
/external/llvm/utils/lit/lit/
H A DTestingConfig.py18 # Set the environment based on the command line arguments.
19 environment = {
34 environment[var] = val
37 environment.update({
49 environment.update({
66 environment = environment,
120 environment, substitutions, unsupported,
128 self.environment = dict(environment)
[all...]
/external/tensorflow/tensorflow/contrib/ffmpeg/default/
H A Dffmpeg_lib_utility_test.cc40 Env* environment = Env::Default(); local
41 thread::ThreadPool pool(environment, "test", kNumThreads);
50 pool.Schedule([&mu, &temp_filenames, environment]() {
54 TF_QCHECK_OK(environment->DeleteFile(buffer[j]));
/external/python/cpython3/Doc/using/
H A Dvenv-create.inc4 python3 -m venv /path/to/new/virtual/environment
47 ENV_DIR A directory to create the environment in.
52 Give the virtual environment access to the system
58 --clear Delete the contents of the environment directory if it
59 already exists, before environment creation.
60 --upgrade Upgrade the environment directory to use this version
63 environment (pip is bootstrapped by default)
65 Once an environment has been created, you may wish to activate it, e.g. by
83 invoked to bootstrap ``pip`` into the virtual environment.
86 environment wil
[all...]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/generator/
H A DServiceLoaderGenerator.java21 public ServiceLoaderGenerator(ProcessingEnvironment environment, String shadowPackage) { argument
22 this.filer = environment.getFiler();
23 this.messager = environment.getMessager();
/external/ImageMagick/
H A 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("defaul
[all...]
/external/llvm/test/MC/Mips/
H A Dset-push-pop-directives.s3 # .set push creates a copy of the current environment.
4 # .set pop restores the previous environment.
8 # The first environment on the stack (with initial values).
13 # Create a new environment.
23 # Switch back to the first environment.
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java110 * @param environment The environment object.
111 * The environment in which this iterator operates, which should provide:
120 * <p>At this time the exact implementation of this environment is application
124 public void setRoot(int nodeHandle, Object environment); argument
/external/clang/tools/scan-build-py/libscanbuild/
H A Dintercept.py16 files shall be placed. This parameter is passed as an environment variable.
96 environment = setup_environment(args, tmp_dir, bin_dir)
97 logging.debug('run build in environment: %s', environment)
98 exit_code = subprocess.call(args.build, env=environment)
116 """ Sets up the environment for the build command.
118 It sets the required environment variables and execute the given command.
128 environment = dict(os.environ)
129 environment.update({'INTERCEPT_BUILD_TARGET_DIR': destination})
133 environment
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DChildTestIterator.java124 public void setRoot(int context, Object environment) argument
126 super.setRoot(context, environment);

Completed in 4092 milliseconds

1234567891011>>