Home
last modified time | relevance | path

Searched refs:_value (Results 1 – 25 of 54) sorted by relevance

123

/external/webrtc/src/system_wrappers/source/
Datomic32_mac.h43 volatile WebRtc_Word32* _value; variable
50 _value(NULL) in Atomic32Impl()
55 _value = (WebRtc_Word32*) (((uintptr_t)_ptrMemory+3)&(~0x3)); in Atomic32Impl()
56 *_value = initialValue; in Atomic32Impl()
70 reinterpret_cast<volatile int32_t*>(_value));
76 reinterpret_cast<volatile int32_t*>(_value));
81 *_value = *rhs._value;
87 *_value = rhs;
94 reinterpret_cast<volatile int32_t*>(_value));
100 reinterpret_cast<volatile int32_t*>(_value));
[all …]
Datomic32_linux.h44 volatile WebRtc_Word32* _value; variable
50 _value(NULL) in Atomic32Impl()
55 _value = (WebRtc_Word32*) (((uintptr_t)_ptrMemory+3)&(~0x3)); in Atomic32Impl()
56 *_value = initialValue; in Atomic32Impl()
69 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,1);
76 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,1);
83 *_value = *rhs._value;
89 *_value = rhs;
95 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,rhs);
102 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,rhs);
[all …]
/external/tinyxml/
Dtinyxml.h280 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin… in GetChar() argument
296 return GetEntity( p, _value, length, encoding ); in GetChar()
297 *_value = *p; in GetChar()
305 _value[i] = p[i]; in GetChar()
468 void SetValue(const char * _value) { value = _value;} in SetValue() argument
472 void SetValue( const std::string& _value ) in SetValue() argument
474 StringToBuffer buf( _value ); in SetValue()
497 …const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str (… in FirstChild() argument
498 …TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///… in FirstChild() argument
499 …const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ())… in LastChild() argument
[all …]
Dtinyxml.cpp322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const in FirstChild()
327 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild()
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value ) in FirstChild() argument
339 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild()
346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const in LastChild()
351 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild()
357 TiXmlNode* TiXmlNode::LastChild( const char * _value ) in LastChild() argument
362 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild()
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const in NextSibling()
425 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling()
[all …]
/external/bluetooth/glib/gobject/
Dgvaluecollector.h86 GValue *_value = (value); \
88 GType _value_type = G_VALUE_TYPE (_value); \
95 _vtable->value_free (_value); \
96 _value->g_type = _value_type; /* value_meminit() from gvalue.c */ \
97 memset (_value->data, 0, sizeof (_value->data)); \
123 *(__error) = _vtable->collect_value (_value, \
145 const GValue *_value = (value); \
147 GType _value_type = G_VALUE_TYPE (_value); \
178 *(__error) = _vtable->lcopy_value (_value, \
Dgclosure.c105 #define CHANGE_FIELD(_closure, _field, _OP, _value, _must_set, _SET_OLD, _SET_NEW) \ argument
114 tmp.closure._field _OP _value; \
122 #define SWAP(_closure, _field, _value, _oldv) CHANGE_FIELD (_closure, _field, =, _value, TRUE, *(… argument
123 #define SET(_closure, _field, _value) CHANGE_FIELD (_closure, _field, =, _value, TRUE, … argument
/external/webkit/Source/WebCore/inspector/front-end/
DRemoteObject.js181 this._value = value;
208 this._cachedDescription = String(this._value);
235 if (this._value === null)
237 if (this._value instanceof Array)
239 return typeof this._value;
244 … return typeof this._value === "object" && this._value !== null && Object.keys(this._value).length;
261 …bInspector.RemoteObjectProperty(propName, new WebInspector.LocalJSONObject(this._value[propName]));
264 this._cachedChildren = Object.keys(this._value).map(buildProperty.bind(this));
DNetworkPanel.js1075 var value = this._value(item);
1089 return {start: 0, middle: 0, end: (this._value(item) / this.boundarySpan) * 100};
1094 const label = this.formatValue(this._value(item));
1107 var value = this._value(item);
1121 _value: function(item) method in WebInspector.NetworkBaseCalculator
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm28 operator id() const { return (id)_value; }
29 operator Class() const { return (Class)_value; }
30 operator I1*() const { return (I1*)_value; }
41 long _value;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DHashList.cs68 private object _value; field in Antlr.Runtime.Collections.HashList.HashListEnumerator
76 _value = null; in HashListEnumerator()
87 _value = null; in HashListEnumerator()
114 return _value;
126 return new DictionaryEntry(_key, _value);
142 _value = null; in Reset()
157 return _value;
159 return new DictionaryEntry(_key, _value);
173 _value = _hashList[_key]; in MoveNext()
/external/bluetooth/glib/tests/
Dhash-test.c224 const char *_value = (const char *) value; in not_even_foreach() local
230 g_assert (_value != NULL); in not_even_foreach()
231 g_assert (*_value != 0); in not_even_foreach()
236 g_assert (strcmp (_value, val) == 0); in not_even_foreach()
248 const char *_value = (const char *) value; in remove_even_foreach() local
254 g_assert (_value != NULL); in remove_even_foreach()
255 g_assert (*_value != 0); in remove_even_foreach()
260 g_assert (strcmp (_value, val) == 0); in remove_even_foreach()
/external/jmdns/src/javax/jmdns/impl/
DDNSCache.java153 private List<? extends DNSEntry> _value; field in DNSCache._CacheEntry
164 _value = value; in _CacheEntry()
174 _value = ((_CacheEntry) entry).getValue(); in _CacheEntry()
191 return _value; in getValue()
199 List<? extends DNSEntry> oldValue = _value; in setValue()
200 _value = value; in setValue()
241 if ((_value != null) && (!_value.isEmpty())) { in toString()
242 for (DNSEntry entry : _value) { in toString()
DJmDNSImpl.java123 private final String _value; field in JmDNSImpl.ServiceTypeEntry.SubTypeEntry
127 _value = (subtype != null ? subtype : ""); in SubTypeEntry()
128 _key = _value.toLowerCase(); in SubTypeEntry()
144 return _value; in getValue()
177 … return (_key == null ? 0 : _key.hashCode()) ^ (_value == null ? 0 : _value.hashCode()); in hashCode()
195 return _key + "=" + _value; in toString()
/external/clang/test/Analysis/
Dcfref_PR2519.c35 CFNumberRef _value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &pid); in main() local
36 …tionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictio… in main()
37 CFRelease(_value); // no-warning in main()
/external/protobuf/src/google/protobuf/
Dextension_set.cc223 return iter->second.LOWERCASE##_value; \
239 extension->LOWERCASE##_value = value; \
246 return iter->second.repeated_##LOWERCASE##_value->Get(index); \
254 iter->second.repeated_##LOWERCASE##_value->Set(index, value); \
266 extension->repeated_##LOWERCASE##_value = new RepeatedField<LOWERCASE>(); \
271 extension->repeated_##LOWERCASE##_value->Add(value); \
603 extension->repeated_##LOWERCASE##_value = \ in MergeFrom()
606 extension->repeated_##LOWERCASE##_value->MergeFrom( \ in MergeFrom()
607 *other_extension.repeated_##LOWERCASE##_value); \ in MergeFrom()
648 other_extension.LOWERCASE##_value, \ in MergeFrom()
[all …]
Dextension_set_heavy.cc258 total_size += sizeof(*repeated_##LOWERCASE##_value) + \ in SpaceUsedExcludingSelf()
259 repeated_##LOWERCASE##_value->SpaceUsedExcludingSelf();\ in SpaceUsedExcludingSelf()
337 for (int i = 0; i < repeated_##LOWERCASE##_value->size(); i++) { \ in SerializeFieldWithCachedSizesToArray()
339 repeated_##LOWERCASE##_value->Get(i), target); \ in SerializeFieldWithCachedSizesToArray()
370 for (int i = 0; i < repeated_##LOWERCASE##_value->size(); i++) { \ in SerializeFieldWithCachedSizesToArray()
372 repeated_##LOWERCASE##_value->Get(i), target); \ in SerializeFieldWithCachedSizesToArray()
/external/clang/test/CodeGenObjC/
Dclass-getter-dotsyntax.m9 static int _value;
19 + (void)setCrash: (int)value{ _value = value; }
/external/astl/include/
Dtype_traits.h71 template<typename _T, _T _value>
74 static const _T value = _value;
76 typedef integral_constant<_T, _value> type;
/external/libvpx/vp8/decoder/
Ddboolhuff.h51 #define VP8DX_BOOL_DECODER_FILL(_count,_value,_bufptr,_bufend) \ argument
62 (_value) |= (VP8_BD_VALUE)*(_bufptr)++ << shift; \
/external/clang/test/CodeGenCXX/
D2010-07-23-DeclLoc.cpp48 T _value; member in TRangeValue
50 …ocation, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {}; in TRangeValue()
/external/webkit/Source/cmake/
DWebKitFeatures.cmake9 MACRO(WEBKIT_SEPARATE_FEATURES _name _value)
11 LIST(APPEND ${f}_FEATURES "${_name}=${_value}")
/external/valgrind/main/helgrind/
Dhelgrind.h250 #define VALGRIND_HG_SEM_INIT_POST(_sem, _value) \ argument
252 void*, (_sem), unsigned long, (_value))
/external/webkit/Tools/DumpRenderTree/chromium/
DCppVariant.h73 void set(NPObject*_value);
/external/protobuf/python/
Dmox.py987 self._value = value
997 return rhs[self._key] == self._value
1002 return '<map containing the entry \'%s: %s\'>' % (self._key, self._value)
/external/clang/test/SemaCXX/
Dtype-traits.cpp1538 IntWrapper(int _value) : value(_value) {} in IntWrapper()
1547 FloatWrapper(float _value) : value(_value) {} in FloatWrapper()

123