HomeSort by relevance Sort by last modified time
    Searched refs:executed (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/coverage/
__main__.py 12 executed = os.path.splitext(os.path.basename(run_globals['__file__']))[0] variable
13 if executed != '__main__': # For Python 2.5 compatibility
15 'Incorrectly executed %s instead of __main__' % executed
  /toolchain/binutils/binutils-2.25/gprof/
bbconv.pl 46 if (/Block.*executed([ 0-9]+) time.* address= 0x([0-9a-fA-F]*)/) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
ld-sp-warn-cortex-m3.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-cortex-m4.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7e-m.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7m.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 32 * be executed after {@link #execute()} is called. Any {@code Runnable} added
34 * guarantee, however, that listeners will be executed in the order that they
58 private boolean executed; field in class:ExecutionList
66 * executed immediately.
72 * ExecutionList} has been executed at the time it is added. In particular,
92 if (!executed) {
107 * executed before those previously added, and note that the execution order
121 if (executed) {
124 executed = true;
  /cts/hostsidetests/sustainedperf/dhrystone/
Drystone-2.1.sh 119 Xbranches that are not executed. The intention is that optimizing
121 Xloop, or from removing code altogether. Statements that are executed
130 Xof the executed statements should not be changed, there are still cases
154 X executed "then" part of the statement
187 X was added in the non-executed "else" part of the "if" statement, to
199 X has been added in the non-executed part of the last "if" statement,
202 Xo In Func_3, a non-executed "else" part has been added to the "if"
207 X To compensate for this change, the (non-executed) "else" part in the
478 X * are not executed. The intention is that optimizing compilers
481 X * that are executed within the measurement loop have NOT bee
    [all...]
  /external/v8/test/mjsunit/
try-finally-nested.js 32 var executed = false;
33 while (!executed) {
37 executed = true;
41 assertTrue(executed, "finally block executed");
  /external/chromium-trace/catapult/third_party/coverage/coverage/
results.py 23 executed = self.data.lines(self.filename) or []
24 executed = self.file_reporter.translate_lines(executed)
25 self.missing = self.statements - executed
70 """Returns a sorted list of the arcs actually executed in the code."""
71 executed = self.data.arcs(self.filename) or []
72 executed = self.file_reporter.translate_arcs(executed)
73 return sorted(executed)
76 """Returns a sorted list of the arcs in the code not executed.""
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
serial.s 4 # will never be executed. GAS should detect this.
6 trap r21 -> add r2, r0, r0 ; right instruction will never be executed.
serial.l 12 4 # will never be executed. GAS should detect this.
14 6 \?\?\?\? ........ trap r21 -> add r2, r0, r0 ; right instruction will never be executed.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/intents/
CameraContentJobService.java 88 final boolean executed = mCondition.block(DEFAULT_TIMEOUT_MILLIS);
92 return executed;
96 Log.d(TAG, "Job executed:" + params.getJobId());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
MockJobService.java 83 final boolean executed = mLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
84 return executed;
97 Log.d(TAG, "Job executed:" + jobId);
  /cts/tests/JobScheduler/src/android/jobscheduler/
MockJobService.java 87 final boolean executed = mLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
88 return executed;
101 Log.d(TAG, "Job executed:" + params.getJobId());
TriggerContentJobService.java 125 final boolean executed = mLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
126 return executed;
158 Log.d(TAG, "Job executed:" + params.getJobId());
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
TimingConstraintsTest.java 23 * Schedules jobs with various timing constraints and ensures that they are executed when
40 final boolean executed = kTestEnvironment.awaitExecution();
41 assertTrue("Timed out waiting for override deadline.", executed);
54 assertTrue("Cancel failed: job executed when it shouldn't have.",
59 * Ensure that when a job is executed because its deadline has expired, that
79 * Ensure that when a job is executed and its deadline hasn't expired, that
TriggerContentTest.java 255 boolean executed = kTriggerTestEnvironment.awaitExecution();
257 assertTrue("Timed out waiting for trigger content.", executed);
273 executed = kTriggerTestEnvironment.awaitExecution();
274 assertTrue("Timed out waiting for trigger content.", executed);
302 boolean executed = kTriggerTestEnvironment.awaitExecution();
304 assertTrue("Timed out waiting for trigger content.", executed);
319 executed = kTriggerTestEnvironment.awaitExecution();
320 assertTrue("Timed out waiting for trigger content.", executed);
344 boolean executed = kTriggerTestEnvironment.awaitExecution();
346 assertTrue("Timed out waiting for trigger content.", executed);
    [all...]
  /tools/test/connectivity/acts/framework/acts/
records.py 201 self.executed: A list of records for tests that were actually executed.
210 self.executed = []
238 A record is considered executed once it's added to the test result.
243 self.executed.append(record)
255 in the class was executed.
270 self.executed.append(record)
279 {<executed test record 1>},
280 {<executed test record 2>},
290 executed = [record.to_dict() for record in self.executed
    [all...]
  /art/test/115-native-bridge/src/
NativeBridgeMain.java 53 if (!testCallStaticVoidMethodOnSubClass_SuperClass.executed) {
61 private static boolean executed = false; field in class:Main.testCallStaticVoidMethodOnSubClass_SuperClass
63 executed = true;
  /external/llvm/test/Bindings/OCaml/
ext_exc.ml 12 * want the let _ bindings executed, see http://caml.inria.fr/mantis/view.php?id=4166 *)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Call.java 32 * it cannot be executed twice.
38 private boolean executed; field in class:Call
47 // etc.) may incorrectly be reflected in the request when it is executed.
65 * @throws IOException if the request could not be executed due to
70 * @throws IllegalStateException when the call has already been executed.
74 if (executed) throw new IllegalStateException("Already Executed");
75 executed = true;
78 client.getDispatcher().executed(this);
92 * Schedules the request to be executed at some point in the future
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 279 boolean executed = false;
288 if (!executed) {
302 if (executed) {
305 executed = true;
340 private boolean executed;
347 if (!executed) {
358 if (executed) {
361 executed = true;
403 private boolean executed;
410 if (!executed) {
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7