Home
last modified time | relevance | path

Searched refs:self (Results 1 – 25 of 33) sorted by relevance

12

/packages/apps/Browser/tools/
Dget_search_engines.py53 def __init__(self): argument
58 self.chrome_data = urllib.urlopen(
61 if self.chrome_data.lower().find('repository not found') != -1:
65 self.resdir = os.path.normpath(os.path.join(sys.path[0], '../res'))
67 self.all_engines = set()
69 def getXmlString(self, str): argument
93 def getEngineData(self, name): argument
107 search_obj = re.search(re_exp, self.chrome_data)
114 start_pos = self.chrome_data.find('{', search_obj.start()) + 1;
115 end_pos = self.chrome_data.find('};', start_pos);
[all …]
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DMessageDetailsDialog.java54 final ConversationParticipantsData participants, final ParticipantData self) { in show() argument
59 return getMessageDetails(context, data, participants, self); in show()
68 String messageDetails = getMessageDetails(context, data, participants, self); in show()
75 final ConversationParticipantsData participants, final ParticipantData self) { in getMessageDetails() argument
78 messageDetails = getSmsMessageDetails(data, participants, self); in getMessageDetails()
81 messageDetails = getMmsMessageDetails(context, data, participants, self); in getMessageDetails()
103 final ConversationParticipantsData participants, final ParticipantData self) { in getSmsMessageDetails() argument
141 appendSimInfo(res, self, details); in getSmsMessageDetails()
156 final ConversationParticipantsData participants, final ParticipantData self) { in getMmsMessageDetails() argument
207 appendSimInfo(res, self, details); in getMmsMessageDetails()
[all …]
DComposeMessageView.java612 final ParticipantData self = mConversationDataModel.getData().getDefaultSelfParticipant(); in getSelfSendButtonIconUri() local
613 return self == null ? null : AvatarUriUtil.createAvatarUri(self); in getSelfSendButtonIconUri()
DConversationFragment.java1436 final ParticipantData self = mBinding.getData().getSelfParticipantById(selfParticipantId); in getConversationSelfSubId() local
1439 return self == null ? ParticipantData.DEFAULT_SELF_SUB_ID : self.getSubId(); in getConversationSelfSubId()
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DSelfParticipantsData.java59 for (final ParticipantData self : mSelfParticipantMap.values()) { in getSelfParticipants()
60 if (!activeOnly || self.isActiveSubscription()) { in getSelfParticipants()
61 list.add(self); in getSelfParticipants()
81 final ParticipantData self = getSelfParticipantById(selfId); in isDefaultSelf() local
82 return self == null ? false : self.getSubId() == ParticipantData.DEFAULT_SELF_SUB_ID; in isDefaultSelf()
87 for (final ParticipantData self : mSelfParticipantMap.values()) { in getSelfParticipantsCountExcludingDefault()
88 if (!self.isDefaultSelf() && (!activeOnly || self.isActiveSubscription())) { in getSelfParticipantsCountExcludingDefault()
96 for (final ParticipantData self : mSelfParticipantMap.values()) { in getDefaultSelfParticipant()
97 if (self.isDefaultSelf()) { in getDefaultSelfParticipant()
98 return self; in getDefaultSelfParticipant()
DSettingsData.java89 final ParticipantData self) { in fromSelfParticipant() argument
90 Assert.isTrue(self.isSelf()); in fromSelfParticipant()
91 Assert.isTrue(self.isActiveSubscription()); in fromSelfParticipant()
92 final String displayDetail = TextUtils.isEmpty(self.getDisplayDestination()) ? in fromSelfParticipant()
94 self.getDisplayDestination(); in fromSelfParticipant()
96 self.getSubscriptionName()); in fromSelfParticipant()
98 TYPE_PER_SUBSCRIPTION_SETTINGS, self.getSubId()); in fromSelfParticipant()
204 for (ParticipantData self : selfs) { in getSettingsItems()
205 if (!self.isDefaultSelf()) { in getSettingsItems()
207 settingsItems.add(SettingsItem.fromSelfParticipant(mContext, self)); in getSettingsItems()
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DInsertNewMessageAction.java134 final ParticipantData self = getSelf(db, conversationId, message); in executeAction() local
135 if (self == null) { in executeAction()
138 message.bindSelfId(self.getId()); in executeAction()
143 message.bindParticipantId(self.getId()); in executeAction()
153 final int subId = self.getSubId(); in executeAction()
197 ParticipantData self; in getSelf() local
204 self = BugleDatabaseOperations.getOrCreateSelf(db, requestedSubId); in getSelf()
230 self = BugleDatabaseOperations.getOrCreateSelf(db, defaultSubId); in getSelf()
232 self = unboundSelf; in getSelf()
235 return self; in getSelf()
[all …]
DSyncMessageBatch.java158 final ParticipantData self = ParticipantData.getSelfParticipant(sms.getSubId()); in storeSms() local
160 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in storeSms()
162 self : in storeSms()
252 final ParticipantData self = ParticipantData.getSelfParticipant(mms.getSubId()); in storeMms() local
254 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in storeMms()
256 self : ParticipantData.getFromRawPhoneBySimLocale(senderId, mms.getSubId()); in storeMms()
DReceiveMmsMessageAction.java69 final ParticipantData self = BugleDatabaseOperations.getOrCreateSelf(db, subId); in executeAction() local
78 context, pushData, self.getSubId(), self.getNormalizedDestination()); in executeAction()
111 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in executeAction()
DDownloadMmsAction.java123 final ParticipantData self = BugleDatabaseOperations in queueAction() local
125 final int subId = self.getSubId(); in queueAction()
137 actionParameters.putString(KEY_SUB_PHONE_NUMBER, self.getNormalizedDestination()); in queueAction()
DSendMessageAction.java107 final ParticipantData self = BugleDatabaseOperations.getExistingParticipant( in queueAction() local
132 actionParameters.putInt(KEY_SUB_ID, self.getSubId()); in queueAction()
133 actionParameters.putString(KEY_SUB_PHONE_NUMBER, self.getNormalizedDestination()); in queueAction()
DReceiveSmsMessageAction.java127 final ParticipantData self = ParticipantData.getSelfParticipant(subId); in executeAction() local
140 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in executeAction()
DProcessDownloadedMmsAction.java433 final ParticipantData self = ParticipantData.getSelfParticipant(mms.getSubId()); in processResult() local
435 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in processResult()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DPhoneAccountRegistrarTest.java267 Object self, in roundTripXml() argument
272 Log.d(self, "Input = %s", input); in roundTripXml()
284 Log.i(self, "====== XML data ======\n%s", new String(data)); in roundTripXml()
294 Log.i(self, "result = " + result); in roundTripXml()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DUserBinaryDictionary.java75 public void onChange(final boolean self) { in UserBinaryDictionary()
79 onChange(self, null); in UserBinaryDictionary()
85 public void onChange(final boolean self, final Uri uri) { in UserBinaryDictionary()
DContactsContentObserver.java67 public void onChange(boolean self) { in registerObserver()
/packages/experimental/RpcPerformance/
Drpcperftest.cpp60 ProcessState::self()->startThreadPool(); in main()
61 IPCThreadState::self()->joinThreadPool(); in main()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryService.java163 final DictionaryService self = this; in onStartCommand() local
182 dispatchBroadcast(self, intent); in onStartCommand()
/packages/inputmethods/LatinIME/native/dicttoolkit/
DAndroid.mk34 -Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls \
/packages/inputmethods/LatinIME/native/jni/
DAndroid.mk31 -Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls \
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidWordLevelSpellCheckerSession.java107 public void onChange(boolean self) { in AndroidWordLevelSpellCheckerSession()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleDatabaseOperations.java224 final ParticipantData self = ParticipantData.getSelfParticipant( in getOrCreateConversation() local
231 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self); in getOrCreateConversation()
/packages/services/Telephony/src/com/android/phone/
DPhoneInterfaceManager.java1557 boolean self = Binder.getCallingUid() == Process.myUid(); in checkIfCallerIsSelfOrForegroundUser()
1558 if (!self) { in checkIfCallerIsSelfOrForegroundUser()
/packages/inputmethods/LatinIME/dictionaries/
Den_US_wordlist.combined.gz
Den_GB_wordlist.combined.gz

12