/system/core/libpixelflinger/tinyutils/ |
TypeHelpers.h | 24 template <typename T> struct trait_trivial_ctor { enum { value = false }; }; enumerator in enum:android::trait_trivial_ctor::__anon13084 25 template <typename T> struct trait_trivial_dtor { enum { value = false }; }; enumerator in enum:android::trait_trivial_dtor::__anon13085 26 template <typename T> struct trait_trivial_copy { enum { value = false }; }; enumerator in enum:android::trait_trivial_copy::__anon13086 27 template <typename T> struct trait_trivial_assign{ enum { value = false }; }; enumerator in enum:android::trait_trivial_assign::__anon13087 29 template <typename T> struct trait_pointer { enum { value = false }; }; enumerator in enum:android::trait_pointer::__anon13088 30 template <typename T> struct trait_pointer<T*> { enum { value = true }; }; enumerator in enum:android::trait_pointer::__anon13089 33 template<> struct trait_trivial_ctor< T > { enum { value = true }; }; \ 34 template<> struct trait_trivial_dtor< T > { enum { value = true }; }; \ 35 template<> struct trait_trivial_copy< T > { enum { value = true }; }; \ 36 template<> struct trait_trivial_assign< T >{ enum { value = true }; }; 212 VALUE value; member in struct:android::key_value_pair_t 225 { enum { value = aggregate_traits<K,V>::has_trivial_ctor }; }; enumerator in enum:android::trait_trivial_ctor::__anon13092 229 { enum { value = aggregate_traits<K,V>::has_trivial_dtor }; }; enumerator in enum:android::trait_trivial_dtor::__anon13093 233 { enum { value = aggregate_traits<K,V>::has_trivial_copy }; }; enumerator in enum:android::trait_trivial_copy::__anon13094 237 { enum { value = aggregate_traits<K,V>::has_trivial_assign};}; enumerator in enum:android::trait_trivial_assign::__anon13095 [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
MessageTest.java | 36 public static final int VALUE = 3; 280 bundle.putInt(KEY, VALUE); 287 assertEquals(VALUE, mMessage.getData().getInt(KEY)); 318 bundle.putInt(KEY, VALUE); 328 assertEquals(VALUE, mMessage.getData().getInt(KEY));
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Settings_NameValueTableTest.java | 42 String value = "value1"; local 51 MyNameValueTable.putString(cr, uri, name, value); 64 assertEquals("value1", c.getString(c.getColumnIndexOrThrow(NameValueTable.VALUE))); 94 String value) { 95 return NameValueTable.putString(resolver, uri, name, value);
|
ContactsTest.java | 98 ContentValues value = new ContentValues(); local 99 value.put(PeopleColumns.NAME, insertPeopleName); 100 value.put(PeopleColumns.NOTES, insertPeopleNotes); 101 value.put(PeopleColumns.LAST_TIME_CONTACTED, 0); 102 value.put(PeopleColumns.CUSTOM_RINGTONE, (String) null); 103 value.put(PeopleColumns.SEND_TO_VOICEMAIL, 1); 105 Uri uri = mProvider.insert(People.CONTENT_URI, value); 122 value.clear(); 124 value.put(PeopleColumns.NAME, updatePeopleName); 125 value.put(PeopleColumns.NOTES, updatePeopleNotes) 184 ContentValues value = new ContentValues(); local 268 ContentValues value = new ContentValues(); local 354 ContentValues value = new ContentValues(); local 436 ContentValues value = new ContentValues(); local 526 ContentValues value = new ContentValues(); local 616 ContentValues value = new ContentValues(); local 702 ContentValues value = new ContentValues(); local 817 ContentValues value = new ContentValues(); local 885 ContentValues value = new ContentValues(); local [all...] |
/external/bluetooth/glib/ |
acglib.m4 | 26 dnl GLIB_IF_VAR_EQ (ENV_VAR, VALUE [, EQUALS_ACTION] [, ELSE_ACTION]) 103 [AC_CACHE_CHECK([value of $1], AS_TR_SH([glib_cv_value_$1]),
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
output.h | 72 that INSN is the insn being scanned. Value returned is the next insn to 198 initial value (that will be done by the caller). */ 243 be followed immediately by the object's initial value. */ 247 start of the line, followed immediately by the value of X. */ 259 /* An interface to assemble_integer for the common case in which a value is 260 fully aligned and must be printed. VALUE is the value of the integer 262 #define assemble_aligned_integer(SIZE, VALUE) \ 263 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1) 291 /* Return nonzero if VALUE is a valid constant-valued expressio [all...] |
system.h | 248 /* A macro to determine whether a VALUE lies inclusively within a 249 certain range without evaluating the VALUE more than once. This 250 macro won't warn if the VALUE is unsigned and the LOWER bound is 251 zero, as it would e.g. with "VALUE >= 0 && ...". Note the LOWER 255 #define IN_RANGE(VALUE, LOWER, UPPER) \ 256 ((unsigned HOST_WIDE_INT) (VALUE) - (unsigned HOST_WIDE_INT) (LOWER) \ 563 the most likely value of A is B. This feature was added at some point 784 modify its argument and the return value is only used in a const
|
tree.h | 69 but usually no interesting value. */ 341 INTEGER_CST -- represents a constant integer value. 636 #define TREE_SET_CODE(NODE, VALUE) ((NODE)->base.code = (VALUE)) 1470 tree value; local 1529 tree value; local [all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
symshift.pl | 54 $VALUE = 1;
|
genlingware.pl | 25 5. header fields (space separated) (key/value pairs) 65 $VALUE = 1; 74 "value=i" => \$VALUE, # numeric 247 ($key, $value) = split; 249 $value =~ s/^\s*\"(.*)\"\s*$/\1/; 251 $fields[$field] = {key => "$key", value => "$value"}; 254 #print "$key -> $value\n"; 259 push @kb, {name => $key, file => $value, id => $id} [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 396 // Adding another value to assert 589 values.put(Extensions.VALUE, "Bar"); 609 values.put(Extensions.VALUE, "Bar"); 615 values.put(Extensions.VALUE, "Baz"); [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsBackupAgent.java | 82 Settings.NameValueTable.VALUE 267 cv.put(Settings.NameValueTable.VALUE, settingValue); 322 String value = sortedCursor.getString(COLUMN_VALUE); local 327 if (TextUtils.isEmpty(value)) { 331 valueBytes = value.toString().getBytes(); 333 //Log.i(TAG, "Backing up " + name + " = " + value); 421 * @param value integer to write 424 private int writeInt(byte[] out, int pos, int value) { 425 out[pos + 0] = (byte) ((value >> 24) & 0xFF); 426 out[pos + 1] = (byte) ((value >> 16) & 0xFF) [all...] |
/packages/apps/IM/src/com/android/im/service/ |
ImConnectionAdapter.java | 55 Imps.SessionCookies.VALUE, 291 values.put(Imps.SessionCookies.VALUE, entry.getValue());
|
/frameworks/base/core/java/android/provider/ |
Contacts.java | 129 * The value of this setting. 134 public static final String VALUE = "value"; 206 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE}, 221 String value) { 230 values.put(VALUE, value); [all...] |
Calendar.java | 72 * to specify that it is a sync adapter. The default value is false. If true 86 * <P>Type: INTEGER (color value)</P> 643 ExtendedProperties.VALUE 781 extendedValues.put(ExtendedProperties.VALUE, [all...] |
Settings.java | 533 * Common base for tables of name/value settings. 537 public static final String VALUE = "value"; 540 String name, String value) { 545 values.put(VALUE, value); 565 new String[] { Settings.NameValueTable.VALUE }; 620 String value = b.getPairValue(); local 622 mValues.put(name, value); 624 return value; 643 String value = c.moveToNext() ? c.getString(0) : null; local 844 long value; local 2107 long value; local [all...] |
/packages/apps/IM/src/com/android/im/app/ |
DatabaseUtils.java | 204 settingValue.put(Imps.ProviderSettings.VALUE, entry.getValue());
|
ImPluginHelper.java | 245 settingValue.put(Imps.ProviderSettings.VALUE, entry.getValue());
|
PreferenceActivity.java | 112 String value = mPref.get(prefName); local 114 return value == null ? defaultValue : value; 211 private ContentValues getValues(String name, String value) { 215 values.put(Imps.ProviderSettings.VALUE, value);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 447 sExtensionProjectionMap.put(android.provider.Contacts.Extensions.VALUE, 448 android.provider.Contacts.Extensions.VALUE); 1338 String value = cursor.getString(SettingsMatchQuery.SHOULD_SYNC); local [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/cp/ |
cp-tree.h | 176 This is an expression with POINTER_TYPE that gives the value 237 keyword. C_RID_CODE (node) is then the RID_* value of the keyword, 361 to which the conversion should occur. This value is important if 404 VALUE field is a DECL for the associated declaration. Thus, 423 #define SET_IDENTIFIER_LABEL_VALUE(NODE, VALUE) \ 424 IDENTIFIER_LABEL_VALUE (NODE) = (VALUE) 803 default value appropriate for the kind of class (i.e., struct, 909 a return statement that specifies a return value is seen. */ 1071 tree value; local [all...] |
/packages/apps/Email/src/com/android/exchange/adapter/ |
CalendarSyncAdapter.java | 571 // by setting organizerEmail to a bogus value and by setting the upsync prohibited [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 81 * a (key, value) pair. This is used for updating events. 85 String value; field in class:CalendarProvider2Test.KeyValue 87 public KeyValue(String key, String value) { 89 this.value = value; 142 * with an array of (key, value) pairs. Both the key and value are 165 String value = pair.value; local 168 map.put(pair.key, Integer.parseInt(value)); 1247 String value = subContentValues.getAsString( local 1916 String value = cache.readData(null); local [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/ |
arm.h | 273 {"arch", "%{!march=*:%{!mcpu=*:-march=%(VALUE)}}" }, \ 274 {"cpu", "%{!march=*:%{!mcpu=*:-mcpu=%(VALUE)}}" }, \ 275 {"tune", "%{!mcpu=*:%{!mtune=*:-mtune=%(VALUE)}}" }, \ 277 "%{!msoft-float:%{!mhard-float:%{!mfloat-abi=*:-mfloat-abi=%(VALUE)}}}" }, \ 278 {"fpu", "%{!mfpu=*:-mfpu=%(VALUE)}"}, \ 279 {"abi", "%{!mabi=*:-mabi=%(VALUE)}"}, \ 280 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"}, 472 the value is constrained to be within the bounds of the declared 584 value set in previous versions of this toolchain was 8, which produces more 586 can be used to change this value. For compatibility with the ARM SD [all...] |
/cts/tools/signature-tools/lib/ |
stringtemplate.jar | |