HomeSort by relevance Sort by last modified time
    Searched full:locale_file_path (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/base/resource/
resource_bundle_ios.mm 73 base::FilePath locale_file_path =
77 locale_file_path =
78 delegate_->GetPathForLocalePack(locale_file_path, app_locale);
82 if (locale_file_path.empty() || !locale_file_path.IsAbsolute())
85 if (test_file_exists && !base::PathExists(locale_file_path))
88 return locale_file_path;
resource_bundle_mac.mm 79 base::FilePath locale_file_path =
83 locale_file_path =
84 delegate_->GetPathForLocalePack(locale_file_path, app_locale);
88 if (locale_file_path.empty() || !locale_file_path.IsAbsolute())
91 if (test_file_exists && !base::PathExists(locale_file_path))
94 return locale_file_path;
resource_bundle.cc 280 base::FilePath locale_file_path;
282 PathService::Get(ui::DIR_LOCALES, &locale_file_path);
284 if (!locale_file_path.empty()) {
285 locale_file_path =
286 locale_file_path.AppendASCII(app_locale + kPakFileSuffix);
290 locale_file_path =
291 delegate_->GetPathForLocalePack(locale_file_path, app_locale);
295 if (locale_file_path.empty() || !locale_file_path.IsAbsolute())
298 if (test_file_exists && !base::PathExists(locale_file_path))
309 base::FilePath locale_file_path = GetOverriddenPakPath(); local
    [all...]

Completed in 157 milliseconds