HomeSort by relevance Sort by last modified time
    Searched refs:pformat (Results 1 - 25 of 32) 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 229 const OMX_AUDIO_PORTDEFINITIONTYPE *pformat = &p->format.audio; local
230 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
235 strncpy(format->cMIMEType, pformat->cMIMEType,
238 format->pNativeRender = pformat->pNativeRender;
239 format->bFlagErrorConcealment = pformat->bFlagErrorConcealment;
240 format->eEncoding = pformat->eEncoding;
246 const OMX_VIDEO_PORTDEFINITIONTYPE *pformat = &p->format.video; local
247 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
252 strncpy(format->cMIMEType, pformat->cMIMEType,
255 format->pNativeRender = pformat->pNativeRender
279 const OMX_IMAGE_PORTDEFINITIONTYPE *pformat = &p->format.image; local
303 const OMX_OTHER_PORTDEFINITIONTYPE *pformat = &p->format.other; local
    [all...]
  /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;
  /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/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /external/boringssl/src/ssl/
s3_lib.c 484 const uint8_t **pformat = parg; local
488 *pformat = s->s3->tmp.peer_ecpointformatlist;
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
wsgiwrappers.py 10 from pprint import pformat namespace
279 pf = pformat
  /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...]
  /prebuilts/python/linux-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...]
  /external/mesa3d/src/gallium/state_trackers/vega/
image.c 240 enum pipe_format pformat = vg_format_to_pipe(format); local
259 assert(screen->is_format_supported(screen, pformat, PIPE_TEXTURE_2D,
264 pt.format = pformat;
  /external/mesa3d/src/mesa/state_tracker/
st_format.c 1436 enum pipe_format pformat; member in struct:exact_format_mapping
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 301 from pprint import pformat namespace
323 out = pformat(opt_dict)
    [all...]

Completed in 645 milliseconds

1 2