Home
last modified time | relevance | path

Searched refs:Mutable (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h348 bool Mutable; member
514 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
H A DWasmTraits.h56 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp73 if (!Sym->getGlobalType().Mutable) in emitGlobalType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp257 return !Mutable; in lambdaCaptureShouldBeConst()
H A DSemaLambda.cpp526 bool ExplicitParams, bool Mutable) { in buildLambdaScope() argument
537 LSI->Mutable = Mutable; in buildLambdaScope()
1338 LSI->Mutable = MutableLoc.isValid(); in ActOnLambdaClosureQualifiers()
H A DSemaDecl.cpp15380 LSI->Mutable = !CallOperator->isConst(); in RebuildLambdaScopeInfo()
18303 bool Mutable in HandleField() local
18307 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, in HandleField()
18330 bool Mutable, Expr *BitWidth, in CheckFieldDecl() argument
18423 if (!InvalidDecl && Mutable) { in CheckFieldDecl()
18437 Mutable = false; in CheckFieldDecl()
18450 BitWidth, Mutable, InitStyle); in CheckFieldDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp794 bool Mutable = true; in parseDirective() local
801 Mutable = false; in parseDirective()
809 WasmSym->setGlobalType(wasm::WasmGlobalType{uint8_t(*Type), Mutable}); in parseDirective()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp232 bool Mutable = in getOrCreateWasmSymbol() local
238 Mutable}); in getOrCreateWasmSymbol()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp398 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
485 writeUint8(OS, Global.Mutable); in writeSectionContent()
H A DWasmYAML.cpp403 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping()
424 IO.mapRequired("Mutable", Global.Mutable); in mapping()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3057 unsigned Mutable : 1;
3092 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in FieldDecl() argument
3095 Mutable(Mutable), StorageKind((InitStorageKind)InitStyle), in FieldDecl()
3108 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
3118 bool isMutable() const { return Mutable; } in isMutable()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h85 bool Mutable; member
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h890 bool Mutable = true; variable
H A DSema.h3917 SourceLocation Loc, bool Mutable,
8752 bool Mutable);
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp867 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
930 W->OS << char(Global.Type.Mutable); in writeGlobalSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1282 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1419 Global.Type.Mutable = readVaruint1(Ctx); in parseGlobalSection()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4540 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, in Create() argument
4543 BW, Mutable, InitStyle); in Create()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1526 FD->Mutable = Record.readInt(); in VisitFieldDecl()