HomeSort by relevance Sort by last modified time
    Searched defs:USER (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 36 * User information part of a URL.
47 /** user field
49 protected String user; field in class:UserInfo
65 public final static int USER = 2;
86 if (!this.user.equalsIgnoreCase(other.user)) {
102 * Encode the user information as a string.
111 buffer.append(user).append(COLON).append(password);
113 buffer.append(user);
125 * Gets the user type (which can be set to TELEPHONE_SUBSCRIBER or USER
    [all...]
NetObject.java 53 protected static final String USER = "user";
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.h 40 USER, // The handler was installed by user
43 // Provides notification of when the OS level user agent settings
150 // function returns false the user needs to be prompted for confirmation.
153 // Called when the user accepts the registration of a given protocol handler.
156 // Called when the user denies the registration of a given protocol handler.
159 // Called when the user indicates that they don't want to be asked about the
205 // by the user.
273 // Saves a user's registered protocol handlers.
340 // Protocol handlers that the user has told us to ignore
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 57 sendCommand(commands.USER,
135 USER: "USER"
  /frameworks/base/telephony/java/com/android/ims/
ImsConferenceState.java 37 * conference-info : user
39 // user (String) : Tel or SIP URI
40 public static final String USER = "user";
41 // user > display text (String)
43 // user > endpoint (String) : URI or GRUU or Phone number
45 // user > endpoint > status
126 String user = in.readString(); local
128 mParticipants.put(user, state);
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 60 USER,
97 * Gets a list of packages associated with the current user
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 236 USER = "tester"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 236 USER = "tester"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
  /external/smack/src/org/xbill/DNS/
KEYRecord.java 112 /** Key is owned by a user. */
113 public static final int USER = 0x0000;
201 flags.add(USER, "USER");
273 /** A user key */
274 public static final int OWNER_USER = Flags.USER;
  /frameworks/base/core/java/android/os/
Build.java 40 /** A build ID string meant for displaying to the user */
74 /** The end-user-visible name for the end product. */
155 * The user-visible version string. E.g., "1.0" or "3.4b5".
160 * The user-visible SDK version of the framework in its raw String
169 * The user-visible SDK version of the framework; its possible
358 * large as the current screen will provide the user with a UI to
582 * <li> If the app is a launcher, the launcher will be available to the user
601 /** The type of build, like "user" or "eng". */
674 public static final String USER = getString("ro.build.user");
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Element.java 40 * android.renderscript.Element.DataKind#USER} cannot be used as input for a
173 * useful for graphical data. USER indicates no special interpretation is
178 USER (0),
775 mKind = DataKind.USER;
851 * set to USER and the vector size to 1 indicating non-vector.
858 DataKind dk = DataKind.USER;
867 * DataKind will be set to USER. Only primitive types (FLOAT_32, FLOAT_64,
896 DataKind dk = DataKind.USER;
976 * size and type (i.e. U8 is compatible with A_8). User-defined Elements
990 // Ignore mKind because it is allowed to be different (user vs. pixel)
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 45 * DataKind {@link android.support.v8.renderscript.Element.DataKind#USER} cannot
170 * useful for graphical data. USER indicates no special interpretation is
175 USER (0),
717 mKind = DataKind.USER;
751 * set to USER and the vector size to 1 indicating non-vector.
762 DataKind dk = DataKind.USER;
771 * DataKind will be set to USER. Only primitive types (FLOAT_32, FLOAT_64,
804 DataKind dk = DataKind.USER;
886 * size and type (i.e. U8 is compatible with A_8). User-defined Elements
900 // Ignore mKind because it is allowed to be different (user vs. pixel)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 498 def login(self, user, password):
501 (typ, [data]) = <instance>.login(user, password)
505 typ, dat = self._simple_command('LOGIN', user, self._quote(password))
512 def login_cram_md5(self, user, password):
515 (typ, [data]) = <instance>.login_cram_md5(user, password)
517 self.user, self.password = user, password
524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest()
595 def proxyauth(self, user):
596 """Assume authentication as "user"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 498 def login(self, user, password):
501 (typ, [data]) = <instance>.login(user, password)
505 typ, dat = self._simple_command('LOGIN', user, self._quote(password))
512 def login_cram_md5(self, user, password):
515 (typ, [data]) = <instance>.login_cram_md5(user, password)
517 self.user, self.password = user, password
524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest()
595 def proxyauth(self, user):
596 """Assume authentication as "user"
    [all...]
  /external/ipsec-tools/src/racoon/
cfparse.h 43 USER = 259,
208 #define USER 259
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 80 USER("user",
112 case USER:
121 case USER:
133 case USER:
145 case USER:
184 // TODO add Install button on Tab.USER to go to CertInstaller like KeyChainActivity
185 addTab(Tab.USER);
188 mTabHost.setCurrentTabByTag(Tab.USER.mTag);
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 59 * <p>Only the default SMS app (selected by the user in system settings) is able to write to the
62 * when the user receives an SMS or the {@link
63 * android.provider.Telephony.Sms.Intents#WAP_PUSH_DELIVER_ACTION} broadcast when the user
66 * <p>Any app that wants to behave as the user's default SMS app must handle the following intents:
179 * Has the message been seen by the user? The "seen" flag determines
799 * Activity action: Ask the user to change the default
801 * user whether they want to replace the current default
821 * the user. The intent will have the following extra values:</p>
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.9.2/
layoutlib-api-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/23.0.1/
layoutlib-api-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/23.0.2/
layoutlib-api-23.0.2.jar 
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 

Completed in 1198 milliseconds

1 2 3 4