Searched refs:type (Results 351 - 375 of 571) sorted by relevance

<<11121314151617181920>>

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarAlarmManager.java533 public void setExact(int type, long triggerAtTime, PendingIntent operation) { argument
534 mAlarmManager.setExact(type, triggerAtTime, operation);
537 public void setExactAndAllowWhileIdle(int type, long triggerAtTime, PendingIntent operation) { argument
538 mAlarmManager.setExactAndAllowWhileIdle(type, triggerAtTime, operation);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java37 * Handles inserts and update for a specific Data type.
351 int type = c.getInt(DataDeleteQuery.DATA1);
352 if (primaryType == -1 || getTypeRank(type) < getTypeRank(primaryType)) {
354 primaryType = type;
366 * Returns the rank of a specific record type to be used in determining the primary
369 protected int getTypeRank(int type) { argument
H A DDataRowHandlerForPhoneNumber.java140 protected int getTypeRank(int type) { argument
141 switch (type) {
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DGroupsTest.java317 values.put(Settings.ACCOUNT_TYPE, sTestAccount.type);
327 sTestAccount.name, sTestAccount.type
373 values.put(Settings.ACCOUNT_TYPE, sTestAccount.type);
383 values.put(Settings.ACCOUNT_TYPE, sSecondAccount.type);
H A DMetadataEntryParserTest.java80 String aggregationDataSet2 = "custom type";
81 String type = "TOGETHER";
91 aggregationContact1, aggregationContact2, type);
213 " \"type\": \"\",\n" +
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachine.java1384 Log.d(TAG, "Stack event type: " + event.type);
1386 switch (event.type) {
1393 Log.e(TAG, "Disconnected: Unexpected stack event: " + event.type);
1465 Log.d(TAG, "Connecting: event type: " + event.type);
1467 switch (event.type) {
1495 Log.e(TAG, "Connecting: ignoring stack event: " + event.type);
1750 Log.d(TAG, "Connected: event type: " + event.type);
2562 onVolumeChange(int type, int volume) argument
2570 onCmdResult(int type, int cme) argument
2578 onSubscriberInfo(String number, int type) argument
2673 int type = EVENT_TYPE_NONE; field in class:HeadsetClientStateMachine.StackEvent
2681 StackEvent(int type) argument
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndldic.c76 #define SET_TYPE_UFLG_FFLG(x,type,u,f) \
77 (*(x) = (NJ_UINT8)(((type) & 0x03) | \
79 #define SET_TYPE_ALLFLG(x,type,u,f,m) \
80 (*(x) = (NJ_UINT8)(((type) & 0x03) | \
162 NJ_UINT32 type; local
175 type = NJ_GET_DIC_TYPE_EX(loctset->loct.type, loctset->loct.handle);
177 if (type == NJ_DIC_TYPE_CUSTOM_INCOMPRESS) {
237 if (NJ_GET_DIC_TYPE_EX(loctset->loct.type, loctset->loct.handle) == NJ_DIC_TYPE_USER) {
275 que->type
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java379 log("event type: " + event.type);
381 switch (event.type) {
386 Log.e(TAG, "Unexpected stack event: " + event.type);
515 log("event type: " + event.type);
517 switch (event.type) {
536 Log.e(TAG, "Unexpected event: " + event.type);
963 log("event type: " + event.type
2991 processAtCscs(String atString, int type, BluetoothDevice device) argument
3002 processAtCpbs(String atString, int type, BluetoothDevice device) argument
3013 processAtCpbr(String atString, int type, BluetoothDevice device) argument
3261 onVolumeChanged(int type, int volume, byte[] address) argument
3529 int type = EVENT_TYPE_NONE; field in class:HeadsetStateMachine.StackEvent
3535 StackEvent(int type) argument
3561 clccResponseNative(int index, int dir, int status, int mode, boolean mpty, String number, int type, byte[] address) argument
3566 phoneStateChangeNative(int numActive, int numHeld, int callState, String number, int type) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapAccountLoader.java133 BluetoothMapUtils.TYPE type) {
145 type);
132 createAppItem(ResolveInfo rInfo, boolean includeIcon, BluetoothMapUtils.TYPE type) argument
H A DBluetoothMapbMessage.java483 TYPE type = null;
586 type = TYPE.valueOf(value);
588 && type != TYPE.SMS_CDMA && type != TYPE.SMS_GSM) {
592 switch(type) {
625 newBMsg.setType(type);
808 public void setType(TYPE type) { argument
809 this.mType = type;
813 * @return the type
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
H A DTestSequencer.java66 * @param type the OBEX operation to perform.
69 public SeqStep addStep(OPTYPE type, ISeqStepValidator validator) { argument
70 SeqStep newStep = new SeqStep(type);
128 Log.i(TAG, "Executing step " + stepIndex + " of type: " + step.mType);
201 Assert.assertTrue("Unknown type: " + step.mType, false);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorUtils.java248 for (AccountType type : mAccountTypes.getAccountTypes(true)) {
249 types.add(type.accountType);
282 * Note although the return type is {@link AccountWithDataSet}, return values from this method
/packages/apps/Contacts/src/com/android/contacts/list/
H A DEmailAddressListAdapter.java37 * A cursor adapter for the {@link Email#CONTENT_TYPE} content type.
147 final int type = cursor.getInt(EmailQuery.EMAIL_TYPE);
151 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
H A DPostalAddressListAdapter.java36 * A cursor adapter for the {@link StructuredPostal#CONTENT_TYPE} content type.
138 final int type = cursor.getInt(PostalQuery.POSTAL_TYPE);
142 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DAccountFilterActivity.java122 AccountType accountType = accountTypes.getAccountType(account.type, account.dataSet);
129 account.type, account.name, account.dataSet, icon));
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountType.java80 * or the sync adapter (for external type, including extensions).
110 * Whether this account type was able to be fully initialized. This may be false if
111 * (for example) the package name associated with the account type could not be found.
118 * @return Whether this type is an "embedded" type. i.e. any of {@link FallbackAccountType},
121 * If an embedded type cannot be initialized (i.e. if {@link #isInitialized()} returns
123 * hand if it's not an embedded type, we just skip loading the type.
220 * Returns {@link AccountTypeWithDataSet} for this type.
228 * external account types. This allows for a primary account type t
516 getDisplayLabel(AccountType type) argument
[all...]
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
H A DContactInfoCache.java48 * Handles requests for contact name and number type.
314 && callLogInfo.type == info.type
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DSettingsData.java60 final String activityTitle, final int type, final int subId) {
64 mType = type;
59 SettingsItem(final String displayName, final String displayDetail, final String activityTitle, final int type, final int subId) argument
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Dmeta.h37 // Helper to wrap/convert arbitrary types to void, useful for arbitrary type matching
151 #define RAPIDJSON_REMOVEFPTR_(type) \
153 < ::RAPIDJSON_NAMESPACE::internal::SfinaeTag&(*) type>::Type
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DAttachmentUtils.java82 * Return a friendly localized file type for this attachment, or the empty string if
85 * @return friendly file type or empty string
89 // This is a dummy attachment, display blank for type.
93 // try to get a friendly name for the exact mime type
118 * Returns a user-friendly localized description of either a complete a MIME type or a
121 * @param type complete MIME type or just MIME family
125 String type) {
156 return sDisplayNameMap.get(type);
124 getMimeTypeDisplayName(final Context context, String type) argument
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java590 * type, or empty list if not found,
648 private void serialize(StringBuilder sb, SerializeType type) { argument
650 if (type == SerializeType.ORIGINAL_HTML && originalHtmlBeforeAttributes != null) {
661 if (type == SerializeType.ORIGINAL_HTML) {
663 } else if (type == SerializeType.HTML) {
672 if (type == SerializeType.ORIGINAL_HTML && originalHtmlAfterAttributes != null) {
674 } else if (type == SerializeType.XHTML && (isSelfTerminating || getElement().isEmpty())) {
976 throw new IllegalArgumentException("unknown node type: " + originalNode.getClass());
1013 throw new IllegalArgumentException("unknown node type: "
1235 private void writeCollapsed(String type, Strin argument
[all...]
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
H A DTestProviderTests.java43 private static final String PONY_COLUMN_TYPE = "type";
71 private static ContentValues ponyValues(String name, String type, int legs, boolean canRide) { argument
74 cv.put(PONY_COLUMN_TYPE, type);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEvent.java78 final private int mEventType; // The type of event - one of the constants above
81 // is of KEYPRESS type, but for a mode key like hankaku/zenkaku or ctrl, there is no code point
106 // If this is of type EVENT_TYPE_SUGGESTION_PICKED, this must not be null (and must be null in
114 private Event(final int type, final CharSequence text, final int codePoint, final int keyCode, argument
117 mEventType = type;
127 // mSuggestedWordInfo is non-null if and only if the type is SUGGESTION_PICKED
175 // TODO: should we have a different type of event for this? After all, it's not a key press.
192 // TODO: should we have a different type of event for this? After all, it's not a key press.
317 throw new RuntimeException("Unknown event type: " + mEventType);
/packages/services/Car/car-support-lib/src/android/support/car/ui/
H A DCarNavExtender.java71 private static final String EXTRA_TYPE = "type";
215 * @param type The type of notification that this will be displayed as in the Android Auto.
221 public CarNavExtender setType(@Type int type) { argument
222 mType = type;
227 * @return The type of notification
238 * @return The type without having to construct an entire {@link CarNavExtender} object.
/packages/services/Car/vehicle_network_service/
H A DVehiclePropertyAccessControl.cpp150 (cur_node->type == XML_ELEMENT_NODE)) {
177 (child->type == XML_ELEMENT_NODE)) {

Completed in 1457 milliseconds

<<11121314151617181920>>