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

<<21222324252627282930>>

  /frameworks/base/core/java/android/os/
AsyncTask.java 103 * of progress. These values are published on the UI thread, in the
271 * The specified values are the values passed to {@link #publishProgress}.
273 * @param values The values indicating progress.
279 protected void onProgressUpdate(Progress... values) {
405 * @param values The progress values to update the UI with.
410 protected final void publishProgress(Progress... values) {
412 new AsyncTaskResult<Progress>(this, values)).sendToTarget()
    [all...]
RemoteCallbackList.java 162 for (Callback cb : mCallbacks.values()) {
242 for (Callback cb : mCallbacks.values()) {
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 64 insertAt(int row, E[] values)
74 if (values == null)
79 setValue(row, i, values[i]);
  /libcore/luni/src/main/java/java/util/
SimpleTimeZone.java 137 * indicates the last Sunday. However, by using negative or zero values for
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 147 ContentValues values = new ContentValues(); local
151 values.put(Browser.BookmarkColumns.TITLE, title);
156 values.put(Browser.BookmarkColumns.URL, url);
160 values.put(Browser.BookmarkColumns.THUMBNAIL, new byte[0]);
162 if (values.size() > 0
163 && mContentResolver.update(Browser.BOOKMARKS_URI, values,
230 ContentValues values = new ContentValues(); local
231 values.put(Browser.BookmarkColumns.BOOKMARK, 0);
232 mContentResolver.update(Browser.BOOKMARKS_URI, values,
265 ContentValues values = new ContentValues() local
274 values, null, null); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 62 ContentValues values = new ContentValues(); local
63 values.put(ImageColumns.ORIENTATION, mRotation);
64 mContentResolver.update(mUri, values, null, null);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
SizeLimitActivity.java 131 ContentValues values = new ContentValues(); local
132 values.put(Downloads.Impl.COLUMN_BYPASS_RECOMMENDED_SIZE_LIMIT, true);
133 getContentResolver().update(mCurrentUri, values , null, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
MultiResourceFile.java 43 * This is typically an XML file inside res/values.
83 Collection<ResourceValue> values = list.values(); local
84 for (ResourceValue res : values) {
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 431 Map<String, Object> values = rowEntry.getValue(); local
434 if (rowIdObj == null || values == null) {
435 throw new IllegalStateException("null rowId or values found! rowId = "
436 + rowIdObj + ", values = " + values);
439 if (values.size() == 0) {
446 values.entrySet().iterator();
452 Object[] bindings = new Object[values.size()];
572 * Changes the selection arguments. The new values take effect after a call to requery().
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
ManifestData.java 159 * To get an instance with all the actual values, use {@link #resolveSupportsScreensValues(int)}
177 String[] values = value.split("\\|"); local
179 mAnyDensity = Boolean.valueOf(values[0]);
180 mResizeable = Boolean.valueOf(values[1]);
181 mSmallScreens = Boolean.valueOf(values[2]);
182 mNormalScreens = Boolean.valueOf(values[3]);
183 mLargeScreens = Boolean.valueOf(values[4]);
187 * Returns an instance of {@link SupportsScreens} initialized with the default values
205 * Returns a version of the receiver for which all values have been set, even if they
208 * on default values
    [all...]
  /build/core/
node_fns.mk 149 define _expand-inherited-values
203 $(call _expand-inherited-values,$(1),$(2),$(3))
  /cts/libs/vogar-expect/src/vogar/
AnnotatedOutcome.java 75 for (Outcome previousOutcome : previousOutcomes.values()) {
117 return new ArrayList<Outcome>(previousOutcomes.values());
  /cts/tests/tests/database/src/android/database/cts/
MatrixCursorTest.java 117 fail("Should throw CursorIndexOutOfBoundsException when adding too many values");
158 fail("Should throw IllegalArgumentException if values does not have the same length "
166 fail("Should throw IllegalArgumentException if values does not have the same length "
172 ArrayList<String> values = new ArrayList<String>(); local
173 values.add("value0");
174 values.add("value1");
176 mMatrixCursor.addRow(values);
177 fail("Should throw IllegalArgumentException if values does not have the same length "
183 values.add("value2");
184 mMatrixCursor.addRow(values);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 54 return strings.values();
205 for (StringIdItem s : strings.values()) {
  /development/testrunner/
coverage_targets.py 46 return iter(self._target_map.values())
84 return self._target_map.values()
  /external/bluetooth/glib/gobject/
genums.h 123 * Checks whether the given #GValue can hold values derived from type %G_TYPE_ENUM.
132 * Checks whether the given #GValue can hold values derived from type %G_TYPE_FLAGS.
139 /* --- enum/flag values & classes --- */
150 * @n_values: the number of possible values.
151 * @values: an array of #GEnumValue structs describing the
152 * individual values.
155 * possible values.
165 GEnumValue *values; member in struct:_GEnumClass
170 * @mask: a mask covering all possible values.
171 * @n_values: the number of possible values
185 GFlagsValue *values; member in struct:_GFlagsClass
    [all...]
  /external/proguard/examples/
library.pro 54 public static **[] values();
  /external/skia/include/views/
SkMetaData.h 34 const SkScalar* findScalars(const char name[], int* count, SkScalar values[] = NULL) const;
68 SkScalar* setScalars(const char name[], int count, const SkScalar values[] = NULL);
107 element's type is returned (if not null), and the number of data values
  /external/v8/test/mjsunit/
debug-evaluate-arguments.js 35 function checkArguments(frame, names, values) {
36 var argc = Math.max(names.length, values.length);
45 if (i < values.length) {
46 assertEquals(values[i], frame.argumentValue(i).value());
function-prototype.js 28 // Test that we can set function prototypes to non-object values. The
39 var values = [123, "asdf", true]; variable
41 values.forEach(TestNonObjectPrototype);
44 // Test moving between non-object and object values.
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.h 261 void vertexAttrib1fv(unsigned long indx, WebGLFloatArray* values);
262 void vertexAttrib1fv(unsigned long indx, float* values, int size);
264 void vertexAttrib2fv(unsigned long indx, WebGLFloatArray* values);
265 void vertexAttrib2fv(unsigned long indx, float* values, int size);
267 void vertexAttrib3fv(unsigned long indx, WebGLFloatArray* values);
268 void vertexAttrib3fv(unsigned long indx, float* values, int size);
270 void vertexAttrib4fv(unsigned long indx, WebGLFloatArray* values);
271 void vertexAttrib4fv(unsigned long indx, float* values, int size);
319 // List of bound VBO's. Used to maintain info about sizes for ARRAY_BUFFER and stored values for ELEMENT_ARRAY_BUFFER
323 // Cached values for vertex attrib range check
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 85 attributeValues:(NSArray *)values
96 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values;
  /external/webkit/WebKit/win/Interfaces/
IWebFormDelegate.idl 95 //- (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener;
96 HRESULT willSubmitForm([in] IWebFrame* frame, [in] IWebFrame* sourceFrame, [in] IDOMElement* form, [in] IPropertyBag* values, [in] IWebFormSubmissionListener* listener);
  /frameworks/base/core/jni/android/graphics/
MaskFilter.cpp 31 float* values = autoDir.ptr(); local
33 direction[i] = SkFloatToScalar(values[i]);
PathEffect.cpp 32 float* values = autoInterval.ptr(); local
37 intervals[i] = SkFloatToScalar(values[i]);

Completed in 1861 milliseconds

<<21222324252627282930>>