HomeSort by relevance Sort by last modified time
    Searched refs:Short (Results 151 - 175 of 949) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
printer_test.go 14 if testing.Short() {
15 t.Skip("skipping test in short mode")
  /prebuilts/go/darwin-x86/src/cmd/go/internal/version/
version.go 18 Short: "print Go version",
  /prebuilts/go/darwin-x86/src/context/
x_test.go 21 func TestAllocs(t *testing.T) { XTestAllocs(t, testing.Short, testing.AllocsPerRun) }
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand_test.go 16 if testing.Short() {
  /prebuilts/go/darwin-x86/src/runtime/
fastlog2_test.go 20 if testing.Short() {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19182.go 27 time.Sleep(10 * time.Millisecond) // Short sleep is enough in passing case
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
printer_test.go 14 if testing.Short() {
15 t.Skip("skipping test in short mode")
  /prebuilts/go/linux-x86/src/cmd/go/internal/version/
version.go 18 Short: "print Go version",
  /prebuilts/go/linux-x86/src/context/
x_test.go 21 func TestAllocs(t *testing.T) { XTestAllocs(t, testing.Short, testing.AllocsPerRun) }
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_test.go 16 if testing.Short() {
  /prebuilts/go/linux-x86/src/runtime/
fastlog2_test.go 20 if testing.Short() {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19182.go 27 time.Sleep(10 * time.Millisecond) // Short sleep is enough in passing case
  /external/valgrind/VEX/priv/
host_generic_simd64.c 153 static inline Short qadd16S ( Short xx, Short yy )
158 return (Short)t;
193 static inline Short qsub16S ( Short xx, Short yy )
198 return (Short)t;
225 static inline Short mul16 ( Short xx, Short yy
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
TrivialPlayer.java 34 short[] mAudioData;
57 mAudioData = new short[mBufferSize];
63 (short)(((Math.random() * 2.0) - 1.0) * (double)Short.MAX_VALUE/2.0);
  /cts/tests/vm/src/android/vm/cts/opcodes/add_int_lit16/
AddIntLit16Test.java 70 * @title Arguments = 0 + Short.MAX_VALUE
74 assertEquals(Short.MAX_VALUE, t.run());
78 * @title Arguments = Integer.MAX_VALUE + Short.MAX_VALUE
110 * @title Arguments = Short.MIN_VALUE + Short.MIN_VALUE
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/or_int_lit16/
Test_or_int_lit16.java 62 * @title Arguments = Short.MAX_VALUE & Short.MIN_VALUE
66 assertEquals(0xffffffff, t.run(Short.MIN_VALUE));
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
MultibindingComponent.java 46 Map<Short, String> shortKeyMap();
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
SineWaveTone.java 41 public void generateTone(short[] tone, int size) {
43 short value1 = (short) (mAmplitude * Math.sin(mPhase) * Short.MAX_VALUE);
  /external/guava/guava-tests/test/com/google/common/primitives/
PrimitivesTest.java 54 float.class, int.class, long.class, short.class, void.class),
69 Float.class, Integer.class, Long.class, Short.class, Void.class),
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
IsInstanceOf.java 35 if (short.class.equals(expectedClass)) return Short.class;
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
BaseDescriptionTest.java 37 baseDescription.appendValue(Short.valueOf("2"));
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedPrimitiveType.java 35 SHORT("short", Short.class.getCanonicalName(), Collections.singletonList(BYTE)),
37 INT("int", Integer.class.getCanonicalName(), Arrays.asList(BYTE, SHORT, CHAR)),
38 LONG("long", Long.class.getCanonicalName(), Arrays.asList(BYTE, SHORT, INT, CHAR)),
40 FLOAT("float", Float.class.getCanonicalName(), Arrays.asList(LONG, INT, SHORT, BYTE, CHAR)),
41 DOUBLE("double", Double.class.getCanonicalName(), Arrays.asList(FLOAT, LONG, INT, SHORT, BYTE, CHAR));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
PrimitiveType.java 38 Short ("Short"),
  /external/llvm/lib/DebugInfo/CodeView/
RecordSerialization.cpp 39 uint16_t Short = *reinterpret_cast<const ulittle16_t *>(Data.data());
41 if (Short < LF_NUMERIC) {
42 Num = APSInt(APInt(/*numBits=*/16, Short, /*isSigned=*/false),
46 switch (Short) {
  /external/mockito/src/main/java/org/mockito/
AdditionalMatchers.java 129 * short argument greater than or equal to the given value.
137 public static short geq(short value) {
138 reportMatcher(new GreaterOrEqual<Short>(value));
227 * short argument less than or equal to the given value.
235 public static short leq(short value) {
236 reportMatcher(new LessOrEqual<Short>(value));
325 * short argument greater than the given value.
333 public static short gt(short value)
    [all...]

Completed in 1545 milliseconds

1 2 3 4 5 67 8 91011>>