Searched defs:val (Results 101 - 111 of 111) sorted by relevance

12345

/frameworks/base/tools/aapt/
H A DBundle.h80 void setVerbose(bool val) { mVerbose = val; } argument
82 void setAndroidList(bool val) { mAndroidList = val; } argument
84 void setForce(bool val) { mForce = val; } argument
85 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; } argument
88 void setMakePackageDirs(bool val) { mMakePackageDirs = val; } argument
90 setUpdate(bool val) argument
92 setExtending(bool val) argument
94 setRequireLocalization(bool val) argument
96 setPseudolocalize(bool val) argument
97 setWantUTF16(bool val) argument
99 setValues(bool val) argument
101 setCompressionMethod(int val) argument
103 setJunkPath(bool val) argument
105 setOutputAPKFile(const char* val) argument
107 setManifestPackageNameOverride(const char * val) argument
109 setInstrumentationPackageNameOverride(const char * val) argument
111 setAutoAddOverlay(bool val) argument
113 setGenDependencies(bool val) argument
115 setErrorOnFailedInsert(bool val) argument
139 addConfigurations(const char* val) argument
141 addPreferredConfigurations(const char* val) argument
152 setManifestMinSdkVersion(const char* val) argument
154 setMinSdkVersion(const char* val) argument
156 setTargetSdkVersion(const char* val) argument
158 setMaxSdkVersion(const char* val) argument
160 setVersionCode(const char* val) argument
162 setVersionName(const char* val) argument
164 setCustomPackage(const char* val) argument
166 setExtraPackages(const char* val) argument
168 setMaxResVersion(const char * val) argument
170 setDebugMode(bool val) argument
172 setNonConstantId(bool val) argument
174 setProduct(const char * val) argument
175 setUseCrunchCache(bool val) argument
178 setOutputTextSymbols(const char* val) argument
[all...]
H A DResourceTable.cpp351 String16 val = String16(block.getAttributeStringValue(minIdx, &len)); local
352 if (!ResTable::stringToInt(val.string(), val.size(), NULL)) {
354 String8(val).string());
360 String16(""), String16("^min"), String16(val), NULL, NULL);
369 String16 val = String16(block.getAttributeStringValue(maxIdx, &len)); local
370 if (!ResTable::stringToInt(val.string(), val.size(), NULL)) {
372 String8(val).string());
378 String16(""), String16("^max"), String16(val), NUL
2319 Res_value val; local
[all...]
/frameworks/native/libs/binder/
H A DParcel.cpp615 status_t Parcel::writeInt32(int32_t val) argument
617 return writeAligned(val);
620 status_t Parcel::writeInt64(int64_t val) argument
622 return writeAligned(val);
625 status_t Parcel::writeFloat(float val) argument
627 return writeAligned(val);
630 status_t Parcel::writeDouble(double val) argument
632 return writeAligned(val);
635 status_t Parcel::writeIntPtr(intptr_t val) argument
637 return writeAligned(val);
680 writeStrongBinder(const sp<IBinder>& val) argument
685 writeWeakBinder(const wp<IBinder>& val) argument
784 write(const Flattenable& val) argument
820 writeObject(const flat_binder_object& val, bool nullMetaData) argument
918 writeAligned(T val) argument
1042 sp<IBinder> val; local
1043 unflatten_binder(ProcessState::self(), *this, &val); local
1049 wp<IBinder> val; local
1050 unflatten_binder(ProcessState::self(), *this, &val); local
[all...]
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp613 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
615 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
616 rsScriptSetVarI(con, (RsScript)script, slot, val);
620 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
622 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
623 rsScriptSetVarObj(con, (RsScript)script, slot, (RsObjectBase)val);
627 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val) argument
629 LOG_API("nScriptSetVarJ, con(%p), s(%p), slot(%i), val(
634 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val) argument
641 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val) argument
[all...]
/frameworks/base/services/java/com/android/server/power/
H A DPowerManagerService.java1895 * @param val an {@code int} containing the bits that specify which power sources
1899 public void setStayOnSetting(int val) { argument
1904 setStayOnSettingInternal(val);
1910 private void setStayOnSettingInternal(int val) { argument
1912 Settings.Global.STAY_ON_WHILE_PLUGGED_IN, val);
/frameworks/native/opengl/libagl/
H A Degl.cpp1128 static int isAttributeMatching(int i, EGLint attr, EGLint val) argument
1151 val, configFound[index].value);
1484 EGLint val = *attrib_list++; local
1488 if (isAttributeMatching(i, attr, val) == 0) {
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java377 native void rsnScriptSetVarI(int con, int id, int slot, int val); argument
378 synchronized void nScriptSetVarI(int id, int slot, int val) { argument
380 rsnScriptSetVarI(mContext, id, slot, val);
382 native void rsnScriptSetVarJ(int con, int id, int slot, long val); argument
383 synchronized void nScriptSetVarJ(int id, int slot, long val) { argument
385 rsnScriptSetVarJ(mContext, id, slot, val);
387 native void rsnScriptSetVarF(int con, int id, int slot, float val); argument
388 synchronized void nScriptSetVarF(int id, int slot, float val) { argument
390 rsnScriptSetVarF(mContext, id, slot, val);
392 native void rsnScriptSetVarD(int con, int id, int slot, double val); argument
393 nScriptSetVarD(int id, int slot, double val) argument
397 rsnScriptSetVarV(int con, int id, int slot, byte[] val) argument
398 nScriptSetVarV(int id, int slot, byte[] val) argument
402 rsnScriptSetVarVE(int con, int id, int slot, byte[] val, int e, int[] dims) argument
404 nScriptSetVarVE(int id, int slot, byte[] val, int e, int[] dims) argument
409 rsnScriptSetVarObj(int con, int id, int slot, int val) argument
410 nScriptSetVarObj(int id, int slot, int val) argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java519 native void rsnScriptSetVarI(int con, int id, int slot, int val); argument
520 synchronized void nScriptSetVarI(int id, int slot, int val) { argument
522 rsnScriptSetVarI(mContext, id, slot, val);
524 native void rsnScriptSetVarJ(int con, int id, int slot, long val); argument
525 synchronized void nScriptSetVarJ(int id, int slot, long val) { argument
527 rsnScriptSetVarJ(mContext, id, slot, val);
529 native void rsnScriptSetVarF(int con, int id, int slot, float val); argument
530 synchronized void nScriptSetVarF(int id, int slot, float val) { argument
532 rsnScriptSetVarF(mContext, id, slot, val);
534 native void rsnScriptSetVarD(int con, int id, int slot, double val); argument
535 nScriptSetVarD(int id, int slot, double val) argument
539 rsnScriptSetVarV(int con, int id, int slot, byte[] val) argument
540 nScriptSetVarV(int id, int slot, byte[] val) argument
544 rsnScriptSetVarVE(int con, int id, int slot, byte[] val, int e, int[] dims) argument
546 nScriptSetVarVE(int id, int slot, byte[] val, int e, int[] dims) argument
551 rsnScriptSetVarObj(int con, int id, int slot, int val) argument
552 nScriptSetVarObj(int id, int slot, int val) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp912 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
914 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
915 rsScriptSetVarI(con, (RsScript)script, slot, val);
919 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
921 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
922 rsScriptSetVarObj(con, (RsScript)script, slot, (RsObjectBase)val);
926 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val) argument
928 LOG_API("nScriptSetVarJ, con(%p), s(%p), slot(%i), val(
933 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val) argument
940 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3912 int32_t val = 0; local
3931 val = (val*16) + get_hex(s[i], &error);
3944 val = (val*10) + s[i]-'0';
3949 if (neg) val = -val;
3957 outValue->data = val;
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java9980 private static String buildOomTag(String prefix, String space, int val, int base) { argument
9981 if (val == base) {
9985 return prefix + "+" + Integer.toString(val-base);

Completed in 247 milliseconds

12345