HomeSort by relevance Sort by last modified time
    Searched refs:IsRepeat (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/ui/events/
event_unittest.cc 417 EXPECT_FALSE(key_a1.IsRepeat());
419 EXPECT_FALSE(key_a1_released.IsRepeat());
422 EXPECT_FALSE(key_a2.IsRepeat());
424 EXPECT_TRUE(key_a2_repeated.IsRepeat());
426 EXPECT_FALSE(key_a2_released.IsRepeat());
429 EXPECT_FALSE(key_a3.IsRepeat());
431 EXPECT_FALSE(key_b.IsRepeat());
433 EXPECT_FALSE(key_a3_again.IsRepeat());
435 EXPECT_TRUE(key_a3_repeated.IsRepeat());
437 EXPECT_TRUE(key_a3_repeated2.IsRepeat());
    [all...]
event.h 91 bool IsRepeat() const { return (flags_ & EF_IS_REPEAT) != 0; }
  /external/chromium_org/ui/base/accelerators/
accelerator.h 57 bool IsRepeat() const;
accelerator.cc 104 bool Accelerator::IsRepeat() const {
  /external/chromium_org/ui/wm/core/
accelerator_filter.cc 76 accelerator.set_is_repeat(key_event.IsRepeat());
  /external/protobuf/gtest/test/
gtest-port_test.cc 273 EXPECT_FALSE(IsRepeat('\0'));
274 EXPECT_FALSE(IsRepeat(' '));
275 EXPECT_FALSE(IsRepeat('a'));
276 EXPECT_FALSE(IsRepeat('1'));
277 EXPECT_FALSE(IsRepeat('-'));
281 EXPECT_TRUE(IsRepeat('?'));
282 EXPECT_TRUE(IsRepeat('*'));
283 EXPECT_TRUE(IsRepeat('+'));
  /external/chromium_org/testing/gtest/test/
gtest-port_test.cc 516 EXPECT_FALSE(IsRepeat('\0'));
517 EXPECT_FALSE(IsRepeat(' '));
518 EXPECT_FALSE(IsRepeat('a'));
519 EXPECT_FALSE(IsRepeat('1'));
520 EXPECT_FALSE(IsRepeat('-'));
524 EXPECT_TRUE(IsRepeat('?'));
525 EXPECT_TRUE(IsRepeat('*'));
526 EXPECT_TRUE(IsRepeat('+'));
    [all...]
  /external/gtest/test/
gtest-port_test.cc 516 EXPECT_FALSE(IsRepeat('\0'));
517 EXPECT_FALSE(IsRepeat(' '));
518 EXPECT_FALSE(IsRepeat('a'));
519 EXPECT_FALSE(IsRepeat('1'));
520 EXPECT_FALSE(IsRepeat('-'));
524 EXPECT_TRUE(IsRepeat('?'));
525 EXPECT_TRUE(IsRepeat('*'));
526 EXPECT_TRUE(IsRepeat('+'));
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 516 EXPECT_FALSE(IsRepeat('\0'));
517 EXPECT_FALSE(IsRepeat(' '));
518 EXPECT_FALSE(IsRepeat('a'));
519 EXPECT_FALSE(IsRepeat('1'));
520 EXPECT_FALSE(IsRepeat('-'));
524 EXPECT_TRUE(IsRepeat('?'));
525 EXPECT_TRUE(IsRepeat('*'));
526 EXPECT_TRUE(IsRepeat('+'));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
275 } else if (IsRepeat(ch) && !prev_repeatable) {
335 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
275 } else if (IsRepeat(ch) && !prev_repeatable) {
335 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
275 } else if (IsRepeat(ch) && !prev_repeatable) {
335 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 178 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
264 } else if (IsRepeat(ch) && !prev_repeatable) {
324 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /external/gtest/src/
gtest-port.cc 215 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
301 } else if (IsRepeat(ch) && !prev_repeatable) {
361 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 214 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
300 } else if (IsRepeat(ch) && !prev_repeatable) {
360 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]
  /external/chromium_org/athena/input/
accelerator_manager_impl.cc 302 if (accelerator.IsRepeat() && data.IsNonAutoRepeatable())
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 598 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
684 } else if (IsRepeat(ch) && !prev_repeatable) {
744 if (IsRepeat(regex[1])) {
    [all...]
gtest-internal-inl.h     [all...]
  /external/chromium_org/ui/views/focus/
focus_manager.cc 75 accelerator.set_is_repeat(event.IsRepeat());

Completed in 1088 milliseconds

1 2