HomeSort by relevance Sort by last modified time
    Searched refs:var (Results 101 - 125 of 9844) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
protected-data.d 4 .* R_ARM_GLOB_DAT .* var.*
tls-local-static.s 8 .word var(tlsgd) + (. - .LPIC0 - 8)
12 .type var, %object
13 .size var, 4
14 var: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-auto-import/
dll.c 1 int var = 123; variable
11 printf ("DLL sees var = %d\n", var);
  /external/clang/test/CodeGenCXX/
constructor-direct-call.cpp 9 Test1 var; local
10 var.Test1::Test1();
13 var.Test1::Test1(var);
24 // CHECK: %var = alloca %class.Test2, align 4
25 // CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
26 Test2 var; local
28 // CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
29 var.Test2::Test2();
32 var.Test2::Test2(var)
49 Test3 var; local
    [all...]
  /external/clang/test/Analysis/
test-after-div-zero.c 4 int var; variable
7 var = 77 / x; // expected-note {{Division with compared value made here}}
12 var = 77 / x; // expected-note {{Division with compared value made here}}
17 var = 77 / x; // expected-note {{Division with compared value made here}}
22 var = 77 / x; // expected-note {{Division with compared value made here}}
27 var = 77 / x; // expected-note {{Division with compared value made here}}
32 var = 77 / x; // expected-note {{Division with compared value made here}}
36 var = 77 / x; // expected-note {{Division with compared value made here}}
42 var = 77 / *y; // expected-note {{Division with compared value made here}}
48 var = 77 / x; // expected-note {{Division with compared value made here}
    [all...]
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/
SupportLibraryExtension.kt 28 var name: String? = null
29 var mavenVersion: Version? = null
30 var mavenGroup: String? = null
31 var description: String? = null
32 var inceptionYear: String? = null
33 var url = SUPPORT_URL
34 private var licenses: MutableCollection<License> = ArrayList()
35 var java8Library = false
36 var publish = false
37 var failOnUncheckedWarnings = tru
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug197.go 12 var x int
14 var t T = int(0) // ERROR "cannot use|incompatible"
15 var t1 T = int(x) // ERROR "cannot use|incompatible"
16 var u U = int(0) // ERROR "cannot use|incompatible"
17 var u1 U = int(x) // ERROR "cannot use|incompatible"
20 var s S
22 var s1 = s + "hello"
23 var s2 = "hello" + s
24 var s3 = s + string("hello") // ERROR "invalid operation|incompatible"
25 var s4 = string("hello") + s // ERROR "invalid operation|incompatible
    [all...]
