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

<<11121314151617181920>>

  /external/libffi/testsuite/libffi.call/
struct8.c 31 void *values[MAX_ARGS]; local
51 values[0] = &ts8_arg;
66 ffi_call(&cif, FFI_FN(struct8), ts8_result, values);
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 109 Collection values = mHandlerMap.values(); local
110 Iterator iter = values.iterator();
  /packages/apps/Contacts/src/com/android/contacts/list/
ProviderStatusLoader.java 123 ContentValues values = new ContentValues(); local
124 values.put(ProviderStatus.STATUS, ProviderStatus.STATUS_UPGRADING);
125 mContext.getContentResolver().update(ProviderStatus.CONTENT_URI, values, null, null);
  /packages/apps/DeskClock/src/com/android/deskclock/
RepeatPreference.java 30 // Initial value that can be set with the values saved in the database.
40 String[] values = new String[] { local
49 setEntries(values);
50 setEntryValues(values);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 83 void onAddToDatabase(ContentValues values) {
84 super.onAddToDatabase(values);
85 values.put(LauncherSettings.Favorites.TITLE, title.toString());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockCorpora.java 61 return Collections.unmodifiableList(new ArrayList<Corpus>(mCorporaByName.values()));
73 for (Corpus corpus : mCorporaByName.values()) {
92 for (Corpus corpus : mCorporaByName.values()) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 80 ContentValues values) {
81 resolveGroupSourceIdInValues(txContext, rawContactId, db, values, true);
82 long dataId = super.insert(db, txContext, rawContactId, values);
91 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values,
95 resolveGroupSourceIdInValues(txContext, rawContactId, db, values, false);
96 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
151 long rawContactId, SQLiteDatabase db, ContentValues values, boolean isInsert) {
152 boolean containsGroupSourceId = values.containsKey(GroupMembership.GROUP_SOURCE_ID);
153 boolean containsGroupId = values.containsKey(GroupMembership.GROUP_ROW_ID);
171 final String sourceId = values.getAsString(GroupMembership.GROUP_SOURCE_ID)
    [all...]
DbModifierWithNotification.java 98 public long insert(String table, String nullColumnHack, ContentValues values) {
99 Set<String> packagesModified = getModifiedPackages(values);
100 long rowId = mDb.insert(table, nullColumnHack, values);
112 public long insert(ContentValues values) {
113 Set<String> packagesModified = getModifiedPackages(values);
114 long rowId = mInsertHelper.insert(values);
140 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
142 packagesModified.addAll(getModifiedPackages(values));
143 int count = mDb.update(table, values, whereClause, whereArgs);
186 * content values. An empty set returned by this method also implies (indirectly) that this doe
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryInfoTest.java 68 ActivityManager.MemoryInfo values = local
70 assertEquals(AVAILMEM, values.availMem);
71 assertEquals(THRESHOLD, values.threshold);
72 assertEquals(LOWMEMORY, values.lowMemory);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramFragmentFixedFunctionTest.java 59 for (Builder.EnvMode env : Builder.EnvMode.values()) {
60 for (Builder.Format format : Builder.Format.values()) {
95 assertEquals(3, Builder.EnvMode.values().length);
105 assertEquals(4, Builder.Format.values().length);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiCoverage.java 38 return Collections.unmodifiableCollection(mPackages.values());
  /cts/tools/dex-tools/src/dex/structure/
DexEncodedValueType.java 132 * an array of values, in the format specified by "encoded_array Format"
187 for (DexEncodedValueType type : values()) {
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 44 for (Modifier modifier : values()) {
  /cts/tools/signature-tools/src/signature/model/impl/
SigPrimitiveType.java 33 for (SigPrimitiveType primitive : values()) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 81 for (Data data : dataMap.values()) {
85 for (Data data : sortedData.values()) {
97 for (Data data : dataMap.values()) {
101 for (Data data : sortedData.values()) {
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 81 for (Data data : dataMap.values()) {
85 for (Data data : sortedData.values()) {
97 for (Data data : dataMap.values()) {
101 for (Data data : sortedData.values()) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 41 "sensorChanged (" + event.values[0] + ", " + event.values[1] + ", " + event.values[2] + ")");
42 mValues = event.values;
  /external/chromium/chrome/browser/autofill/
autofill_manager.cc 71 void RemoveDuplicateSuggestions(std::vector<string16>* values,
75 DCHECK_EQ(values->size(), labels->size());
76 DCHECK_EQ(values->size(), icons->size());
77 DCHECK_EQ(values->size(), unique_ids->size());
85 for (size_t i = 0; i < values->size(); ++i) {
86 const std::pair<string16, string16> suggestion((*values)[i], (*labels)[i]);
88 values_copy.push_back((*values)[i]);
95 values->swap(values_copy);
370 std::vector<string16> values; local
392 form_structure, field, type, &values, &labels, &icons, &unique_ids)
995 std::vector<string16> values; local
    [all...]
  /external/doclava/src/com/google/doclava/
AnnotationValueInfo.java 74 ArrayList<AnnotationValueInfo> values = (ArrayList<AnnotationValueInfo>) v; local
77 for (AnnotationValueInfo info : values) {
79 if (info != values.get(values.size()-1)) {
  /external/guava/src/com/google/common/collect/
BiMap.java 28 * its values as well as that of its keys. This constraint enables bimaps to
30 * as this bimap but with reversed keys and values.
86 * <p>Because a bimap has unique values, this method returns a {@link Set},
90 Set<V> values(); method in interface:BiMap
94 * values to its associated key. The two bimaps are backed by the same data;
  /external/iproute2/misc/
lnstat.h 20 unsigned long values[2]; /* two buffers for values */ member in struct:lnstat_field
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 17 package com.google.clearsilver.jsilver.values;
23 * Base class for values of variant types (i.e. those that can be treated as different types at
51 // TODO: Cache the result for constant values (or just get rid of this class)
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 149 if (values[index] == null)
151 producerVariables.values[index] = null;
155 other.producerVariables.values[index] = null;
181 // Account for the extra space required by Category 2 values.
219 Value value = this.values[index];
  /external/qemu/hw/
goldfish_events_device.c 410 * the DPad values from the ranges above.
435 int32_t* values; local
441 * of (min,max,fuzz,flat) 32-bit values.
449 * since the values only depend on the hardware configuration.
452 s->abs_info = values = malloc(sizeof(uint32_t)*s->abs_info_count);
455 values[0] = 0;
456 values[1] = config->hw_lcd_width-1;
457 values[2] = 0;
458 values[3] = 0;
459 values += 4
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.h 48 const Vector<float>& values() const;

Completed in 746 milliseconds

<<11121314151617181920>>