/external/clang/test/Lexer/ |
char-escapes.c | 22 const char *format = "abc \m def"; // expected-warning{{unknown escape sequence '\m'}} variable
|
/external/chromium_org/v8/test/intl/date-format/ |
protected-icu-internals.js | 32 var format = new Intl.DateTimeFormat([]); 35 format.formatter = {'zzz':'some random object'}; 37 assertFalse(format.formatter.hasOwnProperty('zzz')); 42 Object.defineProperty(format, 'formatter', {value: undefined}); 49 assertFalse(delete format.formatter);
|
/external/chromium_org/v8/test/intl/number-format/ |
protected-icu-internals.js | 32 var format = new Intl.NumberFormat([]); 35 format.formatter = {'zzz':'some random object'}; 37 assertFalse(format.formatter.hasOwnProperty('zzz')); 42 Object.defineProperty(format, 'formatter', {value: undefined}); 49 assertFalse(delete format.formatter);
|
/external/clang/test/Sema/ |
block-printf-attribute-1.c | 6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}} local 7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}} 9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {}; local 11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}} 16 // Handle block with multiple format attributes. 20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
|
block-sentinel-attribute.c | 3 void (^e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1))); variable 6 void (^bbad) (int arg, const char * format) __attribute__ ((__sentinel__)) ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} local 7 bbad = ^void (int arg, const char * format) __attribute__ ((__sentinel__)) {} ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} 8 void (^b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)) = // expected-note {{block has been explicitly marked sentinel here}} local 9 ^ __attribute__ ((__sentinel__)) (int arg, const char * format, ...) {}; 10 void (^z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))) = ^ __attribute__ ((__sentinel__ (2))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}} local 13 void (^y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))) = ^ __attribute__ ((__sentinel__ (5))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}} local
|
/external/clang/tools/clang-format/ |
clang-format.el | 1 ;;; Clang-format emacs integration for use with C/Objective-C/C++. 3 ;; This defines a function clang-format-region that you can bind to a key. 6 ;; (load "<path-to-clang>/tools/clang-format/clang-format.el") 7 ;; (global-set-key [C-M-tab] 'clang-format-region) 10 ;; 'style' in clang-format, below. 14 ;; *Location of the clang-format binary. If it is on your PATH, a full path name 16 (defvar clang-format-binary "clang-format") 18 (defun clang-format-region ( [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
package-info.java | 4 package android.filterfw.format;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
results_reporter.hpp | 40 class BOOST_TEST_DECL format { class in namespace:boost::unit_test::results_reporter 43 virtual ~format() {} 61 BOOST_TEST_DECL void set_format( results_reporter::format* );
|
/external/icu4c/i18n/unicode/ |
choicfmt.h | 18 * 07/22/98 stephen Removed operator!= (implemented in Format) 29 * \brief C++ API: Choice Format. 36 #include "unicode/format.h" 154 * fmt.format(x, str); 243 * Clones this Format object. The caller owns the 249 virtual Format* clone(void) const; 252 * Returns true if the given Format objects are semantically equal. 259 virtual UBool operator==(const Format& other) const; 300 * parsed with that format,and should be in 304 * @param formatsToCopy The format strings you want to use for each limit 663 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat 672 ChoiceFormat::format(double number, function in class:ChoiceFormat 678 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
SDL_mixer.c | 95 Uint16 format; local 100 /* Mix the user-level audio format */ 103 format = current_audio->convert.src_format; 105 format = current_audio->spec.format; 109 format = AUDIO_S16; 111 switch (format) { 260 SDL_SetError("SDL_MixAudio(): unknown audio format");
|
/frameworks/base/tools/layoutlib/bridge/src/android/text/format/ |
DateFormat_Delegate.java | 17 package android.text.format;
|
/cts/tests/src/android/text/format/cts/ |
LocaleUtils.java | 17 package android.text.format.cts;
|
/cts/tools/vm-tests-tf/src/dot/junit/format/f1/d/ |
T_f1_0.java | 17 package dot.junit.format.f1.d;
|
/external/chromium_org/build/android/pylib/utils/ |
run_tests_helper.py | 23 def format(self, record): member in class:CustomFormatter 26 msg = logging.Formatter.format(self, record)
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
choicfmt.h | 18 * 07/22/98 stephen Removed operator!= (implemented in Format) 29 * \brief C++ API: Choice Format. 37 #include "unicode/format.h" 85 * <p><em>String</em> is the format string for this range, with special 207 * fmt.format(x, str); 234 * Format* testFormats[] = 245 * pattform.format(testArgs, 2, str, fp, status ); 333 * Clone this Format object polymorphically. The caller owns the 339 virtual Format* clone(void) const; 342 * Return true if the given Format objects are semantically equal 725 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat 734 ChoiceFormat::format(double number, function in class:ChoiceFormat 740 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/fbdev/ |
fbdev_sw_winsys.h | 37 enum pipe_format format; member in struct:fbdev_sw_drawable
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) { 51 Format format = curr->factory()(stream); local 57 if (format != kUnknown_Format) { 58 return format;
|
/external/chromium_org/tools/grit/grit/format/ |
repack.py | 9 for details about the file format. 17 import grit.format.data_pack namespace 24 grit.format.data_pack.RePack(argv[1], argv[2:])
|
/external/libexif/libexif/ |
exif-format.c | 1 /* exif-format.c 23 #include <libexif/exif-format.h> 28 /*! Table of data format types, descriptions and sizes. 33 ExifFormat format; member in struct:__anon20340 53 exif_format_get_name (ExifFormat format) 67 if (ExifFormatTable[i].format == format) 73 exif_format_get_size (ExifFormat format) 78 if (ExifFormatTable[i].format == format) [all...] |
/external/libvorbis/doc/ |
08-residue.tex | 23 \subsection{Residue format} 25 Residue format partitions each vector in the vector bundle into chunks, 72 \captionof{figure}{illustration of residue vector format} 243 Format 0 and 1 packet decode is identical except for specific 244 partition interleave. Format 2 packet decode can be built out of the 245 format 1 decode process. Thus we describe first the decode 271 2) if residue encoding is format 2 350 \subsubsection{format 0 specifics} 352 Format zero decodes partitions exactly as described earlier in the 353 'Residue Format: residue 0' section. The following pseudocod [all...] |
/external/mesa3d/src/gallium/winsys/sw/fbdev/ |
fbdev_sw_winsys.h | 37 enum pipe_format format; member in struct:fbdev_sw_drawable
|
/external/oprofile/libutil++/ |
stream_util.h | 34 std::ios::fmtflags format; member in class:io_state
|
/external/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) { 51 Format format = curr->factory()(stream); local 57 if (format != kUnknown_Format) { 58 return format;
|
/frameworks/base/core/tests/coretests/src/android/text/format/ |
DateFormatTest.java | 17 package android.text.format;
|
DateUtilsTest.java | 17 package android.text.format;
|