HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 751 - 775 of 4595) sorted by null

<<31323334353637383940>>

  /cts/tools/vm-tests-tf/src/dot/junit/
AllTests.java 36 suite.addTest(dot.junit.format.AllTests.suite());
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 27 * A decoded Dalvik instruction. This consists of a format codec, a
33 * match the names given in the Dalvik instruction format
40 /** non-null; instruction format / codec */
41 private final InstructionCodec format; field in class:DecodedInstruction
61 * constants (format 20bc) as well as should-be-zero values
72 InstructionCodec format = OpcodeInfo.getFormat(opcode); local
74 return format.decode(opcodeUnit, in);
101 public DecodedInstruction(InstructionCodec format, int opcode,
103 if (format == null) {
104 throw new NullPointerException("format == null")
    [all...]
  /development/ndk/platforms/android-8/include/android/
bitmap.h 47 int32_t format; member in struct:__anon1274
  /development/ndk/platforms/android-9/include/android/
bitmap.h 46 int32_t format; member in struct:__anon1433
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Serializer.java 122 * identical to the output format used with the writer.
139 * Specifies an output format for this serializer. It the
140 * serializer has already been associated with an output format,
141 * it will switch to the new format. This method should not be
160 * value is passed in this format: {uri}localName
167 * @param format The output format to use, as a set of key/value pairs.
169 public void setOutputFormat(Properties format);
172 * Returns the output format properties for this serializer.
174 * @return The output format key/value pairs in use
    [all...]
  /external/chromium/base/i18n/
number_formatting.cc 46 number_format->format(number, ustr);
  /external/chromium/third_party/libevent/
log.h 31 #define EV_CHECK_FMT(a,b) __attribute__((format(printf, a, b)))
  /external/clang/include/clang/Format/
Format.h 1 //===--- Format.h - Format C++ code -----------------------------*- C++ -*-===//
11 /// Various functions to configurably format source code.
27 namespace format { namespace in namespace:clang
56 /// \brief Format compatible with this standard, e.g. use \c A<A<int> >
96 /// \brief Returns a format style complying with the LLVM coding standards:
100 /// \brief Returns a format style complying with Google's C++ style guide:
104 /// \brief Returns a format style complying with Chromium's style guide:
128 } // end namespace format
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 27 * A decoded Dalvik instruction. This consists of a format codec, a
33 * match the names given in the Dalvik instruction format
40 /** non-null; instruction format / codec */
41 private final InstructionCodec format; field in class:DecodedInstruction
72 InstructionCodec format = OpcodeInfo.getFormat(opcode); local
74 return format.decode(opcodeUnit, in);
101 public DecodedInstruction(InstructionCodec format, int opcode,
103 if (format == null) {
104 throw new NullPointerException("format == null");
111 this.format = format
    [all...]
  /external/dnsmasq/src/
log.c 259 void my_syslog(int priority, const char *format, ...)
282 va_start(ap, format);
283 vfprintf(stderr, format, ap);
297 va_start(ap, format);
298 __android_log_vprint(alog_lvl, "dnsmasq", format, ap);
311 va_start(ap, format);
312 vsyslog(priority, format, ap);
345 va_start(ap, format);
346 len += vsnprintf(p, MAX_MESSAGE - len, format, ap) + 1; /* include zero-terminator */
  /external/e2fsprogs/intl/
printf-parse.h 1 /* Parse printf format string.
53 /* A parsed format string. */
64 /* Parses the format string. Fills in the number N of directives, and fills
66 to the end of the format string. Also fills in the arg_type fields of the
73 int printf_parse (const char *format, char_directives *d, arguments *a);
wprintf-parse.h 1 /* Parse printf format string.
53 /* A parsed format string. */
64 /* Parses the format string. Fills in the number N of directives, and fills
66 to the end of the format string. Also fills in the arg_type fields of the
73 int wprintf_parse (const wchar_t *format, wchar_t_directives *d, arguments *a);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
ant 114 # For Cygwin, ensure paths are in UNIX format before anything is touched
243 # For Cygwin, switch paths to appropriate format before running java
244 # For PATHs convert to unix format first, then to windows format to ensure
250 format=mixed
252 format=windows
254 ANT_HOME=`cygpath --$format "$ANT_HOME"`
255 ANT_LIB=`cygpath --$format "$ANT_LIB"`
256 JAVA_HOME=`cygpath --$format "$JAVA_HOME"`
258 LOCALCLASSPATH=`cygpath --path --$format "$LCP_TEMP"`
    [all...]
  /external/freetype/include/freetype/internal/services/
svttcmap.h 52 /* format :: */
53 /* The cmap format. OpenType 1.5 defines the formats 0 (byte */
62 FT_Long format; member in struct:TT_CMapInfo_
  /external/icu4c/samples/msgfmt/answers/
main_2.cpp 14 // The message format pattern. It takes a single argument, an integer,
27 // Create a message format
36 // Format the arguments
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
main_3.cpp 14 // The message format pattern. It takes a single argument, an integer,
27 // Create a message format
36 // Format the arguments
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
  /external/icu4c/samples/msgfmt/
main.cpp 14 // The message format pattern. It takes a single argument, an integer,
27 // Create a message format
36 // Format the arguments
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 43 * human readable form. The format of the returned {@code String} is not
50 return String.format("Expression: %s; From: %s; To: %s",
  /external/kernel-headers/original/linux/
kmod.h 31 extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2)));
  /external/libxslt/libxslt/
numbersInternals.h 33 const xmlChar *format; member in struct:_xsltNumberData
49 * This data structure lists the various parameters needed to format numbers.
  /external/linux-tools-perf/util/ui/
util.c 117 void ui__warning(const char *format, ...)
121 va_start(args, format);
125 (char *)format, args);
128 vfprintf(stderr, format, args);
  /external/oprofile/gui/
oprof_start_util.h 34 std::string const format(std::string const & orig, uint const maxlen);
  /external/qemu/android/
opengles.h 31 int format, int type, unsigned char* pixels);
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_stfa.c 205 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
206 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
207 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
233 DEBUG_PRINT((DEBUG_NAME "obtained: %d bits, ",spec->format & 0x00ff));
234 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
235 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
254 /* Select replay format */
256 if ((spec->format & 0xff)==8) {
266 if ((spec->format & 0x8000)!=0) {
271 if ((spec->format & 0x1000)!=0)
    [all...]

Completed in 755 milliseconds

<<31323334353637383940>>