| /external/nist-sip/java/gov/nist/javax/sip/address/ | 
| UserInfo.java | 55     /** userType field 57     protected int userType;
 83         if (this.userType != other.userType) {
 129         return userType;
 181         userType = type;
 
 | 
| /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ | 
| PropertyBoxParserImpl.java | 78     public Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent) { 79         FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
 88     public Box createBox(String type, byte[] userType, String parent) {
 90         FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
 103                 if ("userType".equals(param[i])) {
 104                     constructorArgs[i] = userType;
 145         private byte[] userType;
 150         public FourCcToBox(String type, byte[] userType, String parent) {
 153             this.userType = userType;
 [all...]
 | 
| /packages/apps/Dialer/java/com/android/dialer/phonenumbercache/ | 
| ContactInfo.java | 22 import com.android.contacts.common.ContactsUtils.UserType; 61   public @UserType long userType;
 129     if (userType != other.userType) {
 173         + ", userType="
 174         + userType
 
 | 
| /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/ | 
| AbstractBox.java | 53     private byte[] userType; 64     protected AbstractBox(String type, byte[] userType) {
 66         this.userType = userType;
 190         return userType;
 
 | 
| /packages/apps/Dialer/java/com/android/incallui/ | 
| CallerInfo.java | 36 import com.android.contacts.common.ContactsUtils.UserType; 123   public @UserType long userType;
 172     userType = ContactsUtils.USER_TYPE_CURRENT;
 206     info.userType = ContactsUtils.USER_TYPE_CURRENT;
 303         // Determine userType by directoryId and contactId
 316         info.userType = ContactsUtils.determineUserType(directoryId, contactId);
 320                 context, info.lookupKeyOrNull, info.userType, directoryId);
 562           .append("\nuserType: " + userType)
 
 | 
| ContactInfoCache.java | 265     cce.userType = info.userType; 707     public long userType = ContactsUtils.USER_TYPE_CURRENT;
 745           + ", userType="
 746           + userType
 [all...]
 | 
| /frameworks/base/telephony/java/com/android/internal/telephony/ | 
| CallerInfo.java | 109     public long userType; 162         userType = USER_TYPE_CURRENT;
 182         info.userType = USER_TYPE_CURRENT;
 236                         info.userType = USER_TYPE_WORK;
 673                     .append("\nuserType " + userType)
 
 | 
| /prebuilts/go/darwin-x86/src/encoding/gob/ | 
| type.go | 159 // userType returns, and saves, the information associated with user-provided type rt. 161 func userType(rt reflect.Type) *userTypeInfo {
 294 	wireTypeUserInfo = userType(reflect.TypeOf((*wireType)(nil)))
 540 			typ := userType(f.Type).base
 543 				t := userType(f.Type).base
 594 	ut := userType(rt)
 634 	userType(rt) // might as well cache it now
 732 		userType, err := getType(rt.Name(), ut, rt)
 736 		gt := userType.id().gobType().(*gobEncoderType)
 776 	t, err := getTypeInfo(userType(rt)
 [all...]
 | 
| /prebuilts/go/linux-x86/src/encoding/gob/ | 
| type.go | 159 // userType returns, and saves, the information associated with user-provided type rt. 161 func userType(rt reflect.Type) *userTypeInfo {
 294 	wireTypeUserInfo = userType(reflect.TypeOf((*wireType)(nil)))
 540 			typ := userType(f.Type).base
 543 				t := userType(f.Type).base
 594 	ut := userType(rt)
 634 	userType(rt) // might as well cache it now
 732 		userType, err := getType(rt.Name(), ut, rt)
 736 		gt := userType.id().gobType().(*gobEncoderType)
 776 	t, err := getTypeInfo(userType(rt)
 [all...]
 | 
| /external/swiftshader/src/OpenGL/compiler/ | 
| SymbolTable.h | 87 	TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0), arrayInformationType(0) { } 92 	bool isUserType() const { return userType; }
 119 	bool userType;
 
 | 
| /frameworks/base/packages/SystemUI/src/com/android/keyguard/ | 
| KeyguardSecurityContainer.java | 219     private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) { 221         switch (userType) {
 238     private void showWipeDialog(int attempts, int userType) {
 240         switch (userType) {
 276             int userType = USER_TYPE_PRIMARY;
 280                     userType = USER_TYPE_SECONDARY_USER;
 283                 userType = USER_TYPE_WORK_PROFILE;
 286                 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType);
 290                 showWipeDialog(failedAttempts, userType);
 
 | 
| /packages/apps/Contacts/src/com/android/contacts/list/ | 
| PhoneNumberListAdapter.java | 525         final long userType = ContactsUtils.determineUserType(directoryId, null); 530                 !isExtendedDirectory(directoryId) && userType == ContactsUtils.USER_TYPE_WORK);
 
 | 
| ContactEntryListAdapter.java | 624             final long userType = ContactsUtils.determineUserType(directoryId, null); 625             view.setWorkProfileIconEnabled(userType == ContactsUtils.USER_TYPE_WORK);
 
 | 
| /packages/apps/Dialer/java/com/android/contacts/common/list/ | 
| PhoneNumberListAdapter.java | 447     final long userType = ContactsUtils.determineUserType(directoryId, null); 452         !isExtendedDirectory(directoryId) && userType == ContactsUtils.USER_TYPE_WORK);
 
 | 
| ContactEntryListAdapter.java | 569       final long userType = ContactsUtils.determineUserType(directoryId, null); 570       view.setWorkProfileIconEnabled(userType == ContactsUtils.USER_TYPE_WORK);
 
 | 
| /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ | 
| SymbolTable.h | 149           userType(uT), 158     virtual bool isUserType() const { return userType; }
 172     bool userType;
 
 | 
| /packages/apps/Settings/src/com/android/settings/users/ | 
| UserSettings.java | 373     private void onAddUserClicked(int userType) { 376                 switch (userType) {
 498                 final int userType = dialogId == DIALOG_ADD_USER
 506                                 addUserNow(userType);
 669     private void addUserNow(final int userType) {
 672             mAddingUserName = userType == USER_TYPE_USER ? getString(R.string.user_new_user_name)
 679                     if (userType == USER_TYPE_USER) {
 689                         if (userType == USER_TYPE_USER) {
 [all...]
 | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar |  | 
| /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cognitoidp/1.11.18/ | 
| aws-java-sdk-cognitoidp-1.11.18.jar |  | 
| /external/guice/extensions/persist/lib/ | 
| hibernate3.jar |  |