/external/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFStreamer.cpp | 44 for (auto *L : Labels) { in createPendingLabelRelocs() 51 Labels.clear(); in createPendingLabelRelocs() 56 Labels.push_back(Symbol); in EmitLabel() 62 Labels.clear(); in SwitchSection() 68 Labels.clear(); in EmitValueImpl()
|
D | MipsELFStreamer.h | 32 SmallVector<MCSymbol*, 4> Labels; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFStreamer.cpp | 79 for (auto *L : Labels) { in createPendingLabelRelocs() 86 Labels.clear(); in createPendingLabelRelocs() 91 Labels.push_back(Symbol); in EmitLabel() 97 Labels.clear(); in SwitchSection() 103 Labels.clear(); in EmitValueImpl() 108 Labels.clear(); in EmitIntValue()
|
D | MipsELFStreamer.h | 34 SmallVector<MCSymbol*, 4> Labels; variable
|
/external/tensorflow/tensorflow/core/lib/monitoring/ |
D | counter.h | 97 template <typename... Labels> 98 CounterCell* GetCell(const Labels&... labels) LOCKS_EXCLUDED(mu_); 149 template <typename... Labels> 150 CounterCell* Counter<NumLabels>::GetCell(const Labels&... labels) in GetCell() 154 static_assert(sizeof...(Labels) == NumLabels, in GetCell()
|
D | sampler.h | 128 template <typename... Labels> 129 SamplerCell* GetCell(const Labels&... labels) LOCKS_EXCLUDED(mu_); 192 template <typename... Labels> 193 SamplerCell* Sampler<NumLabels>::GetCell(const Labels&... labels) in GetCell() 197 static_assert(sizeof...(Labels) == NumLabels, in GetCell()
|
D | gauge.h | 149 template <typename... Labels> 150 GaugeCell<ValueType>* GetCell(const Labels&... labels) LOCKS_EXCLUDED(mu_); 217 template <typename... Labels> 219 const Labels&... labels) LOCKS_EXCLUDED(mu_) { in GetCell() 223 sizeof...(Labels) == NumLabels, in GetCell()
|
D | mobile_counter.h | 51 template <typename... Labels> 52 CounterCell* GetCell(const Labels&... labels) { in GetCell()
|
D | mobile_gauge.h | 56 template <typename... Labels> 57 GaugeCell<ValueType>* GetCell(const Labels&... labels) { in GetCell()
|
D | mobile_sampler.h | 84 template <typename... Labels> 85 SamplerCell* GetCell(const Labels&... labels) { in GetCell()
|
/external/catch2/contrib/ |
D | ParseAndAddCatchTests.cmake | 141 set(Labels ${TestTarget}) variable 147 list(REMOVE_ITEM Labels ${TestTarget}) 156 list(APPEND Labels ${Tags}) 158 list(FIND Labels "!hide" IndexOfHideLabel) 160 foreach(label ${Labels}) 171 if(Labels) 172 PrintDebugMessage("Setting labels to ${Labels}") 186 LABELS "${Labels}")
|
/external/syzkaller/vendor/cloud.google.com/go/storage/ |
D | bucket.go | 234 Labels map[string]string member 343 Labels: b.Labels, 381 if len(b.Labels) > 0 { 382 labels = make(map[string]string, len(b.Labels)) 383 for k, v := range b.Labels { 405 Labels: labels, 455 rb.Labels = map[string]string{} 457 rb.Labels[k] = v 459 if len(rb.Labels) == 0 && len(ua.deleteLabels) > 0 {
|
/external/autotest/site_utils/ |
D | dut_mon.py | 39 board = _get_unique_label(host.labels, constants.Labels.BOARD_PREFIX) 40 model = _get_unique_label(host.labels, constants.Labels.MODEL_PREFIX) 41 pool = _get_unique_label(host.labels, constants.Labels.POOL_PREFIX)
|
D | lab_inventory.py | 464 if l.startswith(constants.Labels.MODEL_PREFIX)] 466 if l.startswith(constants.Labels.POOL_PREFIX)] 496 label_list = [constants.Labels.POOL_PREFIX + l for l in target_pools] 504 model_label = constants.Labels.MODEL_PREFIX + model
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 138 const Labels: IDictionary<String, IANTLRInterface>); 151 const Labels: IDictionary<String, IANTLRInterface>); 1756 Labels: IDictionary<String, IANTLRInterface>; 1761 Labels := TDictionary<String, IANTLRInterface>.Create; 1762 CheckTrue(Wiz.Parse(T, '(%a:A %b:B %c:C)', Labels)); 1763 CheckEquals('A', Labels['a'].ToString); 1764 CheckEquals('B', Labels['b'].ToString); 1765 CheckEquals('C', Labels['c'].ToString); 1773 Labels: IDictionary<String, IANTLRInterface>; 1778 Labels := TDictionary<String, IANTLRInterface>.Create; [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.cpp | 399 Labels.reserve(MaxSrcs); in InstPhi() 408 Labels.push_back(Label); in addArgument() 416 if (Labels[I] == Target) in getOperandForTarget() 444 if (Labels[I] == Target) { in livenessPhiOperand() 512 Labels = Func->allocateArrayOf<CfgNode *>(NumCases); in InstSwitch() 516 Labels[I] = nullptr; in InstSwitch() 523 Labels[CaseIndex] = Label; in addBranch() 532 assert(Labels[I]); in getTerminatorEdges() 533 OutEdges.push_back(Labels[I]); in getTerminatorEdges() 551 if (Labels[I] == OldNode) { in repointEdges() [all …]
|
D | IceInst.h | 679 CfgNode *getLabel(SizeT Index) const { return Labels[Index]; } in getLabel() 680 void setLabel(SizeT Index, CfgNode *Label) { Labels[Index] = Label; } in setLabel() 695 CfgVector<CfgNode *> Labels; variable 795 return Labels[I]; in getLabel() 808 Func->deallocateArrayOf<CfgNode *>(Labels); in destroy() 815 CfgNode **Labels; /// size is NumCases variable
|
D | IceAssemblerMIPS32.cpp | 76 Label *AssemblerMIPS32::getOrCreateLabel(SizeT Number, LabelVector &Labels) { in getOrCreateLabel() argument 78 if (Number == Labels.size()) { in getOrCreateLabel() 80 Labels.push_back(L); in getOrCreateLabel() 83 if (Number > Labels.size()) { in getOrCreateLabel() 84 Labels.resize(Number + 1); in getOrCreateLabel() 86 L = Labels[Number]; in getOrCreateLabel() 89 Labels[Number] = L; in getOrCreateLabel()
|
/external/autotest/server/ |
D | constants.py | 5 class Labels: class
|
/external/autotest/server/lib/ |
D | status_history.py | 523 prefix = constants.Labels.MODEL_PREFIX 530 prefix = constants.Labels.BOARD_PREFIX 537 prefix = constants.Labels.POOL_PREFIX
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | CompileUnit.h | 129 bool hasLabelAt(uint64_t Addr) const { return Labels.count(Addr); } in hasLabelAt() 284 SmallDenseMap<uint64_t, uint64_t, 1> Labels; variable
|
/external/autotest/scheduler/ |
D | rdb_hosts.py | 361 return [l[len(constants.Labels.POOL_PREFIX):] for l in self.labels 362 if l.startswith(constants.Labels.POOL_PREFIX)]
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.debug.txt | 36 + Labels (for all valid object types) 85 Labels are set and immediately read back.
|
/external/u-boot/disk/ |
D | Kconfig | 5 bool "Enable Partition Labels (disklabels) support" 12 Partition Labels (disklabels) Supported:
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 908 const Labels: IDictionary<String, IANTLRInterface>); 1001 const Labels: IDictionary<String, IANTLRInterface>): Boolean; overload; 1727 const Labels: IDictionary<String, IANTLRInterface>); overload; 1778 const Labels: IDictionary<String, IANTLRInterface>); overload; 1813 const Labels: IDictionary<String, IANTLRInterface>): Boolean; overload; 1821 const Labels: IDictionary<String, IANTLRInterface>): Boolean; 4099 const Labels: IDictionary<String, IANTLRInterface>): Boolean; 4108 Result := _Parse(T, TreePattern, Labels); 4188 const Labels: IDictionary<String, IANTLRInterface>): Boolean; 4207 if (T2.TokenLabel <> '') and Assigned(Labels) then [all …]
|