Searched refs:Type (Results 1 - 25 of 141) sorted by relevance

123456

/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DOmtpEvents.java31 CONFIG_REQUEST_STATUS_SUCCESS(Type.CONFIGURATION, true),
33 CONFIG_PIN_SET(Type.CONFIGURATION, true),
35 CONFIG_DEFAULT_PIN_REPLACED(Type.CONFIGURATION, true),
36 CONFIG_ACTIVATING(Type.CONFIGURATION, true),
38 CONFIG_ACTIVATING_SUBSEQUENT(Type.CONFIGURATION, true),
39 CONFIG_STATUS_SMS_TIME_OUT(Type.CONFIGURATION),
40 CONFIG_SERVICE_NOT_AVAILABLE(Type.CONFIGURATION),
45 DATA_IMAP_OPERATION_STARTED(Type.DATA_CHANNEL, true),
47 DATA_IMAP_OPERATION_COMPLETED(Type.DATA_CHANNEL, true),
49 DATA_INVALID_PORT(Type
114 public static class Type { class in class:OmtpEvents
[all...]
/packages/apps/Dialer/java/com/android/dialer/spam/
H A DSpamBindings.java99 ReportingLocation.Type from,
100 ContactLookupResult.Type contactLookupResultType);
118 ReportingLocation.Type from,
119 ContactSource.Type contactSourceType);
137 ReportingLocation.Type from,
138 ContactLookupResult.Type contactLookupResultType);
156 ReportingLocation.Type from,
157 ContactSource.Type contactSourceType);
H A DSpamBindingsStub.java86 ReportingLocation.Type from,
87 ContactLookupResult.Type contactLookupResultType) {}
94 ReportingLocation.Type from,
95 ContactSource.Type contactSourceType) {}
102 ReportingLocation.Type from,
103 ContactLookupResult.Type contactLookupResultType) {}
110 ReportingLocation.Type from,
111 ContactSource.Type contactSourceType) {}
/packages/apps/Dialer/java/com/android/dialer/logging/
H A DLoggingBindings.java28 void logImpression(DialerImpression.Type dialerImpression);
46 DialerImpression.Type dialerImpression, String callId, long callStartTimeMillis);
54 void logInteraction(InteractionEvent.Type interaction);
63 void logScreenView(com.android.dialer.logging.ScreenEvent.Type screenEvent, Activity activity);
81 InteractionEvent.Type interactionEvent,
H A DLoggingBindingsStub.java24 public void logImpression(DialerImpression.Type dialerImpression) {}
31 DialerImpression.Type dialerImpression, String callId, long callStartTimeMillis) {}
34 public void logInteraction(InteractionEvent.Type interaction) {}
37 public void logScreenView(ScreenEvent.Type screenEvent, Activity activity) {}
55 InteractionEvent.Type interactionEvent,
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DEventReport.java40 private final Type mType;
44 private final Bmessage.Type mMsgType;
49 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
67 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
123 private Type parseType(String type) throws IllegalArgumentException {
124 for (Type t : Type.values()) {
133 private Bmessage.Type parseMsgTyp
200 public enum Type { enum in class:EventReport
209 private Type(String specName) { method in class:EventReport.Type
[all...]
H A DMessage.java50 private final Type mType;
141 private Type strToType(String s) {
143 return Type.EMAIL;
145 return Type.SMS_GSM;
147 return Type.SMS_CDMA;
149 return Type.MMS;
152 return Type.UNKNOWN;
261 * @return {@link Type} object corresponding to <code>type</code> parameter
264 public Type getType() {
332 public enum Type { enum in class:Message
[all...]
/packages/apps/Dialer/java/com/android/dialer/buildtype/
H A DBuildTypeAccessor.java29 @BuildType.Type
H A DBuildType.java33 public @interface Type {} interface in class:BuildType
44 @Type
/packages/apps/Dialer/java/com/android/dialer/buildtype/release/
H A DBuildTypeAccessorImpl.java26 @BuildType.Type
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Dmeta.h38 template <typename T> struct Void { typedef void Type; }; typedef in struct:internal::Void
45 typedef BoolType Type; typedef in struct:internal::BoolType
55 template <bool C> struct SelectIfImpl { template <typename T1, typename T2> struct Apply { typedef T1 Type; }; }; typedef in struct:internal::SelectIfImpl::Apply
56 template <> struct SelectIfImpl<false> { template <typename T1, typename T2> struct Apply { typedef T2 Type; }; }; typedef in struct:internal::SelectIfImpl::Apply
65 template <typename C> struct BoolExpr : SelectIf<C,TrueType,FalseType>::Type {};
66 template <typename C> struct NotExpr : SelectIf<C,FalseType,TrueType>::Type {};
67 template <typename C1, typename C2> struct AndExpr : AndExprCond<C1::Value, C2::Value>::Type {};
68 template <typename C1, typename C2> struct OrExpr : OrExprCond<C1::Value, C2::Value>::Type {};
73 template <typename T> struct AddConst { typedef const T Type; }; typedef in struct:internal::AddConst
75 template <typename T> struct RemoveConst { typedef T Type; }; typedef in struct:internal::RemoveConst
76 template <typename T> struct RemoveConst<const T> { typedef T Type; }; typedef in struct:internal::RemoveConst
134 template <bool Condition, typename T = void> struct EnableIfCond { typedef T Type; }; typedef in struct:internal::EnableIfCond
137 template <bool Condition, typename T = void> struct DisableIfCond { typedef T Type; }; typedef in struct:internal::DisableIfCond
149 template <typename T> struct RemoveSfinaeTag<SfinaeTag&(*)(T)> { typedef T Type; }; typedef in struct:internal::RemoveSfinaeTag
[all...]
H A Dbiginteger.h30 typedef uint64_t Type; typedef in class:internal::BigInteger
33 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type));
59 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type));
71 Type backup = digits_[0];
136 std::memmove(&digits_[count_ - 1 + offset], &digits_[count_ - 1], count_ * sizeof(Type));
149 std::memset(digits_, 0, offset * sizeof(Type));
155 return count_ == rhs.count_ && std::memcmp(digits_, rhs.digits_, count_ * sizeof(Type)) == 0;
158 bool operator==(const Type rhs) const {
194 Type borrow = 0;
196 Type
[all...]
/packages/apps/Dialer/java/com/android/dialer/performancereport/
H A DPerformanceReport.java35 private static final List<UiAction.Type> actions = new ArrayList<>();
43 PerformanceReport.recordClick(UiAction.Type.SCROLL);
54 @Nullable private static UiAction.Type ignoreActionOnce = null;
77 public static void recordClick(UiAction.Type action) {
109 recordClick(UiAction.Type.SCROLL);
137 public static List<UiAction.Type> getActions() {
153 public static void setIgnoreActionOnce(@Nullable UiAction.Type ignoreActionOnce) {
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java35 public enum Type { enum in class:PagedViewIconCache.Key
41 private final Type mType;
45 mType = Type.ApplicationInfoKey;
51 mType = Type.ResolveInfoKey;
55 mType = Type.AppWidgetProviderInfoKey;
61 public boolean isKeyType(Type t) {
87 private void retainAll(HashSet<Key> keysToKeep, Key.Type t) {
103 retainAll(keysSet, Key.Type.ApplicationInfoKey);
111 retainAll(keysSet, Key.Type.ResolveInfoKey);
119 retainAll(keysSet, Key.Type
[all...]
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DBlockReportSpamListener.java59 @NonNull final ContactSource.Type contactSourceType) {
70 DialerImpression.Type
77 ReportingLocation.Type.CALL_LOG_HISTORY,
85 .logImpression(DialerImpression.Type.USER_ACTION_BLOCKED_NUMBER);
103 @NonNull final ContactSource.Type contactSourceType) {
114 DialerImpression.Type
121 ReportingLocation.Type.CALL_LOG_HISTORY,
129 .logImpression(DialerImpression.Type.USER_ACTION_BLOCKED_NUMBER);
147 final ContactSource.Type contactSourceType,
159 .logImpression(DialerImpression.Type
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
H A DFormPage.java39 enum Type { enum in class:FormPage
64 return new FormPage(title, Type.PASSWORD_INPUT, null, null);
75 return new FormPage(title, Type.TEXT_INPUT, null, null);
87 return new FormPage(title, Type.MULTIPLE_CHOICE, formChoices, null);
103 return new FormPage(title, Type.INTENT, null, formIntent);
107 private final Type mFormType;
115 public FormPage(String pageTitle, Type formType, ArrayList<String> formChoices,
129 mFormType = Type.valueOf(in.readString());
216 Type getType() {
/packages/apps/Settings/tests/unit/src/com/android/settings/
H A DUserCredentialsTest.java42 c.storedTypes.add(Credential.Type.CA_CERTIFICATE);
43 c.storedTypes.add(Credential.Type.USER_SECRET_KEY);
/packages/apps/Dialer/java/com/android/incallui/spam/
H A DSpamNotificationActivity.java113 Context context, Bundle bundle, DialerImpression.Type impression) {
148 ContactLookupResult.Type contactLookupResultType =
149 ContactLookupResult.Type.forNumber(
153 logCallImpression(DialerImpression.Type.SPAM_AFTER_CALL_NOTIFICATION_ADD_TO_CONTACTS);
189 final String number, final ContactLookupResult.Type contactLookupResultType) {
208 final String number, final ContactLookupResult.Type contactLookupResultType) {
238 logCallImpression(DialerImpression.Type.SPAM_AFTER_CALL_NOTIFICATION_SHOW_NON_SPAM_DIALOG);
247 logCallImpression(DialerImpression.Type.SPAM_AFTER_CALL_NOTIFICATION_SHOW_SPAM_DIALOG);
262 String number, boolean reportAsSpam, ContactLookupResult.Type contactLookupResultType) {
264 logCallImpression(DialerImpression.Type
[all...]
H A DSpamNotificationService.java85 ContactLookupResult.Type contactLookupResultType =
86 ContactLookupResult.Type.forNumber(intent.getIntExtra(EXTRA_CONTACT_LOOKUP_RESULT_TYPE, 0));
94 intent, DialerImpression.Type.SPAM_NOTIFICATION_SERVICE_ACTION_MARK_NUMBER_AS_SPAM);
100 ReportingLocation.Type.FEEDBACK_PROMPT,
106 intent, DialerImpression.Type.SPAM_NOTIFICATION_SERVICE_ACTION_MARK_NUMBER_AS_NOT_SPAM);
112 ReportingLocation.Type.FEEDBACK_PROMPT,
128 private void logCallImpression(Intent intent, DialerImpression.Type impression) {
/packages/apps/Launcher3/protos/
H A Dlauncher_dump.proto24 enum Type {
30 optional Type type = 1;
/packages/apps/Dialer/java/com/android/dialer/contactactions/
H A DIntentModule.java23 import com.android.dialer.callintent.CallInitiationType.Type;
59 public static IntentModule newCallModule(Context context, String number, Type initiationType) {
68 Context context, String number, Type initiationType) {
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
H A DCachedNumberLookupService.java48 boolean isBusiness(ContactSource.Type sourceType);
50 boolean canReportAsInvalid(ContactSource.Type sourceType, String objectId);
70 void setSource(ContactSource.Type sourceType, String name, long directoryId);
/packages/apps/Launcher3/src/com/android/launcher3/logging/
H A DLoggerUtils.java72 case Action.Type.TOUCH:
78 case Action.Type.COMMAND: return getFieldName(action.command, Action.Command.class);
88 case Target.Type.ITEM:
90 case Target.Type.CONTROL:
92 case Target.Type.CONTAINER:
123 : newTarget(Target.Type.ITEM);
127 Target t = newTarget(Target.Type.ITEM);
152 return newTarget(Target.Type.CONTAINER);
154 Target t = newTarget(Target.Type.CONTROL);
178 Target t = newTarget(Target.Type
[all...]
/packages/apps/Dialer/java/com/android/dialer/backup/
H A DDialerPersistentBackupAgent.java44 Logger.get(this).logImpression(DialerImpression.Type.BACKUP_KEY_VALUE_BACKUP_AGENT_CONSTRUCTOR);
54 Logger.get(this).logImpression(DialerImpression.Type.BACKUP_KEY_VALUE_ON_RESTORE);
63 Logger.get(this).logImpression(DialerImpression.Type.BACKUP_KEY_VALUE_ON_BACKUP);
70 Logger.get(this).logImpression(DialerImpression.Type.BACKUP_KEY_VALUE_GET_BACKUP_SPECIFICATION);
81 Logger.get(this).logImpression(DialerImpression.Type.BACKUP_KEY_VALUE_ON_RESTORE_FINISHED);
/packages/apps/Dialer/java/com/android/dialer/calldetails/
H A DCallDetailsFooterViewHolder.java71 PerformanceReport.recordClick(UiAction.Type.COPY_NUMBER_IN_CALL_DETAIL);
73 Logger.get(context).logImpression(DialerImpression.Type.CALL_DETAILS_COPY_NUMBER);
76 PerformanceReport.recordClick(UiAction.Type.EDIT_NUMBER_BEFORE_CALL_IN_CALL_DETAIL);
78 PerformanceReport.setIgnoreActionOnce(UiAction.Type.TEXT_CHANGE_WITH_INPUT);
80 Logger.get(context).logImpression(DialerImpression.Type.CALL_DETAILS_EDIT_BEFORE_CALL);

Completed in 700 milliseconds

123456