Searched defs:getInt (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DKeyValueMap.java56 public int getInt(String key) { method in class:KeyValueMap
/frameworks/base/services/core/java/com/android/server/notification/
H A DPropConfig.java25 public static int getInt(Context context, String propName, int resId) { method in class:PropConfig
26 return SystemProperties.getInt(propName, context.getResources().getInteger(resId));
/frameworks/support/v4/java/android/support/v4/content/res/
H A DTypedArrayUtils.java44 public static int getInt(TypedArray a, @StyleableRes int index, method in class:TypedArrayUtils
46 int val = a.getInt(fallbackIndex, defaultValue);
47 return a.getInt(index, val);
/frameworks/base/core/java/android/os/
H A DSystemProperties.java75 public static int getInt(String key, int def) { method in class:SystemProperties
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DFilteringCursorWrapper.java108 public int getInt(int column) { method in class:FilteringCursorWrapper
109 return mCursor.getInt(column);
H A DRootCursorWrapper.java103 public int getInt(int column) { method in class:RootCursorWrapper
104 return mCursor.getInt(column);
H A DSortingCursorWrapper.java138 public int getInt(int column) { method in class:SortingCursorWrapper
139 return mCursor.getInt(column);
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpAckPacket.java92 private static final int getInt(Integer v) { method in class:DhcpAckPacket
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java47 public int getInt(String key, int defValue) { method in class:BridgeSharedPreferences
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexAppParameters.java152 public int getInt(byte tag) { method in class:ObexAppParameters
159 return ByteBuffer.wrap(bval).getInt();
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DObexAppParameters.java152 public int getInt(byte tag) { method in class:ObexAppParameters
159 return ByteBuffer.wrap(bval).getInt();
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp140 status_t AudioParameter::getInt(const String8& key, int& value) function in class:android::AudioParameter
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java291 int getInt(String key, int defValue); method in interface:SharedPreferences
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java67 public int getInt(int columnIndex) { method in class:AbstractWindowedCursor
69 return mWindow.getInt(mPos, columnIndex);
H A DMatrixCursor.java268 public int getInt(int column) { method in class:MatrixCursor
H A DMergeCursor.java108 public int getInt(int column) method in class:MergeCursor
110 return mCursor.getInt(column);
H A DCursor.java275 int getInt(int columnIndex); method in interface:Cursor
319 * as documented in the get-type methods such as {@link #getInt(int)}, {@link #getFloat(int)}
H A DCursorWrapper.java121 public int getInt(int columnIndex) { method in class:CursorWrapper
122 return mCursor.getInt(columnIndex);
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java197 public int getInt(int column) method in class:SortCursor
199 return mCursor.getInt(column);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DPrefs.java68 public static int getInt(Context context, @Key String key, int defaultValue) { method in class:Prefs
69 return get(context).getInt(key, defaultValue);
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java337 public int getInt(int index, int defValue) { method in class:TypedArray
359 throw new RuntimeException("getInt of bad type: 0x" + Integer.toHexString(type));
493 * Unlike {@link #getInt(int, int)}, this method will throw an exception if
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java494 public int getInt(String property, int def) { method in class:TypedProperties
635 public int getInt(String property) { method in class:TypedProperties
636 return getInt(property, 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeParameters.java77 ? getInt("doze.pulse.duration.in.pickup", R.integer.doze_pulse_duration_in_pickup)
78 : getInt("doze.pulse.duration.in", R.integer.doze_pulse_duration_in);
82 return getInt("doze.pulse.duration.visible", R.integer.doze_pulse_duration_visible);
86 return getInt("doze.pulse.duration.out", R.integer.doze_pulse_duration_out);
126 return getInt("doze.pulse.schedule.resets", R.integer.doze_pulse_schedule_resets);
130 return getInt("doze.pickup.vibration.threshold", R.integer.doze_pickup_vibration_threshold);
137 private int getInt(String propName, int resId) { method in class:DozeParameters
138 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java74 public int getInt(int columnIndex) { method in class:MockCursor
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java515 private int getInt(Element elem, String name) { method in class:ColladaParser

Completed in 874 milliseconds

12