HomeSort by relevance Sort by last modified time
    Searched full:put (Results 151 - 175 of 4625) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/IM/src/com/android/im/app/
ImPluginHelper.java 208 values.put(Imps.Provider.FULLNAME, providerFullName);
209 values.put(Imps.Provider.SIGNUP_URL, signUpUrl);
210 values.put(Imps.Provider.CATEGORY, ImApp.IMPS_CATEGORY);
216 values.put(Imps.Provider.NAME, info.mProviderName);
217 values.put(Imps.Provider.FULLNAME, providerFullName);
218 values.put(Imps.Provider.CATEGORY, ImApp.IMPS_CATEGORY);
219 values.put(Imps.Provider.SIGNUP_URL, signUpUrl);
243 settingValue.put(Imps.ProviderSettings.PROVIDER, providerId);
244 settingValue.put(Imps.ProviderSettings.NAME, entry.getKey());
245 settingValue.put(Imps.ProviderSettings.VALUE, entry.getValue())
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
SendingProgressTokenManager.java 45 synchronized public static void put(Object key, long token) { method in class:SendingProgressTokenManager
47 Log.v(TAG, "TokenManager.put(" + key + ", " + token + ")");
49 TOKEN_POOL.put(key, token);
  /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);
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarExecTest.java 60 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
61 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
106 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
107 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
108 att.put(Attributes.Name.CLASS_PATH, barJar.getName());
133 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName());
142 // play with relative file names - put relative path as ../<parent dir
144 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator
178 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
179 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo")
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
HashMapTest.java 98 empty.put("something", "here");
124 empty.put("something", "here");
141 myMap.put(objArray2[counter], objArray[counter]);
189 map.put("key", "value");
198 map2.put("key", "value2");
205 map2.put("key2", "value3");
214 hashmap.put(1, mock);
240 m.put(null, "test");
311 hm.put("A", null);
312 hm.put("B", null)
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
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
package.html 9 provide methods to get and put data from the
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
FloatBufferTest.java 97 method = "put",
605 * Class under test for java.nio.FloatBuffer put(float)
610 method = "put",
617 FloatBuffer ret = buf.put((float) i);
622 buf.put(0);
630 * Class under test for java.nio.FloatBuffer put(float[])
635 method = "put",
644 FloatBuffer ret = buf.put(array);
649 buf.put(array);
656 buf.put((float[])null)
    [all...]
LongBufferTest.java 557 * Class under test for java.nio.LongBuffer put(long)
562 method = "put",
569 LongBuffer ret = buf.put((long) i);
574 buf.put(0);
582 * Class under test for java.nio.LongBuffer put(long[])
587 method = "put",
596 LongBuffer ret = buf.put(array);
601 buf.put(array);
608 buf.put((long[])null);
616 * Class under test for java.nio.LongBuffer put(long[], int, int
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 48 curGroupMap.put(NAME, "Group " + i);
49 curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");
55 curChildMap.put(NAME, "Child " + j);
56 curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This child is odd");
  /external/clearsilver/man/man3/
cgiwrap_read.3 31 client, usually from a POST or PUT HTTP request. It
  /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/iptables/extensions/
libip6t_NFQUEUE.man 2 you to put a packet into any specific queue, identified by its 16-bit queue
libipt_NFQUEUE.man 2 you to put a packet into any specific queue, identified by its 16-bit queue
  /external/kernel-headers/original/asm-arm/arch/
omap24xx.h 5 * Please place only base defines here and put the rest in device
  /external/webkit/JavaScriptCore/runtime/
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/
SyncStateContract.java 100 values.put(Columns.DATA, data);
101 values.put(Columns.ACCOUNT_NAME, account.name);
102 values.put(Columns.ACCOUNT_TYPE, account.type);
109 values.put(Columns.DATA, data);
110 values.put(Columns.ACCOUNT_NAME, account.name);
111 values.put(Columns.ACCOUNT_TYPE, account.type);
118 values.put(Columns.DATA, data);
150 values.put(Columns.DATA, data);
169 values.put(Columns.DATA, data);
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardTestsBase.java 132 mContentValuesForQP.put("ENCODING", "QUOTED-PRINTABLE");
134 mContentValuesForSJis.put("CHARSET", "SHIFT_JIS");
136 mContentValuesForUtf8.put("CHARSET", "UTF-8");
138 mContentValuesForQPAndSJis.put("ENCODING", "QUOTED-PRINTABLE");
139 mContentValuesForQPAndSJis.put("CHARSET", "SHIFT_JIS");
141 mContentValuesForQPAndUtf8.put("ENCODING", "QUOTED-PRINTABLE");
142 mContentValuesForQPAndUtf8.put("CHARSET", "UTF-8");
144 mContentValuesForBase64V21.put("ENCODING", "BASE64");
146 mContentValuesForBase64V30.put("ENCODING", "b");
  /frameworks/base/core/tests/coretests/src/android/provider/
SmsProviderTest.java 55 map.put("address", "+15045551337");
56 map.put("read", 0);
61 map.put("body", "Test " + i + " !");
62 map.put("date", dates[i]);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 59 sCallsProjectionMap.put(Calls._ID, Calls._ID);
60 sCallsProjectionMap.put(Calls.NUMBER, Calls.NUMBER);
61 sCallsProjectionMap.put(Calls.DATE, Calls.DATE);
62 sCallsProjectionMap.put(Calls.DURATION, Calls.DURATION);
63 sCallsProjectionMap.put(Calls.TYPE, Calls.TYPE);
64 sCallsProjectionMap.put(Calls.NEW, Calls.NEW);
65 sCallsProjectionMap.put(Calls.CACHED_NAME, Calls.CACHED_NAME);
66 sCallsProjectionMap.put(Calls.CACHED_NUMBER_TYPE, Calls.CACHED_NUMBER_TYPE);
67 sCallsProjectionMap.put(Calls.CACHED_NUMBER_LABEL, Calls.CACHED_NUMBER_LABEL);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_getenv.h 16 /* Put a variable of the form "name=value" into the environment */

Completed in 76 milliseconds

1 2 3 4 5 67 8 91011>>