HomeSort by relevance Sort by last modified time
    Searched refs:checkFormat (Results 1 - 10 of 10) sorted by null

  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 243 private static void checkFormat(String expected, String pattern, int hour) {
264 checkFormat("24", "k", 00);
265 checkFormat( "0", "K", 00);
266 checkFormat("12", "h", 00);
267 checkFormat( "0", "H", 00);
269 checkFormat( "1", "k", 01);
270 checkFormat( "1", "K", 01);
271 checkFormat( "1", "h", 01);
272 checkFormat( "1", "H", 01);
274 checkFormat("12", "k", 12)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderInstruction.java 48 Preconditions.checkFormat(opcode, getFormat());
  /external/swiftshader/src/D3D9/
Direct3D9Ex.cpp 141 long Direct3D9Ex::CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapterFormat, unsigned long usage, D3DRESOURCETYPE resourceType, D3DFORMAT checkFormat)
143 TRACE("unsigned int adapter = %d, D3DDEVTYPE deviceType = %d, D3DFORMAT adapterFormat = %d, unsigned long usage = %d, D3DRESOURCETYPE resourceType = %d, D3DFORMAT checkFormat = %d", adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
151 return d3d9ex->CheckDeviceFormat(adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
155 return CheckDeviceFormat(adapter, D3DDEVTYPE_HAL, adapterFormat, usage, resourceType, checkFormat);
159 return Direct3D9::CheckDeviceFormat(adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
Direct3D9.hpp 47 long __stdcall CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapterFormat, unsigned long usage, D3DRESOURCETYPE type, D3DFORMAT checkFormat) override;
Direct3D9.cpp 213 long Direct3D9::CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapterFormat, unsigned long usage, D3DRESOURCETYPE resourceType, D3DFORMAT checkFormat)
215 TRACE("unsigned int adapter = %d, D3DDEVTYPE deviceType = %d, D3DFORMAT adapterFormat = %d, unsigned long usage = %d, D3DRESOURCETYPE resourceType = %d, D3DFORMAT checkFormat = %d", adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
223 return d3d9->CheckDeviceFormat(adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
227 return CheckDeviceFormat(adapter, D3DDEVTYPE_HAL, adapterFormat, usage, resourceType, checkFormat);
233 if(!Capabilities::isSRGBreadable(checkFormat))
241 if(!Capabilities::isSRGBwritable(checkFormat))
248 if(checkFormat == D3DFMT_INST && pixelShaderVersionX >= D3DPS_VERSION(2, 0) && pixelShaderVersionX < D3DPS_VERSION(3, 0))
258 switch(checkFormat)
291 switch(checkFormat)
    [all...]
Direct3D9Ex.hpp 47 long __stdcall CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapterFormat, unsigned long usage, D3DRESOURCETYPE type, D3DFORMAT checkFormat) override;
  /external/swiftshader/src/D3D8/
Direct3D8.cpp 145 long Direct3D8::CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapterFormat, unsigned long usage, D3DRESOURCETYPE resourceType, D3DFORMAT checkFormat)
147 TRACE("unsigned int adapter = %d, D3DDEVTYPE deviceType = %d, D3DFORMAT adapterFormat = %d, unsigned long usage = %d, D3DRESOURCETYPE resourceType = %d, D3DFORMAT checkFormat = %d", adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
155 return d3d8->CheckDeviceFormat(adapter, deviceType, adapterFormat, usage, resourceType, checkFormat);
159 return CheckDeviceFormat(adapter, D3DDEVTYPE_HAL, adapterFormat, usage, resourceType, checkFormat);
168 switch(checkFormat)
189 switch(checkFormat)
201 switch(checkFormat)
242 switch(checkFormat)
284 switch(checkFormat)
    [all...]
Direct3D8.hpp 42 long __stdcall CheckDeviceFormat(unsigned int adapter, D3DDEVTYPE deviceType, D3DFORMAT adapaterFormat, unsigned long usage, D3DRESOURCETYPE type, D3DFORMAT checkFormat) override;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction.java 48 Preconditions.checkFormat(opcode, getFormat());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 41 public static void checkFormat(Opcode opcode, Format expectedFormat) {

Completed in 564 milliseconds