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

<<61626364656667686970>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAttribute.java 174 String desc = String.format("Add ignore '%1$s\' to element", id);
193 String.format("Add targetApi '%1$s\' to element", targetApi),
198 String.format("Add targetApi '%1$s\' to element", targetApi),
230 String desc = String.format("Add ignore '%1$s\' to element", id);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
CurrentProgramPropertyAccessor.java 64 return String.format("PROGRAM_STATE/PROGRAMS/${program}/%s/%d/%s",
CurrentVboPropertyAccessor.java 69 return String.format("VERTEX_ARRAY_DATA/VBO/${currentBuffer}/%s", mVboProperty);
TexturePropertyAccessor.java 83 return String.format("TEXTURE_STATE/TEXTURES/${activeTexture}/%s", mTextureType);
TextureUnitPropertyAccessor.java 62 return String.format("TEXTURE_STATE/TEXTURE_UNITS/${activeTextureUnit}/%s", mTargetType);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
GdbServerTask.java 68 String command = String.format("run-as %s lib/gdbserver +%s --attach %d",
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmValidate.h 37 static bool texCompImgFrmt(GLenum format);
  /system/core/include/cutils/
logprint.h 59 AndroidLogPrintFormat format);
103 * Splits a wire-format buffer into an AndroidLogEntry
106 * Returns 0 on success and -1 on invalid wire format (entry will be
  /system/core/libpixelflinger/
picker.cpp 44 new_needs.n |= GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
50 uint32_t n = GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
57 const GGLFormat& cbf = c->formats[ c->state.buffers.color.format ];
138 t |= GGL_BUILD_NEEDS(tx.surface.format, T_FORMAT);
  /cts/tests/src/android/opengl/cts/
CompressedTextureLoader.java 78 * Get the format of the texture.
79 * @return the internal format.
84 * Get the format of the texture.
85 * @return the internal format.
102 unsigned int dwpfFlags; // pixel format flags
128 int mpfFlags; // pixel format flags
240 int format = header.mpfFlags & 0xFF; local
242 if (format == PVR_2BPP && header.mAlphaBitMask == 1) {
244 } else if (format == PVR_2BPP && header.mAlphaBitMask == 0) {
246 } else if (format == PVR_4BPP && header.mAlphaBitMask == 1)
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 48 String.format("1 (700).555-41%c1234", PhoneNumberUtils.PAUSE)));
55 assertEquals(String.format("%c1234", PhoneNumberUtils.PAUSE),
57 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.PAUSE)));
58 assertEquals(String.format("%c1234", PhoneNumberUtils.WAIT),
60 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.WAIT)));
61 assertEquals(String.format("%c1234%c%cN", PhoneNumberUtils.WAIT, PhoneNumberUtils.PAUSE,
64 String.format("+1 (700).555-41NN%c1-2.34 %c%cN", PhoneNumberUtils.WAIT,
  /external/clang/test/Sema/
format-strings.c 20 int vscanf(const char *restrict format, va_list arg);
30 printf(s); // expected-warning {{format string is not a string literal}}
31 vprintf(s,ap); // expected-warning {{format string is not a string literal}}
32 fprintf(fp,s); // expected-warning {{format string is not a string literal}}
33 vfprintf(fp,s,ap); // expected-warning {{format string is not a string literal}}
34 asprintf(&b,s); // expected-warning {{format string is not a string lit}}
35 vasprintf(&b,s,ap); // expected-warning {{format string is not a string literal}}
36 sprintf(buf,s); // expected-warning {{format string is not a string literal}}
37 snprintf(buf,2,s); // expected-warning {{format string is not a string lit}}
38 __builtin___sprintf_chk(buf,0,-1,s); // expected-warning {{format string is not a string literal}
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testwin.c 43 if ( picture->format->palette ) {
44 ncolors = picture->format->palette->ncolors;
47 memcpy(colors, picture->format->palette->colors,
71 (screen->format->palette != NULL) ) {
83 black = SDL_MapRGB(screen->format, 0, 0, 0);
87 screen->w*screen->format->BytesPerPixel);
354 screen->w, screen->h, screen->format->BitsPerPixel);
  /external/tinyxml2/
tinyxml2.cpp     [all...]
  /external/v8/tools/
stats-viewer.py 248 format = COUNTER_LABELS[name[0]]
250 format = "%i"
251 ui_counter = UiCounter(var, format)
271 def __init__(self, var, format):
276 format: the format string used to format this counter
279 self.format = format
296 self.var.set(self.format % value
    [all...]
  /frameworks/av/cmds/stagefright/
codec.cpp 88 sp<AMessage> format; local
89 status_t err = extractor->getTrackFormat(i, &format);
93 CHECK(format->findString("mime", &mime));
124 format, isVideo ? surface : NULL,
276 sp<AMessage> format; local
277 CHECK_EQ((status_t)OK, state->mCodec->getOutputFormat(&format));
279 ALOGV("INFO_FORMAT_CHANGED: %s", format->debugString().c_str());
SimplePlayer.cpp 293 sp<AMessage> format; local
294 status_t err = mExtractor->getTrackFormat(i, &format);
298 CHECK(format->findString("mime", &mime));
324 format,
333 while (format->findBuffer(StringPrintf("csd-%d", j).c_str(), &buffer)) {
571 sp<AMessage> format; local
572 status_t err = state->mCodec->getOutputFormat(&format);
579 CHECK(format->findString("mime", &mime));
584 CHECK(format->findInt32("channel-count", &channelCount));
585 CHECK(format->findInt32("sample-rate", &sampleRate))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
FocusFinderTest.java 477 String assertMsg = String.format("Expected beams to overlap in direction %s "
484 String assertMsg = String.format("Expected beams not to overlap in direction %s "
501 String assertMsg = String.format(
511 assertMsg = String.format(
525 final String assertMsg = String.format(
536 String assertMsg = String.format(
546 final String assertMsg = String.format(
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 42 * row point to graphic buffers which use the same pixel format and
48 * in a particular row have the same pixel format and dimension,
547 * format and dimension. Each graphic buffer is uniformly filled with a
566 // All frames within a row have to have the same format and
571 int format = formatPtr->format; local
586 testPrintI(" frame %u width: %u height: %u format: %u %s",
587 row, w, h, format, hwcTestGraphicFormat2str(format));
596 frames[row][col] = new GraphicBuffer(w, h, format, texUsage)
    [all...]
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 385 (input->dst_size < 1) || (input->format == NULL)) {
389 if (strcmp(input->format, CameraParameters::PIXEL_FORMAT_YUV420SP) == 0) {
397 CAMHAL_LOGEB("Encoder: resizing is not supported for this format: %s", input->format);
399 } else if (strcmp(input->format, CameraParameters::PIXEL_FORMAT_YUV422I)) {
401 CAMHAL_LOGEB("Encoder: format not supported: %s", input->format);
438 // convert input yuv format to yuv444
439 if (strcmp(input->format, CameraParameters::PIXEL_FORMAT_YUV420SP) == 0) {
449 // move uv row if input format needs i
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 40 import android.text.format.DateUtils;
41 import android.text.format.Time;
236 String timeStr = time.format(" %a, %b %d, %Y %I:%M%P");
275 String startTimeStr = time.format(" %a, %b %d, %Y %I:%M%P");
387 String alarmTimeStr = time.format(" %a, %b %d, %Y %I:%M%P");
408 String schedTime = time.format(" %a, %b %d, %Y %I:%M%P");
410 String startTimeStr = time.format(" %a, %b %d, %Y %I:%M%P");
  /external/e2fsprogs/ext2ed/
general_com.c 531 char *format; local
536 format = "%3d (0x%02x)\n";
540 format = "%d (0x%x)\n";
544 format = "%d\n";
550 wprintw(show_pad, format, temp, temp);
556 char *format; local
562 format = "%3u (0x%02x)\n";
567 format = "%u (0x%x)\n";
571 format = "%u\n";
577 wprintw(show_pad, format, temp, temp)
    [all...]
  /external/stlport/src/
time_facets.cpp 149 const string& format, const _TimeInfo& table, const tm* t) { variable
150 const char * cp = format.data();
151 const char * cp_end = cp + format.size();
215 char format, char modifier, variable
220 switch (format) {
409 switch (format) {
455 char format, char modifier,
457 { __write_formatted_timeT(buf, ct, format, modifier, table, t); }
460 char format, char modifier,
462 { __write_formatted_timeT(buf, ct, format, modifier, table, t);
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/test/
VideoEncTest.c 41 *! that is, newest first. The date format is dd-Mon-yyyy.
640 /* Input video frame format: YUV422 interleaved (1) or YUV420 (0) */
815 pAppData->pInPortDef->format.video.cMIMEType = "yuv";
816 pAppData->pInPortDef->format.video.pNativeRender = NULL;
817 pAppData->pInPortDef->format.video.nStride = -1;
818 pAppData->pInPortDef->format.video.nSliceHeight = -1;
819 pAppData->pInPortDef->format.video.xFramerate = fToQ16(pAppData->nFramerate);
820 pAppData->pInPortDef->format.video.bFlagErrorConcealment = OMX_FALSE;
821 pAppData->pInPortDef->format.video.eColorFormat = pAppData->eColorFormat;
822 pAppData->pInPortDef->format.video.nFrameWidth = pAppData->nWidth
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 125 final String strFormatParam = "format";
128 protected byte[] engineGetEncoded(String format) throws IOException {
129 assertEquals(strFormatParam, format);
154 // test: if format param is null
158 protected byte[] engineGetEncoded(String format) throws IOException {
159 assertNull(format); // null is passed to spi-provider
396 params.init(new byte[0], "format");
464 params.init(enc, "format");
497 final String strFormatParam = "format";
500 protected void engineInit(byte[] params, String format)
    [all...]

Completed in 781 milliseconds

<<61626364656667686970>>