/external/swiftshader/src/OpenGL/libGLES_CM/ |
utilities.cpp | 28 bool IsCompressed(GLenum format) 30 return format == GL_COMPRESSED_RGB_S3TC_DXT1_EXT || 31 format == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT || 32 format == GL_ETC1_RGB8_OES; 35 bool IsDepthTexture(GLenum format) 37 return format == GL_DEPTH_STENCIL_OES; 40 bool IsStencilTexture(GLenum format) 42 return format == GL_DEPTH_STENCIL_OES; 70 // Verify that format/type are one of the combinations from table 3.4. 71 bool CheckTextureFormatType(GLenum format, GLenum type [all...] |
/external/toolchain-utils/crosperf/ |
results_report.py | 4 """A module to handle the report format.""" 19 from cros_utils.tabulator import Format 67 # Strip the date and time off of local builds (which have the format 147 .format(ben_name, iterations)) 160 new_column.extend(Column(LiteralResult(i), Format(), str(i + 1)) 218 """Class to handle the report format.""" 230 columns = [Column(RawResult(), Format()), 231 Column(MinResult(), Format()), 232 Column(MaxResult(), Format()), 233 Column(AmeanResult(), Format()), [all...] |
/device/linaro/bootloader/edk2/DuetPkg/ |
CreateBootDisk.sh | 74 echo Format $EFI_BOOT_MEDIA ... 75 ## Format floppy disk 160 echo Format $EFI_BOOT_DEVICE ... 161 #Do format command. 192 echo Format $EFI_BOOT_DEVICE ... 193 #Do format command.
|
/external/clang/include/clang/Frontend/ |
CompilerInstance.h | 519 assert(Invocation && "cannot determine module format without invocation"); 520 StringRef Format = getHeaderSearchOpts().ModuleFormat; 521 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format); 524 Diagnostics->Report(diag::err_module_format_unhandled) << Format; 525 llvm::report_fatal_error("unknown module format"); 533 assert(Invocation && "cannot determine module format without invocation"); 534 StringRef Format = getHeaderSearchOpts().ModuleFormat; 535 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format); 538 Diagnostics->Report(diag::err_module_format_unhandled) << Format; 539 llvm::report_fatal_error("unknown module format"); [all...] |
/external/icu/icu4c/source/test/testdata/break_rules/ |
word.txt | 24 Format = [\p{Word_Break = Format}]; 65 ExtFmt = [Extend Format ZWJ];
|
word_POSIX.txt | 23 Format = [\p{Word_Break = Format}]; 64 ExtFmt = [Extend Format ZWJ];
|
/external/swiftshader/src/OpenGL/libEGL/ |
Config.cpp | 15 // Config.cpp: Implements the egl::Config class, describing the format, type 37 Config::Config(sw::Format displayFormat, EGLint minInterval, EGLint maxInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample) 336 void ConfigSet::add(sw::Format displayFormat, EGLint minSwapInterval, EGLint maxSwapInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample)
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
Renderbuffer.cpp | 130 sw::Format RenderbufferTexture2D::getInternalFormat() const 207 sw::Format RenderbufferTexture3D::getInternalFormat() const 275 sw::Format RenderbufferTextureCubeMap::getInternalFormat() const 363 sw::Format Renderbuffer::getInternalFormat() const 425 format = GL_RGBA4; 446 return format; 449 sw::Format RenderbufferStorage::getInternalFormat() const 468 format = sw2es::ConvertBackBufferFormat(internalFormat); 473 Colorbuffer::Colorbuffer(int width, int height, GLenum format, GLsizei samples) : mRenderTarget(nullptr) 477 sw::Format requestedFormat = es2sw::ConvertRenderbufferFormat(format) [all...] |
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
TCKDateTimeFormatter.java | 60 package tck.java.time.format; 73 import java.text.Format; 93 import java.time.format.DecimalStyle; 94 import java.time.format.DateTimeFormatter; 95 import java.time.format.DateTimeFormatterBuilder; 96 import java.time.format.DateTimeParseException; 97 import java.time.format.SignStyle; 274 // format 365 String result = test.format(temporal); 369 test.format(temporal) 759 Format format = test.toFormat(); local 767 Format format = test.toFormat(); local 774 Format format = test.toFormat(); local 782 Format format = test.toFormat(); local 791 Format format = test.toFormat(); local 804 Format format = test.toFormat(); local 818 Format format = test.toFormat(); local 826 Format format = test.toFormat(); local 838 Format format = test.toFormat(); local 850 Format format = test.toFormat(); local 859 Format format = test.toFormat(); local 886 Format format = BASIC_FORMATTER.toFormat(); local 893 Format format = DATE_FORMATTER.toFormat(LocalDate::from); local 900 Format format = DATE_FORMATTER.toFormat(LocalDate::from); local [all...] |
/system/core/logd/ |
LogTags.cpp | 130 const std::string& Format, const char* source, 133 if (Format.length()) Key += "+" + Format; 149 if (Format.length()) { 153 tag2format[tag] = Format; 181 Format.c_str(), source); 243 const char* format = cp; local 253 while ((cp > format) && isspace(cp[-1])) { 257 std::string Format(format, cp - format) 813 const char* format = ""; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
DotTreeGenerator.cs | 172 yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString( childText ) ); 182 return string.Format( NodeFormat, uniqueName, FixString( text ) );
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/ |
DOTTreeGenerator.cs | 162 yield return string.Format(EdgeFormat, parentName, childName, FixString(parentText), FixString(childText)); 171 return string.Format(NodeFormat, uniqueName, FixString(text));
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
DotTreeGenerator.cs | 172 yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString( childText ) ); 182 return string.Format( NodeFormat, uniqueName, FixString( text ) );
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
CompositeFormat.java | 20 import java.text.Format; 30 public abstract class CompositeFormat extends Format { 36 * Create a default number format. The default number format is based on 39 * @return the default number format. 46 * Create a default number format. The default number format is based on 49 * @param locale the specific locale used by the format. 50 * @return the default number format specific to the given locale. 136 * @param format the number format used to parse normal, numeric values [all...] |
/external/deqp/modules/gles2/functional/ |
es2fBufferTestUtil.cpp | 103 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n" 104 << " got " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart+printLen)) 123 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n" 124 << " got " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart+printLen))
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
SelectFormat.java | 16 import java.text.Format; 25 * object provided to the format method is a string that's matched 35 * <p>The main use case for the select format is gender based inflection. 104 * the form of the participle, uses a select format based on argument 1: 132 * the <code>format</code> method matches no other keyword. 144 * System.out.println(msgFmt.format(args)); 151 public class SelectFormat extends Format{ 184 * Sets the pattern used by this select format. 187 * @param pattern the pattern for this select format. 188 * @throws IllegalArgumentException when the pattern is not a valid select format pattern 249 public final String format(String keyword) { method in class:SelectFormat 311 public StringBuffer format(Object keyword, StringBuffer toAppendTo, method in class:SelectFormat [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
SelectFormat.java | 15 import java.text.Format; 24 * object provided to the format method is a string that's matched 34 * <p>The main use case for the select format is gender based inflection. 103 * the form of the participle, uses a select format based on argument 1: 131 * the <code>format</code> method matches no other keyword. 143 * System.out.println(msgFmt.format(args)); 152 public class SelectFormat extends Format{ 186 * Sets the pattern used by this select format. 189 * @param pattern the pattern for this select format. 190 * @throws IllegalArgumentException when the pattern is not a valid select format pattern 254 public final String format(String keyword) { method in class:SelectFormat 317 public StringBuffer format(Object keyword, StringBuffer toAppendTo, method in class:SelectFormat [all...] |
/external/llvm/lib/Object/ |
Archive.cpp | 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===// 307 // same in all formats, just claim it to be gnu to make sure Format is 309 Format = K_GNU; 327 // Below is the pattern that is used to figure out the archive format 328 // GNU archive format 332 // BSD archive format 337 // COFF archive format 348 Format = K_BSD; 350 Format = K_DARWIN64; 363 Format = K_BSD [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_fbo.c | 68 enum pipe_format format; local 80 format = PIPE_FORMAT_R16G16B16A16_SNORM; 83 format = st_choose_renderbuffer_format(screen, internalFormat, 0); 85 /* Not setting gl_renderbuffer::Format here will cause 88 if (format == PIPE_FORMAT_NONE) { 93 strb->Base.Format = st_pipe_format_to_mesa_format(format); 95 size = _mesa_format_image_size(strb->Base.Format, width, height, 1); 116 enum pipe_format format = PIPE_FORMAT_NONE; local 156 format = st_choose_renderbuffer_format(screen, internalFormat, i) 511 enum pipe_format format; local 629 enum pipe_format format; local [all...] |
/external/messageformat/java/com/ibm/icu/text/ |
SelectFormat.java | 13 import java.text.Format; 22 * object provided to the format method is a string that's matched 32 * <p>The main use case for the select format is gender based inflection. 101 * the form of the participle, uses a select format based on argument 1:</p> 129 * the <code>format</code> method matches no other keyword. 141 * System.out.println(msgFmt.format(args)); 151 public class SelectFormat extends Format{ 185 * Sets the pattern used by this select format. 188 * @param pattern the pattern for this select format. 189 * @throws IllegalArgumentException when the pattern is not a valid select format pattern 253 public final String format(String keyword) { method in class:SelectFormat 316 public StringBuffer format(Object keyword, StringBuffer toAppendTo, method in class:SelectFormat [all...] |
/external/protobuf/protoc-artifacts/ |
build-protoc.sh | 54 echo "Checking file format ..." 56 format="$(objdump -f "$1" | grep -o "file format .*$" | grep -o "[^ ]*$")" 57 echo Format=$format 60 assertEq $format "elf32-i386" $LINENO 62 assertEq $format "elf64-x86-64" $LINENO 69 assertEq $format "pei-i386" $LINENO 71 assertEq $format "pei-x86-64" $LINENO 77 format="$(file -b "$1" | grep -o "[^ ]*$") [all...] |
/external/skia/src/ports/ |
SkFontHost_FreeType_common.cpp | 37 FT_Pixel_Mode compute_pixel_mode(SkMask::Format format) { 38 switch (format) { 202 const SkMask::Format dstFormat = static_cast<SkMask::Format>(dstMask.fFormat); 259 SkDEBUGF(("FT_Pixel_Mode %d, SkMask::Format %d\n", srcFormat, dstFormat)); 260 SkDEBUGFAIL("unsupported combination of FT_Pixel_Mode and SkMask::Format"); 310 inline SkMask::Format SkMaskFormat_for_SkColorType(SkColorType colorType) { 335 inline SkColorType SkColorType_for_SkMaskFormat(SkMask::Format format) { [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/ |
ImmutableInstruction.java | 35 import org.jf.dexlib2.Format; 58 switch (instruction.getOpcode().format) { 139 public abstract Format getFormat();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
Preconditions.java | 34 import org.jf.dexlib2.Format; 41 public static void checkFormat(Opcode opcode, Format expectedFormat) { 42 if (opcode.format != expectedFormat) { 44 String.format("Invalid opcode %s for %s", opcode.name, expectedFormat.name())); 51 String.format("Invalid register: v%d. Must be between v0 and v15, inclusive.", register)); 59 String.format("Invalid register: v%d. Must be between v0 and v255, inclusive.", register)); 67 String.format("Invalid register: v%d. Must be between v0 and v65535, inclusive.", register)); 75 String.format("Invalid literal value: %d. Must be between -8 and 7, inclusive.", literal)); 83 String.format("Invalid literal value: %d. Must be between -128 and 127, inclusive.", literal)); 91 String.format("Invalid literal value: %d. Must be between -32768 and 32767, inclusive.", literal)) [all...] |
/external/swiftshader/src/D3D9/ |
Direct3DVolume9.cpp | 33 Direct3DVolume9::Direct3DVolume9(Direct3DDevice9 *device, Direct3DVolumeTexture9 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, unsigned long usage) : device(device), Surface(container->getResource(), width, height, depth, translateFormat(format), isLockable(pool, usage), false), container(container), width(width), height(height), depth(depth), format(format), pool(pool), lockable(isLockable(pool, usage)), usage(usage) 35 resource = new Direct3DResource9(device, D3DRTYPE_VOLUME, pool, memoryUsage(width, height, depth, format)); 119 description->Format = format; 215 sw::Format Direct3DVolume9::translateFormat(D3DFORMAT format) 217 return Direct3DSurface9::translateFormat(format); [all...] |