HomeSort by relevance Sort by last modified time
    Searched refs:Printf (Results 1 - 25 of 799) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetpkg/
b.go 6 fmt.Printf("%d")
c.go 8 fmt.Printf("%d", 3, 4)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetpkg/
b.go 6 fmt.Printf("%d")
c.go 8 fmt.Printf("%d", 3, 4)
  /external/clang/test/SemaCXX/
printf-cstr.cpp 6 extern int printf(const char *restrict, ...);
33 printf("%d: %s\n", n, hcs.c_str());
34 printf("%d: %s\n", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
35 printf("%d: %s\n", n, hncs); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic function; expected type from format string was 'char *'}}
38 printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}} expected-warning{{cannot pass object of non-POD type 'HasNoCStr' through variadic function}}
39 printf(extstr, hcs, n); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}}
42 struct Printf {
43 Printf();
44 Printf(const Printf&)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 124 Printf(" [failed to restore the stack]\n\n");
133 Printf("%s\n", res.data());
135 Printf("\n");
141 Printf(" (mutexes:");
143 Printf(" %s M%llu", m.write ? "write" : "read", m.id);
144 Printf(i == mset.Size() - 1 ? ")" : ",");
158 Printf("%s", d.Access());
159 Printf(" %s of size %d at %p by %s",
164 Printf(":\n");
165 Printf("%s", d.EndAccess())
    [all...]
  /prebuilts/go/darwin-x86/test/
divide.go 15 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
19 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
26 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
30 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
37 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
41 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
48 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
52 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
strength.go 16 fmt.Printf("func %s(s int%d) {\n", n, bits)
20 fmt.Printf(` if want, got := int%d(%d), s*%d; want != got {
22 fmt.Printf("got %d * %%d == %%d, wanted %d\n", s, got)
28 fmt.Printf("}\n")
33 fmt.Printf("package main\n")
34 fmt.Printf("import \"fmt\"\n")
35 fmt.Printf("var failed = false\n")
40 fmt.Printf("func main() {\n")
43 fmt.Printf("if failed {\n panic(\"multiplication failed\")\n}\n")
44 fmt.Printf("}\n"
    [all...]
  /prebuilts/go/linux-x86/test/
divide.go 15 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
19 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
26 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
30 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
37 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
41 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
48 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
52 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
strength.go 16 fmt.Printf("func %s(s int%d) {\n", n, bits)
20 fmt.Printf(` if want, got := int%d(%d), s*%d; want != got {
22 fmt.Printf("got %d * %%d == %%d, wanted %d\n", s, got)
28 fmt.Printf("}\n")
33 fmt.Printf("package main\n")
34 fmt.Printf("import \"fmt\"\n")
35 fmt.Printf("var failed = false\n")
40 fmt.Printf("func main() {\n")
43 fmt.Printf("if failed {\n panic(\"multiplication failed\")\n}\n")
44 fmt.Printf("}\n"
    [all...]
  /external/compiler-rt/lib/msan/
msan_report.cc 45 Printf("%s", d.Origin());
46 Printf(
68 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
80 Printf(" %sUninitialized value was created by a heap allocation%s\n",
84 Printf(" %sUninitialized value was created by a heap deallocation%s\n",
88 Printf(" %sMemory was marked as uninitialized%s\n", d.Origin(),
92 Printf(" %sUninitialized value was created%s\n", d.Origin(), d.End());
105 Printf("%s", d.Warning());
107 Printf("%s", d.End());
118 Printf("WARNING: Expected use of uninitialized value not found\n")
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vend/hello/
hello.go 9 fmt.Printf("%s\n", strings.Msg)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vend/hello/
hello.go 9 fmt.Printf("%s\n", strings.Msg)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
assert.go 43 fmt.Printf("e2t_ssa(t)=%v want %v", got, t)
52 fmt.Printf("e2t_ssa(s)=%v want nil", got)
58 fmt.Printf("e2t_ssa(s) panic type %T", e)
63 fmt.Printf("e2t_ssa(s) wrong error, want '%s', got '%s'\n", want, err.Error())
68 fmt.Printf("e2t_ssa(s) should panic")
74 fmt.Printf("i2t_ssa(t)=%v want %v", got, t)
83 fmt.Printf("i2t_ssa(s)=%v want nil", got)
89 fmt.Printf("i2t_ssa(s) panic type %T", e)
94 fmt.Printf("i2t_ssa(s) wrong error, want '%s', got '%s'\n", want, err.Error())
99 fmt.Printf("i2t_ssa(s) should panic"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
assert.go 43 fmt.Printf("e2t_ssa(t)=%v want %v", got, t)
52 fmt.Printf("e2t_ssa(s)=%v want nil", got)
58 fmt.Printf("e2t_ssa(s) panic type %T", e)
63 fmt.Printf("e2t_ssa(s) wrong error, want '%s', got '%s'\n", want, err.Error())
68 fmt.Printf("e2t_ssa(s) should panic")
74 fmt.Printf("i2t_ssa(t)=%v want %v", got, t)
83 fmt.Printf("i2t_ssa(s)=%v want nil", got)
89 fmt.Printf("i2t_ssa(s) panic type %T", e)
94 fmt.Printf("i2t_ssa(s) wrong error, want '%s', got '%s'\n", want, err.Error())
99 fmt.Printf("i2t_ssa(s) should panic"
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerExtFunctionsDlsym.cpp 29 Printf("WARNING: Failed to find function \"%s\".", FnName);
31 Printf(" Reason %s.", ErrorMsg);
32 Printf("\n");
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
16 // For testing printf-like functions from external package.
22 fmt.Printf("%p, %x %X", up, up, up)
65 fmt.Printf("")
66 fmt.Printf("%b %b %b", 3, i, x)
67 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
68 fmt.Printf("%d %d %d", 3, i, imap)
69 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
70 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
71 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
312 func printf(format string, args ...interface{}) { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
16 // For testing printf-like functions from external package.
22 fmt.Printf("%p, %x %X", up, up, up)
65 fmt.Printf("")
66 fmt.Printf("%b %b %b", 3, i, x)
67 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
68 fmt.Printf("%d %d %d", 3, i, imap)
69 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
70 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
71 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
312 func printf(format string, args ...interface{}) { func
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4909b.go 11 fmt.Printf("// errorcheck\n\n")
12 fmt.Printf("package p\n\n")
21 fmt.Printf("type T%d int\n", n)
24 fmt.Printf("var t T1\n")
25 fmt.Printf("var p *T1\n")
52 fmt.Printf(structTpl, n, n, 2*n, 2*n+1)
57 fmt.Printf("const _ = unsafe.Offsetof(%s", root)
59 fmt.Printf(".T%d", n)
issue9036.go 31 fmt.Printf("%g %T\n", x1, x1)
32 fmt.Printf("%g %T\n", x2, x2)
33 fmt.Printf("%g %T\n", x3, x3)
34 fmt.Printf("%g %T\n", x4, x4)
35 fmt.Printf("%g %T\n", x5, x5)
36 fmt.Printf("%g %T\n", x6, x6)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4909b.go 11 fmt.Printf("// errorcheck\n\n")
12 fmt.Printf("package p\n\n")
21 fmt.Printf("type T%d int\n", n)
24 fmt.Printf("var t T1\n")
25 fmt.Printf("var p *T1\n")
52 fmt.Printf(structTpl, n, n, 2*n, 2*n+1)
57 fmt.Printf("const _ = unsafe.Offsetof(%s", root)
59 fmt.Printf(".T%d", n)
  /prebuilts/go/darwin-x86/src/math/cmplx/
example_test.go 14 fmt.Printf("%.1f", cmplx.Abs(3+4i))
20 fmt.Printf("%.1f", cmplx.Exp(1i*math.Pi)+1)
26 fmt.Printf("r: %.1f, ?: %.1f*?", r, theta/math.Pi)
  /prebuilts/go/linux-x86/src/math/cmplx/
example_test.go 14 fmt.Printf("%.1f", cmplx.Abs(3+4i))
20 fmt.Printf("%.1f", cmplx.Exp(1i*math.Pi)+1)
26 fmt.Printf("r: %.1f, ?: %.1f*?", r, theta/math.Pi)

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>