HomeSort by relevance Sort by last modified time
    Searched refs:RESULT (Results 26 - 50 of 196) sorted by null

12 3 4 5 6 7 8

  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 31 private static final long RESULT = 1000;
50 assertEquals(RESULT, mMyAsyncTask.get(DURATION, TimeUnit.MILLISECONDS).longValue());
52 assertEquals(RESULT, mMyAsyncTask.get().longValue());
72 assertEquals(RESULT, mMyAsyncTask.postResult.longValue());
245 return RESULT;
255 protected void onPostExecute(Long result) {
256 super.onPostExecute(result);
257 postResult = result;
  /cts/tools/dasm/src/dasm/
parser.cup 189 {: RESULT.str_val = Utils.convertDotsToSlashes(w.str_val); :}
195 {: RESULT.int_val = access_val; :}
433 {: RESULT.variant_val = v.variant_val; :}
436 {: RESULT.variant_val = null; :}
466 Int:i {: RESULT.variant_val = new Integer(i.int_val); :}
468 Num:n {: RESULT.variant_val = n.number_val; :}
470 Str:s {: RESULT.variant_val = s.str_val; :}
474 Word:w {: RESULT.variant_val = w.str_val; :} // for enum
476 item:v {: RESULT.variant_val = v.variant_val; :}
499 {: RESULT.str_val = w.str_val; :
    [all...]
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.h 43 RESULT
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_program.py 28 result = object()
34 return result
51 self.assertEqual(program.result, result)
73 self.assertTrue(hasattr(program, 'result'))
97 result = None variable in class:InitialisableProgram
107 RESULT = object()
122 return RESULT
199 self.assertIs(program.result, RESULT)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_program.py 28 result = object()
34 return result
51 self.assertEqual(program.result, result)
73 self.assertTrue(hasattr(program, 'result'))
97 result = None variable in class:InitialisableProgram
107 RESULT = object()
122 return RESULT
199 self.assertIs(program.result, RESULT)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_program.py 28 result = object()
34 return result
51 self.assertEqual(program.result, result)
73 self.assertTrue(hasattr(program, 'result'))
97 result = None variable in class:InitialisableProgram
107 RESULT = object()
122 return RESULT
199 self.assertIs(program.result, RESULT)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_program.py 28 result = object()
34 return result
51 self.assertEqual(program.result, result)
73 self.assertTrue(hasattr(program, 'result'))
97 result = None variable in class:InitialisableProgram
107 RESULT = object()
122 return RESULT
199 self.assertIs(program.result, RESULT)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_program.py 28 result = object()
34 return result
51 self.assertEqual(program.result, result)
73 self.assertTrue(hasattr(program, 'result'))
97 result = None variable in class:InitialisableProgram
107 RESULT = object()
122 return RESULT
199 self.assertIs(program.result, RESULT)
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Calculator.java 90 AlertDialogFragment.OnClickListener, Evaluator.EvaluationListener /* for main result */,
100 INPUT, // Result and formula both visible, no evaluation requested,
101 // Though result may be visible on bottom line.
103 // Not used for instant result evaluation.
107 // with result, and current expression has been copied to history.
108 ANIMATE, // Result computed, animation to enlarge result window in progress.
109 RESULT, // Result displayed, formula invisible.
110 // If we are in RESULT state, the formula was evaluated withou
1396 UnifiedReal result = mEvaluator.getResult(Evaluator.MAIN_INDEX); local
    [all...]
  /external/markdown/MarkdownTest/
MarkdownTest.pl 59 open(RESULT, $resultfile) || die("Can't open resultfile: $!");
62 my $t_result = <RESULT>;
66 # Normalize the output and expected result strings:
134 output before comparing script output to the expected test result.
  /development/build/tools/
mk_sdk_repo_xml.sh 245 local RESULT=""
280 RESULT="$RESULT $DST $VALUE"
289 echo "$RESULT"
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingTask.java 32 static interface Result {}
61 Object result = doInBackground(message); local
63 msg.obj = result;
64 msg.arg1 = ProcessingTaskController.RESULT;
83 public abstract Result doInBackground(Request message);
84 public abstract void onResult(Result message);
  /external/ltp/testcases/realtime/func/periodic_cpu_load/
mixed_load.sh 222 RESULT="PASSED"
225 RESULT="FAILED"
231 echo "Result: $RESULT"
  /external/skia/src/sksl/
SkSLIRGenerator.cpp 447 std::unique_ptr<Expression> result = this->convertExpression(*r.fExpression); local
448 if (!result) {
452 fErrors.error(result->fPosition, "may not return a value from a void function");
454 result = this->coerce(std::move(result), fCurrentFunction->fReturnType);
455 if (!result) {
459 return std::unique_ptr<Statement>(new ReturnStatement(std::move(result)));
676 const Symbol* result = (*fSymbolTable)[type.fName]; local
677 if (result && result->fKind == Symbol::kType_Kind)
720 const Symbol* result = (*fSymbolTable)[identifier.fText]; local
954 bool result; local
1055 std::unique_ptr<Expression> result = this->constantFold(*left.get(), expression.fOperator, local
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
DeviceReportLog.java 40 private static final String RESULT = "COMPATIBILITY_TEST_RESULT";
262 output.putString(RESULT, serialize(this));
273 * does not appear in the result XML.
  /external/valgrind/callgrind/
callgrind_control.in 366 open RESULT, "vgdb $vgdbPrefixOption --pid=$pid $vgdbCommand|";
387 while(<RESULT>) {
  /test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParser.java 66 // Constant tokens that appear in the result grammar.
85 static final String RESULT = "Result";
331 * This method parses the json object and summarizes the test result through listener.
356 String result = (String) resultObject.get(RESULT); local
366 switch (result) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-flow.h 110 storing each element in RESULT, which is of type TYPE. */
111 #define FOR_EACH_HTAB_ELEMENT(HTAB, RESULT, TYPE, ITER) \
112 for (RESULT = (TYPE) first_htab_element (&(ITER), (HTAB)); \
114 RESULT = (TYPE) next_htab_element (&(ITER)))
241 do so will result in leaving a iterator marker node in the immediate
477 tree result; /* PHI result. */ member in struct:_edge_var_map
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
xalan-2.7.1.jar 
  /external/mesa3d/src/mesa/program/
program_parse.y 135 unsigned result;
182 %token RANGE RESULT ROW
217 %type <result> resultBinding resultColBinding
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletableFuture.java 105 * <p>Arguments used to pass a completion result (that is, for
107 * null, but passing a null value for any other parameter will result
112 * @param <T> The result type returned by this future's {@code join}
122 * a result field, and then pops off and runs those actions. This
126 * Non-nullness of field result (set via CAS) indicates done. An
127 * AltResult is used to box null as a result, as well as to hold
220 volatile Object result; // Either the result or boxed AltResult field in class:CompletableFuture
224 return U.compareAndSwapObject(this, RESULT, null, r);
255 return U.compareAndSwapObject(this, RESULT, null
    [all...]
  /external/guice/core/test/com/google/inject/util/
OverrideModuleTest.java 528 private static final String RESULT = "RESULT";
532 private static final Key<String> RESULT_KEY = Key.get(String.class, named(RESULT));
558 @Provides @Exposed @Named(RESULT)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/
build-lucid-multilib-toolchain.sh 494 local RESULT
495 RESULT=$(printf "%s\n" "$*" | tr ':' '\n' | awk '$1 != "" && $1 != "." { print $0; }' | tr '\n' ':')
496 printf "%s" ${RESULT%:}
551 # Result: set $1 to the full path of the corresponding command
1134 # B in the result.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/
build-precise-multilib-toolchain.sh 496 local RESULT
497 RESULT=$(printf "%s\n" "$*" | tr ':' '\n' | awk '$1 != "" && $1 != "." { print $0; }' | tr '\n' ':')
498 printf "%s" ${RESULT%:}
553 # Result: set $1 to the full path of the corresponding command
1136 # B in the result.
    [all...]

Completed in 1141 milliseconds

12 3 4 5 6 7 8