/third_party/cJSON/ |
H A D | cJSON_Utils.c | 83 static int compare_strings(const unsigned char *string1, const unsigned char *string2, const cJSON_bool case_sensitive) in compare_strings() argument 95 if (case_sensitive) in compare_strings() 120 static cJSON_bool compare_pointers(const unsigned char *name, const unsigned char *pointer, const cJSON_bool case_sensitive) in compare_pointers() argument 142 else if ((!case_sensitive && (tolower(*name) != tolower(*pointer))) || (case_sensitive && (*name != *pointer))) in compare_pointers() 301 static cJSON *get_item_from_pointer(cJSON * const object, const char * pointer, const cJSON_bool case_sensitive) in get_item_from_pointer() argument 328 while ((current_element != NULL) && !compare_pointers((unsigned char*)current_element->string, (const unsigned char*)pointer, case_sensitive)) in get_item_from_pointer() 430 static cJSON *detach_path(cJSON *object, const unsigned char *path, const cJSON_bool case_sensitive) in detach_path() argument 452 parent = get_item_from_pointer(object, (char*)parent_pointer, case_sensitive); in detach_path() 484 static cJSON *sort_list(cJSON *list, const cJSON_bool case_sensitive) in sort_list() argument 595 sort_object(cJSON * const object, const cJSON_bool case_sensitive) sort_object() argument 604 compare_json(cJSON *a, cJSON *b, const cJSON_bool case_sensitive) compare_json() argument 747 get_object_item(const cJSON * const object, const char* name, const cJSON_bool case_sensitive) get_object_item() argument 759 decode_patch_operation(const cJSON * const patch, const cJSON_bool case_sensitive) decode_patch_operation() argument 824 apply_patch(cJSON *object, const cJSON *patch, const cJSON_bool case_sensitive) apply_patch() argument 1158 create_patches(cJSON * const patches, const unsigned char * const path, cJSON * const from, cJSON * const to, const cJSON_bool case_sensitive) create_patches() argument 1338 merge_patch(cJSON *target, const cJSON * const patch, const cJSON_bool case_sensitive) merge_patch() argument 1408 generate_merge_patch(cJSON * const from, cJSON * const to, const cJSON_bool case_sensitive) generate_merge_patch() argument [all...] |
H A D | cJSON.c | 2128 static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive) in get_object_item() argument 2138 if (case_sensitive) in get_object_item() 2618 static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive) in replace_item_in_object() argument 2638 return cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replacement); in replace_item_in_object() 3309 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) in CJSON_PUBLIC() 3396 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in CJSON_PUBLIC() 3420 b_element = get_object_item(b, a_element->string, case_sensitive); in CJSON_PUBLIC() 3426 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in CJSON_PUBLIC() 3436 a_element = get_object_item(a, b_element->string, case_sensitive); in CJSON_PUBLIC() 3442 if (!cJSON_Compare(b_element, a_element, case_sensitive)) in CJSON_PUBLIC() [all...] |
H A D | cJSON.h | 276 * case_sensitive determines if object keys are treated case sensitive (1) or case insensitive (0) */ 277 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive);
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_string.h | 107 bool case_sensitive = false); 112 bool case_sensitive = false) const; 115 bool case_sensitive = false) const; 118 bool case_sensitive = false) const; 121 bool case_sensitive = false, 126 bool case_sensitive = true); 129 bool case_sensitive = false);
|
H A D | dng_string.cpp | 1444 bool case_sensitive) in Matches() 1453 if (!case_sensitive) in Matches() 1473 bool case_sensitive) const in Matches() 1476 return dng_string::Matches (Get (), s, case_sensitive); in Matches() 1483 bool case_sensitive) const in StartsWith() 1494 if (!case_sensitive) in StartsWith() 1514 bool case_sensitive) const in EndsWith() 1534 if (!case_sensitive) in EndsWith() 1554 bool case_sensitive, in Contains() 1586 if (!case_sensitive) in Contains() 1442 Matches(const char *t, const char *s, bool case_sensitive) Matches() argument 1553 Contains(const char *s, bool case_sensitive, int32 *match_offset) const Contains() argument 1616 Replace(const char *old_string, const char *new_string, bool case_sensitive) Replace() argument 1707 TrimLeading(const char *s, bool case_sensitive) TrimLeading() argument [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | filters.py | 264 def do_dictsort(value, case_sensitive=False, by="key", reverse=False): 293 if not case_sensitive: 302 def do_sort(environment, value, reverse=False, case_sensitive=False, attribute=None): 312 :param case_sensitive: When sorting strings, sort upper and lower 346 environment, attribute, postprocess=ignore_case if not case_sensitive else None 352 def do_unique(environment, value, case_sensitive=False, attribute=None): 363 :param case_sensitive: Treat upper and lower case strings as distinct. 367 environment, attribute, postprocess=ignore_case if not case_sensitive else None 379 def _min_or_max(environment, value, func, case_sensitive, attribute): 388 environment, attribute, postprocess=ignore_case if not case_sensitive els [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | filters.py | 206 def do_dictsort(value, case_sensitive=False, by='key', reverse=False): 237 if not case_sensitive: 247 environment, value, reverse=False, case_sensitive=False, attribute=None 276 postprocess=ignore_case if not case_sensitive else None 282 def do_unique(environment, value, case_sensitive=False, attribute=None): 293 :param case_sensitive: Treat upper and lower case strings as distinct. 298 postprocess=ignore_case if not case_sensitive else None 310 def _min_or_max(environment, value, func, case_sensitive, attribute): 320 ignore_case if not case_sensitive else None 326 def do_min(environment, value, case_sensitive [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | filters.py | 264 def do_dictsort(value, case_sensitive=False, by="key", reverse=False): 293 if not case_sensitive: 302 def do_sort(environment, value, reverse=False, case_sensitive=False, attribute=None): 312 :param case_sensitive: When sorting strings, sort upper and lower 346 environment, attribute, postprocess=ignore_case if not case_sensitive else None 352 def do_unique(environment, value, case_sensitive=False, attribute=None): 363 :param case_sensitive: Treat upper and lower case strings as distinct. 367 environment, attribute, postprocess=ignore_case if not case_sensitive else None 379 def _min_or_max(environment, value, func, case_sensitive, attribute): 388 environment, attribute, postprocess=ignore_case if not case_sensitive els [all...] |
/third_party/rust/crates/glob/src/ |
H A D | lib.rs | 47 //! case_sensitive: false, 789 Char(c2) => chars_eq(c, c2, options.case_sensitive), in matches_from() 926 if chars_eq(c, sc, options.case_sensitive) { in in_char_specifiers() 932 if !options.case_sensitive && c.is_ascii() && start.is_ascii() && end.is_ascii() { in in_char_specifiers() 960 fn chars_eq(a: char, b: char, case_sensitive: bool) -> bool { in chars_eq() 963 } else if !case_sensitive && a.is_ascii() && b.is_ascii() { in chars_eq() 979 pub case_sensitive: bool, 1003 /// case_sensitive: true, 1011 /// `case_sensitive` as `true` while `default()` does it as `false`. 1015 case_sensitive in new() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | memutil.h | 88 template <bool case_sensitive> 99 char hay = case_sensitive in int_memmatch() 102 char nee = case_sensitive in int_memmatch()
|
/third_party/jinja2/ |
H A D | filters.py | 331 case_sensitive: bool = False, 362 if not case_sensitive: 375 case_sensitive: bool = False, 387 :param case_sensitive: When sorting strings, sort upper and lower 421 environment, attribute, postprocess=ignore_case if not case_sensitive else None 430 case_sensitive: bool = False, 443 :param case_sensitive: Treat upper and lower case strings as distinct. 447 environment, attribute, postprocess=ignore_case if not case_sensitive else None 463 case_sensitive: bool, 474 environment, attribute, postprocess=ignore_case if not case_sensitive els [all...] |
/third_party/cJSON/tests/ |
H A D | compare_tests.c | 27 static cJSON_bool compare_from_string(const char * const a, const char * const b, const cJSON_bool case_sensitive) in compare_from_string() argument 38 result = cJSON_Compare(a_json, b_json, case_sensitive); in compare_from_string()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
H A D | RBSearchPanel.java | 91 private void performSearch(String term, Bundle bundle, boolean case_sensitive) { in performSearch() argument 97 if (case_sensitive) { in performSearch()
|
/third_party/rust/crates/clang-sys/build/ |
H A D | common.rs | 308 options.case_sensitive = false; in search_libclang_directories()
|
/third_party/json/tests/thirdparty/doctest/ |
H A D | doctest.h | 744 bool case_sensitive; // if filtering should be case sensitive member 3745 if(!matchesAny(m_signature.m_name.c_str(), s->filters[6], true, s->case_sensitive)) 3747 if(matchesAny(m_signature.m_name.c_str(), s->filters[7], false, s->case_sensitive)) 5092 .writeAttribute("case_sensitive", opt.case_sensitive) 6191 DOCTEST_PARSE_AS_BOOL_OR_FLAG("case-sensitive", "cs", case_sensitive, false); 6332 if(matchesAny(curr.first.second.c_str(), p->filters[8], false, p->case_sensitive)) 6402 if(!matchesAny(tc.m_file.c_str(), p->filters[0], true, p->case_sensitive)) 6404 if(matchesAny(tc.m_file.c_str(), p->filters[1], false, p->case_sensitive)) 6406 if(!matchesAny(tc.m_test_suite, p->filters[2], true, p->case_sensitive)) [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | dir.c | 1952 IGNORE_CASE_BOOL case_sensitive = IGNORE_CASE; in ntfs_delete() local 1988 case_sensitive = CASE_SENSITIVE; in ntfs_delete() 1991 name, name_len, case_sensitive, in ntfs_delete()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 896 StrEqualityMatcher(StringType str, bool expect_eq, bool case_sensitive) in StrEqualityMatcher() argument 899 case_sensitive_(case_sensitive) {} in StrEqualityMatcher()
|