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

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/graphics/jni/
android_graphics_cts_BitmapTest.cpp 34 int32_t format = is565 ? ANDROID_BITMAP_FORMAT_RGB_565 : ANDROID_BITMAP_FORMAT_RGBA_8888; local
35 ASSERT_EQ(format, info.format);
  /cts/tools/vm-tests-tf/src/dot/junit/format/
AllTests.java 17 package dot.junit.format;
35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class);
  /external/ImageMagick/coders/
info.c 85 % RegisterINFOImage() adds attributes for the INFO image format to
86 % the list of supported formats. The attributes include the image format
87 % tag, a method to read and/or write the format, whether the format
89 % whether the format supports native in-memory I/O, and a brief
90 % description of the format.
92 % The format of the RegisterINFOImage method is:
103 "The image format and characteristics");
122 % UnregisterINFOImage() removes format registrations made by the
125 % The format of the UnregisterINFOImage method is
162 *format; local
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/field/
AnnotationAFT.java 53 public String format(Object o) { method in class:AnnotationAFT
ClassTokenAFT.java 56 public String format(Object o) { method in class:ClassTokenAFT
EnumAFT.java 48 public String format(Object o) { method in class:EnumAFT
  /external/bsdiff/
bsdiff_arguments.h 17 // Class to store the patch writer options about format, type and quality.
25 BsdiffArguments(BsdiffFormat format, CompressorType type, int quality)
26 : format_(format),
30 // Check if the compressor type is compatible with the bsdiff format.
34 BsdiffFormat format() const { return format_; } function in class:bsdiff::BsdiffArguments
52 // Parse the bsdiff format from string.
53 static bool ParseBsdiffFormat(const std::string& str, BsdiffFormat* format);
59 // Current format supported are the legacy "BSDIFF40" or "BSDF2".
bsdiff_arguments_unittest.cc 25 BsdiffFormat format; local
26 EXPECT_TRUE(BsdiffArguments::ParseBsdiffFormat("bsdf2", &format));
27 EXPECT_EQ(BsdiffFormat::kBsdf2, format);
29 EXPECT_TRUE(BsdiffArguments::ParseBsdiffFormat("Legacy", &format));
30 EXPECT_EQ(BsdiffFormat::kLegacy, format);
32 EXPECT_TRUE(BsdiffArguments::ParseBsdiffFormat("bsdiff40", &format));
33 EXPECT_EQ(BsdiffFormat::kLegacy, format);
35 EXPECT_TRUE(BsdiffArguments::ParseBsdiffFormat("endsley", &format));
36 EXPECT_EQ(BsdiffFormat::kEndsley, format);
38 EXPECT_FALSE(BsdiffArguments::ParseBsdiffFormat("Other", &format));
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
InvalidBenchmarkException.java 25 super(String.format(message, fixArgs(args)));
InvalidInstrumentException.java 25 super(String.format(message, args));
  /external/clang/lib/Format/
UnwrappedLineFormatter.h 1 //===--- UnwrappedLineFormatter.h - Format C++ code -------------*- C++ -*-===//
20 #include "clang/Format/Format.h"
26 namespace format { namespace in namespace:clang
41 /// \brief Format the current block and return the penalty.
42 unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines,
70 } // end namespace format
  /external/clang/unittests/Format/
FormatTestJava.cpp 1 //===- unittest/Format/FormatTestJava.cpp - Formatting tests for Java -----===//
11 #include "clang/Format/Format.h"
15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
22 static std::string format(llvm::StringRef Code, unsigned Offset, function in class:clang::format::FormatTestJava
35 format(llvm::StringRef Code, function in class:clang::format::FormatTestJava
37 return format(Code, 0, Code.size(), Style);
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
502 format("\"some text other\";", getStyleWithColumns(14)))
    [all...]
FormatTestProto.cpp 1 //===- unittest/Format/FormatTestProto.cpp --------------------------------===//
11 #include "clang/Format/Format.h"
15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
22 static std::string format(llvm::StringRef Code, unsigned Offset, function in class:clang::format::FormatTestProto
34 static std::string format(llvm::StringRef Code) { function in class:clang::format::FormatTestProto
37 return format(Code, 0, Code.size(), Style);
41 EXPECT_EQ(Code.str(), format(test::messUp(Code)));
144 format("option java_package =
    [all...]
FormatTestSelective.cpp 1 //===- unittest/Format/FormatTestSelective.cpp - Formatting unit tests ----===//
11 #include "clang/Format/Format.h"
15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length) { function in class:clang::format::__anon17069::FormatTestSelective
41 EXPECT_EQ("int a;\nint b;", format("int a; \nint b;", 0, 0));
42 EXPECT_EQ("int a;", format("int a; ", 0, 0));
43 EXPECT_EQ("int a;\n", format("int a; \n \n \n ", 0, 0));
44 EXPECT_EQ("int a;\nint b; ", format("int a; \nint b; ", 0, 0))
    [all...]
FormatTestUtils.h 1 //===- unittest/Format/FormatTestUtils.h - Formatting unit tests ----------===//
10 // This file defines utility functions for Clang-Format related tests.
20 namespace format { namespace in namespace:clang
64 } // end namespace format
  /external/conscrypt/common/src/main/java/org/conscrypt/
Preconditions.java 58 * @param errorMessageTemplate the format string to be passed to {@link String#format(String,
60 * @param arg the format argument to be passed to {@link String#format(String, Object...)}
65 throw new IllegalArgumentException(String.format(errorMessageTemplate, arg));
96 return String.format("end index (%s) must not be less than start index (%s)", end, start);
101 return String.format("%s (%s) must not be negative", desc, index);
105 return String.format("%s (%s) must not be greater than size (%s)", desc, index, size);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
KeyFormatter.java 26 @Override public String format(Key request) { method in class:KeyFormatter
  /external/deqp/framework/opengl/simplereference/
sglrContext.cpp 44 deUint32 format = GL_NONE; local
54 format = internalFormat;
61 format = transferFmt.format;
67 texImage2D(target, level, internalFormat, width, height, 0, format, dataType, DE_NULL);
  /external/devlib/devlib/utils/
types.py 78 raise ValueError('Not numeric: {}'.format(value))
83 raise ValueError('Not numeric: {}'.format(value))
111 def format(self, *args, **kwargs): member in class:caseless_string
112 return caseless_string(super(caseless_string, self).format(*args, **kwargs))
  /external/elfutils/libebl/
eblauxvinfo.c 78 const char *name, *format; member in struct:__anon20125
89 const char **format)
91 int result = ebl->auxv_info (a_type, name, format);
96 *format = auxv_types[a_type].format;
  /external/freetype/include/freetype/internal/services/
svttcmap.h 50 /* format :: */
51 /* The cmap format. OpenType 1.6 defines the formats 0 (byte */
61 FT_Long format; member in struct:TT_CMapInfo_
  /external/guava/guava/src/com/google/common/base/
Verify.java 17 import static com.google.common.base.Preconditions.format;
78 * format string, {@code Verify} will still behave as expected, and will still include all argument
123 throw new VerifyException(format(errorMessageTemplate, errorMessageArgs)); method
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 50 static String format(String template, Object... args) { method in class:Platform
51 return String.format(template, args);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 30 * Format the template with args, only supports the placeholder
33 static String format(String template, Object... args) { method in class:Platform
34 return String.format(template, args);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
DateFormatter.java 24 * Format the date, provided as a java Date object.
29 String format(Date date); method in interface:DateFormatter
32 * Format the date, provided as milliseconds.
37 String format(long date); method in interface:DateFormatter

Completed in 685 milliseconds

1 2 34 5 6 7 8 91011>>