Searched refs:val (Results 101 - 125 of 179) sorted by relevance

12345678

/frameworks/base/location/java/android/location/
H A DLocation.java241 double val;
243 val = Double.parseDouble(degrees);
244 return negative ? -val : val;
276 val = deg*3600.0 + min*60.0 + sec;
277 val /= 3600.0;
278 return negative ? -val : val;
/frameworks/base/tools/aapt/
H A DStringPool.h131 ssize_t offsetForString(const String16& val) const;
139 const Vector<size_t>* offsetsForString(const String16& val) const;
/frameworks/native/include/utils/
H A DTextOutput.h92 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
121 TextOutput& operator<<(TextOutput& to, const HexDump& val);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp153 jint val = colorFormats.itemAt(i); local
154 env->SetIntArrayRegion(colorFormatsArray, i, 1, &val);
/frameworks/base/core/java/android/net/http/
H A DSslCertificate.java372 Vector val = x509Name.getValues();
377 mCName = (String) val.elementAt(i);
382 mOName = (String) val.elementAt(i);
387 mUName = (String) val.elementAt(i);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java218 String val = pair[1].trim();
221 tag = normalizeValue(val);
223 number = normalizeValue(val);
228 pin2 = normalizeValue(val);
H A DWspTypeDecoder.java645 byte val = wspData[index];
646 if (0 <= val && val <= WAP_PDU_SHORT_LENGTH_MAX) {
648 } else if (val == WAP_PDU_LENGTH_QUOTE) {
653 } else if (WAP_PDU_LENGTH_QUOTE < val && val <= 127) {
/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp107 int32_t val; local
108 if (params && params->findInt32(kKeyWantsNALFragments, &val)
109 && val != 0) {
H A DFragmentedMP4Extractor.cpp214 int32_t val; local
215 if (params && params->findInt32(kKeyWantsNALFragments, &val)
216 && val != 0) {
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dc2t64fx.c58 Word16 alp, val, exp, k_cn, k_dn; local
116 val = dn[i];
126 dn[i] = -val;
H A Dc4t64fx.c137 Word16 psk, ps, alpk, alp, val, k_cn, k_dn, exp; local
283 val = dn[i];
293 dn[i] = -val;
348 val = extract_h(L_tmp);
351 if ((nb_pulse >= 12) && (val > 1024))
720 val = (512 >> h_shift); /* codeword in Q9 format */
730 code[i] += val;
734 code[i] -= val;
/frameworks/base/core/java/android/util/
H A DLongSparseArray.java131 Object val = values[i];
133 if (val != DELETED) {
136 values[o] = val;
H A DSparseArray.java131 Object val = values[i];
133 if (val != DELETED) {
136 values[o] = val;
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java225 static protected int next(int x, int val, boolean isRtl) { argument
226 return isRtl ? x - val : x + val;
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java194 Object val = mLocation.getExtras().get(key);
195 if (val != null) {
196 debugBuilder.append(String.format("%s=%s; ", key, val
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp235 uint32_t val; member in struct:IntFieldHelper
243 android_compiler_version_ = tempIntField.val;
249 android_optimization_level_ = tempIntField.val;
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java129 Object val = values[i];
131 if (val != DELETED) {
134 values[o] = val;
H A DSparseArrayCompat.java122 Object val = values[i];
124 if (val != DELETED) {
127 values[o] = val;
/frameworks/base/media/java/android/media/
H A DExifInterface.java260 String val = iter.getValue();
262 sb.append(val.length() + " ");
263 sb.append(val);
/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/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp71 AString val; local
72 if (!GetAttribute(s, key, &val)) {
76 s = val.c_str();
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp112 HashTableTy::entry_type* val = hashTable->insert(key, exist); local
113 val->setValue(999);
116 EXPECT_FALSE(NULL == val);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp98 char val[PROPERTY_VALUE_MAX]; local
99 if (property_get(propName, val, NULL)) {
101 unsigned long x = strtoul(val, &end, 10);
103 if (*end == '\0' && end > val && x > 0) {
/frameworks/native/libs/utils/
H A DRefBase.cpp615 TextOutput& printStrongPointer(TextOutput& to, const void* val) argument
617 to << "sp<>(" << val << ")"; local
621 TextOutput& printWeakPointer(TextOutput& to, const void* val) argument
623 to << "wp<>(" << val << ")"; local
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java704 for (Long val: dtSet) {
705 setTimeFromLongValue(mIterator, val);
1306 private static final void setTimeFromLongValue(Time date, long val) { argument
1307 date.year = (int) (val >> 26);
1308 date.month = (int) (val >> 22) & 0xf;
1309 date.monthDay = (int) (val >> 17) & 0x1f;
1310 date.hour = (int) (val >> 12) & 0x1f;
1311 date.minute = (int) (val >> 6) & 0x3f;
1312 date.second = (int) (val & 0x3f);

Completed in 282 milliseconds

12345678