/packages/apps/Gallery2/src/com/android/photos/views/ |
HeaderGridView.java | 112 FixedViewInfo info = new FixedViewInfo(); local 115 info.view = v; 116 info.viewContainer = fl; 117 info.data = data; 118 info.isSelectable = isSelectable; 119 mHeaderViewInfos.add(info); 169 FixedViewInfo info = where.get(i); local 170 if (info.view == v) { 263 for (FixedViewInfo info : infos) { 264 if (!info.isSelectable) 274 FixedViewInfo info = mHeaderViewInfos.get(i); local [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
CallerInfo.java | 154 CallerInfo info = new CallerInfo(); local 155 info.photoResource = 0; 156 info.phoneLabel = null; 157 info.numberType = 0; 158 info.numberLabel = null; 159 info.cachedPhoto = null; 160 info.isCachedPhotoCurrent = false; 161 info.contactExists = false; 176 info.name = cursor.getString(columnIndex); 182 info.phoneNumber = cursor.getString(columnIndex) 285 CallerInfo info = getCallerInfo(context, contactUri); local 338 CallerInfo info = getCallerInfo(context, number); local [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
InstallShortcutReceiver.java | 81 SharedPreferences sharedPrefs, PendingInstallShortcutInfo info) { 86 .key(DATA_INTENT_KEY).value(info.data.toUri(0)) 87 .key(LAUNCH_INTENT_KEY).value(info.launchIntent.toUri(0)) 88 .key(NAME_KEY).value(info.name); 89 if (info.icon != null) { 90 byte[] iconByteArray = ItemInfo.flattenBitmap(info.icon); 95 if (info.iconResource != null) { 96 json = json.key(ICON_RESOURCE_NAME_KEY).value(info.iconResource.resourceName); 98 .value(info.iconResource.packageName); 141 PendingInstallShortcutInfo info local 189 ActivityInfo info = pm.getActivityInfo(intent.getComponent(), 0); local 203 PendingInstallShortcutInfo info = new PendingInstallShortcutInfo(data, name, intent); local 317 ShortcutInfo info = app.getModel().addShortcut(context, data, local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
Hotseat.java | 210 for (AppInfo info: allApps) { 211 ComponentName cn = info.intent.getComponent(); 213 Log.d(TAG, "Adding to 'more apps': " + info.intent); 214 ShortcutInfo si = info.makeShortcut(); 232 FolderInfo info = fi.getFolderInfo(); local 235 info.add(si);
|
InstallShortcutReceiver.java | 82 SharedPreferences sharedPrefs, PendingInstallShortcutInfo info) { 87 .key(DATA_INTENT_KEY).value(info.data.toUri(0)) 88 .key(LAUNCH_INTENT_KEY).value(info.launchIntent.toUri(0)) 89 .key(NAME_KEY).value(info.name); 90 if (info.icon != null) { 91 byte[] iconByteArray = ItemInfo.flattenBitmap(info.icon); 96 if (info.iconResource != null) { 97 json = json.key(ICON_RESOURCE_NAME_KEY).value(info.iconResource.resourceName); 99 .value(info.iconResource.packageName); 183 PendingInstallShortcutInfo info local 241 PendingInstallShortcutInfo info = new PendingInstallShortcutInfo(data, name, intent); local 286 ShortcutInfo info = getShortcutInfo(context, pendingInfo.data, local 347 ShortcutInfo info = app.getModel().infoFromShortcutIntent(context, data, null); local 360 ActivityInfo info = pm.getActivityInfo(intent.getComponent(), 0); local [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DeviceAdminSettings.java | 184 DeviceAdminInfo info = mAvailableAdmins.get(position); local 185 if (mActiveAdmins.contains(info.getComponent()) 186 && info.getPackageName().equals(mDeviceOwnerPkg)) {
|
HomeSettings.java | 159 final ActivityInfo info = candidate.activityInfo; local 160 ComponentName activityName = new ComponentName(info.packageName, info.name); 163 Drawable icon = info.loadIcon(mPm); 164 CharSequence name = info.loadLabel(mPm); 166 icon, name, this, info); 218 HomeSettings parent, ActivityInfo info) { 233 determineTargets(info); 238 private void determineTargets(ActivityInfo info) { 239 final Bundle meta = info.metaData [all...] |
NotificationStation.java | 208 final HistoricalNotificationInfo info = new HistoricalNotificationInfo(); local 209 info.pkg = sbn.getPackageName(); 210 info.user = sbn.getUserId(); 211 info.icon = loadIconDrawable(info.pkg, info.user, sbn.getNotification().icon); 212 info.pkgicon = loadPackageIconDrawable(info.pkg, info.user); 213 info.pkgname = loadPackageName(info.pkg) 278 ApplicationInfo info = mPm.getApplicationInfo(pkg, local 314 final HistoricalNotificationInfo info = getItem(position); local [all...] |
/packages/apps/Settings/src/com/android/settings/quicklaunch/ |
BookmarkPicker.java | 218 ResolveInfo info = resolveList.get(i); local 226 map.put(KEY_TITLE, getResolveInfoTitle(info)); 227 map.put(KEY_RESOLVE_INFO, info); 232 /** Get the title for a resolve info. */ 233 private String getResolveInfoTitle(ResolveInfo info) { 234 CharSequence label = info.loadLabel(getPackageManager()); 235 if (label == null) label = info.activityInfo.name; 243 ResolveInfo info = mResolveList.get(position); 248 // We can go ahead and return the clicked info's intent 249 Intent intent = getIntentForResolveInfo(info, Intent.ACTION_MAIN) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
BinaryDictIOUtils.java | 97 PtNodeInfo info = dictDecoder.readPtNode(p.mAddress, formatOptions); local 98 for (int i = 0; i < info.mCharacters.length; ++i) { 99 pushedChars[index++] = info.mCharacters[i]; 103 final boolean isMovedPtNode = isMovedPtNode(info.mFlags, 105 final boolean isDeletedPtNode = isDeletedPtNode(info.mFlags, 108 && info.mFrequency != FusionDictionary.PtNode.NOT_A_TERMINAL) {// found word 109 words.put(info.mOriginalAddress, new String(pushedChars, 0, index)); 110 frequencies.put(info.mOriginalAddress, info.mFrequency); 111 if (info.mBigrams != null) bigrams.put(info.mOriginalAddress, info.mBigrams) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
MoreSuggestions.java | 41 public abstract void onSuggestionSelected(final int index, final SuggestedWordInfo info); 209 final String info = mSuggestedWords.getDebugString(index); local 212 params, word, info, KeyboardIconsSet.ICON_UNDEFINED, indexInMoreSuggestions,
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactDirectoryManagerTest.java | 66 public void attachInfoForTesting(Context context, ProviderInfo info) { 67 mAuthority = info.authority; 380 PackageInfo info = mPackageManager.getInstalledPackages(0).get(1); local 381 info.packageName = "test.package3"; 382 info.providers[0].packageName = "test.package3";
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadNotifier.java | 129 for (DownloadInfo info : downloads) { 130 final String tag = buildNotificationTag(info); 132 clustered.put(tag, info); 175 final DownloadInfo info = cluster.iterator().next(); local 177 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, info.mId); 181 if (Downloads.Impl.isStatusError(info.mStatus)) { 184 if (info.mDestination != Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION) { 210 for (DownloadInfo info : cluster) { 211 if (info.mTotalBytes != -1) { 212 current += info.mCurrentBytes 238 final DownloadInfo info = cluster.iterator().next(); local [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
ipa-prop.h | 199 this function (given by profiling info). It is used to calculate 211 ipa_set_param_count (struct ipa_node_params *info, int count) 213 info->param_count = count; 219 ipa_get_param_count (struct ipa_node_params *info) 221 return info->param_count; 225 to INFO. Note there is no setter function as this array is built just once 229 ipa_get_param (struct ipa_node_params *info, int i) 231 return info->params[i].decl; 235 the function associated with INFO. */ 238 ipa_is_param_used (struct ipa_node_params *info, int i 419 struct ipa_node_params *info = IPA_NODE_REF (node); local [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
ipa-prop.h | 199 this function (given by profiling info). It is used to calculate 211 ipa_set_param_count (struct ipa_node_params *info, int count) 213 info->param_count = count; 219 ipa_get_param_count (struct ipa_node_params *info) 221 return info->param_count; 225 to INFO. Note there is no setter function as this array is built just once 229 ipa_get_param (struct ipa_node_params *info, int i) 231 return info->params[i].decl; 235 the function associated with INFO. */ 238 ipa_is_param_used (struct ipa_node_params *info, int i 419 struct ipa_node_params *info = IPA_NODE_REF (node); local [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
ipa-prop.h | 199 this function (given by profiling info). It is used to calculate 211 ipa_set_param_count (struct ipa_node_params *info, int count) 213 info->param_count = count; 219 ipa_get_param_count (struct ipa_node_params *info) 221 return info->param_count; 225 to INFO. Note there is no setter function as this array is built just once 229 ipa_get_param (struct ipa_node_params *info, int i) 231 return info->params[i].decl; 235 the function associated with INFO. */ 238 ipa_is_param_used (struct ipa_node_params *info, int i 419 struct ipa_node_params *info = IPA_NODE_REF (node); local [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
ipa-prop.h | 199 this function (given by profiling info). It is used to calculate 211 ipa_set_param_count (struct ipa_node_params *info, int count) 213 info->param_count = count; 219 ipa_get_param_count (struct ipa_node_params *info) 221 return info->param_count; 225 to INFO. Note there is no setter function as this array is built just once 229 ipa_get_param (struct ipa_node_params *info, int i) 231 return info->params[i].decl; 235 the function associated with INFO. */ 238 ipa_is_param_used (struct ipa_node_params *info, int i 419 struct ipa_node_params *info = IPA_NODE_REF (node); local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/ |
ainstr_gf1.h | 184 * Instrument info 207 int (*info)(void *private_data, gf1_info_t *info); member in struct:__anon37218
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/ |
ainstr_gf1.h | 184 * Instrument info 207 int (*info)(void *private_data, gf1_info_t *info); member in struct:__anon38808
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ainstr_gf1.h | 187 * Instrument info 208 int (*info)(void *private_data, struct gf1_info *info); member in struct:snd_gf1_ops
|
sb16_csp.h | 73 struct snd_sb_csp_mc_header info; member in struct:snd_sb_csp_microcode
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/ |
ainstr_gf1.h | 184 * Instrument info 207 int (*info)(void *private_data, gf1_info_t *info); member in struct:__anon40323
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ainstr_gf1.h | 187 * Instrument info 208 int (*info)(void *private_data, struct gf1_info *info); member in struct:snd_gf1_ops
|
sb16_csp.h | 73 struct snd_sb_csp_mc_header info; member in struct:snd_sb_csp_microcode
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
VaryingConfiguration.java | 200 ManifestInfo info = ManifestInfo.get(mConfigChooser.getProject()); local 201 int minSdkVersion = info.getMinSdkVersion();
|