/libcore/luni/src/main/java/java/nio/ |
ReadWriteIntArrayBuffer.java | 95 public IntBuffer put(int c) { method in class:ReadWriteIntArrayBuffer 104 public IntBuffer put(int index, int c) { method in class:ReadWriteIntArrayBuffer 113 public IntBuffer put(int[] src, int off, int len) { method in class:ReadWriteIntArrayBuffer
|
ReadWriteLongArrayBuffer.java | 95 public LongBuffer put(long c) { method in class:ReadWriteLongArrayBuffer 104 public LongBuffer put(int index, long c) { method in class:ReadWriteLongArrayBuffer 113 public LongBuffer put(long[] src, int off, int len) { method in class:ReadWriteLongArrayBuffer
|
ReadWriteShortArrayBuffer.java | 98 public ShortBuffer put(short c) { method in class:ReadWriteShortArrayBuffer 107 public ShortBuffer put(int index, short c) { method in class:ReadWriteShortArrayBuffer 116 public ShortBuffer put(short[] src, int off, int len) { method in class:ReadWriteShortArrayBuffer
|
CharSequenceAdapter.java | 124 public CharBuffer put(char c) { method in class:CharSequenceAdapter 129 public CharBuffer put(int index, char c) { method in class:CharSequenceAdapter 134 public final CharBuffer put(char[] src, int off, int len) { method in class:CharSequenceAdapter 147 public CharBuffer put(String src, int start, int end) { method in class:CharSequenceAdapter
|
/packages/apps/Camera/src/com/android/camera/gallery/ |
LruCache.java | 64 public synchronized V put(K key, V value) { method in class:LruCache 66 mLruMap.put(key, value); 67 Entry<K, V> entry = mWeakMap.put(
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
LruCache.java | 60 public synchronized V put(K key, V value) { method in class:LruCache 62 mLruMap.put(key, value); 63 Entry<K, V> entry = mWeakMap.put(
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
UserBigramDictionary.java | 98 sDictProjectionMap.put(MAIN_COLUMN_ID, MAIN_COLUMN_ID); 99 sDictProjectionMap.put(MAIN_COLUMN_WORD1, MAIN_COLUMN_WORD1); 100 sDictProjectionMap.put(MAIN_COLUMN_WORD2, MAIN_COLUMN_WORD2); 101 sDictProjectionMap.put(MAIN_COLUMN_LOCALE, MAIN_COLUMN_LOCALE); 103 sDictProjectionMap.put(FREQ_COLUMN_ID, FREQ_COLUMN_ID); 104 sDictProjectionMap.put(FREQ_COLUMN_PAIR_ID, FREQ_COLUMN_PAIR_ID); 105 sDictProjectionMap.put(FREQ_COLUMN_FREQUENCY, FREQ_COLUMN_FREQUENCY); 387 values.put(MAIN_COLUMN_WORD1, word1); 388 values.put(MAIN_COLUMN_WORD2, word2); 389 values.put(MAIN_COLUMN_LOCALE, locale) [all...] |
/cts/tests/SignatureTest/src/android/tests/sigtest/ |
SignatureTestActivity.java | 77 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISSING_CLASS, BUNDLE_KEY_MISSING_CLASS); 78 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISSING_INTERFACE, BUNDLE_KEY_MISSING_INTERFACE); 79 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISSING_METHOD, BUNDLE_KEY_MISSING_METHOD); 80 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISSING_FIELD, BUNDLE_KEY_MISSING_FIELD); 81 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISMATCH_CLASS, BUNDLE_KEY_MISMATCH_CLASS); 82 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISMATCH_INTERFACE, BUNDLE_KEY_MISMATCH_INTERFACE); 83 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISMATCH_METHOD, BUNDLE_KEY_MISMATCH_METHOD); 84 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.MISMATCH_FIELD, BUNDLE_KEY_MISMATCH_FIELD); 85 FAILURE_TYPE_TO_KEY.put(FAILURE_TYPE.CAUGHT_EXCEPTION, BUNDLE_KEY_CAUGHT_EXCEPTION);
|
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 122 initialValues.put(KEY_TITLE, title); 123 initialValues.put(KEY_BODY, body); 183 args.put(KEY_TITLE, title); 184 args.put(KEY_BODY, body);
|
/external/easymock/src/org/easymock/internal/ |
LegacyMatcherProvider.java | 43 matchers.put(method, defaultMatcher);
68 matchers.put(method, matcher);
82 matchers.put(method, entry.getValue());
97 map.put(new MethodSerializationWrapper(matcher.getKey()), matcher
|
/external/guava/src/com/google/common/collect/ |
BiMap.java | 46 V put(@Nullable K key, @Nullable V value); method in interface:BiMap 49 * An alternate form of {@code put} that silently removes any existing entry 50 * with the value {@code value} before proceeding with the {@link #put} 75 * @throws IllegalArgumentException if an attempt to {@code put} any
|
/frameworks/base/core/java/android/provider/ |
SearchRecentSuggestions.java | 176 values.put(SuggestionColumns.DISPLAY1, queryString); 178 values.put(SuggestionColumns.DISPLAY2, line2); 180 values.put(SuggestionColumns.QUERY, queryString); 181 values.put(SuggestionColumns.DATE, now);
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
PduBody.java | 45 // Put part to mPartMapByContentId. 48 mPartMapByContentId.put(new String(contentId), part); 51 // Put part to mPartMapByContentLocation. 55 mPartMapByContentLocation.put(clc, part); 58 // Put part to mPartMapByName. 62 mPartMapByName.put(clc, part); 65 // Put part to mPartMapByFileName. 69 mPartMapByFileName.put(clc, part);
|
/frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/ |
ContactEntry.java | 35 contentValues.put(Data.MIMETYPE, mimeType);
|
/libcore/dom/src/test/java/org/w3c/domts/ |
LSDocumentBuilderFactory.java | 248 strategies.put("coalescing", new LSParameterStrategy("cdata-sections", true)); 249 strategies.put("expandEntityReferences", new LSParameterStrategy("entities", true)); 250 strategies.put("ignoringElementContentWhitespace", 252 strategies.put("namespaceAware", new LSParameterStrategy("namespaces", false)); 253 strategies.put("validating", 255 strategies.put("schemaValidating", 257 strategies.put("ignoringComments", new LSParameterStrategy("comments", true)); 258 strategies.put("signed", new LSFixedStrategy(true)); 259 strategies.put("hasNullString", new LSFixedStrategy(true));
|
/libcore/luni/src/main/java/java/lang/reflect/ |
AccessibleObject.java | 82 trans.put("byte", "B"); 83 trans.put("char", "C"); 84 trans.put("short", "S"); 85 trans.put("int", "I"); 86 trans.put("long", "J"); 87 trans.put("float", "F"); 88 trans.put("double", "D"); 89 trans.put("void", "V"); 90 trans.put("boolean", "Z");
|
/libcore/luni/src/main/java/java/util/concurrent/ |
BlockingQueue.java | 44 * <td>{@link #put put(e)}</td> 65 * to <tt>add</tt>, <tt>put</tt> or <tt>offer</tt> a <tt>null</tt>. A 71 * additional elements can be <tt>put</tt> without blocking. 111 * while (true) { queue.put(produce()); } 204 void put(E e) throws InterruptedException; method in interface:BlockingQueue
|
/libcore/luni/src/main/java/org/apache/harmony/security/fortress/ |
SecurityUtils.java | 86 ACC_CACHE.put(thread, context);
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 128 m_indexFromQName.put(qname, i); 134 m_indexFromQName.put(key, i); 153 m_indexFromQName.put(qName, i); 161 m_indexFromQName.put(key, i);
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
SpiEngUtils.java | 64 put(key, clName); method
|