| /external/proguard/src/proguard/ |
| ConfigurationParser.java | 325 // Read the obligatory integer. 326 readNextWord("integer"); 328 int integer = Integer.parseInt(nextWord); local 332 return integer; 336 throw new ParseException("Expecting integer argument instead of '" + nextWord + [all...] |
| /packages/apps/Settings/src/com/android/settings/vpn2/ |
| VpnDialog.java | 285 prefixLength = Integer.parseInt(parts[1]); 288 int integer = (bytes[3] & 0xFF) | (bytes[2] & 0xFF) << 8 | local 291 (prefixLength < 32 && (integer << prefixLength) != 0)) {
|
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
| EnumMapTest.java | 97 new EnumMap(Integer.class); 225 hashColorMap.put(new Integer(1), 1); 264 .containsKey(new Integer("3"))); //$NON-NLS-1$ 275 Integer integer = new Integer("3"); //$NON-NLS-1$ local 276 enumSizeMap.put(Size.Small, integer); 284 assertSame("Clone is not shallow clone", integer, enumSizeMapClone //$NON-NLS-1$ 287 assertSame("Clone is not shallow clone", integer, enumSizeMapClone //$NON-NLS-1$ 347 mockEntry = new MockEntry(new Integer(1), 1) 435 Integer integer = new Integer("1"); \/\/$NON-NLS-1\$ local [all...] |
| /external/chromium/webkit/glue/ |
| webmediaplayer_impl.cc | 72 float integer = ceilf(microseconds); local 73 float difference = integer - microseconds; 78 integer -= 1.0f; 82 return base::TimeDelta::FromMicroseconds(static_cast<int64>(integer));
|
| /external/stlport/test/unit/ |
| type_traits_test.cpp | 21 CPPUNIT_TEST(integer); 41 void integer(); 291 void TypeTraitsTest::integer() function in class:TypeTraitsTest
|
| /libcore/luni/src/test/java/tests/api/java/util/ |
| EnumMapTest.java | 99 new EnumMap(Integer.class); 227 hashColorMap.put(new Integer(1), 1); 266 .containsKey(new Integer("3"))); 277 Integer integer = new Integer("3"); local 278 enumSizeMap.put(Size.Small, integer); 286 assertSame("Clone is not shallow clone", integer, enumSizeMapClone 289 assertSame("Clone is not shallow clone", integer, enumSizeMapClone 350 mockEntry = new MockEntry(new Integer(1), 1) 438 Integer integer = new Integer("1"); local [all...] |
| /ndk/tests/device/test-gnustl-full/unit/ |
| type_traits_test.cpp | 21 CPPUNIT_TEST(integer); 41 void integer(); 291 void TypeTraitsTest::integer() function in class:TypeTraitsTest
|
| /ndk/tests/device/test-stlport/unit/ |
| type_traits_test.cpp | 21 CPPUNIT_TEST(integer); 41 void integer(); 291 void TypeTraitsTest::integer() function in class:TypeTraitsTest
|
| /packages/apps/Exchange/src/com/android/exchange/provider/ |
| ExchangeDirectoryProvider.java | 92 final HashMap<String, Integer> columnMap = new HashMap<String, Integer>(); 134 Integer integer = mProjection.columnMap.get(columnName); local 135 if (integer != null) { 136 row[integer] = value; 278 limit = Integer.parseInt(limitString);
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| NameSplitter.java | 156 Integer integer = values.getAsInteger(StructuredName.FULL_NAME_STYLE); local 157 fullNameStyle = integer == null ? FullNameStyle.UNDEFINED : integer; 163 integer = values.getAsInteger(StructuredName.PHONETIC_NAME_STYLE); 164 phoneticNameStyle = integer == null ? PhoneticNameStyle.UNDEFINED : integer; [all...] |
| /external/bluetooth/glib/glib/ |
| goption.c | 52 gint integer; member in union:__anon2082::__anon2083 850 _("Cannot parse integer value '%s' for %s"), 860 _("Integer value '%s' for %s out of range"), 920 _("Cannot parse integer value '%s' for %s"), 928 _("Integer value '%s' for %s out of range"), 1123 change->prev.integer = *(gint *)entry->arg_data; [all...] |
| /external/chromium/third_party/libevent/test/ |
| regress.c | 1366 uint32_t integer; local 1379 if (evtag_decode_int(&integer, tmp) == -1) { 1383 if (integer != integers[i]) { 1385 integer, integers[i]); 1449 uint32_t integer; local 1462 if (evtag_decode_tag(&integer, tmp) == -1) { 1466 if (integer != integers[i]) { 1468 integer, integers[i]); [all...] |
| /external/speex/libspeex/ |
| preprocess.c | 358 float integer, frac; local 365 integer = floor(2*x); 366 ind = (int)integer; 371 frac = 2*x-integer; [all...] |
| /external/bison/src/ |
| parse-gram.c | 283 int integer; member in union:YYSTYPE 647 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"", [all...] |
| vcg.h | 100 int integer; member in struct:infoname 482 selected by the color map index, an integer, for instance red has 650 Infoname is given by an integer and a string. 654 /* Colorentry allows to fill the color map. A color is a triplet of integer 655 values for the red/green/blue-part. Each integer is between 0 (off) and [all...] |
| /external/tcpdump/ |
| print-snmp.c | 89 "Integer", 90 #define INTEGER 2 332 int32_t integer; member in union:be::__anon11714 514 case INTEGER: { 524 elem->data.integer = data; 731 printf("%d", elem->data.integer); 968 ok = (elem->data.integer >= smiRange->minValue.value.integer32 969 && elem->data.integer <= smiRange->maxValue.value.integer32); 1109 /* apply display hints (integer, octetstring) */ 1145 == elem->data.integer) { [all...] |
| /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
| PluginObject.cpp | 415 int32_t integer = NPVARIANT_TO_INT32(variant); local 416 return browser->getintidentifier(integer); 424 int32_t integer = static_cast<int32_t>(value); local 425 return browser->getintidentifier(integer); 460 int32_t integer = browser->intfromidentifier(identifier); 461 INT32_TO_NPVARIANT(integer, *result); [all...] |
| /libcore/luni/src/main/java/java/math/ |
| BigDecimal.java | 28 * This class represents immutable integer numbers of arbitrary length. Large 33 * Since the class was modeled to offer all the functionality as the {@link Integer} 218 * The arbitrary precision integer (unscaled value) in the internal 228 * The 32-bit integer scale in the internal representation of {@code BigDecimal}. 342 newScale = (long)scale - Integer.parseInt(scaleString); 559 * Constructs a new {@code BigDecimal} instance from the given big integer 571 * Constructs a new {@code BigDecimal} instance from the given big integer 2800 long integer = unscaledVal \/ sizeOfFraction; local [all...] |
| /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
| target.h | 102 /* Assembler instructions for creating various kinds of integer object. */ 112 /* Try to output the assembler code for an integer object whose 117 bool (* integer) (rtx x, unsigned int size, int aligned_p); member in struct:gcc_target::asm_out [all...] |
| /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
| target.h | 102 /* Assembler instructions for creating various kinds of integer object. */ 112 /* Try to output the assembler code for an integer object whose 117 bool (* integer) (rtx x, unsigned int size, int aligned_p); member in struct:gcc_target::asm_out [all...] |
| /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/ |
| target.h | 102 /* Assembler instructions for creating various kinds of integer object. */ 112 /* Try to output the assembler code for an integer object whose 117 bool (* integer) (rtx x, unsigned int size, int aligned_p); member in struct:gcc_target::asm_out [all...] |
| /bionic/libc/kernel/common/sound/ |
| asound.h | 307 integer:1, member in struct:snd_interval 776 } integer; member in union:snd_ctl_elem_info::__anon530 809 } integer; member in union:snd_ctl_elem_value::__anon535 [all...] |
| /external/kernel-headers/original/sound/ |
| asound.h | 338 integer:1, member in struct:snd_interval 719 #define SNDRV_CTL_ELEM_TYPE_INTEGER ((__force snd_ctl_elem_type_t) 2) /* integer type */ 723 #define SNDRV_CTL_ELEM_TYPE_INTEGER64 ((__force snd_ctl_elem_type_t) 6) /* 64-bit integer type */ 789 } integer; member in union:snd_ctl_elem_info::__anon7539 816 } integer; member in union:snd_ctl_elem_value::__anon7544 [all...] |
| /external/openssl/crypto/asn1/ |
| asn1.h | 530 ASN1_INTEGER * integer; member in union:asn1_type_st::__anon8899 [all...] |
| /external/openssl/include/openssl/ |
| asn1.h | 530 ASN1_INTEGER * integer; member in union:asn1_type_st::__anon9069 [all...] |