Searched defs:base (Results 1 - 25 of 61) sorted by path

123

/frameworks/av/drm/libdrmframework/plugins/common/util/
H A DAndroid.mk25 base := frameworks/av macro
28 $(base)/include \
29 $(base)/include/drm \
30 $(base)/include/drm/plugins \
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/
H A DAndroid.mk23 base := frameworks/av macro
26 ifneq ($(shell grep -c 'off64_t offset' $(base)/drm/libdrmframework/plugins/common/include/IDrmEngine.h), 0)
54 $(base)/include/drm \
55 $(base)/drm/libdrmframework/plugins/common/include \
56 $(base)/drm/libdrmframework/plugins/common/util/include \
57 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/common \
58 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/converter \
59 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/decoder \
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h37 uint8_t *base() { return (uint8_t *)mData; } function in struct:android::ABuffer
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_CharStar.c129 * representation in base provided by the parameter base. pStrOut is
141 * @param base: (IN) Base of the character string representation.
154 M4OSA_chrNumBase base)
160 "M4OSA_Char** %x,M4OSA_chrNumBase %d)",pStrIn,pVal,pStrOut,base);
167 switch(base)
222 * representation in base provided by the parameter base. pStrOut is
234 * @param base: (IN) Base of the character string representation.
245 M4OSA_Char** pStrOut, M4OSA_chrNumBase base)
151 M4OSA_chrGetUInt32(M4OSA_Char* pStrIn, M4OSA_UInt32* pVal, M4OSA_Char** pStrOut, M4OSA_chrNumBase base) argument
244 M4OSA_chrGetUInt16(M4OSA_Char* pStrIn, M4OSA_UInt16 *pVal, M4OSA_Char** pStrOut, M4OSA_chrNumBase base) argument
[all...]
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp137 void const* base = 0; local
144 base = screenshot.getPixels();
164 base = (void const *)((char const *)mapbase + offset);
172 if (base) {
176 b.setPixels((void*)base);
187 write(fd, base, size);
/frameworks/base/cmds/screenshot/
H A Dscreenshot.c134 char base[PATH_MAX] = ""; local
137 if (!base[0]) {
140 strcpy(base, outfile);
142 snprintf(outfile, PATH_MAX, "%s-%d.png", base, ++i);
/frameworks/base/cmds/system_server/library/
H A DAndroid.mk7 base = $(LOCAL_PATH)/../../.. macro
/frameworks/base/core/java/android/app/
H A DContextImpl.java124 ReceiverRestrictedContext(Context base) { argument
125 super(base);
167 * Common implementation of Context API, which provides the base
1962 private File makeFilename(File base, String name) { argument
1964 return new File(base, name);
H A DDownloadManager.java511 private void setDestinationFromBase(File base, String subPath) { argument
515 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);
/frameworks/base/core/java/android/content/
H A DContextWrapper.java56 public ContextWrapper(Context base) { argument
57 mBase = base;
61 * Set the base context for this ContextWrapper. All calls will then be
62 * delegated to the base context. Throws
63 * IllegalStateException if a base context has already been set.
65 * @param base The new base context for this wrapper.
67 protected void attachBaseContext(Context base) { argument
71 mBase = base;
75 * @return the base contex
[all...]
H A DMutableContextWrapper.java20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) { argument
25 super(base);
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) { argument
36 mBase = base;
[all...]
/frameworks/base/core/java/android/content/res/
H A DResources.java537 * truncating the base value to an integer.
570 * rounding the base value, and ensuring that a non-zero base value
605 * @param base The base value of this fraction. In other words, a
607 * @param pbase The parent base value of this fraction. In other
612 * base value.
616 public float getFraction(int id, int base, int pbase) { argument
621 return TypedValue.complexToFraction(value.data, base, pbase);
1210 * that style will be applied on top of the base attribute
[all...]
H A DTypedArray.java407 * truncating the base value to an integer.
439 * rounding the base value, and ensuring that a non-zero base value
527 * @param base The base value of this fraction. In other words, a
529 * @param pbase The parent base value of this fraction. In other
536 * base value, or defValue if not defined.
538 public float getFraction(int index, int base, int pbase, float defValue) { argument
546 data[index+AssetManager.STYLE_DATA], base, pbase);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java883 static int getDimensionOrFraction(TypedArray a, int index, int base, int defValue) { argument
890 return Math.round(a.getFraction(index, base, base, defValue));
/frameworks/base/core/java/android/os/
H A DEnvironment.java639 private static File buildPath(File base, String... segments) { argument
640 File cur = base;
H A DStrictMode.java585 public Builder(VmPolicy base) { argument
586 mMask = base.mask;
588 mClassInstanceLimit = base.classInstanceLimit;
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java44 public DynamicLayout(CharSequence base, argument
49 this(base, base, paint, width, align, spacingmult, spacingadd,
56 * that will be updated as the base text is changed.
58 public DynamicLayout(CharSequence base, CharSequence display, argument
63 this(base, display, paint, width, align, spacingmult, spacingadd,
70 * that will be updated as the base text is changed.
74 public DynamicLayout(CharSequence base, CharSequence display, argument
80 this(base, display, paint, width, align, TextDirectionHeuristics.FIRSTSTRONG_LTR,
87 * that will be updated as the base tex
93 DynamicLayout(CharSequence base, CharSequence display, TextPaint paint, int width, Alignment align, TextDirectionHeuristic textDir, float spacingmult, float spacingadd, boolean includepad, TextUtils.TruncateAt ellipsize, int ellipsizedWidth) argument
[all...]
/frameworks/base/core/java/android/util/
H A DTypedValue.java197 * Retrieve the base value from a complex data integer. This uses the
265 * conversion involves rounding the base value, and ensuring that a
266 * non-zero base value is at least one pixel in size.
362 * @param base The base value of this fraction. In other words, a
364 * @param pbase The parent base value of this fraction. In other
369 * base value depending on its unit.
371 public static float complexToFraction(int data, float base, float pbase) argument
375 return complexToFloat(data) * base;
386 * @param base Th
395 getFraction(float base, float pbase) argument
[all...]
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java41 public ContextThemeWrapper(Context base, int themeres) { argument
42 super(base);
43 mBase = base;
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java5249 private static Point calculateCaretTop(Point base, QuadF quad) { argument
5250 float scale = scaleAlongSegment(base.x, base.y, quad.p4, quad.p3);
5601 // However, do not update the base layer as that hasn't changed
/frameworks/base/core/java/android/widget/
H A DChronometer.java41 * and it counts up from that, or if you don't give it a base time, it will use the
81 * Sets the base to the current time.
89 * Sets the base to the current time.
97 * Sets the base to the current time.
119 * @param base Use the {@link SystemClock#elapsedRealtime} time base.
122 public void setBase(long base) { argument
123 mBase = base;
129 * Return the base time as set through {@link #setBase}.
179 * Start counting up. This does not affect the base a
[all...]
H A DRemoteViews.java1846 * @param base The time at which the timer would have read 0:00. This
1853 public void setChronometer(int viewId, long base, String format, boolean started) { argument
1854 setLong(viewId, "setBase", base);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp131 jint* base = (jint *)_env->GetPrimitiveArrayCritical(major_minor, (jboolean *)0); local
132 if (len >= 1) base[0] = 1;
133 if (len >= 2) base[1] = 0;
134 _env->ReleasePrimitiveArrayCritical(major_minor, base, JNI_ABORT);
152 jint* base = (jint *)_env->GetPrimitiveArrayCritical(value, (jboolean *)0); local
153 success = eglQueryContext(dpy, ctx, attribute, base);
154 _env->ReleasePrimitiveArrayCritical(value, base, JNI_ABORT);
172 jint* base = (jint *)_env->GetPrimitiveArrayCritical(value, (jboolean *)0); local
173 success = eglQuerySurface(dpy, sur, attribute, base);
174 _env->ReleasePrimitiveArrayCritical(value, base, JNI_ABOR
234 jint* base = beginNativeAttribList(_env, attrib_list); local
249 jint* base = beginNativeAttribList(_env, attrib_list); local
277 jint* base = 0; local
[all...]
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp163 sp<KeyCharacterMap> KeyCharacterMap::combine(const sp<KeyCharacterMap>& base, argument
166 return base;
168 if (base == NULL) {
172 sp<KeyCharacterMap> map = new KeyCharacterMap(*base.get());
272 // For example, the base key behavior will usually be last in the list.
426 // For example, the base key behavior will usually be last in the list.
1050 if (token == "base") {
H A DResourceTypes.cpp4954 const uint8_t* base = (const uint8_t*)pkg; local
5010 err = package->typeStrings.setTo(base+dtohl(pkg->typeStrings),
5011 header->dataEnd-(base+dtohl(pkg->typeStrings)));
5017 err = package->keyStrings.setTo(base+dtohl(pkg->keyStrings),
5018 header->dataEnd-(base+dtohl(pkg->keyStrings)));
5074 (void*)(base-(const uint8_t*)chunk),
5121 (void*)(base-(const uint8_t*)chunk),

Completed in 1099 milliseconds

123