/external/v8/src/compiler/ |
D | control-builders.cc | 14 else_environment_ = environment()->CopyForConditional(); in If() 23 then_environment_ = environment(); in Else() 30 then_environment_->Merge(environment()); in End() 36 loop_environment_ = environment()->CopyForLoop(assigned, is_osr); in BeginLoop() 37 continue_environment_ = environment()->CopyAsUnreachable(); in BeginLoop() 38 break_environment_ = environment()->CopyAsUnreachable(); in BeginLoop() 43 continue_environment_->Merge(environment()); in Continue() 44 environment()->MarkAsUnreachable(); in Continue() 49 break_environment_->Merge(environment()); in Break() 50 environment()->MarkAsUnreachable(); in Break() [all …]
|
D | ast-graph-builder.cc | 57 Environment* environment() const { return owner_->environment(); } in environment() function in v8::internal::compiler::BASE_EMBEDDED 117 depth_(builder_->environment()->context_chain_length()) { in ContextScope() 118 builder_->environment()->PushContext(context); // Push. in ContextScope() 124 builder_->environment()->PopContext(); in ~ContextScope() 125 CHECK_EQ(depth_, builder_->environment()->context_chain_length()); in ~ContextScope() 151 context_length_(builder->environment()->context_chain_length()), in ControlScope() 152 stack_height_(builder->environment()->stack_height()) { in ControlScope() 197 Environment* environment() { return builder_->environment(); } in environment() function in v8::internal::compiler::BASE_EMBEDDED 398 : builder_->environment()->Checkpoint(id_before); in FrameStateBeforeAndAfter() 415 : builder_->environment()->Checkpoint(id_after, combine); in AddToNode() [all …]
|
D | bytecode-graph-builder.cc | 27 frame_state_before_ = builder_->environment()->Checkpoint( in FrameStateBeforeAndAfter() 34 DCHECK(builder_->environment()->StateValuesAreUpToDate(output_poke_offset_, in ~FrameStateBeforeAndAfter() 50 builder_->environment()->Checkpoint(id_after_, combine); in AddToNode() 451 Node* native_context = NewNode(op, environment()->Context()); in BuildLoadNativeContextField() 552 environment()->BindAccumulator(node); in VisitLdaZero() 559 environment()->BindAccumulator(node); in VisitLdaSmi8() 566 environment()->BindAccumulator(node); in VisitLdaConstantWide() 573 environment()->BindAccumulator(node); in VisitLdaConstant() 580 environment()->BindAccumulator(node); in VisitLdaUndefined() 587 environment()->BindAccumulator(node); in VisitLdaNull() [all …]
|
/external/opencv3/3rdparty/jinja2/ |
D | lexer.py | 189 def compile_rules(environment): argument 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.line_statement_prefix), 'linestatement', 203 r'^[ \t\v]*' + e(environment.line_statement_prefix))) [all …]
|
D | loaders.py | 70 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, 159 def get_source(self, environment, template): argument 221 def get_source(self, environment, template): argument 272 def get_source(self, environment, template): argument [all …]
|
D | filters.py | 54 def make_attrgetter(environment, attribute): argument 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, argument 262 getter = make_attrgetter(environment, attribute) 314 value = imap(make_attrgetter(eval_ctx.environment, attribute), value) 346 def do_first(environment, seq): argument 351 return environment.undefined('No first item, sequence was empty.') 355 def do_last(environment, seq): argument 360 return environment.undefined('No last item, sequence was empty.') [all …]
|
D | optimizer.py | 23 def optimize(node, environment): argument 26 optimizer = Optimizer(environment) 32 def __init__(self, environment): argument 33 self.environment = environment 60 environment=self.environment)
|
D | nodes.py | 81 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 381 if self.environment.sandboxed and \ [all …]
|
D | ext.py | 19 from jinja2.environment import Environment 70 def __init__(self, environment): argument 71 self.environment = environment 73 def bind(self, environment): argument 77 rv.environment = environment 167 def __init__(self, environment): argument 168 Extension.__init__(self, environment) 169 environment.globals['_'] = _gettext_alias 170 environment.extend( 197 self.environment.newstyle_gettext = newstyle [all …]
|
D | runtime.py | 53 def new_context(environment, template_name, blocks, vars=None, argument 70 return Context(environment, parent, template_name, blocks) 112 def __init__(self, environment, parent, name, blocks): argument 115 self.environment = environment 116 self.eval_ctx = EvalContext(self.environment, name) 132 return self.environment.undefined('there is no parent block ' 154 return self.environment.undefined(name=key) 191 args = (__self.environment,) + args 195 return __self.environment.undefined('value was undefined because ' 201 context = new_context(self.environment, self.name, {}, [all …]
|
D | environment.py | 78 def load_extensions(environment, extensions): argument 86 result[extension.identifier] = extension(environment) 90 def _environment_sanity_check(environment): argument 92 assert issubclass(environment.undefined, Undefined), 'undefined must ' \ 94 assert environment.block_start_string != \ 95 environment.variable_start_string != \ 96 environment.comment_start_string, 'block, variable and comment ' \ 98 assert environment.newline_sequence in ('\r', '\r\n', '\n'), \ 100 return environment 909 def from_code(cls, environment, code, globals, uptodate=None): argument [all …]
|
/external/v8/src/crankshaft/ |
D | hydrogen-osr.cc | 44 HEnvironment *environment = builder_->environment(); in BuildOsrLoopEntry() local 45 int first_expression_index = environment->first_expression_index(); in BuildOsrLoopEntry() 46 int length = environment->length(); in BuildOsrLoopEntry() 51 = builder_->Add<HUnknownOSRValue>(environment, i); in BuildOsrLoopEntry() 52 environment->Bind(i, osr_value); in BuildOsrLoopEntry() 57 environment->Drop(length - first_expression_index); in BuildOsrLoopEntry() 60 = builder_->Add<HUnknownOSRValue>(environment, i); in BuildOsrLoopEntry() 61 environment->Push(osr_value); in BuildOsrLoopEntry() 67 environment->local_count() + environment->push_count(); in BuildOsrLoopEntry() 71 environment = environment->Copy(); in BuildOsrLoopEntry() [all …]
|
D | lithium-codegen.cc | 129 if (instr->HasEnvironment() && !instr->environment()->has_been_used()) { in CheckEnvironmentUsage() 204 void LCodeGenBase::WriteTranslationFrame(LEnvironment* environment, in WriteTranslationFrame() argument 206 int translation_size = environment->translation_size(); in WriteTranslationFrame() 208 int height = translation_size - environment->parameter_count(); in WriteTranslationFrame() 210 switch (environment->frame_type()) { in WriteTranslationFrame() 213 environment->entry() ? environment->entry()->shared() in WriteTranslationFrame() 215 translation->BeginJSFrame(environment->ast_id(), shared_id, height); in WriteTranslationFrame() 216 if (info()->closure().is_identical_to(environment->closure())) { in WriteTranslationFrame() 219 int closure_id = DefineDeoptimizationLiteral(environment->closure()); in WriteTranslationFrame() 226 environment->entry() ? environment->entry()->shared() in WriteTranslationFrame() [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/ |
D | benchmark_runner.py | 137 def ProcessCommandLineArgs(cls, parser, args, environment): argument 139 args.benchmarks = _Benchmarks(environment) 142 environment, exact_matches=False) 177 def AddCommandLineArgs(cls, parser, environment): argument 183 matching_benchmarks += _MatchBenchmarkName(arg, environment) 195 def ProcessCommandLineArgs(cls, parser, args, environment): argument 196 all_benchmarks = _Benchmarks(environment) 204 matching_benchmarks = _MatchBenchmarkName(input_benchmark_name, environment) 248 def _Benchmarks(environment): argument 250 for search_dir in environment.benchmark_dirs: [all …]
|
/external/llvm/utils/lit/lit/ |
D | TestingConfig.py | 19 environment = { 33 environment[var] = val 36 environment.update({ 48 environment.update({ 65 environment = environment, 119 environment, substitutions, unsupported, argument 126 self.environment = dict(environment) 144 self.environment = dict(self.environment)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/beanstalk/ |
D | test_wrapper.py | 16 self.environment = 'environment-' + self.random_id 129 cls.environment = 'environment-' + cls.random_id 140 cls.beanstalk.create_environment(cls.app_name, cls.environment, 142 cls.wait_for_env(cls.environment) 148 cls.wait_for_env(cls.environment, 'Terminated') 164 environment_name=self.environment) 170 application_name=self.app_name, environment_name=self.environment) 176 environment_name=self.environment, info_type='tail') 178 self.wait_for_env(self.environment) 180 environment_name=self.environment, info_type='tail') [all …]
|
/external/skia/site/dev/runtime/ |
D | config.md | 9 environment variable: skia_images_gif_suppressDecoderWarnings 16 environment variable: skia_images_jpeg_suppressDecoderWarnings 22 environment variable: skia_images_jpeg_suppressDecoderErrors 28 environment variable: skia_images_png_suppressDecoderWarnings 36 environment variable: skia_bitmap_filter 43 environment variable: skia_mask_filter_analyticNinePatch 49 environment variable: skia_gpu_deferContext 55 environment variable: skia_gpu_dumpFontCache 61 environment variable: skia_bitmap_filter_highQualitySSE 80 Or by setting the corresponding environment variable before starting the
|
/external/dbus/dbus/ |
D | dbus-sysdeps-util.c | 52 char **environment; in _dbus_get_environment() local 61 environment = dbus_new0 (char *, length); in _dbus_get_environment() 63 if (environment == NULL) in _dbus_get_environment() 68 environment[i] = _dbus_strdup (environ[i]); in _dbus_get_environment() 70 if (environment[i] == NULL) in _dbus_get_environment() 76 dbus_free_string_array (environment); in _dbus_get_environment() 77 environment = NULL; in _dbus_get_environment() 80 return environment; in _dbus_get_environment()
|
/external/llvm/test/ |
D | lit.cfg | 21 config.environment['PATH'], 25 config.environment['PATH'])) 26 config.environment['PATH'] = path 29 # LIT_USE_INTERNAL_SHELL is in the environment, we use that as an override. 64 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH'])) 65 config.environment['PATH'] = path 67 # Propagate 'HOME' through the environment. 69 config.environment['HOME'] = os.environ['HOME'] 71 # Propagate 'INCLUDE' through the environment. 73 config.environment['INCLUDE'] = os.environ['INCLUDE'] [all …]
|
/external/llvm/test/MC/Mips/ |
D | set-push-pop-directives.s | 3 # .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/compiler-rt/unittests/ |
D | lit.common.unit.cfg | 22 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH'])) 23 config.environment['PATH'] = path 28 config.environment['TMP'] = os.environ['TMP'] 30 config.environment['TEMP'] = os.environ['TEMP']
|
/external/skia/ |
D | make.bat | 7 rem Launches make.py on Windows, after setting Visual Studio environment variables. 10 rem Skip environment setup on bots. 21 rem Visual Studio environment variables aren't set yet, so run vcvars32.bat 33 echo ERROR: Neither VS100COMNTOOLS nor VS110COMNTOOLS environment variable is set.
|
/external/autotest/client/cros/cellular/ |
D | environment_test_noautorun.py | 33 import environment 44 with environment.DefaultCellularTestContext(config) as c: 53 with environment.DefaultCellularTestContext(config) as c:
|
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/ |
D | virtualenv.rst | 6 "virtual environment" that allows you to run different projects with separate 13 a "sandboxed environment" that serves almost the same purposes. 33 environment using the following command: 39 **3.** Activate the environment. On Linux of Mac, use:
|
/external/clang/test/ |
D | lit.cfg | 22 config.environment['PATH'], 26 config.environment['PATH'])) 27 config.environment['PATH'] = path 30 # LIT_USE_INTERNAL_SHELL is in the environment, we use that as an override. 66 # Clear some environment variables that might affect Clang. 91 if name in config.environment: 92 del config.environment[name] 103 clang_tools_dir, llvm_tools_dir, config.environment['PATH'])) 104 config.environment['PATH'] = path 109 config.environment.get('LD_LIBRARY_PATH',''))) [all …]
|