Home
last modified time | relevance | path

Searched refs:str2 (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c5784 PyUnicodeObject *str2, in replace() argument
5794 if (str1->length == str2->length) { in replace()
5809 u2 = str2->str[0]; in replace()
5828 Py_UNICODE_COPY(u->str+i, str2->str, str2->length); in replace()
5837 Py_UNICODE_COPY(u->str+i, str2->str, str2->length); in replace()
5853 delta = (str2->length - str1->length); in replace()
5857 product = n * (str2->length - str1->length); in replace()
5858 if ((product / (str2->length - str1->length)) != n) { in replace()
5889 if (str2->length > 0) { in replace()
5890 Py_UNICODE_COPY(p, str2->str, str2->length); in replace()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c5879 PyUnicodeObject *str2, in replace() argument
5889 if (str1->length == str2->length) { in replace()
5904 u2 = str2->str[0]; in replace()
5923 Py_UNICODE_COPY(u->str+i, str2->str, str2->length); in replace()
5932 Py_UNICODE_COPY(u->str+i, str2->str, str2->length); in replace()
5948 delta = (str2->length - str1->length); in replace()
5952 product = n * (str2->length - str1->length); in replace()
5953 if ((product / (str2->length - str1->length)) != n) { in replace()
5984 if (str2->length > 0) { in replace()
5985 Py_UNICODE_COPY(p, str2->str, str2->length); in replace()
[all …]
/device/generic/goldfish/camera/
DEmulatedCamera.cpp85 static bool StringsEqual(const char* str1, const char* str2) { in StringsEqual() argument
86 if (str1 == nullptr && str2 == nullptr) { in StringsEqual()
89 if (str1 == nullptr || str2 == nullptr) { in StringsEqual()
92 return strcmp(str1, str2) == 0; in StringsEqual()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_builtin.py583 class str2(str): class
588 str2: {"": "", "123": "112233"}