HomeSort by relevance Sort by last modified time
    Searched refs:pformat (Results 1 - 25 of 43) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pprint.py 127 for function in "pformat", "saferepr":
152 self.assertEqual(pprint.pformat(type(o)), exp)
157 self.assertEqual(pprint.pformat(type(o)), exp)
162 self.assertEqual(pprint.pformat(type(o)), exp)
168 self.assertEqual(pprint.pformat(type(o), indent=4), exp)
179 self.assertEqual(pprint.pformat(o, indent=4, width=42), expected)
184 # Before the change, on 32-bit Windows pformat() gave order
187 self.assertEqual(pprint.pformat(d), "{'a': 1, 'b': 1, 'c': 1}")
188 self.assertEqual(pprint.pformat([d, d]),
196 self.assertEqual(pprint.pformat({"xy\tab\n": (3,), 5: [[]], (): {}})
    [all...]
test_sgmllib.py 119 #print >>sys.stderr, pprint.pformat(self.events)
123 "Expected:\n" + pprint.pformat(expected_events) +
124 "\nReceived:\n" + pprint.pformat(events))
135 % (source, pprint.pformat(parser.get_events())))
test_hotshot.py 63 % (pprint.pformat(events), pprint.pformat(expected)))
test_htmlparser.py 83 "Expected:\n" + pprint.pformat(expected_events) +
84 "\nReceived:\n" + pprint.pformat(events))
test_sys_setprofile.py 97 % (pprint.pformat(expected), pprint.pformat(events)))
test_ssl.py 108 sys.stdout.write("\n" + pprint.pformat(p) + "\n")
120 sys.stdout.write("\n" + pprint.pformat(p) + "\n")
395 pprint.pformat(s.getpeercert()))
428 sys.stdout.write(" client cert is " + pprint.pformat(cert) + "\n")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pprint.py 127 for function in "pformat", "saferepr":
152 self.assertEqual(pprint.pformat(type(o)), exp)
157 self.assertEqual(pprint.pformat(type(o)), exp)
162 self.assertEqual(pprint.pformat(type(o)), exp)
168 self.assertEqual(pprint.pformat(type(o), indent=4), exp)
179 self.assertEqual(pprint.pformat(o, indent=4, width=42), expected)
184 # Before the change, on 32-bit Windows pformat() gave order
187 self.assertEqual(pprint.pformat(d), "{'a': 1, 'b': 1, 'c': 1}")
188 self.assertEqual(pprint.pformat([d, d]),
196 self.assertEqual(pprint.pformat({"xy\tab\n": (3,), 5: [[]], (): {}})
    [all...]
test_sgmllib.py 119 #print >>sys.stderr, pprint.pformat(self.events)
123 "Expected:\n" + pprint.pformat(expected_events) +
124 "\nReceived:\n" + pprint.pformat(events))
135 % (source, pprint.pformat(parser.get_events())))
test_hotshot.py 63 % (pprint.pformat(events), pprint.pformat(expected)))
test_htmlparser.py 83 "Expected:\n" + pprint.pformat(expected_events) +
84 "\nReceived:\n" + pprint.pformat(events))
test_sys_setprofile.py 97 % (pprint.pformat(expected), pprint.pformat(events)))
test_ssl.py 108 sys.stdout.write("\n" + pprint.pformat(p) + "\n")
120 sys.stdout.write("\n" + pprint.pformat(p) + "\n")
395 pprint.pformat(s.getpeercert()))
428 sys.stdout.write(" client cert is " + pprint.pformat(cert) + "\n")
    [all...]
  /hardware/intel/common/wrs_omxil_core/base/src/
portbase.cpp 228 const OMX_AUDIO_PORTDEFINITIONTYPE *pformat = &p->format.audio; local
229 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
234 strncpy(format->cMIMEType, pformat->cMIMEType,
237 format->pNativeRender = pformat->pNativeRender;
238 format->bFlagErrorConcealment = pformat->bFlagErrorConcealment;
239 format->eEncoding = pformat->eEncoding;
245 const OMX_VIDEO_PORTDEFINITIONTYPE *pformat = &p->format.video; local
246 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
251 strncpy(format->cMIMEType, pformat->cMIMEType,
254 format->pNativeRender = pformat->pNativeRender
278 const OMX_IMAGE_PORTDEFINITIONTYPE *pformat = &p->format.image; local
302 const OMX_OTHER_PORTDEFINITIONTYPE *pformat = &p->format.other; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
surface.c 275 enum pipe_format pformat = FormatYCBCRToPipe(source_ycbcr_format); local
292 if (p_surf->video_buffer == NULL || pformat != p_surf->video_buffer->buffer_format) {
299 p_surf->templat.buffer_format = pformat;
  /external/mesa3d/src/gallium/state_trackers/vdpau/
surface.c 275 enum pipe_format pformat = FormatYCBCRToPipe(source_ycbcr_format); local
292 if (p_surf->video_buffer == NULL || pformat != p_surf->video_buffer->buffer_format) {
299 p_surf->templat.buffer_format = pformat;
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl.c 121 int pformat = 0; local
154 wglChoosePixelFormatARB(hdc, iAttribs, fAttribs, 1, &pformat, &matches) && pformat ) {
167 return pformat;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 25 pformat()
45 __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",
61 def pformat(object, indent=1, width=80, depth=None): function
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
120 def pformat(self, object): member in class:PrettyPrinter
347 p.pformat(object)
350 print "pformat:", t3 - t2
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 25 pformat()
45 __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",
61 def pformat(object, indent=1, width=80, depth=None): function
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
120 def pformat(self, object): member in class:PrettyPrinter
347 p.pformat(object)
350 print "pformat:", t3 - t2
  /external/chromium_org/third_party/jinja2/
utils.py 173 def pformat(obj, verbose=False): function
181 from pprint import pformat namespace
182 return pformat(obj)
filters.py 17 from jinja2.utils import Markup, escape, pformat, urlize, soft_unicode, \
408 return pformat(value, verbose=verbose)
18 unicode_urlencode namespace
  /external/chromium_org/tools/cr/cr/base/
client.py 141 spec = '\n'.join('%s = %s' % (key, pprint.pformat(value))
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /external/lldb/test/unittest2/
case.py 746 difflib.ndiff(pprint.pformat(seq1).splitlines(),
747 pprint.pformat(seq2).splitlines()))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
case.py 722 difflib.ndiff(pprint.pformat(seq1).splitlines(),
723 pprint.pformat(seq2).splitlines()))
834 pprint.pformat(d1).splitlines(),
835 pprint.pformat(d2).splitlines())))
    [all...]

Completed in 666 milliseconds

1 2