Searched defs:unit (Results 51 - 62 of 62) sorted by relevance

123

/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java182 public T getResult(long timeout, TimeUnit unit) argument
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java329 * @param unit The time unit for the timeout.
339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, argument
341 return mFuture.get(timeout, unit);
/frameworks/base/core/java/android/os/
H A DAsyncTask.java491 * @param unit The time unit for the timeout.
501 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, argument
503 return mFuture.get(timeout, unit);
/frameworks/base/core/java/android/util/
H A DTypedValue.java88 /** Complex data: bit location of unit information. */
90 /** Complex data: mask to extract unit information (after shifting by
95 /** {@link #TYPE_DIMENSION} complex unit: Value is raw pixels. */
97 /** {@link #TYPE_DIMENSION} complex unit: Value is Device Independent
100 /** {@link #TYPE_DIMENSION} complex unit: Value is a scaled pixel. */
102 /** {@link #TYPE_DIMENSION} complex unit: Value is in points. */
104 /** {@link #TYPE_DIMENSION} complex unit: Value is in inches. */
106 /** {@link #TYPE_DIMENSION} complex unit: Value is in millimeters. */
109 /** {@link #TYPE_FRACTION} complex unit: A basic fraction of the overall
112 /** {@link #TYPE_FRACTION} complex unit
320 applyDimension(int unit, float value, DisplayMetrics metrics) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java214 * Set the default text size to a given unit and value.
220 * @param unit The desired dimension unit
223 public void setTextSize(int unit, float size) { argument
224 mPrevText.setTextSize(unit, size);
225 mCurrText.setTextSize(unit, size);
226 mNextText.setTextSize(unit, size);
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1150 // for simplicity, store a reference to the format in each unit
1338 sp<ABuffer> unit = new ABuffer(aac_frame_length); local
1339 memcpy(unit->data(), adtsHeader, aac_frame_length);
1342 unit->meta()->setInt64("timeUs", unitTimeUs);
1347 unit->meta()->setInt32("seq", mSeqNumber);
1348 packetSource->queueAccessUnit(unit);
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1491 private Bundle internalGetResult(Long timeout, TimeUnit unit) argument
1500 return get(timeout, unit);
1534 public Bundle getResult(long timeout, TimeUnit unit) argument
1536 return internalGetResult(timeout, unit);
1659 private T internalGetResult(Long timeout, TimeUnit unit) argument
1668 return get(timeout, unit);
1702 public T getResult(long timeout, TimeUnit unit) argument
1704 return internalGetResult(timeout, unit);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp4154 /* void glBindSampler ( GLuint unit, GLuint sampler ) */
4157 (JNIEnv *_env, jobject _this, jint unit, jint sampler) {
4159 (GLuint)unit,
4156 android_glBindSampler__II(JNIEnv *_env, jobject _this, jint unit, jint sampler) argument
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp4005 uint32_t unit; member in struct:android::unit_entry
4043 outValue->data = cur->unit << Res_value::COMPLEX_UNIT_SHIFT;
4046 //printf("Found unit %s for %s\n", cur->name, str);
4153 // Might be a unit...
5506 default: printf(" (unknown unit)"); break;
5512 default: printf(" (unknown unit)"); break;
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java1520 // C function void glBindSampler ( GLuint unit, GLuint sampler )
1523 int unit,
1522 glBindSampler( int unit, int sampler ) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java2515 * Set the default text size to a given unit and value. See {@link
2518 * @param unit The desired dimension unit.
2523 public void setTextSize(int unit, float size) { argument
2533 unit, size, r.getDisplayMetrics()));
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp9439 void GLTrace_glBindSampler(GLuint unit, GLuint sampler) { argument
9445 // copy argument unit
9449 arg_unit->add_intvalue(unit);
9460 glContext->hooks->gl.glBindSampler(unit, sampler);

Completed in 1787 milliseconds

123