Home
last modified time | relevance | path

Searched refs:getIntProperty (Results 1 – 11 of 11) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBatteryManagerTest.java48 assertThat(batteryManager.getIntProperty(TEST_ID)).isEqualTo(Integer.MIN_VALUE); in testGetIntProperty()
51 assertThat(batteryManager.getIntProperty(TEST_ID)).isEqualTo(5); in testGetIntProperty()
54 assertThat(batteryManager.getIntProperty(TEST_ID)).isEqualTo(0); in testGetIntProperty()
57 assertThat(batteryManager.getIntProperty(TEST_ID)).isEqualTo(Integer.MAX_VALUE); in testGetIntProperty()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
DTestFmwk.java243 protected static int getIntProperty(String key, int defVal) { in getIntProperty() method in TestFmwk
244 return getParams().getIntProperty(key, defVal); in getIntProperty()
247 protected static int getIntProperty(String key, int defVal, int maxVal) { in getIntProperty() method in TestFmwk
248 return getParams().getIntProperty(key, defVal, maxVal); in getIntProperty()
387 inclusion = getIntProperty(EXHAUSTIVENESS, DEFAULT_EXHAUSTIVENESS, MAX_EXHAUSTIVENESS); in parseProperties()
389 loggingLevel = getIntProperty(LOGGING_LEVEL, DEFAULT_LOGGING_LEVEL, MAX_LOGGING_LEVEL); in parseProperties()
425 public int getIntProperty(String key, int defVal) { in getIntProperty() method in TestFmwk.TestParams
426 return getIntProperty(key, defVal, -1); in getIntProperty()
429 public int getIntProperty(String key, int defVal, int maxVal) { in getIntProperty() method in TestFmwk.TestParams
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestFmwk.java242 protected static int getIntProperty(String key, int defVal) { in getIntProperty() method in TestFmwk
243 return getParams().getIntProperty(key, defVal); in getIntProperty()
246 protected static int getIntProperty(String key, int defVal, int maxVal) { in getIntProperty() method in TestFmwk
247 return getParams().getIntProperty(key, defVal, maxVal); in getIntProperty()
386 inclusion = getIntProperty(EXHAUSTIVENESS, DEFAULT_EXHAUSTIVENESS, MAX_EXHAUSTIVENESS); in parseProperties()
388 loggingLevel = getIntProperty(LOGGING_LEVEL, DEFAULT_LOGGING_LEVEL, MAX_LOGGING_LEVEL); in parseProperties()
424 public int getIntProperty(String key, int defVal) { in getIntProperty() method in TestFmwk.TestParams
425 return getIntProperty(key, defVal, -1); in getIntProperty()
428 public int getIntProperty(String key, int defVal, int maxVal) { in getIntProperty() method in TestFmwk.TestParams
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DOutputProperties.java266 public int getIntProperty(QName key) in getIntProperty() method in OutputProperties
268 return getIntProperty(key.toNamespacedString()); in getIntProperty()
282 public int getIntProperty(String key) in getIntProperty() method in OutputProperties
284 return OutputPropertyUtils.getIntProperty(key, m_properties); in getIntProperty()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java2236 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestCharMonkey()
2237 int seed = getIntProperty("seed", 1); in TestCharMonkey()
2246 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestWordMonkey()
2247 int seed = getIntProperty("seed", 1); in TestWordMonkey()
2257 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestLineMonkey()
2258 int seed = getIntProperty("seed", 1); in TestLineMonkey()
2268 int loopCount = getIntProperty("loop", isQuick() ? 500 : 3000); in TestSentMonkey()
2269 int seed = getIntProperty("seed", 1); in TestSentMonkey()
2288 int loopCount = getIntProperty("loop", isQuick() ? 200 : 2000); in TestRTCharMonkey()
2289 int seed = getIntProperty("seed", 1); in TestRTCharMonkey()
[all …]
DRBBIMonkeyTest.java1018 int loopCount = getIntProperty("loop", isQuick() ? 100 : 5000); in TestMonkey()
1021 int seed = getIntProperty("seed", 1); in TestMonkey()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java2239 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestCharMonkey()
2240 int seed = getIntProperty("seed", 1); in TestCharMonkey()
2249 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestWordMonkey()
2250 int seed = getIntProperty("seed", 1); in TestWordMonkey()
2260 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestLineMonkey()
2261 int seed = getIntProperty("seed", 1); in TestLineMonkey()
2271 int loopCount = getIntProperty("loop", isQuick() ? 500 : 3000); in TestSentMonkey()
2272 int seed = getIntProperty("seed", 1); in TestSentMonkey()
2291 int loopCount = getIntProperty("loop", isQuick() ? 200 : 2000); in TestRTCharMonkey()
2292 int seed = getIntProperty("seed", 1); in TestRTCharMonkey()
[all …]
DRBBIMonkeyTest.java1021 int loopCount = getIntProperty("loop", isQuick() ? 100 : 5000); in TestMonkey()
1024 int seed = getIntProperty("seed", 1); in TestMonkey()
/external/proguard/examples/annotations/examples/
DBean.java35 public int getIntProperty() in getIntProperty() method in Bean
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DOutputPropertyUtils.java72 public static int getIntProperty(String key, Properties props) in getIntProperty() method in OutputPropertyUtils
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBatteryManager.java28 protected int getIntProperty(int id) { in getIntProperty() method in ShadowBatteryManager