HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 1 - 25 of 1223) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextDirection.h 33 inline bool isLeftToRightDirection(TextDirection direction) { return direction == LTR; }
  /frameworks/base/media/java/android/media/
IRemoteVolumeObserver.aidl 25 void dispatchRemoteVolumeUpdate(int direction, int value);
  /frameworks/base/graphics/java/android/graphics/
EmbossMaskFilter.java 23 * @param direction array of 3 scalars [x, y, z] specifying the direction of the light source
29 public EmbossMaskFilter(float[] direction, float ambient, float specular, float blurRadius) {
30 if (direction.length < 3) {
33 native_instance = nativeConstructor(direction, ambient, specular, blurRadius);
36 private static native int nativeConstructor(float[] direction, float ambient, float specular, float blurRadius);
  /external/chromium_org/ash/launcher/
launcher_navigator.h 17 // which should be activated next for the specified |direction|. Returns -1
20 CycleDirection direction);
  /external/chromium_org/content/public/common/
show_desktop_notification_params.cc 10 : is_html(false), direction(WebKit::WebTextDirectionDefault),
  /external/chromium_org/third_party/skia/src/animator/
SkDrawEmboss.cpp 16 SK_MEMBER_ARRAY(direction, Float),
26 direction.setCount(3);
30 if (radius < 0 || direction.count() !=3)
32 return SkBlurMaskFilter::CreateEmboss(direction.begin(), ambient, specular, radius);
  /external/skia/src/animator/
SkDrawEmboss.cpp 16 SK_MEMBER_ARRAY(direction, Float),
26 direction.setCount(3);
30 if (radius < 0 || direction.count() !=3)
32 return SkBlurMaskFilter::CreateEmboss(direction.begin(), ambient, specular, radius);
  /frameworks/base/core/java/android/view/
FocusFinderHelper.java 36 public boolean isBetterCandidate(int direction, Rect source, Rect rect1, Rect rect2) {
37 return mFocusFinder.isBetterCandidate(direction, source, rect1, rect2);
40 public boolean beamBeats(int direction, Rect source, Rect rect1, Rect rect2) {
41 return mFocusFinder.beamBeats(direction, source, rect1, rect2);
44 public boolean isCandidate(Rect srcRect, Rect destRect, int direction) {
45 return mFocusFinder.isCandidate(srcRect, destRect, direction);
48 public boolean beamsOverlap(int direction, Rect rect1, Rect rect2) {
49 return mFocusFinder.beamsOverlap(direction, rect1, rect2);
52 public static int majorAxisDistance(int direction, Rect source, Rect dest) {
53 return FocusFinder.majorAxisDistance(direction, source, dest)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
Gr1DKernelEffect.h 26 enum Direction {
32 Direction direction,
35 , fDirection(direction)
44 Direction direction() const { return fDirection; } function in class:Gr1DKernelEffect
48 Direction fDirection;
  /external/skia/src/gpu/effects/
Gr1DKernelEffect.h 26 enum Direction {
32 Direction direction,
35 , fDirection(direction)
44 Direction direction() const { return fDirection; } function in class:Gr1DKernelEffect
48 Direction fDirection;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursorWithValue.cpp 34 PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
36 return adoptRef(new IDBCursorWithValue(backend, direction, request, source, transaction));
39 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
40 : IDBCursor(backend, direction, request, source, transaction)
  /packages/apps/Launcher2/src/com/android/launcher2/
DragScroller.java 31 * @param direction The scroll direction
33 boolean onEnterScrollArea(int x, int y, int direction);
  /packages/apps/Launcher3/src/com/android/launcher3/
DragScroller.java 31 * @param direction The scroll direction
33 boolean onEnterScrollArea(int x, int y, int direction);
FolderAutoScrollHelper.java 50 public boolean canTargetScrollHorizontally(int direction) {
56 public boolean canTargetScrollVertically(int direction) {
57 return mTarget.canScrollVertically(direction);
  /device/samsung/manta/libsensors/iio/
events.h 51 * @direction: Direction of the event. One of enum iio_event_direction.
58 #define IIO_EVENT_CODE(chan_type, diff, modifier, direction, \
61 ((u64)direction << 48) | ((u64)modifier << 40) | \
67 #define IIO_EV_BIT(type, direction) \
68 (1 << (type*IIO_EV_DIR_MAX + direction))
76 * @direction: Direction of the event. One of enum iio_event_direction.
80 type, direction) \
81 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedShadowTreeWalker.cpp 61 Node* ComposedShadowTreeWalker::traverseChild(const Node* node, TraversalDirection direction) const
66 return shadow ? traverseLightChildren(shadow->youngestShadowRoot(), direction)
67 : traverseLightChildren(node, direction);
71 return traverseLightChildren(node, direction);
74 Node* ComposedShadowTreeWalker::traverseLightChildren(const Node* node, TraversalDirection direction)
77 return traverseSiblings(direction == TraversalDirectionForward ? node->firstChild() : node->lastChild(), direction);
80 Node* ComposedShadowTreeWalker::traverseSiblings(const Node* node, TraversalDirection direction)
82 for (const Node* sibling = node; sibling; sibling = (direction == TraversalDirectionForward ? sibling->nextSibling() : sibling->previousSibling())) {
83 if (Node* found = traverseNode(sibling, direction))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSReflectValue.h 39 static PassRefPtr<CSSReflectValue> create(PassRefPtr<CSSPrimitiveValue> direction,
42 return adoptRef(new CSSReflectValue(direction, offset, mask));
45 CSSPrimitiveValue* direction() const { return m_direction.get(); } function in class:WebCore::CSSReflectValue
57 CSSReflectValue(PassRefPtr<CSSPrimitiveValue> direction, PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
59 , m_direction(direction)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
SpotLightSource.h 33 const FloatPoint3D& direction, float specularExponent, float limitingConeAngle)
35 return adoptRef(new SpotLightSource(position, direction, specularExponent, limitingConeAngle));
39 const FloatPoint3D& direction() const { return m_direction; } function in class:WebCore::SpotLightSource
59 SpotLightSource(const FloatPoint3D& position, const FloatPoint3D& direction,
63 , m_direction(direction)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleMarqueeData.cpp 34 , direction(RenderStyle::initialMarqueeDirection())
44 , direction(o.direction)
50 return increment == o.increment && speed == o.speed && direction == o.direction &&
  /external/kernel-headers/original/asm-x86/
dma-mapping_32.h 22 enum dma_data_direction direction)
24 BUG_ON(!valid_dma_direction(direction));
32 enum dma_data_direction direction)
34 BUG_ON(!valid_dma_direction(direction));
39 enum dma_data_direction direction)
44 BUG_ON(!valid_dma_direction(direction));
59 size_t size, enum dma_data_direction direction)
61 BUG_ON(!valid_dma_direction(direction));
67 enum dma_data_direction direction)
69 BUG_ON(!valid_dma_direction(direction));
    [all...]
  /external/kernel-headers/original/asm-mips/
dma-mapping.h 20 enum dma_data_direction direction);
22 size_t size, enum dma_data_direction direction);
24 enum dma_data_direction direction);
26 unsigned long offset, size_t size, enum dma_data_direction direction);
28 size_t size, enum dma_data_direction direction);
30 int nhwentries, enum dma_data_direction direction);
32 size_t size, enum dma_data_direction direction);
34 dma_addr_t dma_handle, size_t size, enum dma_data_direction direction);
37 enum dma_data_direction direction);
40 enum dma_data_direction direction);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
DirectionalLight.java 44 * <code>DirectionalLight</code> is a light coming from a certain direction in world space.
48 * come from their direction regardless of where an object is placed.
52 protected Vector3f direction = new Vector3f(0f, -1f, 0f); field in class:DirectionalLight
60 * Returns the direction vector of the light.
62 * @return The direction vector of the light.
67 return direction;
71 * Sets the direction of the light.
73 * Represents the vector direction the light is coming from.
76 * @param dir the direction of the light.
79 direction.set(dir)
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
TransitionSliding.java 57 * @param direction direction shall be one of the supported directions like
64 int direction) {
66 switch (direction) {
74 throw new IllegalArgumentException("Invalid direction");
76 mSlidingDirection = direction;
80 * Get the sliding direction.
82 * @return The sliding direction
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 44 * <code>Ray</code> defines a line segment which has an origin and a direction.
46 * defined by the following equation: R(t) = origin + t*direction for t >= 0.
61 * The direction of the ray.
63 public Vector3f direction = new Vector3f(0, 0, 1); field in class:Ray
70 * origin is (0,0,0) and the direction is (0,0,1).
78 * direction are given.
80 * @param direction the direction the ray travels in.
82 public Ray(Vector3f origin, Vector3f direction) {
84 setDirection(direction);
    [all...]
  /bionic/libc/kernel/common/linux/netfilter/
xt_connbytes.h 42 u_int8_t direction; member in struct:xt_connbytes_info

Completed in 745 milliseconds

1 2 3 4 5 6 7 8 91011>>