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

  /external/conscrypt/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 51 for (String blacklisted : OID_BLACKLIST) {
52 if (oid.equals(blacklisted)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test___all__.py 65 # Blacklisted modules and packages
91 blacklisted = False
94 blacklisted = True
97 if blacklisted:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test___all__.py 65 # Blacklisted modules and packages
91 blacklisted = False
94 blacklisted = True
97 if blacklisted:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 216 for (byte[] blacklisted : pubkeyBlacklist) {
217 if (Arrays.equals(blacklisted, Hex.encode(out))) {
  /cts/
CtsBuild.mk 30 # File indicating which tests should be blacklisted due to problems.
33 # File indicating which tests should be blacklisted due to unsupported abi.
  /external/chromium_org/components/password_manager/core/browser/
login_database.h 65 // including blacklisted matches.
140 // Loads all logins whose blacklist setting matches |blacklisted| into
143 bool blacklisted, std::vector<autofill::PasswordForm*>* forms) const;
login_database.cc 269 int blacklisted = s.ColumnInt(1); local
271 if (blacklisted) {
664 bool blacklisted, std::vector<PasswordForm*>* forms) const {
675 s.BindInt(0, blacklisted ? 1 : 0);
password_syncable_service.cc 52 password_form.blacklisted_by_user == password_specifics.blacklisted() &&
455 new_password->blacklisted_by_user = password.blacklisted();
password_form_manager_unittest.cc 179 PasswordForm* CreateSavedMatch(bool blacklisted) {
182 match->blacklisted_by_user = blacklisted;
529 // We should send the not blacklisted message.
538 // password store, and is not blacklisted; We should send the not blacklisted
553 // password store, but is blacklisted; We should not send the not blacklisted
password_syncable_service_unittest.cc 60 EXPECT_EQ(expected_password.blacklisted(), actual_password.blacklisted());
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc 359 const ModuleEnumerator::BlacklistEntry& blacklisted) {
363 DCHECK(strlen(blacklisted.filename) > 0);
364 DCHECK(!strstr(blacklisted.version_from, " "));
365 DCHECK(!strstr(blacklisted.version_to, " "));
370 if (!(blacklisted.os & XP)) return NOT_MATCHED;
381 if (filename_hash == blacklisted.filename &&
382 (std::string(blacklisted.location).empty() ||
383 location_hash == blacklisted.location)) {
387 Version version_min(blacklisted.version_from);
388 Version version_max(blacklisted.version_to)
    [all...]
enumerate_modules_model_win.h 124 // A static function that checks whether |module| has been |blacklisted|.
126 const BlacklistEntry& blacklisted);
  /external/chromium_org/chrome/browser/extensions/
blacklist.cc 71 // run |callback| with the IDs of those which have been blacklisted.
95 // Definitely not blacklisted. Callback immediately.
101 // Something might be blacklisted, response will come in
171 // with just a "blacklisted" property.
174 std::set<std::string> blacklisted = prefs->GetBlacklistedExtensions(); local
175 for (std::set<std::string>::iterator it = blacklisted.begin();
176 it != blacklisted.end(); ++it) {
196 // safebrowsing for the blacklisted extensions. The set of blacklisted
  /external/chromium_org/android_webview/
webview_pak.mk 20 # TODO(torne): remove TARGET_2ND_ARCH here once we're no longer 64-bit blacklisted in the Android
java_library_common.mk 41 # TODO(torne): remove TARGET_2ND_ARCH here once we're no longer 64-bit blacklisted in the Android
  /external/chromium_org/chrome/browser/importer/
firefox_importer_browsertest.cc 45 bool blacklisted; member in struct:__anon8687::PasswordInfo
142 EXPECT_EQ(p.blacklisted, form.blacklisted_by_user);
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_passwords_bubble_view.cc 383 // Add the "Hey! You blacklisted this site!" text.
384 views::Label* blacklisted = new views::Label( local
386 blacklisted->SetMultiLine(true);
387 blacklisted->SetFontList(ui::ResourceBundle::GetSharedInstance().GetFontList(
390 layout->AddView(blacklisted);
  /external/chromium_org/chrome/browser/resources/ntp4/
most_visited_page.css 184 .blacklisted {
  /external/chromium_org/extensions/browser/
extension_registry_unittest.cc 170 scoped_refptr<Extension> blacklisted = local
171 test_util::CreateExtensionWithID("blacklisted");
177 registry.AddBlacklisted(blacklisted);
189 registry.GetExtensionById("enabled", ExtensionRegistry::BLACKLISTED));
201 registry.GetExtensionById("disabled", ExtensionRegistry::BLACKLISTED));
213 registry.GetExtensionById("terminated", ExtensionRegistry::BLACKLISTED));
215 // Blacklisted is part of everything and the blacklisted list.
217 registry.GetExtensionById("blacklisted", ExtensionRegistry::EVERYTHING));
219 registry.GetExtensionById("blacklisted", ExtensionRegistry::ENABLED))
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_scan_result_controller_unittest.cc 238 TEST_F(MediaGalleriesScanResultControllerTest, Blacklisted) {
291 MediaGalleryPrefId blacklisted = gallery_prefs()->AddGalleryByPath( local
292 MakeMediaGalleriesTestingPath("blacklisted"),
294 gallery_prefs()->ForgetGalleryById(blacklisted);
381 // Remove one and then have it blacklisted from prefs.
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 112 * The notification displayed when a page is blacklisted.
148 * The last blacklisted tile if any, which by definition should not be filler.
155 * True if a page has been blacklisted and we're waiting on the
628 * is blacklisted.
629 * @param {number} rid The RID of the page being blacklisted.
635 // Prevent navigation when the page is being blacklisted.
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc 234 SET_BOOL(blacklisted);
    [all...]
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js 1142 function blacklisted(obj, prop) { function
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-compat-3.2.1.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 554 milliseconds