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

1 2

  /packages/apps/Email/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/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/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);
  /system/core/include/cutils/
log.h 380 #define LOG_EVENT_INT(_tag, _value) { \
381 int intBuf = _value; \
385 #define LOG_EVENT_LONG(_tag, _value) { \
386 long long longBuf = _value; \
390 #define LOG_EVENT_STRING(_tag, _value) \
  /external/libvpx/vp8/decoder/
dboolhuff.h 121 #define VP8DX_BOOL_DECODER_FILL(_count,_value,_bufptr,_bufend) \
132 (_value) |= (VP8_BD_VALUE)*(_bufptr)++ << shift; \
  /frameworks/base/tools/aapt/
StringPool.h 43 entry(const String16& _value) : value(_value), offset(0) { }
ResourceTable.h 223 const String16& _value,
ResourceTable.cpp     [all...]
  /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); \
  /external/webkit/WebCore/inspector/front-end/
AbstractTimelinePanel.js 443 var value = this._value(item);
457 return {start: 0, middle: 0, end: (this._value(item) / this.boundarySpan) * 100};
462 const label = this.formatValue(this._value(item));
475 var value = this._value(item);
489 _value: function(item)
ResourcesPanel.js 937 const label = this.formatValue(this._value(resource));
944 _value: function(resource)
    [all...]
  /dalvik/vm/mterp/common/
asm-constants.h 25 # define MTERP_CONSTANT(_name, _value) \
26 if ((_name) != (_value)) { \
28 #_name, (_value), (_name)); \
  /libcore/luni/src/main/java/java/lang/
String.java 1052 char[] _value = value; local
1110 char[] _value = value; local
1161 char[] _value = value; local
1210 char[] _value = value; local
1260 char[] _value = value; local
1289 char[] _value = value; local
    [all...]
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 451 Object _value = value;
456 if (_value == null) {
457 _value = NULL_OBJECT;
477 elementData[index + 1] = _value;
  /libcore/luni/src/main/java/java/security/
Provider.java 724 Object _value; local
735 _value = entry.getValue();
736 if (_key == null || _value == null || !(_key instanceof String)
737 || !(_value instanceof String)) {
741 String value = (String) _value;
    [all...]
  /dalvik/libdex/
DexSwapVerify.c 38 # define SWAP2(_value) (_value)
39 # define SWAP4(_value) (_value)
40 # define SWAP8(_value) (_value)
42 # define SWAP2(_value) endianSwapU2((_value))
43 # define SWAP4(_value) endianSwapU4((_value))
    [all...]
  /external/protobuf/python/
mox.py 987 self._value = value
997 return rhs[self._key] == self._value
1002 return '<map containing the entry \'%s: %s\'>' % (self._key, self._value)
    [all...]
  /external/genext2fs/
configure 1195 eval ac_env_${ac_var}_value=\$${ac_var}
1197 eval ac_cv_env_${ac_var}_value=\$${ac_var}
    [all...]
  /device/samsung/crespo/alsa-utils/
configure 1187 eval ac_env_${ac_var}_value=\$${ac_var}
1189 eval ac_cv_env_${ac_var}_value=\$${ac_var}
    [all...]

Completed in 580 milliseconds

1 2