Home
last modified time | relevance | path

Searched refs:appendSwitchWithValue (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/android/java/src/org/chromium/base/
DCommandLine.java72 public abstract void appendSwitchWithValue(String switchString, String value); in appendSwitchWithValue() method in CommandLine
284 appendSwitchWithValue(switchString, null); in appendSwitch()
293 public void appendSwitchWithValue(String switchString, String value) { in appendSwitchWithValue() method in CommandLine.JavaCommandLine
326 appendSwitchWithValue(parts[0].substring(SWITCH_PREFIX.length()), value); in appendSwitchesInternal()
355 public void appendSwitchWithValue(String switchString, String value) { in appendSwitchWithValue() method in CommandLine.NativeCommandLine
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/
DCommandLineFlags.java108 CommandLine.getInstance().appendSwitchWithValue(parsedFlags[0], parsedFlags[1]); in setUp()
113 CommandLine.getInstance().appendSwitchWithValue( in setUp()
117 CommandLine.getInstance().appendSwitchWithValue( in setUp()
/external/libchrome/base/android/javatests/src/org/chromium/base/
DCommandLineTest.java71 cl.appendSwitchWithValue(CL_ADDED_SWITCH_2, CL_ADDED_VALUE_2); in checkSettingThenGetting()