Searched refs:direction (Results 1 - 25 of 753) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/include/
H A Dpointarith.inc9 [call [cmd by] [arg distance] [arg direction]]
13 This command takes a [arg distance] and [arg direction] (angle in
14 degress, or registered direction name) and returns the [term relative]
57 [call [arg point] [cmd by] [arg distance] [arg direction]]
62 [$point + [by $distance $direction]]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextDirection.h33 inline bool isLeftToRightDirection(TextDirection direction) { return direction == LTR; } argument
/macosx-10.9.5/libpcap-42/libpcap/pcap/
H A Dbluetooth.h44 u_int32_t direction; /* if first bit is set direction is incoming */ member in struct:_pcap_bluetooth_h4_header
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient/
H A Dkcglue_des.c13 void kcglue_des_ecb_encrypt(void *asrc,void *adest,void *asched,int direction) argument
15 des_ecb_encrypt(asrc,adest,asched,direction);
18 void kcglue_des_pcbc_encrypt(void *asrc,void *adest,long length,void *asched,void *akey,int direction) argument
20 des_pcbc_encrypt(asrc,adest,length,asched,akey,direction);
H A Dkcglue_des.h7 void kcglue_des_ecb_encrypt(void *asrc,void *adest,void *asched,int direction);
8 void kcglue_des_pcbc_encrypt(void *asrc,void *adest,long length,void *asched,void *akey,int direction);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/
H A Dkcglue_des.c13 void kcglue_des_ecb_encrypt(void *asrc,void *adest,void *asched,int direction) argument
15 des_ecb_encrypt(asrc,adest,asched,direction);
18 void kcglue_des_pcbc_encrypt(void *asrc,void *adest,long length,void *asched,void *akey,int direction) argument
20 des_pcbc_encrypt(asrc,adest,length,asched,akey,direction);
H A Dkcglue_des.h7 void kcglue_des_ecb_encrypt(void *asrc,void *adest,void *asched,int direction);
8 void kcglue_des_pcbc_encrypt(void *asrc,void *adest,long length,void *asched,void *akey,int direction);
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-usb.c38 /* returns direction: 1=inbound 2=outbound -1=invalid */
42 int direction; local
44 direction = -1;
52 direction = 2;
56 direction = 1;
59 direction = -1;
66 direction = 1;
70 direction = 2;
73 direction = -1;
77 direction
86 int direction; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/diagrams/
H A Ddraw_chemical.tcl35 "0" { direction E ; set anchor E }
36 "60" { direction NE ; set anchor NE }
37 "90" { direction N ; set anchor N }
38 "120" { direction NW ; set anchor NW }
39 "180" { direction W ; set anchor W }
40 "240" { direction SW ; set anchor SW }
42 "270" { direction S ; set anchor S }
44 "300" { direction SE ; set anchor SE }
56 # -- order of direction/currentpos important!
58 direction eas
[all...]
H A Ddraw_anchor.tcl8 direction southeast
13 direction southeast
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonCryptoSymXTS.c32 doXTSTestCase(int caseNumber, int direction, int dataLenBits, char *ivStr, char *cipherText, char *plainText, char *combinedKey)
58 if(direction == ENCRYPT) {
88 int direction;
98 direction = ENCRYPT;
108 doXTSTestCase(caseNumber, direction, dataLen, iv, cipherText, plainText, combinedKey);
118 doXTSTestCase(caseNumber, direction, dataLen, iv, cipherText, plainText, combinedKey);
128 doXTSTestCase(caseNumber, direction, dataLen, iv, cipherText, plainText, combinedKey);
138 doXTSTestCase(caseNumber, direction, dataLen, iv, cipherText, plainText, combinedKey);
148 doXTSTestCase(caseNumber, direction, dataLen, iv, cipherText, plainText, combinedKey);
158 doXTSTestCase(caseNumber, direction, dataLe
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DStyleMarqueeData.cpp34 , direction(RenderStyle::initialMarqueeDirection())
44 , direction(o.direction)
50 return increment == o.increment && speed == o.speed && direction == o.direction &&
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/examples/
H A Dmanexamp.c73 direction = -1;
77 direction = 1;
80 end = start + (count * direction);
102 for (; start != end; start += direction)
111 rl_point = end - direction;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DComposedShadowTreeWalker.cpp96 Node* ComposedShadowTreeWalker::traverseChild(const Node* node, TraversalDirection direction) const
101 return shadow ? traverseLightChildren(shadow->shadowRoot(), direction)
102 : traverseLightChildren(node, direction);
106 return traverseLightChildren(node, direction);
109 Node* ComposedShadowTreeWalker::traverseLightChildren(const Node* node, TraversalDirection direction) argument
112 return traverseSiblings(direction == TraversalDirectionForward ? node->firstChild() : node->lastChild(), direction);
115 Node* ComposedShadowTreeWalker::traverseSiblings(const Node* node, TraversalDirection direction) argument
117 for (const Node* sibling = node; sibling; sibling = (direction == TraversalDirectionForward ? sibling->nextSibling() : sibling->previousSibling())) {
118 if (Node* found = traverseNode(sibling, direction))
124 traverseNode(const Node* node, TraversalDirection direction) argument
149 traverseDistributedNodes(const Node* node, const InsertionPoint* insertionPoint, TraversalDirection direction) argument
158 traverseSiblingOrBackToInsertionPoint(const Node* node, TraversalDirection direction) argument
174 traverseSiblingInCurrentTree(const Node* node, TraversalDirection direction) argument
182 escapeFallbackContentElement(const Node* node, TraversalDirection direction) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dhistsearch.c63 history_search_internal (string, direction, anchored)
65 int direction, anchored;
74 reverse = (direction < 0);
94 /* At limit for direction? */
159 history_search (string, direction)
161 int direction;
163 return (history_search_internal (string, direction, NON_ANCHORED_SEARCH));
168 history_search_prefix (string, direction)
170 int direction;
172 return (history_search_internal (string, direction, ANCHORED_SEARC
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBCursorWithValue.cpp36 PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
38 return adoptRef(new IDBCursorWithValue(backend, direction, request, source, transaction));
47 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
48 : IDBCursor(backend, direction, request, source, transaction)
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DLengthBox.cpp78 Length LengthBox::start(WritingMode writingMode, TextDirection direction) const
81 return isLeftToRightDirection(direction) ? m_left : m_right;
82 return isLeftToRightDirection(direction) ? m_top : m_bottom;
85 Length LengthBox::end(WritingMode writingMode, TextDirection direction) const
88 return isLeftToRightDirection(direction) ? m_right : m_left;
89 return isLeftToRightDirection(direction) ? m_bottom : m_top;
/macosx-10.9.5/groff-38/groff/src/preproc/pic/
H A Dobject.h107 enum direction { enum
116 direction dir;
194 direction dir;
201 object *make_object(position *, direction *);
202 graphic_object *make_box(position *, direction *);
203 graphic_object *make_block(position *, direction *);
204 graphic_object *make_text(position *, direction *);
205 graphic_object *make_ellipse(position *, direction *);
206 graphic_object *make_circle(position *, direction *);
207 linear_object *make_line(position *, direction *);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSReflectValue.h40 static PassRefPtr<CSSReflectValue> create(PassRefPtr<CSSPrimitiveValue> direction, argument
43 return adoptRef(new CSSReflectValue(direction, offset, mask));
46 CSSPrimitiveValue* direction() const { return m_direction.get(); } function in class:WebCore::CSSReflectValue
60 CSSReflectValue(PassRefPtr<CSSPrimitiveValue> direction, PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask) argument
62 , m_direction(direction)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DSpotLightSource.h34 const FloatPoint3D& direction, float specularExponent, float limitingConeAngle)
36 return adoptRef(new SpotLightSource(position, direction, specularExponent, limitingConeAngle));
40 const FloatPoint3D& direction() const { return m_direction; } function in class:WebCore::SpotLightSource
60 SpotLightSource(const FloatPoint3D& position, const FloatPoint3D& direction, argument
64 , m_direction(direction)
33 create(const FloatPoint3D& position, const FloatPoint3D& direction, float specularExponent, float limitingConeAngle) argument
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducpgba.h51 * These are the direction values that can appear in render runs and render
64 * This structure is used to contain runs of text in a particular direction.
73 int direction; /* Direction of the run. */ member in struct:_ucrun_t
90 int direction; /* Overall direction of the string. */ member in struct:_ucstring_t
115 * "Pretty Good Bidi Algorithm." A default direction is provided for cases
116 * of a string containing no strong direction characters and the default
158 * This routine retrieves the direction of the run containing the cursor
162 ucstring_cursor_info LDAP_P((ucstring_t *string, int *direction,
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DLayoutBoxExtent.cpp88 LayoutUnit LayoutBoxExtent::start(WritingMode writingMode, TextDirection direction) const
91 return isLeftToRightDirection(direction) ? m_left : m_right;
92 return isLeftToRightDirection(direction) ? m_top : m_bottom;
95 LayoutUnit LayoutBoxExtent::end(WritingMode writingMode, TextDirection direction) const
98 return isLeftToRightDirection(direction) ? m_right : m_left;
99 return isLeftToRightDirection(direction) ? m_bottom : m_top;
144 void LayoutBoxExtent::setStart(WritingMode writingMode, TextDirection direction, LayoutUnit value) argument
147 if (isLeftToRightDirection(direction))
152 if (isLeftToRightDirection(direction))
159 void LayoutBoxExtent::setEnd(WritingMode writingMode, TextDirection direction, LayoutUni argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOInterleavedMemoryDescriptor.h59 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
63 IODirection direction);
69 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
73 IODirection direction );
78 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures. */
80 virtual void clearMemoryDescriptors( IODirection direction = kIODirectionNone );
85 @param descriptor An IOMemoryDescriptor to be added to the IOInterleavedMemoryDescriptor. Its direction mus
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DSpatialNavigation.cpp58 FocusCandidate::FocusCandidate(Node* node, FocusDirection direction) argument
79 rect = virtualRectForAreaElementAndDirection(area, direction);
90 isOffscreenAfterScrolling = hasOffscreenRect(visibleNode, direction);
98 static RectsAlignment alignmentForRects(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
101 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize))
104 if (areRectsFullyAligned(direction, curRect, targetRect))
107 if (areRectsPartiallyAligned(direction, curRect, targetRect))
113 static inline bool isHorizontalMove(FocusDirection direction) argument
115 return direction == FocusDirectionLeft || direction
118 start(FocusDirection direction, const LayoutRect& rect) argument
123 middle(FocusDirection direction, const LayoutRect& rect) argument
129 end(FocusDirection direction, const LayoutRect& rect) argument
141 areRectsFullyAligned(FocusDirection direction, const LayoutRect& a, const LayoutRect& b) argument
213 areRectsPartiallyAligned(FocusDirection direction, const LayoutRect& a, const LayoutRect& b) argument
241 areRectsMoreThanFullScreenApart(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
272 isRectInDirection(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect) argument
292 hasOffscreenRect(Node* node, FocusDirection direction) argument
338 scrollInDirection(Frame* frame, FocusDirection direction) argument
369 scrollInDirection(Node* container, FocusDirection direction) argument
436 scrollableEnclosingBoxOrParentFrameForNodeInDirection(FocusDirection direction, Node* node) argument
450 canScrollInDirection(const Node* container, FocusDirection direction) argument
474 canScrollInDirection(const Frame* frame, FocusDirection direction) argument
543 entryAndExitPointsForDirection(FocusDirection direction, const LayoutRect& startingRect, const LayoutRect& potentialRect, LayoutPoint& exitPoint, LayoutPoint& entryPoint) argument
621 distanceDataForNode(FocusDirection direction, const FocusCandidate& current, FocusCandidate& candidate) argument
680 canBeScrolledIntoView(FocusDirection direction, const FocusCandidate& candidate) argument
701 virtualRectForDirection(FocusDirection direction, const LayoutRect& startingRect, LayoutUnit width) argument
726 virtualRectForAreaElementAndDirection(HTMLAreaElement* area, FocusDirection direction) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTitleElement.cpp90 TextDirection direction = LTR; local
92 direction = style->direction();
94 direction = style->direction();
95 return StringWithDirection(text(), direction);

Completed in 188 milliseconds

1234567891011>>