HomeSort by relevance Sort by last modified time
    Searched full:integer (Results 651 - 675 of 21762) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4545.go 16 fmt.Println(1.0 + 1<<s) // ERROR "invalid operation|non-integer type|incompatible type"
17 x := 1.0 + 1<<s // ERROR "invalid operation|non-integer type"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4085a.go 13 _ = make(T, 0.5) // ERROR "constant 0.5 truncated to integer|non-integer len argument"
issue4545.go 16 fmt.Println(1.0 + 1<<s) // ERROR "invalid operation|non-integer type|incompatible type"
17 x := 1.0 + 1<<s // ERROR "invalid operation|non-integer type"
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
EditableItemConstants.java 38 public static final Integer PRESET_CUSTOM = R.string.preset_custom;
39 public static final Integer PRESET_BASIC = R.string.preset_basic;
40 public static final Integer PRESET_EMAIL = R.string.preset_email;
41 public static final Integer PRESET_PHOTO = R.string.preset_photo;
43 public static final Integer STYLE_NONE = R.string.style_none;
44 public static final Integer STYLE_BIG_PICTURE = R.string.style_big_picture;
45 public static final Integer STYLE_BIG_TEXT = R.string.style_big_text;
46 public static final Integer STYLE_INBOX = R.string.style_inbox;
  /system/core/libpackagelistparser/
Android.mk 14 LOCAL_SANITIZE := integer
30 LOCAL_SANITIZE := integer
  /system/extras/libfec/test/
Android.mk 7 LOCAL_SANITIZE := integer
23 LOCAL_SANITIZE := integer
  /external/clang/test/Sema/
conversion.c 11 c = s; // expected-warning {{implicit conversion loses integer precision}}
12 c = i; // expected-warning {{implicit conversion loses integer precision}}
13 c = l; // expected-warning {{implicit conversion loses integer precision}}
16 s = i; // expected-warning {{implicit conversion loses integer precision}}
17 s = l; // expected-warning {{implicit conversion loses integer precision}}
21 i = l; // expected-warning {{implicit conversion loses integer precision}}
63 return (long long) ll; // expected-warning {{implicit conversion loses integer precision}}
66 return (long) ll; // expected-warning {{implicit conversion loses integer precision}}
69 return (int) ll; // expected-warning {{implicit conversion loses integer precision}}
72 return (short) ll; // expected-warning {{implicit conversion loses integer precision}
    [all...]
  /frameworks/base/docs/image_sources/training/wear/
