/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/ |
D | FloatConstant.java | 35 public FloatConstant(int textId, float value) { in FloatConstant() argument 36 this.mTextId = textId; in FloatConstant() 69 public void apply(WireBuffer buffer, int textId, float value) { in apply() argument 71 buffer.writeInt(textId); in apply() 77 int textId = buffer.readInt(); in read() local 80 operations.add(new FloatConstant(textId, value)); in read()
|
D | TextData.java | 35 public TextData(int textId, String text) { in TextData() argument 36 this.mTextId = textId; in TextData() 65 public void apply(WireBuffer buffer, int textId, String text) { in apply() argument 67 buffer.writeInt(textId); in apply() 73 int textId = buffer.readInt(); in read() local 76 operations.add(new TextData(textId, text)); in read()
|
D | DrawTextOnPath.java | 37 public DrawTextOnPath(int textId, int pathId, float hOffset, float vOffset) { in DrawTextOnPath() argument 39 mTextId = textId; in DrawTextOnPath() 61 int textId = buffer.readInt(); in read() local 65 DrawTextOnPath op = new DrawTextOnPath(textId, pathId, hOffset, vOffset); in read() 79 public void apply(WireBuffer buffer, int textId, int pathId, float hOffset, float vOffset) { in apply() argument 81 buffer.writeInt(textId); in apply()
|
D | TextMerge.java | 36 public TextMerge(int textId, int srcId1, int srcId2) { in TextMerge() argument 37 this.mTextId = textId; in TextMerge() 73 public void apply(WireBuffer buffer, int textId, int srcId1, int srcId2) { in apply() argument 75 buffer.writeInt(textId); in apply() 82 int textId = buffer.readInt(); in read() local 86 operations.add(new TextMerge(textId, srcId1, srcId2)); in read()
|
D | TextFromFloat.java | 52 public TextFromFloat(int textId, float value, short digitsBefore, in TextFromFloat() argument 54 this.mTextId = textId; in TextFromFloat() 136 public void apply(WireBuffer buffer, int textId, in apply() argument 140 buffer.writeInt(textId); in apply() 149 int textId = buffer.readInt(); in read() local 156 operations.add(new TextFromFloat(textId, value, pre, post, flags)); in read()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/viewbinder/ |
D | FooterViewBinder.kt | 86 viewModel.clearAllButton.labelId.collect { textId -> in <lambda>() method 87 footer.setClearAllButtonText(textId) in <lambda>() 92 viewModel.clearAllButton.accessibilityDescriptionId.collect { textId -> in <lambda>() method 93 footer.setClearAllButtonDescription(textId) in <lambda>() 133 viewModel.manageOrHistoryButton.labelId.collect { textId -> in <lambda>() method 134 footer.setManageOrHistoryButtonText(textId) in <lambda>() 139 viewModel.manageOrHistoryButton.accessibilityDescriptionId.collect { textId -> in <lambda>() method 140 footer.setManageOrHistoryButtonDescription(textId) in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | EmergencyButton.java | 118 int textId; in updateEmergencyCallButton() local 120 textId = com.android.internal.R.string.lockscreen_return_to_call; in updateEmergencyCallButton() 122 textId = com.android.internal.R.string.lockscreen_emergency_call; in updateEmergencyCallButton() 124 setText(textId); in updateEmergencyCallButton()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/ |
D | PaintContext.java | 69 public abstract void drawTextOnPath(int textId, int pathId, float hOffset, float vOffset); in drawTextOnPath() argument 81 public abstract void getTextBounds(int textId, in getTextBounds() argument 99 public abstract void drawTextRun(int textId, in drawTextRun() argument
|
D | RemoteComposeBuffer.java | 421 int textId = addText(text); in addDrawTextOnPath() local 422 DrawTextOnPath.COMPANION.apply(mBuffer, textId, pathId, hOffset, vOffset); in addDrawTextOnPath() 446 int textId = addText(text); in addDrawTextRun() local 448 mBuffer, textId, start, end, in addDrawTextRun() 465 public void addDrawTextRun(int textId, in addDrawTextRun() argument 474 mBuffer, textId, start, end, in addDrawTextRun() 505 int textId = addText(text); in drawTextAnchored() local 507 mBuffer, textId, in drawTextAnchored() 530 int textId = addText(id1 + "+" + id2); in textMerge() local 531 TextMerge.COMPANION.apply(mBuffer, textId, id1, id2); in textMerge() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/view/ |
D | FooterView.java | 149 public void setClearAllButtonText(@StringRes int textId) { in setClearAllButtonText() argument 151 if (mClearAllButtonTextId == textId) { in setClearAllButtonText() 154 mClearAllButtonTextId = textId; in setClearAllButtonText() 185 public void setManageOrHistoryButtonText(@StringRes int textId) { in setManageOrHistoryButtonText() argument 187 if (mManageOrHistoryButtonTextId == textId) { in setManageOrHistoryButtonText() 190 mManageOrHistoryButtonTextId = textId; in setManageOrHistoryButtonText()
|
/frameworks/base/core/java/android/app/ |
D | AlertDialog.java | 626 public Builder setPositiveButton(@StringRes int textId, final OnClickListener listener) { in setPositiveButton() argument 627 P.mPositiveButtonText = P.mContext.getText(textId); in setPositiveButton() 652 public Builder setNegativeButton(@StringRes int textId, final OnClickListener listener) { in setNegativeButton() argument 653 P.mNegativeButtonText = P.mContext.getText(textId); in setNegativeButton() 678 public Builder setNeutralButton(@StringRes int textId, final OnClickListener listener) { in setNeutralButton() argument 679 P.mNeutralButtonText = P.mContext.getText(textId); in setNeutralButton()
|
D | ApplicationPackageManager.java | 977 int textId = context.getResources().getIdentifier(APP_PERMISSION_BUTTON_ALLOW_ALWAYS, in getBackgroundPermissionOptionLabel() local 979 if (textId != 0) { in getBackgroundPermissionOptionLabel() 980 return context.getText(textId); in getBackgroundPermissionOptionLabel()
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/ |
D | TrackerActivity.java | 136 private void showConfirm(int textId, final Runnable onConfirmAction) { in showConfirm() argument 139 dialogBuilder.setMessage(textId); in showConfirm()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/player/platform/ |
D | AndroidPaintContext.java | 176 public void drawTextOnPath(int textId, in drawTextOnPath() argument 180 mCanvas.drawTextOnPath(getText(textId), getPath(pathId, 0, 1), hOffset, vOffset, mPaint); in drawTextOnPath() 184 public void getTextBounds(int textId, int start, int end, boolean monospace, float[] bounds) { in getTextBounds() argument 185 String str = getText(textId); in getTextBounds()
|
/frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/ |
D | CarrierActionUtils.java | 210 private static Notification getNotification(Context context, int titleId, int textId, in getNotification() argument 226 .setContentText(String.format(resources.getString(textId), spn)) in getNotification()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |