Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 1658) sorted by relevance

12345678910>>...67

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
DCapsModeUtilsTests.java50 final int w = TextUtils.CAP_MODE_WORDS; in allPathsForCaps() local
52 onePathForCaps(cs, expectedResult, c | w | s, sp, hasSpaceBefore); in allPathsForCaps()
53 onePathForCaps(cs, expectedResult, w | s, sp, hasSpaceBefore); in allPathsForCaps()
55 onePathForCaps(cs, expectedResult, c | w, sp, hasSpaceBefore); in allPathsForCaps()
57 onePathForCaps(cs, expectedResult, w, sp, hasSpaceBefore); in allPathsForCaps()
64 final int w = TextUtils.CAP_MODE_WORDS; in testGetCapsMode() local
74 allPathsForCaps("", c | w | s, sp, false); in testGetCapsMode()
77 allPathsForCaps("Word ", c | w, sp, false); in testGetCapsMode()
78 allPathsForCaps("Word. ", c | w | s, sp, false); in testGetCapsMode()
80 allPathsForCaps("Word.. ", c | w | s, sp, false); in testGetCapsMode()
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_utilities.cpp23 float** db_SetupImageReferences_f(float *im,int w,int h) in db_SetupImageReferences_f() argument
31 img[i]=im+w*i; in db_SetupImageReferences_f()
36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h) in db_SetupImageReferences_u() argument
46 img[i]=im+w*i; in db_SetupImageReferences_u()
50 float** db_AllocImage_f(int w,int h,int over_allocation) in db_AllocImage_f() argument
54 im=new float [w*h+over_allocation]; in db_AllocImage_f()
55 img=db_SetupImageReferences_f(im,w,h); in db_AllocImage_f()
60 unsigned char** db_AllocImage_u(int w,int h,int over_allocation) in db_AllocImage_u() argument
64 im=new unsigned char [w*h+over_allocation]; in db_AllocImage_u()
65 img=db_SetupImageReferences_u(im,w,h); in db_AllocImage_u()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetService.java178 Log.w(TAG, "stop() called before start()"); in stop()
233 Log.w(TAG, "cleanup() called before create()"); in cleanup()
327 Log.w(TAG, "mHeadsetReceiver, action is null");
395 Log.w(TAG, "Unknown action " + action);
419 Log.w(TAG, "Headset call not allowed for non-active user"); in getService()
423 Log.w(TAG, "Service is null"); in getService()
427 Log.w(TAG, "Service is not alive"); in getService()
665 Log.w(TAG, "getHeadsetService(): service is NULL"); in getHeadsetService()
669 Log.w(TAG, "getHeadsetService(): service is not available"); in getHeadsetService()
684 Log.w(TAG, "connect: PRIORITY_OFF, device=" + device + ", " + Utils.getUidPidString()); in connect()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
DStateView.java138 float w = canvas.getWidth(); in onDraw() local
144 drawHorizontalPath(w, h, r, d); in onDraw()
147 drawVerticalDownPath(w, h, r, d); in onDraw()
149 drawVerticalPath(w, h, r, d); in onDraw()
168 private void drawHorizontalPath(float w, float h, float r, float d) { in drawHorizontalPath() argument
170 mPath.moveTo(w, 0); in drawHorizontalPath()
181 mPath.lineTo(w, h); in drawHorizontalPath()
183 mPath.lineTo(w, r + d + r); in drawHorizontalPath()
184 mPath.lineTo(w - d, r + d); in drawHorizontalPath()
185 mPath.lineTo(w, r); in drawHorizontalPath()
[all …]
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DBluetoothHeadsetFragment.java192 Log.w(TAG, "Device null when trying to connect sco!"); in connect()
198 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice); in connect()
206 Log.w(TAG, "Device null when trying to connect sco!"); in disconnect()
212 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice); in disconnect()
220 Log.w(TAG, "Device null when trying to connect sco!"); in connectSco()
226 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice); in connectSco()
234 Log.w(TAG, "Device null when trying to disconnect sco!"); in disconnectSco()
239 Log.w(TAG, "HFP Profile proxy not available, cannot disconnect sco to " + in disconnectSco()
248 Log.w(TAG, "Device null when trying to put the call on hold!"); in holdCall()
253 Log.w(TAG, "HFP Profile proxy not available, cannot put the call on hold " + in holdCall()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAppParams.java235 Log.w(TAG, "MAX_LIST_COUNT: Wrong length received: " + tagLength in parseParams()
243 Log.w(TAG, in parseParams()
252 Log.w(TAG, "FILTER_MESSAGE_TYPE: Wrong length received: " + tagLength in parseParams()
262 Log.w(TAG, "FILTER_PERIOD_BEGIN: Wrong length received: " + tagLength in parseParams()
270 Log.w(TAG, "FILTER_PERIOD_END: Wrong length received: " + tagLength in parseParams()
276 Log.w(TAG, "FILTER_READ_STATUS: Wrong length received: " + tagLength in parseParams()
286 Log.w(TAG, "FILTER_RECIPIENT: Wrong length received: " + tagLength in parseParams()
294 Log.w(TAG, "FILTER_ORIGINATOR: Wrong length received: " + tagLength in parseParams()
300 Log.w(TAG, "FILTER_PRIORITY: Wrong length received: " + tagLength in parseParams()
308 Log.w(TAG, "ATTACHMENT: Wrong length received: " + tagLength + " expected: " in parseParams()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DBitmapUtil.java47 public static Bitmap decodeByteArray(byte[] src, int w, int h) { in decodeByteArray() argument
56 opts.inSampleSize = Math.min(opts.outWidth / w, opts.outHeight / h); in decodeByteArray()
60 LogUtils.w(TAG, t, "BitmapUtils unable to decode image"); in decodeByteArray()
74 public static Bitmap decodeByteArrayWithCenterCrop(byte[] src, int w, int h) { in decodeByteArrayWithCenterCrop() argument
76 final Bitmap decoded = decodeByteArray(src, w, h); in decodeByteArrayWithCenterCrop()
77 return centerCrop(decoded, w, h); in decodeByteArrayWithCenterCrop()
80 LogUtils.w(TAG, t, "BitmapUtils unable to crop image"); in decodeByteArrayWithCenterCrop()
96 public static Bitmap centerCrop(final Bitmap src, final int w, final int h) { in centerCrop() argument
97 return crop(src, w, h, 0.5f, 0.5f); in centerCrop()
131 public static Bitmap crop(final Bitmap src, final int w, final int h, in crop() argument
[all …]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DBlobCache.java198 Log.w(TAG, "cannot read header"); in loadIndex()
203 Log.w(TAG, "cannot read header magic"); in loadIndex()
208 Log.w(TAG, "version mismatch"); in loadIndex()
220 Log.w(TAG, "header checksum does not match"); in loadIndex()
226 Log.w(TAG, "invalid max entries"); in loadIndex()
230 Log.w(TAG, "invalid max bytes"); in loadIndex()
234 Log.w(TAG, "invalid active region"); in loadIndex()
238 Log.w(TAG, "invalid active entries"); in loadIndex()
242 Log.w(TAG, "invalid active bytes"); in loadIndex()
247 Log.w(TAG, "invalid index file length"); in loadIndex()
[all …]
/packages/apps/DocumentsUI/tests/res/raw/
Dimages_tar9 d�q�s����7���w@>��/��.�&�����Zxe�O�?�&�T7�������%�Ą�&� G�
19 …zKI܎��k� \�x:S�8X �&�a5�O :�ڃ�/�=�N�Z���S�=���D)p幬�=�64װ"�[I�T��w��#1S�(�,o�.� ���wT…
27 A�4�P]X߸͒x�6w#<[���Kט&g፿n|o��� ��ºϺ�4����Y����J@��B0-n�M�b˄�vu���>E�㖳a�p�}���oE����c…
29 …i%Xl�:��C�M�� �����y�ݭh��t���yE��@#gw���� �cr��?#�P�֬,`���/��7\ձ]&%����w'�š����b��~�@`�W��
30 …@j<Z�:� ���4)t����̷nW(�}�� {�s��O�!86����9�EG�A��5��n@υ6����!x�:X16wмX��f]�t�ﱲ�"џ*F�8��9�…
35 …J`3S������}�� �7��jz�ս�'��ߋ�p�g�j�������*�9T�\���j�wZ9��ǻP���{~8ج&z��ᝪw�V���7��������?�B…
41 �Zko�#�2�eOV0� �n��<��`mA��^�P1("=>�$B"�1$���v%�ʦ��F~ o�_$(��:QcG<Pm�w֥�A�:��d��rV�����7
42 +�&�2�o��� =ĽN��vd7���z�bp��i����`>j-_�~�$�z:���'��<WMfv��w�XB������� ��:�J�R�^�6 �h�…
58 +��!��G4h�8a���Y��4�{#���E���w��,����� %eg�K+��?��>����ή*��x�</8w� ����??m���I���:�?H&…
59 …�_Ԗ-(����*q�=`̻-�N��O��4����4�����3��4�\=�]z1�� h��7�l~;A x�ŋuޝ��h��Goj��p�� zw�h*#y
[all …]
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java147 Log.w(TAG, "Error calling NoMan", e); in getNotificationsBanned()
163 Log.w(TAG, "Error calling NoMan", e); in setNotificationsEnabledForPackage()
172 Log.w(TAG, "Error calling NoMan", e); in canShowBadge()
182 Log.w(TAG, "Error calling NoMan", e); in setShowBadge()
191 Log.w(TAG, "Error calling NoMan", e); in canBubble()
201 Log.w(TAG, "Error calling NoMan", e); in setAllowBubbles()
214 Log.w(TAG, "Error calling NoMan", e); in getChannel()
226 Log.w(TAG, "Error calling NoMan", e); in getGroup()
235 Log.w(TAG, "Error calling NoMan", e); in getGroups()
248 Log.w(TAG, "Error calling NoMan", e); in getNotificationChannelsBypassingDnd()
[all …]
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DNotificationBackend.java139 Log.w(TAG, "Error calling NoMan", e); in getNotificationsBanned()
155 Log.w(TAG, "Error calling NoMan", e); in setNotificationsEnabledForPackage()
164 Log.w(TAG, "Error calling NoMan", e); in canShowBadge()
174 Log.w(TAG, "Error calling NoMan", e); in setShowBadge()
183 Log.w(TAG, "Error calling NoMan", e); in canBubble()
193 Log.w(TAG, "Error calling NoMan", e); in setAllowBubbles()
206 Log.w(TAG, "Error calling NoMan", e); in getChannel()
218 Log.w(TAG, "Error calling NoMan", e); in getGroup()
227 Log.w(TAG, "Error calling NoMan", e); in getGroups()
240 Log.w(TAG, "Error calling NoMan", e); in getNotificationChannelsBypassingDnd()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java61 Log.w(this, "answerCall, unknown call id: %s", callId); in answerCall()
84 Log.w(this, "deflectCall, unknown call id: %s", callId); in deflectCall()
117 Log.w(this, "setRingback, unknown call id: %s", callId); in rejectCall()
140 Log.w(this, "playDtmfTone, unknown call id: %s", callId); in playDtmfTone()
163 Log.w(this, "stopDtmfTone, unknown call id: %s", callId); in stopDtmfTone()
186 Log.w(this, "postDialContinue, unknown call id: %s", callId); in postDialContinue()
209 Log.w(this, "disconnectCall, unknown call id: %s", callId); in disconnectCall()
231 Log.w(this, "holdCall, unknown call id: %s", callId); in holdCall()
253 Log.w(this, "unholdCall, unknown call id: %s", callId); in unholdCall()
276 Log.w(this, "phoneAccountSelected, unknown call id: %s", callId); in phoneAccountSelected()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DNativeInterface.java98 Log.w(TAG, "Ignoring message because service not available: " + event); in onConnectionStateChanged()
113 Log.w(TAG, "onAudioStateChanged: Ignoring message because service not available: " in onAudioStateChanged()
130 Log.w(TAG, in onVrStateChanged()
147 Log.w(TAG, in onNetworkState()
164 Log.w(TAG, in onNetworkRoaming()
180 Log.w(TAG, "onNetworkSignal: Ignoring message because service not available: " + event); in onNetworkSignal()
195 Log.w(TAG, "onBatteryLevel: Ignoring message because service not available: " + event); in onBatteryLevel()
210 Log.w(TAG, in onCurrentOperator()
226 Log.w(TAG, "onCall: Ignoring message because service not available: " + event); in onCall()
251 Log.w(TAG, "onCallSetup: Ignoring message because service not available: " + event); in onCallSetup()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
DHistogramView.java45 int w = bitmap.getWidth(); in doInBackground() local
47 int[] pixels = new int[w * h]; in doInBackground()
48 bitmap.getPixels(pixels, 0, w, 0, 0, w, h); in doInBackground()
49 for (int i = 0; i < w; i++) { in doInBackground()
51 int index = j * w + i; in doInBackground()
88 float w = getWidth(); // - Spline.curveHandleSize(); in drawHistogram() local
91 float wl = w / histogram.length; in drawHistogram()
101 canvas.drawRect(dx, 0, dx + w, h, mPaint); in drawHistogram()
102 canvas.drawLine(dx + w / 3, 0, dx + w / 3, h, mPaint); in drawHistogram()
103 canvas.drawLine(dx + 2 * w / 3, 0, dx + 2 * w / 3, h, mPaint); in drawHistogram()
[all …]
/packages/apps/Email/provider_src/com/android/email/provider/
DDBHelper.java694 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from <v5"); in upgradeBodyToVersion5()
705 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from v5 to v6"); in upgradeBodyFromVersion5ToVersion6()
715 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from v6 to v8"); in upgradeBodyFromVersion6ToVersion8()
752 final FileWriter w = new FileWriter(htmlFile); in upgradeBodyFromVersion100ToVersion101() local
754 w.write(htmlString); in upgradeBodyFromVersion100ToVersion101()
756 w.close(); in upgradeBodyFromVersion100ToVersion101()
767 final FileWriter w = new FileWriter(textFile); in upgradeBodyFromVersion100ToVersion101() local
769 w.write(textString); in upgradeBodyFromVersion100ToVersion101()
771 w.close(); in upgradeBodyFromVersion100ToVersion101()
784 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from v100 to v101"); in upgradeBodyFromVersion100ToVersion101()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
DImageLoader.java149 Log.w(LOGTAG, "Failed to read EXIF orientation", e); in getMetadataOrientation()
156 Log.w(LOGTAG, "Failed to close InputStream", e); in getMetadataOrientation()
207 int w = bitmap.getWidth(); in orientBitmap() local
213 int tmp = w; in orientBitmap()
214 w = h; in orientBitmap()
219 matrix.setRotate(90, w / 2f, h / 2f); in orientBitmap()
222 matrix.setRotate(180, w / 2f, h / 2f); in orientBitmap()
225 matrix.setRotate(270, w / 2f, h / 2f); in orientBitmap()
234 matrix.setRotate(90, w / 2f, h / 2f); in orientBitmap()
238 matrix.setRotate(270, w / 2f, h / 2f); in orientBitmap()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DPhotoFallbackEffect.java94 int w = entry.texture.getWidth(); in drawEntry() local
113 if (w > h) { in drawEntry()
116 mSource.set((w - h) / 2, 0, (w + h) / 2, h); in drawEntry()
124 mSource.set(0, 0, (w - h) / 2, h); in drawEntry()
129 mSource.set((w + h) / 2, 0, w, h); in drawEntry()
136 mSource.set(0, (h - w) / 2, w, (h + w) / 2); in drawEntry()
144 mSource.set(0, 0, w, (h - w) / 2); in drawEntry()
149 mSource.set(0, (w + h) / 2, w, h); in drawEntry()
/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
DDrmConvertSession.java57 Log.w(TAG, "Conversion of Mimetype: " + mimeType in open()
60 Log.w(TAG, "Could not access Open DrmFramework.", e); in open()
63 Log.w(TAG, in open()
66 Log.w(TAG, "DrmManagerClient didn't initialize properly."); in open()
104 Log.w(TAG, "Buffer with data to convert is illegal. Convertsession: " in convert()
107 Log.w(TAG, "Could not convert data. Convertsession: " + in convert()
145 Log.w(TAG, "File: " + filename + " could not be found.", e); in close()
148 Log.w(TAG, "Could not access File: " + filename + " .", e); in close()
151 Log.w(TAG, "Could not open file in mode: rw", e); in close()
153 Log.w(TAG, "Access to File: " + filename + in close()
[all …]
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
DTaskJpegEncode.java102 final int w = img.getWidth(); in convertYUV420ImageToPackedNV21() local
112 final int data_offset = w * h; in convertYUV420ImageToPackedNV21()
134 final int w, final int h) { in dummyConvertYUV420ImageToPackedNV21() argument
135 final int y_size = w * h; in dummyConvertYUV420ImageToPackedNV21()
136 final int data_offset = w * h; in dummyConvertYUV420ImageToPackedNV21()
139 dataCopy[i] = (byte) ((((i % w) * 255) / w) & 255); in dummyConvertYUV420ImageToPackedNV21()
144 for (int j = 0; j < w / 2; j++) { in dummyConvertYUV420ImageToPackedNV21()
145 int offset = data_offset + w * i + j * 2; in dummyConvertYUV420ImageToPackedNV21()
147 dataCopy[offset + 1] = (byte) ((255 * j) / (w / 2) & 255); in dummyConvertYUV420ImageToPackedNV21()
163 public byte[] convertNv21toJpeg(byte[] data_copy, int w, int h, int[] strides) { in convertNv21toJpeg() argument
[all …]
/packages/apps/Contacts/src/com/android/contacts/widget/
DInterpolatingLayout.java159 int w = (int) (parentSize * widthMultiplier) + widthConstant; in resolveWidth() local
160 return w <= 0 ? WRAP_CONTENT : w; in resolveWidth()
168 int w = (int) (parentSize * leftMarginMultiplier) + leftMarginConstant; in resolveLeftMargin() local
169 return w < 0 ? 0 : w; in resolveLeftMargin()
174 int w = (int) (parentSize * leftPaddingMultiplier) + leftPaddingConstant; in resolveLeftPadding() local
175 return w < 0 ? 0 : w; in resolveLeftPadding()
182 int w = (int) (parentSize * rightMarginMultiplier) + rightMarginConstant; in resolveRightMargin() local
183 return w < 0 ? 0 : w; in resolveRightMargin()
188 int w = (int) (parentSize * rightPaddingMultiplier) + rightPaddingConstant; in resolveRightPadding() local
189 return w < 0 ? 0 : w; in resolveRightPadding()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
DColorSVRectView.java95 int w = mBitmap.getWidth(); in fillBitmap() local
97 int[] buff = new int[w * h]; in fillBitmap()
100 for (int i = 0; i < w * h; i++) { in fillBitmap()
101 float sat = (i % w) / (float) w; in fillBitmap()
102 float val = (w - i / w) / (float) w; in fillBitmap()
107 mBitmap.setPixels(buff, 0, w, 0, 0, w, h); in fillBitmap()
168 protected void onSizeChanged(int w, int h, int oldw, int oldh) { in onSizeChanged() argument
169 mWidth = w; in onSizeChanged()
172 mCtrX = w / 2f; in onSizeChanged()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DWordProperty.java153 public int compareTo(final WordProperty w) { in compareTo() argument
154 if (getProbability() < w.getProbability()) return 1; in compareTo()
155 if (getProbability() > w.getProbability()) return -1; in compareTo()
156 return mWord.compareTo(w.mWord); in compareTo()
169 WordProperty w = (WordProperty)o; in equals()
170 return mProbabilityInfo.equals(w.mProbabilityInfo) in equals()
171 && mWord.equals(w.mWord) && equals(mNgrams, w.mNgrams) in equals()
172 && mIsNotAWord == w.mIsNotAWord && mIsPossiblyOffensive == w.mIsPossiblyOffensive in equals()
173 && mHasNgrams == w.mHasNgrams; in equals()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DAdapterService.java460 Log.w(TAG, "Unable to resolve SystemUI's UID.", e); in onCreate()
534 Log.w(TAG, "RemoteException trying to send a reset to BatteryStats"); in bringUpBle()
827 Log.w(TAG, "enable() - Not allowed for non-active user and non system user"); in enable()
840 Log.w(TAG, "enableNoAuto() - Not allowed for non-active user and non system user"); in enableNoAutoConnect()
854 Log.w(TAG, "disable() - Not allowed for non-active user and non system user"); in disable()
869 Log.w(TAG, "getAddress() - Not allowed for non-active user and non system user"); in getAddress()
883 Log.w(TAG, "getUuids() - Not allowed for non-active user"); in getUuids()
897 Log.w(TAG, "getName() - Not allowed for non-active user and non system user"); in getName()
911 Log.w(TAG, "setName() - Not allowed for non-active user"); in setName()
925 Log.w(TAG, "getBluetoothClass() - Not allowed for non-active user"); in getBluetoothClass()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
DAvrcpNativeInterface.java63 Log.w(TAG, "getCurrentSongInfo(): AvrcpTargetService is null"); in getCurrentSongInfo()
73 Log.w(TAG, "getPlayStatus(): AvrcpTargetService is null"); in getPlayStatus()
83 Log.w(TAG, "sendMediaKeyEvent(): AvrcpTargetService is null"); in sendMediaKeyEvent()
93 Log.w(TAG, "getMediaPlayerList(): AvrcpTargetService is null"); in getCurrentMediaId()
103 Log.w(TAG, "getMediaPlayerList(): AvrcpTargetService is null"); in getNowPlayingList()
113 Log.w(TAG, "getMediaPlayerList(): AvrcpTargetService is null"); in getCurrentPlayerId()
123 Log.w(TAG, "getMediaPlayerList(): AvrcpTargetService is null"); in getMediaPlayerList()
202 Log.w(TAG, "deviceConnected: AvrcpTargetService is null"); in deviceConnected()
214 Log.w(TAG, "deviceDisconnected: AvrcpTargetService is null"); in deviceDisconnected()
229 Log.w(TAG, "setVolume: AvrcpTargetService is null"); in setVolume()
/packages/services/Mms/src/com/android/mms/service/
DLogUtil.java67 public static void w(final String requestId, final String message, final Throwable t) { in w() method in LogUtil
68 Log.w(TAG, "[" + requestId + "] " + message, t); in w()
71 public static void w(final String message, final Throwable t) { in w() method in LogUtil
72 Log.w(TAG, message, t); in w()
75 public static void w(final String requestId, final String message) { in w() method in LogUtil
76 Log.w(TAG, "[" + requestId + "] " + message); in w()
79 public static void w(final String message) { in w() method in LogUtil
80 Log.w(TAG, message); in w()

12345678910>>...67