Home
last modified time | relevance | path

Searched refs:mutable (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/nssetsynth/
H A Dmain.m9 NSMutableSet* mutable = [NSMutableSet setWithCapacity:5];
10 [mutable addObject:@1];
11 [mutable addObject:@2];
12 [mutable addObject:@3];
13 [mutable addObject:@4];
14 [mutable addObject:@5];
15 [mutable addObject:[NSURL URLWithString:@"www.apple.com"]];
16 [mutable addObject:@[@1,@2,@3]];
17 [mutable unionSet:set];
19 [mutable unionSet:set];
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h212 mutable SmallVector<Type *, 0> Types;
294 mutable TypeInfoMap MemoizedTypeInfo;
333 mutable std::string CUIDHash;
362 mutable TypedefDecl *Int128Decl = nullptr;
375 mutable TypedefDecl *ObjCIdDecl = nullptr;
387 mutable TypedefDecl *BOOLDecl = nullptr;
414 mutable QualType ObjCSuperType;
633 mutable llvm::BumpPtrAllocator BumpAlloc;
823 mutable bool CommentsLoaded = false;
1165 mutable Decl *VaListTagDecl = nullptr;
[all …]
H A DNSAPI.h240 mutable IdentifierInfo *ClassIds[NumClassIds];
242 mutable Selector NSStringSelectors[NumNSStringMethods];
245 mutable Selector NSArraySelectors[NumNSArrayMethods];
248 mutable Selector NSDictionarySelectors[NumNSDictionaryMethods];
251 mutable Selector NSSetSelectors[NumNSSetMethods];
254 mutable Selector NSNumberClassSelectors[NumNSNumberLiteralMethods];
255 mutable Selector NSNumberInstanceSelectors[NumNSNumberLiteralMethods];
257 mutable Selector objectForKeyedSubscriptSel, objectAtIndexedSubscriptSel,
261 mutable IdentifierInfo *BOOLId, *NSIntegerId, *NSUIntegerId;
262 mutable IdentifierInfo *NSASCIIStringEncodingId, *NSUTF8StringEncodingId;
H A DRawCommentList.h164 mutable StringRef RawText;
165 mutable const char *BriefText;
167 mutable bool RawTextValid : 1; ///< True if RawText is valid
168 mutable bool BriefTextValid : 1; ///< True if BriefText is valid
216 mutable llvm::DenseMap<RawComment *, unsigned> CommentBeginLine;
217 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset;
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h46 mutable std::vector<std::unique_ptr<NativeRawSymbol>> Cache;
50 mutable DenseMap<codeview::TypeIndex, SymIndexId> TypeIndexToSymbolId;
55 mutable DenseMap<std::pair<codeview::TypeIndex, uint32_t>, SymIndexId>
60 mutable std::vector<SymIndexId> Compilands;
63 mutable std::vector<std::unique_ptr<NativeSourceFile>> SourceFiles;
66 mutable DenseMap<uint32_t, SymIndexId> FileNameOffsetToId;
69 mutable DenseMap<uint32_t, SymIndexId> GlobalOffsetToSymbolId;
72 mutable DenseMap<std::pair<uint32_t, uint32_t>, SymIndexId> AddressToSymbolId;
74 mutable DenseMap<std::pair<uint32_t, uint32_t>, SymIndexId>
78 mutable DenseMap<std::pair<uint16_t, uint32_t>, SymIndexId>
[all …]
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenTarget.h50 mutable DenseMap<const Record*,
52 mutable std::unique_ptr<CodeGenRegBank> RegBank;
53 mutable std::vector<Record*> RegAltNameIndices;
54 mutable SmallVector<ValueTypeByHwMode, 8> LegalValueTypes;
60 mutable std::unique_ptr<CodeGenSchedModels> SchedModels;
62 mutable StringRef InstNamespace;
63 mutable std::vector<const CodeGenInstruction*> InstrsByEnum;
64 mutable unsigned NumPseudoInstructions = 0;
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DManagedStatic.h52 mutable std::atomic<void *> Ptr{};
53 mutable void (*DeleterFn)(void *) = nullptr;
54 mutable const ManagedStaticBase *Next = nullptr;
58 mutable std::atomic<void *> Ptr;
59 mutable void (*DeleterFn)(void *);
60 mutable const ManagedStaticBase *Next;
/llvm-project-15.0.7/clang-tools-extra/clangd/support/
H A DFileCache.h68 mutable std::mutex Mu;
70 mutable std::chrono::steady_clock::time_point ValidTime;
72 mutable llvm::sys::TimePoint<> ModifiedTime;
73 mutable uint64_t Size;
H A DThreading.h100 mutable std::condition_variable CV;
101 mutable std::mutex Mu;
118 mutable std::mutex Mutex;
119 mutable std::condition_variable TasksReachedZero;
147 mutable Container Cache;
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DToolChain.h146 mutable std::unique_ptr<Tool> Clang;
147 mutable std::unique_ptr<Tool> Flang;
148 mutable std::unique_ptr<Tool> Assemble;
149 mutable std::unique_ptr<Tool> Link;
150 mutable std::unique_ptr<Tool> StaticLibTool;
151 mutable std::unique_ptr<Tool> IfsMerge;
152 mutable std::unique_ptr<Tool> OffloadBundler;
153 mutable std::unique_ptr<Tool> OffloadWrapper;
155 mutable std::unique_ptr<Tool> LinkerWrapper;
169 mutable bool SanitizerArgsChecked = false;
[all …]
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSymbol.h83 mutable PointerIntPair<MCFragment *, 1> FragmentAndHasName;
94 mutable unsigned IsUsed : 1;
96 mutable unsigned IsRegistered : 1;
100 mutable unsigned IsExternal : 1;
103 mutable unsigned IsPrivateExtern : 1;
110 mutable unsigned IsUsedInReloc : 1;
127 mutable uint32_t Flags : NumFlagsBits;
130 mutable uint32_t Index = 0;
H A DMCSectionCOFF.h32 mutable unsigned Characteristics;
39 mutable unsigned WinCFISectionID = ~0U;
47 mutable int Selection;
/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.h77 llvm::Optional<DecodedThread::TSCRange> mutable m_tsc_range;
78 bool mutable m_tsc_range_calculated = false;
82 llvm::Optional<DecodedThread::NanosecondsRange> mutable m_nanoseconds_range;
83 bool mutable m_nanoseconds_range_calculated = false;
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dmutable-globals.ll1 ; RUN: llc < %s -mattr=+mutable-globals | FileCheck %s
3 ; Test that mutable globals is properly emitted into the target features section
15 ; CHECK-NEXT: .ascii "mutable-globals"
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DLazyMachineBlockFrequencyInfo.h40 mutable std::unique_ptr<MachineBlockFrequencyInfo> OwnedMBFI;
43 mutable std::unique_ptr<MachineLoopInfo> OwnedMLI;
46 mutable std::unique_ptr<MachineDominatorTree> OwnedMDT;
/llvm-project-15.0.7/mlir/include/mlir/Interfaces/
H A DDataLayoutInterfaces.h179 mutable DenseMap<Type, unsigned> sizes;
180 mutable DenseMap<Type, unsigned> bitsizes;
181 mutable DenseMap<Type, unsigned> abiAlignments;
182 mutable DenseMap<Type, unsigned> preferredAlignments;
/llvm-project-15.0.7/clang/test/Analysis/
H A DObjCPropertiesSyntaxChecks.m11 @property(copy) NSMutableString *mutableStr; // expected-warning{{Property of mutable type 'NSMutab…
12 @property(copy) NSMutableString *mutableExplicitStr; // expected-warning{{Property of mutable type …
22 @property(copy) NSMutableString *mutableStrInCategory; // expected-warning{{Property of mutable typ…
23 …mutableReadonlyStrOverriddenInCategory; // expected-warning{{Property of mutable type 'NSMutableSt…
51 …g *mutableReadonlyStrOverriddenInChild; // expected-warning{{Property of mutable type 'NSMutableSt…
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DPThreadEvent.h49 mutable PThreadMutex m_mutex;
50 mutable PThreadCondition m_set_condition;
51 mutable PThreadCondition m_reset_condition;
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h60 mutable DWARFAbbreviationDeclarationSetMap AbbrDeclSets;
61 mutable DWARFAbbreviationDeclarationSetMap::const_iterator PrevAbbrOffsetPos;
62 mutable Optional<DataExtractor> Data;
/llvm-project-15.0.7/mlir/test/Dialect/MLProgram/
H A Dinvalid.mlir47 ml_program.global private mutable @var : i32
49 // expected-error @+1 {{op cannot load as const from mutable global @var}}
70 ml_program.global private mutable @var(42 : i64) : i64
85 ml_program.global private mutable @var(42 : i64) : i64
102 ml_program.global private mutable @global_mutable_undef : tensor<?xi32>
H A Dops.mlir26 // CHECK: ml_program.global private mutable @global_mutable_undef : tensor<?xi32>
27 ml_program.global private mutable @global_mutable_undef : tensor<?xi32>
29 // CHECK: ml_program.global private mutable @global_extern(#extern) : tensor<?xi32>
30 ml_program.global private mutable @global_extern(#ml_program.extern : tensor<4xi32>) : tensor<?xi32>
/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DDarwin.h146 mutable std::unique_ptr<tools::darwin::Lipo> Lipo;
147 mutable std::unique_ptr<tools::darwin::Dsymutil> Dsymutil;
148 mutable std::unique_ptr<tools::darwin::VerifyDebug> VerifyDebug;
151 mutable Optional<VersionTuple> LinkerVersion;
295 mutable bool TargetInitialized;
311 mutable DarwinPlatformKind TargetPlatform;
312 mutable DarwinEnvironmentKind TargetEnvironment;
315 mutable VersionTuple TargetVersion;
317 mutable VersionTuple OSTargetVersion;
320 mutable Optional<DarwinSDKInfo> SDKInfo;
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dtypes.h28 mutable int val;
57 mutable int val;
114 mutable int constCopyAssign = 0;
116 mutable int constMoveAssign = 0;
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DIncludeFixer.h79 mutable unsigned IndexRequestCount = 0;
89 mutable llvm::StringMap<SymbolSlab> FuzzyFindCache;
90 mutable llvm::DenseMap<SymbolID, SymbolSlab> LookupCache;
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DSourceManager.h132 mutable std::unique_ptr<llvm::MemoryBuffer> Buffer;
160 mutable LineOffsetMapping SourceLineCache;
178 mutable unsigned IsBufferInvalid : 1;
633 mutable llvm::BumpPtrAllocator ContentCacheAlloc;
722 mutable FileID LastFileIDLookup;
731 mutable FileID LastLineNoFileIDQuery;
733 mutable unsigned LastLineNoFilePos;
734 mutable unsigned LastLineNoResult;
743 mutable unsigned NumLinearScans = 0;
744 mutable unsigned NumBinaryProbes = 0;
[all …]

12345678910>>...15