Home
last modified time | relevance | path

Searched refs:len_b (Results 1 – 7 of 7) sorted by relevance

/third_party/googletest/googletest/src/hwext/
Dgtest-ext.cc95 const int len_b = strlen(b); in matchNaming() local
103 return strstr(a, b) == a && a[len_b] == sep; in matchNaming()
106 for (i = 1; i < len_a - len_b; i++) { in matchNaming()
107 if (a[i - 1] == sep&&a[i + len_b] == sep&&strstr(a + i, b) == a + i) { in matchNaming()
114 return len_a > len_b&&a[len_a - len_b - 1] == sep&&strcmp(a + len_a - len_b, b) == 0; in matchNaming()
/third_party/python/Lib/email/
D_encoded_words.py141 def len_b(bstring): function
201 'b': len_b,
/third_party/boost/boost/geometry/strategies/cartesian/
Dintersection.hpp266 promoted_type const len_b = comparable_length_b(); in calculate() local
267 if (len_b < len_a) in calculate()
/third_party/python/Objects/
Dbytesobject.c1527 Py_ssize_t len_a, len_b; in bytes_richcompare() local
1569 len_b = Py_SIZE(b); in bytes_richcompare()
1570 min_len = Py_MIN(len_a, len_b); in bytes_richcompare()
1580 Py_RETURN_RICHCOMPARE(len_a, len_b, op); in bytes_richcompare()
/third_party/python/Modules/
D_operator.c741 Py_ssize_t len_a, Py_ssize_t len_b) in _tscmp() argument
754 length = len_b; in _tscmp()
D_hashopenssl.c1928 Py_ssize_t len_a, Py_ssize_t len_b) in _tscmp() argument
1933 Py_ssize_t length = len_b; in _tscmp()
/third_party/glib/gio/
Dgdbusconnection.c3845 gint len_a, len_b; in path_rule_matches() local
3848 len_b = strlen (path_b); in path_rule_matches()
3850 if (len_a < len_b && (len_a == 0 || path_a[len_a - 1] != '/')) in path_rule_matches()
3853 if (len_b < len_a && (len_b == 0 || path_b[len_b - 1] != '/')) in path_rule_matches()
3856 return memcmp (path_a, path_b, MIN (len_a, len_b)) == 0; in path_rule_matches()