/libcore/ojluni/src/main/java/java/lang/ |
ProcessBuilder.java | 60 * <li>an <i>environment</i>, which is a system-dependent mapping from 62 * the environment of the current process (see {@link System#getenv()}). 85 * and environment is easy: 92 * directory and environment: 97 * Map<String, String> env = pb.environment(); 105 * <p>To start a process with an explicit set of environment 107 * before adding environment variables. 117 private Map<String,String> environment; field in class:ProcessBuilder 207 * Returns a string map view of this process builder's environment. 209 * Whenever a process builder is created, the environment i 274 public Map<String,String> environment() { method in class:ProcessBuilder 288 ProcessBuilder environment(String[] envp) { method in class:ProcessBuilder [all...] |
/external/opencv3/3rdparty/jinja2/ |
loaders.py | 39 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.template_class.from_code(environment, code [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
command_line.py | 19 def AddCommandLineArgs(cls, parser, environment): 24 def ProcessCommandLineArgs(cls, parser, options, extra_args, environment):
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
ShadowMappingTest.java | 24 import com.badlogic.gdx.graphics.g3d.Environment; 30 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 31 import com.badlogic.gdx.graphics.g3d.environment.DirectionalShadowLight; 45 Environment environment; field in class:ShadowMappingTest 52 environment = new Environment(); 53 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f)); 54 environment.add((shadowLight = new DirectionalShadowLight(1024, 1024, 30f, 30f, 1f, 100f)).set(0.8f, 0.8f, 0.8f, -1f, -.8f, 56 environment.shadowMap = shadowLight [all...] |
FogTest.java | 26 import com.badlogic.gdx.graphics.g3d.Environment;
32 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight;
43 public Environment environment;
field in class:FogTest 48 environment = new Environment();
49 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
50 environment.set(new ColorAttribute(ColorAttribute.Fog, 0.13f, 0.13f, 0.13f, 1f));
51 environment.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -1f, -0.8f, -0.2f));
81 modelBatch.render(instance, environment);
[all...] |
HeightMapTest.java | 10 import com.badlogic.gdx.graphics.g3d.Environment; 17 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 28 Environment environment; field in class:HeightMapTest 35 environment = new Environment(); 36 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f)); 37 environment.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -0.5f, -1.0f, -0.8f)); 57 ground.environment = environment; [all...] |
/external/skia/ |
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.
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
ISensorVerification.java | 49 void verify(TestSensorEnvironment environment, SensorStats stats);
|
EventGapVerification.java | 54 * @param environment the test environment 57 public static EventGapVerification getDefault(TestSensorEnvironment environment) { 58 if (environment.getSensor().getReportingMode() != Sensor.REPORTING_MODE_CONTINUOUS) { 61 return new EventGapVerification(environment.getExpectedSamplingPeriodUs()); 68 public void verify(TestSensorEnvironment environment, SensorStats stats) { 69 if (environment.isSensorSamplingRateOverloaded()) {
|
EventTimestampSynchronizationVerification.java | 65 * @param environment The test environment 67 * environment. 70 TestSensorEnvironment environment) { 71 long reportLatencyUs = environment.getMaxReportLatencyUs(); 72 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount(); 73 int maximumExpectedSamplingPeriodUs = environment.getMaximumExpectedSamplingPeriodUs(); 79 if (environment.isDeviceSuspendTest() && !environment.getSensor().isWakeUpSensor()) { 99 public void verify(TestSensorEnvironment environment, SensorStats stats) [all...] |
TimestampClockSourceVerification.java | 63 * @param environment The test environment 65 * environment. 68 TestSensorEnvironment environment) { 69 long reportLatencyUs = environment.getMaxReportLatencyUs(); 70 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount(); 71 int maximumExpectedSamplingPeriodUs = environment.getMaximumExpectedSamplingPeriodUs(); 77 if (environment.isDeviceSuspendTest() && !environment.getSensor().isWakeUpSensor()) { 96 public void verify(TestSensorEnvironment environment, SensorStats stats) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/beanstalk/ |
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' [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/ |
BaseLight.java | 17 package com.badlogic.gdx.graphics.g3d.environment;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/utils/ |
NearFarAnalyzer.java | 21 import com.badlogic.gdx.graphics.g3d.environment.BaseLight;
|
/external/skia/platform_tools/android/apps/canvasproof/ |
build.gradle | 26 environment PATH: getPathWithDepotTools() 27 environment ANDROID_SDK_ROOT: getSDKPath()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
CacheProcessing.java | 94 public Bitmap apply(FilterEnvironment environment, Bitmap cacheBitmap) { 118 cacheBitmap = environment.applyRepresentation(representation, cacheBitmap); 122 environment.cache(source); 133 FilterEnvironment environment) { 136 return environment.getBitmapCopy(originalBitmap, BitmapCache.PREVIEW_CACHE_NO_FILTERS); 139 environment.getBimapCache().setCacheProcessing(this); 169 environment.cache(cacheStep.cache); 193 cacheBitmap = environment.getBitmapCopy(originalBitmap, 198 cacheBitmap = step.apply(environment, cacheBitmap); 200 environment.cache(prev) [all...] |
/external/autotest/client/cros/cellular/ |
environment_test_noautorun.py | 33 import environment 42 make an environment 44 with environment.DefaultCellularTestContext(config) as c: 50 make an environment 53 with environment.DefaultCellularTestContext(config) as c:
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/ |
Renderable.java | 39 * The {@link #material} and (optional) {@link #environment} values are combined to specify how the shape should look like.
41 * {@link #material} and {@link #environment}, then the value of the {@link #material} will be used.</p>
50 * {@link #environment} member with custom {@link Attribute}s to pass data to the shader.</p>
55 * {@link #environment} members to pass data to the shader.</p>
72 * @see #environment **/
74 /** The {@link Environment} to be used to render this Renderable, may be null. When specified it will be combined by the shader
75 * with the {@link #material}. When both the material and environment contain an attribute of the same type, the attribute of
77 public Environment environment;
field in class:Renderable 95 environment = renderable.environment; [all...] |
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/ |
ShadowSystem.java | 24 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 25 import com.badlogic.gdx.graphics.g3d.environment.PointLight; 26 import com.badlogic.gdx.graphics.g3d.environment.SpotLight; 52 * passBatches.get(i).render(instances, environment); 65 * mainBatch.render(instances, environment); 73 * environment, you should do it in shadow system too. <br />
|
/external/v8/src/compiler/ |
bytecode-graph-builder.cc | 27 frame_state_before_ = builder_->environment()->Checkpoint( 34 DCHECK(builder_->environment()->StateValuesAreUpToDate(output_poke_offset_, 39 friend class Environment; 50 builder_->environment()->Checkpoint(id_after_, combine); 81 BytecodeGraphBuilder::Environment::Environment(BytecodeGraphBuilder* builder, 123 BytecodeGraphBuilder::Environment::Environment( 124 const BytecodeGraphBuilder::Environment* other) 141 int BytecodeGraphBuilder::Environment::RegisterToValuesIndex [all...] |
/external/ImageMagick/ |
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")'composit [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
MagneticFieldMeasurementTestActivity.java | 76 TestSensorEnvironment environment = new TestSensorEnvironment( local 81 TestSensorOperation.createOperation(environment, 100 /* event count */); 121 TestSensorEnvironment environment = new TestSensorEnvironment( local 126 TestSensorOperation.createOperation(environment, 100 /* event count */); 168 TestSensorEnvironment environment = new TestSensorEnvironment( local 173 TestSensorEventListener listener = new TestSensorEventListener(environment) { 193 TestSensorManager magnetometer = new TestSensorManager(environment);
|
/external/v8/test/mjsunit/regress/ |
regress-1624-strict.js | 29 // direct or indirect) have their own lexical and variable environment. 35 // Expects new environment. 41 // Expects new environment. 47 // Expects new environment. 53 // Expects global environment. 59 // Expects new environment. 69 // Expects new environment. 79 // Expects new environment. 89 // Expects global environment. 99 // Expects new environment [all...] |
regress-1624.js | 29 // direct or indirect) have their own lexical and variable environment. 34 // Expects new environment. 40 // Expects new environment. 46 // Expects global environment. 52 // Expects global environment. 58 // Expects new environment. 68 // Expects new environment. 78 // Expects function environment. 88 // Expects global environment. 98 // Expects new environment [all...] |
/prebuilts/go/darwin-x86/src/os/ |
env.go | 5 // General environment variables. 30 // of the current environment variables. References to undefined 77 // Getenv retrieves the value of the environment variable named by the key. 84 // LookupEnv retrieves the value of the environment variable named 85 // by the key. If the variable is present in the environment the 93 // Setenv sets the value of the environment variable named by the key. 103 // Unsetenv unsets a single environment variable. 108 // Clearenv deletes all environment variables. 113 // Environ returns a copy of strings representing the environment,
|