HomeSort by relevance Sort by last modified time
    Searched refs:Print (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /external/protobuf/src/google/protobuf/
text_format.h 61 static bool Print(const Message& message, io::ZeroCopyOutputStream* output);
63 // Print the fields in an UnknownFieldSet. They are printed by tag number
69 // Like Print(), but outputs directly to a string.
78 // be supplied. Note that this method will print the default value for a
92 // Like TextFormat::Print
93 bool Print(const Message& message, io::ZeroCopyOutputStream* output);
120 // Set true to print repeated primitives in a format like:
139 // Forward declaration of an internal class used to print the text
143 // Internal Print method, used for writing to the OutputStream via
145 void Print(const Message& message
    [all...]
  /external/v8/src/
prettyprinter.h 43 // The following routines print a node into a string.
45 const char* Print(AstNode* node);
49 void Print(const char* format, ...);
51 // Print a node to stdout.
141 // Print text indented by the current indentation level.
142 void PrintIndented(const char* text) { Print("%*s%s", indent_, "", text); }
objects-printer.cc 43 void MaybeObject::Print(FILE* out) {
59 Print(out);
127 Oddball::cast(this)->to_string()->Print(out);
143 JSValue::cast(this)->value()->Print(out);
162 Name::cast(this)->Name##Print(out); \
257 property_dictionary()->Print(out);
265 // Print in array notation for non-sparse arrays.
334 elements()->Print(out);
469 value()->Print(out);
528 shared()->name()->Print(out)
    [all...]
  /device/moto/common/
releasetools.py 25 print ("warning: rdl.bin and/or bp.img not in input target_files; "
32 print ("warning: mbm_consumer.bin not in input target_files; "
46 print ("warning: mbm_consumer.bin not in input target_files; "
73 print("BP images unchanged; skipping")
75 print("BP image changed; including")
76 info.script.Print("Writing RDL/BP image...")
79 print("warning: no rdl.bin and/or bp.img in source_files; just use target")
80 info.script.Print("Writing RDL/BP image...")
83 print("warning: no rdl.bin and/or bp.img in target_files; not flashing")
92 print ("warning: no "+ bin_name +" in input target_files; not flashing"
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
httpcacheview.js 23 // Print the statistics.
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.h 40 #include "Print.h"
80 class Max_LCD : public Print {
  /external/libvpx/build/make/
gen_msvs_def.sh 31 --help Print this message
  /external/protobuf/src/google/protobuf/compiler/python/
python_plugin_unittest.cc 73 printer.Print("// inserted $name$\n", "name", insertion_point);
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc 174 console_->Print(RECEIVE_COMMANDS);
191 console_->Print(CALL_COMMANDS);
232 console_->Print(CONSOLE_COMMANDS);
300 console_->Print("call destroyed");
309 console_->Print("connecting...");
313 console_->Print("logging in...");
317 console_->Print("logged in...");
324 console_->Print("logged out..." + strerror(error));
415 console_->Print("calling...");
417 console_->Print("call answered")
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest-printers.h 34 // This file implements a universal value printer that can print a
37 // void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);
39 // A user can teach this function how to print a class type T by
49 // If none of the above is defined, it will print the debug string of
50 // the value if it is a protocol buffer, or print the raw bytes in the
84 // The print primitives print the elements of an STL-style container
88 // match value_type, and the print output may be incorrect. In
128 // by the universal printer to print a value of type T when neither
141 // We print a protobuf using its ShortDebugString() when the strin
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
flags.h 150 void Print(bool print_current_value);
212 static void Print(const char* file, bool print_current_value);
flags.cc 111 void Flag::Print(bool print_current_value) {
133 void FlagList::Print(const char* file, bool print_current_value) {
143 f->Print(print_current_value);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 49 (* Print out all the generated code. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 49 (* Print out all the generated code. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 49 (* Print out all the generated code. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 53 (* Print out all the generated code. *)
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-printers.h 34 // This file implements a universal value printer that can print a
37 // void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);
39 // A user can teach this function how to print a class type T by
49 // If none of the above is defined, it will print the debug string of
50 // the value if it is a protocol buffer, or print the raw bytes in the
84 // The print primitives print the elements of an STL-style container
88 // match value_type, and the print output may be incorrect. In
128 // by the universal printer to print a value of type T when neither
141 // We print a protobuf using its ShortDebugString() when the strin
    [all...]
  /external/tinyxml/
tinyxml.cpp 766 void TiXmlElement::Print( FILE* cfile, int depth ) const
780 attrib->Print( cfile, depth );
795 firstChild->Print( cfile, depth + 1 );
808 node->Print( cfile, depth+1 );
1102 Print( fp, 0 );
1136 void TiXmlDocument::Print( FILE* cfile, int depth ) const
1141 node->Print( cfile, depth );
1198 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/ ) const
1290 void TiXmlComment::Print( FILE* cfile, int depth ) const
1326 void TiXmlText::Print( FILE* cfile, int depth ) cons
    [all...]
tinyxml.h 162 /** All TinyXml classes can print themselves to a filestream.
163 This is a formatted print, and will insert tabs and newlines.
167 virtual void Print( FILE* cfile, int depth ) const = 0;
396 without any newlines or formatting, as opposed to Print(), which
782 virtual void Print( FILE* cfile, int depth ) const;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_plugin_unittest.cc 78 printer.Print("// inserted $name$\n", "name", insertion_point);
  /external/protobuf/src/google/protobuf/compiler/java/
java_generator.cc 112 srclist_printer.Print("$filename$\n", "filename", all_files[i]);
java_plugin_unittest.cc 75 printer.Print("// inserted $name$\n", "name", insertion_point);
  /external/valgrind/tsan/
ts_events.h 126 void Print() const {
  /external/llvm/tools/llvm-config/
llvm-config.in.in 100 $has_opt = 1; print "$VERSION\n";
102 $has_opt = 1; print "$PREFIX\n";
104 $has_opt = 1; print "$BINDIR\n";
106 $has_opt = 1; print "$INCLUDEDIR\n";
108 $has_opt = 1; print "$LIBDIR\n";
110 $has_opt = 1; print "$INCLUDEOPTION $CPPFLAGS\n";
112 $has_opt = 1; print "$INCLUDEOPTION $CFLAGS\n";
114 $has_opt = 1; print "$INCLUDEOPTION $CXXFLAGS\n";
116 $has_opt = 1; print "-L$LIBDIR $LDFLAGS $SYSTEM_LIBS\n";
124 $has_opt = 1; print join(' ', name_map_entries), "\n"
    [all...]
  /external/v8/test/cctest/
test-assembler-ia32.cc 78 Code::cast(code)->Print();
116 Code::cast(code)->Print();
158 Code::cast(code)->Print();
190 // don't print the code - our disassembler can't handle cvttss2si
191 // instead print bytes
224 // don't print the code - our disassembler can't handle cvttsd2si
225 // instead print bytes
292 // don't print the code - our disassembler can't handle SSE instructions
293 // instead print bytes
332 Code::cast(code)->Print();
    [all...]

Completed in 2366 milliseconds

1 23 4 5 6 7 8