/packages/apps/Mms/src/com/android/mms/ui/ |
SlideView.java | 512 viewsByPosition.put(new Position(textLeft, textTop), mTextView); 518 viewsByPosition.put(new Position(imageLeft, imageTop), mImageView); 520 // region. So, put the VideoView below the ImageView. 522 viewsByPosition.put(new Position(imageLeft + 1, imageTop), mVideoView);
|
/packages/apps/Mms/src/com/android/mms/util/ |
RateController.java | 97 values.put(Rate.SENT_TIME, System.currentTimeMillis());
|
/packages/apps/Phone/src/com/android/phone/ |
BluetoothAtPhonebook.java | 84 mPhonebooks.put("DC", new PhonebookResult()); // dialled calls 85 mPhonebooks.put("RC", new PhonebookResult()); // received calls 86 mPhonebooks.put("MC", new PhonebookResult()); // missed calls 87 mPhonebooks.put("ME", new PhonebookResult()); // mobile phonebook
|
FdnList.java | 100 // if we don't put extras "name" when starting this activity, then
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShouldQueryStrategy.java | 70 mEmptyCorpora.put(corpus, query.length());
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothDevicePreference.java | 122 // Put other preference types above us
|
BluetoothPairingRequest.java | 71 // Put up a notification that leads to the dialog
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
CommonNicknameCache.java | 116 mNicknameClusterCache.put(normalizedName, ref);
|
/packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/ |
DownloadProviderPermissionsTest.java | 91 values.put(Downloads.Impl.COLUMN_URI, "foo");
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
EventLogParser.java | 155 mTagMap.put(value, name); 163 mValueDescriptionMap.put(value, 173 mValueDescriptionMap.put(value, desc); 186 mTagMap.put(value, name);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/utils/ |
ArrayHelper.java | 28 * @param offset the offset in the array where to put the swapped value.
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
TablePanel.java | 119 * When the copy method is invoked, all columns are put in the clipboard, separated
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/ |
TestCollector.java | 94 mTestTree.put(test.getClassName(), suiteRef);
|
/system/core/libacc/tests/data/ |
bellard.otccex.c | 7 /* Any preprocessor directive except #define are ignored. We put this
|
/external/icu4c/i18n/ |
zstrfmt.cpp | 221 TextTrieMap::put(const UnicodeString &key, void *value, UErrorCode &status) { function in class:TextTrieMap 507 // Put the name into the trie 510 fZoneStringsTrie.put(strings[row][col], zsinf, status); 519 fTzidToStrings.put(strings[row][0], zstrings, status); 752 // Create UnicodeString array and put strings to the zone string trie 765 fZoneStringsTrie.put(strings_mz[typeidx], zsinfo, status); 778 fMzidToStrings.put(mzid, tmp_mzStrings, status); 870 fZoneStringsTrie.put(strings[i], zsinfo, status); [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
Workspace.java | 197 actionsMap.put(ExitAction.ACTION_NAME, new ExitAction(this)); 198 actionsMap.put(ShowDevicesAction.ACTION_NAME, new ShowDevicesAction(this)); 199 actionsMap.put(LoadGraphAction.ACTION_NAME, new LoadGraphAction(this)); 200 actionsMap.put(SaveSceneAction.ACTION_NAME, new SaveSceneAction(this)); 201 actionsMap.put(StartServerAction.ACTION_NAME, new StartServerAction(this)); 202 actionsMap.put(StopServerAction.ACTION_NAME, new StopServerAction(this)); 203 actionsMap.put(InvalidateAction.ACTION_NAME, new InvalidateAction(this)); 204 actionsMap.put(RequestLayoutAction.ACTION_NAME, new RequestLayoutAction(this)); 205 actionsMap.put(CaptureNodeAction.ACTION_NAME, new CaptureNodeAction(this)); 206 actionsMap.put(CaptureLayersAction.ACTION_NAME, new CaptureLayersAction(this)) [all...] |
/cts/tools/dasm/src/java_cup/ |
terminal.java | 31 Object conflict = _all.put(nm,this); 43 _all_by_index.put(new Integer(_index), this);
|
/cts/tools/vm-tests/src/dot/junit/opcodes/iput/ |
Test_iput.java | 75 * @title Trying to put float into integer field. Dalvik doens't distinguish 32-bits types 131 * @title put integer into long field - only field with same name but
|
/cts/tools/vm-tests/src/dot/junit/opcodes/iput_object/ |
Test_iput_object.java | 29 * @title put reference into field 106 * @title put object into long field - only field with same name but
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput/ |
Test_sput.java | 76 * @title Trying to put float into integer field. Dalvik doens't distinguish 32-bits types 133 * @title put integer into long field - only field with same name but
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_object/ |
Test_sput_object.java | 29 * @title put reference into static field 106 * @title put object into long field - only field with same name but
|
/dalvik/dx/src/junit/runner/ |
BaseTestRunner.java | 35 fPreferences.put("loading", "true"); 36 fPreferences.put("filterstack", "true");
|
/dalvik/libcore/json/src/test/java/org/json/ |
ParsingTest.java | 224 result.put((String) keyValuePairs[i], keyValuePairs[i+1]); 258 result.put(key, canonicalize(object.get(key)));
|
/dalvik/libcore/luni/src/main/java/java/util/ |
Currency.java | 85 codesToCurrencies.put(currencyCode, currency); 121 localesToCurrencies.put(locale, result);
|
HashMap.java | 70 * constructor). It is never written to, and replaced on first put. Its size 130 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE 150 threshold = -1; // Forces first put() to replace EMPTY_TABLE 388 @Override public V put(K key, V value) { method in class:HashMap 439 * This method is just like put, except that it doesn't do things that 474 * inserts it into the hash table. This method is called by put 484 * inserts it into the hash table. This method is called by put [all...] |