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

<<31323334353637383940>>

  /external/skia/src/opts/
SkSwizzler_opts.h 445 enum Format { kRGB1, kBGR1 };
446 template <Format format>
464 if (kBGR1 == format) {
481 auto proc = (kBGR1 == format) ? inverted_CMYK_to_BGR1_portable : inverted_CMYK_to_RGB1_portable;
723 enum Format { kRGB1, kBGR1 };
724 template <Format format>
731 if (kBGR1 == format) {
788 auto proc = (kBGR1 == format) ? inverted_CMYK_to_BGR1_portable : inverted_CMYK_to_RGB1_portable
    [all...]
  /external/swiftshader/src/OpenGL/libEGL/
Surface.cpp 175 sw::Format Surface::getInternalFormat() const
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 74 private HashMap<Character,Format> formatStart;
106 this.formatStart = new HashMap<Character,Format>();
474 * - Only a single instance of a particular format character within a block
477 * - If the format is to be turned on, we use the _first_ instance; if it
479 * format.)
498 // and whether we should append a closing format token (if value in
509 addToken(new Format(ch, false));
511 Format start = formatStart.get(key);
519 start = new Format(ch, true);
530 Format end = new Format(key.charValue(), false)
    [all...]
  /frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
BallsRS.java 99 ProgramFragmentFixedFunction.Builder.Format.RGBA, 0);
  /hardware/intel/img/psb_video/src/
