HomeSort by relevance Sort by last modified time
    Searched refs:hasSwitch (Results 1 - 10 of 10) sorted by null

  /external/libmojo/base/android/javatests/src/org/chromium/base/
CommandLineTest.java 43 Assert.assertFalse(cl.hasSwitch("init_command"));
44 Assert.assertFalse(cl.hasSwitch("switch"));
45 Assert.assertTrue(cl.hasSwitch("SWITCH"));
46 Assert.assertFalse(cl.hasSwitch("--SWITCH"));
47 Assert.assertFalse(cl.hasSwitch("Arg"));
48 Assert.assertFalse(cl.hasSwitch("actually_an_arg"));
60 Assert.assertFalse(cl.hasSwitch(CL_ADDED_SWITCH));
62 Assert.assertTrue(cl.hasSwitch(CL_ADDED_SWITCH));
65 Assert.assertFalse(cl.hasSwitch(CL_ADDED_SWITCH_2));
72 Assert.assertFalse(cl.hasSwitch("dummy"))
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
SysUtils.java 125 if (CommandLine.getInstance().hasSwitch(BaseSwitches.ENABLE_LOW_END_DEVICE_MODE)) {
128 if (CommandLine.getInstance().hasSwitch(BaseSwitches.DISABLE_LOW_END_DEVICE_MODE)) {
CommandLine.java 48 public abstract boolean hasSwitch(String switchString);
308 public boolean hasSwitch(String switchString) {
374 public boolean hasSwitch(String switchString) {
LocaleUtils.java 204 return commandLine.hasSwitch(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
TraceEvent.java 166 CommandLine.getInstance().hasSwitch(BaseSwitches.ENABLE_IDLE_TRACING)
  /hardware/libhardware/modules/input/evdev/
SwitchInputMapper.cpp 64 if (devNode->hasSwitch(codeMap[i].scancode)) {
InputHub.h 87 virtual bool hasSwitch(int32_t sw) const = 0;
InputDevice.cpp 195 if (mDeviceNode->hasSwitch(i)) {
InputHub.cpp 95 virtual bool hasSwitch(int32_t sw) const override;
296 bool EvdevDeviceNode::hasSwitch(int32_t sw) const {
  /hardware/libhardware/tests/input/evdev/
InputMocks.h 59 virtual bool hasSwitch(int32_t sw) const override { return mSwitches.count(sw); }

Completed in 171 milliseconds