HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 551 - 575 of 1259) sorted by null

<<21222324252627282930>>

  /external/google-breakpad/src/testing/gtest/src/
gtest-printers.cc 179 *os << String::Format("\\x%X", static_cast<UnsignedChar>(c));
215 const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os); local
223 *os << " (" << String::Format("%d", c).c_str();
228 if (format == kHexEscape || (1 <= c && c <= 9)) {
231 *os << String::Format(", 0x%X",
  /external/icu/icu4c/source/i18n/unicode/
rbnf.h 17 * \brief C++ API: Rule Based Number Format
94 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
110 * isolate the number's ones digit, format it using this same set of rules, and place the
186 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
192 * where the base value would be. This rule is used to format all negative numbers. the
193 * &gt;&gt; token here means &quot;find the number's absolute value, format it with these
221 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.
326 * on whether it is used to format a number's integral part (or the whole number) or a
327 * number's fractional part. Using a rule set to format a rule's fractional part makes it
    [all...]
  /external/libpng/projects/visualc71/
README_zlib.txt 5 Microsoft Developer Studio Project File, Format Version 7.10 for zlib.
  /external/llvm/include/llvm/Object/
Archive.h 1 //===- Archive.h - ar archive file format -----------------------*- C++ -*-===//
10 // This file declares the ar archive file format class.
197 Kind kind() const { return (Kind)Format; }
237 unsigned Format : 3;
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 75 switch (Opts.Format) {
81 llvm_unreachable("Unknown coverage output format!");
113 switch (Options.Format) {
121 llvm_unreachable("Unknown coverage output format!");
CodeCoverage.cpp 28 #include "llvm/Support/Format.h"
311 cl::opt<CoverageViewOptions::OutputFormat> Format(
312 "format", cl::desc("Output format for line-based coverage reports"),
371 ViewOpts.Format = Format;
372 switch (ViewOpts.Format) {
588 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML)
  /external/llvm/utils/unittest/googletest/src/
gtest-printers.cc 187 *os << String::Format("\\x%X", static_cast<UnsignedChar>(c));
223 const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os); local
231 *os << " (" << String::Format("%d", c).c_str();
236 if (format == kHexEscape || (1 <= c && c <= 9)) {
239 *os << String::Format(", 0x%X",
  /external/mesa3d/src/gtest/src/
gtest-printers.cc 187 *os << String::Format("\\x%X", static_cast<UnsignedChar>(c));
223 const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os); local
231 *os << " (" << String::Format("%d", c).c_str();
236 if (format == kHexEscape || (1 <= c && c <= 9)) {
239 *os << String::Format(", 0x%X",
  /external/skia/src/core/
SkGlyph.h 21 // needs to be != to any valid SkMask::Format
171 * Compute the rowbytes for the specified width and mask-format.
173 static unsigned ComputeRowBytes(unsigned width, SkMask::Format format) {
175 if (SkMask::kBW_Format == format) {
177 } else if (SkMask::kARGB32_Format == format) {
179 } else if (SkMask::kLCD16_Format == format) {
208 return ComputeRowBytes(fWidth, (SkMask::Format)fMaskFormat);
  /external/skia/src/effects/shadows/
SkAmbientShadowMaskFilter.cpp 28 SkMask::Format getFormat() const override;
96 SkMask::Format SkAmbientShadowMaskFilterImpl::getFormat() const {
  /external/swiftshader/src/OpenGL/libGLES_CM/
Texture.h 85 virtual sw::Format getInternalFormat(GLenum target, GLint level) const = 0;
105 void setImage(GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, egl::Image *image);
106 void subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, egl::Image *image);
108 void subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, egl::Image *image);
143 virtual sw::Format getInternalFormat(GLenum target, GLint level) const;
146 void setImage(GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
147 void setCompressedImage(GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels);
148 void subImage(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
149 void subImageCompressed(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels);
150 void copyImage(GLint level, GLenum format, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-printers.cc 187 *os << String::Format("\\x%X", static_cast<UnsignedChar>(c));
223 const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os); local
231 *os << " (" << String::Format("%d", c).c_str();
236 if (format == kHexEscape || (1 <= c && c <= 9)) {
239 *os << String::Format(", 0x%X",
  /libcore/ojluni/src/main/java/java/text/
DateFormat.java 66 * <p>{@code DateFormat} helps you to format and parse dates for any locale.
68 * months, days of the week, or even the calendar format: lunar vs. solar.
70 * <p>To format a date for the current Locale, use one of the
74 * myString = DateFormat.getDateInstance().format(myDate);
78 * more efficient to get the format and use it multiple times so that
85 * output.println(df.format(myDate[i]) + "; ");
89 * <p>To format a date for a different Locale, specify it in the
102 * <p>Use {@code getDateInstance} to get the normal date format for that country.
104 * Use {@code getTimeInstance} to get the time format for that country.
105 * Use {@code getDateTimeInstance} to get a date and time format. You can pass i
297 public final StringBuffer format(Object obj, StringBuffer toAppendTo, method in class:DateFormat
331 public abstract StringBuffer format(Date date, StringBuffer toAppendTo, method in class:DateFormat
339 public final String format(Date date) method in class:DateFormat
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10_1.idl 103 DXGI_FORMAT Format;
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_windows_test.go 17 t2, err := Parse(RFC1123, t1.Format(RFC1123))
  /prebuilts/go/linux-x86/src/time/
zoneinfo_windows_test.go 17 t2, err := Parse(RFC1123, t1.Format(RFC1123))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/drawable/
DrawableDescriptors.java 21 import com.android.ide.common.api.IAttributeInfo.Format;
215 new AttributeInfo("drawable", Format.REFERENCE_SET))
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 20 import com.android.ide.common.api.IAttributeInfo.Format;
48 new AttributeInfo(xmlName, Format.STRING_SET)
  /sdk/find_java2/src/
FindJava2Dlg.cpp 130 msg.Format(_T("Insufficient Java Version found: expected %s, got %s"),
134 msg.Format(_T("No valid Java Version found for %s"), path);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
String.py 109 # Parse a string with format "DEFINE <VarName> = <PATH>"
111 # Return False if invalid format
134 # Parse a string with format "!include <Filename>"
136 # Return False if invalid format or NOT FOUND
306 # To local path format
691 # @param Format: Correct format
693 def RaiseParserError(Line, Section, File, Format='', LineNo= -1):
697 if Format != '':
698 Format = "Correct format is " + Format
    [all...]
  /external/icu/icu4c/source/i18n/
plurfmt.cpp 138 : Format(other),
204 PluralFormat::format(const Formattable& obj, function in class:PluralFormat
212 return format(obj, obj.getDouble(), appendTo, pos, status);
220 PluralFormat::format(int32_t number, UErrorCode& status) const { function in class:PluralFormat
223 return format(Formattable(number), number, result, fpos, status);
227 PluralFormat::format(double number, UErrorCode& status) const { function in class:PluralFormat
230 return format(Formattable(number), number, result, fpos, status);
235 PluralFormat::format(int32_t number, function in class:PluralFormat
239 return format(Formattable(number), (double)number, appendTo, pos, status);
243 PluralFormat::format(double number function in class:PluralFormat
251 PluralFormat::format(const Formattable& numberObject, double number, function in class:PluralFormat
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast.c 259 _mesa_problem( NULL, "unexpected format in %s", __FUNCTION__ );
349 rb->Format = MESA_FORMAT_ARGB8888;
355 rb->Format = MESA_FORMAT_ARGB8888; /* XXX */
361 rb->Format = MESA_FORMAT_RGB565;
367 rb->Format = MESA_FORMAT_RGB332;
389 int cpp = _mesa_get_format_bytes(rb->Format);
637 GLenum format,
642 return _mesa_choose_tex_format(ctx, target, internalFormat, format, type);
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 477 /* src and dst renderbuffers must be same format */
478 if (!srcRb || !dstRb || srcRb->Format != dstRb->Format) {
484 if (_mesa_is_format_packed_depth_stencil(srcRb->Format) ||
485 _mesa_is_format_packed_depth_stencil(dstRb->Format))
503 pixelBytes = _mesa_get_format_bytes(srcRb->Format);
s_span.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Parsing.py 51 # Parse a string with format "[<Family>:]<ToolFlag>=Flag"
136 Format = '<TokenSpaceGuidCName>.<PcdCName>'
142 RaiseParserError(TokenInfoString, Section, File, Format, LineNo)
392 # Parse a string with format "InfFilename [EXEC = ExecFilename]"
606 #convert C-Format Guid to Register Format
651 Format = '<TokenSpaceGuidCName>.<PcdCName>[|<Value>]'
667 RaiseParserError(Item, InfType, File, Format, LineNo)
688 Format = '<TokenSpaceGuidCName>.<PcdCName>|<Value>|<DatumType>|<Token>'
692 RaiseParserError(Item, 'Pcds' + Type, File, Format, LineNo)
    [all...]

Completed in 1589 milliseconds

<<21222324252627282930>>