Home
last modified time | relevance | path

Searched refs:value3 (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dimplicit-bool-conversion-allow-in-conditions.cpp43 …int value3 = (functionReturningInt() && functionReturningPointer() || !functionReturningInt()) ? 1… in implicitConversionIntegerToBoolInConditionalsIsAllowed() local
44 int value4 = functionReturningInt() ?: value3; in implicitConversionIntegerToBoolInConditionalsIsAllowed()
45 int *p1 = functionReturningPointer() ?: &value3; in implicitConversionIntegerToBoolInConditionalsIsAllowed()
69 int value3 = memberPointer ? 1 : 2; in implicitConversionPointerToBoolInConditionalsIsAllowed() local
/llvm-project-15.0.7/clang/test/Analysis/inlining/
H A DInlineObjCInstanceMethod.h23 int value3; variable
31 @property int value3;
32 - (int)value3;
H A DDynDispatchBifurcate.m36 - (int)value3 { method
37 return value3;
40 value3 = newValue;
163 p.value3 = 0;
164 if (p.value3 != 0)
166 return 5/p.value3;// expected-warning {{Division by zero}}
/llvm-project-15.0.7/llvm/test/Bitcode/
H A Dglobalvariable-attributes.ll4 @g2 = global i32 2, align 4 "key3" = "value3"
16 ; CHECK: attributes #1 = { "key3"="value3" }
/llvm-project-15.0.7/llvm/test/Assembler/
H A Dglobalvariable-attributes.ll4 @g2 = global i32 2, align 4 "key3" = "value3"
26 ; CHECK: attributes #1 = { "key3"="value3" }
/llvm-project-15.0.7/mlir/test/mlir-cpu-runner/
H A Dasync-error.mlir57 %token3, %value3 = async.execute -> !async.value<f32> {
67 async.runtime.await %value3 : !async.value<f32>
72 %err3_1 = async.runtime.is_error %value3 : !async.value<f32>
/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/Transforms/
H A Drewrite-inserts.mlir4 …spv.func @rewrite(%value0 : f32, %value1 : f32, %value2 : f32, %value3 : i32, %value4: !spv.array<…
21 %11 = spv.CompositeInsert %value3, %10[1 : i32] : i32 into !spv.struct<(f32, i32, f32)>
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dnested-template.cpp49 static Y value3; member
89 Y Outer<X>::Inner1<Y>::ReallyInner::value3 = Y(); member in Outer<X>::Inner1<Y>::ReallyInner
/llvm-project-15.0.7/llvm/test/CodeGen/RISCV/rvv/
H A Ddebug-info-rvv-dbg-value.mir8 # RUN: llvm-dwarfdump --name="value3" %t0 | FileCheck %s --check-prefix=CHECK3-PLUS
14 # RUN: llvm-dwarfdump --name="value3" %t1 | FileCheck %s --check-prefix=CHECK3-MINUS
80 !13 = !DILocalVariable(name: "value3", scope: !5, file: !1, line: 1, type: !16)
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Ddebug-info-sve-dbg-value.mir5 # RUN: llvm-dwarfdump --name="value3" %t | FileCheck %s --check-prefix=CHECK3
60 !13 = !DILocalVariable(name: "value3", scope: !5, file: !1, line: 1, type: !16)
/llvm-project-15.0.7/clang/test/ARCMT/
H A Dobjcmt-subscripting-literals.m.result115 @"value3", @"key3",
H A Dobjcmt-subscripting-literals.m115 @"value3", @"key3",
/llvm-project-15.0.7/mlir/test/Dialect/SCF/
H A Dcanonicalize.mlir146 %c3 = "test.value3"() : () -> (index)
158 // CHECK: [[C3:%.*]] = "test.value3"
175 %c3 = "test.value3"() : () -> (index)
194 // CHECK: [[C3:%.*]] = "test.value3"
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dattr-swift_name.m72 value3 SWIFT_NAME("three"),
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-emplace.cpp742 int value1, value2, value3; member