/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/ |
AuthorizeCallbackTest.java | 56 String id = ref.getAuthorizedID(); local 68 if (id == null) { 71 assertEquals(test.getAuthorizedID(), id); local
|
/external/apache-http/src/org/apache/http/impl/client/ |
AbstractAuthenticationHandler.java | 133 String id = (String) authPrefs.get(i); local 134 Header challenge = challenges.get(id.toLowerCase(Locale.ENGLISH)); 138 this.log.debug(id + " authentication scheme selected"); 141 authScheme = registry.getAuthScheme(id, response.getParams()); 145 this.log.warn("Authentication scheme " + id + " not supported"); 151 this.log.debug("Challenge for " + id + " authentication scheme not available");
|
/external/bison/src/ |
parse-gram.y | 188 %token ID "identifier" 210 %type <uniqstr> BRACKETED_ID ID ID_COLON TYPE variable 219 %type <symbol> id id_colon string_as_id symbol symbol.prec 388 | "%code" ID braceless 404 | ID { muscle_code_grow ("union_name", $1, @1); } 506 | id 511 | id INT 517 | id string_as_id 523 | id INT string_as_id 603 ID 639 id: label [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/ |
X509CertificateHolderSelector.java | 35 * Construct a signer ID based on the issuer and serial number of the signer's associated 47 * Construct a signer ID based on the issuer and serial number of the signer's associated 101 X509CertificateHolderSelector id = (X509CertificateHolderSelector)o; local 103 return Arrays.areEqual(subjectKeyId, id.subjectKeyId) 104 && equalsObj(this.serialNumber, id.serialNumber) 105 && equalsObj(this.issuer, id.issuer);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509ObjectIdentifiers.java | 8 // base id 10 static final String id = "2.5.4"; field in interface:X509ObjectIdentifiers 12 static final ASN1ObjectIdentifier commonName = new ASN1ObjectIdentifier(id + ".3"); 13 static final ASN1ObjectIdentifier countryName = new ASN1ObjectIdentifier(id + ".6"); 14 static final ASN1ObjectIdentifier localityName = new ASN1ObjectIdentifier(id + ".7"); 15 static final ASN1ObjectIdentifier stateOrProvinceName = new ASN1ObjectIdentifier(id + ".8"); 16 static final ASN1ObjectIdentifier organization = new ASN1ObjectIdentifier(id + ".10"); 17 static final ASN1ObjectIdentifier organizationalUnitName = new ASN1ObjectIdentifier(id + ".11"); 20 static final ASN1ObjectIdentifier id_at_name = new ASN1ObjectIdentifier(id + ".41"); 22 // id-SHA1 OBJECT IDENTIFIER ::= [all...] |
/external/chromium/base/ |
shared_memory.h | 136 SharedMemoryId id() const { return inode_; } function in class:base::SharedMemory
|
/external/chromium/chrome/browser/automation/ |
url_request_automation_job.h | 56 int id() const { function in class:URLRequestAutomationJob 87 void OnRequestStarted(int id, const AutomationURLResponse& response); 88 void OnDataAvailable(int id, const std::string& bytes); 89 void OnRequestEnd(int id, const net::URLRequestStatus& status);
|
/external/chromium/chrome/browser/chromeos/ |
locale_change_guard.cc | 33 std::string id() const; 222 std::string LocaleChangeGuard::Delegate::id() const { function in class:chromeos::LocaleChangeGuard::Delegate 223 // Arbitrary unique Id.
|
/external/chromium/chrome/browser/extensions/ |
extension_processes_api.cc | 76 int id = model_->GetProcessId(i); local 131 // Store each process indexed by the string version of its id 132 processes->Set(base::IntToString(id), 133 CreateProcessValue(id, type, cpu, net, pr_mem, sh_mem)); 173 // Return the process ID of the tab as an integer. 174 int id = base::GetProcId(contents->tab_contents()-> local 176 result_.reset(Value::CreateIntegerValue(id));
|
image_loading_tracker.cc | 42 int id) { 47 max_size, id)); 52 int id) { 59 ReportBack(NULL, resource, gfx::Size(), id); 70 ReportBack(NULL, resource, gfx::Size(), id); 84 ReportBack(decoded.release(), resource, original_size, id); 88 const gfx::Size& original_size, int id) { 94 image, resource, original_size, id)); 98 const gfx::Size& original_size, int id) { 102 tracker_->OnImageLoaded(image, resource, original_size, id); 141 int id = next_id_++; local [all...] |
/external/chromium/chrome/browser/importer/ |
mork_reader.h | 67 // of a 32-bit row id or atom map key, plus the terminating null. 76 MorkColumn(const IDString& i, const std::string& n) : id(i), name(n) { } 78 IDString id; member in struct:MorkReader::MorkColumn 110 // |first| will be the row ID, and the iterator's |second| will be a 116 // A convenience typedef for an ID-to-string mapping. 119 // A convenience typdef for an ID-to-index mapping, used for the column index 134 // using the row ID as the key, which contains a column array for the row. 135 // The supplied column hash table maps from column id to an index in
|
/external/chromium/chrome/browser/sync/engine/ |
build_commit_command.cc | 23 using syncable::Id; 98 const vector<Id>& commit_ids = session->status_controller()->commit_ids(); 100 Id id = commit_ids[i]; local 103 sync_entry->set_id(id); 106 id); 132 Id new_parent_id; 155 DCHECK(!id.ServerKnows() || 162 DCHECK(id.ServerKnows()) << meta_entry; 176 const Id& prev_id = meta_entry.Get(syncable::PREV_ID) [all...] |
change_reorder_buffer.cc | 52 if (node.Get(syncable::ID).IsRoot()) { 60 // Otherwise, get the parent ID so that we can add a ParentChildLink. 138 record.id = i->first; 140 if (specifics_.find(record.id) != specifics_.end()) 141 record.specifics = specifics_[record.id]; 142 if (extra_data_.find(record.id) != extra_data_.end()) 143 record.extra = extra_data_[record.id]; 171 record.id = next; 176 if (specifics_.find(record.id) != specifics_.end()) 177 record.specifics = specifics_[record.id]; 198 syncable::Id id = trans->directory()-> local [all...] |
/external/chromium/chrome/browser/sync/glue/ |
extension_sync.cc | 48 const std::string& extension_id = data.id(); 91 unsynced_extensions->insert(extension.id()); 144 int64 id = root.GetFirstChildId(); local 145 while (id != sync_api::kInvalidId) { 147 if (!sync_node.InitByIdLookup(id)) { 148 LOG(ERROR) << "Failed to fetch sync node for id " << id; 154 LOG(ERROR) << "Invalid extensions specifics for id " << id; 161 if (unsynced_extensions.find(server_data.id()) = 212 const std::string& id = specifics.id(); local 281 const std::string& id = extension.id(); local [all...] |
extension_util.cc | 54 ss << "id: " << specifics.id() << ", "; 66 if (!Extension::IdIsValid(specifics.id())) { 95 return ((a.id() == b.id()) && 149 const std::string& id = extension.id(); local 150 bool enabled = extension_service.IsExtensionEnabled(id); 151 bool incognito_enabled = extension_service.IsIncognitoEnabled(id); 152 specifics->set_id(id); [all...] |
/external/chromium/chrome/browser/sync/sessions/ |
ordered_commit_set.h | 40 void AddCommitItem(const int64 metahandle, const syncable::Id& commit_id, 43 const std::vector<syncable::Id>& GetAllCommitIds() const { 47 // Return the Id at index |position| in this OrderedCommitSet. Note that 52 // These together allow re-association of the pre-commit Id with the 54 const syncable::Id& GetCommitIdAt(const size_t position) const { 90 syncable::Id id; member in struct:browser_sync::sessions::OrderedCommitSet::CommitItem 99 std::vector<syncable::Id> commit_ids_; 105 // group for each ID so that the insertion can update the appropriate
|
/external/chromium/chrome/browser/ui/gtk/ |
global_menu_bar.cc | 56 // don't go through the command id framework. 210 g_object_set_data(G_OBJECT(menu_item), "command-id", 230 void GlobalMenuBar::EnabledStateChangedForCommand(int id, bool enabled) { 231 IDMenuItemMap::iterator it = id_to_menu_item_.find(id); 256 int id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(sender), "command-id")); local 257 browser_->ExecuteCommandIfEnabled(id);
|
/external/chromium/chrome/browser/ui/views/ |
browser_actions_container_browsertest.cc | 67 std::string id = browser_actions_bar()->GetExtensionId(0); local 68 UnloadExtension(id); 72 // TODO(mpcomplete): http://code.google.com/p/chromium/issues/detail?id=38992 276 DisableExtension(extension->id()); 278 EnableExtension(extension->id());
|
/external/chromium/chrome/browser/ui/views/extensions/ |
browser_action_overflow_menu_controller.cc | 33 size_t command_id = 1; // Menu id 0 is reserved, start with 1. 84 void BrowserActionOverflowMenuController::ExecuteCommand(int id) { 85 BrowserActionView* view = (*views_)[start_index_ + id - 1]; 92 int id, 96 (*views_)[start_index_ + id - 1]->button()->extension(); 178 owner_->MoveBrowserAction(drop_data.id(), drop_index); 193 std::string id = view->button()->extension()->id(); local 195 BrowserActionDragData drag_data(id, drag_index); 205 int id, size_t* index) [all...] |
/external/chromium/net/base/ |
keygen_handler_win.cc | 117 UUID id = { 0 }; local 118 status = UuidCreateSequential(&id); 123 status = UuidToString(&id, &rpc_string);
|
/external/chromium/net/spdy/ |
spdy_test_util.h | 36 spdy::SpdyStreamId id; member in struct:net::SpdyHeaderInfo
|
/external/chromium/testing/gtest/test/ |
gtest_stress_test.cc | 65 String IdToKey(int id, const char* suffix) { 67 key << "key_" << id << "_" << suffix; 71 String IdToString(int id) { 73 id_message << id; local 79 int id, const char* suffix) { 80 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 84 << "expecting " << suffix << " value for id " << id; local 85 EXPECT_STREQ(IdToString(id).c_str(), property->value()); 90 void ManyAsserts(int id) { [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
helpers.cc | 242 uint32 id; local 243 if (!g_rng->Generate(&id, sizeof(id))) { 244 LOG(LS_ERROR) << "Failed to generate random id!"; 246 return id; 250 uint32 id; local 252 id = CreateRandomId(); 253 } while (id == 0); 254 return id;
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
codec.h | 36 int id; member in struct:cricket::AudioCodec 46 : id(pt), name(nm), clockrate(cr), bitrate(br), 50 AudioCodec() : id(0), clockrate(0), bitrate(0), channels(0), preference(0) {} 63 this->id = c.id; // id is reserved in objective-c 73 return this->id == c.id && // id is reserved in objective-c 87 int id; member in struct:cricket::VideoCodec [all...] |
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
xmppengineimpl_iq.cc | 37 XmppIqEntry(const std::string & id, const std::string & to, 39 id_(id), 71 const std::string& id = element->Attr(QN_ID); local 73 XmppIqEntry * iq_entry = new XmppIqEntry(id, 260 std::string id = element->Attr(QN_ID); 266 if (iq_entry->id_ == id && iq_entry->to_ == from) {
|