Searched refs:values (Results 151 - 175 of 211) sorted by relevance

123456789

/frameworks/base/core/java/com/android/internal/widget/
H A DContactHeaderWidget.java57 * can bind specific values on the header, or use helper methods like
644 final ContentValues values = new ContentValues(1);
645 values.put(Contacts.STARRED, mStarredView.isChecked());
646 mContentResolver.update(mContactUri, values, null, null);
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseCursorTest.java190 ContentValues values = new ContentValues();
191 values.put("data", 42.11);
192 long id = mDatabase.insert("test", "data", values);
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java126 // values for setPowerState
408 * can be specified. Current values include {@link android.os.BatteryManager#BATTERY_PLUGGED_AC}
431 ContentValues values = mSettings.getValues(name);
432 Integer iVal = values != null ? values.getAsInteger(Settings.System.VALUE) : null;
437 ContentValues values = mSettings.getValues(name);
438 Float fVal = values != null ? values.getAsFloat(Settings.System.VALUE) : null;
1036 for (PokeLock p: mPokeLocks.values()) {
1172 for (PokeLock p: mPokeLocks.values()) {
2295 getAutoBrightnessValue(int sensorValue, int[] values) argument
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java784 * <code>values</code>. "^^" is used to produce a single caret in
785 * the output. Only up to 9 replacement values are supported,
790 * placeholder values. This object is not modified; a copy is
793 * @param values CharSequences substituted into the template. The
799 * value that was not provided, or if more than 9 values are
803 CharSequence... values) {
804 if (values.length > 9) {
805 throw new IllegalArgumentException("max of 9 values are supported");
825 if (which >= values.length) {
828 "; only " + values
802 expandTemplate(CharSequence template, CharSequence... values) argument
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java537 public final String[] values; field in class:BatteryStats.BitDescription
543 this.values = null;
546 public BitDescription(int mask, int shift, String name, String[] values) { argument
550 this.values = values;
995 * Dump a comma-separated line of values for terse checkin mode.
1754 if (bd.values != null && val >= 0 && val < bd.values.length) {
1755 pw.print(bd.values[val]);
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduHeaders.java568 EncodedStringValue[] values = new EncodedStringValue[list.size()];
569 return list.toArray(values);
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java35 new MultiTapKeyListener[Capitalize.values().length * 2];
H A DTextKeyListener.java39 new TextKeyListener[Capitalize.values().length * 2];
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java154 // both values are null, the cookies match. If both values are
222 // If both cookies have null values, fall back to using the name
504 Collection<ArrayList<Cookie>> cookieList = mCookieMap.values();
554 Collection<ArrayList<Cookie>> cookieList = mCookieMap.values();
584 Collection<ArrayList<Cookie>> cookieList = mCookieMap.values();
641 Collection<ArrayList<Cookie>> cookieLists = mCookieMap.values();
H A DWebViewDatabase.java1064 * Get all the values for a form entry with "name" in a given site
1068 * @return A list of values. Return empty list if nothing is found.
1071 ArrayList<String> values = new ArrayList<String>();
1073 return values;
1099 values.add(dataCursor.getString(valueCol));
1113 return values;
/frameworks/base/media/java/android/media/
H A DMiniThumbFile.java63 for (MiniThumbFile file : sThumbFiles.values()) {
/frameworks/base/opengl/include/GLES2/
H A Dgl2.h607 GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values);
609 GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values);
611 GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values);
613 GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DValueParser.java93 timeUnit = TimeUnit.values()[(rawValue[valueIndex] & 0xff)];
/frameworks/base/tests/CoreTests/android/core/
H A DHashMapTest.java185 Iterator iter = map.values().iterator();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java98 for (Density d : Density.values()) {
/frameworks/base/tools/preload/
H A DMemoryUsage.java38 // These values are in 1kB increments (not 4kB like you'd expect).
291 for (LoadedClass loadedClass : root.loadedClasses.values()) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java369 for (SupplicantState state : SupplicantState.values()) {
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java171 for (SipSessionGroupExt group : mSipGroups.values()) {
377 for (SipSessionGroupExt group : mSipGroups.values()) {
437 for (SipSessionGroupExt group : mSipGroups.values()) {
444 for (SipSessionGroupExt group : mSipGroups.values()) {
482 for (SipSessionGroupExt group : mSipGroups.values()) {
/frameworks/base/core/java/android/pim/vcard/
H A DVCardEntry.java251 // non-final is Intentional: we may change the values since this info is separated into
401 Collection<String> values;
404 values = new HashSet<String>();
406 values = new ArrayList<String>();
408 mParameterMap.put(paramName, values);
410 values = mParameterMap.get(paramName);
412 values.add(paramValue);
581 * Set "ORG" related values to the appropriate data. If there's more than one
583 * does not have valid values (not including empty but only null). If there's no
694 * Tries to extract paramMap, constructs SORT-AS parameter values, an
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_InputManager.cpp79 jfieldID values; member in struct:android::__anon714
523 jobjectArray values = jobjectArray(env->GetObjectField(result, local
524 gInputDeviceCalibrationClassInfo.values));
529 jstring valueStr = jstring(env->GetObjectArrayElement(values, i));
545 env->DeleteLocalRef(values);
1420 GET_FIELD_ID(gInputDeviceCalibrationClassInfo.values, gInputDeviceCalibrationClassInfo.clazz,
1421 "values", "[Ljava/lang/String;");
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java133 for (ServiceInfo info : services.values()) {
214 return Collections.unmodifiableCollection(mServices.values());
/frameworks/base/services/java/com/android/server/am/
H A DServiceRecord.java244 Iterator<IntentBindRecord> it = bindings.values().iterator();
256 Iterator<ArrayList<ConnectionRecord>> it = connections.values().iterator();
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java284 for (ClassReader cr : inOutKeepClasses.values()) {
300 for (ClassReader cr : temp.values()) {
480 return this; // return this to visit annotion values
622 return this; // return this to visit annotation values
/frameworks/base/tools/localize/
H A Dlocalize.cpp116 ValuesFile_to_XLIFFFile(const ValuesFile* values, XLIFFFile* xliff, const string& englishFilename) argument
118 const set<StringResource>& strings = values->GetStrings();
367 // old and current source values and are not in the reject list, or just
368 // old values and no source values
578 "Supply all of the android resource files (values files) to export after that.\n"
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java115 public boolean commitUpdates(Map<? extends Long,? extends Map<String,Object>> values) { argument
618 * that maps from String column names to new values. A NULL value means to
619 * remove an existing value, and all numeric values are in their class

Completed in 942 milliseconds

123456789