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

1 2 3 4

  /libcore/benchmarks/src/benchmarks/regression/
PropertyAccessBenchmark.java 77 x.setFloat(view, 0.1f);
83 generatedSetter.setFloat(view, 0.1f);
89 generatedField.setFloat(view, 0.1f);
102 void setFloat(View v, float f);
106 public void setFloat(View v, float f) {
112 public void setFloat(View v, float f) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 189 try { Array.setFloat(booleans, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
190 try { Array.setFloat(bytes, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
191 try { Array.setFloat(chars, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
192 Array.setFloat(floats, 0, floats[0]);
193 Array.setFloat(doubles, 0, floats[0]);
194 try { Array.setFloat(ints, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
195 try { Array.setFloat(longs, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
196 try { Array.setFloat(shorts, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {}
197 try { Array.setFloat(null, 0, floats[0]); fail(); } catch (NullPointerException expected) {}
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 324 ps.setFloat(4, 0.1f);
325 ps.setFloat(5, 0.2f);
327 ps.setFloat(7, 0.4f);
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 731 public void setFloat(Object object, float value) throws IllegalAccessException,
733 setFloat(object, value, isAccessible());
736 private native void setFloat(Object object, float value, boolean accessible)
    [all...]
  /frameworks/av/include/camera/
CameraParameters2.h 43 void setFloat(const char *key, float value);
CameraParameters.h 52 void setFloat(const char *key, float value);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ArrayTest.java 805 * java.lang.reflect.Array#setFloat(java.lang.Object, int, float)
809 // java.lang.reflect.Array.setFloat(java.lang.Object, int, float)
813 Array.setFloat(x, 0, (float) 1);
819 Array.setFloat(new Object(), 0, (float) 9);
829 Array.setFloat(x, 4, (float) 9);
840 Array.setFloat(null, 0, 0);
FieldTest.java 316 f.setFloat(o, ((Float) value).floatValue());
355 * java.lang.reflect.Field#setFloat(java.lang.Object, float)
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 102 simple.setFloat(i, i);
263 public void setFloat(int pos, float value);
357 public void setFloat(int pos, float value) {
  /external/srec/shared/include/
ESR_SessionType.h 172 ESR_ReturnCode(*setFloat)(struct ESR_SessionType_t* self, const LCHAR* name, float value);
ESR_Session.h 144 ESR_ReturnCode(*setFloat)(const LCHAR* name, float value);
  /frameworks/av/include/media/stagefright/
MetaData.h 206 bool setFloat(uint32_t key, float value);
  /frameworks/av/include/media/stagefright/foundation/
AMessage.h 49 void setFloat(const char *name, float value);
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 373 public void setFloat(int parameterIndex, float theFloat)
    [all...]
CallableStatement.java     [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 421 setFloat(array, index, ((Float) value).floatValue());
528 public static void setFloat(Object array, int index, float value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
  /libcore/luni/src/main/java/javax/sql/
RowSet.java     [all...]
  /external/clang/include/clang/AST/
APValue.h 125 MakeFloat(); setFloat(std::move(F));
351 void setFloat(APFloat F) {
  /external/srec/shared/src/
ESR_Session.c 133 return ESR_Session->setFloat(ESR_Session, name, value);
  /frameworks/av/media/ndk/
NdkMediaFormat.cpp 211 format->mFormat->setFloat(name, value);
  /frameworks/base/media/java/android/media/
MediaFormat.java 599 public final void setFloat(String name, float value) {
  /external/chromium_org/third_party/skia/include/utils/
SkMatrix44.h 238 inline void setFloat(int row, int col, float value) {
  /external/skia/include/utils/
SkMatrix44.h 238 inline void setFloat(int row, int col, float value) {
  /frameworks/av/camera/
CameraParameters2.cpp 117 void CameraParameters2::setFloat(const char *key, float value)
  /frameworks/av/media/libstagefright/
MetaData.cpp 72 bool MetaData::setFloat(uint32_t key, float value) {

Completed in 566 milliseconds

1 2 3 4