/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/ |
D | main.cpp | 1 class myInt { class 3 public: myInt() : theValue(0) {} in myInt() function in myInt 4 public: myInt(int _x) : theValue(_x) {} in myInt() function in myInt 25 myInt theInt; 29 myInt operator + (myInt x, myInt y) { return myInt(x.val() + y.val()); } in operator +() 30 myInt operator + (myInt x, myIntAndStuff y) { return myInt(x.val() + y.val()); } in operator +() 33 myInt x{3}; in main() 34 myInt y{4}; in main() 35 myInt z {x+y}; in main()
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/ |
D | main.cpp | 1 class myInt { class 3 public: myInt() : theValue(0) {} in myInt() function in myInt 4 public: myInt(int _x) : theValue(_x) {} in myInt() function in myInt 15 myInt theInt; 19 myInt operator + (myInt x, myInt y) { return myInt(x.val() + y.val()); } in operator +() 22 myInt x{3}; in main() 23 myInt y{4}; in main() 24 myInt z {x+y}; in main()
|
/external/llvm-project/llvm/test/tools/llvm-objdump/ELF/ARM/ |
D | disassemble-code-data-mix.s | 6 .global myInt symbol 9 .type myInt, %object 10 .size myInt, 4 11 myInt: label 29 .word myInt 38 @ RELOC-NEXT: R_ARM_ABS32 myInt
|
/external/mesa3d/src/compiler/glsl/tests/warnings/ |
D | 012-modassign.vert | 7 int myInt; 9 myInt %= undefined; 10 myInt %= defined;
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | hlsl.typedef.frag | 5 typedef int myInt; 7 myInt i = 2; 8 typedef myInt myInt2;
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.typedef.frag | 5 typedef int myInt; 7 myInt i = 2; 8 typedef myInt myInt2;
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/local-variable/ |
D | main.c | 2 int *myInt = 0; in main() local 3 return *myInt; in main()
|
/external/llvm-project/debuginfo-tests/dexter/feature_tests/commands/penalty/ |
D | expect_watch_type.cpp | 37 auto myInt = Doubled<int>(5); // DexLabel('main_start') in main() local 41 return int(double(myInt.GetVal()) in main()
|
/external/llvm-project/debuginfo-tests/dexter/feature_tests/commands/perfect/ |
D | expect_watch_type.cpp | 36 auto myInt = Doubled<int>(5); // DexLabel('main_start') in main() local 40 return int(double(myInt.GetVal()) in main()
|
/external/clang/test/SemaCXX/ |
D | attr-deprecated.cpp | 190 int myInt; member 194 myInt(a), // expected-warning {{deprecated}} in B()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | attr-deprecated.cpp | 190 int myInt; member 194 myInt(a), // expected-warning {{deprecated}} in B()
|
/external/jackson-databind/src/test/java/perf/ |
D | ManualWritePerfWithAllTypes.java | 61 public int myInt; field in ManualWritePerfWithAllTypes.AllTypes
|
/external/kotlinx.atomicfu/ |
D | README.md | 69 val myInt = atomic(0) // note: integer initial value
|