HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 251 - 275 of 672) sorted by null

<<11121314151617181920>>

  /system/core/sh/
histedit.c 227 int first, last, direction; local
369 direction = first < last ? H_PREV : H_NEXT;
396 for (;retval != -1; retval = history(hist, &he, direction)) {
  /external/chromium/chrome/browser/ui/gtk/
gtk_custom_menu_item.cc 388 GtkMenuDirectionType direction) {
391 switch (direction) {
417 GtkCustomMenuItem* menu_item, GtkMenuDirectionType direction) {
423 switch (direction) {
  /external/svox/pico/lib/
picopam.c 421 picoos_uint8 event_type, picoos_uint8 direction);
423 picoos_uint8 event_type, picoos_uint8 direction);
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 394 RefPtr<CSSValue> direction = m_mutableStyle->getPropertyCSSValue(CSSPropertyDirection); local
395 if (!direction || !direction->isPrimitiveValue())
398 writingDirection = static_cast<CSSPrimitiveValue*>(direction.get())->getIdent() == CSSValueLtr ? LeftToRightWritingDirection : RightToLeftWritingDirection;
658 // HTMLAttributeEquivalent::addToStyle doesn't support unicode-bidi and direction properties
668 // unicode-bidi and direction are pushed down separately so don't push down with other styles.
701 RefPtr<CSSValue> direction; local
704 direction = m_mutableStyle->getPropertyCSSValue(CSSPropertyDirection);
719 if (direction && direction->isPrimitiveValue()
    [all...]
  /external/webkit/Source/WebCore/notifications/
Notification.h 82 TextDirection direction() const { return dir() == "rtl" ? RTL : LTR; } function in class:WebCore::Notification
  /external/webkit/Source/WebCore/storage/
IDBObjectStore.h 78 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short direction, ExceptionCode&);
IDBObjectStoreBackendImpl.cpp 452 void IDBObjectStoreBackendImpl::openCursor(PassRefPtr<IDBKeyRange> prpRange, unsigned short direction, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
458 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::openCursorInternal, objectStore, range, direction, callbacks, transaction)))
464 IDBCursor::Direction direction = static_cast<IDBCursor::Direction>(tmpDirection); local
466 RefPtr<IDBBackingStore::Cursor> backingStoreCursor = objectStore->m_backingStore->openObjectStoreCursor(objectStore->m_databaseId, objectStore->id(), range.get(), direction);
472 RefPtr<IDBCursorBackendInterface> cursor = IDBCursorBackendImpl::create(backingStoreCursor.release(), direction, IDBCursorBackendInterface::ObjectStoreCursor, transaction.get(), objectStore.get());
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 91 virtual void takeFocus(bool direction);
  /frameworks/base/media/libstagefright/codecs/aacdec/
get_tns.cpp 103 pTnsFrameInfo->filt[]->direction = A flag is set for each TNS filter.
105 If the direction flag (on the bitstream) = 0, then the filter
108 If the direction flag (on the bitstream) = 1, then the filter
112 The value stored in filt[]->direction maps the values [0,1] to [1,-1] for
482 * pFilt->direction = [1,-1]
487 pFilt->direction = (-(Int)tempInt) | 0x1;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
dcac_prediction.cpp 32 int *direction
73 // int *direction; /* 0: HORIZONTAL, 1: VERTICAL */
100 /* Find the direction of prediction and the DC prediction */
139 *direction = 1;
168 *direction = 0;
244 // int *direction; /* 0: HORIZONTAL, 1: VERTICAL */
259 /* Find the direction of prediction and the DC prediction */
321 if (video->mblock->direction == 1)
  /frameworks/base/tools/aidl/
aidl.cpp 66 convert_direction(const char* direction)
68 if (direction == NULL) {
71 if (0 == strcmp(direction, "in")) {
74 if (0 == strcmp(direction, "out")) {
440 if (arg->direction.data == NULL
450 if (convert_direction(arg->direction.data) != IN_PARAMETER
456 arg->direction.data, arg->type.type.data,
464 m->type.array_token.lineno, index, arg->direction.data,
473 m->type.array_token.lineno, index, arg->direction.data,
  /system/core/adb/
usb_osx.c 342 UInt8 direction; local
344 kr = (*interface)->GetPipeProperties(interface, endpoint, &direction,
351 if (kUSBIn == direction)
354 if (kUSBOut == direction)
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 292 int direction, Rect previouslyFocusedRect) {
293 super.onFocusChanged(view, sourceText, focused, direction, previouslyFocusedRect);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/
options.css 70 direction: rtl;
  /external/icu4c/common/
usprep.cpp 691 UCharDirection direction=U_CHAR_DIRECTION_COUNT, firstCharDir=U_CHAR_DIRECTION_COUNT; local
771 direction = ubidi_getClass(profile->bdp, ch);
773 firstCharDir = direction;
775 if(direction == U_LEFT_TO_RIGHT){
779 if(direction == U_RIGHT_TO_LEFT || direction == U_RIGHT_TO_LEFT_ARABIC){
796 (direction == U_RIGHT_TO_LEFT || direction == U_RIGHT_TO_LEFT_ARABIC))
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 14 direction
165 -webkit-animation-direction
206 -webkit-box-direction
250 -webkit-marquee-direction
  /external/webkit/Source/WebCore/rendering/
InlineBox.h 259 // The logical width is our extent in the line's overall inline direction, i.e., width for horizontal text and height for vertical text.
263 // The logical height is our extent in the block flow direction, i.e., height for horizontal text and width for vertical text.
277 TextDirection direction() const { return m_bidiEmbeddingLevel % 2 ? RTL : LTR; } function in class:WebCore::InlineBox
278 bool isLeftToRightDirection() const { return direction() == LTR; }
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLUnderOver.cpp 246 int RenderMathMLUnderOver::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
250 return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 244 WebScrollDirection direction,
248 ScrollDirection webCoreScrollDirection = (ScrollDirection) direction;
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
MultiWaveView.java 203 // Read array of direction descriptions
207 throw new IllegalStateException("Must specify direction descriptions");
322 for (int direction = 0; direction < 4; direction++) {
325 final TargetDrawable icon = mChevronDrawables.get(direction*mFeedbackCount + count);
332 "x", new float[] { from[direction][0], to[direction][0] },
333 "y", new float[] { from[direction][1], to[direction][1] }
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
AccountUnlockScreen.java 129 protected boolean onRequestFocusInDescendants(int direction,
132 return mLogin.requestFocus(direction, previouslyFocusedRect);
  /packages/apps/Email/src/com/android/email/
Preferences.java 191 public void setAutoAdvanceDirection(int direction) {
192 mSharedPreferences.edit().putInt(AUTO_ADVANCE_DIRECTION, direction).apply();
  /external/webkit/Source/WebKit/efl/ewk/
ewk_frame.cpp 1525 WebCore::ScrollDirection direction; local
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java     [all...]

Completed in 582 milliseconds

<<11121314151617181920>>