OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getSwitchValue
(Results
1 - 7
of
7
) sorted by null
/external/libmojo/base/android/javatests/src/org/chromium/base/
CommandLineTest.java
43
assertEquals("brea\\d", cl.
getSwitchValue
("switch2"));
44
assertEquals("and \"butter\"", cl.
getSwitchValue
("switch3"));
45
assertEquals("a \"quoted\" 'food'!", cl.
getSwitchValue
("switch4"));
46
assertNull(cl.
getSwitchValue
("SWITCH"));
47
assertNull(cl.
getSwitchValue
("non-existant"));
60
assertNull(cl.
getSwitchValue
(CL_ADDED_SWITCH_2));
62
assertTrue(CL_ADDED_VALUE_2.equals(cl.
getSwitchValue
(CL_ADDED_SWITCH_2)));
68
assertNull(cl.
getSwitchValue
("speed"));
73
assertTrue("turbo".equals(cl.
getSwitchValue
("speed")));
/external/libmojo/base/android/java/src/org/chromium/base/
CommandLine.java
55
public abstract String
getSwitchValue
(String switchString);
64
public String
getSwitchValue
(String switchString, String defaultValue) {
65
String value =
getSwitchValue
(switchString);
314
public String
getSwitchValue
(String switchString) {
380
public String
getSwitchValue
(String switchString) {
LocaleUtils.java
61
? commandLine.
getSwitchValue
(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
/packages/apps/Settings/src/com/android/settings/search2/
InlineSwitchViewHolder.java
50
switchView.setChecked(payload.
getSwitchValue
(mContext));
InlineSwitchPayload.java
83
public boolean
getSwitchValue
(Context context) {
/packages/apps/Settings/tests/robotests/src/com/android/settings/search/
InlineSwitchPayloadTest.java
48
payload.
getSwitchValue
(context);
64
payload.
getSwitchValue
(context);
InlineSwitchViewHolderTest.java
97
when(mPayload.
getSwitchValue
(any(Context.class))).thenReturn(true);
Completed in 545 milliseconds