wear_cloud_node.graffle 17 <integer>11</integer>
23 <integer>3</integer>
74 <integer>0</integer>
84 <integer>2</integer>
95 <integer>0</integer>
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SetsTest.java 69 private static final Collection<Integer> EMPTY_COLLECTION
70 = Arrays.<Integer>asList();
72 private static final Collection<Integer> SOME_COLLECTION
75 private static final Iterable<Integer> SOME_ITERABLE
76 = new Iterable<Integer>() {
78 public Iterator<Integer> iterator() {
83 private static final List<Integer> LONGER_LIST
86 private static final Comparator<Integer> SOME_COMPARATOR
148 HashSet<Integer> set = Sets.newHashSet();
153 HashSet<Integer> set = Sets.newHashSet(0, 1, 1)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetMultimapTest.java 74 ImmutableSetMultimap<String, Integer> multimap = new Builder<String, Integer>()
81 Builder<String, Integer> builder = new Builder<String, Integer>();
83 builder.put(Maps.immutableEntry("one", (Integer) null));
99 ImmutableSetMultimap.Builder<String, Integer> builder =
100 new Builder<String, Integer>();
103 Entry<String, Integer> entry = new AbstractMapEntry<String, Integer>() {
107 @Override public Integer getValue()
    [all...]
ListsTest.java 68 private static final Collection<Integer> SOME_COLLECTION
71 private static final Iterable<Integer> SOME_ITERABLE = new SomeIterable();
81 private static class SomeIterable implements Iterable<Integer>, Serializable {
83 public Iterator<Integer> iterator() {
89 private static final List<Integer> SOME_LIST
92 private static final List<Integer> SOME_SEQUENTIAL_LIST
275 ArrayList<Integer> list = Lists.newArrayList();
280 ArrayList<Integer> list = Lists.newArrayListWithCapacity(0);
283 ArrayList<Integer> bigger = Lists.newArrayListWithCapacity(256);
296 ArrayList<Integer> list = Lists.newArrayListWithExpectedSize(0)
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentSkipListSetTest.java 45 private ConcurrentSkipListSet<Integer> populatedSet(int n) {
46 ConcurrentSkipListSet<Integer> q =
47 new ConcurrentSkipListSet<Integer>();
50 assertTrue(q.add(new Integer(i)));
52 assertTrue(q.add(new Integer(i)));
95 new ConcurrentSkipListSet(Arrays.asList(new Integer[SIZE]));
104 Integer[] ints = new Integer[SIZE];
106 ints[i] = new Integer(i);
117 Integer[] ints = new Integer[SIZE]
    [all...]
ConcurrentLinkedQueueTest.java 37 private ConcurrentLinkedQueue<Integer> populatedQueue(int n) {
38 ConcurrentLinkedQueue<Integer> q = new ConcurrentLinkedQueue<Integer>();
41 assertTrue(q.offer(new Integer(i)));
69 new ConcurrentLinkedQueue(Arrays.asList(new Integer[SIZE]));
78 Integer[] ints = new Integer[SIZE];
80 ints[i] = new Integer(i);
91 Integer[] ints = new Integer[SIZE]
    [all...]
  /frameworks/base/docs/image_sources/providers/
datamodel.graffle 6 <integer>0</integer>
21 <integer>2</integer>
39 <integer>1</integer>
49 <integer>6</integer>
58 <integer>29</integer>
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PredicatesTest.java 44 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
45 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
46 private static final Predicate<Integer> NEVER_REACHED =
47 new Predicate<Integer>() {
49 public boolean apply(Integer i) {
56 static class IsOdd implements Predicate<Integer>, Serializable {
59 public boolean apply(Integer i) {
235 Collection<Predicate<Integer>> empty = Arrays.asList();
322 Predicate<Integer> falseOrFalse = Predicates.or(FALSE, FALSE);
323 Predicate<Integer> falseOrTrue = Predicates.or(FALSE, TRUE)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
SubscriptionManagerFacade.java 48 public Integer subscriptionGetDefaultSubId() {
53 public Integer subscriptionGetDefaultDataSubId() {
60 Integer subId) {
65 public Integer subscriptionGetDefaultVoiceSubId() {
72 Integer subId) {
77 public Integer subscriptionGetDefaultSmsSubId() {
84 Integer subId) {
101 Integer subId) {
106 public Integer subscriptionSetDataRoaming(
107 @RpcParameter(name = "roaming") Integer roaming
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 56 Integer[] array = { 2, 45, 7, -12, 9, 23, 17, 1118, 10, 16, 39 };
57 List<Integer> list = Arrays.asList(array);
58 PriorityQueue<Integer> integerQueue = new PriorityQueue<Integer>(list);
74 PriorityQueue<Integer> srcIntegerQueue = new PriorityQueue<Integer>(
76 new SerializationTester<PriorityQueue<Integer>>(srcIntegerQueue, s) {
77 @Override protected boolean equals(PriorityQueue<Integer> a, PriorityQueue<Integer> b) {
111 PriorityQueue<Integer> q = new PriorityQueue<Integer>()
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 241 HashMap<Integer, String> value = new HashMap<Integer, String>();
277 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>();
290 (Integer) val);
309 HashMap<Integer, String> value = new HashMap<Integer, String>();
336 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>()
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
CarPropertyConfigTest.java 73 CarPropertyConfig<Integer[]> config = CarPropertyConfig
74 .newBuilder(Integer[].class, PROPERTY_ID, CAR_AREA_TYPE)
76 .addAreaConfig(WINDOW_DRIVER, new Integer[] {10, 20, 30}, new Integer[0])
81 CarPropertyConfig<Integer[]> configRead = readFromParcel();
85 assertEquals(Integer[].class, configRead.getPropertyType());
103 CarPropertyConfig<Integer> integerConfig = readFromParcel();
104 Integer value = integerConfig.getMinValue(WINDOW_PASSENGER);
107 // Expected. Wrote float, attempted to read integer.
115 int intValue = (Integer) rawTypeConfig.getMinValue(WINDOW_PASSENGER)
    [all...]
  /cts/tests/app/src/android/app/cts/
ActivityManagerMemoryClassTest.java 46 private static final Map<Integer, Integer> expectedMemorySizeForWatch
47 = new HashMap<Integer, Integer>();
48 private static final Map<Integer, Integer> expectedMemorySizeForSmallNormalScreen
49 = new HashMap<Integer, Integer>();
50 private static final Map<Integer, Integer> expectedMemorySizeForLargeScree
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ValueIterator.java 12 * int is the sorted integer index in ascending order, and Object its
14 * <p>The ValueIterator allows iterations over integer indexes in the range
15 * of Integer.MIN_VALUE to Integer.MAX_VALUE inclusive. Implementations of
28 * Integer.toHexString(result.integer) +
41 * integer index and its associated value Object.
49 * Integer index of the current iteration
52 public int integer; field in class:ValueIterator.Element
54 * Gets the Object value associated with the integer index
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDatabaseConstants.java 74 * Type: INTEGER
123 " INTEGER PRIMARY KEY AUTOINCREMENT," +
124 COLUMN_DEVICE_ID + " INTEGER," +
125 COLUMN_STORAGE_ID + " INTEGER," +
126 COLUMN_OBJECT_HANDLE + " INTEGER," +
127 COLUMN_PARENT_DOCUMENT_ID + " INTEGER," +
128 COLUMN_ROW_STATE + " INTEGER NOT NULL," +
129 COLUMN_DOCUMENT_TYPE + " INTEGER NOT NULL," +
134 Document.COLUMN_LAST_MODIFIED + " INTEGER," +
135 Document.COLUMN_ICON + " INTEGER,"
    [all...]
  /frameworks/support/compat/java/android/support/v4/util/
CircularIntArray.java 17 * CircularIntArray is a circular integer array data structure that provides O(1) random read, O(1)
68 if (Integer.bitCount(minCapacity) != 1) {
69 arrayCapacity = Integer.highestOneBit(minCapacity - 1) << 1;
79 * Add an integer in front of the CircularIntArray.
80 * @param e Integer to add.
91 * Add an integer at end of the CircularIntArray.
92 * @param e Integer to add.
103 * Remove first integer from front of the CircularIntArray and return it.
104 * @return The integer removed.
115 * Remove last integer from end of the CircularIntArray and return it
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 42 { Photos._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },
44 { Photos.ACCOUNT_ID, "INTEGER NOT NULL" },
45 { Photos.WIDTH, "INTEGER NOT NULL" },
46 { Photos.HEIGHT, "INTEGER NOT NULL" },
47 { Photos.DATE_TAKEN, "INTEGER NOT NULL" },
49 { Photos.ALBUM_ID, "INTEGER" },
52 { Photos.DATE_MODIFIED, "INTEGER" },
53 { Photos.ROTATION, "INTEGER" },
57 { Albums._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },
59 { Albums.ACCOUNT_ID, "INTEGER NOT NULL" }
    [all...]
  /external/ppp/pppd/plugins/radius/
radiusclient.h 104 #define PW_NAS_PORT 5 /* integer */
105 #define PW_SERVICE_TYPE 6 /* integer */
106 #define PW_FRAMED_PROTOCOL 7 /* integer */
109 #define PW_FRAMED_ROUTING 10 /* integer */
111 #define PW_FRAMED_MTU 12 /* integer */
112 #define PW_FRAMED_COMPRESSION 13 /* integer */
114 #define PW_LOGIN_SERVICE 15 /* integer */
115 #define PW_LOGIN_PORT 16 /* integer */
122 #define PW_FRAMED_IPX_NETWORK 23 /* integer */
126 #define PW_SESSION_TIMEOUT 27 /* integer */
    [all...]

Completed in 807 milliseconds

<<21222324252627282930>>