Home
last modified time | relevance | path

Searched full:value (Results 1 – 25 of 9458) sorted by relevance

12345678910>>...379

/external/protobuf/src/google/protobuf/
Dunittest_enormous_descriptor.proto46 …oooooooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also looooooooo…
47 …oooooooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also looooooooo…
48 …oooooooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also looooooooo…
49 …oooooooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also looooooooo…
50 …oooooooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also looooooooo…
51 …oooooooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also looooooooo…
52 …oooooooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also looooooooo…
53 …oooooooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also looooooooo…
54 …oooooooooooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also looooooooo…
55 …oooooooooooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also looooooooo…
[all …]
Dwire_format_lite_inl.h57 int32* value) {
60 *value = static_cast<int32>(temp);
66 int64* value) {
69 *value = static_cast<int64>(temp);
75 uint32* value) {
76 return input->ReadVarint32(value);
81 uint64* value) {
82 return input->ReadVarint64(value);
87 int32* value) {
90 *value = ZigZagDecode32(temp);
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java44 public void putString(String key, String value) { in putString() argument
45 map.put(key, value); in putString()
50 Object value = map.get(key); in getString() local
51 return value == null || !(value instanceof String) ? null : (String) value; in getString()
59 Object value = map.get(key); in getString() local
60 return value == null || !(value instanceof String) ? defaultValue : (String) value; in getString()
64 public void putLong(String key, long value) { in putLong() argument
65 map.put(key, value); in putLong()
75 Object value = map.get(key); in getLong() local
76 return value == null || !(value instanceof Long) ? defaultValue : (Long) value; in getLong()
[all …]
DShadowContentValues.java47 public void put(String key, String value) { in put() argument
48 values.put(key, value); in put()
57 public void put(String key, Byte value) { in put() argument
58 values.put(key, value); in put()
62 public void put(String key, Short value) { in put() argument
63 values.put(key, value); in put()
67 public void put(String key, Integer value) { in put() argument
68 values.put(key, value); in put()
72 public void put(String key, Long value) { in put() argument
73 values.put(key, value); in put()
[all …]
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.ascend152 VALUE Service-Type Dialout-Framed-User 5
153 VALUE Framed-Protocol ARA 255
154 VALUE Framed-Protocol MPP 256
155 VALUE Framed-Protocol EURAW 257
156 VALUE Framed-Protocol EUUI 258
157 VALUE Framed-Protocol X25 259
158 VALUE Framed-Protocol COMB 260
159 VALUE Framed-Protocol FR 261
160 VALUE Framed-Protocol MP 262
161 VALUE Framed-Protocol FR-CIR 263
[all …]
Ddictionary6 # composed of Attribute/Value Pairs. The value of each attribute
11 # integer - 32 bit value in big endian order (high byte first)
12 # date - 32 bit value in big endian order - seconds since
16 # VALUE translations for easy administration.
20 # ATTRIBUTE VALUE
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User 5
[all …]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
DBinaryOutputCapsule.java72 public void write(byte value, String name, byte defVal) throws IOException { in write() argument
73 if (value == defVal) in write()
76 write(value); in write()
79 public void write(byte[] value, String name, byte[] defVal) in write() argument
81 if (value == defVal) in write()
84 write(value); in write()
87 public void write(byte[][] value, String name, byte[][] defVal) in write() argument
89 if (value == defVal) in write()
92 write(value); in write()
95 public void write(int value, String name, int defVal) throws IOException { in write() argument
[all …]
/external/srec/shared/include/
DESR_Session.h44 * Returns session property value.
47 * @param value Property value
50 ESR_ReturnCode(*getProperty)(const LCHAR* name, void** value, VariableTypes type);
52 * Returns the type of a property value.
55 * @param type [out] Value type
59 * Returns copy of session property value.
62 * @param value Property value
64 ESR_ReturnCode(*getInt)(const LCHAR* name, int* value);
66 * Returns copy of session property value.
69 * @param value Property value
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DTypeTraits.cpp29 COMPILE_ASSERT(IsInteger<bool>::value, WTF_IsInteger_bool_true);
30 COMPILE_ASSERT(IsInteger<char>::value, WTF_IsInteger_char_true);
31 COMPILE_ASSERT(IsInteger<signed char>::value, WTF_IsInteger_signed_char_true);
32 COMPILE_ASSERT(IsInteger<unsigned char>::value, WTF_IsInteger_unsigned_char_true);
33 COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true);
34 COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true);
35 COMPILE_ASSERT(IsInteger<int>::value, WTF_IsInteger_int_true);
36 COMPILE_ASSERT(IsInteger<unsigned int>::value, WTF_IsInteger_unsigned_int_true);
37 COMPILE_ASSERT(IsInteger<long>::value, WTF_IsInteger_long_true);
38 COMPILE_ASSERT(IsInteger<unsigned long>::value, WTF_IsInteger_unsigned_long_true);
[all …]
DHashCountedSet.h30 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
31 typename Traits = HashTraits<Value> > class HashCountedSet {
34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
36 typedef Value ValueType;
57 // Increases the count if an equal value is already present
58 // the return value is a pair of an interator to the new value's
62 // Reduces the count of the value, and removes it if count
63 // goes down to zero, returns true if the value is removed.
67 // Removes the value, regardless of its count.
78 template<typename Value, typename HashFunctions, typename Traits>
[all …]
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/views/
Doptions.html35 <option value = "noCountry">-Select-</option>
36 <option value = "es_ar">Argentina</option>
37 <option value = "au">Australia</option>
38 <option value = "nl_be">België</option>
39 <option value = "fr_be">Belgique</option>
40 <option value = "en_bw">Botswana</option>
41 <option value = "pt-BR_br">Brasil</option>
42 <option value = "ca">Canada English</option>
43 <option value = "fr_ca">Canada Français</option>
44 <option value = "cs_cz">Česká republika</option>
[all …]
/external/qemu/
Dvarint.c27 // Encodes the 64-bit value "value" using the varint encoding. The varint
42 char *varint_encode(uint64_t value, char *buf) { in varint_encode() argument
43 if (value < k2Exp7) { in varint_encode()
44 *buf++ = value; in varint_encode()
45 } else if (value < k2Exp14) { in varint_encode()
46 *buf++ = (2 << 6) | (value >> 8); in varint_encode()
47 *buf++ = value & 0xff; in varint_encode()
48 } else if (value < k2Exp21) { in varint_encode()
49 *buf++ = (6 << 5) | (value >> 16); in varint_encode()
50 *buf++ = (value >> 8) & 0xff; in varint_encode()
[all …]
/external/proguard/src/proguard/evaluation/value/
DParticularIntegerValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a particular integer value.
30 private final int value; field in ParticularIntegerValue
34 * Creates a new particular integer value.
36 public ParticularIntegerValue(int value) in ParticularIntegerValue() argument
38 this.value = value; in ParticularIntegerValue()
44 public int value() in value() method in ParticularIntegerValue
46 return value; in value()
54 return new ParticularIntegerValue(-value); in negate()
59 int byteValue = (byte)value; in convertToByte()
[all …]
/external/apache-http/src/org/apache/commons/codec/language/
DDoubleMetaphone.java23 * Encodes a string into a double metaphone value.
68 * Encode a value with Double Metaphone
70 * @param value String to encode
73 public String doubleMetaphone(String value) { in doubleMetaphone() argument
74 return doubleMetaphone(value, false); in doubleMetaphone()
78 * Encode a value with Double Metaphone, optionally using the alternate
81 * @param value String to encode
85 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument
86 value = cleanInput(value); in doubleMetaphone()
87 if (value == null) { in doubleMetaphone()
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java87 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
90 writeDoubleNoTag(value); in writeDouble()
94 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
97 writeFloatNoTag(value); in writeFloat()
101 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
104 writeUInt64NoTag(value); in writeUInt64()
108 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
111 writeInt64NoTag(value); in writeInt64()
115 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
118 writeInt32NoTag(value); in writeInt32()
[all …]
/external/chromium/chrome/browser/policy/
Dconfiguration_policy_pref_store.cc44 // Get a preference value.
46 const Value** result) const;
55 virtual void Apply(ConfigurationPolicyType setting, Value* value);
61 Value::ValueType value_type;
72 Value* value,
78 // of |value| in the case that the policy is proxy-specific.
79 bool ApplyProxyPolicy(ConfigurationPolicyType policy, Value* value);
82 // Assumes ownership of |value| in that case.
83 bool ApplySyncPolicy(ConfigurationPolicyType policy, Value* value);
86 // handled and assumes ownership of |value| in that case.
[all …]
/external/protobuf/python/google/protobuf/internal/
Dencoder.py41 sizer takes a value of this field's type and computes its byte size. The
42 encoder takes a writer function and a value. It encodes the value into byte
58 manually inline the single-value encoder into the loop.
62 value is returned, then we can save two instructions by returning the
73 def _VarintSize(value): argument
74 """Compute the size of a varint value."""
75 if value <= 0x7f: return 1
76 if value <= 0x3fff: return 2
77 if value <= 0x1fffff: return 3
78 if value <= 0xfffffff: return 4
[all …]
/external/chromium/base/memory/
Draw_scoped_refptr_mismatch_checker.h31 value = base::false_type::value enumerator
38 value = (is_pointer<T>::value &&
39 (is_convertible<T, subtle::RefCountedBase*>::value ||
40 is_convertible<T, subtle::RefCountedThreadSafeBase*>::value))
47 enum { value = 0 }; enumerator
52 enum { value = 1 };
57 enum { value = !NeedsScopedRefptrButGetsRawPtr<A>::value };
62 enum { value = !(NeedsScopedRefptrButGetsRawPtr<A>::value ||
63 NeedsScopedRefptrButGetsRawPtr<B>::value) };
68 enum { value = !(NeedsScopedRefptrButGetsRawPtr<A>::value ||
[all …]
/external/webkit/WebKitLibraries/win/tools/vsprops/
DFeatureDefines.vsprops16 Value=""
21 Value="ENABLE_3D_RENDERING"
26 Value=""
31 Value=""
36 Value="ENABLE_CHANNEL_MESSAGING"
41 Value="ENABLE_CLIENT_BASED_GEOLOCATION"
46 Value="ENABLE_DATABASE"
51 Value=""
56 Value="ENABLE_DATALIST"
61 Value=""
[all …]
DFeatureDefinesCairo.vsprops16 Value=""
21 Value=""
26 Value=""
31 Value=""
36 Value="ENABLE_CHANNEL_MESSAGING"
41 Value=""
46 Value="ENABLE_DATABASE"
51 Value=""
56 Value="ENABLE_DATALIST"
61 Value=""
[all …]
/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp4 static const bool value = false; member
9 static const bool value = true; member
14 static const bool value = true; member
17 int array0[is_pointer<int>::value? -1 : 1];
18 int array1[is_pointer<int*>::value? 1 : -1];
19 int array2[is_pointer<const int*>::value? 1 : -1];
23 static const bool value = false; member
28 static const bool value = true; member
31 int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1];
32 int lvalue_ref1[is_lvalue_reference<const int&>::value? 1 : -1];
[all …]
/external/llvm/lib/Object/
DMachOObject.cpp26 static void SwapValue(T &Value) { in SwapValue() argument
27 Value = sys::SwapByteOrder(Value); in SwapValue()
31 static void SwapStruct(T &Value);
97 // First, check the magic value and initialize the basic object info. in LoadFromBuffer()
172 void SwapStruct(macho::SegmentLoadCommand &Value) { in SwapStruct() argument
173 SwapValue(Value.Type); in SwapStruct()
174 SwapValue(Value.Size); in SwapStruct()
175 SwapValue(Value.VMAddress); in SwapStruct()
176 SwapValue(Value.VMSize); in SwapStruct()
177 SwapValue(Value.FileOffset); in SwapStruct()
[all …]
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c31 static value llvm_ioerror_exn;
33 CAMLprim value llvm_register_core_exns(value IoError) { in llvm_register_core_exns()
39 static void llvm_raise(value Prototype, char *Message) { in llvm_raise()
53 static value alloc_variant(int tag, void *Value) { in alloc_variant() argument
54 value Iter = alloc_small(1, tag); in alloc_variant()
55 Field(Iter, 0) = Val_op(Value); in alloc_variant()
63 CAMLprim value llvm_##camlname##_begin(pty Mom) { \
71 CAMLprim value llvm_##camlname##_succ(cty Kid) { \
79 CAMLprim value llvm_##camlname##_end(pty Mom) { \
87 CAMLprim value llvm_##camlname##_pred(cty Kid) { \
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java120 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
123 writeDoubleNoTag(value); in writeDouble()
127 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
130 writeFloatNoTag(value); in writeFloat()
134 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
137 writeUInt64NoTag(value); in writeUInt64()
141 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
144 writeInt64NoTag(value); in writeInt64()
148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
151 writeInt32NoTag(value); in writeInt32()
[all …]
/external/llvm/include/llvm/IR/
DIRBuilder.h176 /// filled in with the null terminated string value specified. The new global
179 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
181 /// \brief Get a constant value representing either true or false.
186 /// \brief Get the constant value for i1 true.
191 /// \brief Get the constant value for i1 false.
196 /// \brief Get a constant 8-bit value.
201 /// \brief Get a constant 16-bit value.
206 /// \brief Get a constant 32-bit value.
211 /// \brief Get a constant 64-bit value.
216 /// \brief Get a constant integer value.
[all …]

12345678910>>...379