Home
last modified time | relevance | path

Searched refs:IsDefined (Results 1 - 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DRecordStreamer.cpp157 bool IsDefined = false; in flushSymverDirectives() local
178 IsDefined = true; in flushSymverDirectives()
187 if (Attr == MCSA_Invalid || !IsDefined) { in flushSymverDirectives()
205 IsDefined = IsDefined || !GV->isDeclarationForLinker(); in flushSymverDirectives()
216 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives()
224 if (IsDefined) in flushSymverDirectives()
H A DWasmObjectFile.cpp493 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
499 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
502 if (IsDefined) { in parseLinkingSectionSymtab()
524 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
527 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
531 if (IsDefined) { in parseLinkingSectionSymtab()
552 if (IsDefined) { in parseLinkingSectionSymtab()
582 IsDefined != isDefinedEventIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
585 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
589 if (IsDefined) { in parseLinkingSectionSymtab()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DTraits.hpp46 // IsDefined<T>::value is true if T is a valid type, otherwise false.
48 struct IsDefined struct
54 struct IsDefined<T, std::enable_if_t<(sizeof(T) > 0)>> struct
60 struct IsDefined<void> struct
143 using HasReactorType = IsDefined<CToReactorT<T>>;
217 struct IsRValue<T, std::enable_if_t<IsDefined<typename T::rvalue_underlying_type>::value>>
236 struct IsReference<T, std::enable_if_t<IsDefined<typename T::reference_underlying_type>::value>>
248 struct ReactorType<T, std::enable_if_t<IsDefined<CToReactorT<T>>::value>>
/third_party/lzma/CPP/7zip/UI/Common/
H A DZipRegistry.h53 bool IsDefined; member
58 IsDefined(false), in CMemUse()
66 IsDefined = false; in Clear()
/third_party/node/deps/v8/src/execution/
H A Dprotectors.cc37 // fails, add the use counter in V8 and chromium. Note: IsDefined is not
39 constexpr bool IsDefined(v8::Isolate::UseCounterFeature) { return true; } in IsDefined() function
41 STATIC_ASSERT(IsDefined(v8::Isolate::kInvalidated##Name##Protector));
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
H A DReactorUnitTests.cpp4070 // Assert IsDefined<> resolves true for RValue<> types.
4071 static_assert(IsDefined<RValue<Void>>::value, "");
4072 static_assert(IsDefined<RValue<Bool>>::value, "");
4073 static_assert(IsDefined<RValue<Byte>>::value, "");
4074 static_assert(IsDefined<RValue<SByte>>::value, "");
4075 static_assert(IsDefined<RValue<Short>>::value, "");
4076 static_assert(IsDefined<RValue<UShort>>::value, "");
4077 static_assert(IsDefined<RValue<Int>>::value, "");
4078 static_assert(IsDefined<RValue<Long>>::value, "");
4079 static_assert(IsDefined<RValu
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp259 bool IsDefined = false; in getSuperRegDestIfDead()
267 IsDefined = true; in getSuperRegDestIfDead()
278 if (!IsDefined) in getSuperRegDestIfDead()
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DFrameworkPortability.cs44 // execution time using Enum.IsDefined, so a single build will do the right thing
47 Enum.IsDefined(typeof(RegexOptions), 8) ? (RegexOptions)8 : RegexOptions.None;
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
H A DDeprecatedMemberTest.cs45 Assert.IsTrue(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member); in AssertIsDeprecated()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DDeprecatedMemberTest.cs45 Assert.IsTrue(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member); in AssertIsDeprecated()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h105 Addressable(JITTargetAddress Address, bool IsDefined) in Addressable() argument
106 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
109 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
110 assert(!(IsDefined && IsAbsolute) && in Addressable()
125 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
130 uint64_t IsDefined : 1;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DTGLexer.h172 // with an inverted IsDefined value.
187 bool IsDefined; member
364 // controls on the stack have their IsDefined member set to true.
H A DTGLexer.cpp736 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1002 if (!I->IsDefined) in prepIsProcessingEnabled()
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction-selector.h444 bool IsDefined(Node* node) const;
451 bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); } in IsLive()
H A Dinstruction-selector.cc392 bool InstructionSelector::IsDefined(Node* node) const { in IsDefined() function in v8::internal::compiler::InstructionSelector
1227 if (IsUsed(node) && !IsDefined(node)) { in VisitBlock()
/third_party/spirv-tools/source/diff/
H A Ddiff.cpp222 bool IsDefined(uint32_t id) {
2744 [this](uint32_t src_id) { return src_id_to_.IsDefined(src_id); },
2745 [this](uint32_t dst_id) { return dst_id_to_.IsDefined(dst_id); });
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1294 bool IsDefined = false; member
5089 Op.IsDefined = true;
5098 Stream.IsDefined = true;
5122 } else if (Strict && (msgRequiresOp(Msg.Id) != Op.IsDefined)) {
5123 Error(S, Op.IsDefined ?
5130 } else if (Strict && !msgSupportsStream(Msg.Id, Op.Id) && Stream.IsDefined) {
/third_party/node/deps/v8/src/compiler/backend/mips/
H A Dinstruction-selector-mips.cc1711 if (!result || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/ppc/
H A Dinstruction-selector-ppc.cc1687 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/s390/
H A Dinstruction-selector-s390.cc1855 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dinstruction-selector-arm.cc2055 if (!result || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dinstruction-selector-mips64.cc2476 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dinstruction-selector-x64.cc2613 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/arm64/
H A Dinstruction-selector-arm64.cc2906 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dinstruction-selector-ia32.cc1828 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()

Completed in 83 milliseconds

12