HomeSort by relevance Sort by last modified time
    Searched refs:search_for (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/tools/gyp/test/win/
gyptest-cl-function-level-linking.py 22 def CheckForSectionString(binary, search_for, should_exist):
24 if should_exist and search_for not in output:
25 print 'Did not find "%s" in %s' % (search_for, binary)
27 elif not should_exist and search_for in output:
28 print 'Found "%s" in %s (and shouldn\'t have)' % (search_for, binary)
  /external/chromium_org/build/
gypi_to_gn.py 107 def ReplaceSubstrings(values, search_for, replace_with):
110 Replaces all substrings of the "search_for" with "repace_with" for all
114 return values.replace(search_for, replace_with)
117 return [ReplaceSubstrings(v, search_for, replace_with) for v in values]
123 new_key = ReplaceSubstrings(key, search_for, replace_with)
124 new_value = ReplaceSubstrings(value, search_for, replace_with)
  /external/chromium_org/chrome/browser/prefs/
browser_ui_prefs_migrator.cc 51 const std::string search_for = local
57 if (StartsWithASCII(full_key, search_for, true /* case_sensitive */)) {
63 std::string new_key(full_key.substr(search_for.length()));
  /external/chromium_org/tools/gn/
header_checker.h 125 // Returns true if the given search_for target is a dependency of
129 // dependency chain from the dest target (chain[0] = search_for) to the src
140 bool IsDependencyOf(const Target* search_for,
147 bool IsDependencyOf(const Target* search_for,
header_checker.cc 438 bool HeaderChecker::IsDependencyOf(const Target* search_for,
442 if (search_for == search_from) {
449 if (IsDependencyOf(search_for, search_from, true, chain)) {
455 if (IsDependencyOf(search_for, search_from, false, chain)) {
464 bool HeaderChecker::IsDependencyOf(const Target* search_for,
469 // to find a shortest chain from search_from to search_for.
478 // Once this search finds search_for, the breadcrumbs are used to reconstruct
480 // search_for.
492 if (target == search_for) {
  /external/chromium_org/chrome/common/importer/
firefox_importer_utils.cc 258 std::string search_for = std::string("user_pref(\"") + pref_key + local
260 size_t prop_index = content.find(search_for);
264 size_t start = prop_index + search_for.length();

Completed in 1821 milliseconds