Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/llvm-project-15.0.7/clang/test/Index/
H A Dproperties-class-extensions.m1 // Test that @properties within class extensions are visited by
49 // CHECK: properties-class-extensions.m:5:12: ObjCCategoryDecl=Cat:5:12 Extent=[5:1 - 7:5]
50 // CHECK: properties-class-extensions.m:5:12: ObjCClassRef=Foo:4:12 Extent=[5:12 - 5:15]
51 // CHECK: properties-class-extensions.m:6:15: ObjCPropertyDecl=a:6:15 Extent=[6:1 - 6:16]
55 // CHECK: properties-class-extensions.m:8:12: ObjCCategoryDecl=:8:12 Extent=[8:1 - 11:5]
56 // CHECK: properties-class-extensions.m:8:12: ObjCClassRef=Foo:4:12 Extent=[8:12 - 8:15]
57 // CHECK: properties-class-extensions.m:9:15: ObjCPropertyDecl=b:9:15 Extent=[9:1 - 9:16]
64 // CHECK: properties-class-extensions.m:16:22: TypeRef=id:0:0 Extent=[16:22 - 16:24]
69 // CHECK: properties-class-extensions.m:19:23: TypeRef=id:0:0 Extent=[19:23 - 19:25]
73 // CHECK-NOT: properties-class-extensions.m:24:8: ObjCInterfaceDecl=Rdar8467189_Bar:24:8
[all …]
/llvm-project-15.0.7/clang/test/Driver/
H A Dno-objc-default-synthesize-properties.m1 …t %clang -fsyntax-only -fno-objc-default-synthesize-properties -fobjc-default-synthesize-properti…
9 // CHECK: error: unknown argument: '-fno-objc-default-synthesize-properties'
10 // CHECK: error: unknown argument: '-fobjc-default-synthesize-properties'
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DBoxValue.cpp152 const auto &properties = box.mutableProperties; in operator <<() local
153 if (!properties.isEmpty()) { in operator <<()
154 os << ", mutableProperties: { addr: " << properties.addr; in operator <<()
155 if (!properties.lbounds.empty()) { in operator <<()
157 llvm::interleaveComma(properties.lbounds, os); in operator <<()
160 if (!properties.extents.empty()) { in operator <<()
162 llvm::interleaveComma(properties.extents, os); in operator <<()
165 if (!properties.deferredParams.empty()) { in operator <<()
167 llvm::interleaveComma(properties.deferredParams, os); in operator <<()
/llvm-project-15.0.7/mlir/include/mlir/TableGen/
H A DClass.h309 Method(RetTypeT &&retType, NameT &&name, Properties properties, in Method() argument
311 : properties(properties), in Method()
314 methodBody(properties & Declaration) {} in Method()
319 : properties(properties), methodSignature(retType, name, params), in Method()
320 methodBody(properties & Declaration) {} in Method()
330 bool isStatic() const { return properties & Static; } in isStatic()
333 bool isPrivate() const { return properties & Private; } in isPrivate()
336 bool isInline() const { return properties & Inline; } in isInline()
342 bool isConst() const { return properties & Const; } in isConst()
361 Properties properties;
[all …]
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectApropos.cpp73 std::vector<const Property *> properties; in DoExecute() local
75 GetDebugger().Apropos(search_word, properties); in DoExecute()
82 properties[i]->DumpDescription( in DoExecute()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Ddefault-synthesize-1.m15 @implementation SynthItAll // expected-note 2 {{detected while default synthesizing properties in c…
25 @implementation SynthSetter // expected-note 2 {{detected while default synthesizing properties in …
45 @implementation SynthGetter // expected-note 2 {{detected while default synthesizing properties in …
124 … // expected-note {{detected while default synthesizing properties in class implementation}}
139 …darParsedResult // expected-note {{detected while default synthesizing properties in class impleme…
155 …rnOnUnavailable // expected-note {{detected while default synthesizing properties in class impleme…
H A Dproperty-user-setter.m130 self.t = 0; // expected-error {{synthesized properties 't' and 'T' both claim setter 'setT:'}}
131 self.T = 0; // expected-error {{synthesized properties 'T' and 't' both claim setter 'setT:'}}
132 …self.Pxyz = 0; // expected-error {{synthesized properties 'Pxyz' and 'pxyz' both claim setter 'set…
133 …self.pxyz = 0; // expected-error {{synthesized properties 'pxyz' and 'Pxyz' both claim setter 'set…
H A Dmrc-weak.m53 …zing 'id *' with an expression of type '__weak id *' changes retain/release properties of pointer}}
54 …zing '__weak id *' with an expression of type 'id *' changes retain/release properties of pointer}}
65 …zing 'id *' with an expression of type '__weak id *' changes retain/release properties of pointer}}
H A Dattr-cf_returns.m31 …; // expected-warning{{'cf_returns_retained' attribute only applies to properties that return a po…
32 …; // expected-warning{{'cf_returns_retained' attribute only applies to properties that return a po…
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dgnu-method-only-once.m5 // from synthesised properties showed up in the method list, where previously
8 // copies of method metadata for declared properties.
10 // This class has only instance properties and only one pair of synthesized
/llvm-project-15.0.7/llvm/test/CodeGen/MIR/AMDGPU/
H A Dsubreg-def-is-not-ssa.mir5 # CHECK-NEXT: Required properties: IsSSA
6 # CHECK-NEXT: Current properties: NoPHIs
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dmachine-cse-ssa.mir5 # ERR-NEXT: Required properties: IsSSA
6 # ERR-NEXT: Current properties: NoPHIs
H A Dbranch-folder-requires-no-phis.mir7 # CHECK-NEXT: Required properties: NoPHIs
8 # CHECK-NEXT: Current properties: IsSSA, TracksLiveness{{$}}
/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.cpp307 VkPhysicalDeviceMemoryProperties properties = {}; in createDevice() local
308 vkGetPhysicalDeviceMemoryProperties(physicalDevice, &properties); in createDevice()
317 for (uint32_t i = 0, e = properties.memoryTypeCount; i < e; ++i) { in createDevice()
319 properties.memoryTypes[i].propertyFlags) && in createDevice()
321 properties.memoryTypes[i].propertyFlags) && in createDevice()
323 properties.memoryHeaps[properties.memoryTypes[i].heapIndex].size)) { in createDevice()
332 for (uint32_t i = 0, e = properties.memoryTypeCount; i < e; ++i) { in createDevice()
334 properties.memoryTypes[i].propertyFlags) && in createDevice()
336 properties.memoryHeaps[properties.memoryTypes[i].heapIndex].size)) { in createDevice()
/llvm-project-15.0.7/mlir/docs/
H A DDataLayout.md17 * and dialect interfaces for data layout properties unrelated to specific
28 Following MLIR's nested structure, data layout properties are _scoped_ to
31 partially control the data layout properties and may have attributes that affect
37 has fixed data layout properties. Types are also expected to have a default,
44 The information necessary to compute layout properties can be combined from
45 nested scopes. For example, an outer scope can define layout properties for a
66 properties of given types in the scope of the object. The signature of
82 the data layout properties are fixed in the scope, they will be computed only
106 specific types or dialects: when handling a data layout properties request, a
137 data layout properties of _any_ specific type instance given properties of other
[all …]
/llvm-project-15.0.7/clang/test/Sema/
H A Dattr-osobject.mm11 … attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
13 … attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
/llvm-project-15.0.7/llvm/test/CodeGen/MIR/Generic/
H A Dglobal-isel-properties.mir3 # properties correctly.
4 # This doesn't require GlobalISel to be built, as the properties are always
/llvm-project-15.0.7/lldb/source/Core/
H A DDataFileCache.cpp27 ModuleListProperties &properties = in DataFileCache() local
37 policy.MaxSizeBytes = properties.GetLLDBIndexCacheMaxByteSize(); in DataFileCache()
39 properties.GetLLDBIndexCacheMaxPercent(); in DataFileCache()
41 std::chrono::hours(properties.GetLLDBIndexCacheExpirationDays() * 24); in DataFileCache()
/llvm-project-15.0.7/mlir/lib/TableGen/
H A DClass.cpp119 if (properties & ConstexprValue) in writeDeclTo()
135 if (properties & Declaration || isInline()) in writeDefTo()
151 if (properties & ConstexprValue) in writeDeclTo()
173 if (properties & Declaration || isInline()) in writeDefTo()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DRegionKindInterface.td9 // This file contains a set of interfaces to query the properties of regions
19 // OpInterface to query the properties of regions in an operation
/llvm-project-15.0.7/openmp/runtime/tools/
H A Dmessage-converter.pl44 my @properties = qw{ Language Country LangId Version Revision };
172 if ( not grep( $_ eq $property , @properties ) ) {
231 foreach my $property ( @properties ) {
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/clang-analyzer/
H A Dosx.ObjCProperty.rst6 Check for proper uses of Objective-C properties
/llvm-project-15.0.7/libcxx/lib/abi/
H A DCMakeLists.txt2 # This function generates a "unique" identifier based on various properties
3 # given as arguments. The idea is to encode all ABI-affecting properties
/llvm-project-15.0.7/llvm/test/YAMLParser/
H A Dspec-08-12.test4 Without properties,
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp135 uint32_t properties() const;
468 uint32_t Ps = !isTop() ? properties() in convertToProperty()
483 uint32_t Ps = properties(); in print()
535 return add(L.properties()); in meet()
577 uint32_t Ps = properties(); in add()
594 uint32_t Ps = properties(); in add()
1116 uint32_t Prop1 = LS1.properties(); in evaluateCMPrr()
1743 uint32_t Ps = LS1.properties(); in evaluateEXTRACTr()
2222 uint32_t Ps = Input.properties(); in evaluate()
2683 uint32_t Ps = LS.properties(); in evaluateHexCondMove()
[all …]

12345678910>>...12