/third_party/node/deps/npm/node_modules/es-abstract/ |
D | es5.js | 94 IsPropertyDescriptor: function IsPropertyDescriptor(Desc) { 95 if (this.Type(Desc) !== 'Object') { 107 for (var key in Desc) { // eslint-disable-line 108 if (has(Desc, key) && !allowed[key]) { 113 var isData = has(Desc, '[[Value]]'); 114 var IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]'); 122 IsAccessorDescriptor: function IsAccessorDescriptor(Desc) { 123 if (typeof Desc === 'undefined') { 127 if (!this.IsPropertyDescriptor(Desc)) { 131 if (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) { [all …]
|
D | es2015.js | 355 CompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) { 356 if (!this.IsPropertyDescriptor(Desc)) { 360 if (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) { 361 if (!has(Desc, '[[Value]]')) { 362 Desc['[[Value]]'] = void 0; 364 if (!has(Desc, '[[Writable]]')) { 365 Desc['[[Writable]]'] = false; 368 if (!has(Desc, '[[Get]]')) { 369 Desc['[[Get]]'] = void 0; 371 if (!has(Desc, '[[Set]]')) { [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFExpression.cpp | 28 typedef Op::Description Desc; in getDescriptions() typedef 31 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions() 32 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions() 33 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions() 34 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions() 35 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getDescriptions() 36 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getDescriptions() 37 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getDescriptions() 38 Descriptions[DW_OP_const4s] = Desc(Op::Dwarf2, Op::SignedSize4); in getDescriptions() 39 Descriptions[DW_OP_const8u] = Desc(Op::Dwarf2, Op::Size8); in getDescriptions() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | LSUnit.cpp | 70 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in dispatch() local 71 unsigned IsMemBarrier = Desc.HasSideEffects; in dispatch() 72 assert((Desc.MayLoad || Desc.MayStore) && "Not a memory operation!"); in dispatch() 74 if (Desc.MayLoad) in dispatch() 76 if (Desc.MayStore) in dispatch() 79 if (Desc.MayStore) { in dispatch() 104 if (Desc.MayLoad) { in dispatch() 113 assert(Desc.MayLoad && "Expected a load!"); in dispatch() 154 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in isAvailable() local 155 if (Desc.MayLoad && isLQFull()) in isAvailable() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86IntelInstPrinter.cpp | 67 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printVecCompareInstr() local 85 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr() 86 if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XS) in printVecCompareInstr() 88 else if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XD) in printVecCompareInstr() 142 if (Desc.TSFlags & X86II::EVEX_K) { in printVecCompareInstr() 152 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr() 153 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 156 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr() 163 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 164 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16; in printVecCompareInstr() [all …]
|
D | X86ATTInstPrinter.cpp | 87 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printVecCompareInstr() local 102 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr() 103 if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XS) in printVecCompareInstr() 105 else if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XD) in printVecCompareInstr() 160 unsigned CurOp = (Desc.TSFlags & X86II::EVEX_K) ? 3 : 2; in printVecCompareInstr() 162 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr() 163 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 166 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr() 173 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 174 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16; in printVecCompareInstr() [all …]
|
/third_party/boost/libs/function_types/example/ |
D | result_of.hpp | 54 template<typename F, typename Desc> 57 typedef typename F::template result<Desc>::type type; 68 template<typename F, typename Desc> 76 , result_member_template<F,Desc> 81 template<typename Desc> 83 : detail::result_of_impl< typename ft::result_type<Desc>::type, Desc >
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | Support.cpp | 50 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 51 if (Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 59 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 60 if (!Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 63 for (unsigned U = 0; U < Desc.NumUnits; ++U) { in computeProcResourceMasks() 64 uint64_t OtherMask = Masks[Desc.SubUnitsIdxBegin[U]]; in computeProcResourceMasks() 74 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 77 << Desc.Name << '\n'); in computeProcResourceMasks()
|
/third_party/boost/boost/graph/ |
D | copy.hpp | 59 template < typename Graph, typename Desc > 62 typedef Desc type; 63 static Desc convert(const Desc& d, const Graph&) { return d; } in convert() 66 template < typename Graph, typename Desc > 68 reverse_graph_edge_descriptor< Desc > > 70 typedef Desc type; 71 static Desc convert( in convert() 72 const reverse_graph_edge_descriptor< Desc >& d, const Graph& g) in convert() 83 template < typename Desc, typename Graph > 86 typedef Desc type; [all …]
|
/third_party/flutter/skia/src/gpu/gl/ |
D | GrGLTexture.h | 21 struct Desc { struct 32 GrGLTexture(GrGLGpu*, SkBudgeted, const Desc&, GrMipMapsStatus); argument 56 const Desc&, 64 GrGLTexture(GrGLGpu*, const Desc&, sk_sp<GrGLTextureParameters>, GrMipMapsStatus); 68 const Desc&, 74 void init(const Desc&);
|
/third_party/skia/src/gpu/gl/ |
D | GrGLTexture.h | 21 struct Desc { struct 31 GrGLTexture(GrGLGpu*, SkBudgeted, const Desc&, GrMipmapStatus); argument 55 const Desc&, 63 GrGLTexture(GrGLGpu*, const Desc&, sk_sp<GrGLTextureParameters>, GrMipmapStatus); 67 const Desc&, 73 void init(const Desc&);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | DebugCounter.h | 70 static unsigned registerCounter(StringRef Name, StringRef Desc) { in registerCounter() argument 71 return instance().addCounter(Name, Desc); in registerCounter() 134 return std::make_pair(RegisteredCounters[ID], Counters.lookup(ID).Desc); in getCounterInfo() 161 unsigned addCounter(const std::string &Name, const std::string &Desc) { in addCounter() argument 164 Counters[Result].Desc = Desc; in addCounter() 173 std::string Desc; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Statistic.h | 51 const char *Desc; variable 53 StatisticBase(const char *DebugType, const char *Name, const char *Desc) in StatisticBase() argument 54 : DebugType(DebugType), Name(Name), Desc(Desc) {} in StatisticBase() 58 const char *getDesc() const { return Desc; } in getDesc() 66 TrackingStatistic(const char *DebugType, const char *Name, const char *Desc) in TrackingStatistic() argument 67 : StatisticBase(DebugType, Name, Desc), Value(0), Initialized(false) {} in TrackingStatistic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinterDwarf.cpp | 39 void AsmPrinter::EmitSLEB128(int64_t Value, const char *Desc) const { in EmitSLEB128() 40 if (isVerbose() && Desc) in EmitSLEB128() 41 OutStreamer->AddComment(Desc); in EmitSLEB128() 46 void AsmPrinter::EmitULEB128(uint64_t Value, const char *Desc, unsigned PadTo) const { in EmitULEB128() argument 47 if (isVerbose() && Desc) in EmitULEB128() 48 OutStreamer->AddComment(Desc); in EmitULEB128() 108 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { in EmitEncodingByte() 110 if (Desc) in EmitEncodingByte() 111 OutStreamer->AddComment(Twine(Desc) + " Encoding = " + in EmitEncodingByte()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | SIMCCodeEmitter.cpp | 286 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in encodeInstruction() local 287 unsigned bytes = Desc.getSize(); in encodeInstruction() 294 if (AMDGPU::isGFX10(STI) && Desc.TSFlags & SIInstrFlags::MIMG) { in encodeInstruction() 315 for (unsigned i = 0, e = Desc.getNumOperands(); i < e; ++i) { in encodeInstruction() 318 if (!AMDGPU::isSISrcOperand(Desc, i)) in encodeInstruction() 323 if (getLitEncoding(Op, Desc.OpInfo[i], STI) != 255) in encodeInstruction() 381 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getSDWASrcEncoding() local 382 uint32_t Enc = getLitEncoding(MO, Desc.OpInfo[OpNo], STI); in getSDWASrcEncoding() 475 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getMachineOpValue() local 476 uint32_t Offset = Desc.getSize(); in getMachineOpValue() [all …]
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkPipelineStateBuilder.h | 38 class Desc : public GrProgramDesc { 40 static bool Build(Desc*, 71 Desc*, 91 Desc*); 105 Desc* desc,
|
D | GrVkBuffer.h | 51 struct Desc { struct 81 const Desc& descriptor); 83 GrVkBuffer(const Desc& desc, const GrVkBuffer::Resource* resource) in GrVkBuffer() 103 const Desc& descriptor) { in createResource() 114 Desc fDesc;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonMCChecker.cpp | 302 MCInstrDesc const &Desc = HexagonMCInstrInfo::getDesc(MCII, I); in reportBranchErrors() local 303 if (Desc.isBranch() || Desc.isCall() || Desc.isReturn()) in reportBranchErrors() 313 MCInstrDesc const &Desc = HexagonMCInstrInfo::getDesc(MCII, I); in checkHWLoop() local 314 if (Desc.isBranch() || Desc.isCall() || Desc.isReturn()) { in checkHWLoop() 327 MCInstrDesc const &Desc = HexagonMCInstrInfo::getDesc(MCII, I); in checkCOFMax1() local 328 if (Desc.isBranch() || Desc.isCall() || Desc.isReturn()) in checkCOFMax1() 454 MCInstrDesc const &Desc = in checkNewValues() local 456 if (Desc.OpInfo[std::get<1>(Producer)].RegClass == in checkNewValues() 464 if ((Desc.mayLoad() && std::get<1>(Producer) == 1) || in checkNewValues() 465 (Desc.mayStore() && std::get<1>(Producer) == 0)) { in checkNewValues() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 33 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { in emitSourceFileHeader() argument 42 size_t Length = std::min(Desc.size() - Pos, MAX_LINE_LEN - PSLen); in emitSourceFileHeader() 43 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader() 45 } while (Pos < Desc.size()); in emitSourceFileHeader()
|
/third_party/flutter/skia/src/gpu/mtl/ |
D | GrMtlPipelineStateBuilder.h | 36 class Desc : public GrProgramDesc { 38 static bool Build(Desc*, 66 Desc*); 78 Desc*);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyInstPrinter.cpp | 55 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printInst() local 56 if (Desc.isVariadic()) { in printInst() 57 if (Desc.getNumOperands() == 0 && MI->getNumOperands() > 0) in printInst() 59 for (auto I = Desc.getNumOperands(), E = MI->getNumOperands(); I < E; ++I) { in printInst() 65 I != Desc.getNumOperands())) in printInst() 153 unsigned NumFixedOperands = Desc.NumOperands; in printInst() 159 if (Desc.OpInfo[I].OperandType != WebAssembly::OPERAND_BASIC_BLOCK) in printInst() 228 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printOperand() local 229 const MCOperandInfo &Info = Desc.OpInfo[OpNo]; in printOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | Instruction.h | 150 WriteState(const WriteDescriptor &Desc, MCPhysReg RegID, 152 : WD(&Desc), CyclesLeft(UNKNOWN_CYCLES), RegisterID(RegID), PRFID(0), 257 ReadState(const ReadDescriptor &Desc, MCPhysReg RegID) in ReadState() argument 258 : RD(&Desc), RegisterID(RegID), PRFID(0), DependentWrites(0), in ReadState() 396 const InstrDesc &Desc; variable 412 InstructionBase(const InstrDesc &D) : Desc(D), IsOptimizableMove(false) {} in InstructionBase() 418 const InstrDesc &getDesc() const { return Desc; } in getDesc() 420 unsigned getLatency() const { return Desc.MaxLatency; } in getLatency() 421 unsigned getNumMicroOps() const { return Desc.NumMicroOps; } in getNumMicroOps() 438 bool isMemOp() const { return Desc.MayLoad || Desc.MayStore; } in isMemOp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | MachOLinkGraphBuilder.cpp | 60 Linkage MachOLinkGraphBuilder::getLinkage(uint16_t Desc) { in getLinkage() argument 61 if ((Desc & MachO::N_WEAK_DEF) || (Desc & MachO::N_WEAK_REF)) in getLinkage() 77 return NSym.Desc & MachO::N_ALT_ENTRY; in isAltEntry() 213 uint16_t Desc; in createNormalizedSymbols() local 222 Desc = NL64.n_desc; in createNormalizedSymbols() 230 Desc = NL32.n_desc; in createNormalizedSymbols() 254 << ", desc = " << formatv("{0:x4}", Desc) << ", sect = "; in createNormalizedSymbols() 276 &createNormalizedSymbol(*Name, Value, Type, Sect, Desc, in createNormalizedSymbols() 317 1ull << MachO::GET_COMM_ALIGN(NSym.Desc), in graphifyRegularSymbols() 318 NSym.Desc & MachO::N_NO_DEAD_STRIP); in graphifyRegularSymbols() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCInstrInfo.h | 24 const MCInstrDesc *Desc; // Raw array to allow static init'n variable 34 Desc = D; in InitMCInstrInfo() 46 return Desc[Opcode]; in get()
|
/third_party/node/deps/npm/docs/src/components/home/ |
D | FeatureCard.js | 11 const Desc = styled.p` constant 33 <Desc>{text}</Desc>
|