psb_texture.c 586 sBltVP.sDst.Format = PVR2D_ARGB8888;
604 sBltVP.sDst.Format = PVR2D_RGB565;
614 sBltVP.sSrc->Format = VA_FOURCC_NV12;
660 sBltVP.sSrcSubpic[i].Format = MAKEFOURCC('A', 'I' , '4', '4');
662 sBltVP.sSrcSubpic[i].Format = surface_subpic->fourcc;
    [all...]
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_reader.cpp 42 Jpeg_Config::Format format) {
71 const int components = (static_cast<int>(format) & 0xff);
73 // Do setup for input format
112 mFormat = format;
215 // Do endianness and alpha for output format
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 264 // format is as follows: <PRI>TIMESTAMP HOSTNAME TAG[PID]: MSG
287 timestamp := time.Now().Format(time.Stamp)
293 timestamp := time.Now().Format(time.RFC3339)
  /prebuilts/go/darwin-x86/src/math/big/
intconv.go 57 // Format implements fmt.Formatter. It accepts the formats
60 // Also supported are the full suite of package fmt's format
68 func (x *Int) Format(s fmt.State, ch rune) {
81 // unknown format
  /prebuilts/go/darwin-x86/src/net/http/
fs_test.go 667 fileModStr := fileMod.Format(TimeFormat)
784 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
792 "If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
802 "If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
954 "If-Unmodified-Since": htmlModTime.UTC().Format(TimeFormat),
958 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
964 "If-Unmodified-Since": htmlModTime.Add(-2 * time.Second).UTC().Format(TimeFormat),
968 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
    [all...]
  /prebuilts/go/linux-x86/src/log/syslog/
syslog.go 264 // format is as follows: <PRI>TIMESTAMP HOSTNAME TAG[PID]: MSG
287 timestamp := time.Now().Format(time.Stamp)
293 timestamp := time.Now().Format(time.RFC3339)
  /prebuilts/go/linux-x86/src/math/big/
intconv.go 57 // Format implements fmt.Formatter. It accepts the formats
60 // Also supported are the full suite of package fmt's format
68 func (x *Int) Format(s fmt.State, ch rune) {
81 // unknown format
  /prebuilts/go/linux-x86/src/net/http/
fs_test.go 667 fileModStr := fileMod.Format(TimeFormat)
784 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
792 "If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
802 "If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
954 "If-Unmodified-Since": htmlModTime.UTC().Format(TimeFormat),
958 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
964 "If-Unmodified-Since": htmlModTime.Add(-2 * time.Second).UTC().Format(TimeFormat),
968 wantLastMod: htmlModTime.UTC().Format(TimeFormat),
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 24 import com.android.ide.common.api.IAttributeInfo.Format;
196 EnumSet<Format> formats = info.getFormats();
197 if (formats.contains(Format.BOOLEAN)) {
199 } else if (formats.contains(Format.ENUM)) {
736 String message = String.format(
    [all...]
  /system/core/liblog/tests/
liblog_benchmark.cpp 881 const char* format = android_lookupEventFormat_len(map, &len, (*it)); local
882 std::string Format(format, len);
884 android_lookupEventTagNum(map, Name.c_str(), Format.c_str(),
950 snprintf(buffer, sizeof(buffer), "getEventTag name=%s format=\"(new|1)\"",
990 const char* format = android_lookupEventFormat_len(map, &len, (*it)); local
991 std::string Format(format, len);
994 snprintf(buffer, sizeof(buffer), "getEventTag name=%s format=\"%s\"",
995 Name.c_str(), Format.c_str())
    [all...]
  /system/vold/
PublicVolume.cpp 234 if (vfat::Format(mDevPath, 0)) {
235 LOG(ERROR) << getId() << " failed to format";
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmParser.cpp 366 // Initialize the platform / file format parser.
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d10.idl 516 DXGI_FORMAT Format;
528 DXGI_FORMAT Format;
541 DXGI_FORMAT Format;
589 DXGI_FORMAT Format;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d11.h 818 DXGI_FORMAT Format;
    [all...]
  /external/swiftshader/src/D3D9/
Direct3DDevice9.cpp 361 switch(description.Format)
423 if(renderState[D3DRS_SRGBWRITEENABLE] != FALSE && index == 0 && Capabilities::isSRGBwritable(description.Format))
530 long Direct3DDevice9::CreateCubeTexture(unsigned int edgeLength, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool, IDirect3DCubeTexture9 **cubeTexture, void **sharedHandle)
534 TRACE("unsigned int edgeLength = %d, unsigned int levels = %d, unsigned long usage = %d, D3DFORMAT format = %d, D3DPOOL pool = %d, IDirect3DCubeTexture9 **cubeTexture = 0x%0.8p, void **sharedHandle = 0x%0.8p", edgeLength, levels, usage, format, pool, cubeTexture, sharedHandle);
538 if(edgeLength == 0 || (usage & D3DUSAGE_AUTOGENMIPMAP && levels > 1) || d3d9->CheckDeviceFormat(adapter, deviceType, D3DFMT_X8R8G8B8, usage, D3DRTYPE_CUBETEXTURE, format) != D3D_OK)
543 *cubeTexture = new Direct3DCubeTexture9(this, edgeLength, levels, usage, format, pool);
563 long Direct3DDevice9::CreateDepthStencilSurface(unsigned int width, unsigned int height, D3DFORMAT format, D3DMULTISAMPLE_TYPE multiSample, unsigned long multiSampleQuality, int discard, IDirect3DSurface9 **surface, void **sharedHandle)
567 TRACE("unsigned int width = %d, unsigned int height = %d, D3DFORMAT format = %d, D3DMULTISAMPLE_TYPE multiSample = %d, unsigned long multiSampleQuality = %d, int discard = %d, IDirect3DSurface9 **surface = 0x%0.8p, void **sharedHandle = 0x%0.8p", width, height, format, multiSample, multiSampleQuality, discard, surface, sharedHandle)
    [all...]
  /prebuilts/go/darwin-x86/src/time/
format.go 9 // These are predefined layouts for use in Time.Format and Time.Parse.
15 // To define your own format, write down what the reference time would look
18 // reference time looks like so that the Format and Parse methods can apply
21 // Within the format string, an underscore _ represents a space that may be
34 // Numeric time zone offsets format as follows:
38 // Replacing the sign in the format with a Z triggers
48 // Text in the format string that is not recognized as part of the reference
49 // time is echoed verbatim during Format and expected to appear verbatim
52 // The executable example for time.Format demonstrates the working
60 // that insist on that format, and RFC3339 should be preferred for new protocols
    [all...]
  /prebuilts/go/linux-x86/src/time/
format.go 9 // These are predefined layouts for use in Time.Format and Time.Parse.
15 // To define your own format, write down what the reference time would look
18 // reference time looks like so that the Format and Parse methods can apply
21 // Within the format string, an underscore _ represents a space that may be
34 // Numeric time zone offsets format as follows:
38 // Replacing the sign in the format with a Z triggers
48 // Text in the format string that is not recognized as part of the reference
49 // time is echoed verbatim during Format and expected to appear verbatim
52 // The executable example for time.Format demonstrates the working
60 // that insist on that format, and RFC3339 should be preferred for new protocols
    [all...]
  /external/pdfium/core/fpdfapi/edit/
fpdf_edit_create.cpp     [all...]
  /external/pdfium/xfa/fde/xml/
fde_xml_imp.cpp 414 ws.Format(L"<?%s", pInstruction->m_wsTarget.c_str());
617 wsValue.Format(L"%d", iAttriValue);
635 wsValue.Format(L"%f", fAttriValue);
828 wsValue.Format(L"%d", iAttriValue);
846 wsValue.Format(L"%f", fAttriValue);
984 ws.Format(L"<?%s", pInstruction->m_wsTarget.c_str());
    [all...]
  /external/swiftshader/src/Renderer/
Blitter.cpp 34 void Blitter::clear(void* pixel, sw::Format format, Surface *dest, const SliceRect &dRect, unsigned int rgbaMask)
36 sw::Surface color(1, 1, 1, format, pixel, sw::Surface::bytes(format), sw::Surface::bytes(format));
136 bool Blitter::read(Float4 &c, Pointer<Byte> element, Format format)
140 switch(format)
331 bool Blitter::write(Float4 &c, Pointer<Byte> element, Format format, const Blitter::Options& options
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
format.go 151 // Format into buf, ending at buf[i]. Formatting numbers is easier right-to-left.
165 // Format the Unicode code point u as a hexadecimal number.
233 // Because printing is easier right-to-left: format u into buf, ending at buf[i].
451 // fmt_float formats a float64. It assumes that verb is a valid format specifier
454 // Explicit precision in format specifier overrules default precision.
458 // Format number, reserving space for leading + sign if needed.

Completed in 2489 milliseconds

<<31323334353637383940>>