Home
last modified time | relevance | path

Searched refs:mLayoutType (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/java/android/hardware/input/
H A DVirtualKeyboardConfig.java46 private final String mLayoutType; field in VirtualKeyboardConfig
65 mLayoutType = builder.mLayoutType; in VirtualKeyboardConfig()
71 mLayoutType = in.readString8(); in VirtualKeyboardConfig()
87 return mLayoutType; in getLayoutType()
99 dest.writeString8(mLayoutType); in writeToParcel()
109 private String mLayoutType = DEFAULT_LAYOUT_TYPE; field in VirtualKeyboardConfig.Builder
155 mLayoutType = layoutType; in setLayoutType()
H A DKeyboardLayout.java71 private final LayoutType mLayoutType; field in KeyboardLayout
153 mLayoutType = LayoutType.of(layoutValue); in KeyboardLayout()
164 mLayoutType = LayoutType.of(source.readInt()); in KeyboardLayout()
212 return mLayoutType.getName(); in getLayoutType()
245 dest.writeInt(mLayoutType.getValue()); in writeToParcel()
256 result = Integer.compare(mLayoutType.mValue, another.mLayoutType.mValue); in compareTo()
274 + ", layout type: " + mLayoutType.getName() in toString()
/aosp14/frameworks/base/core/java/android/app/search/
H A DSearchTarget.java118 private final String mLayoutType; field in SearchTarget
148 mLayoutType = parcel.readString(); in SearchTarget()
177 mLayoutType = Objects.requireNonNull(layoutType); in SearchTarget()
203 return mLayoutType; in getLayoutType()
311 parcel.writeString(mLayoutType); in writeToParcel()
349 private String mLayoutType; field in SearchTarget.Builder
375 mLayoutType = Objects.requireNonNull(layoutType); in Builder()
501 return new SearchTarget(mResultType, mLayoutType, mId, mParentId, mScore, mHidden, in build()