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

1 2 34 5 6 7

  /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...]
  /external/v8/src/compiler/
loop-analysis.cc 73 void Print() {
74 // Print out the results.
456 finder.Print();
graph-visualizer.cc 116 void Print() {
176 void Print() {
226 JSONGraphNodeWriter(os, &tmp_zone, &ad.graph, ad.positions).Print();
228 JSONGraphEdgeWriter(os, &tmp_zone, &ad.graph).Print();
646 // print:
678 // Print the inputs.
685 // Print the node type, if any.
instruction.cc 74 void InstructionOperand::Print(const RegisterConfiguration* config) const {
82 void InstructionOperand::Print() const { Print(GetRegConfig()); }
195 void MoveOperands::Print(const RegisterConfiguration* config) const {
205 void MoveOperands::Print() const { Print(GetRegConfig()); }
311 void Instruction::Print(const RegisterConfiguration* config) const {
319 void Instruction::Print() const { Print(GetRegConfig()); }
874 void InstructionSequence::Print(const RegisterConfiguration* config) const
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
findertools.py 51 def Print(file):
52 """Print a file thru the finder. Specify file by name or fsspec"""
242 p.accepthighlevel = _processproperty(processname, 'revt') #Is the process high-level event aware (accepts open application, open document, print document, and quit)?
702 print 'Original findertools functionality test...'
703 print 'Testing launch...'
708 print 'Result: ', result
709 print 'Press return-',
711 print 'Testing print...'
712 pathname = EasyDialogs.AskFileForOpen('File to print:'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
findertools.py 51 def Print(file):
52 """Print a file thru the finder. Specify file by name or fsspec"""
242 p.accepthighlevel = _processproperty(processname, 'revt') #Is the process high-level event aware (accepts open application, open document, print document, and quit)?
702 print 'Original findertools functionality test...'
703 print 'Testing launch...'
708 print 'Result: ', result
709 print 'Press return-',
711 print 'Testing print...'
712 pathname = EasyDialogs.AskFileForOpen('File to print:'
    [all...]
  /bootable/recovery/
screen_ui.cpp 630 void ScreenRecoveryUI::Print(const char* fmt, ...) {
720 Print(" Unable to open %s: %s\n", filename, strerror(errno));
  /external/clang/lib/AST/
DeclPrinter.cpp 10 // This file implements the Decl::print method, which pretty prints the
38 void Print(AccessSpecifier AS);
40 /// Print an Objective-C method type in parentheses.
43 /// \param T The type to print.
104 void Decl::print(raw_ostream &Out, unsigned Indentation, function in class:Decl
106 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
109 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, function in class:Decl
151 (*Begin)->print(Out, Policy, Indentation);
162 TD->print(Out, Policy, Indentation);
177 (*Begin)->print(Out, SubPolicy, Indentation)
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-printers_test.cc 227 // is a helper for testing UniversalPrinter<T>::Print() for various types.
229 string Print(const T& value) {
231 UniversalPrinter<T>::Print(value, &ss);
237 // UniversalPrinter<T&>::Print() for various types.
241 UniversalPrinter<T&>::Print(value, &ss);
248 EXPECT_EQ("-1", Print(kAE1));
249 EXPECT_EQ("1", Print(kAE2));
253 EXPECT_EQ("-2", Print(kEWP1));
254 EXPECT_EQ("42", Print(kEWP2));
258 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/gtest/test/
gtest-printers_test.cc 233 // is a helper for testing UniversalPrinter<T>::Print() for various types.
235 string Print(const T& value) {
237 UniversalPrinter<T>::Print(value, &ss);
243 // UniversalPrinter<T&>::Print() for various types.
247 UniversalPrinter<T&>::Print(value, &ss);
254 EXPECT_EQ("-1", Print(kAE1));
255 EXPECT_EQ("1", Print(kAE2));
259 EXPECT_EQ("-2", Print(kEWP1));
260 EXPECT_EQ("42", Print(kEWP2));
264 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 87 // llvm-ar. This object instructs the CommandLine library to print the text of
93 " p[kN] - print file(s) found in the archive\n"
114 Print, ///< Print the contents of the archive
218 case 'p': ++NumOperations; Operation = Print; break;
375 case Print:
415 case Print:
631 case Print:
770 // Print a stack trace if we signal out.
  /external/v8/src/arm/
disasm-arm.cc 9 // The example below will disassemble a block of code and print it to stdout.
70 // Bottleneck functions to print into the out_buffer.
72 void Print(const char* str);
139 void Decoder::Print(const char* str) {
157 // Print the condition guarding the instruction.
159 Print(cond_names[instr->ConditionValue()]);
163 // Print the register name according to the active name converter.
165 Print(converter_.NameOfCPURegister(reg));
169 // Print the VFP S register name according to the active name converter.
171 Print(VFPRegisters::Name(reg, false))
    [all...]
  /external/v8/src/ast/
scopeinfo.cc 737 void ScopeInfo::Print() {
  /external/v8/src/base/platform/
platform-posix.cc 447 void OS::Print(const char* format, ...) {
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 169 Print(state);
303 Print(copy);
356 Print(this);
433 Print(this);
738 static void Print(HCheckTable* table) {
  /external/v8/src/mips/
disasm-mips.cc 9 // The example below will disassemble a block of code and print it to stdout.
62 // Bottleneck functions to print into the out_buffer.
64 void Print(const char* str);
147 void Decoder::Print(const char* str) {
157 // Print the register name according to the active name converter.
159 Print(converter_.NameOfCPURegister(reg));
181 // Print the FPUregister name according to the active name converter.
183 Print(converter_.NameOfXMMRegister(freg));
190 Print("FCSR");
193 Print(converter_.NameOfXMMRegister(freg))
    [all...]
  /external/v8/src/mips64/
disasm-mips64.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);
155 void Decoder::Print(const char* str) {
165 // Print the register name according to the active name converter.
167 Print(converter_.NameOfCPURegister(reg));
189 // Print the FPUregister name according to the active name converter.
191 Print(converter_.NameOfXMMRegister(freg));
198 Print("FCSR");
201 Print(converter_.NameOfXMMRegister(freg))
    [all...]
  /external/v8/src/
objects-printer.cc 19 void Object::Print() {
21 this->Print(os);
26 void Object::Print(std::ostream& os) { // NOLINT
120 Oddball::cast(this)->to_string()->Print(os);
196 Name::cast(this)->Name##Print(os); \
211 if (Is##Type()) return Type::cast(this)->Type##Print(os);
229 void type::type##Print(std::ostream& os) { \
247 void type::type##Print(std::ostream& os) { \
315 global_dictionary()->Print(os);
317 property_dictionary()->Print(os)
    [all...]
types.cc     [all...]
  /external/v8/src/profiler/
profile-generator.cc 263 void ProfileNode::Print(int indent) {
264 base::OS::Print("%5u %*s %s%s %d #%d", self_ticks_, indent, "",
268 base::OS::Print(" %s:%d", entry_->resource_name(), entry_->line_number());
269 base::OS::Print("\n");
272 base::OS::Print("%*s;;; deopted at script_id: %d position: %" PRIuS
277 base::OS::Print("%*s;;; Inline point: script_id %d position: %" PRIuS
286 base::OS::Print("%*s bailed out due to '%s'\n", indent + 10, "",
291 reinterpret_cast<ProfileNode*>(p->value)->Print(indent + 2);
425 void CpuProfile::Print() {
426 base::OS::Print("[Top down]:\n")
    [all...]
  /external/v8/tools/
ll_prof.py 68 # Print flat profile with annotated disassembly for the 10 top
72 # Print flat profile with annotated disassembly for all used symbols.
76 # Print flat profile. Use custom log names.
157 # Print annotated lines.
186 print "%5d | %6.2f%% %x(%d): %s" % (count, percent, offset, offset, lines[i][1])
188 print "%s %x(%d): %s" % (" " * 15, offset, offset, lines[i][1])
189 print
270 print >>sys.stderr, \
310 def Print(self):
312 print cod
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-printers_test.cc 233 // is a helper for testing UniversalPrinter<T>::Print() for various types.
235 string Print(const T& value) {
237 UniversalPrinter<T>::Print(value, &ss);
243 // UniversalPrinter<T&>::Print() for various types.
247 UniversalPrinter<T&>::Print(value, &ss);
254 EXPECT_EQ("-1", Print(kAE1));
255 EXPECT_EQ("1", Print(kAE2));
259 EXPECT_EQ("-2", Print(kEWP1));
260 EXPECT_EQ("42", Print(kEWP2));
264 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.cc 162 void Print() const {
412 virtual void Print() const {
414 lost_packets_.Print();
  /ndk/sources/third_party/googletest/googletest/test/
gtest-printers_test.cc 233 // is a helper for testing UniversalPrinter<T>::Print() for various types.
235 string Print(const T& value) {
237 UniversalPrinter<T>::Print(value, &ss);
243 // UniversalPrinter<T&>::Print() for various types.
247 UniversalPrinter<T&>::Print(value, &ss);
254 EXPECT_EQ("-1", Print(kAE1));
255 EXPECT_EQ("1", Print(kAE2));
259 EXPECT_EQ("-2", Print(kEWP1));
260 EXPECT_EQ("42", Print(kEWP2));
264 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 1055 class Print(Node):
1075 return "Print(%s, %s)" % (repr(self.nodes), repr(self.dest))
    [all...]

Completed in 1210 milliseconds

1 2 34 5 6 7