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

<<11121314151617181920>>

  /build/tools/apicheck/src/com/android/apicheck/
ApiInfo.java 70 mPackages.put(pInfo.name(), pInfo);
74 mAllClasses.put(cl.qualifiedName(), cl);
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PeopleTest.java 83 value.put(People.NAME, "test_people_" + i);
84 value.put(People.TIMES_CONTACTED, 0);
85 value.put(People.LAST_TIME_CONTACTED, 0);
90 value.put(Groups.NAME, "test_group_0");
92 value.put(Groups.NAME, "test_group_1");
174 values.put(People.NAME, "test_people_create");
175 values.put(People.TIMES_CONTACTED, 0);
176 values.put(People.LAST_TIME_CONTACTED, 0);
MediaStoreTest.java 59 values.put(MediaStore.MEDIA_SCANNER_VOLUME, mVolumnBackup);
80 values.put(MediaStore.MEDIA_SCANNER_VOLUME, TEST_VOLUME_NAME);
  /cts/tests/tests/util/src/android/util/cts/
SparseIntArrayTest.java 99 method = "put",
121 sparseIntArray.put(KEYS[i], VALUES[i]);
138 sparseIntArray.put(existKey, newValue);
222 method = "put",
244 sparseIntArray.put(KEYS[i], VALUES[i]);
260 sparseIntArray.put(existKey, newValue);
302 sia.put(value, value);
316 sia.put(value, value);
  /dalvik/libcore/luni-kernel/src/main/native/
java_lang_System.cpp 27 * (Calling it plain "getenv" might confuse GDB if you try to put a breakpoint
55 * (Calling it plain "getenv" might confuse GDB if you try to put a breakpoint
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
ASN1OpenType.java 74 in.put(this, super.getDecodedObject(in));
76 in.put(this, oid);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
DRLCertFactory.java 58 put("CertificateFactory.X509", //$NON-NLS-1$
61 put("Alg.Alias.CertificateFactory.X.509", "X509"); //$NON-NLS-1$ //$NON-NLS-2$
  /dalvik/libcore/security/src/test/java/tests/targets/security/
MessageDigestTestMD2.java 79 put("MessageDigest.MD2",
81 put("Alg.Alias.MessageDigest.1.2.840.113549.2.2", "MD2");
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineAppData.java 71 dsts[i].put(buffer, pos, len - pos); method
77 dsts[i].put(buffer, pos, rem); method
ServerSessionContext.java 100 sessions.put(key, session);
113 sessions.put(key, session);
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 99 features.put(name, Boolean.TRUE);
102 features.put(name, Boolean.FALSE);
  /dalvik/vm/mterp/x86-atom/
OP_APUT.S 19 * Code: Generic 32-bit array put operation. Provides a "scale" variable
27 * Description: Perform an array put operation from the value register;
  /external/blktrace/doc/
bno_plot.1 31 The \fI-K\fR option forces bno_plot to put the keys below the graph. If it is
32 not specified, all keys for input files are put in the upper right corner of the
  /external/e2fsprogs/lib/ext2fs/
irel.h 35 errcode_t (*put)(ext2_irel irel, ext2_ino_t old, member in struct:ext2_inode_relocation_table
103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent))
  /external/guava/src/com/google/common/collect/
AbstractListMultimap.java 71 @Override public boolean put(@Nullable K key, @Nullable V value) { method in class:AbstractListMultimap
72 return super.put(key, value);
ForwardingMap.java 72 public V put(K key, V value) { method in class:ForwardingMap
73 return delegate().put(key, value);
  /external/webkit/JavaScriptCore/runtime/
JSZombie.h 58 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) { ASSERT_NOT_REACHED(); } function in class:JSC::JSZombie
59 virtual void put(ExecState*, unsigned, JSValue) { ASSERT_NOT_REACHED(); } function in class:JSC::JSZombie
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-002.js 20 4. Call the [[Put]] method of Result(2), passing GetPropertyName(V)
23 6. Call the [[Put]] method for the global object, passing
statement-003.js 20 4. Call the [[Put]] method of Result(2), passing GetPropertyName(V)
23 6. Call the [[Put]] method for the global object, passing
  /external/webkit/WebCore/bridge/
runtime_array.h 42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 virtual void put(ExecState*, unsigned propertyName, JSValue);
  /frameworks/base/core/java/android/webkit/
FrameLoader.java 349 mHeaders.put("Accept", HEADER_STR);
351 mHeaders.put("Accept-Charset", "utf-8, iso-8859-1, utf-16, *;q=0.7");
355 mHeaders.put("Accept-Language", acceptLanguage);
358 mHeaders.put("User-Agent", mSettings.getUserAgentString());
367 if (mReferrer != null) mHeaders.put("Referer", mReferrer);
368 if (mContentType != null) mHeaders.put(CONTENT_TYPE, mContentType);
383 mHeaders.put(proxyHeader,
393 mHeaders.put("Cookie", cookie);
  /packages/apps/Gallery3D/src/com/cooliris/app/
App.java 54 mMap.put(context, this);
74 mMap.put(mContext, null);
  /packages/apps/Phone/src/com/android/phone/
EditFdnContactScreen.java 283 bundle.put("tag", getNameFromTextField());
284 bundle.put("number", getNumberFromTextField());
285 bundle.put("pin2", mPin2);
304 bundle.put("tag", mName);
305 bundle.put("number", mNumber);
306 bundle.put("newTag", getNameFromTextField());
307 bundle.put("newNumber", getNumberFromTextField());
308 bundle.put("pin2", mPin2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizard.java 406 parameters.put(PARAM_PROJECT, info.getProjectName());
407 parameters.put(PARAM_PACKAGE, mPackageName);
408 parameters.put(PARAM_APPLICATION, STRING_RSRC_PREFIX + STRING_APP_NAME);
409 parameters.put(PARAM_SDK_TOOLS_DIR, AdtPlugin.getOsSdkToolsFolder());
410 parameters.put(PARAM_IS_NEW_PROJECT, info.isNewProject());
411 parameters.put(PARAM_SRC_FOLDER, info.getSourceFolder());
412 parameters.put(PARAM_SDK_TARGET, info.getSdkTarget());
413 parameters.put(PARAM_MIN_SDK_VERSION, info.getMinSdkVersion());
422 parameters.put(PARAM_ACTIVITY, activityName);
426 // we'll put all the strings into values/strings.xm
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNamedNodeMap.java 46 mNodeMap.put(namespace, map);
50 map.put(localName, node);

Completed in 194 milliseconds

<<11121314151617181920>>