/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 | 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 | 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 …]
|
/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/libgdx/extensions/gdx-controllers/gdx-controllers-android/.settings/ |
D | org.eclipse.cdt.managedbuilder.core.prefs | 3 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/del… 4 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/ope… 5 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 6 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 7 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 8 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 9 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/append=tr… 10 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/appendCon… 11 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… 12 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… [all …]
|
/external/libgdx/extensions/gdx-tools/.settings/ |
D | org.eclipse.cdt.managedbuilder.core.prefs | 3 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/del… 4 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/ope… 5 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 6 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 7 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 8 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 9 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/append=tr… 10 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/appendCon… 11 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… 12 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… [all …]
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers/.settings/ |
D | org.eclipse.cdt.managedbuilder.core.prefs | 3 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/del… 4 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/ope… 5 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 6 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 7 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 8 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 9 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/append=tr… 10 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/appendCon… 11 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… 12 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… [all …]
|
/external/libgdx/gdx/.settings/ |
D | org.eclipse.cdt.managedbuilder.core.prefs | 3 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/del… 4 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPATH/ope… 5 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 6 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/CPLUS_INC… 7 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 8 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/C_INCLUDE… 9 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/append=tr… 10 environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/appendCon… 11 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… 12 environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.mingw.so.debug.1412059085/LIBRARY_P… [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/ImageMagick/ |
D | Make.com | 92 $ 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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
D | ShadowMappingTest.java | 30 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 31 import com.badlogic.gdx.graphics.g3d.environment.DirectionalShadowLight; 45 Environment environment; field in ShadowMappingTest 52 environment = new Environment(); in create() 53 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f)); in create() 54 …environment.add((shadowLight = new DirectionalShadowLight(1024, 1024, 30f, 30f, 1f, 100f)).set(0.8… in create() 56 environment.shadowMap = shadowLight; in create() 96 modelBatch.render(instance, environment); in render()
|
D | HeightMapTest.java | 17 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 28 Environment environment; field in HeightMapTest 35 environment = new Environment(); in create() 36 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f)); in create() 37 environment.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -0.5f, -1.0f, -0.8f)); in create() 57 ground.environment = environment; in create()
|
D | FogTest.java | 32 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 43 public Environment environment; field in FogTest 48 environment = new Environment(); in create() 49 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f)); in create() 50 environment.set(new ColorAttribute(ColorAttribute.Fog, 0.13f, 0.13f, 0.13f, 1f)); in create() 51 environment.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -1f, -0.8f, -0.2f)); in create() 81 modelBatch.render(instance, environment); in render()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/ |
D | ModelBatch.java | 54 renderable.environment = null; in obtain() 256 public void render (final RenderableProvider renderableProvider, final Environment environment) { in render() argument 261 renderable.environment = environment; in render() 271 …rableProvider> void render (final Iterable<T> renderableProviders, final Environment environment) { in render() argument 273 render(renderableProvider, environment); in render() 308 …public void render (final RenderableProvider renderableProvider, final Environment environment, fi… in render() argument 313 renderable.environment = environment; in render() 326 …derableProvider> void render (final Iterable<T> renderableProviders, final Environment environment, in render() argument 329 render(renderableProvider, environment, shader); in render()
|