Searched refs:base (Results 1 - 25 of 160) sorted by relevance

1234567

/frameworks/base/core/java/android/content/
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/cmds/am/
H A Dam6 base=/system
7 export CLASSPATH=$base/framework/am.jar
8 exec app_process $base/bin com.android.commands.am.Am "$@"
/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/base/data/videos/
H A DVideoPackage1.mk19 LOCAL_PATH := frameworks/base/data/videos
H A DVideoPackage2.mk19 LOCAL_PATH := frameworks/base/data/videos
/frameworks/base/services/java/com/android/server/pm/
H A DGrantedPermissions.java35 GrantedPermissions(GrantedPermissions base) { argument
36 pkgFlags = base.pkgFlags;
37 grantedPermissions = (HashSet<String>) base.grantedPermissions.clone();
39 if (base.gids != null) {
40 gids = base.gids.clone();
H A DPackageSettingBase.java33 * Settings base class for pending and resolved classes.
94 PackageSettingBase(PackageSettingBase base) { argument
95 super(base);
97 name = base.name;
98 realName = base.realName;
99 codePath = base.codePath;
100 codePathString = base.codePathString;
101 resourcePath = base.resourcePath;
102 resourcePathString = base.resourcePathString;
103 nativeLibraryPathString = base
163 copyFrom(PackageSettingBase base) argument
[all...]
/frameworks/base/tools/aapt/
H A Dqsort_r_compat.h32 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
H A Dqsort_r_compat.c32 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
34 qsort_r(base, nel, width, thunk, compar);
53 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
58 qsort_r(base, nel, width, compar_wrapper, &compar_data);
81 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
87 qsort(base, nel, width, compar_wrapper);
/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)
55 $(base)/include/drm \
56 $(base)/drm/libdrmframework/plugins/common/include \
57 $(base)/drm/libdrmframework/plugins/common/util/include \
58 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/common \
59 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/converter \
60 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/decoder \
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/util/
H A DXmlUtils_Delegate.java45 int base = 10;
61 base = 16;
64 base = 8;
69 base = 16;
72 return ((int)Long.parseLong(nm.substring(index), base)) * sign;
/frameworks/base/media/jni/mediaeditor/
H A DAndroid.mk30 $(TOP)/frameworks/base/core/jni \
31 $(TOP)/frameworks/base/include \
32 $(TOP)/frameworks/base/include/media \
33 $(TOP)/frameworks/base/media/libmediaplayerservice \
34 $(TOP)/frameworks/base/media/libstagefright \
35 $(TOP)/frameworks/base/media/libstagefright/include \
36 $(TOP)/frameworks/base/media/libstagefright/rtsp \
40 $(TOP)/frameworks/base/core/jni/mediaeditor \
/frameworks/native/include/ui/
H A DANativeObjectBase.h81 static inline TYPE* getSelf(android_native_base_t* base) { argument
82 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
84 static inline TYPE const * getSelf(android_native_base_t const* base) { argument
85 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
87 static void incRef(android_native_base_t* base) { argument
88 ANativeObjectBase* self = getSelf(base);
91 static void decRef(android_native_base_t* base) { argument
92 ANativeObjectBase* self = getSelf(base);
/frameworks/native/opengl/libagl/
H A Dmipmap.cpp33 const GGLSurface* base = &tex->surface; local
34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
36 int w = base->width;
37 int h = base->height;
48 base->format, base->compressedFormat, bpr) != NO_ERROR) {
53 int bs = base->stride;
56 if (base->format == GGL_PIXEL_FORMAT_RGB_565)
58 uint16_t const * src = (uint16_t const *)base->data;
79 else if (base
[all...]
/frameworks/testing/uiautomator/cmds/uiautomator/
H A Duiautomator35 export base=/system
60 CLASSPATH=/system/framework/android.test.runner.jar:${base}/framework/uiautomator.jar
120 exec app_process ${base}/bin com.android.commands.uiautomator.Launcher ${args}
/frameworks/uiautomator/cmds/uiautomator/
H A Duiautomator35 export base=/system
60 CLASSPATH=/system/framework/android.test.runner.jar:${base}/framework/uiautomator.jar
120 exec app_process ${base}/bin com.android.commands.uiautomator.Launcher ${args}
/frameworks/compile/slang/
H A Dslang_rs_type_spec.h118 struct RSTypeBase base; member in struct:RSPrimitiveType
120 // dt is encoded in base.b[1]
124 struct RSTypeBase base; member in struct:RSPointerType
129 struct RSPrimitiveType base; // base type of vec must be in primitive type member in struct:RSVectorType
131 // vsize is encoded in base.b[2]
138 struct RSTypeBase base; member in struct:RSMatrixType
142 struct RSTypeBase base; member in struct:RSConstantArrayType
145 // esize is encoded in base.bits{8-31} in little-endian way. This implicates
155 struct RSTypeBase base; member in struct:RSRecordType
166 struct RSTypeBase base; member in union:RSType
[all...]
/frameworks/base/native/android/
H A DAndroid.mk34 frameworks/base/native/include \
35 frameworks/base/core/jni/android
/frameworks/base/native/graphics/jni/
H A DAndroid.mk27 frameworks/base/native/include \
28 frameworks/base/core/jni/android/graphics
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp138 void const* base = 0; local
145 base = screenshot.getPixels();
167 base = (void const *)((char const *)mapbase + offset);
175 if (base) {
179 b.setPixels((void*)base);
192 write(fd, base, w*Bpp);
193 base = (void *)((char *)base + s*Bpp);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DNullFilter.java18 package android.filterpacks.base;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameSlotTarget.java17 package androidx.media.filterpacks.base;
/frameworks/base/telephony/java/android/telephony/
H A DJapanesePhoneNumberFormatter.java186 int base = 0;
193 short value = FORMAT_MAP[base + ch - '0'];
209 base = value;
/frameworks/base/media/mca/filterpacks/
H A DAndroid.mk19 # base
26 LOCAL_SRC_FILES := native/base/geometry.cpp \
27 native/base/time_util.cpp
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp157 Address base = NULL;
160 base = static_cast<RegionFragment*>(m_pFragment)->getRegion().getBuffer();
167 return base + m_Offset;
174 ConstAddress base = NULL;
177 base = static_cast<const RegionFragment*>(m_pFragment)->getRegion().getBuffer();
184 return base + m_Offset;

Completed in 536 milliseconds

1234567