Searched refs:value (Results 476 - 500 of 13868) sorted by relevance

<<11121314151617181920>>

/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-elim-2.cpp59 A() : value(1) { }
60 A(A const &, int value = 2) : value(value) { }
61 int value; member in struct:PR12139::A
63 static A makeA() { A a; a.value = 2; return a; }
74 return a.value;
/external/clang/test/SemaCXX/
H A Dunderlying_type.cpp7 static const bool value = false; member in struct:is_same_type
11 static const bool value = true; member in struct:is_same_type
18 static_assert(is_same_type<char, __underlying_type(f)>::value,
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
/external/guava/guava/src/com/google/common/base/
H A DObjects.java196 * Adds a name/value pair to the formatted output in {@code name=value}
197 * format. If {@code value} is {@code null}, the string {@code "null"}
200 public ToStringHelper add(String name, @Nullable Object value) { argument
201 checkNameAndAppend(name).append(value);
206 * Adds a name/value pair to the formatted output in {@code name=value}
211 public ToStringHelper add(String name, boolean value) { argument
212 checkNameAndAppend(name).append(value);
217 * Adds a name/value pai
222 add(String name, char value) argument
233 add(String name, double value) argument
244 add(String name, float value) argument
255 add(String name, int value) argument
266 add(String name, long value) argument
282 addValue(@ullable Object value) argument
295 addValue(boolean value) argument
308 addValue(char value) argument
321 addValue(double value) argument
334 addValue(float value) argument
347 addValue(int value) argument
360 addValue(long value) argument
[all...]
/external/proguard/src/proguard/optimize/
H A DConstantMemberFilter.java26 import proguard.evaluation.value.Value;
59 Value value = StoringInvocationUnit.getFieldValue(programField);
60 if (value != null &&
61 value.isParticular())
70 Value value = StoringInvocationUnit.getMethodReturnValue(programMethod);
71 if (value != null &&
72 value.isParticular())
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c38 /* Put a variable of the form "name=value" into the environment */
42 char *value; local
59 value = SDL_envmem + (sep - variable);
60 *value++ = '\0';
61 if ( !SetEnvironmentVariable(SDL_envmem, *value ? value : NULL) ) {
92 /* Put a variable of the form "name=value" into the environment */
95 const char *name, *value; local
106 for ( value=variable; *value
159 char *value; local
183 char *value; local
[all...]
/external/skia/include/core/
H A DSkEndian.h32 static inline uint16_t SkEndianSwap16(U16CPU value) { argument
33 SkASSERT(value == (uint16_t)value);
34 return static_cast<uint16_t>((value >> 8) | (value << 8));
37 static const uint16_t value = static_cast<uint16_t>((N >> 8) | ((N & 0xFF) << 8)); member in struct:SkTEndianSwap16
41 low two bytes of each value in the array.
52 /** Reverse all 4 bytes in a 32bit value.
55 static inline uint32_t SkEndianSwap32(uint32_t value) { argument
56 return ((value
62 static const uint32_t value = ((N & 0xFF) << 24) | member in struct:SkTEndianSwap32
83 SkEndianSwap64(uint64_t value) argument
94 static const uint64_t value = (((N & 0x00000000000000FFULL) << (8*7)) | member in struct:SkTEndianSwap64
[all...]
H A DSkMath.h30 * Return the integer square root of value, with a bias of bitBias
32 int32_t SkSqrtBits(int32_t value, int bitBias);
67 * Returns (value < 0 ? 0 : value) efficiently (i.e. no compares or branches)
69 static inline int SkClampPos(int value) { argument
70 return value & ~(value >> 31);
73 /** Given an integer and a positive (max) integer, return the value
75 * @param value The value w
79 SkClampMax(int value, int max) argument
96 SkNextPow2(int value) argument
110 SkNextLog2(uint32_t value) argument
119 SkIsPow2(int value) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtputils.cc40 bool GetUint8(const void* data, size_t offset, int* value) { argument
41 if (!data || !value) {
44 *value = *(static_cast<const uint8*>(data) + offset);
48 bool GetUint16(const void* data, size_t offset, int* value) { argument
49 if (!data || !value) {
52 *value = static_cast<int>(
57 bool GetUint32(const void* data, size_t offset, uint32* value) { argument
58 if (!data || !value) {
61 *value = talk_base::GetBE32(static_cast<const uint8*>(data) + offset);
65 bool SetUint8(void* data, size_t offset, int value) { argument
73 SetUint16(void* data, size_t offset, int value) argument
81 SetUint32(void* data, size_t offset, uint32 value) argument
89 GetRtpFlags(const void* data, size_t len, int* value) argument
96 GetRtpPayloadType(const void* data, size_t len, int* value) argument
107 GetRtpSeqNum(const void* data, size_t len, int* value) argument
114 GetRtpTimestamp(const void* data, size_t len, uint32* value) argument
121 GetRtpSsrc(const void* data, size_t len, uint32* value) argument
128 GetRtpHeaderLen(const void* data, size_t len, size_t* value) argument
162 GetRtcpType(const void* data, size_t len, int* value) argument
172 GetRtcpSsrc(const void* data, size_t len, uint32* value) argument
198 SetRtpPayloadType(void* data, size_t len, int value) argument
205 SetRtpSeqNum(void* data, size_t len, int value) argument
209 SetRtpTimestamp(void* data, size_t len, uint32 value) argument
213 SetRtpSsrc(void* data, size_t len, uint32 value) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value o
250 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc)(unsigned long value, void *in), void *arg) argument
253 unsigned long value; local
287 in_utf8(unsigned long value, void *arg) argument
297 out_utf8(unsigned long value, void *arg) argument
309 type_str(unsigned long value, void *arg) argument
328 cpy_asc(unsigned long value, void *arg) argument
340 cpy_bmp(unsigned long value, void *arg) argument
353 cpy_univ(unsigned long value, void *arg) argument
368 cpy_utf8(unsigned long value, void *arg) argument
380 is_printable(unsigned long value) argument
[all...]
/external/openssl/crypto/asn1/
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value o
250 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc)(unsigned long value, void *in), void *arg) argument
253 unsigned long value; local
287 in_utf8(unsigned long value, void *arg) argument
297 out_utf8(unsigned long value, void *arg) argument
309 type_str(unsigned long value, void *arg) argument
328 cpy_asc(unsigned long value, void *arg) argument
340 cpy_bmp(unsigned long value, void *arg) argument
353 cpy_univ(unsigned long value, void *arg) argument
368 cpy_utf8(unsigned long value, void *arg) argument
380 is_printable(unsigned long value) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.h76 // The wire format is composed of a sequence of tag/value pairs, each
77 // of which contains the value of one field (or one element of a repeated
82 // these wire types. Immediately following each tag is the field's value,
164 // Skips a field value with the given tag. The input should start
219 static uint32 EncodeFloat(float value);
220 static float DecodeFloat(uint32 value);
221 static uint64 EncodeDouble(double value);
222 static double DecodeDouble(uint64 value);
287 static inline bool ReadPrimitive(input, CType* value) INL;
296 RepeatedField<CType>* value) IN
596 EncodeFloat(float value) argument
602 DecodeFloat(uint32 value) argument
608 EncodeDouble(double value) argument
614 DecodeDouble(uint64 value) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite.h77 // The wire format is composed of a sequence of tag/value pairs, each
78 // of which contains the value of one field (or one element of a repeated
83 // these wire types. Immediately following each tag is the field's value,
162 // Skips a field value with the given tag. The input should start
211 static uint32 EncodeFloat(float value);
212 static float DecodeFloat(uint32 value);
213 static uint64 EncodeDouble(double value);
214 static double DecodeDouble(uint64 value);
245 static inline bool ReadPrimitive(input, CType* value) INL;
254 RepeatedField<CType>* value) IN
550 EncodeFloat(float value) argument
556 DecodeFloat(uint32 value) argument
562 EncodeDouble(double value) argument
568 DecodeDouble(uint64 value) argument
[all...]
/external/chromium/base/
H A Datomicops_unittest.cc16 // use a guard value to make sure the NoBarrier_AtomicIncrement doesn't go
87 AtomicType value = 0; local
88 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1);
89 EXPECT_EQ(1, value);
92 // Use test value that has non-zero bits in both halves, more for testing
96 value = k_test_val;
97 prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 5);
98 EXPECT_EQ(k_test_val, value);
101 value = k_test_val;
102 prev = base::subtle::NoBarrier_CompareAndSwap(&value, k_test_va
110 AtomicType value = 0; local
136 AtomicType value = -1 ^ test_val; local
170 AtomicType value; local
195 AtomicType value; local
[all...]
/external/chromium_org/base/
H A Datomicops_unittest.cc16 // use a guard value to make sure the NoBarrier_AtomicIncrement doesn't go
87 AtomicType value = 0; local
88 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1);
89 EXPECT_EQ(1, value);
92 // Use test value that has non-zero bits in both halves, more for testing
96 value = k_test_val;
97 prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 5);
98 EXPECT_EQ(k_test_val, value);
101 value = k_test_val;
102 prev = base::subtle::NoBarrier_CompareAndSwap(&value, k_test_va
110 AtomicType value = 0; local
136 AtomicType value = -1 ^ test_val; local
170 AtomicType value; local
195 AtomicType value; local
[all...]
/external/chromium_org/chrome/installer/setup/
H A Darchive_patch_helper.cc44 int32 lzma_result = LzmaUtil::UnPackArchive(compressed_archive_.value(),
45 working_directory_.value(),
63 courgette::ApplyEnsemblePatch(patch_source_.value().c_str(),
64 last_uncompressed_file_.value().c_str(),
65 target_.value().c_str());
70 << "Failed to apply patch " << last_uncompressed_file_.value()
71 << " to file " << patch_source_.value()
72 << " and generating file " << target_.value()
87 int result = ApplyBinaryPatch(patch_source_.value().c_str(),
88 last_uncompressed_file_.value()
[all...]
/external/chromium_org/ui/base/animation/
H A Dtween.cc59 double Tween::ValueBetween(double value, double start, double target) { argument
60 return start + (target - start) * value;
64 int Tween::ValueBetween(double value, int start, int target) { argument
73 return start + static_cast<int>(value * _nextafter(delta, 0));
75 return start + static_cast<int>(value * nextafter(delta, 0));
80 gfx::Rect Tween::ValueBetween(double value, argument
83 return gfx::Rect(ValueBetween(value, start_bounds.x(), target_bounds.x()),
84 ValueBetween(value, start_bounds.y(), target_bounds.y()),
85 ValueBetween(value, start_bounds.width(),
87 ValueBetween(value, start_bound
92 ValueBetween(double value, const gfx::Transform& start_transform, const gfx::Transform& end_transform) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dsession_commands.h28 scoped_ptr<base::Value>* value);
34 scoped_ptr<base::Value>* value);
40 scoped_ptr<base::Value>* value);
46 scoped_ptr<base::Value>* value);
52 scoped_ptr<base::Value>* value);
55 // its server assigned window handle, or by the value of its name attribute.
59 scoped_ptr<base::Value>* value);
66 scoped_ptr<base::Value>* value);
72 scoped_ptr<base::Value>* value);
78 scoped_ptr<base::Value>* value);
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkMath.h30 * Return the integer square root of value, with a bias of bitBias
32 int32_t SkSqrtBits(int32_t value, int bitBias);
67 * Returns (value < 0 ? 0 : value) efficiently (i.e. no compares or branches)
69 static inline int SkClampPos(int value) { argument
70 return value & ~(value >> 31);
73 /** Given an integer and a positive (max) integer, return the value
75 * @param value The value w
79 SkClampMax(int value, int max) argument
96 SkNextPow2(int value) argument
110 SkNextLog2(uint32_t value) argument
119 SkIsPow2(int value) argument
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkThread_pthread.cpp50 int32_t value = *addr; local
53 if (value == 0) {
57 int32_t before = __sync_val_compare_and_swap(addr, value, value + 1);
59 if (before == value) {
60 return value;
62 value = before;
76 int32_t value = *addr; local
77 *addr = value + 1;
78 return value;
85 int32_t value = *addr; local
94 int32_t value = *addr; local
104 int32_t value = *addr; local
[all...]
/external/skia/src/ports/
H A DSkThread_pthread.cpp50 int32_t value = *addr; local
53 if (value == 0) {
57 int32_t before = __sync_val_compare_and_swap(addr, value, value + 1);
59 if (before == value) {
60 return value;
62 value = before;
76 int32_t value = *addr; local
77 *addr = value + 1;
78 return value;
85 int32_t value = *addr; local
94 int32_t value = *addr; local
104 int32_t value = *addr; local
[all...]
/external/stlport/test/eh/
H A DTestClass.h36 inline TestClass( int value );
41 inline int value() const;
47 return value() == rhs.value();
51 return value() < rhs.value();
57 inline void Init( int value );
77 inline void TestClass::Init( int value )
80 p = new int( value );
83 v = value;
124 inline int TestClass::value() const function in class:TestClass
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp68 src_reg value = *values[0]; local
70 if (!value.equals(values[i]))
74 if (value.file != IMM)
78 if (value.type == BRW_REGISTER_TYPE_F) {
79 value.imm.f = fabs(value.imm.f);
80 } else if (value.type == BRW_REGISTER_TYPE_D) {
81 if (value.imm.i < 0)
82 value.imm.i = -value
171 src_reg value = *values[0]; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp68 src_reg value = *values[0]; local
70 if (!value.equals(values[i]))
74 if (value.file != IMM)
78 if (value.type == BRW_REGISTER_TYPE_F) {
79 value.imm.f = fabs(value.imm.f);
80 } else if (value.type == BRW_REGISTER_TYPE_D) {
81 if (value.imm.i < 0)
82 value.imm.i = -value
171 src_reg value = *values[0]; local
[all...]
/external/nist-sip/java/gov/nist/core/
H A DNameValue.java38 * Generic structure for storing name-value pairs.
61 private Object value; field in class:NameValue
65 value = "";
83 value = v;
107 * A flag that indicates that doublequotes should be put around the value
108 * when encoded (for example name=value when value is doublequoted).
116 * Return true if the value is quoted in doublequotes.
127 return isFlagParameter ? "" : value; // never return null for flag
139 * Set the value membe
273 setValue(String value) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSToStyleMap.cpp59 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) argument
61 return m_elementStyleResources.styleImage(m_state.document()->textLinkColors(), propertyId, value);
64 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const
66 if (value->isInitialValue()) {
71 if (!value->isPrimitiveValue())
74 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
90 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const
92 if (value->isInitialValue()) {
97 if (!value->isPrimitiveValue())
100 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
147 mapFillImage(CSSPropertyID property, FillLayer* layer, CSSValue* value) argument
506 mapNinePieceImage(RenderStyle* mutableStyle, CSSPropertyID property, CSSValue* value, NinePieceImage& image) argument
565 mapNinePieceImageSlice(CSSValue* value, NinePieceImage& image) const argument
643 mapNinePieceImageRepeat(CSSValue* value, NinePieceImage& image) const argument
[all...]

Completed in 3450 milliseconds

<<11121314151617181920>>