Searched refs:_value (Results 1 - 25 of 107) sorted by relevance

12345

/external/lzma/Java/SevenZip/
H A DCRC.java23 int _value = -1; field in class:CRC
27 _value = -1;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value
[all...]
/external/lzma/CS/7zip/Common/
H A DCRC.cs25 uint _value = 0xFFFFFFFF; field in class:SevenZip.CRC
27 public void Init() { _value = 0xFFFFFFFF; }
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; }
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DExtension.java18 protected String _value; field in class:Extension
26 _value = value;
34 return _value;
38 return _key + LanguageTag.SEP + _value;
H A DUnicodeLocaleExtension.java39 CA_JAPANESE._value = "ca-japanese";
44 NU_THAI._value = "nu-thai";
74 _value = sb.substring(1); // skip leading '-'
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DExtension.java14 protected String _value; field in class:Extension
22 _value = value;
30 return _value;
34 return _key + LanguageTag.SEP + _value;
H A DUnicodeLocaleExtension.java35 CA_JAPANESE._value = "ca-japanese";
40 NU_THAI._value = "nu-thai";
70 _value = sb.substring(1); // skip leading '-'
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DExtension.java14 protected String _value; field in class:Extension
22 _value = value;
30 return _value;
34 return _key + LanguageTag.SEP + _value;
H A DUnicodeLocaleExtension.java35 CA_JAPANESE._value = "ca-japanese";
40 NU_THAI._value = "nu-thai";
70 _value = sb.substring(1); // skip leading '-'
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp57 case TypeString: delete _value.asString; break;
58 case TypeDateTime: delete _value.asTime; break;
59 case TypeBase64: delete _value.asBinary; break;
60 case TypeArray: delete _value.asArray; break;
61 case TypeStruct: delete _value.asStruct; break;
65 _value.asBinary = 0;
76 case TypeString: _value.asString = new std::string(); break;
77 case TypeDateTime: _value.asTime = new struct tm(); break;
78 case TypeBase64: _value.asBinary = new BinaryData(); break;
79 case TypeArray: _value
[all...]
H A DXmlRpcValue.h46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; }
47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; }
48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; }
49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; }
52 { _value.asString = new std::string(value); }
55 { _value.asString = new std::string(value); }
58 { _value.asTime = new struct tm(*value); }
63 _value.asBinary = new BinaryData((char*)value, ((char*)value)+nBytes);
88 operator bool&() { assertTypeOrInvalid(TypeBoolean); return _value.asBool; }
89 operator int&() { assertTypeOrInvalid(TypeInt); return _value
185 } _value; member in class:XmlRpc::XmlRpcValue
[all...]
/external/webrtc/talk/app/webrtc/objc/
H A DRTCPair.m33 @synthesize value = _value;
38 _value = [value copy];
44 return [NSString stringWithFormat:@"%@: %@", _key, _value];
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h327 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
343 return GetEntity( p, _value, length, encoding );
344 *_value = *p;
349 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
352 _value[i] = p[i];
508 void SetValue(const char * _value) { value = _value;} argument
512 void SetValue( const std::string& _value ) { value = _value; }
526 TiXmlNode* FirstChild( const char * _value ) {
569 IterateChildren( const char * _value, const TiXmlNode* previous ) argument
574 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
575 IterateChildren( const std::string& _value, const TiXmlNode* previous ) argument
627 NextSibling( const std::string& _value) argument
660 NextSiblingElement( const std::string& _value) argument
1679 Child( const std::string& _value, int index ) const argument
1680 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/tinyxml/
H A Dtinyxml.h280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
296 return GetEntity( p, _value, length, encoding );
297 *_value = *p;
302 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
305 _value[i] = p[i];
468 void SetValue(const char * _value) { value = _value;} argument
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) cons
527 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
528 IterateChildren( const std::string& _value, TiXmlNode* previous ) argument
578 NextSibling( const std::string& _value) argument
605 NextSiblingElement( const std::string& _value) argument
1489 Child( const std::string& _value, int index ) const argument
1490 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/syslinux/gpxe/src/drivers/infiniband/
H A Dmlx_bitops.h86 #define MLX_ASSEMBLE_1( _structure_st, _index, _field, _value ) \
87 ( (_value) << MLX_DWORD_BIT_OFFSET ( _structure_st, _index, _field ) )
89 #define MLX_ASSEMBLE_2( _structure_st, _index, _field, _value, ... ) \
90 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
93 #define MLX_ASSEMBLE_3( _structure_st, _index, _field, _value, ... ) \
94 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
97 #define MLX_ASSEMBLE_4( _structure_st, _index, _field, _value, ... ) \
98 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
101 #define MLX_ASSEMBLE_5( _structure_st, _index, _field, _value, ... ) \
102 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dbitops.h101 #define BIT_ASSEMBLE_1( _ptr, _index, _field, _value ) \
102 ( ( ( uint64_t) (_value) ) << \
105 #define BIT_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \
106 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
109 #define BIT_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \
110 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
113 #define BIT_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \
114 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
117 #define BIT_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \
118 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
[all...]
/external/toolchain-utils/crosperf/
H A 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
[all...]
/external/toolchain-utils/bestflags/
H A 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/syslinux/gpxe/src/drivers/net/phantom/
H A Dnx_bitops.h84 #define NX_ASSEMBLE_1( _ptr, _index, _field, _value ) \
85 ( ( ( uint64_t) (_value) ) << \
88 #define NX_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \
89 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
92 #define NX_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \
93 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
96 #define NX_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \
97 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
100 #define NX_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \
101 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
H A Dandroid_power_monitor_controller_unittest.py29 self._value = {'P2': value}
35 return self._value
40 self._value = {'P3': value}
46 return self._value
/external/clang/test/Analysis/
H A Dcfref_PR2519.c28 // This test case was reported in PR2519 as a false positive (_value was
35 CFNumberRef _value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &pid); local
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
37 CFRelease(_value); // no-warning
/external/tinyxml2/
H A Dtinyxml2.h487 XMLElement* FirstChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( _value )); }
497 XMLElement* LastChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(_value) ); }
505 XMLElement* PreviousSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( _value ) ); }
513 XMLElement* NextSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( _value ) ); }
907 int QueryIntAttribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_ATTRIBUTE; return a->QueryIntValue( _value ); }
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs68 private object _value; field in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
76 _value = null;
87 _value = null;
114 return _value;
126 return new DictionaryEntry(_key, _value);
142 _value = null;
157 return _value;
159 return new DictionaryEntry(_key, _value);
173 _value = _hashList[_key];
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java153 private List<? extends DNSEntry> _value; field in class:DNSCache._CacheEntry
164 _value = value;
174 _value = ((_CacheEntry) entry).getValue();
191 return _value;
199 List<? extends DNSEntry> oldValue = _value;
200 _value = value;
241 if ((_value != null) && (!_value.isEmpty())) {
242 for (DNSEntry entry : _value) {
/external/autotest/client/tests/cgroup/
H A Dcgroup_common.py190 _value = value
203 value = _value
226 _value = self.get_property(prop, pwd)[0][:-1]
227 if value != _value:
229 " real value = %s", value, _value)
/external/skia/tools/
H A Dusing_skia_and_harfbuzz.cpp31 virtual void set(std::string _value) = 0;
80 virtual void set(std::string _value) { value = atof(_value.c_str()); } argument
93 virtual void set(std::string _value) { value = _value; } argument

Completed in 696 milliseconds

12345