Home
last modified time | relevance | path

Searched refs:enumerator (Results 1 – 25 of 53) sorted by relevance

123

/llvm-project-15.0.7/flang/test/Semantics/
H A Dresolve60.f906 enumerator :: red, green
7 enumerator blue, pink
8 enumerator yellow
9 enumerator :: purple = 2
15 enumerator :: square, cicrle
17 enumerator square
25 enumerator :: apple
26 enumerator :: pear
28 enumerator :: peach
30 enumerator :: red
[all …]
H A Dmodfile31.f907 enumerator :: red, green
8 enumerator blue
9 enumerator yellow
10 enumerator :: purple = 2
11 enumerator :: brown
15 enumerator :: oak, beech = -rank(x)*x(1), pine, poplar = brown
H A Dbind-c02.f9030 enumerator :: SUNDAY, MONDAY
/llvm-project-15.0.7/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp4.cpp22 enum tagname { enumerator }; enumerator
29 using NonClass::enumerator; // expected-error {{not a class}}
41 enum tagname { enumerator }; enumerator
48 using A::enumerator;
69 enum tagname _ = enumerator; in test4()
84 enum tagname { enumerator }; enumerator
91 using A::enumerator;
112 enum tagname _ = enumerator; in test4()
129 enum tagname { enumerator }; // expected-note 2 {{target of using declaration}} enumerator
136 using A<T>::enumerator;
[all …]
/llvm-project-15.0.7/clang/test/CXX/class.access/class.access.dcl/
H A Dp1.cpp25 enum tagname { enumerator }; enumerator
50 NonClass::enumerator; // expected-error {{not a class}}
67 enum tagname { enumerator }; enumerator
91 A::enumerator;
123 enum tagname _ = enumerator; in test4()
138 enum tagname { enumerator }; enumerator
163 A::enumerator;
195 enum tagname _ = enumerator; in test4()
212 enum tagname { enumerator }; // expected-note {{target of using declaration}} enumerator
237 A<T>::enumerator;
[all …]
/llvm-project-15.0.7/flang/module/
H A D__fortran_type_info.f9060 enumerator :: Deferred = 1, Explicit = 2, LenParameter = 3
70 enumerator :: Data = 1, Pointer = 2, Allocatable = 3, Automatic = 4
74 enumerator :: CategoryInteger = 0, CategoryReal = 1, &
101 enumerator :: ScalarAssignment = 1, ElementalAssignment = 2
102 enumerator :: ReadFormatted = 3, ReadUnformatted = 4
103 enumerator :: WriteFormatted = 5, WriteUnformatted = 6
104 enumerator :: ElementalFinal = 7, AssumedRankFinal = 8
105 enumerator :: ScalarFinal = 9 ! higher-rank final procedures follow
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dmember-name-lookup.cpp7 enum E { enumerator }; enumerator
45 D::E e = D::enumerator; // okay in test_lookup()
61 E e = enumerator; // okay in test_lookup()
101 D2::E e = D2::enumerator; // okay in test_virtual_lookup()
120 E e = enumerator; // okay in test_virtual_lookup()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp89 for (const auto &enumerator : enumerators) { in SetEnumerations() local
90 ConstString const_enumerator_name(enumerator.string_value); in SetEnumerations()
91 EnumeratorInfo enumerator_info = {enumerator.value, enumerator.usage}; in SetEnumerations()
/llvm-project-15.0.7/clang/test/Modules/
H A Dredefinition-c-tagtypes.m28 SND = 44, // expected-note {{enumerator 'SND' with value 44 here}}
30 // expected-note@Inputs/F.framework/PrivateHeaders/NS.h:8 {{enumerator 'SND' with value 43 here}}
44 MinXOther = TRD, // expected-note {{enumerator 'MinXOther' with value 55 here}}
46 …// expected-note@Inputs/F.framework/PrivateHeaders/NS.h:18 {{enumerator 'MinXOther' with value 11 …
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A Dstack_logging.h87 void enumerator(mach_stack_logging_record_t, void *), void *context);
141 void enumerator(stack_logging_record_t, void *), void *context);
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dmangle-ms-cxx11.cpp350 enum { enumerator }; enumerator
351 void f(decltype(enumerator)) {} in f() argument
353 void use_f() { f(enumerator); } in use_f()
/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DSparseTensorUtils.cpp529 SparseTensorEnumeratorBase<V> *enumerator; in toCOO() local
530 newEnumerator(&enumerator, getRank(), perm); in toCOO()
540 delete enumerator; in toCOO()
583 SparseTensorEnumeratorBase<V> *enumerator; in newSparseTensor() local
584 source->newEnumerator(&enumerator, rank, perm); in newSparseTensor()
585 const auto &permsz = enumerator->permutedSizes(); in newSparseTensor()
589 delete enumerator; in newSparseTensor()
956 enumerator.forallElements( in initialize()
1015 SparseTensorEnumeratorBase<V> *enumerator; in SparseTensorStorage() local
1020 nnz.initialize(*enumerator); in SparseTensorStorage()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp289 EnumeratorRecord &enumerator) { in visitKnownMember() argument
291 llvm::StringRef name = DropNameScope(enumerator.getName()); in visitKnownMember()
294 m_derived_ct, decl, name.str().c_str(), enumerator.Value); in visitKnownMember()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/cxx/
H A Dcxx.bnf494 enum-specifier := enum-head { enumerator-list_opt }
495 enum-specifier := enum-head { enumerator-list , }
503 enumerator-list := enumerator-definition
504 enumerator-list := enumerator-list , enumerator-definition
505 enumerator-definition := enumerator
506 enumerator-definition := enumerator = constant-expression
507 enumerator := IDENTIFIER
/llvm-project-15.0.7/flang/include/flang/Common/
H A Denum-set.h191 auto enumerator{static_cast<enumerationType>(j)}; in LeastElement()
193 return {enumerator}; in LeastElement()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DOperatorKinds.def23 /// corresponding enumerator in OverloadedOperatorKind in
32 /// an enumerator into the TokenKind enumeration.
H A DAArch64SVEACLETypes.def25 // - BuiltinType::Id is the enumerator defining the type.
/llvm-project-15.0.7/clang/test/C/drs/
H A Ddr1xx.c308 enum dr129_t { enumerator }; /* expected-note {{previous use is here}} */ in dr129() enumerator
/llvm-project-15.0.7/llvm/include/llvm/Frontend/Directive/
H A DDirectiveBase.td28 // Optional prefix used for the generation of the enumerator in the Directive
32 // Optional prefix used for the generation of the enumerator in the Clause
/llvm-project-15.0.7/llvm/test/Demangle/
H A Dms-cxx11.test149 ?f@@YAXW4<unnamed-enum-enumerator>@@@Z
150 ; CHECK: void __cdecl f(enum <unnamed-enum-enumerator>)
/llvm-project-15.0.7/clang/test/PCH/
H A Dcxx-templates.h254 enumerator
257 T t = enumerator;
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dmacro-to-enum.rst8 token was used previously, the enumerator name may be safely used.
/llvm-project-15.0.7/llvm/test/Assembler/
H A DDIEnumerator.ll10 ; enumerator values (signed and unsigned, and extreme cases) all survive through
/llvm-project-15.0.7/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp110 void enumerator(mach_stack_logging_record_t, void *), void *context);
538 zone->introspect->enumerator( in enumerate_range_in_zone()
/llvm-project-15.0.7/clang/test/Index/Core/
H A Dexternal-source-symbol-attr.m100 …// CHECK: [[@LINE-1]]:10 | enumerator/Swift | SomeEnumFirst | c:@M@modname@E@SomeEnum@SomeEnumFirs…

123