HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1076 - 1100 of 4596) sorted by null

<<41424344454647484950>>

  /external/stressapptest/src/
logger.h 94 // format: see vprintf(3)
96 void VLogF(int priority, const char *format, va_list args);
  /external/valgrind/main/include/
pub_tool_gdbserver.h 133 extern UInt VG_(gdb_printf) ( const HChar *format, ... ) PRINTF_CHECK(1, 2);
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
debug.h 18 void trace(const char *format, ...);
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 811 String.sprintf = function(format)
813 return String.vsprintf(format, Array.prototype.slice.call(arguments, 1));
816 String.tokenizeFormatString = function(format)
832 for (var precentIndex = format.indexOf("%", index); precentIndex !== -1; precentIndex = format.indexOf("%", index)) {
833 addStringToken(format.substring(index, precentIndex));
836 if (format[index] === "%") {
842 if (!isNaN(format[index])) {
844 var number = parseInt(format.substring(index));
845 while (!isNaN(format[index])
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
FontCustomPlatformData.cpp 202 bool FontCustomPlatformData::supportsFormat(const String& format)
204 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype")
206 || equalIgnoringCase(format, "woff")
  /external/webrtc/src/system_wrappers/source/
file_impl.cc 206 int FileWrapperImpl::WriteText(const char* format, ...)
208 if (format == NULL)
218 va_start(args, format);
219 int num_chars = vfprintf(_id, format, args);
  /frameworks/av/include/camera/
ProCamera.h 174 status_t createStream(int width, int height, int format,
184 status_t createStream(int width, int height, int format,
188 status_t createStreamCpu(int width, int height, int format,
193 status_t createStreamCpu(int width, int height, int format,
  /frameworks/av/include/media/
IAudioFlinger.h 61 audio_format_t format,
74 audio_format_t format,
89 virtual audio_format_t format(audio_io_handle_t output) const = 0;
131 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format,
  /frameworks/av/include/media/nbaio/
MonoPipe.h 41 MonoPipe(size_t reqFrames, NBAIO_Format format, bool writeCanBlock = false);
48 //virtual NBAIO_Format format() const;
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VPP_API.h 126 * M4OSA_ERR M4VPP_setVideoPreprocessingMode(M4VPP_Context pContext, M4VES_InputVideoFormat format)
130 * @param format : (IN) Format of input plane (rgb, yuv, ...)
134 M4OSA_ERR M4VPP_setVideoPreprocessingMode(M4VPP_Context pContext, M4VPP_InputVideoFormat format);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 33 void configure(const sp<AMessage> &format);
  /frameworks/av/services/audioflinger/
RecordTracks.h 28 audio_format_t format,
  /frameworks/av/services/camera/libcameraservice/camera3/
Camera3InputStream.h 42 Camera3InputStream(int id, uint32_t width, uint32_t height, int format);
  /frameworks/base/core/tests/coretests/src/android/text/format/
DateUtilsTest.java 17 package android.text.format;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AlphaBlendFilter.java 29 import android.filterfw.format.ImageFormat;
BlendFilter.java 28 import android.filterfw.format.ImageFormat;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
StringSource.java 27 import android.filterfw.format.ObjectFormat;
ToUpperCase.java 24 import android.filterfw.format.ObjectFormat;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
CameraTestHelper.java 49 Assert.fail(String.format("Camera error, code: %d", error));
74 fos = new FileOutputStream(String.format("%s/%s/%s-%d.jpg",
99 File stressImagesDirectory = new File(String.format("%s/%s",
133 File stressImagesDirectory = new File(String.format("%s/%s",
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
AdbUtils.java 64 cmd = String.format("%04X", cmd.length()) + cmd;
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfTest.java 34 testResult.putString(result.name, String.format("%f,%d,%d,%f,%d,%d",
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 126 String.format(
134 String.format(
144 fail(String.format("Missing %1$s.%2$s", delegateClass.getName(), name));
162 String.format(
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pServiceRequest.java 124 * The format is the hex dump of the following frame.
136 // length is retained as little endian format.
137 sb.append(String.format("%02x", (mLength) & 0xff));
138 sb.append(String.format("%02x", (mLength >> 8) & 0xff));
139 sb.append(String.format("%02x", mProtocolType));
140 sb.append(String.format("%02x", mTransId));
  /frameworks/native/include/gui/
ISurfaceComposerClient.h 60 PixelFormat format, uint32_t flags,
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
AccessibleDateAnimator.java 20 import android.text.format.DateUtils;

Completed in 219 milliseconds

<<41424344454647484950>>