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

1 2 3 4 5 6 7 8 91011>>

  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
IntModuleIncludingDoubleAndFloat.java 23 final int integer; field in class:IntModuleIncludingDoubleAndFloat
25 IntModuleIncludingDoubleAndFloat(int integer) {
26 this.integer = integer;
30 int integer() { method in class:IntModuleIncludingDoubleAndFloat
31 return integer;
  /external/eigen/blas/f2c/
complexdots.c 21 complex cdotc_(integer *n, complex *cx, integer
22 *incx, complex *cy, integer *incy)
25 extern /* Subroutine */ int cdotcw_(integer *, complex *, integer *,
26 complex *, integer *, complex *);
37 complex cdotu_(integer *n, complex *cx, integer
38 *incx, complex *cy, integer *incy)
41 extern /* Subroutine */ int cdotuw_(integer *, complex *, integer *,
    [all...]
  /external/v8/tools/clang/plugins/tests/
auto_raw_pointer.cpp 13 int integer; local
16 auto int_copy = integer;
17 const auto const_int_copy = integer;
18 const auto& const_int_ref = integer;
20 auto raw_int_ptr = &integer;
21 const auto const_raw_int_ptr = &integer;
22 const auto& const_raw_int_ptr_ref = &integer;
24 auto* raw_int_ptr_valid = &integer;
25 const auto* const_raw_int_ptr_valid = &integer;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4813.go 31 a3 = A[f2] // ERROR "truncated|must be integer"
33 a5 = A[c2] // ERROR "truncated|must be integer"
34 a6 = A[vf] // ERROR "non-integer|must be integer"
35 a7 = A[vc] // ERROR "non-integer|must be integer"
39 s3 = S[f2] // ERROR "truncated|must be integer"
41 s5 = S[c2] // ERROR "truncated|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
    [all...]
issue13471.go 12 const _ int64 = 1e646456992 // ERROR "1e\+646456992 overflows integer"
13 const _ int32 = 1e64645699 // ERROR "1e\+64645699 overflows integer"
14 const _ int16 = 1e6464569 // ERROR "1e\+6464569 overflows integer"
15 const _ int8 = 1e646456 // ERROR "1e\+646456 overflows integer"
16 const _ int = 1e64645 // ERROR "1e\+64645 overflows integer"
18 const _ uint64 = 1e646456992 // ERROR "1e\+646456992 overflows integer"
19 const _ uint32 = 1e64645699 // ERROR "1e\+64645699 overflows integer"
20 const _ uint16 = 1e6464569 // ERROR "1e\+6464569 overflows integer"
21 const _ uint8 = 1e646456 // ERROR "1e\+646456 overflows integer"
22 const _ uint = 1e64645 // ERROR "1e\+64645 overflows integer"
    [all...]
issue7223.go 15 _ = make([]byte, nil) // ERROR "non-integer.*len"
16 _ = make([]byte, nil, 2) // ERROR "non-integer.*len"
17 _ = make([]byte, 1, nil) // ERROR "non-integer.*cap"
18 _ = make([]byte, true) // ERROR "non-integer.*len"
19 _ = make([]byte, "abc") // ERROR "non-integer.*len"
issue16949.go 7 // Ensure that typed non-integer len and cap make arguments are not accepted.
15 sink = make([]byte, float32(1.0)) // ERROR "non-integer.*len"
16 sink = make([]byte, float64(1.0)) // ERROR "non-integer.*len"
19 sink = make([]byte, 0, float32(1.0)) // ERROR "non-integer.*cap"
20 sink = make([]byte, 0, float64(1.0)) // ERROR "non-integer.*cap"
23 sink = make([]byte, complex64(1+0i)) // ERROR "non-integer.*len"
24 sink = make([]byte, complex128(1+0i)) // ERROR "non-integer.*len"
27 sink = make([]byte, 0, complex64(1+0i)) // ERROR "non-integer.*cap"
28 sink = make([]byte, 0, complex128(1+0i)) // ERROR "non-integer.*cap"
bug205.go 14 println(t["hi"]); // ERROR "non-integer slice index|must be integer"
15 println(s["hi"]); // ERROR "non-integer string index|must be integer"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4813.go 31 a3 = A[f2] // ERROR "truncated|must be integer"
33 a5 = A[c2] // ERROR "truncated|must be integer"
34 a6 = A[vf] // ERROR "non-integer|must be integer"
35 a7 = A[vc] // ERROR "non-integer|must be integer"
39 s3 = S[f2] // ERROR "truncated|must be integer"
41 s5 = S[c2] // ERROR "truncated|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
    [all...]
issue13471.go 12 const _ int64 = 1e646456992 // ERROR "1e\+646456992 overflows integer"
13 const _ int32 = 1e64645699 // ERROR "1e\+64645699 overflows integer"
14 const _ int16 = 1e6464569 // ERROR "1e\+6464569 overflows integer"
15 const _ int8 = 1e646456 // ERROR "1e\+646456 overflows integer"
16 const _ int = 1e64645 // ERROR "1e\+64645 overflows integer"
18 const _ uint64 = 1e646456992 // ERROR "1e\+646456992 overflows integer"
19 const _ uint32 = 1e64645699 // ERROR "1e\+64645699 overflows integer"
20 const _ uint16 = 1e6464569 // ERROR "1e\+6464569 overflows integer"
21 const _ uint8 = 1e646456 // ERROR "1e\+646456 overflows integer"
22 const _ uint = 1e64645 // ERROR "1e\+64645 overflows integer"
    [all...]
issue7223.go 15 _ = make([]byte, nil) // ERROR "non-integer.*len"
16 _ = make([]byte, nil, 2) // ERROR "non-integer.*len"
17 _ = make([]byte, 1, nil) // ERROR "non-integer.*cap"
18 _ = make([]byte, true) // ERROR "non-integer.*len"
19 _ = make([]byte, "abc") // ERROR "non-integer.*len"
issue16949.go 7 // Ensure that typed non-integer len and cap make arguments are not accepted.
15 sink = make([]byte, float32(1.0)) // ERROR "non-integer.*len"
16 sink = make([]byte, float64(1.0)) // ERROR "non-integer.*len"
19 sink = make([]byte, 0, float32(1.0)) // ERROR "non-integer.*cap"
20 sink = make([]byte, 0, float64(1.0)) // ERROR "non-integer.*cap"
23 sink = make([]byte, complex64(1+0i)) // ERROR "non-integer.*len"
24 sink = make([]byte, complex128(1+0i)) // ERROR "non-integer.*len"
27 sink = make([]byte, 0, complex64(1+0i)) // ERROR "non-integer.*cap"
28 sink = make([]byte, 0, complex128(1+0i)) // ERROR "non-integer.*cap"
bug205.go 14 println(t["hi"]); // ERROR "non-integer slice index|must be integer"
15 println(s["hi"]); // ERROR "non-integer string index|must be integer"
  /external/libchrome/base/strings/
safe_sprintf.h 55 // SafeSPrintf() aims to be as liberal as reasonably possible. Integer-like
62 // It is still not legal to mix-and-match integer-like values with pointer
64 // integer to %p.
67 // the problem of C++ defining NULL as an integer-like value.
70 // positive integer. For %d, %o, %x, %X and %p, if the width starts with
140 // Any integer-like value.
142 integer.i = c;
143 integer.width = sizeof(char);
146 integer.i = c;
147 integer.width = sizeof(char)
194 } integer; member in union:base::strings::internal::Arg::__anon22620
    [all...]
  /external/clang/test/PCH/
exprs.c 13 int integer; variable
19 int_decl_ref *int_ptr1 = &integer;
20 enum_decl_ref *enum_ptr1 = &integer;
23 integer_literal *int_ptr2 = &integer;
38 char_literal *int_ptr3 = &integer;
41 negate_enum *int_ptr4 = &integer;
61 add_result *int_ptr5 = &integer;
64 addeq_result *int_ptr6 = &integer;
72 void_ptr vp1 = &integer;
90 types_compatible *int_ptr7 = &integer;
    [all...]
cxx_exprs.cpp 10 int integer; variable
16 static_cast_result void_ptr = &integer;
23 reinterpret_cast_result void_ptr2 = &integer;
  /external/v8/src/snapshot/
snapshot-source-sink.cc 21 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) {
22 DCHECK(integer < 1 << 30);
23 integer <<= 2;
25 if (integer > 0xff) bytes = 2;
26 if (integer > 0xffff) bytes = 3;
27 if (integer > 0xffffff) bytes = 4;
28 integer |= (bytes - 1);
29 Put(static_cast<int>(integer & 0xff), "IntPart1");
30 if (bytes > 1) Put(static_cast<int>((integer >> 8) & 0xff), "IntPart2");
31 if (bytes > 2) Put(static_cast<int>((integer >> 16) & 0xff), "IntPart3")
    [all...]
  /frameworks/base/libs/androidfw/tests/data/appaslib/
R.h 29 struct integer { struct in struct:com::android::appaslib::lib::R
47 struct integer { struct in struct:com::app::R
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureR.java 21 public static final int feature_integer = R.integer.feature_integer;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ValueIterator.java 15 * int is the sorted integer index in ascending order, and Object its
17 * <p>The ValueIterator allows iterations over integer indexes in the range
18 * of Integer.MIN_VALUE to Integer.MAX_VALUE inclusive. Implementations of
31 * Integer.toHexString(result.integer) +
43 * integer index and its associated value Object.
50 * 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...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ValueIterator.java 14 * int is the sorted integer index in ascending order, and Object its
16 * <p>The ValueIterator allows iterations over integer indexes in the range
17 * of Integer.MIN_VALUE to Integer.MAX_VALUE inclusive. Implementations of
30 * Integer.toHexString(result.integer) +
43 * integer index and its associated value Object.
51 * Integer index of the current iteration
54 public int integer; field in class:ValueIterator.Element
56 * Gets the Object value associated with the integer index
    [all...]
  /frameworks/base/libs/androidfw/tests/data/system/
R.h 38 struct integer { struct
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
any-idiv.d 1 # name: attributes for 'any' CPU with Thumb integer divide
11 Tag_DIV_use: Allowed in v7-A with integer division extension
  /frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$integer.class 
  /prebuilts/go/darwin-x86/test/
shift1.go 20 u = 1.0 << s // ERROR "invalid operation|shift of non-integer operand"
26 e1 = g(2.0 << s) // ERROR "invalid|shift of non-integer operand" "as type interface"
42 a3 = 1.0<<s + 0 // ERROR "invalid|shift of non-integer operand"
44 b3 = 1<<s + 1 + 1.0 // ERROR "invalid|shift of non-integer operand"
47 d3 int = complex(1<<s, 3) // ERROR "non-integer|cannot use.*as type int" "shift of type float64"
64 u = 1.0 << s // ERROR "non-integer|float64"
65 u1 = 1.0<<s != 0 // ERROR "non-integer|float64"
66 u2 = 1<<s != 1.0 // ERROR "non-integer|float64"
67 v float32 = 1 << s // ERROR "non-integer|float32"
78 _ = 1.<<s == 1. // ERROR "invalid|non-integer|shift of type float64
    [all...]

Completed in 1770 milliseconds

1 2 3 4 5 6 7 8 91011>>