Searched defs:format (Results 51 - 75 of 77) sorted by relevance

1234

/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DSendersView.java176 String.format(sDraftCountFormatString, draftCount);
233 public static void format(Context context, ConversationInfo conversationInfo, method in class:SendersView
240 format(context, conversationInfo, messageInfo, maxChars, styledSenders,
250 public static void format(Context context, ConversationInfo conversationInfo, method in class:SendersView
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DLogUtils.java180 * @param format the format string (see {@link java.util.Formatter#format})
183 * more arguments than required by {@code format},
186 public static int v(String tag, String format, Object... args) { argument
188 return Log.v(tag, String.format(format, args));
198 * @param format the format string (see {@link java.util.Formatter#format})
204 v(String tag, Throwable tr, String format, Object... args) argument
221 d(String tag, String format, Object... args) argument
239 d(String tag, Throwable tr, String format, Object... args) argument
256 i(String tag, String format, Object... args) argument
274 i(String tag, Throwable tr, String format, Object... args) argument
291 w(String tag, String format, Object... args) argument
309 w(String tag, Throwable tr, String format, Object... args) argument
326 e(String tag, String format, Object... args) argument
344 e(String tag, Throwable tr, String format, Object... args) argument
365 wtf(String tag, String format, Object... args) argument
384 wtf(String tag, Throwable tr, String format, Object... args) argument
[all...]
/packages/apps/TV/libs/
H A Dexoplayer_v2_ext_ffmpeg.jar ... int supportsFormatInternal (com.google.android.exoplayer2.Format) com.google.android.exoplayer2.Format format ...
H A Dexoplayer.jar ... com.google.android.exoplayer.chunk.Format format private java.lang.String getBandwidthString () com. ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java155 * @param format The texture format (e.g. GL_RGBA)
158 public abstract void initializeTextureSize(BasicTexture texture, int format, int type); argument
176 * @param format The texture format (e.g. GL_RGBA)
181 int format, int type);
179 texSubImage2D(BasicTexture texture, int xOffset, int yOffset, Bitmap bitmap, int format, int type) argument
H A DGLES11Canvas.java617 // We use 565 or 8888 format, so set the alignment to 2 bytes/pixel.
820 String line = String.format(
938 public void initializeTextureSize(BasicTexture texture, int format, int type) { argument
943 mGL.glTexImage2D(target, 0, format, width, height, 0, format, type, null);
955 int format, int type) {
958 GLUtils.texSubImage2D(target, 0, xOffset, yOffset, bitmap, format, type);
954 texSubImage2D(BasicTexture texture, int xOffset, int yOffset, Bitmap bitmap, int format, int type) argument
H A DGLES20Canvas.java822 String line = String.format("MESH:%d, TEX_RECT:%d, FILL_RECT:%d, LINE:%d", mCountDrawMesh,
915 public void initializeTextureSize(BasicTexture texture, int format, int type) { argument
921 GLES20.glTexImage2D(target, 0, format, width, height, 0, format, type, null);
934 int format, int type) {
938 GLUtils.texSubImage2D(target, 0, xOffset, yOffset, bitmap, format, type);
933 texSubImage2D(BasicTexture texture, int xOffset, int yOffset, Bitmap bitmap, int format, int type) argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionData.java131 public SuggestionData setFormat(String format) { argument
132 mFormat = format;
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/
H A DExoPlayerSampleExtractor.java188 MediaFormat convertFormat(Format format) { argument
189 if (format.sampleMimeType.startsWith("audio/")) {
190 return MediaFormat.createAudioFormat(format.id, format.sampleMimeType,
191 format.bitrate, format.maxInputSize,
192 com.google.android.exoplayer.C.UNKNOWN_TIME_US, format.channelCount,
193 format.sampleRate, format.initializationData, format
[all...]
/packages/apps/TV/tests/input/src/com/android/tv/testinput/
H A DTestTvInputService.java199 public void onSurfaceChanged(int format, int width, int height) { argument
200 super.onSurfaceChanged(format, width, height);
201 Log.d(TAG, "format=" + format + " width=" + width + " height=" + height);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DSearchIndexManager.java137 public void appendContentFromColumn(String columnName, int format) { argument
138 appendContent(getString(columnName), format);
145 private void appendContent(String value, int format) { argument
150 switch (format) {
/packages/apps/DevCamera/src/com/android/devcamera/
H A DDevCameraActivity.java275 public synchronized void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
276 Log.v(TAG, String.format("surfaceChanged: format=%x w=%d h=%d", format, width, height));
426 fileNameToast(String.format("Saved %dx%d and %d bytes JPEG to %s in %d ms.", x, y, jpegData.length, result, dt));
436 fileNameToast(String.format("Processing JPEG #%d %dx%d and %d bytes in %d ms.", ++mJpegCounter, x, y, jpegData.length, dt));
475 final String info = String.format(" %2.0f FPS%5d ISO AF:%s AE:%s AWB:%s", fps, iso, af, ae, awb);
517 mLabel2.setText(String.format("TTP %dms HAL %dms Framedrops:%.2f", mTimeToFirstFrame, mHalWaitTime, mDroppedFrameCount));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java322 RectF cropBounds, RectF photoBounds, RectF currentBitmapBounds, String format,
339 BitmapIOTask ioTask = new BitmapIOTask(sourceUri, destUri, format, flags, cropBounds,
542 // Get output compression format
321 startBitmapIO(int flags, Bitmap currentBitmap, Uri sourceUri, Uri destUri, RectF cropBounds, RectF photoBounds, RectF currentBitmapBounds, String format, int rotation) argument
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRootView.java599 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
601 super.surfaceChanged(holder, format, w, h);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DGalleryUtils.java271 public static String formatLatitudeLongitude(String format, double latitude, argument
275 return String.format(Locale.ENGLISH, format, latitude, longitude);
345 durationValue = String.format(context.getString(R.string.details_ms), m, s);
347 durationValue = String.format(context.getString(R.string.details_hms), h, m, s);
/packages/apps/LegacyCamera/src/com/android/camera/
H A DUtil.java697 public ImageFileNamer(String format) { argument
698 mFormat = new SimpleDateFormat(format);
703 String result = mFormat.format(date);
H A DCamera.java643 mFormatter.format("%+1.1f", mFormatterArgs);
1752 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
H A DVideoCamera.java349 return dateFormat.format(date);
1070 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
1851 // only in format hh:mm:ss.dd, where dd are the centi seconds.
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/buffer/
H A DBufferManager.java177 * A Track format which will be loaded and saved from the permanent storage for recordings.
190 public final MediaFormat format; field in class:BufferManager.TrackFormat
195 * @param format
197 public TrackFormat(String trackId, MediaFormat format) { argument
199 this.format = format;
374 return String.format(Locale.ENGLISH, "%s_%016x.chunk", id, positionUs);
521 Log.d(TAG, String.format("bufferSize = %d; pendingDelete = %b; "
/packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java469 public void initializeTextureSize(BasicTexture texture, int format, int type) { argument
474 GLES20.glTexImage2D(GL_TARGET, 0, format, width, height, 0, format, type, null);
486 int format, int type) {
489 GLUtils.texSubImage2D(GL_TARGET, 0, xOffset, yOffset, bitmap, format, type);
485 texSubImage2D(BasicTexture texture, int xOffset, int yOffset, Bitmap bitmap, int format, int type) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardBuilder.java206 private void startTag(final String format, final Object ... args) { argument
207 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
210 private void endTag(final String format, final Object ... args) { argument
211 Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args));
214 private void startEndTag(final String format, final Object ... args) { argument
215 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
882 return value != null ? String.format("
[all...]
/packages/apps/Email/provider_src/com/android/email/service/
H A DAttachmentService.java33 import android.text.format.DateUtils;
157 static private void debugTrace(final String format, final Object... args) { argument
159 LogUtils.d(LOG_TAG, String.format(format, args));
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/audio/
H A DMpegTsDefaultAudioTrackRenderer.java384 private MediaFormat convertMediaFormatToRaw(MediaFormat format) { argument
386 format.trackId,
388 format.bitrate,
389 format.maxInputSize,
390 format.durationUs,
391 format.channelCount,
392 format.sampleRate,
393 format.initializationData,
394 format.language);
399 String mimeType = formatHolder.format
442 onOutputFormatChanged(android.media.MediaFormat format) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java1022 public ImageFileNamer(String format) { argument
1023 mFormat = new SimpleDateFormat(format);
1028 String result = mFormat.format(date);
1077 String uri = String.format(Locale.ENGLISH, "http://maps.google.com/maps?f=q&q=(%f,%f)",
1088 String url = String.format(Locale.ENGLISH, "geo:%f,%f", latLong[0], latLong[1]);

Completed in 510 milliseconds

1234