HomeSort by relevance Sort by last modified time
    Searched defs:format (Results 201 - 225 of 2193) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
AttrData.java 7 private final String format; field in class:AttrData
10 public AttrData(String name, String format, List<Pair> pairs) {
12 this.format = format;
17 return format;
50 .append("', format='")
51 .append(format)
StaxAttrLoader.java 10 private String format; field in class:StaxAttrLoader
24 if (format == null) {
25 format = type;
27 format = format + "|" + type;
48 format = xml.getAttributeValue(null, "format");
53 AttrData attrData = new AttrData(name, format, new ArrayList<>(pairs));
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowDateIntervalFormatTest.java 10 import android.text.format.DateUtils;
33 DateFormat format = new SimpleDateFormat("MM/dd/yyyy", ULocale.getDefault()); local
34 Date date = format.parse(actual);
XmlPullParserTest.java 155 assertThat(format(parser, attrNs, attrName))
156 .isEqualTo(format(attrNs, attrName, resId, "CDATA", value, valueResId));
159 private String format(XmlResourceParser parser, String namespace, String name) { method in class:XmlPullParserTest
164 return format(parser.getAttributeNamespace(i), parser.getAttributeName(i),
172 private String format(String attrNs, String attrName, method in class:XmlPullParserTest
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Logger.java 22 System.out.println(String.format(message, args));
35 System.out.println(String.format(message, args));
48 System.out.println(String.format(message, args));
72 System.err.println(String.format(message, args));
84 System.out.println(String.format(message, args));
  /external/selinux/prebuilts/bin/
seinfo.py 31 return "{0}\n\t{1}".format(attr.statement(), contents)
108 format='%(asctime)s|%(levelname)s|%(name)s|%(message)s') variable
110 logging.basicConfig(level=logging.INFO, format='%(message)s')
112 logging.basicConfig(level=logging.WARNING, format='%(message)s')
299 print("Statistics for policy file: {0}".format(p))
300 print("Policy Version: {0} (MLS {1})".format(p.version, mls))
301 print("Target Policy: {0}".format(p.target_platform))
302 print("Handle unknown classes: {0}".format(p.handle_unknown))
303 print(" Classes: {0:7} Permissions: {1:7}".format(
305 print(" Sensitivities: {0:7} Categories: {1:7}".format(
    [all...]
  /external/skia/src/core/
SkGlyph.cpp 20 mask->fFormat = static_cast<SkMask::Format>(fMaskFormat);
36 static size_t format_alignment(SkMask::Format format) {
37 switch (format) {
48 SK_ABORT("Unknown mask format.");
54 static size_t format_rowbytes(int width, SkMask::Format format) {
55 return format == SkMask::kBW_Format ? bits_to_bytes(width)
56 : width * format_alignment(format);
60 auto format = static_cast<SkMask::Format>(fMaskFormat) local
66 auto format = static_cast<SkMask::Format>(fMaskFormat); local
    [all...]
  /external/skia/src/gpu/
GrGpuCommandBuffer.cpp 76 const GrBackendFormat& format = primProcProxies[i]->backendFormat(); local
82 SkASSERT(testProxy->backendFormat() == format);
  /external/skia/src/gpu/gl/
GrGLStencilAttachment.h 19 struct Format {
35 const Format& format)
36 : GrStencilAttachment(gpu, width, height, format.fStencilBits, sampleCnt)
37 , fFormat(format)
46 const Format& format() const { return fFormat; } function in class:GrGLStencilAttachment
58 Format fFormat;
  /external/skia/tests/
ProxyConversionTest.cpp 140 const GrBackendFormat format = local
145 format, desc, kBottomLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
158 format, desc, kBottomLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
173 format, desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
ProxyRefTest.cpp 71 const GrBackendFormat format = caps->getBackendFormatFromColorType(kRGBA_8888_SkColorType); local
72 return proxyProvider->createProxy(format, desc, kBottomLeft_GrSurfaceOrigin,
  /external/skqp/src/core/
SkGlyph.cpp 20 mask->fFormat = static_cast<SkMask::Format>(fMaskFormat);
36 static size_t format_alignment(SkMask::Format format) {
37 switch (format) {
48 SK_ABORT("Unknown mask format.");
54 static size_t format_rowbytes(int width, SkMask::Format format) {
55 return format == SkMask::kBW_Format ? bits_to_bytes(width)
56 : width * format_alignment(format);
60 auto format = static_cast<SkMask::Format>(fMaskFormat) local
66 auto format = static_cast<SkMask::Format>(fMaskFormat); local
    [all...]
  /external/skqp/src/gpu/
GrGpuCommandBuffer.cpp 75 const GrBackendFormat& format = primProcProxies[i]->backendFormat(); local
81 SkASSERT(testProxy->backendFormat() == format);
  /external/skqp/src/gpu/gl/
GrGLStencilAttachment.h 19 struct Format {
35 const Format& format)
36 : GrStencilAttachment(gpu, width, height, format.fStencilBits, sampleCnt)
37 , fFormat(format)
46 const Format& format() const { return fFormat; } function in class:GrGLStencilAttachment
58 Format fFormat;
  /external/skqp/tests/
ProxyConversionTest.cpp 140 const GrBackendFormat format = local
145 format, desc, kBottomLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
158 format, desc, kBottomLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
173 format, desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
ProxyRefTest.cpp 71 const GrBackendFormat format = caps->getBackendFormatFromColorType(kRGBA_8888_SkColorType); local
72 return proxyProvider->createProxy(format, desc, kBottomLeft_GrSurfaceOrigin,
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptProcess.java 35 setCommand(String.format(interpreter.getScriptCommand(), script.getAbsolutePath()));
  /external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
ITNProxy.java 59 params.put("app.build.date", format(appInfo.getBuildDate()));
60 params.put("app.build.date.release", format(appInfo.getMajorReleaseBuildDate()));
87 private static String format(Calendar calendar) { method in class:ITNProxy
  /external/swiftshader/src/D3D8/
Direct3DIndexBuffer8.hpp 32 Direct3DIndexBuffer8(Direct3DDevice8 *device, unsigned int length, unsigned long usage, D3DFORMAT format, D3DPOOL pool);
64 const D3DFORMAT format; member in class:D3D8::Direct3DIndexBuffer8
Direct3DSurface8.hpp 32 Direct3DSurface8(Direct3DDevice8 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, bool lockable, unsigned long usage);
56 static sw::Format translateFormat(D3DFORMAT format);
57 static int bytes(D3DFORMAT format);
60 static unsigned int memoryUsage(int width, int height, D3DMULTISAMPLE_TYPE multiSample, D3DFORMAT format); // FIXME: Surface::size
67 const D3DFORMAT format; member in class:D3D8::Direct3DSurface8
Direct3DVolume8.hpp 33 Direct3DVolume8(Direct3DDevice8 *device, Direct3DVolumeTexture8 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, bool locakble, unsigned long usage);
57 static sw::Format translateFormat(D3DFORMAT format);
58 static unsigned int memoryUsage(int width, int height, int depth, D3DFORMAT format);
65 const D3DFORMAT format; member in class:D3D8::Direct3DVolume8
  /external/swiftshader/src/D3D9/
Direct3DBaseTexture9.hpp 32 Direct3DBaseTexture9(Direct3DDevice9 *device, D3DRESOURCETYPE type, D3DFORMAT format, D3DPOOL pool, unsigned long levels, unsigned long usage);
69 const D3DFORMAT format; member in class:D3D9::Direct3DBaseTexture9
Direct3DSurface9.hpp 31 Direct3DSurface9(Direct3DDevice9 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, unsigned int quality, bool lockableOverride, unsigned long usage);
63 static sw::Format translateFormat(D3DFORMAT format);
64 static int bytes(D3DFORMAT format);
67 static unsigned int memoryUsage(int width, int height, D3DMULTISAMPLE_TYPE multiSample, unsigned int quality, D3DFORMAT format);
73 const D3DFORMAT format; member in class:D3D9::Direct3DSurface9
Direct3DVolume9.hpp 33 Direct3DVolume9(Direct3DDevice9 *device, Direct3DVolumeTexture9 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, unsigned long usage);
57 static sw::Format translateFormat(D3DFORMAT format);
58 static unsigned int memoryUsage(int width, int height, int depth, D3DFORMAT format);
66 const D3DFORMAT format; member in class:D3D9::Direct3DVolume9
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
52 static void format(const codeview::TypeIndex &V, raw_ostream &Stream, function in struct:llvm::format_provider
65 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream, function in struct:llvm::format_provider

Completed in 1129 milliseconds

1 2 3 4 5 6 7 891011>>