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

1 2

  /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))) {
  /external/chromium_org/components/suggestions/
blacklist_store.cc 75 GURL blacklisted(blacklist.urls(0));
76 url->Swap(&blacklisted);
117 // This suggestion is not blacklisted.
suggestions_service.cc 220 // Extract the blacklisted URL from the blacklist request.
221 std::string blacklisted;
225 &blacklisted))
228 GURL blacklisted_url(blacklisted);
  /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. The caller owns |forms| after the call.
141 // Loads all logins whose blacklist setting matches |blacklisted| into
144 bool blacklisted, std::vector<autofill::PasswordForm*>* forms) const;
login_database.cc 292 int blacklisted = s.ColumnInt(1); local
294 if (blacklisted) {
736 bool blacklisted, std::vector<PasswordForm*>* forms) const {
748 s.BindInt(0, blacklisted ? 1 : 0);
password_syncable_service.cc 55 password_specifics.blacklisted() &&
428 new_password.blacklisted_by_user = password.blacklisted();
password_syncable_service_unittest.cc 88 expected_password.blacklisted() == actual_password.blacklisted() &&
password_form_manager_unittest.cc 210 PasswordForm* CreateSavedMatch(bool blacklisted) {
213 match->blacklisted_by_user = blacklisted;
693 // "not blacklisted" message.
702 // password store, and are not blacklisted. AllowPasswordGenerationForForm
703 // should be called to send the "not blacklisted" message.
741 // password store, but they are blacklisted. AllowPasswordGenerationForForm
742 // should not be called and no "not blacklisted" message sent.
    [all...]
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc 358 const ModuleEnumerator::BlacklistEntry& blacklisted) {
362 DCHECK(strlen(blacklisted.filename) > 0);
363 DCHECK(!strstr(blacklisted.version_from, " "));
364 DCHECK(!strstr(blacklisted.version_to, " "));
369 if (!(blacklisted.os & XP)) return NOT_MATCHED;
380 if (filename_hash == blacklisted.filename &&
381 (std::string(blacklisted.location).empty() ||
382 location_hash == blacklisted.location)) {
386 Version version_min(blacklisted.version_from);
387 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/chrome/browser/importer/
firefox_importer_browsertest.cc 46 bool blacklisted; member in struct:__anon8760::PasswordInfo
159 EXPECT_EQ(p.blacklisted, form.blacklisted_by_user);
  /external/chromium_org/chrome/browser/resources/ntp4/
most_visited_page.css 184 .blacklisted {
  /external/chromium_org/extensions/browser/
extension_registry_unittest.cc 171 scoped_refptr<Extension> blacklisted = local
172 test_util::CreateEmptyExtension("blacklisted");
178 registry.AddBlacklisted(blacklisted);
190 registry.GetExtensionById("enabled", ExtensionRegistry::BLACKLISTED));
202 registry.GetExtensionById("disabled", ExtensionRegistry::BLACKLISTED));
214 registry.GetExtensionById("terminated", ExtensionRegistry::BLACKLISTED));
216 // Blacklisted is part of everything and the blacklisted list.
218 registry.GetExtensionById("blacklisted", ExtensionRegistry::EVERYTHING));
220 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/ui/views/passwords/
manage_passwords_bubble_view.cc 511 // Add the "Hey! You blacklisted this site!" text.
512 views::Label* blacklisted = new views::Label( local
514 blacklisted->SetMultiLine(true);
515 blacklisted->SetFontList(ui::ResourceBundle::GetSharedInstance().GetFontList(
518 layout->AddView(blacklisted);
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 128 * The notification displayed when a page is blacklisted.
164 * The last blacklisted tile if any, which by definition should not be filler.
178 * True if a page has been blacklisted and we're waiting on the
765 * is blacklisted.
766 * @param {number} rid The RID of the page being blacklisted.
772 // Prevent navigation when the page is being blacklisted.
    [all...]
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc 243 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/closure_compiler/compiler/
compiler.jar 

Completed in 2505 milliseconds

1 2