/external/icu4c/i18n/unicode/ |
numfmt.h | 35 #include "unicode/format.h" 54 * NumberFormat helps you to format and parse numbers for any locale. 57 * decimal digits used, or whether the number format is even decimal. 59 * To format a number for the current Locale, use one of the static 67 * nf->format(myNumber, myString); 72 * the format and use it multiple times so that the system doesn't 84 * nf->format(a[i], myString); 90 * To format a number for a different Locale, specify it in the 105 * Use createInstance to get the normal number format for that country. 107 * to get the currency number format for that country. Use getPercen 1040 NumberFormat::format(const Formattable& obj, function in class:NumberFormat [all...] |
rbnf.h | 15 * \brief C++ API: Rule Based Number Format 86 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and 102 * isolate the number's ones digit, format it using this same set of rules, and place the 178 * <p>The above syntax suffices only to format positive integers. To format negative numbers, 184 * where the base value would be. This rule is used to format all negative numbers. the 185 * >> token here means "find the number's absolute value, format it with these 213 * are <em>public:</em> the caller can specify that they be used to format and parse numbers. 288 * on whether it is used to format a number's integral part (or the whole number) or a 289 * number's fractional part. Using a rule set to format a rule's fractional part makes it 1009 RuleBasedNumberFormat::format(const Formattable& obj, function in class:RuleBasedNumberFormat 1022 RuleBasedNumberFormat::format(double number, UnicodeString& output) const { function in class:RuleBasedNumberFormat 1028 RuleBasedNumberFormat::format(int32_t number, UnicodeString& output) const { function in class:RuleBasedNumberFormat [all...] |
/external/valgrind/main/coregrind/ |
pub_core_libcassert.h | 56 #define vg_assert2(expr, format, args...) \ 60 format, ##args), \
|
/frameworks/base/native/android/ |
native_activity.cpp | 28 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format) { 29 android_NativeActivity_setWindowFormat(activity, format);
|
/libcore/luni/src/main/java/java/security/ |
AlgorithmParametersSpi.java | 48 * {@code byte[]} using the default decoding format for parameters. The 49 * default encoding format is ASN.1. 61 * {@code byte[]} using the specified decoding format. 65 * @param format 66 * the name of the decoding format. 71 protected abstract void engineInit(byte[] params, String format) 92 * Returns the parameters in their default encoding format. The default 93 * encoding format is ASN.1. 103 * Returns the parameters in the specified encoding format. 105 * @param format [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
input.h | 68 int snd_input_scanf(snd_input_t *input, const char *format, ...) 70 __attribute__ ((format (scanf, 2, 3)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/repository/ |
SdkAddonsListConstants.java | 87 String filename = String.format("sdk-addons-list-%d.xsd", version); //$NON-NLS-1$
96 return String.format(NS_BASE + "%d", version); //$NON-NLS-1$
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/ |
MockBrokenPackage.java | 37 String.format(" for API %d", exactApiLevel);
39 String.format(", min API %d", minApiLevel);
|
MockSystemImagePackage.java | 37 String.format("/sdk/system-images/android-%s/%s",
57 String.format("/sdk/system-images/android-%s/%s",
|
/system/core/include/android/ |
log.h | 101 __attribute__ ((format(printf, 3, 4))) 120 __attribute__ ((format(printf, 3, 4)))
|
/external/v8/src/ |
platform-posix.cc | 133 void OS::Print(const char* format, ...) { 135 va_start(args, format); 136 VPrint(format, args); 141 void OS::VPrint(const char* format, va_list args) { 143 LOG_PRI_VA(ANDROID_LOG_INFO, LOG_TAG, format, args); 145 vprintf(format, args); 150 void OS::FPrint(FILE* out, const char* format, ...) { 152 va_start(args, format); 153 VFPrint(out, format, args); 158 void OS::VFPrint(FILE* out, const char* format, va_list args) [all...] |
/external/v8/src/mips/ |
disasm-mips.cc | 122 void Format(Instruction* instr, const char* format); 299 int Decoder::FormatRegister(Instruction* instr, const char* format) { 300 ASSERT(format[0] == 'r'); 301 if (format[1] == 's') { // 'rs: Rs register 305 } else if (format[1] == 't') { // 'rt: rt register 309 } else if (format[1] == 'd') { // 'rd: rd register 321 int Decoder::FormatFPURegister(Instruction* instr, const char* format) { 322 ASSERT(format[0] == 'f'); 323 if (format[1] == 's') { // 'fs: fs registe [all...] |
/external/valgrind/main/VEX/priv/ |
main_util.c | 310 HChar* format, 334 if (!format) 336 if (*format == 0) 339 if (*format != '%') { 340 PUT(*format); 341 format++; 345 saved_format = format; 350 format++; 352 if (*format == '-') { 353 format++ [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldMessageFormatTest.java | 23 import java.text.Format; 48 MessageFormat format = new MessageFormat("test"); local 49 format.setLocale(Locale.FRENCH); // use French since English has the 51 format.applyPattern("{0,time, Full}"); 52 assertEquals("Wrong full time pattern", "{0,time,full}", format 114 * java.text.MessageFormat#setFormat(int, Format) Test of method 115 * java.text.MessageFormat#setFormat(int, Format). Case 1: Compare 130 Format[] formats = f1.getFormats(); 133 Format[] correctFormats = new Format[] { 166 MessageFormat format = new MessageFormat("{1,number,integer}"); local 285 MessageFormat format = new MessageFormat(pattern, Locale.US); local [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/ |
SoftMPEG4.cpp | 114 def.format.video.cMIMEType = 119 def.format.video.pNativeRender = NULL; 120 def.format.video.nFrameWidth = mWidth; 121 def.format.video.nFrameHeight = mHeight; 122 def.format.video.nStride = def.format.video.nFrameWidth; 123 def.format.video.nSliceHeight = def.format.video.nFrameHeight; 124 def.format.video.nBitrate = 0; 125 def.format.video.xFramerate = 0 [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/ |
SoftAVC.cpp | 117 def.format.video.cMIMEType = const_cast<char *>(MEDIA_MIMETYPE_VIDEO_AVC); 118 def.format.video.pNativeRender = NULL; 119 def.format.video.nFrameWidth = mWidth; 120 def.format.video.nFrameHeight = mHeight; 121 def.format.video.nStride = def.format.video.nFrameWidth; 122 def.format.video.nSliceHeight = def.format.video.nFrameHeight; 123 def.format.video.nBitrate = 0; 124 def.format.video.xFramerate = 0 [all...] |