/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
WrappedGTest.java | 83 File testApp = mCtsBuild.getTestApp(String.format("%s.apk", mName)); 103 String command = String.format("am instrument -w %s/.%s", mAppNameSpace, mRunner);
|
/development/samples/AndroidBeamDemo/src/com/example/android/beam/ |
Beam.java | 32 import android.text.format.Time; 76 "Beam Time: " + time.format("%H:%M:%S"));
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
PurgeableBitmapView.java | 109 private byte[] generateBitstream(Bitmap src, Bitmap.CompressFormat format, 112 src.compress(format, quality, os);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
NumericSprite.java | 64 mText = format(value); 90 private String format(int value) { method in class:NumericSprite
|
/device/generic/goldfish/opengl/system/renderControl_enc/ |
renderControl_enc.h | 48 void rcReadColorBuffer_enc(void *self , uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void* pixels); 49 int rcUpdateColorBuffer_enc(void *self , uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void* pixels);
|
/external/aac/libFDK/include/ |
FDK_trigFcts.h | 98 #define Q(format) ((FIXP_DBL)(((LONG)1) << (format)))
|
/external/chromium/chrome/common/ |
json_schema_validator.h | 41 // - format 90 // Utility methods to format error messages. The first method can have one 93 static std::string FormatErrorMessage(const std::string& format, 95 static std::string FormatErrorMessage(const std::string& format,
|
/external/chromium/net/base/ |
x509_cert_types.cc | 97 CertDateFormat format, 99 size_t year_length = format == CERT_DATE_FORMAT_UTC_TIME ? 2 : 4;
|
/external/dropbear/ |
session.h | 52 void svr_dropbear_exit(int exitcode, const char* format, va_list param); 53 void svr_dropbear_log(int priority, const char* format, va_list param);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/ |
Util.java | 245 // Try with date format 251 return substring; // if no exception is raised then the substring has a correct date format => return it 414 * @param time The time to format as a long. 458 * @param time The time to format as a long. 466 return dateFormat.format(date); 480 * @param time The time to format as a long. 484 NumberFormat format = NumberFormat.getInstance(); local 485 format.setMaximumFractionDigits(1); 494 format.setMaximumFractionDigits(2); 496 buffer.append(format.format(time/1000.0)) [all...] |
/external/grub/util/ |
grub-md5-crypt | 3 # Encrypt a password in MD5 format 35 Encrypt a password in MD5 format.
|
grub-md5-crypt.in | 3 # Encrypt a password in MD5 format 35 Encrypt a password in MD5 format.
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
ThreadFactoryBuilder.java | 32 * <li> a {@linkplain ThreadFactoryBuilder#setNameFormat naming format} 58 * Sets the naming format to use when naming threads ({@link Thread#setName}) 61 * @param nameFormat a {@link String#format(String, Object...)}-compatible 62 * format String, to which a unique integer (0, 1, etc.) will be supplied 68 String.format(nameFormat, 0); // fail fast if the format is bad or null 161 thread.setName(String.format(nameFormat, count.getAndIncrement()));
|
/external/icu4c/test/intltest/ |
incaltst.cpp | 148 * The int[] data array should have the format: 252 // $ intltest format/IntlCalendarTest collate/G7CollationTest format/IntlCalendarTest 414 // Test simple parse/format with adopt 419 CHECK(status, "creating date format instance"); 421 CHECK(status, "creating gregorian date format instance"); 426 fmt2->format(aDate, str); 429 fmt->format(aDate, str); 438 fmt->format(otherDate, str3); 488 // TaiwanFormat has been moved to testdata/format.tx [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureGeneratorNoise.java | 38 import com.jme3.texture.Image.Format; 67 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8; local 104 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
/external/jsilver/src/com/google/streamhtmlparser/util/ |
EntityResolver.java | 89 * debugging purposes. The format of the returned {@code String} 164 * in a human readable form. The format of the returned <code>String</code> 171 return String.format("Status: %s; Contents (%d): %s", status.toString(), 265 return String.format("%s%c", sb.toString(), terminator);
|
/external/junit/src/org/junit/ |
ComparisonFailure.java | 88 return Assert.format(message, fExpected, fActual); 94 return Assert.format(message, expected, actual);
|
/external/llvm/lib/Analysis/ |
ProfileVerifierPass.cpp | 24 #include "llvm/Support/Format.h" 109 << format("%20.20g",EdgeWeight) << "\n"; 124 << format("%20.20g",EdgeWeight) << "\n"; 131 << "BBWeight=" << format("%20.20g",BBWeight) << "," 132 << "inWeight=" << format("%20.20g",inWeight) << "," 134 << "outWeight=" << format("%20.20g",outWeight) << "," 149 << "BBWeight=" << format("%20.20g",DI->BBWeight) << "," 150 << "inWeight=" << format("%20.20g",DI->inWeight) << "," 152 << "outWeight=" << format("%20.20g",DI->outWeight) << ","
|
/external/openssh/ |
packet.h | 75 void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2))); 76 void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_audio.h | 47 * - 'desired->format' should be the desired audio format. 76 Uint16 format; /**< Audio data format */ member in struct:SDL_AudioSpec 96 * @name Audio format flags 128 Uint16 src_format; /**< Source audio format */ 129 Uint16 dst_format; /**< Target audio format */ 136 void (SDLCALL *filters[10])(struct SDL_AudioCVT *cvt, Uint16 format); 166 * requested format, and will be automatically converted to the hardware 167 * audio format if necessary. This function returns -1 if it failed [all...] |
/external/qemu/distrib/sdl-1.2.15/test/ |
testalpha.c | 38 if (screen->format->BytesPerPixel!=2) { 40 memset(buffer,(i*255)/screen->h, screen->w*screen->format->BytesPerPixel); 48 color = (Uint16)SDL_MapRGB(screen->format, gradient, gradient, gradient); 95 skip = light->pitch-(light->w*light->format->BytesPerPixel); 102 pixel = SDL_MapRGBA(light->format, 0xFF, 0xDD, 0x88, 0); 193 if ( sprite->format->palette ) { 198 /* Convert sprite to video format */ 218 /* Convert background to video format */ 285 alpha = sprite->format->alpha; 416 printf("Screen is at %d bits per pixel\n",screen->format->BitsPerPixel) [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
ReadContext.java | 113 throw new ExceptionWithContext(String.format("Could not find the %s item at offset %#x", 134 throw new ExceptionWithContext(String.format("Could not find the %s item at offset %#x",
|
/external/srec/portable/include/ |
plog.h | 67 * @param format the format string specifying the next arguments (a la 74 const LCHAR *format, ...); 96 * Type used to control output format. 164 * Sets the format of the logging messages. If this function is never called, 165 * the default format is 169 * @param format the format specification for new messages. 174 PORTABLE_API ESR_ReturnCode PLogSetFormat(LOG_OUTPUT_FORMAT format); 203 * @param msg The message format specification (ala printf) [all...] |
/external/stressapptest/src/ |
logger.cc | 35 void Logger::VLogF(int priority, const char *format, va_list args) { 40 int length = vsnprintf(buffer, sizeof buffer, format, args);
|
/external/webkit/Source/WebCore/html/canvas/ |
WebGLRenderingContext.h | 102 // void compressedTexSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei GC3Dsizei height, GC3Denum format, GC3Dsizei imageSize, const void* data); 182 void readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode&); 197 GC3Denum format, GC3Denum type, ArrayBufferView*, ExceptionCode&); 199 GC3Denum format, GC3Denum type, ImageData*, ExceptionCode&); 201 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionCode&); 203 GC3Denum format, GC3Denum type, HTMLCanvasElement*, ExceptionCode&); 206 GC3Denum format, GC3Denum type, HTMLVideoElement*, ExceptionCode&); 214 GC3Denum format, GC3Denum type, ArrayBufferView*, ExceptionCode&); 216 GC3Denum format, GC3Denum type, ImageData*, ExceptionCode&); 218 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionCode&) [all...] |