HomeSort by relevance Sort by last modified time
    Searched full:userinfo (Results 1 - 25 of 292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.m 47 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
49 return [[ANTLRRuntimeException alloc] init:aReason userInfo:aUserInfo];
57 + (id) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
59 return [[ANTLRRuntimeException alloc] initWithName:aName reason:aReason userInfo:aUserInfo];
65 self = [super initWithName:@"ANTLRRuntimeException" reason:@"UnknownException" userInfo:nil];
71 self = [super initWithName:(NSString *)@"ANTLRRuntimeException" reason:(NSString *)aReason userInfo:(NSDictionary *)nil];
75 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
77 self = [super initWithName:@"ANTLRRuntimeException" reason:aReason userInfo:aUserInfo];
83 self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)nil];
87 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInf
    [all...]
ANTLRRuntimeException.h 39 + (ANTLRRuntimeException *) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
46 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
60 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
64 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
73 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
77 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
86 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
90 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerTest.java 23 import android.content.pm.UserInfo;
55 List<UserInfo> list = mUserManager.getUsers();
57 for (UserInfo user : list) {
69 UserInfo userInfo = mUserManager.createUser("Guest 1", UserInfo.FLAG_GUEST);
70 assertTrue(userInfo != null);
72 List<UserInfo> list = mUserManager.getUsers();
74 for (UserInfo user : list) {
75 if (user.id == userInfo.id && user.name.equals("Guest 1"
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 50 /** userInfo field
52 protected UserInfo userInfo;
63 if (userInfo != null) {
64 userInfo.encode(buffer);
87 if (this.userInfo != null && otherAuth.userInfo != null) {
88 if (!this.userInfo.equals(otherAuth.userInfo)) {
104 * get the userInfo memnber
    [all...]
  /frameworks/base/core/java/android/os/
IUserManager.aidl 21 import android.content.pm.UserInfo;
29 UserInfo createUser(in String name, int flags);
30 UserInfo createProfileForUser(in String name, int flags, int userHandle);
36 List<UserInfo> getUsers(boolean excludeDying);
37 List<UserInfo> getProfiles(int userHandle, boolean enabledOnly);
38 UserInfo getProfileParent(int userHandle);
39 UserInfo getUserInfo(int userHandle);
  /external/chromium_org/chrome/browser/resources/print_preview/data/
user_info.js 14 function UserInfo() {
36 UserInfo.EventType = {
37 ACTIVE_USER_CHANGED: 'print_preview.UserInfo.ACTIVE_USER_CHANGED',
38 USERS_CHANGED: 'print_preview.UserInfo.USERS_CHANGED'
41 UserInfo.prototype = {
66 cr.dispatchSimpleEvent(this, UserInfo.EventType.ACTIVE_USER_CHANGED);
86 cr.dispatchSimpleEvent(this, UserInfo.EventType.USERS_CHANGED);
91 UserInfo: UserInfo
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMultiUserSelectorView.java 21 import android.content.pm.UserInfo;
67 public void addUsers(Collection<UserInfo> userList) {
68 UserInfo activeUser;
75 ArrayList<UserInfo> users = new ArrayList<UserInfo>(userList);
78 for (UserInfo user: users) {
108 Comparator<UserInfo> mOrderAddedComparator = new Comparator<UserInfo>() {
110 public int compare(UserInfo lhs, UserInfo rhs)
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
user_info_fetcher.h 26 // Class that makes a UserInfo request, parses the response, and notifies
32 // Invoked when the UserInfo request has succeeded, passing the parsed
38 // Invoked when the UserInfo request has failed, passing the associated
48 // Starts the UserInfo request, using the passed OAuth2 |access_token|.
user_info_fetcher.cc 63 DLOG(WARNING) << "UserInfo request failed with HTTP code: "
73 // Successfully fetched userinfo from the server - parse it and hand it off
77 DVLOG(1) << "Received UserInfo response: " << unparsed_data;
83 NOTREACHED() << "Could not parse userinfo response from server";
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
PreBootListener.java 20 import android.content.pm.UserInfo;
25 import android.content.pm.UserInfo;
46 List<UserInfo> profiles = um.getProfiles(currentUserId);
50 for (UserInfo userInfo : profiles) {
51 if (userInfo.isManagedProfile()) {
57 pm.clearCrossProfileIntentFilters(userInfo.id);
59 pm, currentUserId, userInfo.id);
60 deleteNonRequiredApps(context, userInfo.id);
  /frameworks/base/core/java/android/content/pm/
UserInfo.java 28 public class UserInfo implements Parcelable {
94 public UserInfo(int id, String name, int flags) {
98 public UserInfo(int id, String name, String iconPath, int flags) {
138 public UserInfo() {
141 public UserInfo(UserInfo orig) {
160 return "UserInfo{" + id + ":" + name + ":" + Integer.toHexString(flags) + "}";
180 public static final Parcelable.Creator<UserInfo> CREATOR
181 = new Parcelable.Creator<UserInfo>() {
182 public UserInfo createFromParcel(Parcel source)
    [all...]
UserInfo.aidl 20 parcelable UserInfo;
  /external/chromium_org/third_party/ocmock/OCMock/
OCMObserverRecorder.m 36 - (void)notificationWithName:(NSString *)name object:(id)sender userInfo:(NSDictionary *)userInfo
38 recordedNotification = [[NSNotification notificationWithName:name object:sender userInfo:userInfo] retain];
48 [self argument:[recordedNotification userInfo] matchesArgument:[aNotification userInfo]];
  /external/clang/test/Analysis/
cfref_PR2519.c 26 extern void CFNotificationCenterPostNotification(CFNotificationCenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverImmediately);
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
41 userInfo, 0);
42 CFRelease(userInfo); // no-warning
CheckNSError.m 14 + (id)errorWithDomain:(NSString *)domain code:(NSInteger)code userInfo:(NSDictionary *)dict;
25 *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // expected-warning {{Potential null dereference}}
29 if (error) *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning
  /external/lldb/test/expression_command/call-throws/
call-throws.m 15 userInfo:nil];
  /frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java 31 import android.content.pm.UserInfo;
149 private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
229 ArrayList<UserInfo> partials = new ArrayList<UserInfo>();
231 UserInfo ui = mUsers.valueAt(i);
237 UserInfo ui = partials.get(i);
261 public List<UserInfo> getUsers(boolean excludeDying) {
264 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size())
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
session_state_delegate_views.cc 15 class EmptyUserInfo : public ash::UserInfo {
20 // ash::UserInfo:
109 const ash::UserInfo* SessionStateDelegate::GetUserInfo(
114 const ash::UserInfo* SessionStateDelegate::GetUserInfo(
116 static const ash::UserInfo* kUserInfo = new EmptyUserInfo();
session_state_delegate_views.h 38 virtual const ash::UserInfo* GetUserInfo(
40 virtual const ash::UserInfo* GetUserInfo(
  /packages/apps/Settings/src/com/android/settings/
UserSpinnerAdapter.java 20 import android.content.pm.UserInfo;
51 UserInfo userInfo = um.getUserInfo(mUserHandle.getIdentifier());
52 if (userInfo.isManagedProfile()) {
57 name = userInfo.name;
58 final int userId = userInfo.id;
  /external/clang/test/Rewriter/
rewrite-modern-throw.m 78 + (NSException *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo;
88 @throw [NSException exceptionWithName: *_imp__NSInvalidArgumentException reason: [NSString stringWithFormat: @"Can't evaluate set expression; left subexpression not a set (lhs = %@ rhs = %@)", leftSet, rightSet] userInfo: 0];
  /external/chromium_org/ui/base/cocoa/
tracking_area.mm 73 userInfo:(NSDictionary*)userInfo {
79 userInfo:userInfo])) {
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSettings.java 32 import android.content.pm.UserInfo;
111 * The {@link UserInfo} of the profile.
113 public UserInfo userInfo;
147 final UserHandle managedProfile = mProfiles.valueAt(1).userInfo.getUserHandle();
199 intent.putExtra(EXTRA_USER, profileData.userInfo.getUserHandle());
205 final int userId = profileData.userInfo.id;
234 UserInfo userInfo = mUm.getUserInfo(UserHandle.myUserId());
235 updateProfileUi(userInfo, false /* no category needed */, preferenceScreen)
    [all...]
  /external/chromium_org/ash/session/
user_info.h 20 class ASH_EXPORT UserInfo {
22 virtual ~UserInfo() {}
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserInfoController.java 25 import android.content.pm.UserInfo;
119 UserInfo userInfo;
121 userInfo = ActivityManagerNative.getDefault().getCurrentUser();
123 new UserHandle(userInfo.id));
131 final int userId = userInfo.id;
132 final boolean isGuest = userInfo.isGuest();
133 final String userName = userInfo.name;

Completed in 1462 milliseconds

1 2 3 4 5 6 7 8 91011>>