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

1 2

  /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...]
AbstractBoxParser.java 37 public abstract Box createBox(String type, byte[] userType, String parent);
61 byte[] usertype = null;
84 usertype = bb.array();
87 Box box = createBox(type, usertype, parent.getType());
106 header.put(usertype);
112 header.put(usertype);
BoxParser.java 28 Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent);
  /external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
ctor.pass.cpp 25 struct UserType {
28 UserType() noexcept {}
29 constexpr explicit UserType(int d) noexcept : i(d) {}
31 friend bool operator==(const UserType& x, const UserType& y) {
59 test<UserType>();
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
UserBox.java 30 public UserBox(byte[] userType) {
31 super(TYPE, userType);
41 ";userType=" + new String(getUserType()) +
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfo.java 22 import com.android.contacts.common.ContactsUtils.UserType;
59 public @UserType long userType;
94 if (userType != other.userType) return false;
106 .add("userType",userType).toString();
ContactInfoHelper.java 34 import com.android.contacts.common.ContactsUtils.UserType;
186 contactInfo.userType);
206 info.userType = ContactsUtils.determineUserType(null,
213 @UserType long userType) {
215 if (lookupKey == null || userType == ContactsUtils.USER_TYPE_WORK) {
  /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/googlecode/mp4parser/
AbstractFullBox.java 37 protected AbstractFullBox(String type, byte[] userType) {
38 super(type, userType);
AbstractBox.java 53 private byte[] userType;
64 protected AbstractBox(String type, byte[] userType) {
66 this.userType = userType;
190 return userType;
  /external/gmock/test/
gmock-actions_test.cc 194 struct UserType {
195 UserType() : value(0) {}
201 EXPECT_FALSE(BuiltInDefaultValue<UserType>::Exists());
216 BuiltInDefaultValue<UserType>::Get();
223 EXPECT_FALSE(DefaultValue<const UserType>::IsSet());
229 EXPECT_FALSE(DefaultValue<const UserType>::Exists());
232 DefaultValue<const UserType>::Set(UserType());
235 EXPECT_EQ(0, DefaultValue<const UserType>::Get().value);
238 EXPECT_TRUE(DefaultValue<const UserType>::Exists())
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 194 struct UserType {
195 UserType() : value(0) {}
201 EXPECT_FALSE(BuiltInDefaultValue<UserType>::Exists());
216 BuiltInDefaultValue<UserType>::Get();
223 EXPECT_FALSE(DefaultValue<const UserType>::IsSet());
229 EXPECT_FALSE(DefaultValue<const UserType>::Exists());
232 DefaultValue<const UserType>::Set(UserType());
235 EXPECT_EQ(0, DefaultValue<const UserType>::Get().value);
238 EXPECT_TRUE(DefaultValue<const UserType>::Exists())
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityContainer.java 215 private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) {
217 switch (userType) {
234 private void showWipeDialog(int attempts, int userType) {
236 switch (userType) {
272 int userType = USER_TYPE_PRIMARY;
276 userType = USER_TYPE_SECONDARY_USER;
279 userType = USER_TYPE_WORK_PROFILE;
282 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType);
286 showWipeDialog(failedAttempts, userType);
  /packages/apps/Dialer/src/com/android/dialer/list/
RegularSearchListAdapter.java 66 * cache the resulting @{link ContactInfo} into local db. Set usertype to USER_TYPE_WORK
69 info.userType = !isExtendedDirectory
  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java 19 import com.android.contacts.common.ContactsUtils.UserType;
110 /** The {@link UserType} of the contact */
111 public @UserType long contactUserType;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 108 * UserType indicates the user type of the contact. If the contact is from Work User (Work
115 public @interface UserType {}
240 * Determine UserType from directory id and contact id.
261 * @return UserType indicates the user type of the contact. A directory id or contact id larger
268 public static @UserType long determineUserType(Long directoryId, Long contactId) {
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallerInfo.java 39 import com.android.contacts.common.ContactsUtils.UserType;
142 public @UserType long userType;
201 userType = ContactsUtils.USER_TYPE_CURRENT;
221 info.userType = ContactsUtils.USER_TYPE_CURRENT;
318 // Determine userType by directoryId and contactId
322 info.userType = ContactsUtils.determineUserType(directoryId, contactId);
325 context, info.lookupKeyOrNull, info.userType);
573 .append("\nuserType: " + userType)
CallerInfoUtils.java 113 info.userType = ci.userType;
StatusBarNotifier.java 49 import com.android.contacts.common.ContactsUtils.UserType;
247 getContentString(call, contactInfo.userType);
446 if (contactInfo.lookupUri != null && contactInfo.userType != ContactsUtils.USER_TYPE_WORK) {
504 private String getContentString(Call call, @UserType long userType) {
540 if(userType == ContactsUtils.USER_TYPE_WORK || isWorkCall) {
    [all...]
ContactInfoCache.java 568 cce.userType = info.userType;
676 public long userType = ContactsUtils.USER_TYPE_CURRENT;
694 .add("userType", 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...]
  /packages/services/Telecomm/src/com/android/server/telecom/
RingtoneFactory.java 124 (contactCallerInfo.userType == CallerInfo.USER_TYPE_WORK);
  /packages/apps/Settings/src/com/android/settings/users/
UserSettings.java 378 private void onAddUserClicked(int userType) {
381 switch (userType) {
501 final int userType = dialogId == DIALOG_ADD_USER
509 addUserNow(userType);
655 private void addUserNow(final int userType) {
658 mAddingUserName = userType == USER_TYPE_USER ? getString(R.string.user_new_user_name)
665 if (userType == USER_TYPE_USER) {
675 if (userType == USER_TYPE_USER) {
    [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;
672 .append("\nuserType " + userType)

Completed in 4168 milliseconds

1 2