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

1 2

  /external/deqp/framework/randomshaders/
rsgPrettyPrinter.hpp 35 class PrettyPrinter
38 PrettyPrinter (std::ostringstream& str);
39 ~PrettyPrinter (void) {}
rsgPrettyPrinter.cpp 117 PrettyPrinter::PrettyPrinter (std::ostringstream& str)
123 inline const char* PrettyPrinter::getSimpleTokenStr (Token::Type token)
129 void PrettyPrinter::append (const TokenStream& tokens)
140 void PrettyPrinter::processToken (const Token& token)
rsgShaderGenerator.cpp 346 PrettyPrinter printer(str);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
PrettyPrinter.java 29 public class PrettyPrinter {
32 public PrettyPrinter() {
36 public PrettyPrinter(PrettyPrinterConfiguration configuration) {
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
PrettyPrinterTest.java 39 return new PrettyPrinter().print(cu.findFirst(FieldDeclaration.class).get());
44 return new PrettyPrinter().print(cu.findAll(VariableDeclarationExpr.class).get(0));
87 PrettyPrinter printer = new PrettyPrinter(new PrettyPrinterConfiguration().setVisitorFactory(TestVisitor::new));
119 assertEquals(expected, new PrettyPrinter(config).print(parse(code)));
136 assertEquals(expected, new PrettyPrinter(config).print(parse(code)));
160 assertEquals(expected, new PrettyPrinter(config).print(parse(code)));
177 assertEquals(expected, new PrettyPrinter(config).print(parse(code)));
183 assertEqualsNoEol("enum X {\n\n A, B, C, D, E\n}\n", new PrettyPrinter().print(cu));
189 assertEqualsNoEol("enum X {\n\n A,\n B,\n C,\n D,\n E,\n F\n}\n", new PrettyPrinter().print(cu))
    [all...]
PrettyPrintVisitorTest.java 64 return new PrettyPrinter().print(node);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pprint.py 43 pp = pprint.PrettyPrinter()
51 # PrettyPrinter methods
65 pp = pprint.PrettyPrinter()
84 # PrettyPrinter methods
92 pp = pprint.PrettyPrinter()
99 # PrettyPrinter methods
414 class DottedPrettyPrinter(pprint.PrettyPrinter):
423 return pprint.PrettyPrinter.format(
  /external/python/cpython2/Lib/test/
test_pprint.py 57 pp = pprint.PrettyPrinter()
66 # PrettyPrinter methods
80 pp = pprint.PrettyPrinter()
99 # PrettyPrinter methods
107 pp = pprint.PrettyPrinter()
114 # PrettyPrinter methods
473 class DottedPrettyPrinter(pprint.PrettyPrinter):
482 return pprint.PrettyPrinter.format(
  /external/tensorflow/tensorflow/python/autograph/pyct/
pretty_printer.py 27 class PrettyPrinter(gast.NodeVisitor):
124 printer = PrettyPrinter(color, noanno)
  /external/python/cpython3/Lib/test/
test_pprint.py 80 pp = pprint.PrettyPrinter()
81 pp = pprint.PrettyPrinter(indent=4, width=40, depth=5,
83 pp = pprint.PrettyPrinter(4, 40, 5, io.StringIO())
85 pp = pprint.PrettyPrinter(4, 40, 5, io.StringIO(), True)
86 self.assertRaises(ValueError, pprint.PrettyPrinter, indent=-1)
87 self.assertRaises(ValueError, pprint.PrettyPrinter, depth=0)
88 self.assertRaises(ValueError, pprint.PrettyPrinter, depth=-1)
89 self.assertRaises(ValueError, pprint.PrettyPrinter, width=0)
93 pp = pprint.PrettyPrinter()
102 # PrettyPrinter method
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pprint.py 18 PrettyPrinter()
43 "PrettyPrinter"]
54 printer = PrettyPrinter(
60 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
81 class PrettyPrinter:
340 p = PrettyPrinter()
  /external/python/cpython2/Lib/
pprint.py 18 PrettyPrinter()
46 "PrettyPrinter"]
57 printer = PrettyPrinter(
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
84 class PrettyPrinter:
336 p = PrettyPrinter()
  /external/javaparser/javaparser-metamodel-generator/src/main/java/com/github/javaparser/generator/metamodel/
MetaModelGenerator.java 13 import com.github.javaparser.printer.PrettyPrinter;
160 sourceRoot.setPrinter(new PrettyPrinter(new PrettyPrinterConfiguration().setEndOfLineCharacter("\n"))::print);
  /external/mesa3d/src/gallium/tools/trace/
model.py 53 pretty_printer = PrettyPrinter(formatter)
170 class PrettyPrinter:
parse.py 358 self.pretty_printer = PrettyPrinter(self.formatter)
  /external/iperf3/contrib/
iperf3_to_gnuplot.py 16 pp = pprint.PrettyPrinter(indent=4, stream=sys.stderr)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
Node.java 39 import com.github.javaparser.printer.PrettyPrinter;
146 private static final PrettyPrinter toStringPrinter = new PrettyPrinter(new PrettyPrinterConfiguration());
288 return new PrettyPrinter(prettyPrinterConfiguration).print(this);
    [all...]
CompilationUnit.java 44 import com.github.javaparser.printer.PrettyPrinter;
623 save(cu -> new PrettyPrinter().print(cu));
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
CommentParsingSteps.java 36 import com.github.javaparser.printer.PrettyPrinter;
67 private PrettyPrinter prettyPrinter = new PrettyPrinter(new PrettyPrinterConfiguration());
203 assertThat(prettyPrinter.print(compilationUnit).trim(), is(src.trim()));
  /external/python/cpython3/Lib/
pprint.py 18 PrettyPrinter()
44 "PrettyPrinter"]
50 printer = PrettyPrinter(
57 return PrettyPrinter(indent=indent, width=width, depth=depth,
98 class PrettyPrinter:
570 p = PrettyPrinter()
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 363 class PrettyPrinter {
365 virtual ~PrettyPrinter(){}
381 PrettyPrinter PrettyPrinterInst;
382 class HexagonPrettyPrinter : public PrettyPrinter {
441 class AMDGCNPrettyPrinter : public PrettyPrinter {
474 PrettyPrinter &selectPrettyPrinter(Triple const &Triple) {
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
SourceRoot.java 8 import com.github.javaparser.printer.PrettyPrinter;
62 private Function<CompilationUnit, String> printer = new PrettyPrinter()::print;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
llvm-objdump.cpp     [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 384 class PrettyPrinter {
391 PrettyPrinter(bool V = false, bool C = true, bool CS = true)
894 class StdPrinter : public PrettyPrinter<StdPrinter, std::ostream> { };
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_offload.py 31 pp = pprint.PrettyPrinter()
    [all...]

Completed in 1358 milliseconds

1 2