/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/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 namespace 42 make an environment 44 with environment.DefaultCellularTestContext(config) as c: 50 make an environment 53 with environment.DefaultCellularTestContext(config) as c:
|
/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...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
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...] |
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();
|
/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);
|
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/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...] |
/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...] |
/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...] |
/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,
|
/build/kati/testcase/ |
origin.mk | 18 # TODO: support environment override, command line, and override.
|