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

1 2 3

  /external/webrtc/src/system_wrappers/source/
atomic32_linux.h 44 volatile WebRtc_Word32* _value; member in class:webrtc::Atomic32Impl
50 _value(NULL)
51 { // Align the memory associated with _value on a 32-bit boundary. This is a
55 _value = (WebRtc_Word32*) (((uintptr_t)_ptrMemory+3)&(~0x3));
56 *_value = initialValue;
69 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,1);
76 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,1);
83 *_value = *rhs._value;
89 *_value = rhs
    [all...]
atomic32_mac.h 43 volatile WebRtc_Word32* _value; member in class:webrtc::Atomic32Impl
50 _value(NULL)
51 { // Align the memory associated with _value on a 32-bit boundary. This is a
55 _value = (WebRtc_Word32*) (((uintptr_t)_ptrMemory+3)&(~0x3));
56 *_value = initialValue;
70 reinterpret_cast<volatile int32_t*>(_value));
76 reinterpret_cast<volatile int32_t*>(_value));
81 *_value = *rhs._value;
87 *_value = rhs
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
MockParserStream.java 48 public void setResult(Object _value) {
49 value = _value;
  /external/bluetooth/glib/gobject/
gvaluecollector.h 86 GValue *_value = (value); \
88 GType _value_type = G_VALUE_TYPE (_value); \
95 _vtable->value_free (_value); \
96 _value->g_type = _value_type; /* value_meminit() from gvalue.c */ \
97 memset (_value->data, 0, sizeof (_value->data)); \
123 *(__error) = _vtable->collect_value (_value, \
145 const GValue *_value = (value); \
147 GType _value_type = G_VALUE_TYPE (_value); \
178 *(__error) = _vtable->lcopy_value (_value, \
    [all...]
gclosure.c 105 #define CHANGE_FIELD(_closure, _field, _OP, _value, _must_set, _SET_OLD, _SET_NEW) \
114 tmp.closure._field _OP _value; \
122 #define SWAP(_closure, _field, _value, _oldv) CHANGE_FIELD (_closure, _field, =, _value, TRUE, *(_oldv) =, (void) )
123 #define SET(_closure, _field, _value) CHANGE_FIELD (_closure, _field, =, _value, TRUE, (void), (void) )
    [all...]
  /external/tinyxml/
tinyxml.h 280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
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;}
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
tinyxml.cpp 322 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 ) == 0
    [all...]
  /dalvik/vm/
AtomicCache.h 91 # define CACHE_XARG(_value) ,_value
93 # define CACHE_XARG(_value)
  /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
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 181 this._value = value;
208 this._cachedDescription = String(this._value);
235 if (this._value === null)
237 if (this._value instanceof Array)
239 return typeof this._value;
244 return typeof this._value === "object" && this._value !== null && Object.keys(this._value).length;
261 return new WebInspector.RemoteObjectProperty(propName, new WebInspector.LocalJSONObject(this._value[propName]));
264 this._cachedChildren = Object.keys(this._value).map(buildProperty.bind(this))
    [all...]
  /external/astl/include/
type_traits.h 71 template<typename _T, _T _value>
74 static const _T value = _value;
76 typedef integral_constant<_T, _value> type;
  /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/bluetooth/glib/tests/
hash-test.c 224 const char *_value = (const char *) value; local
230 g_assert (_value != NULL);
231 g_assert (*_value != 0);
236 g_assert (strcmp (_value, val) == 0);
248 const char *_value = (const char *) value; local
254 g_assert (_value != NULL);
255 g_assert (*_value != 0);
260 g_assert (strcmp (_value, val) == 0);
  /external/libvpx/vp8/decoder/
dboolhuff.h 51 #define VP8DX_BOOL_DECODER_FILL(_count,_value,_bufptr,_bufend) \
62 (_value) |= (VP8_BD_VALUE)*(_bufptr)++ << shift; \
  /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) {
  /system/core/include/cutils/
log.h 395 #define LOG_EVENT_INT(_tag, _value) { \
396 int intBuf = _value; \
402 #define LOG_EVENT_LONG(_tag, _value) { \
403 long long longBuf = _value; \
409 #define LOG_EVENT_STRING(_tag, _value) \
  /external/clang/test/CodeGenCXX/
2010-07-23-DeclLoc.cpp 48 T _value; member in class:TRangeValue
50 TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {};
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 97 int _value = value; local
114 values[index] = _value;
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.h 73 void set(NPObject*_value);
  /external/protobuf/src/google/protobuf/
extension_set.cc 223 return iter->second.LOWERCASE##_value; \
239 extension->LOWERCASE##_value = value; \
246 return iter->second.repeated_##LOWERCASE##_value->Get(index); \
254 iter->second.repeated_##LOWERCASE##_value->Set(index, value); \
266 extension->repeated_##LOWERCASE##_value = new RepeatedField<LOWERCASE>(); \
271 extension->repeated_##LOWERCASE##_value->Add(value); \
603 extension->repeated_##LOWERCASE##_value = \
606 extension->repeated_##LOWERCASE##_value->MergeFrom( \
607 *other_extension.repeated_##LOWERCASE##_value); \
648 other_extension.LOWERCASE##_value, \
    [all...]
extension_set_heavy.cc 258 total_size += sizeof(*repeated_##LOWERCASE##_value) + \
259 repeated_##LOWERCASE##_value->SpaceUsedExcludingSelf();\
337 for (int i = 0; i < repeated_##LOWERCASE##_value->size(); i++) { \
339 repeated_##LOWERCASE##_value->Get(i), target); \
370 for (int i = 0; i < repeated_##LOWERCASE##_value->size(); i++) { \
372 repeated_##LOWERCASE##_value->Get(i), target); \
  /frameworks/base/tools/aapt/
StringPool.h 44 entry(const String16& _value) : value(_value), offset(0), hasStyles(false) { }
  /dalvik/vm/mterp/common/
asm-constants.h 25 # define MTERP_CONSTANT(_name, _value) \
26 if ((_name) != (_value)) { \
28 #_name, (_value), (_name)); \
  /external/valgrind/main/helgrind/
helgrind.h 250 #define VALGRIND_HG_SEM_INIT_POST(_sem, _value) \
252 void*, (_sem), unsigned long, (_value))
    [all...]
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 461 Object _value = value;
466 if (_value == null) {
467 _value = NULL_OBJECT;
487 elementData[index + 1] = _value;

Completed in 1011 milliseconds

1 2 3