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

1 23 4 5 6 7

  /external/google-breakpad/src/processor/
fast_source_line_resolver_unittest.cc 117 void Print() const {
microdump.cc 164 void MicrodumpMemoryRegion::Print() const {
postfix_evaluator_unittest.cc 79 virtual void Print() const {
stackwalker_unittest_utils.h 79 void Print() const {
  /external/google-breakpad/src/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/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/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/mesa3d/src/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/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 800 void TiXmlElement::Print( FILE* cfile, int depth ) const
814 attrib->Print( cfile, depth );
829 firstChild->Print( cfile, depth + 1 );
842 node->Print( cfile, depth+1 );
1110 Print( fp, 0 );
1145 void TiXmlDocument::Print( FILE* cfile, int depth ) const
1150 node->Print( cfile, depth );
1210 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/, TIXML_STRING* str ) const
1297 void TiXmlComment::Print( FILE* cfile, int depth ) const
1332 void TiXmlText::Print( FILE* cfile, int depth ) cons
    [all...]
  /external/v8/samples/
shell.cc 54 void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
121 // Bind the global 'print' function to the C++ Print callback.
123 v8::String::NewFromUtf8(isolate, "print", v8::NewStringType::kNormal)
125 v8::FunctionTemplate::New(isolate, Print));
148 // The callback that is invoked by v8 whenever the JavaScript 'print'
151 void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
357 // Print errors that happened during compilation.
365 // Print errors that happened during execution.
372 // If all went well and the result wasn't undefined then print
    [all...]
  /external/v8/src/compiler/
node.cc 284 void Node::Print() const {
  /external/v8/src/
counters.cc 201 void Print(std::ostream& os) {
209 entry.Print(os);
212 Entry("Total", total_time, total_call_count).Print(os);
238 void Print(std::ostream& os) {
310 void RuntimeCallStats::Print(std::ostream& os) {
333 entries.Print(os);
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 155 copy->Print();
190 Print();
415 // Print this table to stdout.
416 void Print() {
  /external/v8/src/ppc/
disasm-ppc.cc 9 // The example below will disassemble a block of code and print it to stdout.
63 // Bottleneck functions to print into the out_buffer.
65 void Print(const char* str);
104 void Decoder::Print(const char* str) {
114 // Print the register name according to the active name converter.
116 Print(converter_.NameOfCPURegister(reg));
120 // Print the double FP register name according to the active name converter.
122 Print(GetRegConfig()->GetDoubleRegisterName(reg));
126 // Print SoftwareInterrupt codes. Factoring this out reduces the complexity of
131 Print("call rt redirected")
    [all...]
  /external/v8/src/profiler/
allocation-tracker.cc 56 void AllocationTraceNode::Print(int indent, AllocationTracker* tracker) {
57 base::OS::Print("%10u %10u %*c", total_size_, allocation_count_, indent, ' ');
61 base::OS::Print("%s #%u", info->name, id_);
63 base::OS::Print("%u #%u", function_info_index_, id_);
65 base::OS::Print("\n");
68 children_[i]->Print(indent, tracker);
95 void AllocationTraceTree::Print(AllocationTracker* tracker) {
96 base::OS::Print("[AllocationTraceTree:]\n");
97 base::OS::Print("Total size | Allocation count | Function id | id\n");
98 root()->Print(0, tracker)
    [all...]
  /external/v8/src/s390/
disasm-s390.cc 9 // The example below will disassemble a block of code and print it to stdout.
61 // Bottleneck functions to print into the out_buffer.
63 void Print(const char* str);
100 void Decoder::Print(const char* str) {
109 // Print the register name according to the active name converter.
111 Print(converter_.NameOfCPURegister(reg));
114 // Print the double FP register name according to the active name converter.
116 Print(GetRegConfig()->GetDoubleRegisterName(reg));
119 // Print SoftwareInterrupt codes. Factoring this out reduces the complexity of
124 Print("call rt redirected")
    [all...]
  /external/v8/tools/
perf-to-html.py 158 def Print(self, str_data):
169 print(string_data)
172 self.Print("<h2>")
173 self.Print("<a name=\"" + benchmark.name() + "\">")
174 self.Print(benchmark.name() + "</a> <a href=\"#top\">(top)</a>")
175 self.Print("</h2>");
176 self.Print("<table class=\"benchmark\">")
177 self.Print("<thead>")
178 self.Print(" <th>Test</th>")
179 self.Print(" <th>Result</th>"
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /ndk/sources/third_party/googletest/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...]
  /system/connectivity/shill/net/
attribute_list.cc 77 void AttributeList::Print(int log_level, int indent) const {
81 i->second->Print(log_level, indent);
netlink_attribute.cc 387 void NetlinkAttribute::Print(int log_level, int indent) const {
833 void NetlinkNestedAttribute::Print(int log_level, int indent) const {
835 value_->Print(log_level, indent + 1);
845 // from attribute->Print but NetlinkNestedAttribute::Print doesn't call
846 // |ToString|. Still, we should print something in case we got here
    [all...]
  /bootable/recovery/
wear_ui.cpp 377 void WearRecoveryUI::Print(const char *fmt, ...)
513 Print("--(%d%% of %d bytes)--",
566 Print(" Unable to open %s: %s\n", filename, strerror(errno));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector.h 361 void Print() {
  /external/libchrome/base/debug/
stack_trace_posix.cc 306 debug::StackTrace().Print();
736 void StackTrace::Print() const {
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 81 printHeader and printFooter, or even Print (though this is unlikely).
120 def Print(self, api):
128 """Print the header associated with all files and call the printRealHeader method."""
130 print '/* DO NOT EDIT - This file generated automatically by %s script */' \
132 print ''
133 print '/*'
134 print ' * ' + self.license.replace('\n', '\n * ')
135 print ' */'
136 print ''
138 print '#if !defined( %s )' % (self.header_tag
    [all...]

Completed in 1591 milliseconds

1 23 4 5 6 7