HomeSort by relevance Sort by last modified time
    Searched defs:_value (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/lzma/CS/7zip/Common/
CRC.cs 25 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/
CRC.java 23 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 ^ b) & 0xFF] ^ (_value >>> 8);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
Extension.java 18 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/
Extension.java 14 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/
Extension.java 14 protected String _value; field in class:Extension
22 _value = value;
30 return _value;
34 return _key + LanguageTag.SEP + _value;
  /system/security/keystore/
keystore_attestation_id.h 28 StatusOr(const status_t error) : _status(error), _value() {}
29 StatusOr(const T& value) : _status(NO_ERROR), _value(value) {}
30 StatusOr(T&& value) : _status(NO_ERROR), _value(value) {}
32 operator const T&() const { return _value; }
33 operator T&() { return _value; }
34 operator T &&() && { return std::move(_value); }
40 const T& value() const & { return _value; }
41 T& value() & { return _value; }
42 T&& value() && { return std::move(_value); }
46 T _value; member in class:android::security::StatusOr
    [all...]
  /external/clang/test/Analysis/
cfref_PR2519.c 28 // 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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
mls.py 219 def _value(self): member in class:BaseMLSComponent
251 return self._value < other._value
259 return self._value >= other._value
262 return self._value > other._value
265 return self._value <= other._value
268 return self._value < other._valu
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 68 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/
2010-07-23-DeclLoc.cpp 49 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/
DNSCache.java 153 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) {
JmDNSImpl.java 123 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;
    [all...]
  /external/xmlrpcpp/src/
XmlRpcValue.h 46 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.asInt;
185 } _value; member in class:XmlRpc::XmlRpcValue
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 1034 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
    [all...]
  /frameworks/rs/
rsHidlAdaptation.cpp 349 void * _value = (void *)value; local
350 GetIContextHandle(context)->closureSetArg(_closure, index, _value, size);
    [all...]
  /hardware/interfaces/renderscript/1.0/default/
Context.cpp 524 uintptr_t _value = hidl_to_rs<uintptr_t>(value); local
526 Device::getHal().ClosureSetArg(mContext, _closure, _index, _value, _size);
533 int64_t _value = value; local
535 Device::getHal().ClosureSetGlobal(mContext, _closure, _fieldID, _value, _size);
676 int _value = static_cast<int>(value); local
692 int64_t _value = static_cast<int64_t>(value); local
700 float _value = value; local
708 double _value = value; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-databind/2.2.2/
jackson-databind-2.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-http/8.1.14.v20131031/
jetty-http-8.1.14.v20131031.jar 
  /external/guice/extensions/persist/lib/
oro-2.0.8.jar 
db4o-6.4.14.8131-java5.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
jdepend-2.9.jar 
  /prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar 

Completed in 801 milliseconds

1 2 3 4 5