Searched refs:getFloat (Results 76 - 100 of 154) sorted by last modified time

1234567

/frameworks/base/core/java/android/content/res/
H A DGradientColor.java183 mStartX = a.getFloat(
185 mStartY = a.getFloat(
187 mEndX = a.getFloat(
189 mEndY = a.getFloat(
192 mCenterX = a.getFloat(
194 mCenterY = a.getFloat(
222 mGradientRadius = a.getFloat(R.styleable.GradientColor_gradientRadius,
353 float offset = a.getFloat(R.styleable.GradientColorItem_offset, 0);
412 mItemOffsets[i] = a.getFloat(R.styleable.GradientColorItem_offset, mItemOffsets[i]);
H A DResources.java1107 public float getFloat(int id) { method in class:Resources
1112 return value.getFloat();
2062 outBundle.putFloat(name, v.getFloat());
H A DTypedArray.java394 public float getFloat(@StyleableRes int index, float defValue) { method in class:TypedArray
421 throw new RuntimeException("getFloat of bad type: 0x" + Integer.toHexString(type));
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java98 abstract public float getFloat(int column); method in class:AbstractCursor
H A DAbstractWindowedCursor.java79 public float getFloat(int columnIndex) { method in class:AbstractWindowedCursor
81 return mWindow.getFloat(mPos, columnIndex);
H A DCursor.java301 float getFloat(int columnIndex); method in interface:Cursor
319 * as documented in the get-type methods such as {@link #getInt(int)}, {@link #getFloat(int)}
H A DCursorWindow.java593 public float getFloat(int row, int column) { method in class:CursorWindow
H A DCursorWrapper.java116 public float getFloat(int columnIndex) { method in class:CursorWrapper
117 return mCursor.getFloat(columnIndex);
H A DDatabaseUtils.java971 values.put(column, cursor.getFloat(index));
H A DMatrixCursor.java284 public float getFloat(int column) { method in class:MatrixCursor
H A DMergeCursor.java120 public float getFloat(int column) method in class:MergeCursor
122 return mCursor.getFloat(column);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleViewDebug.java363 args[i] = in.getFloat();
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java149 mGestureStrokeWidth = a.getFloat(R.styleable.GestureOverlayView_gestureStrokeWidth,
160 mGestureStrokeLengthThreshold = a.getFloat(
163 mGestureStrokeAngleThreshold = a.getFloat(
166 mGestureStrokeSquarenessTreshold = a.getFloat(
/frameworks/base/core/java/android/hardware/
H A DCamera.java3569 return getFloat(KEY_EXPOSURE_COMPENSATION_STEP, 0);
4128 private float getFloat(String key, float defaultValue) { method in class:Camera.Parameters
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryablePrimitive.java134 return buffer.getFloat();
H A DMarshalQueryableRggbChannelVector.java49 float red = buffer.getFloat();
50 float gEven = buffer.getFloat();
51 float gOdd = buffer.getFloat();
52 float blue = buffer.getFloat();
H A DMarshalQueryableSizeF.java49 float width = buffer.getFloat();
50 float height = buffer.getFloat();
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java316 mShadowRadius = a.getFloat(attr, 0f);
323 mBackgroundDimAmount = a.getFloat(android.R.styleable.Theme_backgroundDimAmount, 0.5f);
/frameworks/base/core/java/android/os/
H A DBaseBundle.java1015 float getFloat(String key) { method in class:BaseBundle
1017 return getFloat(key, 0.0f);
1028 float getFloat(String key, float defaultValue) { method in class:BaseBundle
H A DBundle.java768 public float getFloat(String key) { method in class:Bundle
769 return super.getFloat(key);
781 public float getFloat(String key, float defaultValue) { method in class:Bundle
782 return super.getFloat(key, defaultValue);
H A DHwBlob.java42 public native final float getFloat(long offset); method in class:HwBlob
/frameworks/base/core/java/android/preference/
H A DPreference.java1807 return dataStore.getFloat(mKey, defaultReturnValue);
1810 return mPreferenceManager.getSharedPreferences().getFloat(mKey, defaultReturnValue);
H A DPreferenceDataStore.java104 * @see #getFloat(String, float)
176 default float getFloat(String key, float defValue) { method in interface:PreferenceDataStore
/frameworks/base/core/java/android/provider/
H A DSettings.java2444 public static float getFloat(ContentResolver cr, String name, float def) { method in class:Settings.System
2477 public static float getFloat(ContentResolver cr, String name) method in class:Settings.System
4999 public static float getFloat(ContentResolver cr, String name, float def) { method in class:Settings.Secure
5032 public static float getFloat(ContentResolver cr, String name) method in class:Settings.Secure
10365 public static float getFloat(ContentResolver cr, String name, float def) { method in class:Settings.Global
10392 public static float getFloat(ContentResolver cr, String name) method in class:Settings.Global
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java742 paramsBundle.getFloat(
745 paramsBundle.getFloat(
911 return params == null ? defaultValue : params.getFloat(key, defaultValue);

Completed in 2924 milliseconds

1234567