HomeSort by relevance Sort by last modified time
    Searched defs:environment (Results 1 - 25 of 495) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/optimizing/
nodes_test.cc 27 * and environment lists.
54 HEnvironment* environment = new (&allocator) HEnvironment( local
56 null_check->SetRawEnvironment(environment);
57 environment->SetRawEnvAt(0, parameter);
139 HEnvironment* environment = new (&allocator) HEnvironment( local
144 environment->CopyFrom(array);
145 with_environment->SetRawEnvironment(environment);
165 environment->SetAndCopyParentChain(&allocator, parent1);
code_sinking.cc 314 // Check environment users of the instruction. Some of these users require
318 HEnvironment* environment = use.GetUser(); local
319 HInstruction* user = environment->GetHolder();
344 // Drop the environment use not in the list of post-dominated block. This is
348 HEnvironment* environment = use.GetUser(); local
349 HInstruction* user = environment->GetHolder();
351 environment->RemoveAsUserOfInput(use.GetIndex());
352 environment->SetRawEnvAt(use.GetIndex(), nullptr);
prepare_for_register_allocation.cc 54 // Add a fake environment for String.charAt() inline info as we want
58 HEnvironment* environment = new (arena) HEnvironment(arena, local
63 check->InsertRawEnvironment(environment);
198 // Now do a thorough environment check that this is really coming from the same instruction in
199 // the same inlined graph. Unfortunately, we have to go through the whole environment chain.
204 // Different environment chain length. This happens when a method is called
scheduler_test.cc 129 HEnvironment* environment = new (&allocator) HEnvironment(&allocator, local
134 div_check->SetRawEnvironment(environment);
135 environment->SetRawEnvAt(0, add2);
137 environment->SetRawEnvAt(1, mul);
register_allocation_resolver.cc 349 // Walk over the environment uses, and update their locations.
357 HEnvironment* environment = env_use->GetEnvironment(); local
358 environment->SetLocationAt(env_use->GetInputIndex(), source);
  /external/v8/src/crankshaft/
hydrogen-osr.cc 44 HEnvironment *environment = builder_->environment(); local
45 int first_expression_index = environment->first_expression_index();
46 int length = environment->length();
51 = builder_->Add<HUnknownOSRValue>(environment, i);
52 environment->Bind(i, osr_value);
57 environment->Drop(length - first_expression_index);
60 = builder_->Add<HUnknownOSRValue>(environment, i);
61 environment->Push(osr_value);
67 environment->local_count() + environment->push_count()
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 23 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
24 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerMeasurementTestActivity.java 95 TestSensorEnvironment environment = new TestSensorEnvironment( local
100 TestSensorOperation.createOperation(environment, 100 /* event count */);
BatchingTestActivity.java 128 TestSensorEnvironment environment = new TestSensorEnvironment( local
136 TestSensorOperation.createOperation(environment, testDurationSec,TimeUnit.SECONDS);
146 TestSensorEnvironment environment = new TestSensorEnvironment( local
154 .createFlushOperation(environment, flushDurationSec, TimeUnit.SECONDS);
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);
GyroscopeMeasurementTestActivity.java 155 TestSensorEnvironment environment = new TestSensorEnvironment( local
160 .createOperation(environment, ROTATION_COLLECTION_SEC, TimeUnit.SECONDS);
162 int gyroscopeAxes = environment.getSensorAxesCount();
  /cts/tests/sensor/src/android/hardware/cts/
SensorBatchingFifoTest.java 90 TestSensorEnvironment environment = new TestSensorEnvironment(getContext(), local
97 int postFlushMs = environment.getExpectedSamplingPeriodUs() * 100 /1000;
99 environment.getSensor().getFifoReservedEventCount() *
100 environment.getExpectedSamplingPeriodUs() / (int)(1000 / 1.2); // 120%
103 environment, new int [] { preFlushMs, testFlushMs, postFlushMs }, -1);
105 op.addVerification(FifoLengthVerification.getDefault(environment));
SensorIntegrationTests.java 78 TestSensorEnvironment environment = new TestSensorEnvironment( local
84 TestSensorOperation.createOperation(environment, 100 /* eventCount */);
143 TestSensorEnvironment environment = new TestSensorEnvironment( local
151 TestSensorOperation.createOperation(environment, 100 /* eventCount */);
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
EventGapVerificationTest.java 72 TestSensorEnvironment environment = new TestSensorEnvironment(null, null, false, 0, 0); local
74 verification.verify(environment, stats);
78 verification.verify(environment, stats);
JitterVerificationTest.java 38 TestSensorEnvironment environment = new TestSensorEnvironment( local
52 verification.verify(environment, stats);
64 verification.verify(environment, stats);
TimestampClockSourceVerificationTest.java 168 TestSensorEnvironment environment = new TestSensorEnvironment(null, null, false, 0, 0); local
170 verification.verify(environment, stats);
174 verification.verify(environment, stats);
  /external/syslinux/dos/
mystuff.h 32 uint16_t environment; member in struct:psp
  /external/autotest/site_utils/sponge_lib/
acts_job_info.py 130 def environment(self): member in class:ACTSTaskInfo
  /libcore/ojluni/src/main/java/java/lang/
ProcessBuilder.java 59 * <li>an <i>environment</i>, which is a system-dependent mapping from
61 * the environment of the current process (see {@link System#getenv()}).
143 * and environment is easy:
150 * directory and environment, and redirects standard output and error
156 * Map<String, String> env = pb.environment();
170 * <p>To start a process with an explicit set of environment
172 * before adding environment variables.
182 private Map<String,String> environment; field in class:ProcessBuilder
272 * Returns a string map view of this process builder's environment.
274 * Whenever a process builder is created, the environment i
339 public Map<String,String> environment() { method in class:ProcessBuilder
353 ProcessBuilder environment(String[] envp) { method in class:ProcessBuilder
    [all...]
  /frameworks/base/services/core/java/com/android/server/storage/
DiskStatsLoggingService.java 29 import android.os.Environment;
30 import android.os.Environment.UserEnvironment;
74 UserEnvironment environment = new UserEnvironment(userId); local
77 environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS));
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Process.java 70 public void putAllEnvironmentVariables(Map<String, String> environment) {
71 mEnvironment.putAll(environment);
115 Log.v("Executing " + binaryPath + " with arguments " + mArguments + " and with environment "
158 String[] environment = environmentVariables.toArray(new String[environmentVariables.size()]); local
159 return environment;
  /external/v8/src/compiler/
control-builders.h 28 typedef AstGraphBuilder::Environment Environment;
31 Environment* environment() { return builder_->environment(); } function in class:v8::internal::compiler::ControlBuilder
32 void set_environment(Environment* env) { builder_->set_environment(env); }
54 Environment* then_environment_; // Environment after the 'then' body.
55 Environment* else_environment_; // Environment for the 'else' body
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
jvm_android.cc 243 rtc::scoped_ptr<JNIEnvironment> JVM::environment() { function in class:webrtc::JVM
244 ALOGD("JVM::environment%s", GetThreadInfo().c_str());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessManagerTest.java 124 String[] environment = { "FOO=foo", "PATH=" + System.getenv("PATH") }; local
126 commands, environment, null);
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 241 pb.environment().put("A", "android");
281 Map<String, String> environment = pb.environment(); local
282 Map<String, String> before = new HashMap<String, String>(environment);
284 environment.put("A", null);
289 environment.put(null, "android");
294 environment.containsKey(null);
299 environment.containsValue(null);
303 assertEquals(before, environment);
308 * in the environment map. Since that is a {@code Map<String, String>}
314 Map<String, String> environment = pb.environment(); local
    [all...]

Completed in 3807 milliseconds

1 2 3 4 5 6 7 8 91011>>