Home
last modified time | relevance | path

Searched refs:_value (Results 1 – 25 of 59) 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/tinyxml2/
Dtinyxml2.h487 …ldElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(t…
497 …ildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(…
505 …gElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)…
513 …ngElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(t…
907 …nt* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) retur… in QueryIntAttribute() argument
909 …d int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_… in QueryUnsignedAttribute() argument
911 …l* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return… in QueryBoolAttribute() argument
913 …le* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XM… in QueryDoubleAttribute() argument
915 …oat* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return X… in QueryFloatAttribute() argument
918 …e( const char* name, const char* _value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a-… in SetAttribute() argument
[all …]
Dtinyxml2.cpp1167 int XMLElement::QueryIntText( int* _value ) const in QueryIntText()
1171 if ( XMLUtil::ToInt( t, _value ) ) { in QueryIntText()
1180 int XMLElement::QueryUnsignedText( unsigned* _value ) const in QueryUnsignedText()
1184 if ( XMLUtil::ToUnsigned( t, _value ) ) { in QueryUnsignedText()
1193 int XMLElement::QueryBoolText( bool* _value ) const in QueryBoolText()
1197 if ( XMLUtil::ToBool( t, _value ) ) { in QueryBoolText()
1206 int XMLElement::QueryDoubleText( double* _value ) const in QueryDoubleText()
1210 if ( XMLUtil::ToDouble( t, _value ) ) { in QueryDoubleText()
1219 int XMLElement::QueryFloatText( float* _value ) const in QueryFloatText()
1223 if ( XMLUtil::ToFloat( t, _value ) ) { in QueryFloatText()
/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/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.c34 CFNumberRef _value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &pid); in main() local
35 …tionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictio… in main()
36 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/FixIt/
Dformat-darwin.m52 NSInteger _value; field
72 …printf("%s", obj->_value); // expected-warning{{values of type 'NSInteger' should not be used as …
/external/clang/test/SemaCXX/
Dtype-traits.cpp1530 IntWrapper(int _value) : value(_value) {} in IntWrapper()
1539 FloatWrapper(float _value) : value(_value) {} in FloatWrapper()

123