HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 451 - 475 of 1385) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/security/
UnresolvedPermissionCollection.java 83 for (Iterator iter = klasses.values().iterator(); iter.hasNext();) {
178 Collection values = (Collection) entry.getValue(); local
180 for (Iterator iterator = values.iterator(); iterator.hasNext();) {
188 klasses.put(key, new HashSet(values));
  /libcore/luni/src/main/java/java/util/
Map.java 22 * A {@code Map} is a data structure consisting of a set of keys and values
25 * class of the corresponding values.
191 * not support {@code null} keys or values.
209 * support {@code null} keys or values.
233 * Returns a {@code Collection} of the values contained in this {@code Map}. The {@code Collection}
250 * @return a collection of the values contained in this map.
252 public Collection<V> values(); method in interface:Map
  /libcore/luni/src/test/java/libcore/java/net/
OldAuthenticatorRequestorTypeTest.java 42 Authenticator.RequestorType[] types = Authenticator.RequestorType.values();
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILAnimation.java 86 * A <code>DOMString</code> representing the value of the values
92 public void setValues(String values)
  /packages/apps/Tag/src/com/android/vcard/
VCardEntryConstructor.java 183 // It is possible when some of multiple values are empty.
184 // e.g. N:;a;;; -> values are "", "a", "", "", and "".
204 public void propertyValues(List<String> values) {
205 if (values == null || values.isEmpty()) {
221 for (final String value : values) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceFolderType.java 32 VALUES(SdkConstants.FD_VALUES),
51 for (ResourceFolderType rType : values()) {
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 94 mLocation = DataLocation.values()[in.readInt()];
232 ContentValues values = new ContentValues(7); local
233 values.put(Images.Media.TITLE, title);
238 values.put(Images.Media.DISPLAY_NAME, filename);
239 values.put(Images.Media.DATE_TAKEN, dateTaken);
240 values.put(Images.Media.MIME_TYPE, "image/jpeg");
241 values.put(Images.Media.ORIENTATION, degree[0]);
242 values.put(Images.Media.DATA, filePath);
245 values.put(Images.Media.LATITUDE, location.getLatitude());
246 values.put(Images.Media.LONGITUDE, location.getLongitude())
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
ClassInfo.java 98 for (MethodInfo mi : sup.mMethods.values()) {
117 for (MethodInfo mi : interfaceInfo.mMethods.values()) {
156 for (MethodInfo mInfo : mMethods.values()) {
177 for (MethodInfo mInfo : cl.mMethods.values()) {
191 for (ConstructorInfo mInfo : mConstructors.values()) {
202 for (ConstructorInfo mInfo : cl.mConstructors.values()) {
210 for (FieldInfo mInfo : mFields.values()) {
221 for (FieldInfo mInfo : cl.mFields.values()) {
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 392 mSensorX = event.values[0];
393 mSensorY = event.values[1];
396 mSensorX = -event.values[1];
397 mSensorY = event.values[0];
400 mSensorX = -event.values[0];
401 mSensorY = -event.values[1];
404 mSensorX = event.values[1];
405 mSensorY = -event.values[0];
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 299 ContentValues values = new ContentValues(); local
302 values.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
320 values.put(NoteColumns.TITLE, title);
324 values.put(NoteColumns.NOTE, text);
330 getContentResolver().update(mUri, values, null, null);
348 ContentValues values = new ContentValues(); local
349 values.put(NoteColumns.NOTE, mOriginalContent);
350 getContentResolver().update(mUri, values, null, null);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
dns_fail.js 2 // failing. It tests that functions return the expected values.
  /external/nist-sip/java/gov/nist/core/
ThreadAuditor.java 137 Iterator<ThreadHandle> it = threadHandles.values().iterator();
186 Iterator<ThreadHandle> it = threadHandles.values().iterator();
  /external/proguard/examples/annotations/
examples.pro 44 public static **[] values();
  /external/proguard/examples/
applets.pro 36 public static **[] values();
applications.pro 42 public static **[] values();
servlets.pro 37 public static **[] values();
  /external/webkit/LayoutTests/storage/
sql-data-types.js 1 //description("This test verifies that the javascript values returned by database queries are of same type as the values put into the database.");
55 notifyDone("FAIL: Error fetching values from the db.")
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
64 notifyDone("FAIL: Error inserting values to the db.");
  /external/webkit/WebKit/mac/WebView/
WebFormDelegate.h 63 withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener;
WebFormDelegate.m 74 withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 75 public int update(Uri url, ContentValues values, String selection,
77 return mContentProvider.update(url, values, selection, selectionArgs);
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 115 public int update(SQLiteDatabase db, String table, ContentValues values) {
116 return db.update(table, values, getSelection(), getSelectionArgs());
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutTest.java 285 private void assertVertMetrics(Layout l, int topPad, int botPad, int... values) {
287 assertLinesMetrics(l, values);
290 private void assertLinesMetrics(Layout l, int... values) {
292 if ((values.length & 0x1) != 0) {
293 throw new IllegalArgumentException(String.valueOf(values.length));
296 int lines = values.length >> 1;
301 int a = values[n];
302 int d = values[n+1];
  /libcore/luni/src/main/java/java/lang/
Enum.java 118 * relative order. This method compares the object's ordinal values, that
125 * values of this enum constant and {@code o} are equal; a positive
193 * Helper to invoke the values() static method on T and answer the result.
199 Method values = AccessController local
202 Method valsMethod = enumType.getMethod("values",
208 return (T[]) values.invoke(enumType, (Object[])null);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 114 * the given enum values.
119 Object[] values,
125 for (Object value : values) {
  /external/guava/src/com/google/common/collect/
Multimaps.java 92 * values
94 * values for a given key
169 * values
170 * @param factory supplier of new, empty lists that will each hold all values
244 * values
245 * @param factory supplier of new, empty sets that will each hold all values
318 * values
320 * all values for a given key
451 transient Collection<V> values; field in class:Multimaps.UnmodifiableMultimap
494 @Override public Collection<Collection<V>> values() {
565 @Override public Collection<V> values() { method in class:Multimaps.UnmodifiableMultimap
    [all...]

Completed in 1653 milliseconds

<<11121314151617181920>>