HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 651 - 675 of 1600) sorted by null

<<21222324252627282930>>

  /frameworks/av/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp 71 AString val; local
72 if (!GetAttribute(s, key, &val)) {
76 s = val.c_str();
APacketSource.cpp 112 AString val; local
114 if (GetAttribute(params, "profile-level-id", &val)) {
115 profileLevelID = decodeHex(val);
126 if (!GetAttribute(params, "sprop-parameter-sets", &val)) {
132 ssize_t commaPos = val.find(",", start);
133 size_t end = (commaPos < 0) ? val.size() : commaPos;
135 AString nalString(val, start, end - start);
224 AString val; local
225 CHECK(GetAttribute(params, "config", &val));
227 sp<ABuffer> config = decodeHex(val);
262 AString val; local
369 AString val; local
543 AString val; local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 141 char val[PROPERTY_VALUE_MAX]; local
142 if (property_get(propName, val, NULL)) {
144 unsigned long x = strtoul(val, &end, 10);
146 if (*end == '\0' && end > val && x > 0) {
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 113 byte[] val = this.getValue(key);
114 return val != null ? new String(val) : null;
271 String val = this.getValueAsString(i); local
272 if (val != null)
273 av += "=" + val + "}";
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 138 String val = sRecs.valueAt(rec); local
140 int ix = val.indexOf(ch);
143 ix = (ix + 1) % (val.length());
145 content.replace(selStart, selEnd, val, ix, ix + 1);
173 String val = sRecs.valueAt(rec); local
178 for (int i = 0; i < val.length(); i++) {
179 if (Character.isUpperCase(val.charAt(i))) {
193 content.replace(selStart, selEnd, val, off, off + 1);
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 75 int val = mCounter.get(); local
77 previous = val - i;
79 assertTrue(previous == (val - i));
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteCursorTest.java 101 int val = c.getInt(0); local
102 assertTrue(rows.contains(val));
103 assertTrue(rows.remove(val));
126 int val = c.getInt(0); local
127 assertTrue(rows.contains(val));
128 assertTrue(rows.remove(val));
  /frameworks/base/media/jni/
android_media_Utils.cpp 177 int32_t val; local
178 CHECK(msg->findInt32(key, &val));
180 valueObj = makeIntegerObject(env, val);
186 int64_t val; local
187 CHECK(msg->findInt64(key, &val));
189 valueObj = makeLongObject(env, val);
195 float val; local
196 CHECK(msg->findFloat(key, &val));
198 valueObj = makeFloatObject(env, val);
204 AString val; local
    [all...]
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 58 float val = 0; typedefs
61 gLinePts[index + 1] = val;
63 gLinePts[index + 3] = val;
65 val += 8 + (2.0f/NUM_PARALLEL_LINES);
67 val = 0;
69 gLinePts[index + 0] = val;
71 gLinePts[index + 2] = val;
74 val += 8 + (2.0f/NUM_PARALLEL_LINES);
  /frameworks/base/tools/aapt/
XMLNode.cpp 466 const char16_t* val = block->getAttributeStringValue(i, &len); local
467 if (val != NULL) {
468 printf(" (Raw: \"%s\")", ResTable::normalizeForOutput(String8(val).string()).
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 128 WeakReference<?> val = values[i]; local
132 if (val != DELETED && val.get() != null) {
135 values[o] = val;
  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 235 uint32_t val; member in struct:IntFieldHelper
243 android_compiler_version_ = tempIntField.val;
249 android_optimization_level_ = tempIntField.val;
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 467 const clang::APValue &val = EV->getInit(); local
469 write(string(" return ") + genInitValue(val, isBool) + ";");
501 const clang::APValue &val = EV->getInit(); local
503 write(string(" return ") + genInitValue(val, isBool) + ";");
  /frameworks/native/cmds/rawbu/
backup.cpp 174 static int write_int32(FILE* fh, int32_t val)
176 int res = fwrite(&val, 1, sizeof(val), fh);
177 if (res != sizeof(val)) {
185 static int write_int64(FILE* fh, int64_t val)
187 int res = fwrite(&val, 1, sizeof(val), fh);
188 if (res != sizeof(val)) {
418 int32_t val; local
419 if (fread(&val, 1, sizeof(val), fh) != sizeof(val))
429 int64_t val; local
    [all...]
  /frameworks/native/include/utils/
List.h 50 explicit _Node(const T& val) : mVal(val) {}
56 inline void setVal(const T& val) { mVal = val; }
207 void push_front(const T& val) { insert(begin(), val); } local
208 void push_back(const T& val) { insert(end(), val); } local
211 iterator insert(iterator posn, const T& val)
213 _Node* newNode = new _Node(val); // alloc & copy-construc
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
CdmaSmsAddress.java 122 int val = 0; local
123 if ((c >= '1') && (c <= '9')) val = c - '0';
124 else if (c == '0') val = 10;
125 else if (c == '*') val = 11;
126 else if (c == '#') val = 12;
128 result[i] = (byte)val;
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 129 Object val = values[i]; local
131 if (val != DELETED) {
134 values[o] = val;
SparseArrayCompat.java 122 Object val = values[i]; local
124 if (val != DELETED) {
127 values[o] = val;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 282 int val = 0; local
290 if ((ret = wl_get(wl, WLC_GET_MAGIC, &val, sizeof(int))) < 0)
292 if (val != WLC_IOCTL_MAGIC)
294 if ((ret = wl_get(wl, WLC_GET_VERSION, &val, sizeof(int))) < 0)
296 if (val > WLC_IOCTL_VERSION) {
  /hardware/invensense/libsensors_iio/software/simple_apps/mpu_iio/
mpu_iio.c 68 int16_t val = input; local
69 val &= (1 << info->bits_used) - 1;
70 val = (int16_t)(val << (16 - info->bits_used)) >>
72 /*printf("%d, %05f, scale=%05f", val,
73 (float)(val + info->offset)*info->scale, info->scale);*/
74 printf("%d, ", val);
77 uint16_t val = input; local
78 val &= (1 << info->bits_used) - 1;
79 printf("%05f ", ((float)val + info->offset)*info->scale)
106 int32_t val = *(int32_t *) local
118 int64_t val = *(int64_t *) local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/mfd/
msm-adie-codec.h 39 #define ADIE_CODEC_PACK_ENTRY(reg, mask, val) ((val)|(mask << 8)|(reg << 16))
40 #define ADIE_CODEC_UNPACK_ENTRY(packed, reg, mask, val) do { ((reg) = ((packed >> 16) & (0xff))); ((mask) = ((packed >> 8) & (0xff))); ((val) = ((packed) & (0xff))); } while (0);
64 u8 val; member in struct:adie_codec_register
  /hardware/qcom/msm8960/original-kernel-headers/linux/mfd/
msm-adie-codec.h 51 #define ADIE_CODEC_PACK_ENTRY(reg, mask, val) ((val)|(mask << 8)|(reg << 16))
53 #define ADIE_CODEC_UNPACK_ENTRY(packed, reg, mask, val) \
57 ((val) = ((packed) & (0xff))); \
84 u8 val; member in struct:adie_codec_register
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 342 char *val = getenv("SET_DCC"); local
343 dcc_flag = val ? strtol(val, NULL, 0) : DEFAULT_DCC;
344 DOMX_DEBUG(" DCC: 0 - disabled 1 - enabled : val: %d", dcc_flag);
  /libcore/luni/src/main/java/java/math/
Conversion.java 53 static String bigInteger2String(BigInteger val, int radix) {
54 val.prepareJavaRepresentation();
55 int sign = val.sign;
56 int numberLength = val.numberLength;
57 int[] digits = val.digits;
72 return val.toString();
76 int resLengthInChars = (int) (val.abs().bitLength() / bitsForRadixDigit + ((sign < 0) ? 1
131 * Builds the correspondent {@code String} representation of {@code val}
137 static String toDecimalScaledString(BigInteger val, int scale) {
138 val.prepareJavaRepresentation()
    [all...]
  /libcore/luni/src/main/java/java/security/
Security.java 285 String val = entry.getValue(); local
293 if (val.length() != 0) {
297 if (val.length() == 0) {
318 if (!p.implementsAlg(serv, alg, attribute, val)) {

Completed in 333 milliseconds

<<21222324252627282930>>