HomeSort by relevance Sort by last modified time
    Searched defs:format (Results 51 - 75 of 4676) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/clang/lib/Format/
AffectedRangeManager.h 1 //===--- AffectedRangeManager.h - Format C++ code ---------------*- C++ -*-===//
21 namespace format { namespace in namespace:clang
64 } // namespace format
  /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);
  /external/deqp/framework/opengl/
gluTextureUtil.hpp 23 * \brief Texture format utilities.
40 * \brief GL pixel transfer format.
44 deUint32 format; //!< Pixel format. member in struct:glu::TransferFormat
48 : format (0)
54 : format (format_)
60 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType);
62 tcu::CompressedTexFormat mapGLCompressedTexFormat (deUint32 format);
69 TransferFormat getTransferFormat (tcu::TextureFormat format);
70 deUint32 getInternalFormat (tcu::TextureFormat format);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
PeriodFormatter.java 15 * The Period defines the fields to format and their
16 * values, and the formatter defines how to format them.
29 * Format a Period.
31 * @param ts the Period to format
34 String format(Period period); method in interface:PeriodFormatter
  /external/icu/icu4c/source/i18n/
currfmt.cpp 39 Format* CurrencyFormat::clone() const {
43 UnicodeString& CurrencyFormat::format(const Formattable& obj, function in class:CurrencyFormat
48 return fmt->format(obj, appendTo, pos, ec);
  /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:__anon24776
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/mesa3d/src/mesa/drivers/dri/r200/
r200_tex.h 56 GLuint format, filter; member in struct:tx_table
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DirectoryListingFormatter.java 20 * Interface for an object that can format a file system directory listing.
28 * Format the directory listing for a single file/directory entry.
33 String format(FileSystemEntry fileSystemEntry); method in interface:DirectoryListingFormatter
  /external/pdfium/core/fxge/dib/
cfx_filtereddib.cpp 19 FXDIB_Format format = GetDestFormat(); local
20 m_bpp = static_cast<uint8_t>(format);
21 m_AlphaFlag = static_cast<uint8_t>(format >> 8);
22 m_Pitch = (m_Width * (format & 0xff) + 31) / 32 * 4;
  /external/skia/tools/skpbench/
_benchresult.py 59 def format(self, config_suffix=None): member in class:BenchResult
  /external/skqp/tools/skpbench/
_benchresult.py 59 def format(self, config_suffix=None): member in class:BenchResult
  /external/testng/src/main/java/org/testng/log/
TextFormatter.java 17 public synchronized String format(LogRecord record) { method in class:TextFormatter
  /frameworks/base/tools/stringslint/
stringslint.py 30 def format(fg=None, bg=None, bright=False, bold=False, dim=False, reset=False): function
49 value = "%sLine %d: '%s':%s %s" % (format(fg=YELLOW, bold=True),
52 format(reset=True),
54 if not actual is None: value += "\n\tActual: %s%s%s" % (format(dim=True),
56 format(reset=True))
57 if not expected is None: value += "\n\tExample: %s%s%s" % (format(dim=True),
59 format(reset=True))
  /libcore/ojluni/src/main/java/java/time/format/
ResolverStyle.java 62 package java.time.format;
  /libcore/ojluni/src/test/java/time/test/java/time/format/
MockIOExceptionAppendable.java 60 package test.java.time.format;
  /prebuilts/go/darwin-x86/src/go/format/
format.go 5 // Package format implements standard formatting of Go source.
6 package format package
59 return fmt.Errorf("format.Node internal error (%s)", err)
99 return format(fset, file, sourceAdj, indentAdj, src, config)
  /prebuilts/go/linux-x86/src/go/format/
format.go 5 // Package format implements standard formatting of Go source.
6 package format package
59 return fmt.Errorf("format.Node internal error (%s)", err)
99 return format(fset, file, sourceAdj, indentAdj, src, config)
  /external/annotation-tools/scene-lib/src/annotations/field/
ArrayAFT.java 63 public String format(Object o) { method in class:ArrayAFT
71 result.append(elementType.format(elt));
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
InstanceAdapter.java 24 private final String format; field in class:InstanceAdapter
26 public InstanceAdapter(String format) {
27 this.format = format;
32 view.setText(String.format(format, text, "foo", "bar", "baz"));
37 view.setText(String.format(format, text, text2, "foo", "bar"));
42 view.setText(String.format(format, oldText, text, "foo", "bar"))
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
ChoiceFormatTest.java 17 * Format strings for {@link ChoiceFormat}, will be modified by some tests to ensure that
23 ChoiceFormat format = new ChoiceFormat(limits, formats); local
25 verifyChoiceFormatCopiesSuppliedArrays(format);
29 ChoiceFormat format = new ChoiceFormat(new double[] { 0 }, new String[] { "" }); local
30 assertEquals("", format.format(1.4));
33 format.setChoices(limits, formats);
35 verifyChoiceFormatCopiesSuppliedArrays(format);
38 private void verifyChoiceFormatCopiesSuppliedArrays(ChoiceFormat format) {
39 assertEquals("one", format.format(1.4))
53 ChoiceFormat format = new ChoiceFormat(limits, formats); local
65 ChoiceFormat format = new ChoiceFormat(limits, formats); local
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
ResourceException.java 27 super(String.format(message, uri1.toString()), e);
31 super(String.format(message, uri1.toString(), uri2.toString()), e);
39 super(String.format(message, uri1.toString()));
43 super(message.format(uri1.toString(), uri2.toString()));

Completed in 1036 milliseconds

1 23 4 5 6 7 8 91011>>