Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 5 of 5) sorted by relevance

/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DAlertController.java162 public void handleMessage(Message msg) { in handleMessage() argument
163 switch (msg.what) { in handleMessage()
168 ((DialogInterface.OnClickListener) msg.obj).onClick(mDialog.get(), msg.what); in handleMessage()
172 ((DialogInterface) msg.obj).dismiss(); in handleMessage()
323 DialogInterface.OnClickListener listener, Message msg, Drawable icon) { in setButton() argument
325 if (msg == null && listener != null) { in setButton()
326 msg = mHandler.obtainMessage(whichButton, listener); in setButton()
333 mButtonPositiveMessage = msg; in setButton()
339 mButtonNegativeMessage = msg; in setButton()
345 mButtonNeutralMessage = msg; in setButton()
DAlertDialog.java210 public void setButton(int whichButton, CharSequence text, Message msg) { in setButton() argument
211 mAlert.setButton(whichButton, text, null, msg, null); in setButton()
/appcompat/integration-tests/receive-content-testapp/src/main/java/androidx/appcompat/demo/receivecontent/
DMyReceiver.java138 String msg = "Content of type " + mimeType + " (" + lengthBytes + " bytes): " + uri; in showMessage() local
139 Log.i(Logcat.TAG, msg); in showMessage()
141 Toast.makeText(applicationContext, msg, Toast.LENGTH_LONG).show(); in showMessage()
/appcompat/appcompat/src/androidTest/java/androidx/appcompat/widget/
DAppCompatTextViewTest.java1044 final String msg = "Expected 3em character is " + testCase.expected3EMChar in testFontWeight() local
1046 assertEquals(msg, testCase.expected3EMChar, actual3EMChar); in testFontWeight()
1060 final String msg = "Expected 3em character is 'g' but actual 3em character is " + actual; in testFontWeight_styleConflict() local
1061 assertEquals(msg, 'g', find3EmChar(tv.getPaint())); in testFontWeight_styleConflict()
1074 final String msg = "Expected 3em character is 'h' but actual 3em character is " + actual; in testFontWeight_styleConflict_italic_preserve() local
1075 assertEquals(msg, 'h', find3EmChar(tv.getPaint())); in testFontWeight_styleConflict_italic_preserve()
/appcompat/appcompat/api/
Dapi_lint.ignore195 Missing nullability on parameter `msg` in method `setButton`