Searched defs:getInt (Results 1 - 25 of 35) 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/base/core/java/android/net/dhcp/
H A DDhcpAckPacket.java94 private static final int getInt(Integer v) { method in class:DhcpAckPacket
107 mServerIdentifier, getInt(mLeaseTime));
/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/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.java289 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.java101 public int getInt(int columnIndex) { method in class:CursorWrapper
102 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/core/java/android/content/res/
H A DTypedArray.java304 public int getInt(int index, int defValue) { method in class:TypedArray
325 Log.w(Resources.TAG, "getInt of bad type: 0x"
/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.java79 ? getInt("doze.pulse.duration.in.pickup", R.integer.doze_pulse_duration_in_pickup)
80 : getInt("doze.pulse.duration.in", R.integer.doze_pulse_duration_in);
85 ? getInt("doze.pulse.delay.in.pickup", R.integer.doze_pulse_delay_in_pickup)
86 : getInt("doze.pulse.delay.in", R.integer.doze_pulse_delay_in);
90 return getInt("doze.pulse.duration.visible", R.integer.doze_pulse_duration_visible);
94 return getInt("doze.pulse.duration.out", R.integer.doze_pulse_duration_out);
134 return getInt("doze.pulse.schedule.resets", R.integer.doze_pulse_schedule_resets);
138 return getInt("doze.pickup.vibration.threshold", R.integer.doze_pickup_vibration_threshold);
145 private int getInt(String propName, int resId) { method in class:DozeParameters
146 int value = SystemProperties.getInt(propNam
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java66 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
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java200 public int getInt(int index, int defValue) { method in class:BridgeTypedArray
340 return getInt(index, defValue);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java100 public int getInt(int index, int defValue) { method in class:TintTypedArray
101 return mWrapped.getInt(index, defValue);

Completed in 2170 milliseconds

12