Home
last modified time | relevance | path

Searched full:position (Results 1 – 25 of 3775) sorted by relevance

12345678910>>...151

/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/css/
H A Djquery-ui.theme.min.css5position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-posit…
H A Djquery-ui.min.css7position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_positionsource.qml106 …SignalSpy { id: directionValidSpy; target: testingSource.position; signalName: "directionValidChan…
107 SignalSpy { id: directionSpy; target: testingSource.position; signalName: "directionChanged" }
121 …SignalSpy { id: directionValidSpyWParams; target: testingSourceWParams.position; signalName: "dire…
122 …SignalSpy { id: directionSpyWParams; target: testingSourceWParams.position; signalName: "direction…
126 …SignalSpy { id: directionValidSpyV1; target: testingSourceV1.position; signalName: "directionValid…
127 … SignalSpy { id: directionSpyV1; target: testingSourceV1.position; signalName: "directionChanged" }
156 compare(testingSourceV1.position.coordinate.longitude, 0.1);
157 compare(testingSourceV1.position.coordinate.latitude, 0.1);
160 fuzzyCompare(testingSourceV1.position.direction, 45, 0.1)
161 verify(!testingSourceV1.position.speedValid)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/doc/src/
H A Dqml-position.qdoc38 Location data involves a precisely specified position on the Earth's
43 \li The date and time at which the position was reported
44 \li The velocity of the device that reported the position
45 \li The altitude of the reported position (height above sea level)
55 Earth-orbiting satellites to calculate the precise position and time of
72 The three dimensional position of an object such as a mobile device can be specified by giving
75 positions we would like to know if the object is moving, what \l [QML] {Position::}{speed} it is
76 doing and what is the \l {Position::timestamp}{timestamp} of the last position data. Position
77 therefore includes values for the \l {Position::coordinate}{coordinate},
78 \l {Position::speed}{speed} and a \l {Position::timestamp}{timestamp}. \l Position also takes
[all …]
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/
H A D0008-chromium-Move-CharAllocator-definition-to-a-header-f.patch57 - void Erase(char* position) {
61 - DCHECK_LE(position, LastElement());
62 - DCHECK_GE(position, Begin());
63 - char* start = position + step;
64 - std::copy(start, End(), position);
71 - void InsertBefore(size_t alignment, char** position, size_t count) {
72 - DCHECK_LE(*position, LastElement() + step);
73 - DCHECK_GE(*position, Begin());
83 - size_t position_offset = *position - Begin();
84 - *position = new_data.get() + position_offset;
[all …]
/OK3568_Linux_fs/buildroot/package/qt5/qt5wayland/
H A D0005-qwaylandxdgshell-Support-setting-window-position.patch4 Subject: [PATCH 05/17] qwaylandxdgshell: Support setting window position
6 Support setting window position.
8 1/ (0,0) initial position(default position) would be ignored.
10 3/ QT would not aware of the wayland position.
29 + QPoint position = m_window->geometry().topLeft();
31 + // Also avoid initial position (0,0).
33 + if (m_position == position)
35 + m_position = position;
37 + // HACK: Set window position through .set_window_geometry(x, y, 0, 0)
38 + set_window_geometry(position.x() > 0 ? position.x() : 0,
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_qt/qopenglwidget/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
103 painter->translate(position.x() - radius, position.y() - radius); in drawBubble()
122 position += vel; in move()
123 qreal leftOverflow = position.x() - radius - bbox.left(); in move()
124 qreal rightOverflow = position.x() + radius - bbox.right(); in move()
125 qreal topOverflow = position.y() - radius - bbox.top(); in move()
126 qreal bottomOverflow = position.y() + radius - bbox.bottom(); in move()
129 position.setX(position.x() - 2 * leftOverflow); in move()
132 position.setX(position.x() - 2 * rightOverflow); in move()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/opengl/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
103 painter->translate(position.x() - radius, position.y() - radius); in drawBubble()
122 position += vel; in move()
123 qreal leftOverflow = position.x() - radius - bbox.left(); in move()
124 qreal rightOverflow = position.x() + radius - bbox.right(); in move()
125 qreal topOverflow = position.y() - radius - bbox.top(); in move()
126 qreal bottomOverflow = position.y() + radius - bbox.bottom(); in move()
129 position.setX(position.x() - 2 * leftOverflow); in move()
132 position.setX(position.x() - 2 * rightOverflow); in move()
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/qopenglwidget/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
103 painter->translate(position.x() - radius, position.y() - radius); in drawBubble()
122 position += vel; in move()
123 qreal leftOverflow = position.x() - radius - bbox.left(); in move()
124 qreal rightOverflow = position.x() + radius - bbox.right(); in move()
125 qreal topOverflow = position.y() - radius - bbox.top(); in move()
126 qreal bottomOverflow = position.y() + radius - bbox.bottom(); in move()
129 position.setX(position.x() - 2 * leftOverflow); in move()
132 position.setX(position.x() - 2 * rightOverflow); in move()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-devlink.c72 int position; in dpaa2_eth_dl_get_trap() member
75 { .position = 5, .trap_id = DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING }, in dpaa2_eth_dl_get_trap()
76 { .position = 20, .trap_id = DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING }, in dpaa2_eth_dl_get_trap()
77 { .position = 24, .trap_id = DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING }, in dpaa2_eth_dl_get_trap()
78 { .position = 26, .trap_id = DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING }, in dpaa2_eth_dl_get_trap()
79 { .position = 29, .trap_id = DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING }, in dpaa2_eth_dl_get_trap()
80 { .position = 31, .trap_id = DEVLINK_TRAP_GENERIC_ID_ARP_PARSING }, in dpaa2_eth_dl_get_trap()
81 { .position = 52, .trap_id = DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING }, in dpaa2_eth_dl_get_trap()
82 { .position = 61, .trap_id = DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING }, in dpaa2_eth_dl_get_trap()
83 { .position = 67, .trap_id = DEVLINK_TRAP_GENERIC_ID_GRE_PARSING }, in dpaa2_eth_dl_get_trap()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/
H A Dqdeclarativeposition.cpp51 \qmltype Position
56 \brief The Position type holds positional data at a particular point in time,
59 The Position type holds values related to geographic location such as
61 the Position was obtained, the \l speed at that time, and the accuracy of
64 Primarily, it is used in the \l{PositionSource::position}{position} property
68 Not all properties of a Position object are necessarily valid or available
72 etc) to discern whether the data is available and valid in this position
75 Position objects are read-only and can only be produced by a PositionSource.
198 const QGeoPositionInfo &QDeclarativePosition::position() const in position() function in QDeclarativePosition
204 \qmlproperty coordinate Position::coordinate
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/package/testsuite/global_platform/api_1.0/GP_XSL_TEE_Initial_Configuration-Test_Suite_v1_0_0-2014-12-03-STM/packages/Adbg/xslstable/
H A Dadbg_case_declare.xsl67 <xsl:variable name="position" select="position()" />ADBG_CASE_DECLARE(XTEST_TEE_<xsl:value-of selec…
72 <xsl:variable name="position" select="position()" />ADBG_CASE_DECLARE(XTEST_TEE_<xsl:value-of selec…
77 <xsl:variable name="position" select="position()" />ADBG_CASE_DECLARE(XTEST_TEE_<xsl:value-of selec…
82 <xsl:variable name="position" select="position()" />ADBG_CASE_DECLARE(XTEST_TEE_<xsl:value-of selec…
87 <xsl:variable name="position" select="position()" />ADBG_CASE_DECLARE(XTEST_TEE_<xsl:value-of selec…
H A Dadbg_entry_declare.xsl67 <xsl:variable name="position" select="position()" /> ADBG_SUITE_ENTRY(XTEST_TEE_<xsl:value-of se…
72 <xsl:variable name="position" select="position()" /> ADBG_SUITE_ENTRY(XTEST_TEE_<xsl:value-of se…
77 <xsl:variable name="position" select="position()" /> ADBG_SUITE_ENTRY(XTEST_TEE_<xsl:value-of se…
82 <xsl:variable name="position" select="position()" /> ADBG_SUITE_ENTRY(XTEST_TEE_<xsl:value-of se…
87 <xsl:variable name="position" select="position()" /> ADBG_SUITE_ENTRY(XTEST_TEE_<xsl:value-of se…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dvarray.hpp106 static inline void check_iterator_end_neq(Varray const& v, const_iterator position) in check_iterator_end_neq()
108 …BOOST_GEOMETRY_INDEX_ASSERT(v.begin() <= position && position < v.end(), "iterator out of bounds"); in check_iterator_end_neq()
111 ::boost::ignore_unused_variable_warning(position); in check_iterator_end_neq()
114 static inline void check_iterator_end_eq(Varray const& v, const_iterator position) in check_iterator_end_eq()
116 …BOOST_GEOMETRY_INDEX_ASSERT(v.begin() <= position && position <= v.end(), "iterator out of bounds"… in check_iterator_end_eq()
119 ::boost::ignore_unused_variable_warning(position); in check_iterator_end_eq()
696 //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
699 //! @brief Inserts a copy of element at position.
701 //! @param position The position at which the new value will be inserted.
713 iterator insert(iterator position, value_type const& value) in insert() argument
[all …]
/OK3568_Linux_fs/buildroot/package/enlightenment/
H A D0007-HACK-wl-Support-setting-size-in-wl_subsurface_positi.patch27 if (sdata->position.set)
29 + if (sdata->position.w && sdata->position.h)
30 + e_pixmap_viewport_set(ec->pixmap, sdata->position.w, sdata->position.h);
32 evas_object_move(ec->frame, parent->client.x + sdata->position.x,
33 parent->client.y + sdata->position.y);
34 sdata->position.set = EINA_FALSE;
41 DBG("Subsurface Cb Position Set: %d", wl_resource_get_id(resource));
52 sdata->position.x = x;
53 sdata->position.y = y;
57 + sdata->position.w = w;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeopositioninfosource.cpp55 ("org.qt-project.qt.position.sourcefactory/5.0",
56 QLatin1String("/position")))
67 position source that is appropriate for the platform, if one is available.
71 Users of a QGeoPositionInfoSource subclass can request the current position using
72 requestUpdate(), or start and stop regular position updates using
74 positionUpdated() is emitted. The last known position can be accessed with
77 If regular position updates are required, setUpdateInterval() can be used
92 Note that the position source may have a minimum value requirement for
200 Creates a position source with the specified \a parent.
213 Destroys the position source.
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/aquantia/atlantic/hw_atl/
H A Dhw_atl_llh_internal.h111 /* lower bit position of bitfield itr_reg_res_dsbl */
121 /* lower bit position of bitfield itr_reset */
133 /* lower bit position of bitfield rsc_delay */
140 /* lower bit position of bitfield dca{d}_cpuid[7:0] */
156 /* lower bit position of bitfield dca_en */
174 /* lower bit position of bitfield dca_mode[3:0] */
194 /* lower bit position of bitfield desc{d}_data_size[4:0] */
213 /* lower bit position of bitfield dca{d}_desc_en */
232 /* lower bit position of bitfield desc{d}_en */
252 /* lower bit position of bitfield desc{d}_hdr_size[4:0] */
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/rockchip/ebc-dev/bufmanage/
H A Dbuf_list.h38 * @param i - position
43 /** @brief return the element at position
46 * @param pos - position
51 /** @brief removes the element at position
54 * @param pos - position
59 /** @brief adds the element at position
63 * @param pos - position (-1 means the end)
78 /** @brief return the position of node
82 * @returns - position on success, -1 on error
86 /** @brief set the node element at a specified position
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dvideo_console.h22 * @xcur_frac: Current X position, in fractional units (VID_TO_POS(x))
23 * @curr_row: Current Y position in pixels (0=top)
50 * These operations work on either an absolute console position (measured
56 * putc_xy() - write a single character to a position
59 * @x_frac: Fractional pixel X position (0=left-most pixel) which
60 * is the X position multipled by VID_FRAC_DIV.
61 * @y: Pixel Y position (0=top-most pixel)
96 * Consoles which use proportional fonts need to track the position of
111 * character and update the cursor position (xcur_frac, ycur) to the
124 * vidconsole_putc_xy() - write a single character to a position
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/planespotter/doc/src/
H A Dplanespotter.qdoc40 run CPU intensive position calculations in native environments
45 commutes between London and Berlin. The position tracking of each airplane
54 This example makes use of the \l Q_GADGET feature as part of its position controller
59 coordinates of the plane at a given time. It exposes the position
60 via its position property.
80 This example demonstrates how the \c {PlaneController}'s position property is modified
87 exchange of position data through the C++/QML boundary.
105 constantly update the position. During each timer iteration
106 \c PlaneController::updatePosition() is called and a new position calculated.
110 Once the new position is calculated, \c setPosition() is called and
[all …]
/OK3568_Linux_fs/kernel/fs/ntfs/
H A Dmst.c43 /* Position of usn in update sequence array. */ in post_read_mst_fixup()
54 * Position in protected data of first u16 that needs fixing up. in post_read_mst_fixup()
78 * Increment position in usa and restore original data from in post_read_mst_fixup()
82 /* Increment position in data as well. */ in post_read_mst_fixup()
103 * will fail (the header needs to contain the position of the update sequence
107 * position at that time).
129 /* Position of usn in update sequence array. */ in pre_write_mst_fixup()
140 /* Position in data of first u16 that needs fixing up. */ in pre_write_mst_fixup()
145 * Increment the position in the usa and save the in pre_write_mst_fixup()
151 /* Increment position in data as well. */ in pre_write_mst_fixup()
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/null/
H A Dderef_null.cocci23 position p1;
31 position p2;
45 position p1;
59 position p!={pr1.p1,pr2.p2};
60 position ifm.p1;
120 position p!={pr1.p1,pr2.p2};
121 position ifm.p1;
180 position p!={pr1.p1,pr2.p2};
181 position ifm.p1;
219 position p1;
[all …]
/OK3568_Linux_fs/kernel/drivers/pci/pcie/
H A Daer.c454 "RxErr", /* Bit Position 0 */
460 "BadTLP", /* Bit Position 6 */
461 "BadDLLP", /* Bit Position 7 */
462 "Rollover", /* Bit Position 8 */
466 "Timeout", /* Bit Position 12 */
467 "NonFatalErr", /* Bit Position 13 */
468 "CorrIntErr", /* Bit Position 14 */
469 "HeaderOF", /* Bit Position 15 */
470 NULL, /* Bit Position 16 */
471 NULL, /* Bit Position 17 */
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/api/
H A Dkfree_mismatch.cocci19 position kok, vok;
54 position fok;
64 position a != alloc.kok;
65 position f != free.fok;
78 position a != alloc.kok;
79 position f != free.fok;
93 position a != alloc.vok;
94 position f != free.fok;
106 position a != alloc.vok;
107 position f != free.fok;
[all …]
/OK3568_Linux_fs/kernel/arch/parisc/math-emu/
H A Dfcnvuf.c69 * a value in dst_exponent indicating the bit position, in sgl_to_sgl_fcnvuf()
73 /* left justify source, with msb at bit position 0 */ in sgl_to_sgl_fcnvuf()
128 * a value in dst_exponent indicating the bit position, in sgl_to_dbl_fcnvuf()
132 /* left justify source, with msb at bit position 0 */ in sgl_to_dbl_fcnvuf()
170 * a value in dst_exponent indicating the bit position, in dbl_to_sgl_fcnvuf()
174 /* left justify source, with msb at bit position 0 */ in dbl_to_sgl_fcnvuf()
179 * adjust bit position count in dbl_to_sgl_fcnvuf()
186 * a value in dst_exponent indicating the bit position, in dbl_to_sgl_fcnvuf()
191 /* left justify source, with msb at bit position 0 */ in dbl_to_sgl_fcnvuf()
252 * a value in dst_exponent indicating the bit position, in dbl_to_dbl_fcnvuf()
[all …]

12345678910>>...151