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

<<21222324252627282930>>

  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 84 mSelectionArgsBackReferences.put(source.readInt(), source.readInt());
301 values.put(key, backRefToValue(backRefs, numBackRefs, backRefIndex));
470 mValuesBackReferences.put(key, previousResult);
488 mSelectionArgsBackReferences.put(selectionArgIndex, previousResult);
517 * {@link ContentValues#put}
530 mValues.put(key, (String) value);
532 mValues.put(key, (Byte) value);
534 mValues.put(key, (Short) value);
536 mValues.put(key, (Integer) value);
538 mValues.put(key, (Long) value)
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 277 map.put(BookmarkColumns.VISITS, c
280 map.put(BookmarkColumns.USER_ENTERED, 1);
282 map.put(BookmarkColumns.DATE, now);
298 map.put(BookmarkColumns.URL, url);
299 map.put(BookmarkColumns.VISITS, visits);
300 map.put(BookmarkColumns.DATE, now);
301 map.put(BookmarkColumns.BOOKMARK, 0);
302 map.put(BookmarkColumns.TITLE, url);
303 map.put(BookmarkColumns.CREATED, 0);
304 map.put(BookmarkColumns.USER_ENTERED, user_entered)
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
MappedByteBufferAdapter.java 253 public ByteBuffer put(byte b) { method in class:MappedByteBufferAdapter
256 this.wrapped.put(b);
262 public ByteBuffer put(byte[] src, int off, int len) { method in class:MappedByteBufferAdapter
265 this.wrapped.put(src, off, len);
271 public ByteBuffer put(int index, byte b) { method in class:MappedByteBufferAdapter
274 this.wrapped.put(index, b);
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 181 // paused/stopped. We want to put the new text in the text view,
232 values.put(Notes.MODIFIED_DATE, System.currentTimeMillis());
244 values.put(Notes.TITLE, title);
249 values.put(Notes.NOTE, text);
321 // Put the original note text back into the database
325 values.put(Notes.NOTE, mOriginalContent);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 59 entity.put()
99 entity.put()
154 entity.put()
206 result.put()
209 entity.put()
254 result.put()
  /external/openssl/crypto/bio/
bss_rtcp.c 55 * copied and put under another distribution licence
80 char function; /* 'G'-get, 'P'-put, 'C'-confirm, 'X'-close */
137 static int put ( io_channel chan, char *buffer, int length ) function
195 status = put ( b->num, (char *) &ctx->msg, RPC_HDR_SIZE );
236 status = put ( b->num, (char *) &ctx->msg, segment + RPC_HDR_SIZE );
242 printf("unexpected response when confirming put %c %c\n",
  /external/speex/libspeex/
filters_sse.h 82 /* Put memory back in its place */
127 /* Put memory back in its place */
184 /* Put memory back in its place */
227 /* Put memory back in its place */
282 /* Put memory back in its place */
324 /* Put memory back in its place */
  /external/stlport/stlport/stl/
_streambuf.h 30 // A basic_streambuf<> manages an input (get) area and an output (put)
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
109 protected: // Protected interface to the put area
181 protected: // Virtual put area functions, as defined in
  /frameworks/base/awt/java/awt/color/
ICC_ColorSpace.java 431 fields.put("thisProfile", profile); //$NON-NLS-1$
432 fields.put("minVal", null); //$NON-NLS-1$
433 fields.put("maxVal", null); //$NON-NLS-1$
434 fields.put("diffMinMax", null); //$NON-NLS-1$
435 fields.put("invDiffMinMax", null); //$NON-NLS-1$
436 fields.put("needScaleInit", true); //$NON-NLS-1$
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayGraph.java 130 mValueDescriptorSeriesMap.put(descriptor, map);
172 map.put(event.pid, timeSeries);
207 mOcurrenceDescriptorSeriesMap.put(descriptor, map);
227 map.put(event.pid, timeSeries);
281 mValueTypeDataSetMap.put(type, dataset);
299 // put a new axis label, and configure it.
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectProperties.java 119 COMMENT_MAP.put(PROPERTY_TARGET,
121 COMMENT_MAP.put(PROPERTY_SPLIT_BY_DENSITY,
123 COMMENT_MAP.put(PROPERTY_SDK,
127 COMMENT_MAP.put(PROPERTY_APP_PACKAGE,
185 mProperties.put(key, value);
220 mProperties.put(name, value);
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 510 cookieVal.put(COOKIES_DOMAIN_COL, cookie.domain);
511 cookieVal.put(COOKIES_PATH_COL, cookie.path);
512 cookieVal.put(COOKIES_NAME_COL, cookie.name);
513 cookieVal.put(COOKIES_VALUE_COL, cookie.value);
515 cookieVal.put(COOKIES_EXPIRES_COL, cookie.expires);
517 cookieVal.put(COOKIES_SECURE_COL, cookie.secure);
840 c.put(PASSWORD_HOST_COL, schemePlusHost);
841 c.put(PASSWORD_USERNAME_COL, username);
842 c.put(PASSWORD_PASSWORD_COL, password);
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
DelayQueueTest.java 340 * put(null) throws NPE
345 q.put(null);
353 * all elements successfully put are contained
360 q.put(I);
370 * put doesn't block waiting for take
378 q.put(new PDelay(0));
380 q.put(new PDelay(0));
382 q.put(new PDelay(0));
384 q.put(new PDelay(0));
410 q.put(new PDelay(0))
    [all...]
PriorityBlockingQueueTest.java 302 * put(null) throws NPE
307 q.put(null);
315 * all elements successfully put are contained
322 q.put(I);
332 * put doesn't block waiting for take
340 q.put(new Integer(0));
342 q.put(new Integer(0));
344 q.put(new Integer(0));
346 q.put(new Integer(0));
372 q.put(new Integer(0))
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetwork.java 260 * Command to put the Monkey to sleep.
402 COMMAND_MAP.put("flip", new FlipCommand());
403 COMMAND_MAP.put("touch", new TouchCommand());
404 COMMAND_MAP.put("trackball", new TrackballCommand());
405 COMMAND_MAP.put("key", new KeyCommand());
406 COMMAND_MAP.put("sleep", new SleepCommand());
407 COMMAND_MAP.put("wake", new WakeCommand());
408 COMMAND_MAP.put("tap", new TapCommand());
409 COMMAND_MAP.put("press", new PressCommand());
410 COMMAND_MAP.put("type", new TypeCommand())
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 427 values.put(Sms.DATE, new Long(System.currentTimeMillis()));
431 values.put(Sms.TYPE, Integer.valueOf(type));
439 values.put(Sms.THREAD_ID, Threads.getOrCreateThreadId(
468 values.put(Sms.PERSON, id);
480 values.put(Sms.READ, ONE);
500 cv.put(Telephony.MmsSms.WordsTable.ID, rowID);
501 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, values.getAsString("body"));
502 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, rowID);
503 cv.put(Telephony.MmsSms.WordsTable.TABLE_ID, 1);
758 sConversationProjectionMap.put(Sms.Conversations.SNIPPET
    [all...]
  /build/tools/droiddoc/src/
Hierarchy.java 35 nodes.put(name, me);
45 nodes.put(sname, s);
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput/
Test_aput.java 27 * @title put int into array
37 * @title put int into array
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
AbstractMemorySpy.java 61 memoryInUse.put(wrapper.shadow, wrapper);
62 refToShadow.put(wrapper.wrAddress, wrapper.shadow);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
SystemScope.java 119 names.put(name, identity);
121 keys.put(key, identity);
  /dalvik/libcore/support/src/test/java/tests/support/
Support_GetLocal.java 53 cache.put(url, temp);
73 cache.put(url, temp);
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedStringTest.java 257 whm.put(new TestAttributedCharacterIteratorAttribute("test"),
454 whm.put(new TestAttributedCharacterIteratorAttribute("test1"),
456 whm.put(new TestAttributedCharacterIteratorAttribute("test2"),
458 whm.put(new TestAttributedCharacterIteratorAttribute("test3"),
524 hm.put(aci[0], "value1");
525 hm.put(aci[1], "value2");
561 hm.put(aci[0], "value1");
562 hm.put(aci[1], "value2");
  /dalvik/vm/mterp/x86-atom/
OP_APUT_OBJECT.S 19 * Code: 32-bit array put operation. Provides an "scale" variable
27 * Description: Perform an array put operation from the value register;
OP_IPUT_WIDE.S 19 * Code: 64 bit instance field "put" operation. Uses no substitutions.
23 * Description: Perform the object instance field "put" operation
  /development/pdk/docs/source/
building-dream.jd 23 <li>from this point, the fastboot tool (which is put automatically in your path) can be used to flash a device: boot the device into the bootloader by holding the back key while pressing the power key, and run "fastboot -w flashall".<br></li>
35 <li>from this point, the fastboot tool (which is put automatically in your path) can be used to flash a device: boot the device into the bootloader by holding the back key while pressing the power key, and run "fastboot -w flashall".<br></li>

Completed in 88 milliseconds

<<21222324252627282930>>