/external/xmlrpcpp/src/ |
D | XmlRpcValue.cpp | 57 case TypeString: delete _value.asString; break; in invalidate() 58 case TypeDateTime: delete _value.asTime; break; in invalidate() 59 case TypeBase64: delete _value.asBinary; break; in invalidate() 60 case TypeArray: delete _value.asArray; break; in invalidate() 61 case TypeStruct: delete _value.asStruct; break; in invalidate() 65 _value.asBinary = 0; in invalidate() 76 case TypeString: _value.asString = new std::string(); break; in assertTypeOrInvalid() 77 case TypeDateTime: _value.asTime = new struct tm(); break; in assertTypeOrInvalid() 78 case TypeBase64: _value.asBinary = new BinaryData(); break; in assertTypeOrInvalid() 79 case TypeArray: _value.asArray = new ValueArray(); break; in assertTypeOrInvalid() [all …]
|
D | XmlRpcValue.h | 46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; } in XmlRpcValue() 47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; } in XmlRpcValue() 48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; } in XmlRpcValue() 49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; } in XmlRpcValue() 52 { _value.asString = new std::string(value); } in XmlRpcValue() 55 { _value.asString = new std::string(value); } in XmlRpcValue() 58 { _value.asTime = new struct tm(*value); } in XmlRpcValue() 63 _value.asBinary = new BinaryData((char*)value, ((char*)value)+nBytes); in XmlRpcValue() 88 operator bool&() { assertTypeOrInvalid(TypeBoolean); return _value.asBool; } 89 operator int&() { assertTypeOrInvalid(TypeInt); return _value.asInt; } [all …]
|
/external/lzma/Java/SevenZip/ |
D | CRC.java | 23 int _value = -1; field in CRC 27 _value = -1; in Init() 33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8); in Update() 40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8); in Update() 45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8); in UpdateByte() 50 return _value ^ (-1); in GetDigest()
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 327 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin… in GetChar() argument 343 return GetEntity( p, _value, length, encoding ); in GetChar() 344 *_value = *p; in GetChar() 352 _value[i] = p[i]; in GetChar() 508 void SetValue(const char * _value) { value = _value;} in SetValue() argument 512 void SetValue( const std::string& _value ) { value = _value; } in SetValue() argument 526 TiXmlNode* FirstChild( const char * _value ) { in FirstChild() argument 529 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value )); in FirstChild() 535 TiXmlNode* LastChild( const char * _value ) { in LastChild() argument 536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value )); in LastChild() [all …]
|
D | tinyxml.cpp | 361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const in FirstChild() 366 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild() 373 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const in LastChild() 378 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild() 413 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const in NextSibling() 418 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling() 425 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const in PreviousSibling() 430 if ( strcmp( node->Value(), _value ) == 0 ) in PreviousSibling() 467 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const in FirstChildElement() 471 for ( node = FirstChild( _value ); in FirstChildElement() [all …]
|
/external/tinyxml/ |
D | tinyxml.h | 280 …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 …]
|
D | tinyxml.cpp | 322 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/lzma/CS/7zip/Common/ |
D | CRC.cs | 25 uint _value = 0xFFFFFFFF; field in SevenZip.CRC 27 public void Init() { _value = 0xFFFFFFFF; } in Init() 31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8); in UpdateByte() 37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8); in Update() 40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; } in GetDigest()
|
/external/syslinux/gpxe/src/drivers/infiniband/ |
D | mlx_bitops.h | 86 #define MLX_ASSEMBLE_1( _structure_st, _index, _field, _value ) \ argument 87 ( (_value) << MLX_DWORD_BIT_OFFSET ( _structure_st, _index, _field ) ) 89 #define MLX_ASSEMBLE_2( _structure_st, _index, _field, _value, ... ) \ argument 90 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \ 93 #define MLX_ASSEMBLE_3( _structure_st, _index, _field, _value, ... ) \ argument 94 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \ 97 #define MLX_ASSEMBLE_4( _structure_st, _index, _field, _value, ... ) \ argument 98 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \ 101 #define MLX_ASSEMBLE_5( _structure_st, _index, _field, _value, ... ) \ argument 102 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \ [all …]
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | bitops.h | 101 #define BIT_ASSEMBLE_1( _ptr, _index, _field, _value ) \ argument 102 ( ( ( uint64_t) (_value) ) << \ 105 #define BIT_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \ argument 106 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 109 #define BIT_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \ argument 110 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 113 #define BIT_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \ argument 114 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 117 #define BIT_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \ argument 118 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ [all …]
|
/external/syslinux/gpxe/src/drivers/net/phantom/ |
D | nx_bitops.h | 84 #define NX_ASSEMBLE_1( _ptr, _index, _field, _value ) \ argument 85 ( ( ( uint64_t) (_value) ) << \ 88 #define NX_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \ argument 89 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 92 #define NX_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \ argument 93 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 96 #define NX_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \ argument 97 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ 100 #define NX_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \ argument 101 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \ [all …]
|
/external/tinyxml2/ |
D | tinyxml2.h | 487 …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 …]
|
/external/toolchain-utils/crosperf/ |
D | field.py | 13 self._value = default 19 self._value = self._Parse(value) 21 self._value = value 25 self._value += self._Parse(value) 32 return self._value 35 return str(self._value) 123 return ' '.join(self._value) 127 if not self._value: 128 self._value = v 130 self._value += v
|
/external/clang/test/CodeGenObjC/ |
D | optimize-ivar-offset-load.m | 9 int _value; field 25 foo (sample->_value); 29 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8 43 foo (sample->_value); 48 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load 58 foo (sample->_value); 63 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
D | Extension.java | 14 protected String _value; field in Extension 22 _value = value; in Extension() 30 return _value; in getValue() 34 return _key + LanguageTag.SEP + _value; in getID()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | Extension.java | 18 protected String _value; field in Extension 26 _value = value; in Extension() 34 return _value; in getValue() 38 return _key + LanguageTag.SEP + _value; in getID()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | Extension.java | 14 protected String _value; field in Extension 22 _value = value; in Extension() 30 return _value; in getValue() 34 return _key + LanguageTag.SEP + _value; in getID()
|
/external/toolchain-utils/bestflags/ |
D | flags.py | 112 self._value = value 116 return self._spec == other.GetSpec() and self._value == other.GetValue() 120 return hash(self._spec) + self._value 129 return self._value 152 return _FLAG_FILLOUT_VALUE_RE.sub(str(self._value), self._spec)
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
D | HashList.cs | 68 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/clang/test/SemaObjCXX/ |
D | pointer-to-objc-pointer-conv.mm | 31 operator id() const { return (id)_value; } 32 operator Class() const { return (Class)_value; } 33 operator I1*() const { return (I1*)_value; } 44 long _value;
|
/external/clang/test/SemaObjC/ |
D | method-conflict-2.m | 89 @synthesize value=_value; 92 return _value; 96 _value = value; 106 @synthesize value=_value; 109 return _value; 113 _value = value;
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSCache.java | 153 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()
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | token.py | 71 for _name, _value in globals().items(): 72 if type(_value) is type(0): 73 tok_name[_value] = _name
|
/external/python/cpython2/Lib/ |
D | token.py | 69 for _name, _value in globals().items(): 70 if type(_value) is type(0): 71 tok_name[_value] = _name 72 del _name, _value
|
/external/python/cpython2/Lib/multiprocessing/dummy/ |
D | __init__.py | 134 self._value = value 136 return self._value 138 self._value = value 141 return '<%s(%r, %r)>'%(type(self).__name__,self._typecode,self._value)
|