Lines Matching refs:A

53       sqlite_mprintf_double {A double: %*.*f} $a $b $x
54 }] [format {A double: %*.*f} $a $b $x]
56 sqlite_mprintf_double {A double: %*.*e} $a $b $x
57 }] [format {A double: %*.*e} $a $b $x]
59 sqlite_mprintf_double {A double: %*.*g} $a $b $x
60 }] [format {A double: %*.*g} $a $b $x]
62 sqlite_mprintf_double {A double: %d %d %g} $a $b $x
63 }] [format {A double: %d %d %g} $a $b $x]
65 sqlite_mprintf_double {A double: %d %d %#g} $a $b $x
66 }] [format {A double: %d %d %#g} $a $b $x]
75 sqlite_mprintf_str {A String: (%*.*s)} 10 10 {This is the string}
76 } [format {A String: (%*.*s)} 10 10 {This is the string}]
78 sqlite_mprintf_str {A String: (%*.*s)} 10 5 {This is the string}
79 } [format {A String: (%*.*s)} 10 5 {This is the string}]
81 sqlite_mprintf_str {A String: (%*.*s)} -10 5 {This is the string}
82 } [format {A String: (%*.*s)} -10 5 {This is the string}]
84 sqlite_mprintf_str {%d %d A String: (%s)} 1 2 {This is the string}
85 } [format {%d %d A String: (%s)} 1 2 {This is the string}]
87 sqlite_mprintf_str {%d %d A String: (%30s)} 1 2 {This is the string}
88 } [format {%d %d A String: (%30s)} 1 2 {This is the string}]
90 sqlite_mprintf_str {%d %d A String: (%-30s)} 1 2 {This is the string}
91 } [format {%d %d A String: (%-30s)} 1 2 {This is the string}]
94 sqlite_mprintf_str {%d %d A quoted string: '%q'} 1 2 {Hi Y'all}
95 } {1 2 A quoted string: 'Hi Y''all'}
97 sqlite_mprintf_str {%d %d A NULL pointer in %%q: '%q'} 1 2
98 } {1 2 A NULL pointer in %q: '(NULL)'}
100 sqlite_mprintf_str {%d %d A quoted string: %Q} 1 2 {Hi Y'all}
101 } {1 2 A quoted string: 'Hi Y''all'}
103 sqlite_mprintf_str {%d %d A NULL pointer in %%Q: %Q} 1 2
104 } {1 2 A NULL pointer in %Q: NULL}
120 sqlite_mprintf_scaled {A double: %g} 1.0e307 1.0
121 } {A double: 1e+307}
123 sqlite_mprintf_scaled {A double: %g} 1.0e307 10.0
124 } {A double: 1e+308}
126 sqlite_mprintf_scaled {A double: %g} 1.0e307 100.0
127 } {A double: NaN}