Home
last modified time | relevance | path

Searched +defs:b +defs:string (Results 1 – 25 of 1374) sorted by relevance

12345678910>>...55

/aosp_15_r20/prebuilts/go/linux-x86/test/
Dreorder2.go15 func (t TT) a(s string) TT {
20 func (TT) b(s string) string { func
27 func a(s string) F {
32 func b(s string) string { func
38 a(s string) I
39 b(s string) string methodSpec
44 func (t T1) a(s string) I {
49 func (T1) b(s string) string { func
57 func f(x, y string) {
62 func ff(x, y string) {
[all …]
Dprove.go80 func f4a(a, b, c int) int { argument
101 func f4b(a, b, c int) int { argument
114 func f4c(a, b, c int) int { argument
127 func f4d(a, b, c int) int { argument
143 func f4e(a, b, c int) int { argument
153 func f4f(a, b, c int) int { argument
251 func f10(a string) int {
285 func f13a(a, b, c int, x bool) int { argument
563 func fence3(b, c []int, x, y int64) { argument
678 func suffix(s, suffix string) bool { func
[all …]
Descape_calls.go47 func prototype(xyz []string) {} // ERROR "xyz does not escape"
56 func strmin(a, b, c string) string { // ERROR "leaking param: a to result ~r0 level=0" "leaking par… argument
59 func strmax(a, b, c string) string { // ERROR "leaking param: a to result ~r0 level=0" "leaking par… argument
Dlive_regabi.go25 func printstringpointer(*string)
28 func printstring(string) argument
163 var b bool var
231 func g13(string) string argument
232 func h13(string, string) string argument
724 func f45(a, b, c, d, e, f, g, h, i, j, k, l *byte) { // ERROR "live at entry to f45: a b c d e f g … argument
741 func f46(a, b, c, d, e, f, g, h, i, j, k, l *byte) { argument
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/
Dbug294.go15 func (t T) a(s string) T {
20 func (T) b(s string) string { func
27 func a(s string) F {
32 func b(s string) string { func
38 a(s string) I
39 b(s string) string methodSpec
44 func (t T1) a(s string) I {
49 func (T1) b(s string) string { func
/aosp_15_r20/prebuilts/go/linux-x86/test/codegen/
Dcomparisons.go23 func CompareString1(s string) bool {
31 func CompareString2(s string) bool {
39 func CompareString3(s string) bool {
211 func CmpToZero(a, b, d int32, e, f int64, deOptC0, deOptC1 bool) int32 { argument
271 func CmpLogicalToZero(a, b, c uint32, d, e uint64) uint64 { argument
370 func CmpToZero_ex2(a, b, c int64, e, f, g int32) int { argument
401 func CmpToZero_ex3(a, b, c, d int64, e, f, g, h int32) int { argument
427 func CmpToZero_ex4(a, b, c, d int64, e, f, g, h int32) int { argument
604 func equalVarString1(a string) bool {
621 func equalVarString2(a string) bool {
[all …]
Dwritebarrier.go9 func combine2string(p *[2]string, a, b string) {
18 func combine4string(p *[4]string, a, b, c, d string) { argument
42 func combine4slice(p *[4][]byte, a, b, c, d []byte) { argument
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/
H A Dregister_prim_ops.cpp28 std::string stringSlice( in stringSlice()
53 c10::List<std::string> splitNoneSeparator(const std::string& string) { in splitNoneSeparator()
182 auto powWrapper(T a, U b) { in powWrapper()
354 bool b = false; in __anonbfe5918f1302() local
429 bool b = false; in __anonbfe5918f1a02() local
439 double b = std::stod(s->string(), &sz); in __anonbfe5918f1b02() local
468 at::Tensor a, b; in __anonbfe5918f1d02() local
751 auto b = pop(stack).toDevice(); in __anonbfe5918f2e02() local
759 auto b = pop(stack).toDevice(); in __anonbfe5918f2f02() local
767 auto b = pop(stack); in __anonbfe5918f3002() local
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/test/testdata/
Dfp_test.go19 func manysub_ssa(a, b, c, d float64) (aa, ab, ac, ad, ba, bb, bc, bd, ca, cb, cc, cd, da, db, dc, d… argument
383 func compares64_ssa(a, b, c, d float64) (lt, le, eq, ne, ge, gt uint64) { argument
700 func compares32_ssa(a, b, c, d float32) (lt, le, eq, ne, ge, gt uint64) { argument
1368 func fail64(s string, f func(a, b float64) float64, a, b, e float64) { argument
1375 func fail64bool(s string, f func(a, b float64) bool, a, b float64, e bool) {
1382 func fail32(s string, f func(a, b float32) float32, a, b, e float32) { argument
1389 func fail32bool(s string, f func(a, b float32) bool, a, b float32, e bool) {
1396 func expect64(t *testing.T, s string, x, expected float64) {
1402 func expect32(t *testing.T, s string, x, expected float32) {
1408 func expectUint64(t *testing.T, s string, x, expected uint64) {
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/base/
H A DStrings.java44 public static String nullToEmpty(@CheckForNull String string) { in nullToEmpty()
55 public static String emptyToNull(@CheckForNull String string) { in emptyToNull()
70 public static boolean isNullOrEmpty(@CheckForNull String string) { in isNullOrEmpty()
92 public static String padStart(String string, int minLength, char padChar) { in padStart()
123 public static String padEnd(String string, int minLength, char padChar) { in padEnd()
146 public static String repeat(String string, int count) { in repeat()
179 public static String commonPrefix(CharSequence a, CharSequence b) { in commonPrefix()
201 public static String commonSuffix(CharSequence a, CharSequence b) { in commonSuffix()
222 static boolean validSurrogatePairAt(CharSequence string, int index) { in validSurrogatePairAt()
/aosp_15_r20/external/guava/guava/src/com/google/common/base/
H A DStrings.java46 public static String nullToEmpty(@CheckForNull String string) { in nullToEmpty()
57 public static String emptyToNull(@CheckForNull String string) { in emptyToNull()
72 public static boolean isNullOrEmpty(@CheckForNull String string) { in isNullOrEmpty()
94 public static String padStart(String string, int minLength, char padChar) { in padStart()
125 public static String padEnd(String string, int minLength, char padChar) { in padEnd()
152 public static String repeat(String string, int count) { in repeat()
185 public static String commonPrefix(CharSequence a, CharSequence b) { in commonPrefix()
207 public static String commonSuffix(CharSequence a, CharSequence b) { in commonSuffix()
228 static boolean validSurrogatePairAt(CharSequence string, int index) { in validSurrogatePairAt()
/aosp_15_r20/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/
H A DSerializerForNullableTypeTest.kt41 val b = Box(StringHolder("box")) in testNullableBoxWithNotNull() constant
42 val string = Json.encodeToString(b) in testNullableBoxWithNotNull() constant
50 val b = Box(null) in testNullableBoxWithNull() constant
51 val string = Json.encodeToString(b) in testNullableBoxWithNull() constant
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vet/testdata/print/
Dprint.go345 func Printf(format string, args ...interface{}) {
355 func printf(format string, args ...interface{}) {
361 func Errorf(i int, format string, args ...interface{}) {
367 func errorf(level, format string, args ...interface{}) {
392 func (p *ptrStringer) Warnf2(x int, format string, args ...interface{}) string {
400 func (*ptrStringer) Warnf(x int, format string, args ...interface{}) string {
408 func (p *ptrStringer) Wrapf2(x int, format string, args ...interface{}) string {
416 func (*ptrStringer) Wrapf(x int, format string, args ...interface{}) string {
424 func (*ptrStringer) BadWrapf(x int, format string, args ...interface{}) string {
428 func (*ptrStringer) WrapfFalsePositive(x int, arg1 string, arg2 ...interface{}) string {
[all …]
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dcxx1y-generic-lambdas.cpp63 auto L = [=](auto b, char c = 'x') { in test()
79 auto L = [=](auto b) { in test()
93 auto L = [=](auto b) { in test()
106 auto L = [=](auto b) { in test()
181 int (*fp2)(int) = [](auto b) -> int { return b; }; in test()
237 return [](auto b) { in test()
247 return [](auto b) { //expected-note 3{{begins here}} in test()
258 return [](auto b) { in test()
315 return [](char b) { in test()
335 return [](decltype(a) b) { in test()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/net/
Dunixsock_posix.go16 func unixSocket(ctx context.Context, net string, laddr, raddr sockaddr, mode string, ctxCtrlFn func…
97 func (a *UnixAddr) toLocal(net string) sockaddr {
113 func (c *UnixConn) readMsg(b, oob []byte) (n, oobn, flags int, addr *UnixAddr, err error) { argument
143 func (c *UnixConn) writeMsg(b, oob []byte, addr *UnixAddr) (n, oobn int, err error) { argument
/aosp_15_r20/external/libwebsockets/lib/core/
H A Dlibwebsockets.c33 lws_ser_wu16be(uint8_t *b, uint16_t u) in lws_ser_wu16be()
40 lws_ser_wu32be(uint8_t *b, uint32_t u32) in lws_ser_wu32be()
49 lws_ser_wu64be(uint8_t *b, uint64_t u64) in lws_ser_wu64be()
56 lws_ser_ru16be(const uint8_t *b) in lws_ser_ru16be()
62 lws_ser_ru32be(const uint8_t *b) in lws_ser_ru32be()
68 lws_ser_ru64be(const uint8_t *b) in lws_ser_ru64be()
76 uint8_t *p = (uint8_t *)buf, b; in lws_vbi_encode() local
164 uint8_t b = *src++; in lws_hex_from_byte_array() local
178 uint8_t b, *r = (uint8_t *)dest + len - n; in lws_hex_random() local
514 lws_sql_purify(char *escaped, const char *string, size_t len) in lws_sql_purify()
[all …]
/aosp_15_r20/external/webrtc/test/pc/e2e/analyzer/video/
H A Ddefault_video_quality_analyzer_shared_objects.cc46 bool operator==(const StreamCodecInfo& a, const StreamCodecInfo& b) { in operator ==()
108 bool operator<(const StatsKey& a, const StatsKey& b) { in operator <()
115 bool operator==(const StatsKey& a, const StatsKey& b) { in operator ==()
120 std::map<std::string, std::string> stream_to_sender, in VideoStreamsInfo()
/aosp_15_r20/external/pigweed/pw_fuzzer/
H A Ddomain_test.cc76 long b; member
97 void TakeArbitraryBool(bool b) { TakeArbitrary<bool>(b); } in TakeArbitraryBool()
253 void TakeTuple(std::tuple<short, int> a, long b) { in TakeTuple()
462 void TakeString(const InlineString<>& string) { in TakeString()
475 void TakeStringNonEmpty(const InlineString<>& string) { in TakeStringNonEmpty()
481 void TakeStringLessThan3(const InlineString<>& string) { in TakeStringLessThan3()
488 void TakeStringAtLeast3(const InlineString<>& string) { in TakeStringAtLeast3()
495 void TakeStringExactly3(const InlineString<>& string) { in TakeStringExactly3()
502 void TakeAsciiString(const InlineString<>& string) { in TakeAsciiString()
508 void TakePrintableAsciiString(const InlineString<>& string) { in TakePrintableAsciiString()
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/props/
H A DBagFormatter.java204 public abstract String getRelation(String a, String b); in getRelation()
209 public String getRelation(String a, String b) { in getRelation()
266 public BagFormatter setShowSetAlso(boolean b) { in setShowSetAlso()
763 String b = getRangeBreakSource().getValue(limit, true); in next() local
784 boolean equalTo(Object a, Object b) { in equalTo()
801 public BagFormatter setPrefix(String string) { in setPrefix()
806 public BagFormatter setSuffix(String string) { in setSuffix()
815 public BagFormatter setAbbreviated(boolean b) { in setAbbreviated()
853 public BagFormatter setSeparator(String string) { in setSeparator()
970 public BagFormatter setShowCount(boolean b) { in setShowCount()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/text/internal/language/
Dparse.go75 b []byte member
85 func makeScannerString(s string) scanner {
230 func Parse(s string) (t Tag, err error) {
261 func parse(scan *scanner, s string) (t Tag, err error) {
430 b [][]byte member
581 func getExtension(s string, p int) (end int, ext string) {
596 func nextExtension(s string, p int) int {
/aosp_15_r20/external/deqp/framework/delibs/debase/
H A DdeString.c90 bool deStringEqual(const char *a, const char *b) in deStringEqual()
99 const char *b = lead; in deStringBeginsWith() local
110 int deVsprintf(char *string, size_t size, const char *format, va_list list) in deVsprintf()
134 int deSprintf(char *string, size_t size, const char *format, ...) in deSprintf()
178 size_t deStrnlen(const char *string, size_t maxSize) in deStrnlen()
/aosp_15_r20/hardware/google/camera/common/profiler/
Dprofiler.cc411 [](auto a, auto b) { return a.avg_dt > b.avg_dt; }); in PrintResult()
532 [](const auto& a, const auto& b) { return a.slot.end < b.slot.end; }); in GetLatencyData()
581 [](const auto& a, const auto& b) { return a.slot.end < b.slot.end; }); in PrintResult()
617 void SetUseCase(std::string) override final{}; in SetUseCase()
618 void SetDumpFilePrefix(const std::string&) override final{}; in SetDumpFilePrefix()
619 void Start(const std::string&, int) override final{}; in Start()
620 void End(const std::string&, int) override final{}; in End()
622 void ProfileFrameRate(const std::string&) override final{}; in ProfileFrameRate()
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Dtraceback_test.go227 func tteStack(n int, stack chan<- string) {
444 func testTracebackArgs1(a, b, c, d, e int) int { argument
454 func testTracebackArgs2(a bool, b struct { argument
468 func testTracebackArgs3(x [3]byte, a, b, c int, y [3]byte) int { argument
500 func testTracebackArgs6a(a, b, c, d, e, f, g, h, i, j int) int { argument
510 func testTracebackArgs6b(a, b, c, d, e, f, g, h, i, j, k int) int { argument
560 a, b, c, d, e, f, g, h int member
564 a, b, c, d, e, f, g, h int member
568 a, b, c, d, e, f, g, h int member
573 a, b, c, d, e, f, g, h int member
[all …]
/aosp_15_r20/external/kotlinx.serialization/formats/json-tests/jvmTest/src/kotlinx/serialization/features/
H A DJsonJvmStreamsTest.kt79 val b = ByteArrayOutputStream() in testRandomEscapeSequences() constant
107 val string = """{"str":"$longString", "type":"Impl"}""" in testPolymorphismWhenCrossingBatchSizeNonLeadingKey() constant
125 val string = """{$aLotOfWhiteSpaces"type":"Impl", "str":"value"}""" in testPolymorphismWhenCrossingBatchSize() constant
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/os/
H A DBundleTest.java94 private void checkBundle(Bundle b, boolean withFd) { in checkBundle()
136 Bundle b; in testCreateFromParcel() local
263 Bundle b = new Bundle(); in kindofEquals_lazyValues() local
296 Bundle b = new Bundle(); in kindofEquals_lazyValuesWithIdenticalParcels_returnsTrue() local
321 Bundle b = new Bundle(); in kindofEquals_lazyValuesAndDifferentClassLoaders_returnsFalse() local
340 Bundle b = new Bundle(); in kindofEquals_lazyValuesOfDifferentTypes_returnsFalse() local
358 Bundle b = new Bundle(); in kindofEquals_lazyValuesWithDifferentLengths_returnsFalse() local
496 public final String string; field in BundleTest.CustomParcelable
499 CustomParcelable(int integer, String string) { in CustomParcelable()

12345678910>>...55