HomeSort by relevance Sort by last modified time
    Searched refs:Direction (Results 51 - 75 of 81) sorted by null

1 23 4

  /sdk/traceview/src/com/android/traceview/
ProfileProvider.java 352 MethodData.Sorter.Direction direction = sorter.getDirection(); local
353 if (direction == MethodData.Sorter.Direction.INCREASING)
  /external/webkit/WebCore/platform/text/
StringImpl.h 172 WTF::Unicode::Direction defaultWritingDirection();
224 return c <= 0x7F ? WTF::isASCIISpace(c) : WTF::Unicode::direction(c) == WTF::Unicode::WhiteSpaceNeutral;
PlatformString.h 248 // Determines the writing direction using the Unicode Bidi Algorithm rules P2 and P3.
249 WTF::Unicode::Direction defaultWritingDirection() const { return m_impl ? m_impl->defaultWritingDirection() : WTF::Unicode::LeftToRight; }
StringImpl.cpp 908 WTF::Unicode::Direction StringImpl::defaultWritingDirection()
911 WTF::Unicode::Direction charDirection = WTF::Unicode::direction(m_data[i]);
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
Ctrl.c     [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
PowerMgr.c 238 tmRegParam.Direction = TRAFF_DOWN;
246 tmRegParam.Direction = TRAFF_UP;
283 tmRegParam.Direction = TRAFF_UP;
289 tmRegParam.Direction = TRAFF_DOWN;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/PowerMgr/
PowerMgr.c 254 tmRegParam.Direction = TRAFF_DOWN;
262 tmRegParam.Direction = TRAFF_UP;
301 tmRegParam.Direction = TRAFF_UP;
307 tmRegParam.Direction = TRAFF_DOWN;
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
Ctrl.c     [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
PowerMgr.c 238 tmRegParam.Direction = TRAFF_DOWN;
246 tmRegParam.Direction = TRAFF_UP;
283 tmRegParam.Direction = TRAFF_UP;
289 tmRegParam.Direction = TRAFF_DOWN;
    [all...]
  /external/webkit/WebKit/android/nav/
CachedFrame.cpp 51 bool CachedFrame::CheckBetween(Direction direction, const WebCore::IntRect& bestRect,
55 if (direction & UP_DOWN) {
56 top = direction == UP ? bestRect.bottom() : prior.bottom();
57 int bottom = direction == UP ? prior.y() : bestRect.y();
71 left = direction == LEFT ? bestRect.right() : prior.right();
72 int right = direction == LEFT ? prior.x() : bestRect.x();
90 bool CachedFrame::checkBetween(BestData* best, Direction direction)
96 int index = direction;
    [all...]
CachedRoot.cpp 684 bool CachedRoot::adjustForScroll(BestData* best, CachedFrame::Direction direction,
695 checkBetween(best, direction))
698 innerMove(document(), best, direction, scrollPtr, false); local
704 bool newNodeInView = scrollDelta(newOutset, direction, &delta);
707 *scrollPtr = WebCore::IntPoint(direction & UP_DOWN ? 0 : delta,
708 direction & UP_DOWN ? delta : 0);
    [all...]
SelectText.cpp 80 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); } function in class:WebCore::TextRunIterator
    [all...]
WebView.cpp 640 static CachedFrame::Direction KeyToDirection(int32_t keyCode)
689 CachedFrame::Direction direction = KeyToDirection(keyCode); local
708 cachedNode = root->moveCursor(direction, &cachedFrame, &scroll);
755 result = direction == CachedFrame::LEFT ? dx >= 0 :
756 direction == CachedFrame::RIGHT ? dx <= 0 :
757 direction == CachedFrame::UP ? dy >= 0 : dy <= 0;
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 205 // LineBackgroundSpans know nothing about the alignment or direction of
301 // to the paragraph direction of the line.
530 * the paragraph's primary direction.
539 * the direction other than the paragraph's primary direction.
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp 62 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); } function in class:WebCore::TextRunIterator
347 WTF::Unicode::Direction paragraphDirection = run.ltr() ? WTF::Unicode::LeftToRight : WTF::Unicode::RightToLeft;
  /external/webkit/WebKit/android/jni/
WebViewCore.h 552 void doMaxScroll(CacheBuilder::Direction dir);
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 317 Path.Direction.CW);
416 ringPath.addOval(bounds, Path.Direction.CW);
417 ringPath.addOval(innerBounds, Path.Direction.CCW);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java     [all...]
CanvasTest.java 35 import android.graphics.Path.Direction;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/
Ctrl.c     [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksPage.java 485 path.addRoundRect(rect, 8f, 8f, Path.Direction.CW);
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 282 Path.Direction.CW);
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 382 p.addCircle(width / 2F, height / 2F, width / 2F, Path.Direction.CW);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarView.java 35 import android.graphics.Path.Direction;
2728 int direction = (distanceX > 0) ? 1 : -1; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderBlockLineLayout.cpp 59 bool leftSide = (child->style()->direction() == LTR) ? !endOfInline : endOfInline;
274 isOnlyRun = ((style()->direction() == RTL) ? lastRun : firstRun)->m_object->isListMarker();
388 // The direction of the block should determine what happens with wide lines. In
390 if (style()->direction() == LTR) {
412 if (style()->direction() == LTR) {
419 // Wide lines spill out of the block based off direction.
420 // So even if text-align is right, if direction is LTR, wide lines should overflow out of the right
422 if (style()->direction() == LTR) {
445 if (style()->direction() == LTR)
574 int dir = style()->direction();
809 TextDirection direction = style()->direction(); local
1103 Direction direction = ltr ? LeftToRight : RightToLeft; variable
    [all...]

Completed in 535 milliseconds

1 23 4