OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isLayoutRtl
(Results
26 - 50
of
81
) sorted by null
1
2
3
4
/packages/apps/Messaging/src/com/android/messaging/util/
AccessibilityUtil.java
103
public static boolean
isLayoutRtl
(final View view) {
/frameworks/base/core/java/android/widget/
GridView.java
327
final boolean
isLayoutRtl
=
isLayoutRtl
();
332
if (
isLayoutRtl
) {
348
nextLeft += (
isLayoutRtl
? -1 : +1) * deltaLeft;
359
final int nextChildDir =
isLayoutRtl
? -1 : +1;
[
all
...]
RelativeLayout.java
447
if (
isLayoutRtl
() && myWidth == -1) {
485
if (
isLayoutRtl
()) {
626
if (
isLayoutRtl
()) {
[
all
...]
Switch.java
[
all
...]
AbsSeekBar.java
629
final int left = (
isLayoutRtl
() && mMirrorForRtl) ? available - thumbPos : thumbPos;
826
if (
isLayoutRtl
() && mMirrorForRtl) {
896
increment =
isLayoutRtl
() ? -increment : increment;
[
all
...]
LinearLayout.java
400
final boolean
isLayoutRtl
=
isLayoutRtl
();
407
if (
isLayoutRtl
) {
421
if (
isLayoutRtl
) {
428
if (
isLayoutRtl
) {
[
all
...]
HorizontalScrollView.java
[
all
...]
SearchView.java
[
all
...]
DayPickerView.java
216
if (
isLayoutRtl
()) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java
317
final boolean
isLayoutRtl
= ViewUtils.
isLayoutRtl
(this);
325
if (
isLayoutRtl
) {
339
if (
isLayoutRtl
) {
346
if (
isLayoutRtl
) {
[
all
...]
SwitchCompat.java
[
all
...]
AppCompatSpinner.java
739
hOffset = ViewUtils.
isLayoutRtl
(AppCompatSpinner.this) ? mTempRect.right
763
if (ViewUtils.
isLayoutRtl
(AppCompatSpinner.this)) {
/packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java
359
final boolean
isLayoutRtl
=
isLayoutRtl
();
367
if (
isLayoutRtl
) {
381
if (
isLayoutRtl
) {
388
if (
isLayoutRtl
) {
[
all
...]
/frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListItemView.java
596
final boolean
isLayoutRtl
= ViewUtil.isViewLayoutRtl(this);
605
isLayoutRtl
? rightBound - mHeaderWidth : leftBound,
607
isLayoutRtl
? rightBound : leftBound + mHeaderWidth,
610
if (
isLayoutRtl
) {
621
if (
isLayoutRtl
) {
690
if (!
isLayoutRtl
) {
762
if (
isLayoutRtl
) {
[
all
...]
/frameworks/base/core/java/android/view/
FocusFinder.java
135
if (root.
isLayoutRtl
()) {
147
if (root.
isLayoutRtl
()) {
178
mSequentialFocusComparator.setIsLayoutRtl(root.
isLayoutRtl
());
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PseudoGridView.java
106
boolean isRtl =
isLayoutRtl
();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationContentView.java
233
contractedHeader.
isLayoutRtl
()
237
contractedHeader.
isLayoutRtl
()
248
contractedHeader.
isLayoutRtl
()
252
contractedHeader.
isLayoutRtl
()
[
all
...]
NotificationSettingsIconRow.java
252
final boolean isRtl = mParent.
isLayoutRtl
();
/frameworks/base/core/java/com/android/internal/widget/
ViewPager.java
572
if (
isLayoutRtl
()) {
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java
347
boolean
isLayoutRtl
= animView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
354
&&
isLayoutRtl
;
/frameworks/support/core-ui/java/android/support/v4/widget/
ExploreByTouchHelper.java
383
final boolean
isLayoutRtl
=
386
SPARSE_VALUES_ADAPTER, NODE_ADAPTER, focusedNode, direction,
isLayoutRtl
,
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java
109
final boolean
isLayoutRtl
= Utilities.isRtl(v.getResources());
114
pageCount,
isLayoutRtl
);
/prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar
/packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java
454
final boolean
isLayoutRtl
= DialerUtils.isRtl();
457
isLayoutRtl
? R.anim.dialpad_slide_in_left : R.anim.dialpad_slide_in_right);
459
isLayoutRtl
? R.anim.dialpad_slide_out_left : R.anim.dialpad_slide_out_right);
[
all
...]
Completed in 1719 milliseconds
1
2
3
4