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

1 2 34 5 6 7

  /external/v8/src/
objects-printer.cc 43 void MaybeObject::Print(FILE* out) {
59 Print(out);
136 Oddball::cast(this)->to_string()->Print(out);
152 JSValue::cast(this)->value()->Print(out);
155 JSDate::cast(this)->value()->Print(out);
183 Name::cast(this)->Name##Print(out); \
309 property_dictionary()->Print(out);
320 // Print in array notation for non-sparse arrays.
330 // Print in array notation for non-sparse arrays.
411 elements()->Print(out)
    [all...]
platform-nullos.cc 147 // Print (debug) message to console.
148 void OS::Print(const char* format, ...) {
153 // Print (debug) message to console.
173 // Print error message to console.
183 // Print error message to console.
platform-posix.cc 239 void OS::Print(const char* format, ...) {
objects-debug.cc 841 void JSObject::SpillInformation::Print() {
prettyprinter.cc 54 if (!node->is_initializer_block()) Print("{ ");
56 if (node->statements()->length() > 0) Print(" ");
57 if (!node->is_initializer_block()) Print("}");
62 Print("var ");
64 Print(";");
69 Print("function ");
71 Print(" = ");
73 Print(";");
78 Print("module ");
80 Print(" = ")
    [all...]
scopes.cc 272 scope->Print();
277 top->interface()->Print();
788 void Scope::Print(int n) {
792 // Print header.
799 // Print parameters, if any.
844 // Print locals.
865 // Print inner scopes (disable by providing negative n).
869 inner_scopes_[i]->Print(n1);
1015 proxy->interface()->Print();
1017 var->interface()->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...]
  /external/chromium/testing/gtest/test/
gtest-printers_test.cc 226 // is a helper for testing UniversalPrinter<T>::Print() for various types.
228 string Print(const T& value) {
230 UniversalPrinter<T>::Print(value, &ss);
236 // UniversalPrinter<T&>::Print() for various types.
240 UniversalPrinter<T&>::Print(value, &ss);
247 EXPECT_EQ("-1", Print(kAE1));
248 EXPECT_EQ("1", Print(kAE2));
252 EXPECT_EQ("-2", Print(kEWP1));
253 EXPECT_EQ("42", Print(kEWP2));
257 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-printers_test.cc 228 // is a helper for testing UniversalPrinter<T>::Print() for various types.
230 string Print(const T& value) {
232 UniversalPrinter<T>::Print(value, &ss);
238 // UniversalPrinter<T&>::Print() for various types.
242 UniversalPrinter<T&>::Print(value, &ss);
249 EXPECT_EQ("-1", Print(kAE1));
250 EXPECT_EQ("1", Print(kAE2));
254 EXPECT_EQ("-2", Print(kEWP1));
255 EXPECT_EQ("42", Print(kEWP2));
259 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/chromium_org/v8/src/arm/
disasm-arm.cc 32 // The example below will disassemble a block of code and print it to stdout.
96 // Bottleneck functions to print into the out_buffer.
98 void Print(const char* str);
165 void Decoder::Print(const char* str) {
183 // Print the condition guarding the instruction.
185 Print(cond_names[instr->ConditionValue()]);
189 // Print the register name according to the active name converter.
191 Print(converter_.NameOfCPURegister(reg));
195 // Print the VFP S register name according to the active name converter.
197 Print(VFPRegisters::Name(reg, false))
    [all...]
  /external/chromium_org/v8/src/
objects-printer.cc 40 void MaybeObject::Print() {
41 Print(stdout);
45 void MaybeObject::Print(FILE* out) {
66 Print(out);
147 Oddball::cast(this)->to_string()->Print(out);
166 JSValue::cast(this)->value()->Print(out);
218 Name::cast(this)->Name##Print(out); \
319 property_dictionary()->Print(out);
332 // Print in array notation for non-sparse arrays.
343 // Print in array notation for non-sparse arrays
    [all...]
platform-nullos.cc 152 // Print (debug) message to console.
153 void OS::Print(const char* format, ...) {
158 // Print (debug) message to console.
178 // Print error message to console.
188 // Print error message to console.
prettyprinter.cc 55 if (!node->is_initializer_block()) Print("{ ");
57 if (node->statements()->length() > 0) Print(" ");
58 if (!node->is_initializer_block()) Print("}");
63 Print("var ");
65 Print(";");
70 Print("function ");
72 Print(" = ");
74 Print(";");
79 Print("module ");
81 Print(" = ")
    [all...]
profile-generator.cc 222 void ProfileNode::Print(int indent) {
223 OS::Print("%5u %5u %*c %s%s %d #%d",
231 OS::Print(" %s:%d", entry_->resource_name(), entry_->line_number());
232 OS::Print("\n");
236 reinterpret_cast<ProfileNode*>(p->value)->Print(indent + 2);
369 OS::Print("root: %u %u %.2fms %.2fms\n",
403 OS::Print("top down ");
408 void CpuProfile::Print() {
409 OS::Print("[Top down]:\n");
410 top_down_.Print();
    [all...]
profile-generator.h 144 void Print(int indent);
187 void Print() {
188 root_->Print(0);
225 void Print();
248 void Print();
scopes.cc 304 scope->Print();
309 top->interface()->Print();
853 void Scope::Print(int n) {
857 // Print header.
864 // Print parameters, if any.
909 // Print locals.
935 // Print inner scopes (disable by providing negative n).
939 inner_scopes_[i]->Print(n1);
    [all...]
  /external/chromium_org/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.
178 print "%15.2f %x: %s" % (count, lines[i][0], lines[i][1])
180 print "%s %x: %s" % (" " * 15, lines[i][0], lines[i][1])
181 print
262 print >>sys.stderr, \
302 def Print(self):
304 print cod
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 10 // This file implements the Decl::print method, which pretty prints the
38 void Print(AccessSpecifier AS);
93 void Decl::print(raw_ostream &Out, unsigned Indentation, function in class:Decl
95 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
98 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, function in class:Decl
140 (*Begin)->print(Out, Policy, Indentation);
151 TD->print(Out, Policy, Indentation);
166 (*Begin)->print(Out, SubPolicy, Indentation);
208 void DeclPrinter::Print(AccessSpecifier AS) {
232 // Don't print ObjCIvarDecls, as they are printed when visiting th
    [all...]
  /external/gtest/test/
gtest-printers_test.cc 226 // is a helper for testing UniversalPrinter<T>::Print() for various types.
228 string Print(const T& value) {
230 UniversalPrinter<T>::Print(value, &ss);
236 // UniversalPrinter<T&>::Print() for various types.
240 UniversalPrinter<T&>::Print(value, &ss);
247 EXPECT_EQ("-1", Print(kAE1));
248 EXPECT_EQ("1", Print(kAE2));
252 EXPECT_EQ("-2", Print(kEWP1));
253 EXPECT_EQ("42", Print(kEWP2));
257 EXPECT_EQ("kEWS1", Print(kEWS1))
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 82 // to print the text of the constructor when the --help option is given.
87 " p[kN] - print file(s) found in the archive\n"
109 Print, ///< Print the contents of the archive
196 case 'p': ++NumOperations; Operation = Print; break;
349 case Print:
380 case Print:
841 case Print:
863 // Print a stack trace if we signal out.
  /external/protobuf/src/google/protobuf/
text_format.cc 688 // Print text to the output stream.
689 void Print(const string& str) {
690 Print(str.data(), str.size());
693 // Print text to the output stream.
694 void Print(const char* text) {
695 Print(text, strlen(text));
698 // Print text to the output stream.
699 void Print(const char* text, int size) {
862 bool result = Print(message, &output_stream);
877 bool TextFormat::Printer::Print(const Message& message
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 32 // The example below will disassemble a block of code and print it to stdout.
96 // Bottleneck functions to print into the out_buffer.
98 void Print(const char* str);
161 void Decoder::Print(const char* str) {
179 // Print the condition guarding the instruction.
181 Print(cond_names[instr->ConditionValue()]);
185 // Print the register name according to the active name converter.
187 Print(converter_.NameOfCPURegister(reg));
190 // Print the VFP S register name according to the active name converter.
192 Print(VFPRegisters::Name(reg, false))
    [all...]
  /external/v8/tools/
ll_prof.py 58 # Print flat profile with annotated disassembly for the 10 top
62 # Print flat profile with annotated disassembly for all used symbols.
66 # Print flat profile. Use custom log names.
141 # Print annotated lines.
162 print "%15.2f %x: %s" % (count, lines[i][0], lines[i][1])
164 print "%s %x: %s" % (" " * 15, lines[i][0], lines[i][1])
165 print
246 print >>sys.stderr, \
286 def Print(self):
288 print cod
    [all...]
  /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/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 1055 class Print(Node):
1075 return "Print(%s, %s)" % (repr(self.nodes), repr(self.dest))
    [all...]

Completed in 2991 milliseconds

1 2 34 5 6 7