HomeSort by relevance Sort by last modified time
    Searched defs:getIntValue (Results 1 - 25 of 337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/net/src/android/net/cts/
SysctlBaseTest.java 66 protected int getIntValue(String filename) throws ErrnoException, IOException {
  /frameworks/base/core/java/android/animation/
Keyframes.java 74 int getIntValue(float fraction);
IntKeyframeSet.java 40 return getIntValue(fraction);
56 public int getIntValue(float fraction) {
60 int prevValue = prevKeyframe.getIntValue();
61 int nextValue = nextKeyframe.getIntValue();
76 int prevValue = prevKeyframe.getIntValue();
77 int nextValue = nextKeyframe.getIntValue();
96 int prevValue = prevKeyframe.getIntValue();
97 int nextValue = nextKeyframe.getIntValue();
Keyframe.java 316 public int getIntValue() {
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
AbstractData.java 30 public int getIntValue() {
67 public int getIntValue(String path, int defaultValue) {
93 public int getIntValue(String path) {
ChainedData.java 151 public int getIntValue(String path, int defaultValue) {
176 public int getIntValue(String path) {
179 return child.getIntValue();
Data.java 53 int getIntValue();
217 int getIntValue(String path, int defaultValue);
229 int getIntValue(String path);
DelegatedData.java 72 public int getIntValue() {
73 return getDelegate().getIntValue();
250 public int getIntValue(String path, int defaultValue) {
251 return getDelegate().getIntValue(path, defaultValue);
260 public int getIntValue(String path) {
261 return getDelegate().getIntValue(path);
  /external/jsilver/src/org/clearsilver/
HDF.java 74 int getIntValue(String hdfName, int defaultValue);
DelegatedHdf.java 99 public int getIntValue(String hdfname,
101 return getHdf().getIntValue(hdfname, default_value);
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeValue.h 49 unsigned int getIntValue() const { return m_IntValue; }
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
Setting.java 73 public int getIntValue() {
SettingsDialog.java 178 mSettingValue.setText(Integer.toString(mFocusedSetting.getIntValue()));
180 mSeekBar.setProgress(mFocusedSetting.getIntValue());
210 mFocusedSetting.getIntValue() + SETTING_INT_VALUE_STEP,
215 mFocusedSetting.getIntValue() - SETTING_INT_VALUE_STEP,
225 mSeekBar.setProgress(mFocusedSetting.getIntValue());
226 mSettingValue.setText(Integer.toString(mFocusedSetting.getIntValue()));
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
PreferencePage.java 142 DdmPreferences.setProfilerBufferSizeMb(mProfilerBufsize.getIntValue());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Value.java 179 public int getIntValue() {
284 return getIntValue() == value0.getIntValue();
320 return "int: " + getIntValue();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 120 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 173 public int getIntValue(String hdfname, int default_value) {
  /frameworks/base/core/tests/coretests/src/android/view/textclassifier/logging/
GenerateLinksLoggerTest.java 99 assertEquals(numLinks, getIntValue(log, MetricsEvent.FIELD_LINKIFY_NUM_LINKS));
100 assertEquals(linkTextLength, getIntValue(log, MetricsEvent.FIELD_LINKIFY_LINK_LENGTH));
101 assertEquals(textLength, getIntValue(log, MetricsEvent.FIELD_LINKIFY_TEXT_LENGTH));
102 assertEquals(LATENCY_MS, getIntValue(log, MetricsEvent.FIELD_LINKIFY_LATENCY));
112 private static int getIntValue(LogMaker log, int eventField) {
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
NotBindableVo.java 48 public int getIntValue() {
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 116 return getIntValue(mode, partiallyEscaped, value);
137 return getIntValue(mode, partiallyEscaped, value ? 1 : 0);
140 private static Value getIntValue(EscapeMode mode, boolean partiallyEscaped, int num) {
  /frameworks/base/core/java/android/content/
RestrictionEntry.java 291 public int getIntValue() {
  /frameworks/base/core/java/android/os/
StatsDimensionsValue.java 127 public int getIntValue() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 313 public static int getIntValue(@Nullable final String[] moreKeys, final String key,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 146 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 150 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>