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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/net/http/
main_test.go 61 if testing.Short() || runningBenchmarks() {
62 // Don't worry about goroutine leaks in -short mode or in
89 // setParallel marks t as a parallel test if we're in short mode
91 // compatible with the afterTest func in non-short mode.
93 if testing.Short() {
112 if testing.Short() {
  /prebuilts/go/linux-x86/src/compress/flate/
writer_test.go 62 if !testing.Short() {
107 if testing.Short() {
128 if testing.Short() {
  /prebuilts/go/linux-x86/src/net/http/
main_test.go 61 if testing.Short() || runningBenchmarks() {
62 // Don't worry about goroutine leaks in -short mode or in
89 // setParallel marks t as a parallel test if we're in short mode
91 // compatible with the afterTest func in non-short mode.
93 if testing.Short() {
112 if testing.Short() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
WavAnalyzer.java 29 short[] shortData = new short[byteData.length >> 1];
33 data[i] = data[i] / Short.MAX_VALUE;
65 if ((Math.abs(data[i]) >= Short.MAX_VALUE) && (Math.abs(data[i - 1]) >= Short.MAX_VALUE)) {
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
RecorderRunnable.java 54 private short[] mAudioShortArray; // this array stores values from mAudioTone in read()
55 private short[] mBufferTestShortArray;
56 private short[] mAudioTone;
129 mAudioShortArray = new short[mMinRecorderBuffSizeInSamples];
164 mAudioTone = new short[Constant.LOOPBACK_SAMPLE_FRAMES];
190 mBufferTestShortArray = new short[mMinRecorderBuffSizeInSamples];
360 value = value / Short.MAX_VALUE;
474 double topThreshold = Short.MAX_VALUE * mSoundTopLimit;
475 double botThreshold = Short.MAX_VALUE * mSoundBotLimit;
  /external/flatbuffers/include/flatbuffers/
minireflect.h 53 virtual void Short(int16_t, const char *) {}
158 visitor->Short(tval, EnumName(tval, type_table));
323 void Short(int16_t x, const char *name) { Named(x, name); }
  /external/junit-params/src/main/java/junitparams/internal/
InvokeParameterisedMethod.java 190 if (clazz.isAssignableFrom(Short.TYPE) || clazz.isAssignableFrom(Short.class))
191 return Short.parseShort((String) object);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 338 public List<Short> getEntrySizes() {
339 List<Short> entrySizes = new ArrayList<Short>(entries.size());
341 short size = (short) entry.iv.length;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentValues.java 62 public void put(String key, Short value) {
173 public Short getAsShort(String key) {
180 return Short.valueOf(value.toString());
182 Log.e(TAG, "Cannot parse Short value for " + value + " at key " + key);
186 Log.e(TAG, "Cannot cast value for " + key + " to a Short: " + value, e);
  /external/valgrind/VEX/priv/
host_generic_reg_alloc2.c 63 Short live_after;
65 Short dead_before;
67 Short spill_offset;
68 Short spill_size;
81 Short live_after;
83 Short dead_before;
141 #define INVALID_RREG_NO ((Short)(-1))
384 HInstr* (*directReload) ( HInstr*, HReg, Short ),
424 Short ss_busy_until_before[N_SPILL64S];
437 Short* vreg_state; /* [0 .. n_vregs-1] *
    [all...]
  /frameworks/base/core/java/android/content/
ContentValues.java 124 public void put(String key, Short value) {
317 * Gets a value and converts it to a Short.
320 * @return the Short value, or {@code null} if the value is missing or cannot be converted
322 public Short getAsShort(String key) {
329 return Short.valueOf(value.toString());
331 Log.e(TAG, "Cannot parse Short value for " + value + " at key " + key);
335 Log.e(TAG, "Cannot cast value for " + key + " to a Short: " + value, e);
  /libcore/ojluni/src/main/java/java/lang/reflect/
Array.java 155 } else if (array instanceof short[]) {
156 return ((short[]) array).length;
192 if (array instanceof short[]) {
193 return Short.valueOf(((short[]) array)[index]);
290 * array object, as a {@code short}.
305 public static short getShort(Object array, int index)
307 if (array instanceof short[]) {
308 return ((short[]) array)[index];
340 } else if (array instanceof short[]) {
    [all...]
  /art/test/044-proxy/src/
ReturnsAndArgPassing.java 37 short shortFoo();
38 short shortBar();
139 myHandler.returnType = Short.class;
140 check(proxyMyInterface.shortFoo() == Short.MAX_VALUE);
144 check(proxyMyInterface.shortBar() == Short.MIN_VALUE);
386 myHandler.returnType = Short.class; // Short -> byte == fail
420 myHandler.returnType = Character.class; // Char -> short == fail
  /art/test/093-serialization/src/
Main.java 113 Short eight;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_int_lit16/
Test_add_int_lit16.java 85 * @title Arguments = 0 + Short.MAX_VALUE
89 assertEquals(Short.MAX_VALUE, t.run());
93 * @title Arguments = Integer.MAX_VALUE + Short.MAX_VALUE
125 * @title Arguments = Short.MIN_VALUE + Short.MIN_VALUE
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_int_lit8/
Test_rem_int_lit8.java 106 * @title Arguments = Short.MIN_VALUE, 127
110 assertEquals(-2, t.run(Short.MIN_VALUE));
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
ClassTransformer.java 55 Short.class,
  /external/easymock/src/org/easymock/
EasyMock.java 279 * Expects any short argument. For details, see the EasyMock documentation.
283 public static short anyShort() {
379 * Expects a short argument greater than or equal to the given value. For
386 public static short geq(short value) {
387 reportMatcher(new GreaterOrEqual<Short>(value));
471 * Expects a short argument less than or equal to the given value. For
478 public static short leq(short value) {
479 reportMatcher(new LessOrEqual<Short>(value));
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Primitives.java 55 add(primToWrap, wrapToPrim, short.class, Short.class);
  /external/guice/core/src/com/google/inject/internal/
ConstantBindingBuilderImpl.java 78 public void to(final short value) {
79 toConstant(Short.class, value);
  /external/javassist/src/main/javassist/runtime/
Desc.java 103 clazz = Short.TYPE;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
PortParser.java 155 return (byte) (0xFF & Short.parseShort(string));
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
PortCommandHandler.java 150 return (byte) (0xFF & Short.parseShort(string));
  /external/mockito/src/main/java/org/mockito/internal/matchers/text/
ValuePrinter.java 44 if (value instanceof Short) {
45 return "(short) " + value;
  /external/mockito/src/test/java/org/mockitousage/stubbing/
ReturningDefaultValuesTest.java 30 assertEquals((short) 0, mock.shortReturningMethod());
43 assertEquals(new Short((short) 0), mock.shortObjectReturningMethod());

Completed in 1176 milliseconds

<<11121314151617181920>>