/external/webkit/Source/WebCore/platform/graphics/skia/ |
GraphicsContext3DSkia.cpp | 45 GC3Denum format, 84 format, type, neededAlphaOp, outputVector.data());
|
/external/webkit/Source/WebCore/platform/sql/ |
SQLiteFileSystem.cpp | 80 fileName = pathByAppendingComponent(dbDir, String::format("%016"PRIx64".db", seq)); 83 return String::format("%016"PRIx64".db", seq);
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
PluginObject.h | 90 extern void pluginLog(NPP instance, const char* format, ...); 91 extern void pluginLogWithArguments(NPP instance, const char* format, va_list args);
|
/frameworks/base/core/jni/ |
TimeUtils.h | 62 String8 format(const char *format, const struct strftime_locale *locale) const;
|
/frameworks/base/core/tests/coretests/src/android/webkit/ |
WebkitTest.java | 20 import android.text.format.DateFormat; 55 Log.i(LOGTAG, "time: " + DateFormat.format("yyyy/MM/dd kk:mm:ss", c).toString() +
|
/frameworks/base/include/ui/ |
GraphicBufferAllocator.h | 65 status_t alloc(uint32_t w, uint32_t h, PixelFormat format, int usage, 78 PixelFormat format; member in struct:android::GraphicBufferAllocator::alloc_rec_t
|
/frameworks/base/media/libstagefright/codecs/g711/dec/ |
SoftG711.cpp | 73 def.format.audio.cMIMEType = 79 def.format.audio.pNativeRender = NULL; 80 def.format.audio.bFlagErrorConcealment = OMX_FALSE; 81 def.format.audio.eEncoding = OMX_AUDIO_CodingG711; 96 def.format.audio.cMIMEType = const_cast<char *>("audio/raw"); 97 def.format.audio.pNativeRender = NULL; 98 def.format.audio.bFlagErrorConcealment = OMX_FALSE; 99 def.format.audio.eEncoding = OMX_AUDIO_CodingPCM;
|
/frameworks/base/media/libstagefright/codecs/mp3dec/ |
SoftMP3.cpp | 82 def.format.audio.cMIMEType = 85 def.format.audio.pNativeRender = NULL; 86 def.format.audio.bFlagErrorConcealment = OMX_FALSE; 87 def.format.audio.eEncoding = OMX_AUDIO_CodingMP3; 102 def.format.audio.cMIMEType = const_cast<char *>("audio/raw"); 103 def.format.audio.pNativeRender = NULL; 104 def.format.audio.bFlagErrorConcealment = OMX_FALSE; 105 def.format.audio.eEncoding = OMX_AUDIO_CodingPCM;
|
/frameworks/base/opengl/libs/GLES2_dbg/src/ |
api.h | 20 /* pick easy format for client to convert */ \ 36 const unsigned int size = width * height * GetBytesPerPixel(format, type); \ 53 const unsigned size = GetBytesPerPixel(format, type) * width * height; \
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
HoloClock.java | 31 import android.text.format.DateFormat; 163 String format = context.getString(res); local 164 if (!format.equals(mClockFormatString)) { 166 format = format.replaceAll("a", "").trim(); 167 mClockFormat = sdf = new SimpleDateFormat(format); 168 mClockFormatString = format; 172 String result = sdf.format(mCalendar.getTime());
|
/frameworks/base/services/audioflinger/ |
AudioResampler.h | 68 enum format {MONO_16_BIT, STEREO_16_BIT}; enum in class:android::AudioResampler 85 format mFormat;
|
/frameworks/compile/linkloader/utils/ |
helper.cpp | 36 out() << format("%08x", i) << ':'; 52 out() << ' ' << format("%02x", (unsigned)data[j]);
|
/hardware/msm7k/libgralloc-qsd8k/ |
gpu.h | 61 int alloc_impl(int w, int h, int format, int usage, 64 static int gralloc_alloc(alloc_device_t* dev, int w, int h, int format,
|
/libcore/junit/src/main/java/junit/framework/ |
ComparisonFailure.java | 32 return Assert.format(super.getMessage(), fExpected, fActual); 66 return Assert.format(super.getMessage(), expected, actual);
|
/libcore/luni/src/main/java/java/sql/ |
Timestamp.java | 95 * a time value in the format of milliseconds since the Epoch 345 * format, which is {@code "yyyy-MM-dd HH:mm:ss.nnnnnnnnn"}. 348 * Timestamp}, in JDBC Timestamp escape format. 355 format((getYear() + 1900), 4, sb); method 357 format((getMonth() + 1), 2, sb); method 359 format(getDate(), 2, sb); 361 format(getHours(), 2, sb); 363 format(getMinutes(), 2, sb); 365 format(getSeconds(), 2, sb); 370 format(nanos, 9, sb) method 384 private void format(int date, int digits, StringBuilder sb) { method in class:Timestamp [all...] |
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 43 * {@code DateFormat} helps you to format and parse dates for any locale. Your 45 * of the week, or even the calendar format: lunar vs. solar. 47 * To format a date for the current Locale, use one of the static factory 52 * myString = DateFormat.getDateInstance().format(myDate); 57 * If you are formatting multiple dates, it is more efficient to get the format 65 * output.println(df.format(myDate[i]) + "; "); 71 * To format a number for a different locale, specify it in the call to 90 * Use {@code getDateInstance} to get the normal date format for a country. 92 * get the time format for a country. Use {@code getDateTimeInstance} to get the 93 * date and time format. You can pass in different options to these factor 356 public final StringBuffer format(Object object, StringBuffer buffer, method in class:DateFormat 375 public final String format(Date date) { method in class:DateFormat 398 public abstract StringBuffer format(Date date, StringBuffer buffer, method in class:DateFormat [all...] |
/libcore/luni/src/main/java/java/util/logging/ |
SimpleFormatter.java | 28 * contained in a {@code LogRecord} object in a human readable format. 46 public String format(LogRecord r) { method in class:SimpleFormatter 48 sb.append(MessageFormat.format("{0, date} {0, time} ",
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldFormatTest.java | 22 import java.text.Format; 29 private class MockFormat extends Format { 31 public StringBuffer format(Object obj, StringBuffer toAppendTo, method in class:OldFormatTest.MockFormat 50 * java.text.Format#clone() Test of method java.text.Format#clone(). 55 Format fm = new MockFormat(); 56 Format fmc = (Format) fm.clone(); 62 assertEquals("", mf.format("")); 63 assertTrue("It calls an abstract metod format", true) [all...] |
/packages/apps/Camera/jni/feature_stab/src/dbregtest/ |
PgmImage.h | 40 PgmImage(int w, int h, int format = PGM_BINARY_GRAYMAP); 70 //! Get image format (returns PGM_BINARY_GRAYMAP, PGM_BINARY_PIXMAP or PGM_FORMAT_INVALID) 73 //! Set image format (returns PGM_BINARY_GRAYMAP, PGM_BINARY_PIXMAP). Image data becomes invalid. 74 void SetFormat(int format);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeyStylesTests.java | 25 private static String format(String message, Object expected, Object actual) { method in class:KeyStylesTests 39 assertTrue(format(message + ": result at " + i + ":", expected[i], actual[i]), equals);
|
/sdk/anttasks/src/com/android/ant/ |
TaskHelper.java | 45 throw new BuildException(String.format("SDK Location '%s' is not valid.", sdkOsPath)); 79 throw new BuildException(String.format(
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ |
RemoteAndroidTestRunner.java | 237 final String runCaseCommandStr = String.format("am instrument -w -r %1$s %2$s", 239 Log.i(LOG_TAG, String.format("Running %1$s on %2$s", runCaseCommandStr, 247 Log.w(LOG_TAG, String.format("IOException %1$s when running tests %2$s on %3$s", 253 Log.w(LOG_TAG, String.format( 256 mParser.handleTestRunFailed(String.format( 262 Log.w(LOG_TAG, String.format( 268 Log.w(LOG_TAG, String.format( 293 final String argCmd = String.format(" -e %1$s %2$s", argPair.getKey(),
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeStackLabelProvider.java | 47 return String.format("0x%08x", info.getAddress()); 64 return String.format("0x%08x", address);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
ResizeState.java | 113 return String.format(VALUE_N_DP, mRule.mRulesEngine.pxToDp(bounds.w)); 128 return String.format(VALUE_N_DP, mRule.mRulesEngine.pxToDp(bounds.h));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AndroidPrintStream.java | 83 return String.format(Messages.Console_Date_Tag, c); 86 return String.format(Messages.Console_Data_Project_Tag, c, tag);
|