HomeSort by relevance Sort by last modified time
    Searched defs:direction (Results 151 - 175 of 682) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ImageMagick/MagickCore/
feature.c 631 direction[4]; /* horizontal, vertical, left and right diagonals */
953 cooccurrence[u][v].direction[i].red++;
954 cooccurrence[v][u].direction[i].red++;
961 cooccurrence[u][v].direction[i].green++;
962 cooccurrence[v][u].direction[i].green++;
969 cooccurrence[u][v].direction[i].blue++;
970 cooccurrence[v][u].direction[i].blue++;
979 cooccurrence[u][v].direction[i].black++;
980 cooccurrence[v][u].direction[i].black++;
990 cooccurrence[u][v].direction[i].alpha++
628 direction[4]; \/* horizontal, vertical, left and right diagonals *\/ member in struct:_ChannelStatistics
    [all...]
shear.c 1207 direction; local
1426 direction; local
    [all...]
  /external/adhd/cras/src/server/
cras_iodev.h 145 * direction - Input or Output.
211 enum CRAS_STREAM_DIRECTION direction; member in struct:cras_iodev
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 75 switch (props->direction) {
101 if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
306 hb_direction_t direction = buffer->props.direction; local
312 if ((HB_DIRECTION_IS_HORIZONTAL (direction) && direction != hb_script_get_horizontal_direction (buffer->props.script)) ||
313 (HB_DIRECTION_IS_VERTICAL (direction) && direction != HB_DIRECTION_TTB))
337 buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
663 hb_direction_t direction = c->buffer->props.direction; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrep.java 514 int direction=UCharacterDirection.CHAR_DIRECTION_COUNT, local
529 direction = bdp.getClass(ch);
531 firstCharDir = direction;
533 if(direction == UCharacterDirection.LEFT_TO_RIGHT){
537 if(direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC){
554 (direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC))
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrep.java 532 int direction=UCharacterDirection.CHAR_DIRECTION_COUNT, local
547 direction = bdp.getClass(ch);
549 firstCharDir = direction;
551 if(direction == UCharacterDirection.LEFT_TO_RIGHT){
555 if(direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC){
572 (direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC))
  /external/libxaac/decoder/
ixheaacd_mps_dec.c 1333 WORD32 direction = BACKWARDS; local
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qpu_schedule.c 84 enum direction { F, R }; enum
96 enum direction dir;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
NPCComponent.java 377 int direction = 1; local
382 direction = Utils.sign(
387 parentObject.getTargetVelocity().x = mHorizontalImpulse * direction;
  /external/skia/src/effects/
SkMorphologyImageFilter.cpp 143 enum class Direction { kX, kY };
146 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
152 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
161 Direction direction() const { return fDirection; } function in class:GrMorphologyEffect
174 Direction fDirection;
186 GrMorphologyEffect(sk_sp<GrTextureProxy>, Direction, int radius, Type, const float range[2]);
240 switch (me.direction()) {
241 case GrMorphologyEffect::Direction::kX:
244 case GrMorphologyEffect::Direction::kY
    [all...]
  /external/skia/tools/shape/
SkShaper_harfbuzz.cpp 564 hb_direction_t direction = is_LTR(bidi->currentLevel()) ? HB_DIRECTION_LTR:HB_DIRECTION_RTL; local
565 hb_buffer_set_direction(buffer, direction);
575 if (direction == HB_DIRECTION_RTL) {
  /external/skqp/src/effects/
SkMorphologyImageFilter.cpp 143 enum class Direction { kX, kY };
146 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
152 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
161 Direction direction() const { return fDirection; } function in class:GrMorphologyEffect
174 Direction fDirection;
186 GrMorphologyEffect(sk_sp<GrTextureProxy>, Direction, int radius, Type, const float range[2]);
240 switch (me.direction()) {
241 case GrMorphologyEffect::Direction::kX:
244 case GrMorphologyEffect::Direction::kY
    [all...]
  /external/skqp/tools/shape/
SkShaper_harfbuzz.cpp 559 hb_direction_t direction = is_LTR(bidi->currentLevel()) ? HB_DIRECTION_LTR:HB_DIRECTION_RTL; local
560 hb_buffer_set_direction(buffer, direction);
570 if (direction == HB_DIRECTION_RTL) {
  /external/v8/benchmarks/
raytrace.js 284 direction : null,
287 this.direction = dir;
291 return 'Ray [' + this.position + ',' + this.direction + ']';
432 var B = dst.dot(ray.direction);
442 ray.direction,
481 var Vd = this.position.dot(ray.direction);
492 ray.direction,
746 var reflectionRay = this.getReflectionRay(info.position, info.normal, ray.direction);
283 position : null, property in class:Flog.RayTracer.Ray
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test.cc 437 // 5.1. Single Video and Audio media traffic, forward direction.
478 // 5.2. Two forward direction competing flows, variable capacity.
556 enum direction { kForward = 0, kBackward }; enum
632 // 5.4. Three forward direction competing flows, constant capacity.
    [all...]
  /frameworks/base/core/java/android/net/
IpSecManager.java 350 * <p>When applying a new tranform to a socket in the outbound direction, the previous transform
352 * the new transform; however, when applying a transform in the inbound direction, traffic
359 * @param direction the direction in which the transform should be applied
364 @PolicyDirection int direction, @NonNull IpSecTransform transform) throws IOException {
368 applyTransportModeTransform(socket.getFileDescriptor$(), direction, transform); local
387 * <p>When applying a new tranform to a socket in the outbound direction, the previous transform
389 * the new transform; however, when applying a transform in the inbound direction, traffic
396 * @param direction the direction in which the transform should be applie
402 applyTransportModeTransform(socket.getFileDescriptor$(), direction, transform); local
918 tunnel.getResourceId(), direction, local
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityGestureDetector.java 51 // reducing noisy minor changes in direction.
468 // direction change.
491 // the last delimiter to the previous point, but in the direction of the average
507 // Compare the initial motion direction to the most recent motion direction,
508 // and segment the line if direction has changed by about 90 degrees.
538 * Classifies a pair of line segments, by direction.
556 int direction = toDirection(dX, dY); local
557 switch (direction) {
590 /** Maps a vector to a dominant direction in set {LEFT, RIGHT, UP, DOWN}. *
    [all...]
  /frameworks/opt/car/setupwizard/library/src/com/android/car/setupwizardlib/
CarSetupWizardLayout.java 498 int direction = TextUtils.getLayoutDirectionFromLocale(locale); local
499 setLayoutDirection(direction);
502 mToolbarTitle.setLayoutDirection(direction);
505 mPrimaryToolbarButton.setLayoutDirection(direction);
508 mSecondaryToolbarButton.setLayoutDirection(direction);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StrictMathTest.java 702 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; local
704 .nextAfter(start, direction));
705 final long directionBits = Double.doubleToLongBits(direction);
706 if (direction > start) {
709 } else if (direction < start) {
713 assertEquals("Result should be direction.", directionBits,
767 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; local
769 .nextAfter(start, direction));
770 if (direction > start) {
773 } else if (direction < start)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 86 WHERE_COMPLETED + " AND " + "(" + BluetoothShare.DIRECTION + " == "
90 WHERE_COMPLETED + " AND " + "(" + BluetoothShare.DIRECTION + " == "
126 public int direction; // to indicate sending or receiving field in class:BluetoothOppNotification.NotificationItem
266 final int directionIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION);
303 item.direction = dir;
304 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) {
306 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND) {
341 if (item.direction == BluetoothShare.DIRECTION_INBOUND) {
376 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) {
378 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListFragment.java 407 final int direction = AccessibilityUtil.isLayoutRtl(mStartNewConversationButton) ? -1 : 1; local
408 return getNormalizedFabAnimator().translationX(direction * fabWidthWithLeftRightMargin);
ConversationListSwipeHelper.java 319 final int direction = velocityX > 0 ? SWIPE_DIRECTION_RIGHT : SWIPE_DIRECTION_LEFT; local
320 animateDismiss(itemView, direction, velocityX);
370 && velocityX > 0 != translationX > 0) { // Right direction.
410 && (velocityX > 0) == (translationX > 0) // Right direction.
425 return (velocityX >= 0) == (translationX > 0) // Right direction.
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneServiceImpl.java 641 int direction = call.isIncoming() ? 1 : 0; local
658 index, direction, state, isPartOfConference, Log.piiHandle(address),
664 index, direction, state, 0, isPartOfConference, address, addressType);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
introspect.h 465 int direction; /**< This is a \link pa_direction_t enum, indicating the direction of this port. */ member in struct:pa_card_port_info
    [all...]
  /prebuilts/misc/common/droiddriver/
droiddriver-0.9.jar 

Completed in 602 milliseconds

1 2 3 4 5 67 8 91011>>