Home
last modified time | relevance | path

Searched refs:pointer (Results 1 – 25 of 3115) sorted by relevance

12345678910>>...125

/third_party/flutter/flutter/packages/flutter/test/gestures/
Dvelocity_tracker_data.dart10 pointer: 1,
15 pointer: 1,
20 pointer: 1,
25 pointer: 1,
30 pointer: 1,
35 pointer: 1,
40 pointer: 1,
45 pointer: 1,
50 pointer: 1,
55 pointer: 1,
[all …]
Ddrag_test.dart38 final TestPointer pointer = TestPointer(5);
39 final PointerDownEvent down = pointer.down(const Offset(10.0, 10.0));
56 …tester.route(pointer.move(const Offset(20.0, 20.0))); // moved 10 horizontally and 10 vertically w…
58 …tester.route(pointer.move(const Offset(20.0, 30.0))); // moved 10 horizontally and 20 vertically w…
64 tester.route(pointer.move(const Offset(20.0, 25.0)));
71 tester.route(pointer.up());
92 final TestPointer pointer = TestPointer(5);
93 final PointerDownEvent down = pointer.down(const Offset(10.0, 10.0));
99 tester.route(pointer.move(const Offset(30.0, 0.0)));
120 final TestPointer pointer = TestPointer(5);
[all …]
Dforce_press_test.dart44 final TestPointer pointer = TestPointer(pointerValue);
45 …const PointerDownEvent down = PointerDownEvent(pointer: pointerValue, position: Offset(10.0, 10.0)…
46 pointer.setDownInfo(down, const Offset(10.0, 10.0));
56 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
64 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
72 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
73 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
74 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
75 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
84 …tester.route(const PointerMoveEvent(pointer: pointerValue, position: Offset(10.0, 10.0), pressure:…
[all …]
Dmultitap_test.dart21 tap.onTapDown = (int pointer, TapDownDetails details) { log.add('tap-down $pointer'); };
22 tap.onTapUp = (int pointer, TapUpDetails details) { log.add('tap-up $pointer'); };
23 tap.onTap = (int pointer) { log.add('tap $pointer'); };
24 … tap.onLongTapDown = (int pointer, TapDownDetails details) { log.add('long-tap-down $pointer'); };
25 tap.onTapCancel = (int pointer) { log.add('tap-cancel $pointer'); };
82 tap.onTapDown = (int pointer, TapDownDetails details) { log.add('tap-down $pointer'); };
83 tap.onTapUp = (int pointer, TapUpDetails details) { log.add('tap-up $pointer'); };
84 tap.onTap = (int pointer) { log.add('tap $pointer'); };
85 … tap.onLongTapDown = (int pointer, TapDownDetails details) { log.add('long-tap-down $pointer'); };
86 tap.onTapCancel = (int pointer) { log.add('tap-cancel $pointer'); };
[all …]
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/lib/gestures/data/
Dvelocity_tracker_data.dart11 pointer: 1,
16 pointer: 1,
21 pointer: 1,
26 pointer: 1,
31 pointer: 1,
36 pointer: 1,
41 pointer: 1,
46 pointer: 1,
51 pointer: 1,
56 pointer: 1,
[all …]
/third_party/vk-gl-cts/scripts/opengl/
Dgen_call_log_wrapper.py35 def pointer (size): function
90 "glDeleteBuffers": LogSpec({1: pointer(size = "n")}),
91 "glDeleteFramebuffers": LogSpec({1: pointer(size = "n")}),
92 "glDeleteQueries": LogSpec({1: pointer(size = "n")}),
93 "glDeleteRenderbuffers": LogSpec({1: pointer(size = "n")}),
94 "glDeleteBuffers": LogSpec({1: pointer(size = "n")}),
95 "glDeleteTextures": LogSpec({1: pointer(size = "n")}),
96 "glDeleteVertexArrays": LogSpec({1: pointer(size = "n")}),
97 "glDeleteProgramPipelines": LogSpec({1: pointer(size = "n")}),
124 "glGenBuffers": LogSpec({}, argOutPrints = {1: pointer(size = "n")}),
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Darena.dart29 /// Called when this member wins the arena for the given pointer id.
30 void acceptGesture(int pointer);
32 /// Called when this member loses the arena for the given pointer id.
33 void rejectGesture(int pointer);
39 /// with different pointer ids.
106 GestureArenaEntry add(int pointer, GestureArenaMember member) {
107 final _GestureArena state = _arenas.putIfAbsent(pointer, () {
108 assert(_debugLogDiagnostic(pointer, '★ Opening new gesture arena.'));
112 assert(_debugLogDiagnostic(pointer, 'Adding: $member'));
113 return GestureArenaEntry._(this, pointer, member);
[all …]
Dmultitap.dart26 /// Signature used by [MultiTapGestureRecognizer] for when a pointer that might
28 typedef GestureMultiTapDownCallback = void Function(int pointer, TapDownDetails details);
30 /// Signature used by [MultiTapGestureRecognizer] for when a pointer that will
32 typedef GestureMultiTapUpCallback = void Function(int pointer, TapUpDetails details);
35 typedef GestureMultiTapCallback = void Function(int pointer);
37 /// Signature for when the pointer that previously triggered a
39 typedef GestureMultiTapCancelCallback = void Function(int pointer);
69 pointer = event.pointer,
74 final int pointer;
85 GestureBinding.instance.pointerRouter.addRoute(pointer, route, transform);
[all …]
Dmultidrag.dart22 /// Per-pointer state for a [MultiDragGestureRecognizer].
24 /// A [MultiDragGestureRecognizer] tracks each pointer separately. The state for
25 /// each pointer is a subclass of [MultiDragPointerState].
27 /// Creates per-pointer state for a [MultiDragGestureRecognizer].
33 /// The global coordinates of the pointer when the pointer contacted the screen.
39 /// The offset of the pointer from the last position that was reported to the client.
41 /// After the pointer contacts the screen, the pointer might move some
58 /// Resolve this pointer's entry in the [GestureArenaManager] with the given disposition.
86 /// This is called when a pointer movement is received, but only if the gesture
170 /// Recognizes movement on a per-pointer basis.
[all …]
Drecognizer.dart66 /// the recognizer will accept pointer events from all device kinds.
80 /// Holds a mapping between pointer IDs and the kind of devices they are
84 /// Registers a new pointer that might be relevant to this gesture
88 /// PointerDownEvent of each pointer that should be considered for
92 /// to the global pointer router (see [PointerRouter]) to receive
93 /// subsequent events for this pointer, and to add the pointer to
95 /// that pointer.
100 _pointerToKind[event.pointer] = event.kind;
108 /// Registers a new pointer that's been checked to be allowed by this gesture
113 /// pointer being added while [addAllowedPointer] is only called for pointers
[all …]
/third_party/python/Lib/idlelib/
Dhistory.py26 self.pointer = None
50 pointer = self.pointer
52 if pointer is not None and prefix is not None:
54 self.text.get("iomark", "end-1c") != self.history[pointer]:
55 pointer = prefix = None
57 if pointer is None or prefix is None:
60 pointer = nhist # will be decremented
63 pointer = -1 # will be incremented
69 pointer += -1 if reverse else 1
70 if pointer < 0 or pointer >= nhist:
[all …]
/third_party/mesa3d/src/glx/
Dvertarr.c51 GLsizei count, const GLvoid * pointer) in __indirect_glColorPointerEXT() argument
54 __indirect_glColorPointer(size, type, stride, pointer); in __indirect_glColorPointerEXT()
59 GLsizei count, const GLboolean * pointer) in __indirect_glEdgeFlagPointerEXT() argument
62 __indirect_glEdgeFlagPointer(stride, pointer); in __indirect_glEdgeFlagPointerEXT()
67 GLsizei count, const GLvoid * pointer) in __indirect_glIndexPointerEXT() argument
70 __indirect_glIndexPointer(type, stride, pointer); in __indirect_glIndexPointerEXT()
75 const GLvoid * pointer) in __indirect_glNormalPointerEXT() argument
78 __indirect_glNormalPointer(type, stride, pointer); in __indirect_glNormalPointerEXT()
83 GLsizei count, const GLvoid * pointer) in __indirect_glTexCoordPointerEXT() argument
86 __indirect_glTexCoordPointer(size, type, stride, pointer); in __indirect_glTexCoordPointerEXT()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Duhash.cpp148 if (hash->keyDeleter != NULL && e->key.pointer != NULL && in _uhash_setElement()
149 e->key.pointer != key.pointer) { /* Avoid double deletion */ in _uhash_setElement()
150 (*hash->keyDeleter)(e->key.pointer); in _uhash_setElement()
153 if (oldValue.pointer != NULL && in _uhash_setElement()
154 oldValue.pointer != value.pointer) { /* Avoid double deletion */ in _uhash_setElement()
155 (*hash->valueDeleter)(oldValue.pointer); in _uhash_setElement()
157 oldValue.pointer = NULL; in _uhash_setElement()
166 e->key.pointer = key.pointer; in _uhash_setElement()
171 e->value.pointer = value.pointer; in _uhash_setElement()
187 empty.pointer = NULL; empty.integer = 0; in _uhash_internalRemoveElement()
[all …]
/third_party/node/deps/icu-small/source/common/
Duhash.cpp151 if (hash->keyDeleter != NULL && e->key.pointer != NULL && in _uhash_setElement()
152 e->key.pointer != key.pointer) { /* Avoid double deletion */ in _uhash_setElement()
153 (*hash->keyDeleter)(e->key.pointer); in _uhash_setElement()
156 if (oldValue.pointer != NULL && in _uhash_setElement()
157 oldValue.pointer != value.pointer) { /* Avoid double deletion */ in _uhash_setElement()
158 (*hash->valueDeleter)(oldValue.pointer); in _uhash_setElement()
160 oldValue.pointer = NULL; in _uhash_setElement()
169 e->key.pointer = key.pointer; in _uhash_setElement()
174 e->value.pointer = value.pointer; in _uhash_setElement()
190 empty.pointer = NULL; empty.integer = 0; in _uhash_internalRemoveElement()
[all …]
/third_party/icu/icu4c/source/common/
Duhash.cpp151 if (hash->keyDeleter != NULL && e->key.pointer != NULL && in _uhash_setElement()
152 e->key.pointer != key.pointer) { /* Avoid double deletion */ in _uhash_setElement()
153 (*hash->keyDeleter)(e->key.pointer); in _uhash_setElement()
156 if (oldValue.pointer != NULL && in _uhash_setElement()
157 oldValue.pointer != value.pointer) { /* Avoid double deletion */ in _uhash_setElement()
158 (*hash->valueDeleter)(oldValue.pointer); in _uhash_setElement()
160 oldValue.pointer = NULL; in _uhash_setElement()
169 e->key.pointer = key.pointer; in _uhash_setElement()
174 e->value.pointer = value.pointer; in _uhash_setElement()
190 empty.pointer = NULL; empty.integer = 0; in _uhash_internalRemoveElement()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Duhash.cpp151 if (hash->keyDeleter != NULL && e->key.pointer != NULL && in _uhash_setElement()
152 e->key.pointer != key.pointer) { /* Avoid double deletion */ in _uhash_setElement()
153 (*hash->keyDeleter)(e->key.pointer); in _uhash_setElement()
156 if (oldValue.pointer != NULL && in _uhash_setElement()
157 oldValue.pointer != value.pointer) { /* Avoid double deletion */ in _uhash_setElement()
158 (*hash->valueDeleter)(oldValue.pointer); in _uhash_setElement()
160 oldValue.pointer = NULL; in _uhash_setElement()
169 e->key.pointer = key.pointer; in _uhash_setElement()
174 e->value.pointer = value.pointer; in _uhash_setElement()
190 empty.pointer = NULL; empty.integer = 0; in _uhash_internalRemoveElement()
[all …]
/third_party/cJSON/tests/
Dold_utils_tests.c99 char *pointer = NULL; in misc_tests() local
107 pointer = cJSONUtils_FindPointerFromObjectTo(object, num6); in misc_tests()
108 TEST_ASSERT_EQUAL_STRING("/numbers/6", pointer); in misc_tests()
109 free(pointer); in misc_tests()
111 pointer = cJSONUtils_FindPointerFromObjectTo(object, nums); in misc_tests()
112 TEST_ASSERT_EQUAL_STRING("/numbers", pointer); in misc_tests()
113 free(pointer); in misc_tests()
115 pointer = cJSONUtils_FindPointerFromObjectTo(object, object); in misc_tests()
116 TEST_ASSERT_EQUAL_STRING("", pointer); in misc_tests()
117 free(pointer); in misc_tests()
[all …]
/third_party/openGLES/extensions/INTEL/
DINTEL_parallel_arrays.txt41 Should the <pointer> to the Pointerv funcions be (void *) or (void **)?
54 const void** pointer);
57 const void** pointer);
61 const void** pointer);
65 const void** pointer);
88 array of vertex coordinates. <pointer> specifies an array of pointers,
89 where pointer[0] is a pointer to the x coordinate of the first vertex in the
90 array, pointer[1] specifies a pointer to the y coordinate of the first
91 vertex in the array, pointer[2] specifies a pointer to the z coordinate of
92 the first vertex in the array, and pointer[3] specifies a pointer to the w
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/
DINTEL_parallel_arrays.txt41 Should the <pointer> to the Pointerv funcions be (void *) or (void **)?
54 const void** pointer);
57 const void** pointer);
61 const void** pointer);
65 const void** pointer);
88 array of vertex coordinates. <pointer> specifies an array of pointers,
89 where pointer[0] is a pointer to the x coordinate of the first vertex in the
90 array, pointer[1] specifies a pointer to the y coordinate of the first
91 vertex in the array, pointer[2] specifies a pointer to the z coordinate of
92 the first vertex in the array, and pointer[3] specifies a pointer to the w
[all …]
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dtest_pointer.dart14 /// A class for generating coherent artificial pointer events.
19 /// Creates a [TestPointer]. By default, the pointer identifier used is 1,
23 /// Multiple [TestPointer]s created with the same pointer identifier will
26 this.pointer = 1,
32 assert(pointer != null),
55 /// The pointer identifier used for events generated by this object.
58 final int pointer;
60 /// The kind of pointer device to simulate. Defaults to
69 /// Whether the pointer simulated by this object is currently down.
71 /// A pointer is released (goes up) by calling [up] or [cancel].
[all …]
/third_party/skia/third_party/externals/brotli/java/org/brotli/enc/
DPreparedDictionaryGenerator.java131 ByteBuffer pointer = flat.slice(); in generate() local
132 pointer.order(ByteOrder.nativeOrder()); in generate()
134 IntBuffer struct = pointer.asIntBuffer(); in generate()
135 pointer.position(pointer.position() + part0); in generate()
136 IntBuffer slotOffsets = pointer.asIntBuffer(); in generate()
137 pointer.position(pointer.position() + part1); in generate()
138 ShortBuffer heads = pointer.asShortBuffer(); in generate()
139 pointer.position(pointer.position() + part2); in generate()
140 IntBuffer items = pointer.asIntBuffer(); in generate()
141 pointer.position(pointer.position() + part3); in generate()
[all …]
/third_party/gn/src/base/
Dvalue_iterators.cc14 dict_iterator::pointer::pointer(const reference& ref) : ref_(ref) {} in pointer() function in base::detail::dict_iterator::pointer
16 dict_iterator::pointer::pointer(const pointer& ptr) = default;
32 dict_iterator::pointer dict_iterator::operator->() { in operator ->()
33 return pointer(operator*()); in operator ->()
69 const_dict_iterator::pointer::pointer(const reference& ref) : ref_(ref) {} in pointer() function in base::detail::const_dict_iterator::pointer
71 const_dict_iterator::pointer::pointer(const pointer& ptr) = default;
88 const_dict_iterator::pointer const_dict_iterator::operator->() const { in operator ->()
89 return pointer(operator*()); in operator ->()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Drtp.c267 gpointer pointer; in GST_START_TEST() local
279 gst_rtp_buffer_get_extension_data (&rtp, &bits, &pointer, &size); in GST_START_TEST()
291 gst_rtp_buffer_get_extension_data (&rtp, &bits, &pointer, &size); in GST_START_TEST()
306 fail_unless (gst_rtp_buffer_get_extension_data (&rtp, &bits, &pointer, in GST_START_TEST()
310 data = (guint8 *) pointer; in GST_START_TEST()
313 1, &pointer, &size) == FALSE); in GST_START_TEST()
315 1, &pointer, &size) == FALSE); in GST_START_TEST()
317 0, &pointer, &size) == TRUE); in GST_START_TEST()
319 fail_unless (memcmp (pointer, misc_data, 2) == 0); in GST_START_TEST()
324 0, &pointer, &size) == TRUE); in GST_START_TEST()
[all …]
/third_party/skia/third_party/externals/tint/docs/
Dspirv-ptr-ref.md12 * Let-declared constants can be of pointer type, but not reference
14 * Function parameter can be of pointer type, but not reference type.
15 * A variable's store type is never a pointer type, and never a
25 pointer.
26 * The dereference (unary `*`) operator converts a pointer to a
30 done by "handler value", or by pointer-to-handle.
34 The distinction in WGSL between reference and pointer disappears
35 at the SPIR-V level. Both types map into pointer types in SPIR-V.
48 * When translating a SPIR-V pointer expression, track whether the
49 corresponding WGSL expression is of corresponding WGSL pointer
[all …]
/third_party/libdrm/intel/tests/
Dgen7-3d.batch-ref.txt22 0x12300054: 0x00007fe0: pointer to CC viewport
24 0x1230005c: 0x00007f80: pointer to SF_CLIP viewport
34 0x12300084: 0x00007f41: pointer to BLEND_STATE at 0x00007f40 (changed)
36 0x1230008c: 0x00007f01: pointer to COLOR_CALC_STATE at 0x00007f00 (changed)
38 0x12300094: 0x00007ec1: pointer to DEPTH_STENCIL_STATE at 0x00007ec0 (changed)
42 0x123000a4: 0x00000000: pointer to constbuf 0
43 0x123000a8: 0x00000000: pointer to constbuf 1
44 0x123000ac: 0x00000000: pointer to constbuf 2
45 0x123000b0: 0x00000000: pointer to constbuf 3
47 0x123000b8: 0x00000000: kernel pointer
[all …]

12345678910>>...125