/external/llvm/test/DebugInfo/COFF/ |
D | big-type.ll | 67 !6 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE1", value: 0) 68 !7 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE2", value: 1) 69 !8 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE3", value: 2) 70 !9 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE4", value: 3) 71 !10 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE5", value: 4) 72 !11 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE6", value: 5) 73 !12 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE7", value: 6) 74 !13 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE8", value: 7) 75 !14 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE9", value: 8) 76 !15 = !DIEnumerator(name: "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE10", value: 9) [all …]
|
/external/elfutils/tests/ |
D | run-funcretval.sh | 34 () fun_char: return value location: {0x50, 0} 35 () fun_short: return value location: {0x50, 0} 36 () fun_int: return value location: {0x50, 0} 37 () fun_ptr: return value location: {0x50, 0} 38 () fun_iptr: return value location: {0x50, 0} 39 () fun_long: return value location: {0x50, 0} 40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8} 41 () fun_large_struct1: return value location: {0x70, 0} 42 () fun_large_struct2: return value location: {0x70, 0} 43 () fun_float: return value location: {0x90, 0x40} [all …]
|
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 120 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument 123 writeDoubleNoTag(value); in writeDouble() 127 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument 130 writeFloatNoTag(value); in writeFloat() 134 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument 137 writeUInt64NoTag(value); in writeUInt64() 141 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument 144 writeInt64NoTag(value); in writeInt64() 148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument 151 writeInt32NoTag(value); in writeInt32() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | type_traits_unittest.cc | 175 EXPECT_TRUE(is_integral<bool>::value); in TEST() 176 EXPECT_TRUE(is_integral<char>::value); in TEST() 177 EXPECT_TRUE(is_integral<unsigned char>::value); in TEST() 178 EXPECT_TRUE(is_integral<signed char>::value); in TEST() 179 EXPECT_TRUE(is_integral<wchar_t>::value); in TEST() 180 EXPECT_TRUE(is_integral<int>::value); in TEST() 181 EXPECT_TRUE(is_integral<unsigned int>::value); in TEST() 182 EXPECT_TRUE(is_integral<short>::value); in TEST() 183 EXPECT_TRUE(is_integral<unsigned short>::value); in TEST() 184 EXPECT_TRUE(is_integral<long>::value); in TEST() [all …]
|
/external/v8/src/base/ |
D | bits.h | 30 inline unsigned CountPopulation32(uint32_t value) { in CountPopulation32() argument 32 return __builtin_popcount(value); in CountPopulation32() 34 value = ((value >> 1) & 0x55555555) + (value & 0x55555555); in CountPopulation32() 35 value = ((value >> 2) & 0x33333333) + (value & 0x33333333); in CountPopulation32() 36 value = ((value >> 4) & 0x0f0f0f0f) + (value & 0x0f0f0f0f); in CountPopulation32() 37 value = ((value >> 8) & 0x00ff00ff) + (value & 0x00ff00ff); in CountPopulation32() 38 value = ((value >> 16) & 0x0000ffff) + (value & 0x0000ffff); in CountPopulation32() 39 return static_cast<unsigned>(value); in CountPopulation32() 45 inline unsigned CountPopulation64(uint64_t value) { in CountPopulation64() argument 47 return __builtin_popcountll(value); in CountPopulation64() [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 195 public abstract void writeInt32(int fieldNumber, int value) throws IOException; in writeInt32() argument 199 public abstract void writeUInt32(int fieldNumber, int value) throws IOException; in writeUInt32() argument 202 public final void writeSInt32(final int fieldNumber, final int value) throws IOException { in writeSInt32() argument 203 writeUInt32(fieldNumber, encodeZigZag32(value)); in writeSInt32() 208 public abstract void writeFixed32(int fieldNumber, int value) throws IOException; in writeFixed32() argument 211 public final void writeSFixed32(final int fieldNumber, final int value) throws IOException { in writeSFixed32() argument 212 writeFixed32(fieldNumber, value); in writeSFixed32() 216 public final void writeInt64(final int fieldNumber, final long value) throws IOException { in writeInt64() argument 217 writeUInt64(fieldNumber, value); in writeInt64() 222 public abstract void writeUInt64(int fieldNumber, long value) throws IOException; in writeUInt64() argument [all …]
|
/external/protobuf/js/binary/ |
D | writer.js | 289 jspb.BinaryWriter.prototype.writeAny = function(fieldType, field, value) { argument 293 this.writeDouble(field, /** @type {number} */(value)); 296 this.writeFloat(field, /** @type {number} */(value)); 299 this.writeInt64(field, /** @type {number} */(value)); 302 this.writeUint64(field, /** @type {number} */(value)); 305 this.writeInt32(field, /** @type {number} */(value)); 308 this.writeFixed64(field, /** @type {number} */(value)); 311 this.writeFixed32(field, /** @type {number} */(value)); 314 this.writeBool(field, /** @type {boolean} */(value)); 317 this.writeString(field, /** @type {string} */(value)); [all …]
|
D | encoder.js | 107 jspb.BinaryEncoder.prototype.writeUnsignedVarint32 = function(value) { argument 108 goog.asserts.assert(value == Math.floor(value)); 109 goog.asserts.assert((value >= 0) && 110 (value < jspb.BinaryConstants.TWO_TO_32)); 112 while (value > 127) { 113 this.buffer_.push((value & 0x7f) | 0x80); 114 value = value >>> 7; 117 this.buffer_.push(value); 126 jspb.BinaryEncoder.prototype.writeSignedVarint32 = function(value) { argument 127 goog.asserts.assert(value == Math.floor(value)); [all …]
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | DoubleMetaphone.java | 78 public String doubleMetaphone(String value) { in doubleMetaphone() argument 79 return doubleMetaphone(value, false); in doubleMetaphone() 90 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument 91 value = cleanInput(value); in doubleMetaphone() 92 if (value == null) { in doubleMetaphone() 96 boolean slavoGermanic = isSlavoGermanic(value); in doubleMetaphone() 97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone() 101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone() 102 switch (value.charAt(index)) { in doubleMetaphone() 109 index = handleAEIOUY(value, result, index); in doubleMetaphone() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBundle.java | 44 public void putString(String key, String value) { in putString() argument 45 map.put(key, value); in putString() 50 Object value = map.get(key); in getString() local 51 return value == null || !(value instanceof String) ? null : (String) value; in getString() 59 Object value = map.get(key); in getString() local 60 return value == null || !(value instanceof String) ? defaultValue : (String) value; in getString() 64 public void putLong(String key, long value) { in putLong() argument 65 map.put(key, value); in putLong() 75 Object value = map.get(key); in getLong() local 76 return value == null || !(value instanceof Long) ? defaultValue : (Long) value; in getLong() [all …]
|
/external/libcxx/test/libcxx/utilities/meta/ |
D | is_referenceable.pass.cpp | 25 static_assert((!std::__is_referenceable<void>::value), ""); 26 static_assert(( std::__is_referenceable<int>::value), ""); 27 static_assert(( std::__is_referenceable<int[3]>::value), ""); 28 static_assert(( std::__is_referenceable<int[]>::value), ""); 29 static_assert(( std::__is_referenceable<int &>::value), ""); 30 static_assert(( std::__is_referenceable<const int &>::value), ""); 31 static_assert(( std::__is_referenceable<int *>::value), ""); 32 static_assert(( std::__is_referenceable<const int *>::value), ""); 33 static_assert(( std::__is_referenceable<Foo>::value), ""); 34 static_assert(( std::__is_referenceable<const Foo>::value), ""); [all …]
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 102 static_assert((std::is_same<decltype(abs((float)0)), float>::value), ""); in test_abs() 103 static_assert((std::is_same<decltype(abs((double)0)), double>::value), ""); in test_abs() 104 static_assert((std::is_same<decltype(abs((long double)0)), long double>::value), ""); in test_abs() 105 static_assert((std::is_same<decltype(abs(Ambiguous())), Ambiguous>::value), ""); in test_abs() 111 static_assert((std::is_same<decltype(acos((float)0)), float>::value), ""); in test_acos() 112 static_assert((std::is_same<decltype(acos((bool)0)), double>::value), ""); in test_acos() 113 static_assert((std::is_same<decltype(acos((unsigned short)0)), double>::value), ""); in test_acos() 114 static_assert((std::is_same<decltype(acos((int)0)), double>::value), ""); in test_acos() 115 static_assert((std::is_same<decltype(acos((unsigned int)0)), double>::value), ""); in test_acos() 116 static_assert((std::is_same<decltype(acos((long)0)), double>::value), ""); in test_acos() [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/ |
D | two_finger_tracking.left_to_right.normal-lumpy-fw_11.23-robot_sim-20130506_032518.dat | 1 Event: time 5898.748126, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 4 2 Event: time 5898.748130, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 146 3 Event: time 5898.748132, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 464 4 Event: time 5898.748133, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 10 5 Event: time 5898.748159, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 6 Event: time 5898.748160, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 7 Event: time 5898.748163, type 3 (EV_ABS), code 0 (ABS_X), value 146 8 Event: time 5898.748165, type 3 (EV_ABS), code 1 (ABS_Y), value 464 9 Event: time 5898.748167, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 10 11 Event: time 5898.759870, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 152 [all …]
|
D | pinch_to_zoom.zoom_in-lumpy-fw_11.23-complete-20130726_022805.dat | 1 Event: time 5110560.530558, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 0 2 Event: time 5110560.530563, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 493 3 Event: time 5110560.530565, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 411 4 Event: time 5110560.530567, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 9 5 Event: time 5110560.530593, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 6 Event: time 5110560.530594, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 7 Event: time 5110560.530598, type 3 (EV_ABS), code 0 (ABS_X), value 493 8 Event: time 5110560.530600, type 3 (EV_ABS), code 1 (ABS_Y), value 411 9 Event: time 5110560.530601, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 9 11 Event: time 5110560.539771, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 500 [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/ |
D | two_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032735.dat | 1 Event: time 6030.719600, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0 2 Event: time 6030.719603, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 67 3 Event: time 6030.719606, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1000 4 Event: time 6030.719608, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 479 5 Event: time 6030.719610, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 4 6 Event: time 6030.719635, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 6030.719636, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 6030.719640, type 3 (EV_ABS), code 0 (ABS_X), value 1000 9 Event: time 6030.719641, type 3 (EV_ABS), code 1 (ABS_Y), value 479 10 Event: time 6030.719643, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 4 [all …]
|
D | two_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032729.dat | 1 Event: time 6027.498184, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 65 2 Event: time 6027.498189, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1019 3 Event: time 6027.498190, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 504 4 Event: time 6027.498192, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 11 5 Event: time 6027.498195, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 1 6 Event: time 6027.498196, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 66 7 Event: time 6027.498199, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1047 8 Event: time 6027.498201, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 265 9 Event: time 6027.498202, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 11 10 Event: time 6027.498226, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/ |
D | two_finger_tracking.left_to_right.slow-link-fw_1.0.AA-robot-20130806_223808.dat | 1 Event: time 4421.462240, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 303 2 Event: time 4421.462240, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 142 3 Event: time 4421.462240, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 653 4 Event: time 4421.462240, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39 5 Event: time 4421.462240, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220 6 Event: time 4421.462240, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 4421.462240, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 4421.462240, type 3 (EV_ABS), code 0 (ABS_X), value 142 9 Event: time 4421.462240, type 3 (EV_ABS), code 1 (ABS_Y), value 653 10 Event: time 4421.462240, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39 [all …]
|
D | two_finger_tracking.bottom_to_top.normal-link-fw_1.0.AA-robot-20130806_224245.dat | 1 Event: time 4698.409521, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0 2 Event: time 4698.409521, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 345 3 Event: time 4698.409521, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 988 4 Event: time 4698.409521, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1025 5 Event: time 4698.409521, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 43 6 Event: time 4698.409521, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220 7 Event: time 4698.409521, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 8 Event: time 4698.409521, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 9 Event: time 4698.409521, type 3 (EV_ABS), code 0 (ABS_X), value 988 10 Event: time 4698.409521, type 3 (EV_ABS), code 1 (ABS_Y), value 1025 [all …]
|
D | two_finger_tracking.bottom_left_to_top_right.normal-link-fw_1.0.AA-robot-20130806_224355.dat | 1 Event: time 4768.604311, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0 2 Event: time 4768.604311, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 355 3 Event: time 4768.604311, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 138 4 Event: time 4768.604311, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1018 5 Event: time 4768.604311, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42 6 Event: time 4768.604311, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220 7 Event: time 4768.604311, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 8 Event: time 4768.604311, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 9 Event: time 4768.604311, type 3 (EV_ABS), code 0 (ABS_X), value 138 10 Event: time 4768.604311, type 3 (EV_ABS), code 1 (ABS_Y), value 1018 [all …]
|
D | two_finger_tracking.left_to_right.slow-link-fw_1.0.AA-robot-20130806_223634.dat | 1 Event: time 4406.934551, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 301 2 Event: time 4406.934551, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 139 3 Event: time 4406.934551, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 656 4 Event: time 4406.934551, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 38 5 Event: time 4406.934551, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220 6 Event: time 4406.934551, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 4406.934551, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 4406.934551, type 3 (EV_ABS), code 0 (ABS_X), value 139 9 Event: time 4406.934551, type 3 (EV_ABS), code 1 (ABS_Y), value 656 10 Event: time 4406.934551, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 38 [all …]
|
D | two_finger_tracking.bottom_to_top.normal-link-fw_1.0.AA-robot-20130806_224232.dat | 1 Event: time 4686.186440, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 343 2 Event: time 4686.186440, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 992 3 Event: time 4686.186440, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1025 4 Event: time 4686.186440, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39 5 Event: time 4686.186440, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220 6 Event: time 4686.186440, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 4686.186440, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 4686.186440, type 3 (EV_ABS), code 0 (ABS_X), value 992 9 Event: time 4686.186440, type 3 (EV_ABS), code 1 (ABS_Y), value 1025 10 Event: time 4686.186440, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39 [all …]
|
D | one_finger_tracking.top_right_to_bottom_left.normal-link-fw_1.0.AA-robot-20130806_222159.dat | 1 Event: time 3451.442575, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 62 2 Event: time 3451.442575, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1841 3 Event: time 3451.442575, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 303 4 Event: time 3451.442575, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42 5 Event: time 3451.442575, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 254 6 Event: time 3451.442575, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 3451.442575, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 3451.442575, type 3 (EV_ABS), code 0 (ABS_X), value 1841 9 Event: time 3451.442575, type 3 (EV_ABS), code 1 (ABS_Y), value 303 10 Event: time 3451.442575, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 42 [all …]
|
D | two_finger_tracking.bottom_left_to_top_right.slow-link-fw_1.0.AA-robot-20130806_224325.dat | 1 Event: time 4738.687729, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0 2 Event: time 4738.687729, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 351 3 Event: time 4738.687729, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 140 4 Event: time 4738.687729, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1015 5 Event: time 4738.687729, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39 6 Event: time 4738.687729, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 7 Event: time 4738.687729, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 8 Event: time 4738.687729, type 3 (EV_ABS), code 0 (ABS_X), value 140 9 Event: time 4738.687729, type 3 (EV_ABS), code 1 (ABS_Y), value 1015 10 Event: time 4738.687729, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39 [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/data/ |
D | two_finger_tracking.diagonal.slow.dat | 52 Event: time 76455.555277, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 22 53 Event: time 76455.555282, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1142 54 Event: time 76455.555284, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 191 55 Event: time 76455.555286, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 7 56 Event: time 76455.555289, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 1 57 Event: time 76455.555290, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 23 58 Event: time 76455.555292, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 957 59 Event: time 76455.555294, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 105 60 Event: time 76455.555296, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 19 61 Event: time 76455.555320, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 [all …]
|
D | finger_crossing.top_right_to_bottom_left.slow.dat | 64 Event: time 1405436904.108107, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 1016 65 Event: time 1405436904.108107, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 954 66 Event: time 1405436904.108107, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 853 67 Event: time 1405436904.108107, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42 68 Event: time 1405436904.108107, type 3 (EV_ABS), code 28 (ABS_TOOL_WIDTH), value 2 69 Event: time 1405436904.108107, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 144 70 Event: time 1405436904.108107, type 3 (EV_ABS), code 49 (ABS_MT_TOUCH_MINOR), value 140 71 Event: time 1405436904.108107, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1 72 Event: time 1405436904.108107, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1 73 Event: time 1405436904.108107, type 3 (EV_ABS), code 0 (ABS_X), value 954 [all …]
|