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

  /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/browser/signin/
signin_internals_util.h 36 USERNAME = UNTIMED_FIELDS_BEGIN,
signin_manager_base.cc 82 void SigninManagerBase::SetAuthenticatedUsername(const std::string& username) {
84 DLOG_IF(ERROR, username != authenticated_username_) <<
85 "Tried to change the authenticated username to something different: " <<
86 "Current: " << authenticated_username_ << ", New: " << username; local
89 authenticated_username_ = username;
94 NotifyDiagnosticsObservers(USERNAME, username);
96 // Go ahead and update the last signed in username here as well. Once a
99 profile_->GetPrefs()->SetString(prefs::kGoogleServicesLastUsername, username);
signin_internals_util.cc 96 ENUM_CASE(USERNAME);
198 case USERNAME:
245 untimed_signin_fields[USERNAME - UNTIMED_FIELDS_BEGIN].empty() ?
signin_manager.cc 144 const std::string& username,
147 possibly_invalid_username_ == username);
148 DCHECK(!username.empty());
150 if (!IsAllowedUsername(username)) {
158 // 2) trying to refresh credentials for an existing username. If it is 2, we
160 // user has successfully signed in once before with this username, so that on
165 possibly_invalid_username_.assign(username);
177 void SigninManager::StartSignIn(const std::string& username,
182 gaia::AreEmailsSame(username, GetAuthenticatedUsername()));
184 if (!PrepareForSignin(SIGNIN_TYPE_CLIENT_LOGIN, 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:__anon5334::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/
url_parse_unittest.cc 56 const char* username; member in struct:url_parse::__anon17005::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));
365 ExpectInvalidComponent(parsed.username);
    [all...]
  /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
304 Component* username,
310 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/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 572 AdjustComponent(delta, &(parsed->username));
    [all...]
  /external/chromium/net/base/
net_util.cc 828 AdjustComponent(delta, &(parsed->username));
    [all...]

Completed in 683 milliseconds