Home
last modified time | relevance | path

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

12345678

/external/xmlrpcpp/src/
DXmlRpcValue.cpp57 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 …]
DXmlRpcValue.h46 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/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h327 …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 …]
Dtinyxml.cpp361 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/
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/tensorflow/tensorflow/python/framework/
Dtensor_shape.py32 self._value = None
34 self._value = int(value)
36 self._value != value):
38 if self._value < 0:
39 raise ValueError("Dimension %d must be >= 0" % self._value)
42 return "Dimension(%s)" % repr(self._value)
45 value = self._value
54 if self._value is None or other.value is None:
56 return self._value == other.value
64 if self._value is None or other.value is None:
[all …]
/external/lzma/Java/SevenZip/
DCRC.java23 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/python/cpython3/Include/
Dpyatomic.h33 atomic_uintptr_t _value; member
37 atomic_int _value; member
47 atomic_store_explicit(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER)
50 atomic_load_explicit(&(ATOMIC_VAL)->_value, ORDER)
64 uintptr_t _value; member
68 int _value; member
81 __atomic_store_n(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER))
88 __atomic_load_n(&(ATOMIC_VAL)->_value, ORDER))
101 uintptr_t _value; member
105 int _value; member
[all …]
/external/syslinux/gpxe/src/drivers/infiniband/
Dmlx_bitops.h86 #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/
Dbitops.h101 #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/lzma/CS/7zip/Common/
DCRC.cs25 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/net/phantom/
Dnx_bitops.h84 #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/python/cpython3/Lib/asyncio/
Dlocks.py215 self._value = False
223 extra = 'set' if self._value else 'unset'
230 return self._value
237 if not self._value:
238 self._value = True
248 self._value = False
258 if self._value:
405 self._value = value
415 self._value)
429 return self._value == 0
[all …]
/external/toolchain-utils/crosperf/
Dfield.py13 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/
Doptimize-ivar-offset-load.m9 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/libxcam/modules/ocl/
Dcl_argument.h68 , _value (value) in CLArgumentT()
70 _arg_adress = (void *) &_value; in CLArgumentT()
75 DataType _value;
87 memcpy (&_value[0], value, sizeof (DataType) * count); in CLArgumentTArray()
88 _arg_adress = (void *) &_value; in CLArgumentTArray()
93 DataType _value[count];
/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/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
DExtension.java14 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/
DExtension.java18 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/
DExtension.java14 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/
Dflags.py112 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/clang/test/SemaObjC/
Dmethod-conflict-2.m89 @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/
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()
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm31 operator id() const { return (id)_value; }
32 operator Class() const { return (Class)_value; }
33 operator I1*() const { return (I1*)_value; }
44 long _value;

12345678