/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | diff_state.py | 186 self.dumper = Dumper(stream) 198 self.dumper.enter_object() 210 self.dumper.enter_member(name) 212 self.dumper.leave_member(i == len(names) - 1) 214 self.dumper.leave_object() 220 self.dumper.enter_array() 231 self.dumper._indent() 233 self.dumper.visit(ae) 237 self.dumper._write(',') 238 self.dumper [all...] |
/third_party/PyYAML/lib/yaml/ |
H A D | __init__.py | 9 from .dumper import * 168 dumper = Dumper(stream, canonical=canonical, indent=indent, width=width, 172 dumper.emit(event) 174 dumper.dispose() 194 dumper = Dumper(stream, canonical=canonical, indent=indent, width=width, 199 dumper.open() 201 dumper.serialize(node) 202 dumper.close() 204 dumper.dispose() 232 dumper [all...] |
/device/soc/hisilicon/common/platform/pwm/ |
H A D | pwm_hi35xx.c | 30 struct PlatformDumper *dumper; member 37 struct PlatformDumper *dumper = NULL; in PwmDumperCreate() local 46 dumper = PlatformDumperCreate(name); in PwmDumperCreate() 47 if (dumper == NULL) { in PwmDumperCreate() 48 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in PwmDumperCreate() 52 hp->dumper = dumper; in PwmDumperCreate() 70 if (hp->dumper == NULL) { in PwmDumperDump() 71 HDF_LOGE("%s: pwm dumper is NULL", __func__); in PwmDumperDump() 74 ret = PlatformDumperAddDatas(hp->dumper, data in PwmDumperDump() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfntdump/ |
H A D | SfntDump.java | 74 SfntDump dumper = new SfntDump(); in main() 97 dumper.countSpecialGlyphs(true); in main() 103 dumper.dumpTablesAsBinary(args[++i]); in main() 110 dumper.useCMap(args[++i]); in main() 116 dumper.dumpTableList(true); in main() 121 dumper.dumpNames(true); in main() 126 dumper.dumpCMaps(true); in main() 128 dumper.dumpCMaps(args[++i]); in main() 134 dumper.dumpPost(true); in main() 139 dumper in main() [all...] |
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | icuzdump.cpp | 350 ICUZDump dumper; in main() local 351 dumper.setLowYear(low); in main() 352 dumper.setHighYear(high); in main() 355 dumper.setLineSeparator((const char*)linesep); in main() 382 dumper.setTimeZone(tz); in main() 399 dumper.dump(*fout); in main() 413 dumper.setTimeZone(tz); in main() 421 dumper.dump(cout); in main()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | icuzdump.cpp | 348 ICUZDump dumper; in main() local 349 dumper.setLowYear(low); in main() 350 dumper.setHighYear(high); in main() 353 dumper.setLineSeparator((const char*)linesep); in main() 380 dumper.setTimeZone(tz); in main() 397 dumper.dump(*fout); in main() 411 dumper.setTimeZone(tz); in main() 419 dumper.dump(cout); in main()
|
/device/soc/hisilicon/common/platform/pin/ |
H A D | pin_hi35xx.c | 46 struct PlatformDumper *dumper; member 52 struct PlatformDumper *dumper = NULL; in PinDumperCreate() local 67 dumper = PlatformDumperCreate(name); in PinDumperCreate() 68 if (dumper == NULL) { in PinDumperCreate() 69 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in PinDumperCreate() 73 hi35xx->dumper = dumper; in PinDumperCreate() 86 if (hi35xx->dumper == NULL) { in PinDumperDump() 90 ret = PlatformDumperAddDatas(hi35xx->dumper, data, sizeof(data) / sizeof(struct PlatformDumperData)); in PinDumperDump() 94 (void)PlatformDumperDump(hi35xx->dumper); in PinDumperDump() [all...] |
/third_party/PyYAML/packaging/build/ |
H A D | smoketest.py | 12 for loader, dumper in [(yaml.CLoader, yaml.CDumper), (yaml.Loader, yaml.Dumper)]: 15 dumped = yaml.dump(loaded, Dumper=dumper) 17 raise Exception('roundtrip failed with {0}/{1}'.format(loader, dumper))
|
/device/soc/hisilicon/common/platform/gpio/ |
H A D | gpio_hi35xx.c | 58 struct PlatformDumper *dumper; member 83 struct PlatformDumper *dumper = NULL; in GpioDumperCreate() local 98 dumper = PlatformDumperCreate(name); in GpioDumperCreate() 99 if (dumper == NULL) { in GpioDumperCreate() 100 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in GpioDumperCreate() 104 group->dumper = dumper; in GpioDumperCreate() 124 if (group->dumper == NULL) { in GpioDumperDump() 125 HDF_LOGE("%s: group dumper is NULL!", __func__); in GpioDumperDump() 128 ret = PlatformDumperAddDatas(group->dumper, data in GpioDumperDump() [all...] |
/device/soc/hisilicon/common/platform/i2s/ |
H A D | i2s_hi35xx.c | 58 if (configInfo->dumper == NULL) { in I2sDumperDump() 59 HDF_LOGE("%s: configInfo dumper is NULL!", __func__); in I2sDumperDump() 62 ret = PlatformDumperAddDatas(configInfo->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in I2sDumperDump() 66 (void)PlatformDumperDump(configInfo->dumper); in I2sDumperDump() 67 (void)PlatformDumperClearDatas(configInfo->dumper); in I2sDumperDump() 72 struct PlatformDumper *dumper = NULL; in I2sDumperCreate() local 87 dumper = PlatformDumperCreate(name); in I2sDumperCreate() 88 if (dumper == NULL) { in I2sDumperCreate() 89 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in I2sDumperCreate() 93 configInfo->dumper in I2sDumperCreate() [all...] |
/device/soc/hisilicon/common/platform/timer/ |
H A D | timer_hi35xx.c | 172 if (info->dumper == NULL) { in TimerDumperAddDatas() 176 PlatformDumperAddDatas(info->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in TimerDumperAddDatas() 347 PlatformDumperDump(info->dumper); in TimerHi35xxStart() 373 PlatformDumperDump(info->dumper); in TimerHi35xxStop() 401 PlatformDumperDestroy(info->dumper); in TimerHi35xxRemove() 528 struct PlatformDumper *dumper = NULL; in TimerDumperGet() local 539 dumper = PlatformDumperCreate(name); in TimerDumperGet() 540 if (dumper == NULL) { in TimerDumperGet() 541 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in TimerDumperGet() 546 info->dumper in TimerDumperGet() [all...] |
/device/soc/hisilicon/common/platform/uart/ |
H A D | uart_hi35xx.c | 52 if (port->dumper == NULL) { in UartDumperDump() 53 HDF_LOGE("%s: uart dumper is NULL", __func__); in UartDumperDump() 56 ret = PlatformDumperAddDatas(port->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in UartDumperDump() 60 (void)PlatformDumperDump(port->dumper); in UartDumperDump() 61 (void)PlatformDumperClearDatas(port->dumper); in UartDumperDump() 66 struct PlatformDumper *dumper = NULL; in UartDumperCreate() local 82 dumper = PlatformDumperCreate(name); in UartDumperCreate() 83 if (dumper == NULL) { in UartDumperCreate() 84 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in UartDumperCreate() 89 port->dumper in UartDumperCreate() [all...] |
/device/soc/hisilicon/common/platform/i2c/ |
H A D | i2c_hi35xx.c | 58 struct PlatformDumper *dumper; member 98 if (hi35xx->dumper == NULL) { in I2cDumperAddDatas() 99 HDF_LOGE("%s: dumper is NULL", __func__); in I2cDumperAddDatas() 102 return PlatformDumperAddDatas(hi35xx->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in I2cDumperAddDatas() 107 struct PlatformDumper *dumper = NULL; in I2cDumperCreate() local 122 dumper = PlatformDumperCreate(name); in I2cDumperCreate() 123 if (dumper == NULL) { in I2cDumperCreate() 124 HDF_LOGE("%s: create dumper for %s fail!", __func__, name); in I2cDumperCreate() 129 hi35xx->dumper = dumper; in I2cDumperCreate() [all...] |
/device/soc/hisilicon/common/platform/mipi_dsi/ |
H A D | mipi_tx_hi35xx.c | 620 struct PlatformDumper *dumper = NULL; in MipiTxDumperCreate() local 636 dumper = PlatformDumperCreate(name); in MipiTxDumperCreate() 637 if (dumper == NULL) { in MipiTxDumperCreate() 638 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in MipiTxDumperCreate() 642 dev->dumper = dumper; in MipiTxDumperCreate() 648 static void MipiTxDumperDump(struct PlatformDumper *dumper) in MipiTxDumperDump() argument 666 if (dumper == NULL) { in MipiTxDumperDump() 667 HDF_LOGE("%s: mipitxRegsVa dumper is NULL!", __func__); in MipiTxDumperDump() 670 ret = PlatformDumperAddDatas(dumper, data in MipiTxDumperDump() [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
H A D | ICUZDump.java | 350 ICUZDump dumper = new ICUZDump(); in dumpZone() 357 dumper.setTimeZone(tzimpl); in dumpZone() 358 dumper.setLowYear(low); in dumpZone() 359 dumper.setHighYear(high); in dumpZone() 360 dumper.setLineSeparator(lineSep); in dumpZone() 361 dumper.dump(w); in dumpZone()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
H A D | OpenTypeTableWriter.java | 124 OpenTypeTableDumper dumper = new OpenTypeTableDumper(data, outputIndex); in dumpTable() 126 dumper.dumpTable(output, valuesPerLine); in dumpTable()
|
/device/soc/hisilicon/common/platform/spi/ |
H A D | spi_hi35xx.c | 58 struct PlatformDumper *dumper; member 77 if (pl022->dumper == NULL) { in SpiDumperDump() 80 ret = PlatformDumperAddDatas(pl022->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in SpiDumperDump() 84 (void)PlatformDumperDump(pl022->dumper); in SpiDumperDump() 85 (void)PlatformDumperClearDatas(pl022->dumper); in SpiDumperDump() 90 struct PlatformDumper *dumper = NULL; in SpiDumperCreate() local 105 dumper = PlatformDumperCreate(spiName); in SpiDumperCreate() 106 if (dumper == NULL) { in SpiDumperCreate() 107 HDF_LOGE("%s: create dumper for %s fail!", __func__, spiName); in SpiDumperCreate() 111 pl022->dumper in SpiDumperCreate() [all...] |
/device/board/hihope/rk3568/camera/vdi_impl/v4l2/pipeline_core/src/node/ |
H A D | rk_exif_node.cpp | 75 CameraDumper& dumper = CameraDumper::GetInstance(); in DeliverBuffer() local 76 dumper.DumpBuffer("board_RKExifNode", ENABLE_RKEXIF_NODE_CONVERTED, buffer); in DeliverBuffer()
|
H A D | rk_face_node.cpp | 58 CameraDumper& dumper = CameraDumper::GetInstance(); in DeliverBuffer() local 59 dumper.DumpBuffer("board_RKFaceNode", ENABLE_RKFACE_NODE_CONVERTED, buffer); in DeliverBuffer()
|
/device/soc/rockchip/common/sdk_linux/drivers/staging/blackbox/ |
H A D | blackbox_storage.c | 45 static void do_kmsg_dump(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason) in do_kmsg_dump() argument 59 (void)kmsg_dump_get_buffer(dumper, true, lastlog + sizeof(*pinfo), lastlog_len - sizeof(*pinfo), in do_kmsg_dump()
|
/third_party/skia/tools/ |
H A D | dump_record.cpp | 183 Dumper dumper(&canvas, record.count()); in main() 185 record.visit(j, dumper); in main()
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | utils.py | 598 def htmlsafe_json_dumps(obj, dumper=None, **kwargs): 616 if dumper is None: 617 dumper = json.dumps 619 dumper(obj, **kwargs)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | utils.py | 545 def htmlsafe_json_dumps(obj, dumper=None, **kwargs): 563 if dumper is None: 564 dumper = json.dumps 565 rv = dumper(obj, **kwargs) \
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | utils.py | 598 def htmlsafe_json_dumps(obj, dumper=None, **kwargs): 616 if dumper is None: 617 dumper = json.dumps 619 dumper(obj, **kwargs)
|
/third_party/mesa3d/src/gallium/drivers/svga/svgadump/ |
H A D | svga_dump.py | 2 Generates dumper for the SVGA 3D command stream using pygccxml. 84 dumper = decl_dumper_t(instance, decl) 85 algorithm.apply_visitor(dumper, decl)
|