Home
last modified time | relevance | path

Searched full:age (Results 1 – 25 of 91) sorted by relevance

1234

/llvm-project/llvm/test/TableGen/
H A Dassert.td99 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 Ddata01.f905 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 Dprogram.cpp28 // 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 DTestMiniDumpUUID.py38 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 DInfoStreamBuilder.h37 // 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 DRawTypes.h123 /// 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 Dprint-memory-usage.s13 # 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 DPdbStream.rst20 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 Dtypo-correction-recursive.cpp123 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 DFormatTestCSharp.cpp222 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 DCVDebugRecord.h33 support::ulittle32_t Age; member
41 support::ulittle32_t Age; member
/llvm-project/llvm/tools/llvm-pdbutil/
H A DPdbYaml.cpp143 IO.mapOptional("Age", Obj.Age, 1U); in mapping()
152 IO.mapOptional("Age", Obj.Age, 1U); in mapping()
H A DExplainOutputStyle.cpp309 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 DPdbYaml.h54 uint32_t Age = 1; member
75 uint32_t Age = 1; member
/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp103 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 Dsections.yaml17 Age: 24
70 # CHECK: Age: 24
/llvm-project/lld/test/wasm/lto/
H A Dcache.ll8 ; 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 DInfoStreamBuilder.cpp25 : Msf(Msf), Ver(PdbRaw_ImplVer::PdbImplVC70), Age(0), in InfoStreamBuilder()
40 void InfoStreamBuilder::setAge(uint32_t A) { Age = A; }
H A DDbiStreamBuilder.cpp29 : 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 Dcache.ll30 ; 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 DUUID.cpp42 llvm::sys::swapByteOrder(debug_info.Age); in UUID()
43 if (debug_info.Age) in UUID()
/llvm-project/lldb/test/Shell/ObjectFile/PDB/
H A Dobject.test48 Age: 1
55 Age: 3
/llvm-project/lld/test/COFF/Inputs/
H A Dno-ipi-stream-obj.obj.yaml11 Age: 1
H A Dpdb-type-server-missing-2.yaml13 Age: 18
/llvm-project/llvm/test/DebugInfo/PDB/Native/
H A Dpdb-native-summary.test10 ; EMPTY: Age: 1

1234