HomeSort by relevance Sort by last modified time
    Searched refs:printer (Results 76 - 100 of 429) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateMergingCode(io::Printer* printer) const;
55 void GenerateParsingCode(io::Printer* printer) const;
56 void GenerateSerializationCode(io::Printer* printer) const;
57 void GenerateSerializedSizeCode(io::Printer* printer) const
    [all...]
javamicro_message_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateMergingCode(io::Printer* printer) const;
55 void GenerateParsingCode(io::Printer* printer) const;
56 void GenerateSerializationCode(io::Printer* printer) const;
57 void GenerateSerializedSizeCode(io::Printer* printer) const
    [all...]
javamicro_primitive_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateMergingCode(io::Printer* printer) const;
55 void GenerateParsingCode(io::Printer* printer) const;
56 void GenerateSerializationCode(io::Printer* printer) const;
57 void GenerateSerializedSizeCode(io::Printer* printer) const
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_primitive_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateParsingCode(io::Printer* printer) const;
55 void GenerateSerializationCode(io::Printer* printer) const;
56 void GenerateSerializedSizeCode(io::Printer* printer) const;
61 void GenerateSerializationConditional(io::Printer* printer) const
    [all...]
javanano_enum_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateParsingCode(io::Printer* printer) const;
55 void GenerateSerializationCode(io::Printer* printer) const;
56 void GenerateSerializedSizeCode(io::Printer* printer) const;
73 void GenerateMembers(io::Printer* printer) const
    [all...]
javanano_message_field.h 53 void GenerateMembers(io::Printer* printer) const;
54 void GenerateParsingCode(io::Printer* printer) const;
55 void GenerateSerializationCode(io::Printer* printer) const;
56 void GenerateSerializedSizeCode(io::Printer* printer) const;
74 void GenerateMembers(io::Printer* printer) const
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
25 """A basic pretty-printer.
35 enabled: A boolean indicating if the printer is enabled.
37 Subprinters are for situations where "one" pretty-printer is actually a
38 collection of several printers. E.g., The libstdc++ pretty-printer has
39 a pretty-printer for each of several different types, based on regexps.
71 def register_pretty_printer(obj, printer, replace=False):
72 """Register pretty-printer PRINTER with OBJ.
74 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
25 """A basic pretty-printer.
35 enabled: A boolean indicating if the printer is enabled.
37 Subprinters are for situations where "one" pretty-printer is actually a
38 collection of several printers. E.g., The libstdc++ pretty-printer has
39 a pretty-printer for each of several different types, based on regexps.
71 def register_pretty_printer(obj, printer, replace=False):
72 """Register pretty-printer PRINTER with OBJ.
74 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
25 """A basic pretty-printer.
35 enabled: A boolean indicating if the printer is enabled.
37 Subprinters are for situations where "one" pretty-printer is actually a
38 collection of several printers. E.g., The libstdc++ pretty-printer has
39 a pretty-printer for each of several different types, based on regexps.
71 def register_pretty_printer(obj, printer, replace=False):
72 """Register pretty-printer PRINTER with OBJ.
74 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
25 """A basic pretty-printer.
35 enabled: A boolean indicating if the printer is enabled.
37 Subprinters are for situations where "one" pretty-printer is actually a
38 collection of several printers. E.g., The libstdc++ pretty-printer has
39 a pretty-printer for each of several different types, based on regexps.
71 def register_pretty_printer(obj, printer, replace=False):
72 """Register pretty-printer PRINTER with OBJ.
74 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_extension.h 46 class Printer; // printer.h
62 void Generate(io::Printer* printer);
63 void GenerateNonNestedInitializationCode(io::Printer* printer);
64 void GenerateRegistrationCode(io::Printer* printer);
java_file.cc 42 #include <google/protobuf/io/printer.h>
181 void FileGenerator::Generate(io::Printer* printer) {
184 printer->Print(
190 printer->Print(
195 printer->Print(
199 printer->Indent();
203 printer->Print(
208 printer->Indent();
211 ExtensionGenerator(file_->extension(i)).GenerateRegistrationCode(printer);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_extension.h 46 class Printer; // printer.h
62 void Generate(io::Printer* printer);
63 void GenerateInitializationCode(io::Printer* printer);
64 void GenerateRegistrationCode(io::Printer* printer);
java_field.h 45 class Printer; // printer.h
58 virtual void GenerateMembers(io::Printer* printer) const = 0;
59 virtual void GenerateBuilderMembers(io::Printer* printer) const = 0;
60 virtual void GenerateInitializationCode(io::Printer* printer) const = 0;
61 virtual void GenerateMergingCode(io::Printer* printer) const = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing_unittest.py 106 printer = printing.Printer(self._port, options, regular_output)
107 return printer, regular_output
120 printer, err = self.get_printer()
121 printer.cleanup()
122 printer.cleanup()
123 printer = None
126 printer, err = self.get_printer()
128 printer._options.pixel_tests = True
129 printer._options.new_baseline = Tru
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.h 46 class Printer; // printer.h
66 void GenerateDefinition(io::Printer* printer);
70 void GenerateGetEnumDescriptorSpecializations(io::Printer* printer);
76 void GenerateSymbolImports(io::Printer* printer);
82 void GenerateDescriptorInitializer(io::Printer* printer, int index)
    [all...]
cpp_extension.h 46 class Printer; // printer.h
65 void GenerateDeclaration(io::Printer* printer);
68 void GenerateDefinition(io::Printer* printer);
71 void GenerateRegistration(io::Printer* printer);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.h 47 class Printer; // printer.h
67 void GenerateHeader(io::Printer* printer);
68 void GenerateSource(io::Printer* printer);
73 void GenerateBuildDescriptors(io::Printer* printer);
75 void GenerateNamespaceOpeners(io::Printer* printer);
    [all...]
cpp_extension.h 45 class Printer; // printer.h
64 void GenerateDeclaration(io::Printer* printer);
67 void GenerateDefinition(io::Printer* printer);
70 void GenerateRegistration(io::Printer* printer);
  /external/chromium_org/printing/backend/
printing_info_win.h 18 PRINTING_EXPORT uint8* GetDriverInfo(HANDLE printer, int level);
19 PRINTING_EXPORT uint8* GetPrinterInfo(HANDLE printer, int level);
26 bool Init(HANDLE printer) {
27 buffer_.reset(GetPrinterInfo(printer, level));
44 bool Init(HANDLE printer) {
45 buffer_.reset(GetDriverInfo(printer, level));
70 // 2 (printer-default).
76 bool Init(HANDLE printer);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]

Completed in 820 milliseconds

1 2 34 5 6 7 8 91011>>