HomeSort by: relevance | last modified time | path
    Searched refs:Mutable (Results 1 - 21 of 21) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
WasmTraits.h 58 return hash_combine(GlobalType.Type, GlobalType.Mutable);
Wasm.h 94 bool Mutable;
425 return LHS.Type == RHS.Type && LHS.Mutable == RHS.Mutable;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.cpp 65 bool Mutable = true;
68 WasmSym->setGlobalType(wasm::WasmGlobalType{uint8_t(Type), Mutable});
106 bool Mutable =
112 Mutable});
WebAssemblyAsmPrinter.cpp 192 bool Mutable = true;
195 Sym->setGlobalType(wasm::WasmGlobalType{uint8_t(Type), Mutable});
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyTargetStreamer.cpp 75 if (!Sym->getGlobalType().Mutable)
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp 239 Im.GlobalImport.Mutable = Import.Global.Mutable;
301 G.Mutable = Global.Type.Mutable;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 784 // Optional mutable modifier. Default to mutable for historical reasons.
787 bool Mutable = true;
792 Mutable = false;
794 // Should we also allow `mutable` and `mut` here for clarity?
801 wasm::WasmGlobalType{uint8_t(Type.getValue()), Mutable});
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 385 writeUint8(OS, Import.GlobalImport.Mutable);
478 writeUint8(OS, Global.Mutable);
WasmYAML.cpp 398 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable);
422 IO.mapRequired("Mutable", Global.Mutable);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLambda.cpp 488 bool Mutable) {
499 LSI->Mutable = Mutable;
952 // by mutable. It is neither virtual nor declared volatile. [...]
1715 /*Mutable=*/false, ICIS_NoInit);
SemaDecl.cpp 4786 // Since mutable is not a viable storage class specifier in C, there is
5194 /*BitWidth=*/nullptr, /*Mutable=*/false,
5205 // mutable can only appear on non-static class members, so it's always
5293 /*BitWidth=*/nullptr, /*Mutable=*/false,
6885 // mutable can only appear on non-static class members, so it's always
11684 // FIXME: Initialization should not be taking a mutable list of inits.
13021 auto checkConstInit = [&]() mutable {
14104 LSI->Mutable = !CallOperator->isConst();
16731 bool Mutable
16735 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle
    [all...]
SemaExpr.cpp 12661 // Mutable fields can be modified even if the class is const.
17246 // Similarly to mutable captures in lambda, all the OpenMP captures by copy
17247 // are mutable in the sense that user can change their value - they are
17251 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) &&
17537 // parameter-declaration-clause is not followed by mutable.
17539 if (!LSI->Mutable && !CaptureType->isReferenceType())
17985 // expressions and has no mutable subobjects, and e is an element of
18426 // expressions and has no mutable subobjects [FIXME], and e is an
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 838 /// Whether this is a mutable lambda.
839 bool Mutable = false;
Sema.h 1365 mutable llvm::DenseMap<const EnumDecl*, llvm::APInt> FlagBitsCache;
3041 bool Mutable, Expr *BitfieldWidth,
6605 bool Mutable);
12620 /// Check whether receiver is mutable ObjC container which
12675 mutable IdentifierInfo *Ident_super;
12676 mutable IdentifierInfo *Ident___float128;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 76 bool Mutable;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 891 mutable InitType Init;
2798 unsigned Mutable : 1;
2799 mutable unsigned CachedFieldIndex : 30;
2845 QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2848 BitField(false), Mutable(Mutable), CachedFieldIndex(0),
2861 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2870 /// Determines whether this field is mutable (C++ only).
2871 bool isMutable() const { return Mutable; }
3106 mutable const Type *TypeForDecl = nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 805 W->OS << char(Import.Global.Mutable ? 1 : 0);
868 W->OS << char(Global.Type.Mutable);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 1050 Im.Global.Mutable = readVaruint1(Ctx);
1165 Global.Type.Mutable = readVaruint1(Ctx);
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
TestRunner.py 54 """Mutable shell environment containing things like CWD and env vars.
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 4140 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
4143 BW, Mutable, InitStyle);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1349 FD->Mutable = Record.readInt();

Completed in 176 milliseconds