Searched defs:_value (Results 1 - 25 of 37) sorted by relevance

12

/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;
/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;
/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;
/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/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/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/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/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp49 T _value; member in class:TRangeValue
51 TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {};
/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) {
H A DJmDNSImpl.java123 private final String _value; field in class:JmDNSImpl.ServiceTypeEntry.SubTypeEntry
127 _value = (subtype != null ? subtype : "");
128 _key = _value.toLowerCase();
144 return _value;
177 return (_key == null ? 0 : _key.hashCode()) ^ (_value == null ? 0 : _value.hashCode());
195 return _key + "=" + _value;
/external/libopus/celt/
H A Dentenc.c60 static int ec_write_byte(ec_enc *_this,unsigned _value){ argument
62 _this->buf[_this->offs++]=(unsigned char)_value;
66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ argument
68 _this->buf[_this->storage-++(_this->end_offs)]=(unsigned char)_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
/external/xmlrpcpp/src/
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/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
366 if ( strcmp( node->Value(), _value ) == 0 )
373 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
378 if ( strcmp( node->Value(), _value ) == 0 )
413 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
418 if ( strcmp( node->Value(), _value ) == 0 )
425 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const
430 if ( strcmp( node->Value(), _value ) == 0 )
467 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const
471 for ( node = FirstChild( _value );
525 TiXmlElement(const char * _value) argument
[all...]
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.cpp322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
327 if ( strcmp( node->Value(), _value ) == 0 )
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value )
339 if ( strcmp( node->Value(), _value ) == 0 )
346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
351 if ( strcmp( node->Value(), _value ) == 0 )
357 TiXmlNode* TiXmlNode::LastChild( const char * _value )
362 if ( strcmp( node->Value(), _value ) == 0 )
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
425 if ( strcmp( node->Value(), _value )
611 TiXmlElement(const char * _value) argument
[all...]
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/llvm/include/llvm/Support/
H A DYAMLTraits.h1034 ScalarHNode(Node *n, StringRef s) : HNode(n), _value(s) { }
1036 StringRef value() const { return _value; }
1044 StringRef _value; member in class:llvm::yaml::Input::ScalarHNode
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLTraits.h1128 ScalarHNode(Node *n, StringRef s) : HNode(n), _value(s) { }
1130 StringRef value() const { return _value; }
1140 StringRef _value; member in class:llvm::yaml::Input::ScalarHNode
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1725 IntWrapper(int _value) : value(_value) {} argument
1734 FloatWrapper(float _value) : value(_value) {} argument
/external/guice/extensions/persist/lib/
H A Doro-2.0.8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/oro/ org/apache/oro/io/ ...
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jar ... byte _tag private int _nameIndex private int _typeIndex private Object _value private final jdepend.framework.ClassFileParser this$0 ...
/external/guice/extensions/struts2/lib/
H A Djetty-util-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...
/external/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...

Completed in 778 milliseconds

12