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

1 2 3 4 5 6 7 8 91011

  /external/compiler-rt/test/builtins/Unit/ppc/
floatditf_test.c 13 DD computed; local
18 computed.ld = __floatditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
floatunditf_test.c 13 DD computed; local
18 computed.ld = __floatunditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
  /frameworks/support/lifecycle/extensions/src/main/java/android/arch/lifecycle/
ComputableLiveData.java 29 * A LiveData class that can be invalidated & computed on demand.
45 * Creates a computable live data which is computed when there are active observers.
77 boolean computed;
79 computed = false;
86 computed = true;
89 if (computed) {
104 } while (computed && mInvalid.get());
  /external/guava/guava-tests/test/com/google/common/cache/
NullCacheTest.java 43 Object computed = new Object(); local
47 .build(constantLoader(computed));
50 assertSame(computed, cache.getUnchecked(key));
53 assertSame(computed, notification.getValue());
60 Object computed = new Object(); local
64 .build(constantLoader(computed));
67 assertSame(computed, cache.getUnchecked(key));
70 assertSame(computed, notification.getValue());
77 Object computed = new Object(); local
81 .build(constantLoader(computed));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /external/python/cpython2/Lib/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sha.py 20 computed = obj.hexdigest()
21 self.assertTrue(computed == digest)
26 self.assertTrue(computed == computed_again)
33 self.assertTrue(computed == hexd)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-v10_32o-2.d 4 # Check that branch offsets are computed as for v32. The
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
constant_resolver.py 12 computed = set()
21 'Unable to get computed value for field %s of enum %s' %
23 if field not in computed:
32 if constant in computed:
43 computed.add(constant)
47 if field in computed:
63 computed.add(field)
  /external/jemalloc/test/unit/
hash.c 71 uint32_t computed, expected; local
122 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) |
138 assert_u32_eq(computed, expected,
140 hash_variant_string(variant), expected, computed);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug337.go 17 len("foo") // ERROR "len|value computed is not used"
bug357.go 18 false // ERROR "false evaluated but not used|value computed is not used"
bug379.go 17 1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
issue9076.go 7 // Issue 9076: cmd/gc shows computed values in error messages instead of original expression.
bug381.go 29 unsafe.Alignof(0) // ERROR "unsafe\.Alignof|value computed is not used"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug337.go 17 len("foo") // ERROR "len|value computed is not used"
bug357.go 18 false // ERROR "false evaluated but not used|value computed is not used"
bug379.go 17 1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
issue9076.go 7 // Issue 9076: cmd/gc shows computed values in error messages instead of original expression.
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue5242.go 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
  /prebuilts/go/linux-x86/misc/cgo/test/
issue5242.go 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
  /external/r8/src/test/java/com/android/tools/r8/maindexlist/
MainDexTracingTest.java 148 String computed = resultMainDexList.get(i); local
155 computed = computed.substring(0, computed.lastIndexOf('$'));
157 Assert.assertEquals(reference, computed);

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011