Home
last modified time | relevance | path

Searched full:direction (Results 1 – 25 of 1175) sorted by relevance

12345678910>>...47

/external/icu4c/data/translit/
Droot.txt21 direction {"FORWARD"}
28 direction {"FORWARD"}
34 direction {"REVERSE"}
41 direction {"FORWARD"}
47 direction {"REVERSE"}
54 direction {"FORWARD"}
60 direction {"REVERSE"}
67 direction {"FORWARD"}
74 direction {"FORWARD"}
81 direction {"FORWARD"}
[all …]
/external/webkit/Source/WebCore/page/
DSpatialNavigation.cpp51 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const…
55 static void entryAndExitPointsForDirection(FocusDirection direction, const IntRect& startingRect, c…
58 FocusCandidate::FocusCandidate(Node* node, FocusDirection direction) in FocusCandidate() argument
79 rect = virtualRectForAreaElementAndDirection(area, direction); in FocusCandidate()
90 isOffscreenAfterScrolling = hasOffscreenRect(visibleNode, direction); in FocusCandidate()
98 static RectsAlignment alignmentForRects(FocusDirection direction, const IntRect& curRect, const Int… in alignmentForRects() argument
101 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize)) in alignmentForRects()
104 if (areRectsFullyAligned(direction, curRect, targetRect)) in alignmentForRects()
107 if (areRectsPartiallyAligned(direction, curRect, targetRect)) in alignmentForRects()
113 static inline bool isHorizontalMove(FocusDirection direction) in isHorizontalMove() argument
[all …]
DFocusController.cpp147 static Node* deepFocusableNode(FocusDirection direction, Node* node, KeyboardEvent* event) in deepFocusableNode() argument
159 node = (direction == FocusDirectionForward) in deepFocusableNode()
171 bool FocusController::setInitialFocus(FocusDirection direction, KeyboardEvent* event) in setInitialFocus() argument
173 bool didAdvanceFocus = advanceFocus(direction, event, true); in setInitialFocus()
184 bool FocusController::advanceFocus(FocusDirection direction, KeyboardEvent* event, bool initialFocu… in advanceFocus() argument
186 switch (direction) { in advanceFocus()
189 return advanceFocusInDocumentOrder(direction, event, initialFocus); in advanceFocus()
194 return advanceFocusDirectionally(direction, event); in advanceFocus()
202 bool FocusController::advanceFocusInDocumentOrder(FocusDirection direction, KeyboardEvent* event, b… in advanceFocusInDocumentOrder() argument
217 Node* node = (direction == FocusDirectionForward) in advanceFocusInDocumentOrder()
[all …]
/external/kernel-headers/original/asm-x86/
Ddma-mapping_32.h22 enum dma_data_direction direction) in dma_map_single() argument
24 BUG_ON(!valid_dma_direction(direction)); in dma_map_single()
32 enum dma_data_direction direction) in dma_unmap_single() argument
34 BUG_ON(!valid_dma_direction(direction)); in dma_unmap_single()
39 enum dma_data_direction direction) in dma_map_sg() argument
44 BUG_ON(!valid_dma_direction(direction)); in dma_map_sg()
59 size_t size, enum dma_data_direction direction) in dma_map_page() argument
61 BUG_ON(!valid_dma_direction(direction)); in dma_map_page()
67 enum dma_data_direction direction) in dma_unmap_page() argument
69 BUG_ON(!valid_dma_direction(direction)); in dma_unmap_page()
[all …]
/external/dbus/test/data/valid-introspection-files/
Dlots-of-types.xml12 <arg name="theInt32" type="int32" direction="out"/>
22 <arg name="theUint32" type="uint32" direction="out"/>
32 <arg name="theInt64" type="int64" direction="out"/>
42 <arg name="theUint64" type="uint64" direction="out"/>
52 <arg name="theBoolean" type="boolean" direction="out"/>
62 <arg name="theString" type="string" direction="out"/>
72 <arg name="theDouble" type="double" direction="out"/>
82 <arg type="boolean" direction="in"/>
83 <arg type="string" direction="out"/>
84 <arg type="string" direction="out"/>
[all …]
/external/webkit/Source/WebCore/css/
DCSSProperty.cpp43 static int resolveToPhysicalProperty(TextDirection direction, WritingMode writingMode, LogicalBoxSi… in resolveToPhysicalProperty() argument
45 if (direction == LTR) { in resolveToPhysicalProperty()
157 int CSSProperty::resolveDirectionAwareProperty(int propertyID, TextDirection direction, WritingMode… in resolveDirectionAwareProperty() argument
162 return resolveToPhysicalProperty(direction, writingMode, EndSide, properties); in resolveDirectionAwareProperty()
166 return resolveToPhysicalProperty(direction, writingMode, StartSide, properties); in resolveDirectionAwareProperty()
170 return resolveToPhysicalProperty(direction, writingMode, BeforeSide, properties); in resolveDirectionAwareProperty()
174 return resolveToPhysicalProperty(direction, writingMode, AfterSide, properties); in resolveDirectionAwareProperty()
178 return resolveToPhysicalProperty(direction, writingMode, EndSide, properties); in resolveDirectionAwareProperty()
182 return resolveToPhysicalProperty(direction, writingMode, StartSide, properties); in resolveDirectionAwareProperty()
186 return resolveToPhysicalProperty(direction, writingMode, BeforeSide, properties); in resolveDirectionAwareProperty()
[all …]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
Dtable_data_model.js80 this.sortStatus_.field, this.sortStatus_.direction);
124 this.sortStatus.direction);
147 this.sort(this.sortStatus.field, this.sortStatus.direction);
151 * Creates sort status with given field and direction.
153 * @param {string} direction Sort direction.
156 createSortStatus: function(field, direction) { argument
159 direction: direction
176 * Sorts data model according to given field and direction and dispathes
179 * @param {string} direction Sort direction.
181 sort: function(field, direction) { argument
[all …]
/external/icu4c/layout/
DGlyphIterator.cpp20 : direction(1), position(-1), nextLimit(-1), prevLimit(-1), in GlyphIterator()
36 direction = -1; in GlyphIterator()
46 direction = that.direction; in GlyphIterator()
64 direction = that.direction; in GlyphIterator()
82 direction = that.direction; in GlyphIterator()
119 if (direction < 0) { in applyInsertions()
135 return direction < 0; in isRightToLeft()
150 if (direction < 0) { in getCurrGlyphID()
165 if (direction < 0) { in getCursiveEntryPoint()
180 if (direction < 0) { in getCursiveExitPoint()
[all …]
/external/webkit/Source/WebKit/android/nav/
DCachedHistory.cpp44 void CachedHistory::addToVisited(const CachedNode* node, CachedFrame::Direction direction) in addToVisited() argument
48 mVisited[0].mDirection = direction; in addToVisited()
51 bool CachedHistory::checkVisited(const CachedNode* node, CachedFrame::Direction direction) const in checkVisited()
53 // if the direction is unchanged and we've already visited this node, don't visit it again in checkVisited()
56 if (direction != mVisited[index].mDirection) in checkVisited()
58 … index++; // compare with last direction, previous to last node (where the arrow took us from) in checkVisited()
89 void CachedHistory::setWorking(CachedFrame::Direction newMove, in setWorking()
93 …CachedFrame::Direction lastAxis = (CachedFrame::Direction) (mLastMove & ~CachedFrame::RIGHT_DOWN);… in setWorking()
94 CachedFrame::Direction newAxis = (CachedFrame::Direction) (newMove & ~CachedFrame::RIGHT_DOWN); in setWorking()
107 if (change) { // uninitialized or change in direction in setWorking()
[all …]
DCachedHistory.h42 void addToVisited(const CachedNode* , CachedFrame::Direction );
43 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
55 void setWorking(CachedFrame::Direction , const CachedFrame* ,
62 CachedFrame::Direction mDirection;
69 CachedFrame::Direction mLastMove;
70 CachedFrame::Direction mPriorMove;
81 const char* direction(CachedFrame::Direction d) const;
/external/webkit/Source/WebCore/manual-tests/
Dpop-up-alignment-and-direction.html8 … For each of the direction settings below, and for each item in the pop-up menu below, verify that
13 <label><input type="radio" name="direction" value="ltr" checked onchange="directionChanged(event)">…
14 <label><input type="radio" name="direction" value="rtl" onchange="directionChanged(event)"> Right t…
17 <option style="direction: ltr;">
20 <option style="direction: rtl;">
23 <option style="direction: ltr; unicode-bidi: bidi-override;">
26 <option style="direction: rtl; unicode-bidi: bidi-override;">
55 reflection.style.direction = optionStyle.direction;
57 …reflection.style.textAlign = getComputedStyle(event.target).direction === "ltr" ? "left" : "right";
62 document.getElementById('menu').style.direction = event.target.value;
/external/webkit/Tools/TestResultServer/
Dindex.yaml17 direction: desc
23 direction: desc
32 direction: desc
39 direction: desc
47 direction: desc
53 direction: desc
59 direction: desc
65 direction: desc
/external/webkit/Source/WebCore/platform/text/
DBidiResolver.h65 …BidiStatus(WTF::Unicode::Direction eorDir, WTF::Unicode::Direction lastStrongDir, WTF::Unicode::Di… in BidiStatus()
73 WTF::Unicode::Direction eor;
74 WTF::Unicode::Direction lastStrong;
75 WTF::Unicode::Direction last;
81 BidiEmbedding(WTF::Unicode::Direction direction, BidiEmbeddingSource source) in BidiEmbedding() argument
82 : m_direction(direction) in BidiEmbedding()
87 WTF::Unicode::Direction direction() const { return m_direction; } in direction() function
90 WTF::Unicode::Direction m_direction;
105 BidiCharacterRun(int start, int stop, BidiContext* context, WTF::Unicode::Direction dir) in BidiCharacterRun()
171 void setLastDir(WTF::Unicode::Direction lastDir) { m_status.last = lastDir; } in setLastDir()
[all …]
DBidiContext.h41 …static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override …
45 … WTF::Unicode::Direction dir() const { return static_cast<WTF::Unicode::Direction>(m_direction); } in dir()
51 …BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSo… in BidiContext() argument
53 , m_direction(direction) in BidiContext()
60 …static PassRefPtr<BidiContext> createUncached(unsigned char level, WTF::Unicode::Direction, bool o…
63 unsigned m_direction : 5; // Direction
/external/qemu/android/avd/
Dhardware-properties.ini304 # Defines direction of the emulated webcam with index 0
306 name = hw.webcam.0.direction
309 abstract = 1-st emulated web camera direction
310 description = Direction of the 1-st emulated web camera
312 # Defines direction of the emulated webcam with index 1
316 name = hw.webcam.1.direction
319 abstract = 2-nd emulated web camera direction
320 description = Direction of the 2-nd emulated web camera
322 # Defines direction of the emulated webcam with index 2
324 name = hw.webcam.2.direction
[all …]
/external/webkit/Source/WebCore/storage/
DIDBIndex.cpp58 …utionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& … in openCursor() argument
60 …if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBC… in openCursor()
68 m_backend->openCursor(keyRange, direction, request, m_transaction->backend(), ec); in openCursor()
76 …utionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& … in openKeyCursor() argument
78 …if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBC… in openKeyCursor()
86 m_backend->openKeyCursor(keyRange, direction, request, m_transaction->backend(), ec); in openKeyCursor()
/external/webkit/Tools/QueueStatusServer/
Dindex.yaml17 direction: desc
24 direction: desc
32 direction: desc
39 direction: desc
52 direction: desc
63 direction: desc
69 direction: desc
/external/icu4c/i18n/
Drbt.cpp31 UTransDirection direction, in _construct() argument
41 parser.parse(rules, direction, parseError, status); in _construct()
61 * @param direction either FORWARD or REVERSE.
67 * or direction is invalid.
72 UTransDirection direction, in RuleBasedTransliterator() argument
77 _construct(rules, direction,parseError,status); in RuleBasedTransliterator()
84 * @param direction either FORWARD or REVERSE.
88 * or direction is invalid.
93 UTransDirection direction,
98 _construct(rules, direction,parseError, status);
[all …]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
Dv8-deltablue.js326 var Direction = new Object(); variable
327 Direction.NONE = 0;
328 Direction.FORWARD = 1;
329 Direction.BACKWARD = -1;
339 this.direction = Direction.NONE;
352 … this.direction = (this.v2.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
353 ? Direction.FORWARD
354 : Direction.NONE;
357 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
358 ? Direction.BACKWARD
[all …]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
Dv8-deltablue.js326 var Direction = new Object(); variable
327 Direction.NONE = 0;
328 Direction.FORWARD = 1;
329 Direction.BACKWARD = -1;
339 this.direction = Direction.NONE;
352 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
353 ? Direction.FORWARD
354 : Direction.NONE;
357 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
358 ? Direction.BACKWARD
[all …]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
Dv8-deltablue.js326 var Direction = new Object(); variable
327 Direction.NONE = 0;
328 Direction.FORWARD = 1;
329 Direction.BACKWARD = -1;
339 this.direction = Direction.NONE;
352 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
353 ? Direction.FORWARD
354 : Direction.NONE;
357 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
358 ? Direction.BACKWARD
[all …]
/external/v8/benchmarks/
Ddeltablue.js332 var Direction = new Object(); variable
333 Direction.NONE = 0;
334 Direction.FORWARD = 1;
335 Direction.BACKWARD = -1;
345 this.direction = Direction.NONE;
358 … this.direction = (this.v2.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
359 ? Direction.FORWARD
360 : Direction.NONE;
363 … this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
364 ? Direction.BACKWARD
[all …]
/external/ipsec-tools/src/libipsec/
Dipsec_set_policy.398 .It Ar direction [priority specification] Li discard
99 .Ar direction
105 .Ar direction
106 specifies in which direction the policy needs to be applied.
107 The non-standard direction
152 .It Ar direction [priority specification] Li entrust
156 .It Ar direction [priority specification] Li bypass
161 .It Ar direction Bo Ar priority specification Bc Li ipsec Ar request ...
195 .Ar direction
/external/icu4c/common/unicode/
Dunimatch.h82 * Matching in the forward direction is indicated by limit >
86 * Matching in the reverse direction is indicated by limit <
94 * the matched substring. In the forward direction, this will be
96 * reverse direction, this will be the index of the last matched
110 * than offset for a forward direction match, less than offset for
111 * a backward direction match. The last character to be
113 * forward direction or text.charAt(limit+1) in the backward
114 * direction.
145 * & 0xFF == v, at offset, in the forward direction (with limit >
/external/skia/src/animator/
DSkPathParts.cpp212 SK_MEMBER(direction, PathDirection)
219 SkAddGeom::SkAddGeom() : direction(SkPath::kCCW_Direction) { in SkAddGeom()
241 fPath->fPath.addRect(fRect, (SkPath::Direction) direction); in add()
257 fPath->fPath.addOval(fRect, (SkPath::Direction) direction); in add()
279 fPath->fPath.addCircle(x, y, radius, (SkPath::Direction) direction); in add()
300 fPath->fPath.addRoundRect(fRect, rx, ry, (SkPath::Direction) direction); in add()

12345678910>>...47