HomeSort by relevance Sort by last modified time
    Searched refs:put (Results 101 - 125 of 1796) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tools/dasm/src/java_cup/
lexer.java 114 keywords.put("package", new Integer(sym.PACKAGE));
115 keywords.put("import", new Integer(sym.IMPORT));
116 keywords.put("code", new Integer(sym.CODE));
117 keywords.put("action", new Integer(sym.ACTION));
118 keywords.put("parser", new Integer(sym.PARSER));
119 keywords.put("terminal", new Integer(sym.TERMINAL));
120 keywords.put("non", new Integer(sym.NON));
121 keywords.put("init", new Integer(sym.INIT));
122 keywords.put("scan", new Integer(sym.SCAN));
123 keywords.put("with", new Integer(sym.WITH))
    [all...]
  /libcore/luni/src/main/java/java/nio/
CharBuffer.java 451 public abstract CharBuffer put(char c); method in class:CharBuffer
458 * {@code put(src, 0, src.length)}.
468 public final CharBuffer put(char[] src) { method in class:CharBuffer
469 return put(src, 0, src.length);
493 public CharBuffer put(char[] src, int off, int len) { method in class:CharBuffer
503 put(src[i]);
524 public CharBuffer put(CharBuffer src) { method in class:CharBuffer
534 put(contents);
552 public abstract CharBuffer put(int index, char c); method in class:CharBuffer
559 * {@code put(str, 0, str.length())}
569 public final CharBuffer put(String str) { method in class:CharBuffer
593 public CharBuffer put(String str, int start, int end) { method in class:CharBuffer
    [all...]
ReadOnlyDoubleArrayBuffer.java 85 public DoubleBuffer put(double c) { method in class:ReadOnlyDoubleArrayBuffer
90 public DoubleBuffer put(int index, double c) { method in class:ReadOnlyDoubleArrayBuffer
95 public final DoubleBuffer put(double[] src, int off, int len) { method in class:ReadOnlyDoubleArrayBuffer
100 public final DoubleBuffer put(DoubleBuffer buf) { method in class:ReadOnlyDoubleArrayBuffer
ReadOnlyFloatArrayBuffer.java 83 public FloatBuffer put(float c) { method in class:ReadOnlyFloatArrayBuffer
88 public FloatBuffer put(int index, float c) { method in class:ReadOnlyFloatArrayBuffer
93 public FloatBuffer put(FloatBuffer buf) { method in class:ReadOnlyFloatArrayBuffer
98 public final FloatBuffer put(float[] src, int off, int len) { method in class:ReadOnlyFloatArrayBuffer
ReadOnlyIntArrayBuffer.java 83 public IntBuffer put(int c) { method in class:ReadOnlyIntArrayBuffer
88 public IntBuffer put(int index, int c) { method in class:ReadOnlyIntArrayBuffer
93 public IntBuffer put(IntBuffer buf) { method in class:ReadOnlyIntArrayBuffer
98 public final IntBuffer put(int[] src, int off, int len) { method in class:ReadOnlyIntArrayBuffer
ReadOnlyLongArrayBuffer.java 83 public LongBuffer put(long c) { method in class:ReadOnlyLongArrayBuffer
88 public LongBuffer put(int index, long c) { method in class:ReadOnlyLongArrayBuffer
93 public LongBuffer put(LongBuffer buf) { method in class:ReadOnlyLongArrayBuffer
98 public final LongBuffer put(long[] src, int off, int len) { method in class:ReadOnlyLongArrayBuffer
ReadOnlyShortArrayBuffer.java 83 public ShortBuffer put(ShortBuffer buf) { method in class:ReadOnlyShortArrayBuffer
88 public ShortBuffer put(short c) { method in class:ReadOnlyShortArrayBuffer
93 public ShortBuffer put(int index, short c) { method in class:ReadOnlyShortArrayBuffer
98 public final ShortBuffer put(short[] src, int off, int len) { method in class:ReadOnlyShortArrayBuffer
  /external/emma/core/java12/com/vladium/util/
IntegerFactory.java 31 s_values.put (value, result);
  /external/webkit/JavaScriptCore/runtime/
ObjectPrototype.h 33 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
RegExpMatchesArray.h 54 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot) function in class:JSC::RegExpMatchesArray
58 JSArray::put(exec, propertyName, v, slot);
61 virtual void put(ExecState* exec, unsigned propertyName, JSValue v) function in class:JSC::RegExpMatchesArray
65 JSArray::put(exec, propertyName, v);
  /frameworks/base/core/java/android/provider/
UserDictionary.java 128 values.put(WORD, word);
129 values.put(FREQUENCY, frequency);
130 values.put(LOCALE, locale);
131 values.put(APP_ID, 0); // TODO: Get App UID
  /libcore/luni/src/main/java/java/util/
Dictionary.java 55 * @see #put
93 public abstract V put(K key, V value); method in class:Dictionary
104 * @see #put
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
DirectIntBufferTest.java 47 method = "put",
57 intBuffer.put(source, 2, 2);
58 intBuffer.put(source, 4, 2);
139 buf.put(myInts, 0, BUFFER_LENGTH);
141 buf.put(myInts, 0, BUFFER_LENGTH);
144 buf.put(myInts, 0, 1); // should fail
152 buf.put(myInts, 0, BUFFER_LENGTH + 1); // should fail
160 buf.put(myInts, 0, 2); // should fail
DirectShortBufferTest.java 48 method = "put",
58 shortBuffer.put(source, 2, 2);
59 shortBuffer.put(source, 4, 2);
140 buf.put(myShorts, 0, BUFFER_LENGTH);
142 buf.put(myShorts, 0, BUFFER_LENGTH);
145 buf.put(myShorts, 0, 1); // should fail
153 buf.put(myShorts, 0, BUFFER_LENGTH + 1); // should fail
161 buf.put(myShorts, 0, 2); // should fail
WrappedCharBufferTest2.java 116 method = "put",
122 buf.put(array, 0, array.length);
128 buf.put((char[]) null, 0, 1);
134 buf.put(new char[buf.capacity() + 1], 0, buf.capacity() + 1);
140 buf.put(array, -1, array.length);
156 buf.put(other);
162 buf.put((CharBuffer) null);
168 buf.put(buf);
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 14 cache.put(key, value);
23 cache.put(key, value);
25 cache.put(i + 10, i * i);
34 cache.put(0, new Integer(0));
36 cache.put(i + 1, i * i);
65 cache.put(0, 0);
66 cache.put(1, 1);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleSetAlarm.java 82 values.put(Alarm.Columns.HOUR, hour);
83 values.put(Alarm.Columns.MINUTES, minutes);
84 values.put(Alarm.Columns.MESSAGE, message);
85 values.put(Alarm.Columns.ENABLED, 1);
86 values.put(Alarm.Columns.VIBRATE, 1);
87 values.put(Alarm.Columns.DAYS_OF_WEEK, 0);
88 values.put(Alarm.Columns.ALARM_TIME, timeInMillis);
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 12 cache.put(key, value);
20 cache.put(key, value);
22 cache.put(i + 10, i * i);
30 cache.put(0, new Integer(0));
32 cache.put(i + 1, i * i);
61 cache.put(0, 0);
62 cache.put(1, 1);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_PlaylistsTest.java 75 values.put(Playlists.NAME, "My favourites");
76 values.put(Playlists.DATA, externalPlaylistPath);
78 values.put(Playlists.DATE_ADDED, dateAdded);
80 values.put(Playlists.DATE_MODIFIED, dateModified);
101 values.put(Playlists.NAME, "xxx");
103 values.put(Playlists.DATE_MODIFIED, dateModified);
122 values.put(Playlists.NAME, "My favourites");
123 values.put(Playlists.DATA, "/data/data/com.android.cts.stub/files/my_favorites.pl");
125 values.put(Playlists.DATE_ADDED, dateAdded);
127 values.put(Playlists.DATE_MODIFIED, dateModified)
    [all...]
ContactsTest.java 94 value.put(PeopleColumns.NAME, insertPeopleName);
95 value.put(PeopleColumns.NOTES, insertPeopleNotes);
96 value.put(PeopleColumns.LAST_TIME_CONTACTED, 0);
97 value.put(PeopleColumns.CUSTOM_RINGTONE, (String) null);
98 value.put(PeopleColumns.SEND_TO_VOICEMAIL, 1);
119 value.put(PeopleColumns.NAME, updatePeopleName);
120 value.put(PeopleColumns.NOTES, updatePeopleNotes);
121 value.put(PeopleColumns.LAST_TIME_CONTACTED, (int) now);
168 value.put(GroupsColumns.NAME, insertGroupsName);
169 value.put(GroupsColumns.NOTES, insertGroupsNotes)
    [all...]
  /frameworks/base/test-runner/src/android/test/
TestRecorder.java 92 map.put("name", className);
93 map.put("started", System.currentTimeMillis());
105 map.put("finished", System.currentTimeMillis());
112 map.put("time", itemTimeNS);
113 map.put("iterations", iterations);
131 map.put("result", "passed");
145 map.put("result", "failed");
146 map.put("exception", stringWriter.toString());
159 map.put("result", "failed");
160 // The reason is put as the exception
    [all...]
  /frameworks/base/core/java/android/content/
ContentValues.java 92 * @param key the name of the value to put
93 * @param value the data for the value to put
95 public void put(String key, String value) { method in class:ContentValues
96 mValues.put(key, value);
111 * @param key the name of the value to put
112 * @param value the data for the value to put
114 public void put(String key, Byte value) { method in class:ContentValues
115 mValues.put(key, value);
121 * @param key the name of the value to put
122 * @param value the data for the value to put
124 public void put(String key, Short value) { method in class:ContentValues
134 public void put(String key, Integer value) { method in class:ContentValues
144 public void put(String key, Long value) { method in class:ContentValues
154 public void put(String key, Float value) { method in class:ContentValues
164 public void put(String key, Double value) { method in class:ContentValues
174 public void put(String key, Boolean value) { method in class:ContentValues
184 public void put(String key, byte[] value) { method in class:ContentValues
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
ConnectionTest.java 46 thePublicStatics.put("TRANSACTION_SERIALIZABLE", new Integer(8));
47 thePublicStatics.put("TRANSACTION_REPEATABLE_READ", new Integer(4));
48 thePublicStatics.put("TRANSACTION_READ_COMMITTED", new Integer(2));
49 thePublicStatics.put("TRANSACTION_READ_UNCOMMITTED", new Integer(1));
50 thePublicStatics.put("TRANSACTION_NONE", new Integer(0));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 74 map.put("package", packageField); //$NON-NLS-1$
75 map.put("projects", projectsField); //$NON-NLS-1$
76 map.put("versionCode", versionCodeField); //$NON-NLS-1$
77 map.put("_key.store", keyStoreField); //$NON-NLS-1$
78 map.put("_key.alias", keyAliasField); //$NON-NLS-1$
  /development/samples/AccessibilityService/src/com/example/android/clockback/
ClockBackService.java 190 sEventDataMappedStringResourceIds.put(110, R.string.value_increase_hours);
191 sEventDataMappedStringResourceIds.put(1140, R.string.value_increase_minutes);
192 sEventDataMappedStringResourceIds.put(1120, R.string.value_decrease_hours);
193 sEventDataMappedStringResourceIds.put(1160, R.string.value_decrease_minutes);
194 sEventDataMappedStringResourceIds.put(1111, R.string.value_hour);
195 sEventDataMappedStringResourceIds.put(1110, R.string.value_hours);
196 sEventDataMappedStringResourceIds.put(1151, R.string.value_minute);
197 sEventDataMappedStringResourceIds.put(1150, R.string.value_minutes);
203 sVibrationPatterns.put(AccessibilityEvent.TYPE_VIEW_CLICKED, new long[] {
206 sVibrationPatterns.put(AccessibilityEvent.TYPE_VIEW_LONG_CLICKED, new long[]
    [all...]

Completed in 319 milliseconds

1 2 3 45 6 7 8 91011>>