HomeSort by relevance Sort by last modified time
    Searched defs:format (Results 1 - 25 of 2193) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
char-escapes.c 22 const char *format = "abc \m def"; // expected-warning{{unknown escape sequence '\m'}} variable
  /external/clang/tools/clang-format/
clang-format.el 1 ;;; clang-format.el --- Format code using clang-format
8 ;; This package allows to filter code through clang-format to fix its formatting.
9 ;; clang-format is a tool that formats C/C++/Obj-C code according to a set of
11 ;; Note that clang-format 3.4 or newer is required.
13 ;; clang-format.el is available via MELPA and can be installed via
15 ;; M-x package-install clang-format
21 ;; (require 'clang-format)
25 ;; You may also want to bind `clang-format-region' to a key
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
unbirthday.py 47 print 'You were born on', format(bdaytuple)
51 print 'Today is', format(todaytuple)
78 def format((year, month, day)): function
  /external/clang/lib/Format/
SortJavaScriptImports.h 19 #include "clang/Format/Format.h"
24 namespace format { namespace in namespace:clang
33 } // end namespace format
AffectedRangeManager.h 1 //===--- AffectedRangeManager.h - Format C++ code ---------------*- C++ -*-===//
21 namespace format { namespace in namespace:clang
64 } // namespace format
  /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/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex.h 55 GLuint format, filter; member in struct:tx_table
  /external/pdfium/fxjs/xfa/
cjx_encrypt.cpp 21 void CJX_Encrypt::format(CFXJSE_Value* pValue, function in class:CJX_Encrypt
  /external/python/cpython2/Demo/scripts/
unbirthday.py 47 print 'You were born on', format(bdaytuple)
51 print 'Today is', format(todaytuple)
78 def format((year, month, day)): function
  /external/autotest/client/cros/cellular/pseudomodem/
logging_setup.py 18 Format log strings such that rsyslogd handles them correctly.
30 def format(self, record): member in class:ModemManagerFormatter
38 result = super(ModemManagerFormatter, self).format(record)
  /external/chromium-trace/catapult/devil/devil/utils/
logging_common.py 42 def format(self, record): member in class:CustomFormatter
45 msg = logging.Formatter.format(self, record)
  /external/perf_data_converter/src/quipper/
conversion_utils.h 14 // Format string for perf.data.
17 // Format string for protobuf text format.
20 // Structure to hold the format and file of an input or output.
25 // The format of the file. Options are "perf" for perf data files, "text" for
27 string format; member in struct:quipper::FormatAndFile
30 // Convert a perf file from one format to another.
  /external/skia/src/gpu/ccpr/
GrCCClipPath.cpp 19 const GrBackendFormat format = caps.getBackendFormatFromGrColorType(GrColorType::kAlpha_F16, local
46 format, GrProxyProvider::Renderable::kYes, kTopLeft_GrSurfaceOrigin,
  /external/skqp/src/gpu/ccpr/
GrCCClipPath.cpp 19 const GrBackendFormat format = caps.getBackendFormatFromGrColorType(GrColorType::kAlpha_F16, local
46 format, GrProxyProvider::Renderable::kYes, kTopLeft_GrSurfaceOrigin,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
Formatters.h 27 static void format(const pdb::PdbRaw_ImplVer &V, llvm::raw_ostream &Stream, function in struct:llvm::format_provider
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
OpcodeInfo.java 23 * about that kind of instruction, including the Format that allows us to read the
30 public final AbstractFormat format; field in class:OpcodeInfo
39 this.format = fmt;
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorTestPlatformException.java 24 public SensorTestPlatformException(String format, Object ... params) {
25 this(String.format(format, params));
SensorTestStateNotSupportedException.java 25 public SensorTestStateNotSupportedException(String format, Object ... params) {
26 super(String.format(format, params));
  /cts/tests/tests/location/src/android/location/cts/
MultiConstellationNotSupportedException.java 23 public MultiConstellationNotSupportedException(String format, Object... params) {
24 this(String.format(format, params));
  /cts/tests/tests/text/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/ImageMagick/Magick++/fuzz/
encoder_format.h 13 std::wstring format=fileName; local
15 size_t index = format.find(L"_", 0);
19 format=format.substr(index + 1);
20 index = format.find(L"_", 0);
22 _format=format.substr(0, index);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ContributionBindingFormatter.java 36 @Override public String format(ContributionBinding binding) { method in class:ContributionBindingFormatter
40 return methodSignatureFormatter.format(asExecutable(binding.bindingElement()));
46 return methodSignatureFormatter.format(
Formatter.java 33 public abstract String format(T object); method in class:Formatter
38 * to {@link #format(Object)}.
40 * @deprecated Call {@link #format(T)} instead. This method exists to make
46 return format(object);

Completed in 944 milliseconds

1 2 3 4 5 6 7 8 91011>>