HomeSort by relevance Sort by last modified time
    Searched refs:put (Results 351 - 375 of 1776) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
ShortBufferTest.java 551 * Class under test for java.nio.ShortBuffer put(short)
556 method = "put",
563 ShortBuffer ret = buf.put((short) i);
568 buf.put((short) 0);
576 * Class under test for java.nio.ShortBuffer put(short[])
581 method = "put",
590 ShortBuffer ret = buf.put(array);
595 buf.put(array);
602 buf.put((short[])null);
610 * Class under test for java.nio.ShortBuffer put(short[], int, int
    [all...]
CharBufferTest.java 274 other.put(buf);
568 * Class under test for java.nio.CharBuffer put(char)
573 method = "put",
580 CharBuffer ret = buf.put((char) i);
585 buf.put((char) 0);
593 * Class under test for java.nio.CharBuffer put(char[])
598 method = "put",
608 CharBuffer ret = buf.put(array);
613 buf.put(array);
619 buf.put((char[]) 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...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Provider2Test.java 68 provTest.put("test.prop", "this is a test property");
135 provTest.put("test.prop", "this is a test property");
155 provTest.put("test.prop", "this is a test property");
  /packages/apps/Email/src/com/android/email/mail/
PackedString.java 109 map.put(tag, value);
142 public void put(String tag, String value) { method in class:PackedString.Builder
146 mMap.put(tag, value);
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 80 values.put(COLUMN_KEY_NAME, KEY1);
81 values.put(COLUMN_VALUE_NAME, VALUE1);
84 values.put(COLUMN_KEY_NAME, KEY2);
85 values.put(COLUMN_VALUE_NAME, VALUE2);
88 values.put(COLUMN_KEY_NAME, KEY3);
89 values.put(COLUMN_VALUE_NAME, VALUE3);
360 values.put(COLUMN_KEY_NAME, key4);
361 values.put(COLUMN_VALUE_NAME, value4);
375 values.put(COLUMN_KEY_NAME, key5);
376 values.put(COLUMN_VALUE_NAME, value5)
419 cvs[0].put(COLUMN_KEY_NAME, key4); method
420 cvs[0].put(COLUMN_VALUE_NAME, value4); method
423 cvs[1].put(COLUMN_KEY_NAME, key5); method
424 cvs[1].put(COLUMN_VALUE_NAME, value5); method
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 46 store.put(name, mbc);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader4.java 153 vals.put(RssContentProvider.TITLE, data.getStringExtra(RssContentProvider.TITLE));
154 vals.put(RssContentProvider.URL, data.getStringExtra(RssContentProvider.URL));
155 vals.put(RssContentProvider.CONTENT, data.getStringExtra(RssContentProvider.CONTENT));
156 vals.put(RssContentProvider.LAST_UPDATED, data.getIntExtra(RssContentProvider.LAST_UPDATED, 0));
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiList.java 92 mPackageList.put(name, pkgInfo);
ClassInfo.java 131 mFieldList.put(fieldInfo.getNameAndType(), fieldInfo);
154 mMethodList.put(methInfo.getNameAndDescriptor(), methInfo);
306 tmpFieldList.put(fieldInfo.getNameAndType(), fieldInfo);
316 tmpMethodList.put(methodInfo.getNameAndDescriptor(), methodInfo);
PackageInfo.java 65 mClassList.put(fixedName, classInfo);
  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.java 73 this.attribHandlerMap.put(name, handler);
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 81 this.map.put(id, obj);
  /external/chromium/third_party/icu/source/i18n/
transreg.h 204 void put(Transliterator* adoptedProto,
213 void put(const UnicodeString& ID,
224 void put(const UnicodeString& ID,
236 void put(const UnicodeString& ID,
  /external/clearsilver/ruby/lib/
neo.rb 30 def put name, value method in class:Clearsilver.Hdf
  /external/guava/src/com/google/common/collect/
ImmutableSortedMap.java 108 .put(k1, v1).put(k2, v2).build();
121 .put(k1, v1).put(k2, v2).put(k3, v3).build();
134 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).build();
147 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).put(k5, v5).build()
340 @Override public Builder<K, V> put(K key, V value) { method in class:ImmutableSortedMap.Builder
    [all...]
  /external/icu4c/i18n/
transreg.h 204 void put(Transliterator* adoptedProto,
213 void put(const UnicodeString& ID,
224 void put(const UnicodeString& ID,
236 void put(const UnicodeString& ID,
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 104 this.nameValueMap.put(nv.getName().toLowerCase(), nv);
112 nameValueMap.put(name.toLowerCase(), nameValue);
241 public NameValue put(String key, NameValue value) { method in class:DuplicateNameValueList
242 return (NameValue) this.nameValueMap.put(key, value);
  /external/oauth/core/src/main/java/net/oauth/
OAuthConsumer.java 55 properties.put(name, value);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 283 theFeatures.put(namespacesFeature, truthValue(DEFAULT_NAMESPACES));
284 theFeatures.put(namespacePrefixesFeature, Boolean.FALSE);
285 theFeatures.put(externalGeneralEntitiesFeature, Boolean.FALSE);
286 theFeatures.put(externalParameterEntitiesFeature, Boolean.FALSE);
287 theFeatures.put(isStandaloneFeature, Boolean.FALSE);
288 theFeatures.put(lexicalHandlerParameterEntitiesFeature,
290 theFeatures.put(resolveDTDURIsFeature, Boolean.TRUE);
291 theFeatures.put(stringInterningFeature, Boolean.TRUE);
292 theFeatures.put(useAttributes2Feature, Boolean.FALSE);
293 theFeatures.put(useLocator2Feature, Boolean.FALSE)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
  /external/webkit/JavaScriptCore/runtime/
JSCell.cpp 141 void JSCell::put(ExecState* exec, const Identifier& identifier, JSValue value, PutPropertySlot& slot) function in class:JSC::JSCell
143 toObject(exec)->put(exec, identifier, value, slot);
146 void JSCell::put(ExecState* exec, unsigned identifier, JSValue value) function in class:JSC::JSCell
148 toObject(exec)->put(exec, identifier, value);
JSStaticScopeObject.cpp 45 void JSStaticScopeObject::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&) function in class:JSC::JSStaticScopeObject
  /frameworks/base/core/java/android/app/
ApplicationLoaders.java 60 mLoaders.put(zip, pathClassloader);
DownloadManager.java 517 values.put(Downloads.COLUMN_URI, mUri.toString());
518 values.put(Downloads.Impl.COLUMN_IS_PUBLIC_API, true);
519 values.put(Downloads.COLUMN_NOTIFICATION_PACKAGE, packageName);
522 values.put(Downloads.COLUMN_DESTINATION, Downloads.Impl.DESTINATION_FILE_URI);
523 values.put(Downloads.COLUMN_FILE_NAME_HINT, mDestinationUri.toString());
525 values.put(Downloads.COLUMN_DESTINATION,
537 values.put(Downloads.COLUMN_VISIBILITY,
541 values.put(Downloads.Impl.COLUMN_ALLOWED_NETWORK_TYPES, mAllowedNetworkTypes);
542 values.put(Downloads.Impl.COLUMN_ALLOW_ROAMING, mRoamingAllowed);
543 values.put(Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI, mIsVisibleInDownloadsUi)
    [all...]

Completed in 436 milliseconds

<<11121314151617181920>>