Searched refs:direction (Results 76 - 100 of 735) sorted by relevance

1234567891011>>

/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Drbt.h40 * direction may be omitted, with the result that translations in
41 * that direction will not modify the source text. In addition,
308 * @param direction either FORWARD or REVERSE.
314 UTransDirection direction,
322 * @param direction either FORWARD or REVERSE.
328 UTransDirection direction,
338 UTransDirection direction,
342 * Covenience constructor with no filter and FORWARD direction.
350 * Covenience constructor with FORWARD direction.
463 UTransDirection direction,
[all...]
H A Drbt_pars.h62 UTransDirection direction; member in class:TransliteratorParser
151 * Parse the given rules, in the given direction. After this call
156 * @param direction either FORWARD or REVERSE.
162 UTransDirection direction,
177 * @param direction either FORWARD or REVERSE.
180 UTransDirection direction,
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dreldatefmt.h172 * Represents a direction for an absolute unit e.g "Next Tuesday"
351 * @param direction NEXT means a future relative date; LAST means a past
352 * relative date. If direction is anything else, this method sets
363 UDateDirection direction,
370 * @param direction NEXT, LAST, THIS, etc.
373 * appended. If the value of direction is documented as not being fully
381 UDateDirection direction,
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dnptrans.cpp205 UCharDirection direction=U_CHAR_DIRECTION_COUNT, firstCharDir=U_CHAR_DIRECTION_COUNT; local
238 direction = u_charDirection(ch);
240 firstCharDir = direction;
242 if(direction == U_LEFT_TO_RIGHT){
245 if(direction == U_RIGHT_TO_LEFT || direction == U_RIGHT_TO_LEFT_ARABIC){
260 (direction == U_RIGHT_TO_LEFT || direction == U_RIGHT_TO_LEFT_ARABIC))
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/utilLib/
H A DrijndaelApi.h27 #define BAD_KEY_DIR -1 /* Key direction is invalid, e.g.,
46 BYTE direction; /* Key used for encrypting or decrypting? */ member in struct:__anon5341
62 BYTE direction,
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBCursor.idl31 readonly attribute DOMString direction;
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOMUIKitExtensions.h50 - (void)move:(UInt32)amount inDirection:(WebTextAdjustmentDirection)direction;
51 - (void)extend:(UInt32)amount inDirection:(WebTextAdjustmentDirection)direction;
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLMarqueeElement.idl26 [Reflect] attribute DOMString direction;
H A DHTMLTextFormControlElement.h70 void setSelectionRange(int start, int end, const String& direction);
106 void cacheSelection(int start, int end, TextFieldSelectionDirection direction) argument
110 m_cachedSelectionDirection = direction;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollTypes.h48 inline ScrollDirection logicalToPhysical(ScrollLogicalDirection direction, bool isVertical, bool isFlipped) argument
50 switch (direction) {
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DKeyBindingTranslator.cpp92 int direction = count > 0 ? 1 : 0; local
98 if (!direction) {
106 if (!direction)
111 if (!direction)
117 const char* rawCommand = gtkDeleteCommands[deleteType][direction];
151 int direction = count > 0 ? 1 : 0; local
153 direction += 2;
158 const char* rawCommand = gtkMoveCommands[step][direction];
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DSelectionRect.cpp51 SelectionRect::SelectionRect(const IntRect& rect, TextDirection direction, int minX, int maxX, int maxY, argument
55 , m_direction(direction)
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DBidiContext.h51 BidiContext(unsigned char level, UCharDirection direction, bool override, BidiEmbeddingSource source, BidiContext* parent) argument
53 , m_direction(direction)
/macosx-10.10/WebCore-7600.1.25/replay/
H A DReplayInputDispatchMethods.cpp87 controller.page().userInputBridge().logicalScrollRecursively(direction(), granularity(), InputSource::Synthetic);
92 controller.page().userInputBridge().scrollRecursively(direction(), granularity(), InputSource::Synthetic);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/efl/
H A DWKAPICastEfl.h54 inline WKPopupItemTextDirection toAPI(WebCore::TextDirection direction) argument
58 switch (direction) {
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dmarshall.h159 BE_direction_t direction
166 BE_direction_t direction
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/diagrams/
H A DpkgIndex.tcl6 package ifneeded diagram::direction 1 [list source [file join $dir direction.tcl]]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Disearch.c107 cxt->direction = 0;
200 _rl_isearch_init (direction)
201 int direction;
208 if (direction < 0)
249 cxt->direction = (direction >= 0) ? 1 : -1;
430 cxt->direction = -cxt->direction;
431 if (cxt->direction < 0)
546 cxt->sline_index += cxt->direction;
[all...]
/macosx-10.10/ncurses-44/ncurses/test/
H A Dfirework.c145 int start, end, row, diff, flag = 0, direction; local
173 direction = (start > end) ? -1 : 1;
178 mvprintw(LINES - row, start + (row * direction),
179 (direction < 0) ? "\\" : "/");
192 explode(LINES - row, start + (diff * direction));
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dmclist.tcl81 proc SortBy {tree col direction} {
82 # Determine currently sorted column and its sort direction
88 set direction [expr {"alternate" in $s}]
98 set dir [expr {$direction ? "-decreasing" : "-increasing"}]
106 # Switch the heading so that it will sort in the opposite direction
107 $tree heading $col -command [list SortBy $tree $col [expr {!$direction}]] \
108 state [expr {$direction?"!selected alternate":"selected !alternate"}]
/macosx-10.10/llvmCore-3425.0.34/examples/BrainF/
H A DBrainF.cpp192 int direction; local
329 direction = 1;
332 direction = -1;
337 curvalue += direction;
342 curvalue = direction;
346 nextvalue = direction;
353 direction = -1;
358 curvalue += direction;
363 curvalue = direction;
367 nextvalue = direction;
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dttkmenu.rb63 b1 = Ttk::Menubutton.new(base_frame,:text=>'������������������',:direction=>:above)
64 b2 = Ttk::Menubutton.new(base_frame,:text=>'������������������',:direction=>:left)
65 b3 = Ttk::Menubutton.new(base_frame,:text=>'������������������',:direction=>:right)
66 b4 = Ttk::Menubutton.new(base_frame,:text=>'������������������',:direction=>:flush,
68 b5 = Ttk::Menubutton.new(base_frame,:text=>'������������������',:direction=>:below)
/macosx-10.10/IOKitUser-1050.1.21/hid.subproj/
H A DIOHIDTransaction.c162 IOHIDTransactionDirectionType direction,
198 direction,
219 IOHIDTransactionDirectionType direction = 0; local
222 &direction);
224 return direction;
232 IOHIDTransactionDirectionType direction)
236 direction,
159 IOHIDTransactionCreate( CFAllocatorRef allocator, IOHIDDeviceRef device, IOHIDTransactionDirectionType direction, IOOptionBits options) argument
230 IOHIDTransactionSetDirection( IOHIDTransactionRef transaction, IOHIDTransactionDirectionType direction) argument
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderMarquee.cpp81 EMarqueeDirection RenderMarquee::direction() const function in class:WebCore::RenderMarquee
83 // FIXME: Support the CSS3 "auto" value for determining the direction of the marquee.
86 TextDirection dir = m_layer->renderer().style().direction();
94 // Now we have the real direction. Next we check to see if the increment is negative.
95 // If so, then we reverse the direction.
105 return direction() == MLEFT || direction() == MRIGHT;
190 m_start = computePosition(direction(), behavior == MALTERNATE);
202 m_currentLoop = 0; // When direction changes or our loopCount is a smaller number than our current loop, reset our loop.
265 bool addIncrement = direction()
[all...]
/macosx-10.10/BerkeleyDB-21/db/crypto/rijndael/
H A Drijndael-api-fst.c51 __db_makeKey(key, direction, keyLen, keyMaterial)
53 int direction;
63 if ((direction == DIR_ENCRYPT) || (direction == DIR_DECRYPT)) {
64 key->direction = direction;
79 if (direction == DIR_ENCRYPT) {
130 key->direction == DIR_DECRYPT) {
216 key->direction == DIR_DECRYPT) {
290 (cipher->mode != MODE_CFB1 && key->direction
[all...]

Completed in 505 milliseconds

1234567891011>>