Home
last modified time | relevance | path

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

1234567

/external/python/cpython3/Include/
Dpyatomic.h39 atomic_uintptr_t _value; member
43 atomic_int _value; member
53 atomic_store_explicit(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER)
56 atomic_load_explicit(&(ATOMIC_VAL)->_value, ORDER)
70 uintptr_t _value; member
74 int _value; member
87 __atomic_store_n(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER))
94 __atomic_load_n(&(ATOMIC_VAL)->_value, ORDER))
108 uintptr_t _value; member
112 int _value; member
[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/tensorflow/tensorflow/python/framework/
Dtensor_shape.py179 self._value = None
181 self._value = value.value
185 self._value = int(value)
187 self._value != value):
189 if self._value < 0:
190 raise ValueError("Dimension %d must be >= 0" % self._value)
193 return "Dimension(%s)" % repr(self._value)
196 value = self._value
205 if self._value is None or other.value is None:
207 return self._value == other.value
[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/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/pyasn1/pyasn1/type/
Duniv.py106 return self.clone(self._value & value)
109 return self.clone(value & self._value)
112 return self.clone(self._value | value)
115 return self.clone(value | self._value)
118 return self.clone(self._value ^ value)
121 return self.clone(value ^ self._value)
124 return self.clone(self._value << value)
127 return self.clone(self._value >> value)
130 return self.clone(self._value + value)
133 return self.clone(value + self._value)
[all …]
Dbase.py248 self._value = value
268 return self is other and True or self._value == other
271 return self._value != other
274 return self._value < other
277 return self._value <= other
280 return self._value > other
283 return self._value >= other
287 return self._value and True or False
290 return self._value and True or False
293 return hash(self._value)
[all …]
Dchar.py55 return self._value.encode(self.encoding)
59 "Can't encode string '%s' with codec %s" % (self._value, self.encoding)
63 return unicode(self._value)
92 return str(self._value)
96 return self._value.encode(self.encoding)
99 "Can't encode string '%s' with codec %s" % (self._value, self.encoding)
135 value = self.prettyOut(self._value)
137 if value is not self._value:
143 return reversed(self._value)
/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/python/cpython3/Lib/asyncio/
Dlocks.py245 self._value = False
253 extra = 'set' if self._value else 'unset'
260 return self._value
267 if not self._value:
268 self._value = True
278 self._value = False
287 if self._value:
436 self._value = value
459 return self._value == 0
470 while 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/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/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/grpc-grpc/src/objective-c/RxLibrary/
DGRXImmediateSingleWriter.m22 id _value;
30 _value = value;
43 [writeable writeValue:_value];
49 _value = nil;
68 // Since _value is available when creating the object, we can simply
70 _value = map(_value);
/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/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/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/antlr/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/catch2/include/internal/
Dcatch_option.hpp18 Option( T const& _value ) in Option() argument
19 : nullableValue( new( storage ) T( _value ) ) in Option()
37 Option& operator = ( T const& _value ) { in operator =() argument
39 nullableValue = new( storage ) T( _value ); in operator =()
/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;
/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/grpc-grpc/src/objective-c/RxLibrary/private/
DGRXNSScalarEnumerator.m22 id _value;
32 _value = value;
38 id value = _value;
39 _value = nil;

1234567