Searched defs:direction (Results 101 - 125 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotification.cpp132 TextDirection Notification::direction() const function in class:blink::Notification
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DCharacter.cpp264 unsigned Character::expansionOpportunityCount(const LChar* characters, size_t length, TextDirection direction, bool& isAfterExpansion) argument
267 if (direction == LTR) {
289 unsigned Character::expansionOpportunityCount(const UChar* characters, size_t length, TextDirection direction, bool& isAfterExpansion) argument
293 if (direction == LTR) {
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer.h66 hb_direction_t direction; member in struct:hb_segment_properties_t
142 hb_direction_t direction);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcbiditst.h70 UBiDiDirection direction; member in struct:__anon12182
/external/chromium_org/third_party/icu/source/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))
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dlookahead.c196 int direction)
200 if (direction == PEEK_FORWARD)
211 else if (direction == PEEK_BACKWARD)
194 vp8_lookahead_peek(struct lookahead_ctx *ctx, unsigned int index, int direction) argument
/external/chromium_org/third_party/skia/src/animator/
H A DSkPathParts.h113 int /*SkPath::Direction*/ direction; member in class:SkAddGeom
/external/chromium_org/third_party/skia/src/effects/
H A DSkEmbossMaskFilter.cpp29 SkMaskFilter* SkBlurMaskFilter::CreateEmboss(const SkScalar direction[3], argument
33 direction, ambient, specular);
36 SkMaskFilter* SkBlurMaskFilter::CreateEmboss(SkScalar blurSigma, const SkScalar direction[3], argument
38 if (direction == NULL) {
50 memcpy(light.fDirection, direction, sizeof(light.fDirection));
107 // run the light direction through the matrix...
157 str->append("direction: (");
/external/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_window_event_filter.cc182 int direction = -1; local
185 direction = k_NET_WM_MOVERESIZE_SIZE_BOTTOM;
188 direction = k_NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT;
191 direction = k_NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT;
194 direction = k_NET_WM_MOVERESIZE_MOVE;
197 direction = k_NET_WM_MOVERESIZE_SIZE_LEFT;
200 direction = k_NET_WM_MOVERESIZE_SIZE_RIGHT;
203 direction = k_NET_WM_MOVERESIZE_SIZE_TOP;
206 direction = k_NET_WM_MOVERESIZE_SIZE_TOPLEFT;
209 direction
[all...]
/external/droiddriver/src/com/google/android/droiddriver/
H A DUiElement.java173 * Scrolls in the given direction.
175 * @param direction specifies where the view port will move, instead of the
178 void scroll(PhysicalDirection direction); argument
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DAccessibilityEventScrollStepStrategy.java56 public boolean match(Finder containerFinder, PhysicalDirection direction) { argument
57 return containerFinderAtEnd == containerFinder && directionAtEnd == direction;
60 public void set(Finder containerFinder, PhysicalDirection direction) { argument
62 directionAtEnd = direction;
110 final PhysicalDirection direction) {
112 if (endData.match(containerFinder, direction)) {
116 AccessibilityEvent event = doScrollAndReturnEvent(driver.on(containerFinder), direction);
117 if (detectEnd(event, direction.axis())) {
118 endData.set(containerFinder, direction);
162 PhysicalDirection direction) {
109 scroll(DroidDriver driver, Finder containerFinder, final PhysicalDirection direction) argument
161 beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
167 endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
170 doScrollAndReturnEvent(final UiElement container, final PhysicalDirection direction) argument
190 doScroll(final UiElement container, final PhysicalDirection direction) argument
[all...]
H A DDynamicSentinelStrategy.java210 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { argument
211 UiElement oldSentinel = getOldSentinel(driver, containerFinder, direction);
212 doScroll(oldSentinel.getParent(), direction);
213 UiElement newSentinel = getSentinel(driver, containerFinder, direction);
219 PhysicalDirection direction) {
220 return lastSentinel != null ? lastSentinel : getSentinel(driver, containerFinder, direction);
225 PhysicalDirection direction) {
231 PhysicalDirection direction) {
218 getOldSentinel(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) argument
224 beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
230 endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
H A DSentinelStrategy.java176 PhysicalDirection direction) {
177 Logs.call(this, "getSentinel", driver, containerFinder, direction);
179 LogicalDirection logicalDirection = directionConverter.toLogicalDirection(direction);
195 PhysicalDirection direction) {}
199 PhysicalDirection direction) {}
207 public void doScroll(UiElement container, PhysicalDirection direction) { argument
208 container.scroll(direction);
175 getSentinel(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) argument
194 beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
198 endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
/external/eigen/Eigen/src/Geometry/
H A DParametrizedLine.h23 * direction vector \f$ \mathbf{d} \f$ such that the line corresponds to
48 : m_origin(other.origin()), m_direction(other.direction())
55 /** Initializes a parametrized line of direction \a direction and origin \a origin.
56 * \warning the vector direction is assumed to be normalized.
58 ParametrizedLine(const VectorType& origin, const VectorType& direction) argument
59 : m_origin(origin), m_direction(direction) {}
76 const VectorType& direction() const { return m_direction; } function in class:Eigen::ParametrizedLine
77 VectorType& direction() { return m_direction; } function in class:Eigen::ParametrizedLine
85 return (diff - direction()
[all...]
/external/harfbuzz_ng/src/
H A Dhb-buffer.h66 hb_direction_t direction; member in struct:hb_segment_properties_t
142 hb_direction_t direction);
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.h70 UBiDiDirection direction; member in struct:__anon21981
/external/icu/icu4c/source/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))
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.c39 int rijndael_makeKey(keyInstance *key, BYTE direction, int keyLen, char *keyMaterial) { argument
48 if ((direction == DIR_ENCRYPT) || (direction == DIR_DECRYPT)) {
49 key->direction = direction;
72 if (direction == DIR_DECRYPT) {
100 key->direction == DIR_DECRYPT) {
214 key->direction == DIR_DECRYPT) {
277 (cipher->mode != MODE_CFB1 && key->direction == DIR_ENCRYPT)) {
376 key->direction
[all...]
H A Drijndael-api-fst.h32 #define BAD_KEY_DIR -1 /* Key direction is invalid, e.g., unknown value */
54 u_int8_t direction; /* Key used for encrypting or decrypting? */ member in struct:__anon22451
84 int rijndael_makeKey(keyInstance *key, u_int8_t direction, int keyLen, char *keyMaterial);
/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.c196 int direction)
200 if (direction == PEEK_FORWARD)
211 else if (direction == PEEK_BACKWARD)
194 vp8_lookahead_peek(struct lookahead_ctx *ctx, unsigned int index, int direction) argument
/external/skia/src/animator/
H A DSkPathParts.h113 int /*SkPath::Direction*/ direction; member in class:SkAddGeom
/external/skia/src/effects/
H A DSkEmbossMaskFilter.cpp29 SkMaskFilter* SkBlurMaskFilter::CreateEmboss(const SkScalar direction[3], argument
33 direction, ambient, specular);
36 SkMaskFilter* SkBlurMaskFilter::CreateEmboss(SkScalar blurSigma, const SkScalar direction[3], argument
38 if (direction == NULL) {
50 memcpy(light.fDirection, direction, sizeof(light.fDirection));
107 // run the light direction through the matrix...
148 str->append("direction: (");
/external/srec/tools/grxmlcompile/
H A Dsub_supp.cpp206 int rix, rix_low, rix_high, direction; local
212 direction= element - arc[forwardList[rix]]->GetFromId();
213 if (direction < 0)
215 else if (direction > 0)
311 int rix, rix_low, rix_high, direction; local
317 direction= element - arc[backwardList[rix]]->GetToId();
318 if (direction < 0)
320 else if (direction > 0)
/external/aac/libAACdec/src/
H A Drvlc_info.h94 #define FWD 0 /* bitstream decoding direction forward (RVL coded part) */
95 #define BWD 1 /* bitstream decoding direction backward (RVL coded part) */
137 UCHAR direction; member in struct:__anon51
/external/aac/libAACenc/src/
H A Daacenc_tns.h125 INT tnsFilterDirection[MAX_NUM_OF_FILTERS]; /* Filtering direction, 0=up, 1=down TABUL */
183 INT direction[TRANS_FAC][MAX_NUM_OF_FILTERS]; member in struct:__anon85

Completed in 4469 milliseconds

1234567891011>>