/development/simulator/app/ |
PropertyServer.h | 37 bool SetProperty(const char* key, const char* value); 46 char value[PROPERTY_VALUE_MAX]; member in struct:PropertyServer::Property
|
/device/samsung/crespo/libaudio2/ |
AudioPolicyManager.cpp | 53 String8 value; local 56 value = String8("Voice Recognition"); 59 value = String8("Camcorder"); 63 value = String8("Default"); 68 param.add(key, value);
|
/external/chromium/base/ |
bits.h | 21 uint32 value = n; local 24 uint32 x = value >> shift; 26 value = x; 30 DCHECK_EQ(value, 1u);
|
string_split.cc | 30 DLOG(INFO) << "cannot parse value from line: " << line; 31 return false; // no value 54 std::vector<std::string> value; local 57 &key, &value)) { 62 DCHECK_LE(value.size(), 1U); 63 kv_pairs->push_back(make_pair(key, value.empty()? "" : value[0]));
|
/external/emma/core/java12/com/vladium/jcd/lib/ |
UDataInputStream.java | 38 final short value = readShort (); local 40 return ((int) value) & 0xFFFF; // widening cast sign-extends 46 final int value = readInt (); local 48 return ((long) value) & 0xFFFFFFFFL; // widening cast sign-extends
|
/external/guava/src/com/google/common/collect/ |
ImmutableEntry.java | 32 private final V value; field in class:ImmutableEntry 34 ImmutableEntry(@Nullable K key, @Nullable V value) { 36 this.value = value; 44 return value;
|
/external/iproute2/netem/ |
normal.c | 39 int value = (int) rint(table[i]*TABLEFACTOR); local 40 if (value < SHRT_MIN) value = SHRT_MIN; 41 if (value > SHRT_MAX) value = SHRT_MAX; 43 printf(" %d", value);
|
/external/iptables/extensions/ |
libipt_2ttl.c | 21 " --ttl-eq value Match time to live value\n" 22 " --ttl-lt value Match TTL < value\n" 23 " --ttl-gt value Match TTL > value\n" 32 unsigned int value; local 38 if (string_to_number(optarg, 0, 255, &value) == -1) 40 "ttl: Expected value between 0 and 255"); 48 info->ttl = value; [all...] |
/external/jsr305/ri/src/main/java/javax/annotation/ |
MatchesPattern.java | 17 String value(); method in interface:MatchesPattern 22 public When forConstantValue(MatchesPattern annotation, Object value) { 23 Pattern p = Pattern.compile(annotation.value(), annotation.flags()); 24 if (p.matcher(((String) value)).matches())
|
Nonnegative.java | 11 /** Used to annotate a value that should only contain nonnegative values */ 24 Number value = (Number) v; local 25 if (value instanceof Long) 26 isNegative = value.longValue() < 0; 27 else if (value instanceof Double) 28 isNegative = value.doubleValue() < 0; 29 else if (value instanceof Float) 30 isNegative = value.floatValue() < 0; 32 isNegative = value.intValue() < 0;
|
/external/libvpx/vp8/encoder/ |
boolhuff.h | 27 unsigned int value; member in struct:__anon5283
|
/external/openssl/crypto/conf/ |
cnf_save.c | 87 char *value; local 95 s=(STACK *)cv->value; 102 value=(v->value == NULL)?"None":v->value; 103 printf("%s=%s\n",name,value);
|
/external/oprofile/daemon/ |
opd_events.h | 22 unsigned long value; member in struct:opd_event
|
opd_stats.c | 25 * print_if - print an integer value read from file filename, 26 * do nothing if the value read == -1 except if force is non-zero 30 int value = opd_read_fs_int(path, filename, 0); local 31 if (value != -1 || force) 32 printf(fmt, value);
|
/external/oprofile/libop/ |
op_parse_event.c | 47 unsigned long value; local 49 value = strtoul(str, &end, 0); 55 return value;
|
/external/ppp/pppd/plugins/pppoatm/ |
misc.c | 22 const char *value; local 31 for (i = 0; (value = va_arg(ap,const char *)); i++) { 32 len = strlen(value); 33 if (*value != '!' && len <= ref_len && len > best_len && 34 !strncasecmp(*pos,value,len)) {
|
/external/ppp/pppd/plugins/radius/ |
radattr.c | 59 * vp -- linked-list of RADIUS attribute-value pairs 64 * file contains "name value" pairs. 72 char value[2048]; local 83 if (rc_avpair_tostr(vp, name, sizeof(name), value, sizeof(value)) < 0) { 86 fprintf(fp, "%s %s\n", name, value);
|
/external/proguard/src/proguard/evaluation/value/ |
ComparisonValue.java | 21 package proguard.evaluation.value; 31 private final Value value1; 32 private final Value value2; 36 * Creates a new comparison integer value of the two given scalar values. 38 public ComparisonValue(Value integerValue1, 39 Value integerValue2)
|
IdentifiedDoubleValue.java | 21 package proguard.evaluation.value; 24 * This DoubleValue represents a double value that is identified by a unique ID. 35 * Creates a new double value with the given ID.
|
IdentifiedFloatValue.java | 21 package proguard.evaluation.value; 24 * This FloatValue represents a float value that is identified by a unique ID. 35 * Creates a new float value with the given ID.
|
IdentifiedIntegerValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a integer value that is identified by a unique ID. 35 * Creates a new integer value with the given ID.
|
IdentifiedLongValue.java | 21 package proguard.evaluation.value; 24 * This LongValue represents a long value that is identified by a unique ID. 35 * Creates a new long value with the given ID.
|
NegatedDoubleValue.java | 21 package proguard.evaluation.value; 24 * This DoubleValue represents a double value that is negated. 34 * Creates a new negated double value of the given double value.
|
NegatedFloatValue.java | 21 package proguard.evaluation.value; 24 * This FloatValue represents a float value that is negated. 34 * Creates a new negated float value of the given float value.
|
NegatedIntegerValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a integer value that is negated. 34 * Creates a new negated integer value of the given integer value.
|