/development/samples/GlobalTime/src/com/android/globaltime/ |
City.java | 100 Iterator<City> iter = cities.values().iterator(); 116 Iterator<City> iter = cities.values().iterator(); 156 return cities.values().iterator();
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherWidgetProvider.java | 119 final ContentValues values = new ContentValues(); 120 values.put(WeatherDataProvider.Columns.TEMPERATURE, 122 r.update(uri, values, null, null);
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
ASN1Set.java | 136 ASN1Encodable[] values = new ASN1Encodable[this.size()]; local 140 values[i] = (ASN1Encodable)this.getObjectAt(i); 143 return values;
|
/external/chromium/base/ |
string_split.cc | 63 std::string* key, std::vector<std::string>* values) { 65 values->clear(); 75 // Find the values string. 85 // Construct the values vector. 86 values->push_back(values_string); 113 // values; just record that our split failed.
|
/external/emma/core/java12/com/vladium/emma/report/ |
AbstractReportGenerator.java | 119 m_settings.setColumnOrder (columnIDs.values ()); 133 m_settings.setSortOrder (sort.values ()); 200 m_typeSortComparators [t] = ItemComparator.Factory.create (orderedAttrIDsWithDir.values (), m_settings.getUnitsType ());
|
/external/emma/core/java12/com/vladium/util/ |
IProperties.java | 299 PropertiesImpl (final HashMap values, final IMapper mapper) 302 m_valueMap = values != null ? values : new HashMap ();
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
MultiType.java | 124 resolved = Type.get((CtClass)map.values().iterator().next()); 177 Iterator iter = type.interfaces.values().iterator(); 272 resolved = Type.get((CtClass) merged.values().iterator().next());
|
/external/llvm/tools/llvm-size/ |
llvm-size.cpp | 38 cl::values(clEnumVal(sysv, "System V format"), 45 cl::values(clEnumValN(sysv, "A", "System V format"), 58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
IOHandler.java | 330 for (Enumeration<Socket> values = socketTable.elements(); values.hasMoreElements();) { 331 Socket s = (Socket) values.nextElement();
|
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 62 values=[ 105 self.assertEqual(self.my_enum, self.my_enum.values[0].type) 117 self.assertEqual(self.my_enum.values[0].GetOptions(),
|
/external/skia/src/animator/ |
SkAnimateBase.cpp | 42 SK_MEMBER_PROPERTY(values, DynamicString) 135 case SK_PROPERTY(values): 200 case SK_PROPERTY(values):
|
/external/webkit/Source/WebCore/platform/network/cf/ |
ResourceRequestCFNet.cpp | 180 Vector<const void*, 128> values(headerCount); 181 CFDictionaryGetKeysAndValues(headers, keys.data(), values.data()); 183 m_httpHeaderFields.set((CFStringRef)keys[i], (CFStringRef)values[i]);
|
/frameworks/base/core/java/android/content/ |
SearchRecentSuggestionsProvider.java | 77 // client-provided configuration values 90 // NOTE: These version values are shifted left 8 bits (x 256) in order to create space for 162 * constructor. In your application or activities, you must provide the same values when 181 // saved values 185 // derived values 272 public Uri insert(Uri uri, ContentValues values) { 285 rowID = db.insert(sSuggestions, NULL_COLUMN, values); 393 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
SyncQueue.java | 137 for (SyncOperation op : mOperationsMap.values()) { 148 for (SyncOperation op : mOperationsMap.values()) { 178 for (SyncOperation operation : mOperationsMap.values()) {
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 113 * of progress. These values are published on the UI thread, in the 358 * The specified values are the values passed to {@link #publishProgress}. 360 * @param values The values indicating progress. 366 protected void onProgressUpdate(Progress... values) { 586 * @param values The progress values to update the UI with. 591 protected final void publishProgress(Progress... values) { 594 new AsyncTaskResult<Progress>(this, values)).sendToTarget() [all...] |
/frameworks/base/core/java/android/view/ |
WindowOrientationListener.java | 212 // Indices into SensorEvent.values for the accelerometer sensor. 363 float x = event.values[ACCELEROMETER_DATA_X]; 364 float y = event.values[ACCELEROMETER_DATA_Y]; 365 float z = event.values[ACCELEROMETER_DATA_Z]; 374 // or when we see values of (0, 0, 0) which indicates that we polled the
|
/frameworks/base/core/java/android/widget/ |
SimpleAdapter.java | 76 * TextViews. The first N views in this list are given the values of the first N columns 289 * values to views. 291 * You should use this class to bind values to views that are not 335 results.values = list; 369 results.values = newValues; 379 mData = (List<Map<String, ?>>) results.values;
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsProvider.java | 138 * @param values found in the row 142 private Uri getUriFor(Uri tableUri, ContentValues values, long rowId) { 148 String name = values.getAsString(Settings.NameValueTable.NAME); 283 // Slurp all values (if sane in number & size) into cache. 327 final ContentValues values = new ContentValues(); local 328 values.put(Settings.NameValueTable.NAME, Settings.Secure.ANDROID_ID); 329 values.put(Settings.NameValueTable.VALUE, newAndroidIdValue); 330 final Uri uri = insert(Settings.Secure.CONTENT_URI, values); 440 public int bulkInsert(Uri uri, ContentValues[] values) { 452 int numValues = values.length [all...] |
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
AsmAnalyzerTest.java | 98 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray()); 206 for (ClassReader cr2 : in_deps.values()) { 221 for (ClassReader cr2 : in_deps.values()) {
|
/frameworks/ex/common/java/com/android/common/contacts/ |
DataUsageStatUpdater.java | 52 * Copied from API in ICS (not available before it). You can use values here if you are sure 246 final ContentValues values = new ContentValues(); local 247 values.put(ContactsContract.Contacts.LAST_TIME_CONTACTED, currentTimeMillis); 248 if (mResolver.update(ContactsContract.Contacts.CONTENT_URI, values,
|
/frameworks/support/v4/java/android/support/v4/content/ |
ModernAsyncTask.java | 217 * The specified values are the values passed to {@link #publishProgress}. 219 * @param values The values indicating progress. 225 protected void onProgressUpdate(Progress... values) { 445 * @param values The progress values to update the UI with. 450 protected final void publishProgress(Progress... values) { 453 new AsyncTaskResult<Progress>(this, values)).sendToTarget();
|
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/ |
AnnotationFactory.java | 41 * conforming access to annotation member values and required implementations of 59 * of member element definitions with default values. 111 * @param values actual element values 113 private AnnotationFactory(Class<? extends Annotation> klzz, AnnotationMember[] values) { 116 if (values == null) { 119 //merge default and actual values 122 for (AnnotationMember val : values){ 135 * and merges deserialized values with the new definitions. 162 // anyway they remain relevant to values [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
AbstractSessionContext.java | 74 SSLSession[] array = sessions.values().toArray( 125 Iterator<SSLSession> i = sessions.values().iterator(); 143 Iterator<SSLSession> i = sessions.values().iterator();
|
/packages/apps/Browser/src/com/android/browser/provider/ |
SnapshotProvider.java | 206 public Uri insert(Uri uri, ContentValues values) { 216 id = db.insert(TABLE_SNAPSHOTS, Snapshots.TITLE, values); 263 public int update(Uri uri, ContentValues values, String selection,
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarUtils.java | 46 * values. 102 // Check the values in the db 227 ContentValues values = new ContentValues(); local 240 values.put(CalendarCache.VALUE, mUseHomeTZ ? CalendarCache.TIMEZONE_TYPE_HOME 242 mHandler.startUpdate(mToken, null, CalendarCache.URI, values, "key=?", 266 * @param callback The runnable that should execute if a query returns new values 304 * new values
|