issue11674.go 15 var _ = x / 1e-20
16 var _ = x / 1e-50 // ERROR "complex division by zero"
17 var _ = x / 1e-1000 // ERROR "complex division by zero"
18 var _ = x / 1e-20i
19 var _ = x / 1e-50i // ERROR "complex division by zero"
20 var _ = x / 1e-1000i // ERROR "complex division by zero"
22 var _ = x / 1e-45 // smallest positive float32
24 var _ = x / (1e-20 + 1e-20i)
25 var _ = x / (1e-50 + 1e-20i)
26 var _ = x / (1e-20 + 1e-50i
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug197.go 12 var x int
14 var t T = int(0) // ERROR "cannot use|incompatible"
15 var t1 T = int(x) // ERROR "cannot use|incompatible"
16 var u U = int(0) // ERROR "cannot use|incompatible"
17 var u1 U = int(x) // ERROR "cannot use|incompatible"
20 var s S
22 var s1 = s + "hello"
23 var s2 = "hello" + s
24 var s3 = s + string("hello") // ERROR "invalid operation|incompatible"
25 var s4 = string("hello") + s // ERROR "invalid operation|incompatible
    [all...]
issue11674.go 15 var _ = x / 1e-20
16 var _ = x / 1e-50 // ERROR "complex division by zero"
17 var _ = x / 1e-1000 // ERROR "complex division by zero"
18 var _ = x / 1e-20i
19 var _ = x / 1e-50i // ERROR "complex division by zero"
20 var _ = x / 1e-1000i // ERROR "complex division by zero"
22 var _ = x / 1e-45 // smallest positive float32
24 var _ = x / (1e-20 + 1e-20i)
25 var _ = x / (1e-50 + 1e-20i)
26 var _ = x / (1e-20 + 1e-50i
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBufferBuilderTests.cs 24 var fbb = new FlatBufferBuilder(16) {ForceDefaults = forceDefaults};
32 var fbb = CreateBuffer();
33 var storedOffset = fbb.Offset;
35 var endOffset = fbb.Offset;
42 var fbb = CreateBuffer();
43 var storedOffset = fbb.Offset;
45 var endOffset = fbb.Offset;
52 var fbb = CreateBuffer();
53 var storedOffset = fbb.Offset;
55 var endOffset = fbb.Offset
    [all...]
  /build/kati/testcase/
empty_target_specific_var.mk 5 var==foo macro
6 $(var):
  /external/annotation-tools/annotation-file-utilities/tests/
NewMultiple.java 7 List var = (/* @Tainted*/ List) o; local
8 System.out.println(var);
12 List var = (/* @UnderInitialization*/ List) o; local
13 System.out.println(var);
  /external/clang/test/FixIt/
messages.cpp 9 A var = { b }; local
10 // CHECK: A var = { b };
  /external/libchrome/base/debug/
alias.h 13 // Make the optimizer think that var is aliased. This is to prevent it from
16 void BASE_EXPORT Alias(const void* var);
  /toolchain/binutils/binutils-2.27/gold/testsuite/
tls_test_c.c 29 #define CHECK_EQ_OR_RETURN(var, expected) \
32 if ((var) != (expected)) \
34 printf(#var ": expected %d, found %d\n", expected, var); \
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
gc-plt1.s 2 adrp x0, :pg_hi21:var
3 ldr x0, [x0, :lo12:var]
5 adrp x1, :pg_hi21_nc:var
6 ldr x1, [x1, :lo12:var]
tls-relax-gd-ie.s 1 .global var
3 var: label
6 adrp x0, :tlsgd:var
7 add x0, x0, :tlsgd_lo12:var
tls-relax-gdesc-ie-2.s 3 .global var
5 var: label
8 adrp x0, :tlsdesc:var
10 ldr x1, [x0, #:tlsdesc_lo12:var]
14 add x0, x0, :tlsdesc_lo12:var
17 .tlsdesccall var
23 .global var
tls-relax-large-desc-ie.s 1 .global var
3 var: label
12 movz x0, #:tlsdesc_off_g1:var
13 movk x0, #:tlsdesc_off_g0_nc:var
14 .tlsdescldr var
16 .tlsdescadd var
18 .tlsdesccall var
  /libcore/ojluni/src/main/native/
io_util.h 62 * WITH_PLATFORM_STRING(env, string, var) {
63 * doSomethingWith(var);
64 * } END_PLATFORM_STRING(env, var);
68 * var is the char * variable that will point to the string,
74 * WITH_FIELD_PLATFORM_STRING(env, object, id, var) {
75 * doSomethingWith(var);
76 * } END_PLATFORM_STRING(env, var);
81 * var is the char * variable that will point to the string.
87 #define WITH_PLATFORM_STRING(env, strexp, var) \
89 const char *var; \
    [all...]
  /external/doclava/res/assets/templates/
jd_lists.cs 0 var JD_DATA = [
5 { label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>",
6 tags:[<?cs var:page.tags ?>], type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?><?cs
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
IincInsnNode.java 45 public int var; field in class:IincInsnNode
55 * @param var index of the local variable to be incremented.
58 public IincInsnNode(final int var, final int incr) {
60 this.var = var;
65 mv.visitIincInsn(var, incr);
  /external/skia/experimental/docs/
interpolatorFunctions.js 7 var ab = interp(x1, x2, t);
8 var bc = interp(x2, x3, t);
9 var cd = interp(x3, x4, t);
10 var abc = interp(ab, bc, t);
11 var bcd = interp(bc, cd, t);
12 var abcd = interp(abc, bcd, t);
19 var out = [];
20 for (var cIndex = 0; cIndex < path.length; ++cIndex) {
22 var curveKey = Object.keys(path[cIndex])[0];
23 var curve = path[cIndex][curveKey]
    [all...]
  /external/skqp/experimental/docs/
interpolatorFunctions.js 7 var ab = interp(x1, x2, t);
8 var bc = interp(x2, x3, t);
9 var cd = interp(x3, x4, t);
10 var abc = interp(ab, bc, t);
11 var bcd = interp(bc, cd, t);
12 var abcd = interp(abc, bcd, t);
19 var out = [];
20 for (var cIndex = 0; cIndex < path.length; ++cIndex) {
22 var curveKey = Object.keys(path[cIndex])[0];
23 var curve = path[cIndex][curveKey]
    [all...]

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>