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

<<21222324252627282930>>

  /external/skia/src/effects/shadows/
SkSpotShadowMaskFilter.cpp 29 SkMask::Format getFormat() const override;
106 SkMask::Format SkSpotShadowMaskFilterImpl::getFormat() const {
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest.cc 221 "A format (currently must be \"xml\"), optionally followed "
384 // Returns the output format, or "" for normal printed output.
476 const String& full_name = String::Format("%s.%s",
828 return c_str ? String::Format("\"%s\"", c_str) : String("(null)");
    [all...]
  /external/v8/src/ppc/
disasm-ppc.cc 70 int FormatFPRegister(Instruction* instr, const char* format);
76 void Format(Instruction* instr, const char* format);
150 int Decoder::FormatRegister(Instruction* instr, const char* format) {
151 DCHECK(format[0] == 'r');
153 if ((format[1] == 't') || (format[1] == 's')) { // 'rt & 'rs register
157 } else if (format[1] == 'a') { // 'ra: RA register
161 } else if (format[1] == 'b') { // 'rb: RB register
174 int Decoder::FormatFPRegister(Instruction* instr, const char* format) {
    [all...]
  /external/webrtc/webrtc/modules/video_capture/windows/
sink_filter_ds.cc 185 VIDEOINFOHEADER *pvi = (VIDEOINFOHEADER *) pMediaType->Format();
215 return S_OK; // This format is acceptable.
221 return S_OK; // This format is acceptable.
228 return S_OK; // This format is acceptable.
234 return S_OK; // This format is acceptable.
240 return S_OK; // This format is acceptable.
246 return S_OK; // This format is acceptable.
252 VIDEOINFOHEADER2 *pvi = (VIDEOINFOHEADER2 *) pMediaType->Format();
282 return S_OK; // This format is acceptable.
288 return S_OK; // This format is acceptable
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxgi1_2.idl 65 DXGI_FORMAT Format;
d3d10.h 831 DXGI_FORMAT Format;
841 explicit CD3D10_TEXTURE1D_DESC(DXGI_FORMAT format, UINT width, UINT arraySize = 1, UINT mipLevels = 0,
847 Format = format;
864 DXGI_FORMAT Format;
875 explicit CD3D10_TEXTURE2D_DESC(DXGI_FORMAT format, UINT width, UINT height,
888 Format = format;
907 DXGI_FORMAT Format;
946 DXGI_FORMAT Format;
    [all...]
scardssp_p.c 26 unsigned char Format[TYPE_FORMAT_STRING_SIZE];
31 unsigned char Format[PROC_FORMAT_STRING_SIZE];
46 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&IByteBuffer_FormatStringOffsetTable[-3],0,0,0,0
50 &Object_StubDesc,__MIDL_ProcFormatString.Format,&IByteBuffer_FormatStringOffsetTable[-3],0,0,0
73 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardTypeConv_FormatStringOffsetTable[-3],0,0,0,0
77 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardTypeConv_FormatStringOffsetTable[-3],0,0,0
101 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardCmd_FormatStringOffsetTable[-3],0,0,0,0
105 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardCmd_FormatStringOffsetTable[-3],0,0,0
129 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardISO7816_FormatStringOffsetTable[-3],0,0,0,0
133 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardISO7816_FormatStringOffsetTable[-3],0,0,
    [all...]
dbgeng.h 250 STDMETHOD(OutputIdentity)(THIS_ ULONG OutputControl,ULONG Flags,PCSTR Format) PURE;
321 STDMETHOD(OutputIdentity)(THIS_ ULONG OutputControl,ULONG Flags,PCSTR Format) PURE;
383 STDMETHOD(OutputIdentity)(THIS_ ULONG OutputControl,ULONG Flags,PCSTR Format) PURE;
448 STDMETHOD(OutputIdentity)(THIS_ ULONG OutputControl,ULONG Flags,PCSTR Format) PURE;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
fmt.go 15 // They control how the Xconv functions format their values.
22 const ( // fmt.Format flag/prec or verb
34 // value given the fmt.State and format verb.
64 // Format conversions:
95 // *Sym, *Type, and *Node types use the flags below to set the format mode
112 // Useful format combinations:
120 // %#v Go format
124 // %#v Go format
137 // ignore (textual export format no longer supported)
221 func (o Op) Format(s fmt.State, verb rune)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
cfg_test.go 175 t.Logf("control flow graph:\n%s", g.Format(fset))
  /prebuilts/go/darwin-x86/src/math/big/
ftoa.go 18 // to the given format and precision prec. The format is one of:
33 // If format is a different character, Text returns a "%" followed by the
34 // unrecognized format character.
42 // The prec value is ignored for the 'b' or 'p' format.
43 func (x *Float) Text(format byte, prec int) string {
48 return string(x.Append(make([]byte, 0, cap), format, prec))
52 // (String must be called explicitly, Float.Format does not support %s verb.)
84 // 3) read digits out and format
124 // 3) read digits out and format
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
fmt.go 15 // They control how the Xconv functions format their values.
22 const ( // fmt.Format flag/prec or verb
34 // value given the fmt.State and format verb.
64 // Format conversions:
95 // *Sym, *Type, and *Node types use the flags below to set the format mode
112 // Useful format combinations:
120 // %#v Go format
124 // %#v Go format
137 // ignore (textual export format no longer supported)
221 func (o Op) Format(s fmt.State, verb rune)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
cfg_test.go 175 t.Logf("control flow graph:\n%s", g.Format(fset))
  /prebuilts/go/linux-x86/src/math/big/
ftoa.go 18 // to the given format and precision prec. The format is one of:
33 // If format is a different character, Text returns a "%" followed by the
34 // unrecognized format character.
42 // The prec value is ignored for the 'b' or 'p' format.
43 func (x *Float) Text(format byte, prec int) string {
48 return string(x.Append(make([]byte, 0, cap), format, prec))
52 // (String must be called explicitly, Float.Format does not support %s verb.)
84 // 3) read digits out and format
124 // 3) read digits out and format
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.4.0-beta3/
transform-api-1.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.4.0-beta5/
transform-api-1.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.4.0-beta6/
transform-api-1.4.0-beta6.jar 
  /art/compiler/optimizing/
graph_visualizer.cc 53 enum Format {
59 explicit StringList(Format format = kArrayBrackets) : format_(format), is_empty_(true) {}
64 explicit StringList(T* first_entry, Format format = kArrayBrackets) : StringList(format) {
80 Format format_;
92 LOG(FATAL) << "Invalid StringList format";
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.h 112 UINT8 Format; // For EFI_IFR_TO_STRING, EFI_IFR_FIND
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueDebugLib.h 121 the message specified by Format and the associated variable argument list to
124 If Format is NULL, then ASSERT().
127 @param Format Format string for the debug message to print.
134 IN CONST CHAR8 *Format,
217 This macro calls DebugPrint() passing in the debug error level, a format
220 @param Expression Expression containing an error level, a format string,
221 and a variable argument list based on the format string.
228 // DEBUG((DebugLevel, "format string", ...)) - if DebugLevel is active do
297 @param Expression Expression containing an error level, a format string,
    [all...]
EdkIIGlueReportStatusCodeLib.h 284 by ErrorLevel, Marker, and Format. If type GUID in Data is
286 Format from the optional data area of the status code buffer specified by Data.
289 the Format. If the DEBUG() information could be extracted from Data, then
295 If Format is NULL, then ASSERT().
299 @param Marker Pointer to the variable argument list associated with Format.
300 @param Format Pointer to a Null-terminated ASCII format string of a
304 specified by ErrorLevel, Marker, and Format.
315 OUT CHAR8 **Format
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiSdt.h 140 AML_OP_PARSE_FORMAT Format[6];
322 @param[in] AcpiPath Points to the ACPI path, which conforms to the ACPI encoded path format.
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/AcpiPlatform/
AcpiPciUpdate.h 235 AML_OP_PARSE_FORMAT Format[6];
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.h 283 by Format and the associated variable argument list to the debug port.
286 @param[in] Format Format string for the debug message to print.
288 based on the format string specified by Format.
295 IN CHAR8 *Format,
440 GetDebugPrintErrorLevel (), then print the message specified by Format and the
443 If Format is NULL, then ASSERT().
448 @param[in] Length based on the format string specified by Format.
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
json_output_formatter_unittest.py 55 self._formatter.Format(results)

Completed in 1543 milliseconds

<<21222324252627282930>>