HomeSort by relevance Sort by last modified time
    Searched defs:Print (Results 26 - 50 of 295) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Printable.h 1 //===--- Printable.h - Print function helpers -------------------*- C++ -*-===//
24 /// This class is useful to construct print helpers for raw_ostream.
40 std::function<void(raw_ostream &OS)> Print;
41 Printable(std::function<void(raw_ostream &OS)> Print)
42 : Print(std::move(Print)) {}
46 P.Print(OS);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
Printable.h 1 //===--- Printable.h - Print function helpers -------------------*- C++ -*-===//
24 /// This class is useful to construct print helpers for raw_ostream.
40 std::function<void(raw_ostream &OS)> Print;
41 Printable(std::function<void(raw_ostream &OS)> Print)
42 : Print(std::move(Print)) {}
46 P.Print(OS);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18410.go 18 func (t X) Print() {
33 caller(func() { X{A: &i, C: &j}.Print() })
34 caller(X{A: &i, C: &j}.Print)
35 caller(x.Print)
issue6399.go 6 Print()
11 func (b Bar) Print() {}
25 f[i].Print()
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18410.go 18 func (t X) Print() {
33 caller(func() { X{A: &i, C: &j}.Print() })
34 caller(X{A: &i, C: &j}.Print)
35 caller(x.Print)
issue6399.go 6 Print()
11 func (b Bar) Print() {}
25 f[i].Print()
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 22 void StackTrace::Print() const {
51 // Always print a trailing empty line after stack trace.
  /external/lzma/CPP/7zip/UI/Console/
BenchCon.cpp 14 void Print(const char *s);
19 void CPrintBenchCallback::Print(const char *s)
  /external/protobuf/examples/
ListPeople.java 11 static void Print(AddressBook addressBook) {
22 System.out.print(" Mobile phone #: ");
25 System.out.print(" Home phone #: ");
28 System.out.print(" Work phone #: ");
48 Print(addressBook);
  /prebuilts/go/darwin-x86/test/ken/
intervar.go 17 type Print struct {
22 func (p *Print) dop() string {
23 r := " print " + string(p.whoami + '0')
52 p := new(Print);
65 expected := " print 1 bio 2 file 3 -- abc"
rob1.go 12 Print() string
35 func (list *List) Print() string {
39 r += i.item.Print()
55 func (this *Integer) Print() string {
68 r := list.Print()
  /prebuilts/go/linux-x86/test/ken/
intervar.go 17 type Print struct {
22 func (p *Print) dop() string {
23 r := " print " + string(p.whoami + '0')
52 p := new(Print);
65 expected := " print 1 bio 2 file 3 -- abc"
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
StdErr.c 19 simple implemenation of SPrint() and Print() to support debug.
21 You can not Print more than EFI_DRIVER_LIB_MAX_PRINT_BUFFER characters at a
24 VSPrint, Print, SPrint format specification has the follwoing form
39 Decimal number that represents width of print
51 '%' - Print a %
59 #include "Print.h"
72 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
149 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
203 Print (
211 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
StdErr.c 19 simple implemenation of SPrint() and Print() to support debug.
21 You can not Print more than EFI_DRIVER_LIB_MAX_PRINT_BUFFER characters at a
24 VSPrint, Print, SPrint format specification has the follwoing form
39 Decimal number that represents width of print
51 '%' - Print a %
59 #include "Print.h"
72 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
149 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
203 Print (
211 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
    [all...]
  /external/tensorflow/tensorflow/python/ops/
logging_ops.py 37 # Assert and Print are special symbols in python, so we must
39 @tf_export("Print")
40 def Print(input_, data, message=None, first_n=None, summarize=None,
53 data: A list of tensors to print out when op is evaluated.
57 summarize: Only print this many entries of each tensor. If None, then a
67 @ops.RegisterGradient("Print")
  /external/v8/src/
bit-vector.cc 14 void BitVector::Print() {
property.cc 92 void PropertyDetails::Print(bool dictionary_mode) {
  /external/v8/src/interpreter/
bytecode-pipeline.cc 14 void BytecodeNode::Print(std::ostream& os) const {
59 node.Print(os);
  /external/webrtc/webrtc/system_wrappers/source/
logcat_trace_context.cc 56 void LogcatTraceContext::Print(TraceLevel level,
logging_unittest.cc 25 virtual void Print(TraceLevel level, const char* msg, int length) {
55 ASSERT_EQ(kTraceNone, level_) << "Print() was not called";
  /frameworks/base/tools/aapt2/java/
ClassDefinition.cpp 26 void ClassMember::Print(bool /*final*/, Printer* printer) const {
27 processor_.Print(printer);
34 void MethodDefinition::Print(bool final, Printer* printer) const {
35 printer->Print(signature_).Println(" {");
41 printer->Print("}");
77 void ClassDefinition::Print(bool final, Printer* printer) const {
82 ClassMember::Print(final, printer);
84 printer->Print("public ");
86 printer->Print("static ");
88 printer->Print("final class ").Print(name_).Println(" {")
    [all...]
  /frameworks/base/tools/aapt2/text/
Printer.cpp 30 Print(str);
31 return Print("\n");
35 return Print("\n");
38 Printer& Printer::Print(const StringPiece& str) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/proftest/
proftest.go 90 // Print messages are discarded by the test UI.
91 func (ui *TestUI) Print(args ...interface{}) {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
triegen.go 80 func (c *normCompacter) Print(w io.Writer) (retErr error) {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/proftest/
proftest.go 90 // Print messages are discarded by the test UI.
91 func (ui *TestUI) Print(args ...interface{}) {

Completed in 497 milliseconds

12 3 4 5 6 7 8 91011>>