/external/nist-sip/java/gov/nist/javax/sip/header/ |
Credentials.java | 52 private static String USERNAME = ParameterNames.USERNAME; 122 else if (nameValue.getName().compareToIgnoreCase(USERNAME) == 0)
|
AuthenticationHeader.java | 74 public static final String USERNAME = ParameterNames.USERNAME; 113 || name.equalsIgnoreCase(ParameterNames.USERNAME) 480 * Returns the Username value of this AuthorizationHeader. This convenience 481 * method returns only the username of the complete Response. 483 * @return the String representing the Username information, null if value 490 return (String) getParameter(ParameterNames.USERNAME); 494 * Sets the Username of the AuthorizationHeader to the <var>username</var> 497 * @param username [all...] |
ParameterNames.java | 44 public static final String USERNAME = "username";
|
AuthenticationInfo.java | 219 || name.equalsIgnoreCase(ParameterNames.USERNAME)
|
/external/chromium_org/tools/grit/grit/ |
clique_unittest.py | 27 msg = tclib.Message(text='Hello USERNAME, how are you?', 29 tclib.Placeholder('USERNAME', '%s', 'Joi')]) 35 msg_fr = tclib.Translation(text='Bonjour USERNAME, comment ca va?', 37 tclib.Placeholder('USERNAME', '%s', 'Joi')]) 38 msg_de = tclib.Translation(text='Guten tag USERNAME, wie geht es dir?', 40 tclib.Placeholder('USERNAME', '%s', 'Joi')]) 97 Hello <ph name="USERNAME">%s<ex>Joi</ex></ph>, how are you doing today? 131 tclib.Message(text='Hello USERNAME', 132 placeholders=[tclib.Placeholder('USERNAME', '$1', 'Joi')]), 133 tclib.Message(text='Hello USERNAME', [all...] |
tclib.py | 213 presentation: 'USERNAME'
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
github_file_system.py | 19 USERNAME = None 28 username, 35 username=username, 47 'unauthenticated.' % USERNAME) 85 if USERNAME is None: 86 password_data = password_store.GetMulti(('username', 'password')).Get() 87 self._username, self._password = (password_data.get('username'), 90 password_store.SetMulti({'username': USERNAME, 'password': PASSWORD} [all...] |
/external/chromium_org/chrome/browser/signin/ |
signin_internals_util.cc | 57 ENUM_CASE(USERNAME); 150 case USERNAME: 203 untimed_signin_fields[USERNAME - UNTIMED_FIELDS_BEGIN].empty() ? 208 // Only add username. SID and LSID have moved to tokens section. 210 SigninStatusFieldToLabel(static_cast<UntimedSigninStatusField>(USERNAME)); 214 untimed_signin_fields[USERNAME - UNTIMED_FIELDS_BEGIN]);
|
signin_internals_util.h | 30 USERNAME = UNTIMED_FIELDS_BEGIN,
|
signin_manager_base.cc | 70 void SigninManagerBase::SetAuthenticatedUsername(const std::string& username) { 72 DLOG_IF(ERROR, !gaia::AreEmailsSame(username, authenticated_username_)) << 73 "Tried to change the authenticated username to something different: " << 74 "Current: " << authenticated_username_ << ", New: " << username; local 81 if (!gaia::AreEmailsSame(username, authenticated_username_) || 82 username == authenticated_username_) { 89 authenticated_username_ = username; 94 NotifyDiagnosticsObservers(USERNAME, username); 96 // Go ahead and update the last signed in username here as well. Once [all...] |
signin_manager.cc | 146 const std::string& username, 149 possibly_invalid_username_ == username); 150 DCHECK(!username.empty()); 152 if (!IsAllowedUsername(username)) { 160 // 2) trying to refresh credentials for an existing username. If it is 2, we 162 // user has successfully signed in once before with this username, so that on 166 possibly_invalid_username_.assign(username); 178 const std::string& username, 182 gaia::AreEmailsSame(username, GetAuthenticatedUsername())); 184 if (!PrepareForSignin(SIGNIN_TYPE_WITH_CREDENTIALS, username, password) [all...] |
/external/chromium/googleurl/src/ |
url_parse.h | 113 USERNAME, 151 // USERNAME: 5 5 169 // Username. Specified in URLs with an @ sign before the host. See |password| 170 Component username; member in struct:url_parse::Parsed 173 // Not all URLs with a username have a password, as in "http://me@host/". 174 // The password is separated form the username with a colon, as in 272 Component* username, 278 Component* username,
|
url_parse_unittest.cc | 78 const char* username; member in struct:__anon2621::URLParseCase 178 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, true, 7}, 179 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, false, 7}, 204 {"http://h/", Parsed::USERNAME, true, 7}, 205 {"http:", Parsed::USERNAME, true, 5}, 210 {"file:///c:/foo", Parsed::USERNAME, true, 7}, 284 // Username/passwords and things that look like them 339 EXPECT_TRUE(ComponentMatches(url, cases[i].username, parsed.username)); 376 ExpectInvalidComponent(parsed.username); [all...] |
url_parse.cc | 70 Component* username, 72 // Find the first colon in the user section, which separates the username and 79 // Found separator: <username>:<password> 80 *username = Component(user.begin, colon_offset); 84 // No separator, treat everything as the username 85 *username = user; 143 Component* username, 149 username->reset(); 165 username, password); 170 username->reset() [all...] |
/external/chromium_org/chrome/test/functional/ |
passwords.py | 25 USERNAME = 'test@google.com' 79 # Wait until username/password is filled by the Password manager on the 99 'username', 'password', 'https://www.example.com/login/') 128 username = creds['username'] 132 test_utils.GoogleAccountsLogin(self, username, password) 143 test_utils.VerifyGoogleAccountCredsFilled(self, username, password, 152 self, creds1['username'], creds1['password']) 160 self, creds2['username'], creds2['password'], tab_index=1) 172 """Verify saved username/password shows in window and tab."" [all...] |
/external/chromium_org/tools/grit/grit/format/ |
chrome_messages_json_unittest.py | 78 <message name="ID_HELLO_USER">Hello <ph name="USERNAME">%s<ex>
|
/external/chromium_org/tools/grit/grit/node/ |
message_unittest.py | 27 Hello <ph name="USERNAME">%s<ex>Joi</ex></ph>, how are you doing today? 33 self.failUnless(content == 'Hello USERNAME, how are you doing today?') 39 ''' Hello there <ph name="USERNAME">%s</ph> ''' 44 self.failUnless(content == 'Hello there USERNAME') 49 msg = tclib.Message(text=" Hello USERNAME, how are you? BINGO\t\t", 50 placeholders=[tclib.Placeholder('USERNAME', '%s', 'Joi'),
|
/external/chromium_org/url/third_party/mozilla/ |
url_parse.h | 88 USERNAME, 130 // USERNAME: 5 5 147 // Username. Specified in URLs with an @ sign before the host. See |password| 148 Component username; member in struct:url_parse::Parsed 151 // Not all URLs with a username have a password, as in "http://me@host/". 152 // The password is separated form the username with a colon, as in 308 Component* username, 314 Component* username,
|
url_parse.cc | 72 Component* username, 74 // Find the first colon in the user section, which separates the username and 81 // Found separator: <username>:<password> 82 *username = Component(user.begin, colon_offset); 86 // No separator, treat everything as the username 87 *username = user; 145 Component* username, 151 username->reset(); 167 username, password); 172 username->reset() [all...] |
/external/chromium_org/url/ |
url_parse_unittest.cc | 56 const char* username; member in struct:url_parse::__anon15217::URLParseCase 167 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, true, 7}, 168 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, false, 7}, 193 {"http://h/", Parsed::USERNAME, true, 7}, 194 {"http:", Parsed::USERNAME, true, 5}, 199 {"file:///c:/foo", Parsed::USERNAME, true, 7}, 273 // Username/passwords and things that look like them 328 EXPECT_TRUE(ComponentMatches(url, cases[i].username, parsed.username)); 367 ExpectInvalidComponent(parsed.username); [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
transl2tc.py | 109 { id1 : text1, '12345678' : 'Hello USERNAME, howzit?' } 241 translations: [ [id1, text1], ['12345678', 'Hello USERNAME, howzit?'] ]
|
/frameworks/av/media/libstagefright/rtsp/ |
MyTransmitter.h | 45 #define USERNAME "bcast" 303 A1.append(USERNAME); 332 request->append("username=\"" USERNAME "\", ");
|
/external/bison/djgpp/ |
config.bat | 415 if not "%USERNAME%" == "" goto haveuname
417 echo No USERNAME and no USER found in the environment, using default values
426 set HOSTNAME=%USERNAME%'s PC
427 if not "%HOSTNAME%" == "%USERNAME%'s PC" goto SmallEnv
|
/external/smack/asmack-master/lib/ |
jstun.jar | |
/external/chromium_org/net/base/ |
net_util.cc | 608 AdjustComponent(delta, &(parsed->username)); [all...] |