/llvm-project/llvm/test/TableGen/ |
H A D | assert.td | 99 class Person<string name, int age> : PersonName<name> { 100 assert !and(!ge(age, 1), !le(age, 120)), 101 "person age is invalid: " # age; 102 int Age = age; 111 // CHECK: assertion failed: person age is invalid 118 int Age = Person<"Margaret Heafield Hamilton", 25>.Age; [all...] |
/llvm-project/flang/test/Semantics/ |
H A D | data01.f90 | 5 integer :: age component 27 DATA myName(1)%age / repeat * 35 / 30 DATA myName(2)%age / digits(1) * 35 / 33 DATA myName(3)%age / repet * 35 / 36 DATA myName(4)%age / numbers(1) * 35 / 39 DATA myName(5)%age / notConstDigits(1) * 35 / 42 DATA myName(6)%age / digits(myAge) * 35 / 56 …!ERROR: DATA statement value 'person(age=myage,name="Abcd Ijkl ")' for 'myname(3_8)…
|
/llvm-project/lldb/examples/synthetic/recognizer_function/ |
H A D | program.cpp | 28 // int age; 52 int age() { return age_; } in age() function in Customer 59 void set_age(int age) { in set_age() argument 60 age_ = age; in set_age() 107 // no age, so we can check absent fields get omitted. in main()
|
/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/ |
H A D | TestMiniDumpUUID.py | 38 but contains a PDB70 value whose age is zero and whose UUID values are 52 and contains a PDB70 value whose age is zero and whose UUID values are 53 valid. Ensure we decode the UUID and don't include the age field in the UUID. 55 modules = self.get_minidump_modules("linux-arm-uuids-no-age.yaml") 64 and contains a PDB70 value whose age is zero and whose UUID values are 65 valid. Ensure we decode the UUID and don't include the age field in the UUID. 70 modules = self.get_minidump_modules("macos-arm-uuids-no-age.yaml") 79 and contains a PDB70 value whose age is valid and whose UUID values are 80 valid. Ensure we decode the UUID and include the age field in the UUID. 82 modules = self.get_minidump_modules("linux-arm-uuids-with-age.yaml")
|
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | InfoStreamBuilder.h | 37 // PDB GUID and as Signature. The age is always 1. 46 uint32_t getAge() const { return Age; } in getAge() 62 uint32_t Age; variable
|
H A D | RawTypes.h | 123 /// How "old" is this DBI Stream. Should match the age of the PDB InfoStream. 124 support::ulittle32_t Age; member 307 support::ulittle32_t Age; member 325 support::ulittle32_t Age; // Age member
|
/llvm-project/lld/test/ELF/linkerscript/ |
H A D | print-memory-usage.s | 13 # CHECK1:Memory region Used Size Region Size %age Used 18 # CHECK2:Memory region Used Size Region Size %age Used 21 # CHECK3:Memory region Used Size Region Size %age Used
|
/llvm-project/llvm/docs/PDB/ |
H A D | PdbStream.rst | 20 ulittle32_t Age; 53 - **Age** - The number of times the PDB file has been written. This can be used 142 re-uses the existing guid if it is linking incrementally) and increments the Age 152 that it includes the same ``Guid`` and ``Age`` fields. At runtime, a 154 a debug directory of the correct type and verify that the Guid and Age match.
|
/llvm-project/clang/test/Sema/ |
H A D | typo-correction-recursive.cpp | 123 int age; //expected-note{{'age' declared here}} member 130 …rom_dog_years(doggo.agee, //expected-error{{no member named 'agee' in 'Dog'; did you mean 'age'}} in get_dog_years()
|
/llvm-project/clang/unittests/Format/ |
H A D | FormatTestCSharp.cpp | 222 verifyFormat("public override string ToString() => \"{Name}\\{Age}\";"); in TEST_F() 236 "public Person(string firstName, string lastName, int? age = null)"); in TEST_F() 994 ["age"] = Convert.ToString(DateTime.Today.Year - 1934), in TEST_F() 1231 verifyFormat(R"(public (string name, int age) methodTuple() {})", Style); in TEST_F() 1232 verifyFormat(R"(private (string name, int age) methodTuple() {})", Style); in TEST_F() 1233 verifyFormat(R"(protected (string name, int age) methodTuple() {})", Style); in TEST_F() 1234 verifyFormat(R"(virtual (string name, int age) methodTuple() {})", Style); in TEST_F() 1235 verifyFormat(R"(extern (string name, int age) methodTuple() {})", Style); in TEST_F() 1236 verifyFormat(R"(static (string name, int age) methodTuple() {})", Style); in TEST_F() 1237 verifyFormat(R"(internal (string name, int age) methodTupl in TEST_F() [all...] |
/llvm-project/llvm/include/llvm/Object/ |
H A D | CVDebugRecord.h | 33 support::ulittle32_t Age; member 41 support::ulittle32_t Age; member
|
/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | PdbYaml.cpp | 143 IO.mapOptional("Age", Obj.Age, 1U); in mapping() 152 IO.mapOptional("Age", Obj.Age, 1U); in mapping()
|
H A D | ExplainOutputStyle.cpp | 309 else if (Offset < endof(DbiStreamHeader, Age)) in explainDbiHeaderOffset() 310 printStructField(P, "the age of the DBI Stream", uint32_t(Header->Age)); in explainDbiHeaderOffset() 447 else if (Offset < endof(InfoStreamHeader, Age)) in explainPdbStreamHeaderOffset() 448 printStructField(P, "the age of the PDB", uint32_t(Header->Age)); in explainPdbStreamHeaderOffset()
|
H A D | PdbYaml.h | 54 uint32_t Age = 1; member 75 uint32_t Age = 1; member
|
/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.cpp | 103 llvm::support::ubig32_t age; in parseModuleId() member 107 // depending on the size of the age field, which is of variable length. in parseModuleId() 120 uint32_t age; in parseModuleId() local 121 bool success = to_integer(age_str, age, 16); in parseModuleId() 124 data.age = age; in parseModuleId() 126 // On non-windows, the age field should always be zero, so we don't include to in parseModuleId()
|
/llvm-project/llvm/test/ObjectYAML/CodeView/ |
H A D | sections.yaml | 17 Age: 24 70 # CHECK: Age: 24
|
/llvm-project/lld/test/wasm/lto/ |
H A D | cache.ll | 8 ; Create two files that would be removed by cache pruning due to age. 23 ; Increase the age of llvmcache-foo, which will give it the oldest time stamp
|
/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | InfoStreamBuilder.cpp | 25 : Msf(Msf), Ver(PdbRaw_ImplVer::PdbImplVC70), Age(0), in InfoStreamBuilder() 40 void InfoStreamBuilder::setAge(uint32_t A) { Age = A; }
|
H A D | DbiStreamBuilder.cpp | 29 : Msf(Msf), Allocator(Msf.getAllocator()), Age(1), BuildNumber(0), in DbiStreamBuilder() 37 void DbiStreamBuilder::setAge(uint32_t A) { Age = A; } in setAge() 265 H->Age = Age; in finalize()
|
/llvm-project/llvm/test/tools/gold/X86/ |
H A D | cache.ll | 30 ; Create two files that would be removed by cache pruning due to age. 56 ; Increase the age of llvmcache-foo
|
/llvm-project/lldb/source/Utility/ |
H A D | UUID.cpp | 42 llvm::sys::swapByteOrder(debug_info.Age); in UUID() 43 if (debug_info.Age) in UUID()
|
/llvm-project/lldb/test/Shell/ObjectFile/PDB/ |
H A D | object.test | 48 Age: 1 55 Age: 3
|
/llvm-project/lld/test/COFF/Inputs/ |
H A D | no-ipi-stream-obj.obj.yaml | 11 Age: 1
|
H A D | pdb-type-server-missing-2.yaml | 13 Age: 18
|
/llvm-project/llvm/test/DebugInfo/PDB/Native/ |
H A D | pdb-native-summary.test | 10 ; EMPTY: Age: 1
|