/prebuilts/go/linux-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,
|
/build/soong/common/ |
env.go | 24 // This file supports dependencies on environment variables. During build manifest generation, 25 // any dependency on an environment variable is added to a list. During the singleton phase 26 // a JSON file is written containing the current value of all used environment variables. 28 // compare the contents of the environment variables, rewriting the file if necessary to cause 44 envFile := PathForOutput(ctx, ".soong.environment")
|
/external/llvm/test/MC/Mips/ |
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.
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/ |
TestSensorOperation.java | 84 public TestSensorOperation(TestSensorEnvironment environment, Executor executor) { 85 this(environment, executor, null /* handler */); 92 TestSensorEnvironment environment, 95 mEnvironment = environment; 229 * @param environment The test environment. 233 TestSensorEnvironment environment, 247 return new TestSensorOperation(environment, executor); 256 * @param environment The test environment [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
JitterVerification.java | 75 * @param environment the test environment 78 public static JitterVerification getDefault(TestSensorEnvironment environment) { 79 int sensorType = environment.getSensor().getType(); 85 boolean hasHifiSensors = environment.getContext().getPackageManager().hasSystemFeature( 91 long expectedPeriodNs = (long) environment.getExpectedSamplingPeriodUs() * 1000; 104 public void verify(TestSensorEnvironment environment, SensorStats stats) { 106 if (timestampsCount < 2 || environment.isSensorSamplingRateOverloaded()) {
|
EventGapVerificationTest.java | 72 TestSensorEnvironment environment = new TestSensorEnvironment(null, null, false, 0, 0); local 74 verification.verify(environment, stats); 78 verification.verify(environment, stats);
|
GyroscopeIntegrationVerification.java | 57 public void verify(TestSensorEnvironment environment, SensorStats stats) { 58 int sensorType = environment.getSensor().getType(); 66 int gyroscopeAxes = environment.getSensorAxesCount();
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
ViewportTest3.java | 26 import com.badlogic.gdx.graphics.g3d.Environment; 32 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; 50 public Environment environment; field in class:ViewportTest3 60 environment = new Environment(); 61 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.3f, 0.3f, 0.3f, 1.f)); 64 environment.add(shadowLight); 106 modelBatch.render(boxInstance, environment);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
Basic3DTest.java | 25 import com.badlogic.gdx.graphics.g3d.Environment;
31 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight;
43 public Environment environment;
field in class:Basic3DTest 49 environment = new Environment();
50 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f));
51 environment.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -1f, -0.8f, -0.2f));
76 modelBatch.render(instance, environment);
|
LightsTest.java | 27 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight;
28 import com.badlogic.gdx.graphics.g3d.environment.PointLight;
45 environment.clear();
46 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.2f, 0.2f, 0.2f, 1.0f));
47 environment.add(dirLight = new DirectionalLight().set(0.8f, 0.2f, 0.2f, -1f, -2f, -0.5f));
48 environment.add(pointLight = new PointLight().set(0.2f, 0.8f, 0.2f, 0f, 0f, 0f, 100f));
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/ |
variable.hpp | 12 // Description : defines model of program environment variable 19 #error Windows CE does not support environment variables. 37 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE 40 // ************** runtime::environment::variable_data ************** // 54 // ************** runtime::environment::variable_base ************** // 86 // ************** runtime::environment::variable ************** // 180 } // namespace environment 190 #include <boost/test/utils/runtime/env/environment.hpp> 193 // ************** runtime::environment::variable ************** // 200 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/ |
SensorBatchingTests.java | 259 TestSensorEnvironment environment = new TestSensorEnvironment( local 266 TestSensorOperation.createOperation(environment, testDurationSec, TimeUnit.SECONDS); 270 environment, TimeUnit.SECONDS.toMicros(testDurationSec) 274 executeTest(environment, operation, false /* flushExpected */); 282 TestSensorEnvironment environment = new TestSensorEnvironment( local 289 .createFlushOperation(environment, flushDurationSec, TimeUnit.SECONDS); 291 executeTest(environment, operation, true /* flushExpected */); 295 TestSensorEnvironment environment, 308 if (environment.getRequestedSamplingPeriodUs() == SensorManager.SENSOR_DELAY_FASTEST) { 311 sensorRate = String.format("%.0fhz", environment.getFrequencyHz()) [all...] |
/external/opencv3/3rdparty/jinja2/ |
meta.py | 20 def __init__(self, environment): 21 CodeGenerator.__init__(self, environment, '<introspection>', 39 >>> from jinja2 import Environment, meta 40 >>> env = Environment() 52 codegen = TrackingCodeGenerator(ast.environment) 63 >>> from jinja2 import Environment, meta 64 >>> env = Environment()
|
ext.py | 19 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) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
BatchingTestActivity.java | 121 TestSensorEnvironment environment = new TestSensorEnvironment( local 129 TestSensorOperation.createOperation(environment, testDurationSec,TimeUnit.SECONDS); 139 TestSensorEnvironment environment = new TestSensorEnvironment( local 147 .createFlushOperation(environment, flushDurationSec, TimeUnit.SECONDS);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMIterator.java | 110 * @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);
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/ |
GraphEnvironment.java | 38 * 2. Perform any configuration, such as adding graph references and setting a GL environment. 67 public AsyncRunner getAsyncRunner(FilterContext environment) { 69 mAsyncRunner = new AsyncRunner(environment, RoundRobinScheduler.class); 75 public GraphRunner getSyncRunner(FilterContext environment) { 77 mSyncRunner = new SyncRunner(environment, mGraph, RoundRobinScheduler.class); 125 * Loads a graph file from the specified resource and adds it to this environment. 145 * Add a graph to the environment. Consider using loadGraph() if you are loading a graph from 148 * @param graph The graph to add to the environment. 158 * Access a specific graph of this environment given a graph ID (previously returned from
|
/system/connectivity/shill/ |
mock_external_task.h | 41 const std::map<std::string, std::string>& environment,
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/ |
ModelBatch.java | 54 renderable.environment = null;
252 * current batch to be rendered. Any environment set on the returned renderables will be replaced with the given environment.
255 * @param environment the {@link Environment} to use for the renderables */
256 public void render (final RenderableProvider renderableProvider, final Environment environment) {
261 renderable.environment = environment;
267 * current batch to be rendered. Any environment set on the returned renderables will be replaced with the given environment. [all...] |
/build/kati/testcase/ |
origin.mk | 18 # TODO: support environment override, command line, and override.
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorCtsHelper.java | 167 * @param environment the environment of the test 171 public static String formatAssertionMessage(String label, TestSensorEnvironment environment) { 172 return formatAssertionMessage(label, environment, "Failed"); 179 * @param environment the environment of the test 187 TestSensorEnvironment environment, 190 return formatAssertionMessage(label, environment, String.format(format, params)); 197 * @param environment the environment of the tes [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
ChildTestIterator.java | 124 public void setRoot(int context, Object environment) 126 super.setRoot(context, environment);
|
OneStepIteratorForward.java | 88 public void setRoot(int context, Object environment) 90 super.setRoot(context, environment);
|
/external/autotest/client/site_tests/cellular_Smoke/ |
cellular_Smoke.py | 9 from autotest_lib.client.cros.cellular import cellular, cell_tools, environment 35 # * A cellular test environment context, which lets us 38 with environment.DefaultCellularTestContext(config) as c:
|
/external/autotest/client/site_tests/cellular_Throughput/ |
cellular_Throughput.py | 10 from autotest_lib.client.cros.cellular import cellular, cell_tools, environment 20 with environment.DefaultCellularTestContext(config) as c:
|