Home
last modified time | relevance | path

Searched refs:bstr (Results 1 – 11 of 11) sorted by relevance

/third_party/musl/src/misc/
Dfmtmsg.c16 static int _strcolcmp(const char *lstr, const char *bstr) in _strcolcmp() argument
19 while (lstr[i] && bstr[i] && (bstr[i] == lstr[i])) i++; in _strcolcmp()
20 if ( lstr[i] || (bstr[i] && bstr[i] != ':')) return 1; in _strcolcmp()
/third_party/python/Lib/test/test_email/
Dtest_inversion.py16 def dedent(bstr): argument
17 lines = bstr.splitlines()
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowskeyboard.c1022 BSTR bstr; in UILess_GetCandidateList() local
1023 if (SUCCEEDED(pcandlist->lpVtbl->GetString(pcandlist, i, &bstr))) { in UILess_GetCandidateList()
1024 if (bstr) { in UILess_GetCandidateList()
1025 IME_AddCandidate(videodata, j, bstr); in UILess_GetCandidateList()
1026 SysFreeString(bstr); in UILess_GetCandidateList()
1091 BSTR bstr; in UIElementSink_BeginUIElement() local
1092 if (SUCCEEDED(preading->lpVtbl->GetString(preading, &bstr)) && bstr) { in UIElementSink_BeginUIElement()
1093 SysFreeString(bstr); in UIElementSink_BeginUIElement()
1115 BSTR bstr; in UIElementSink_UpdateUIElement() local
1116 if (SUCCEEDED(preading->lpVtbl->GetString(preading, &bstr)) && bstr) { in UIElementSink_UpdateUIElement()
[all …]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs366 ByteString bstr = cin.ReadBytes(); in TestCodedInputOutputPosition()
367 Assert.AreEqual(110, bstr.Length); in TestCodedInputOutputPosition()
368 Assert.AreEqual((byte) 109, bstr[109]); in TestCodedInputOutputPosition()
/third_party/python/Lib/test/
Dtest_base64.py252 for bstr, res in tests:
254 with self.subTest(bstr=bstr, func=func):
255 self.assertEqual(func(bstr), res)
256 self.assertEqual(func(bstr.decode('ascii')), res)
258 base64.b64decode(bstr, validate=True)
260 base64.b64decode(bstr.decode('ascii'), validate=True)
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs460 ByteString bstr = cin.ReadBytes(); in TestCodedInputOutputPosition()
461 Assert.AreEqual(110, bstr.Length); in TestCodedInputOutputPosition()
462 Assert.AreEqual((byte) 109, bstr[109]); in TestCodedInputOutputPosition()
/third_party/gn/src/gn/
Dparse_tree.cc988 std::string_view bstr = GetStringRepresentation(b); in SortAsStringsList() local
989 return astr < bstr; in SortAsStringsList()
998 std::string_view bstr = GetStringRepresentation(b); in SortAsTargetsList() local
1000 std::make_pair(GetDepsCategory(bstr), SplitAtFirst(bstr, ':')); in SortAsTargetsList()
/third_party/python/Modules/_ctypes/
Dcfield.c1378 BSTR bstr; in BSTR_set() local
1402 bstr = SysAllocStringLen(wvalue, (unsigned)wsize); in BSTR_set()
1405 bstr = NULL; in BSTR_set()
1412 *(BSTR *)ptr = bstr; in BSTR_set()
/third_party/libinput/test/
Dlitest.h96 const char *bstr);
105 const char *bstr);
Dlitest.c201 const char *bstr) in litest_fail_comparison_int() argument
203 litest_log("FAILED COMPARISON: %s %s %s\n", astr, operator, bstr); in litest_fail_comparison_int()
219 const char *bstr) in litest_fail_comparison_double() argument
221 litest_log("FAILED COMPARISON: %s %s %s\n", astr, operator, bstr); in litest_fail_comparison_double()
/third_party/libuv/src/win/
Dprocess.c663 wchar_t* bstr = *(wchar_t* const*)b; in qsort_wcscmp() local
664 return env_strncmp(astr, -1, bstr); in qsort_wcscmp()