/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | RecordStreamer.cpp | 157 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 D | WasmObjectFile.cpp | 493 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 D | Traits.hpp | 46 // 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 D | ZipRegistry.h | 53 bool IsDefined;
member 58 IsDefined(false),
in CMemUse() 66 IsDefined = false;
in Clear()
|
/third_party/node/deps/v8/src/execution/ |
H A D | protectors.cc | 37 // 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 D | ReactorUnitTests.cpp | 4070 // 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 D | X86FixupBWInsts.cpp | 259 bool IsDefined = false; in getSuperRegDestIfDead() 267 IsDefined = true; in getSuperRegDestIfDead() 278 if (!IsDefined) in getSuperRegDestIfDead()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | FrameworkPortability.cs | 44 // 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 D | DeprecatedMemberTest.cs | 45 Assert.IsTrue(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member);
in AssertIsDeprecated()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | DeprecatedMemberTest.cs | 45 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 D | JITLink.h | 105 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 D | TGLexer.h | 172 // with an inverted IsDefined value. 187 bool IsDefined; member 364 // controls on the stack have their IsDefined member set to true.
|
H A D | TGLexer.cpp | 736 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor() 1002 if (!I->IsDefined) in prepIsProcessingEnabled()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction-selector.h | 444 bool IsDefined(Node* node) const; 451 bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); } in IsLive()
|
H A D | instruction-selector.cc | 392 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 D | diff.cpp | 222 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 D | AMDGPUAsmParser.cpp | 1294 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 D | instruction-selector-mips.cc | 1711 if (!result || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
H A D | instruction-selector-ppc.cc | 1687 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | instruction-selector-s390.cc | 1855 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
H A D | instruction-selector-arm.cc | 2055 if (!result || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | instruction-selector-mips64.cc | 2476 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | instruction-selector-x64.cc | 2613 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
H A D | instruction-selector-arm64.cc | 2906 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | instruction-selector-ia32.cc | 1828 if (result == nullptr || IsDefined(result)) { in VisitWordCompareZero()
|