/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 95 void printEnum(StringRef Label, T Value, in printEnum() argument 108 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n"; in printEnum() 110 startLine() << Label << ": " << hex(Value) << "\n"; in printEnum() 115 void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags, 142 startLine() << Label << " [ (" << hex(Value) << ")\n"; 149 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() argument 150 startLine() << Label << " [ (" << hex(Value) << ")\n"; in printFlags() 162 void printNumber(StringRef Label, uint64_t Value) { in printNumber() argument 163 startLine() << Label << ": " << Value << "\n"; in printNumber() 166 void printNumber(StringRef Label, uint32_t Value) { in printNumber() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/ |
D | X86GenGlobalISel.inc | 795 GIM_SwitchOpcode, /*MI*/0, /*[*/35, 168, /*)*//*default:*//*Label 43*/ 37038, 796 /*TargetOpcode::G_ADD*//*Label 0*/ 138, 797 /*TargetOpcode::G_SUB*//*Label 1*/ 1755, 798 /*TargetOpcode::G_MUL*//*Label 2*/ 2836, 0, 0, 0, 0, 799 /*TargetOpcode::G_AND*//*Label 3*/ 3602, 800 /*TargetOpcode::G_OR*//*Label 4*/ 7119, 801 /*TargetOpcode::G_XOR*//*Label 5*/ 10989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 802 /*TargetOpcode::G_CONCAT_VECTORS*//*Label 6*/ 14165, 0, 0, 803 …/*TargetOpcode::G_BITCAST*//*Label 7*/ 14321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0… 804 /*TargetOpcode::G_INTRINSIC*//*Label 8*/ 15051, [all …]
|
/third_party/boost/boost/graph/ |
D | labeled_graph.hpp | 47 template < typename Label, typename Vertex > struct choose_default_map 49 typedef typename mpl::if_< is_unsigned< Label >, std::vector< Vertex >, 50 std::map< Label, Vertex > // TODO: Should use unordered_map? 62 template < typename Selector, typename Label, typename Vertex > 67 template < typename Label, typename Vertex > 68 struct generate_label_map< vecS, Label, Vertex > 73 template < typename Label, typename Vertex > 74 struct generate_label_map< mapS, Label, Vertex > 76 typedef std::map< Label, Vertex > type; 79 template < typename Label, typename Vertex > [all …]
|
/third_party/gn/src/gn/ |
D | visibility_unittest.cc | 22 EXPECT_FALSE(vis.CanSeeMe(Label(SourceDir("//random/"), "thing"))); in TEST() 23 EXPECT_FALSE(vis.CanSeeMe(Label(SourceDir("//my/"), "notname"))); in TEST() 25 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//my/"), "name"))); in TEST() 26 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//rec/"), "anything"))); in TEST() 27 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//rec/a/"), "anything"))); in TEST() 28 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//rec/b/"), "anything"))); in TEST() 29 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//dir/"), "anything"))); in TEST() 30 EXPECT_FALSE(vis.CanSeeMe(Label(SourceDir("//dir/a/"), "anything"))); in TEST() 31 EXPECT_FALSE(vis.CanSeeMe(Label(SourceDir("//directory/"), "anything"))); in TEST() 42 EXPECT_TRUE(vis.CanSeeMe(Label(SourceDir("//random/"), "thing"))); in TEST() [all …]
|
D | label.h | 20 class Label { 22 Label() = default; 26 Label(const SourceDir& dir, 32 Label(const SourceDir& dir, const std::string_view& name); 37 static Label Resolve(const SourceDir& current_dir, 39 const Label& current_toolchain, 52 Label GetToolchainLabel() const; 55 Label GetWithNoToolchain() const; 66 std::string GetUserVisibleName(const Label& default_toolchain) const; 68 bool operator==(const Label& other) const { [all …]
|
D | loader.h | 40 const Label& toolchain_name) = 0; 47 virtual Label GetDefaultToolchain() const = 0; 51 virtual const Settings* GetToolchainSettings(const Label& label) const = 0; 55 void Load(const Label& label, const LocationRange& origin); 58 static SourceFile BuildFileForLabel(const Label& label); 86 const Label& toolchain_name) override; 88 Label GetDefaultToolchain() const override; 89 const Settings* GetToolchainSettings(const Label& label) const override; 108 const Label& default_toolchain_label() const { in default_toolchain_label() 145 void DidLoadBuildConfig(const Label& label); [all …]
|
D | label_unittest.cc | 30 TEST(Label, Resolve) { in TEST() argument 76 Label default_toolchain(SourceDir("//t/"), "d"); in TEST() 85 Label result = Label::Resolve(SourceDir(cur.cur_dir), std::string_view(), in TEST() 101 TEST(Label, ResolveAboveRootBuildDir) { in TEST() argument 102 Label default_toolchain(SourceDir("//t/"), "d"); in TEST() 111 Label result = Label::Resolve(cur_dir, std::string_view(), default_toolchain, in TEST() 118 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST() 125 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST() 135 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST()
|
D | inherited_libraries_unittest.cc | 24 Target a(setup.settings(), Label(SourceDir("//foo/"), "a")); in TEST() 25 Target b(setup.settings(), Label(SourceDir("//foo/"), "b")); in TEST() 64 Target a(setup.settings(), Label(SourceDir("//foo/"), "a")); in TEST() 65 Target b(setup.settings(), Label(SourceDir("//foo/"), "b")); in TEST() 66 Target w(setup.settings(), Label(SourceDir("//foo/"), "w")); in TEST() 67 Target x(setup.settings(), Label(SourceDir("//foo/"), "x")); in TEST() 68 Target y(setup.settings(), Label(SourceDir("//foo/"), "y")); in TEST() 69 Target z(setup.settings(), Label(SourceDir("//foo/"), "z")); in TEST() 114 Target set_pub(setup.settings(), Label(SourceDir("//foo/"), "set_pub")); in TEST() 117 Target set_priv(setup.settings(), Label(SourceDir("//foo/"), "set_priv")); in TEST() [all …]
|
D | runtime_deps_unittest.cc | 56 Target stat(setup.settings(), Label(SourceDir("//"), "stat")); in TEST_F() 61 Target shared(setup.settings(), Label(SourceDir("//"), "shared")); in TEST_F() 66 Target loadable(setup.settings(), Label(SourceDir("//"), "loadable")); in TEST_F() 71 Target set(setup.settings(), Label(SourceDir("//"), "set")); in TEST_F() 76 Target main(setup.settings(), Label(SourceDir("//"), "main")); in TEST_F() 128 Target final_in(setup.settings(), Label(SourceDir("//"), "final_in")); in TEST_F() 133 Target datadep(setup.settings(), Label(SourceDir("//"), "datadep")); in TEST_F() 138 Target final_out(setup.settings(), Label(SourceDir("//"), "final_out")); in TEST_F() 143 Target dep(setup.settings(), Label(SourceDir("//"), "dep")); in TEST_F() 148 Target main(setup.settings(), Label(SourceDir("//"), "main")); in TEST_F() [all …]
|
D | config_values_extractors_unittest.cc | 38 Config dep2_all(setup.settings(), Label(SourceDir("//dep2/"), "all")); in TEST() 43 Config dep2_direct(setup.settings(), Label(SourceDir("//dep2/"), "direct")); in TEST() 49 Target dep2(setup.settings(), Label(SourceDir("//dep2/"), "dep2")); in TEST() 58 Config dep1_all_sub(setup.settings(), Label(SourceDir("//dep1"), "allch")); in TEST() 62 Config dep1_all(setup.settings(), Label(SourceDir("//dep1/"), "all")); in TEST() 68 Config dep1_direct(setup.settings(), Label(SourceDir("//dep1/"), "direct")); in TEST() 74 Target dep1(setup.settings(), Label(SourceDir("//dep1/"), "dep1")); in TEST() 83 Config target_all(setup.settings(), Label(SourceDir("//target/"), "all")); in TEST() 89 Label(SourceDir("//target/"), "direct")); in TEST() 97 Label(SourceDir("//target/"), "config")); in TEST() [all …]
|
D | settings.h | 46 const Label& toolchain_label() const { return toolchain_label_; } in toolchain_label() 47 void set_toolchain_label(const Label& l) { toolchain_label_ = l; } in set_toolchain_label() 49 const Label& default_toolchain_label() const { in default_toolchain_label() 52 void set_default_toolchain_label(const Label& default_label) { in set_default_toolchain_label() 93 Label toolchain_label_; 94 Label default_toolchain_label_;
|
D | label_pattern.h | 34 const Label& toolchain_label); 49 bool Matches(const Label& label) const; 53 const Label& label); 63 const Label& toolchain() const { return toolchain_; } in toolchain() 64 void set_toolchain(const Label& tc) { toolchain_ = tc; } in set_toolchain() 69 Label toolchain_;
|
D | builder_unittest.cc | 22 const Label& toolchain_name) override { in Load() 26 Label GetDefaultToolchain() const override { return Label(); } in GetDefaultToolchain() 27 const Settings* GetToolchainSettings(const Label& label) const override { in GetToolchainSettings() 70 settings_.set_toolchain_label(Label(SourceDir("//tc/"), "default")); in BuilderTest() 96 Label a_label(SourceDir("//a/"), "a", toolchain_dir, toolchain_name); in TEST_F() 97 Label b_label(SourceDir("//b/"), "b", toolchain_dir, toolchain_name); in TEST_F() 98 Label c_label(SourceDir("//c/"), "c", toolchain_dir, toolchain_name); in TEST_F() 186 Label toolchain_label2(SourceDir("//tc/"), "secondary"); in TEST_F() 194 Label a_label(SourceDir("//foo/"), "a", settings_.toolchain_label().dir(), in TEST_F() 196 Label b_label(SourceDir("//foo/"), "b", toolchain_label2.dir(), in TEST_F() [all …]
|
D | loader.cc | 37 LoadID(const SourceFile& f, const Label& tc_name) in LoadID() 47 Label toolchain_name; 56 const Label& toolchain_label, in ToolchainRecord() 57 const Label& default_toolchain_label) in ToolchainRecord() 84 void Loader::Load(const Label& label, const LocationRange& origin) { in Load() 89 SourceFile Loader::BuildFileForLabel(const Label& label) { in BuildFileForLabel() 106 const Label& in_toolchain_name) { in Load() 107 const Label& toolchain_name = in_toolchain_name.is_null() in Load() 120 std::make_unique<ToolchainRecord>(build_settings_, Label(), Label()); in Load() 122 Label empty_label; // VS issues spurious warning using ...[Label()]. in Load() [all …]
|
D | analyzer.cc | 33 std::vector<Label> compile_vec; 34 std::vector<Label> test_vec; 37 std::set<Label> compile_labels; 38 std::set<Label> test_labels; 45 std::set<Label> compile_labels; 46 std::set<Label> test_labels; 47 std::set<Label> invalid_labels; 50 std::set<Label> LabelsFor(const std::set<const Target*>& targets) { in LabelsFor() 51 std::set<Label> labels; in LabelsFor() 98 void WriteLabels(const Label& default_toolchain, in WriteLabels() [all …]
|
D | config_unittest.cc | 15 Config config(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() 34 Config sub1(setup.settings(), Label(SourceDir("//foo/"), "1")); in TEST() 38 Config sub2(setup.settings(), Label(SourceDir("//foo/"), "2")); in TEST() 42 Config config(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() 66 Config last(setup.settings(), Label(SourceDir("//foo/"), "last")); in TEST() 70 Config middle(setup.settings(), Label(SourceDir("//foo/"), "middle")); in TEST() 75 Config first(setup.settings(), Label(SourceDir("//foo/"), "first")); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenGlobalISel.inc | 1143 GIM_SwitchOpcode, /*MI*/0, /*[*/35, 171, /*)*//*default:*//*Label 73*/ 114739, 1144 /*TargetOpcode::G_ADD*//*Label 0*/ 141, 1145 /*TargetOpcode::G_SUB*//*Label 1*/ 7282, 1146 /*TargetOpcode::G_MUL*//*Label 2*/ 9747, 1147 /*TargetOpcode::G_SDIV*//*Label 3*/ 10542, 1148 /*TargetOpcode::G_UDIV*//*Label 4*/ 10611, 0, 0, 1149 /*TargetOpcode::G_AND*//*Label 5*/ 10680, 1150 /*TargetOpcode::G_OR*//*Label 6*/ 12314, 1151 /*TargetOpcode::G_XOR*//*Label 7*/ 13308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1152 /*TargetOpcode::G_CONCAT_VECTORS*//*Label 8*/ 14920, 0, 0, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenGlobalISel.inc | 671 GIM_SwitchOpcode, /*MI*/0, /*[*/35, 170, /*)*//*default:*//*Label 55*/ 59850, 672 /*TargetOpcode::G_ADD*//*Label 0*/ 140, 673 /*TargetOpcode::G_SUB*//*Label 1*/ 1360, 674 /*TargetOpcode::G_MUL*//*Label 2*/ 1972, 675 /*TargetOpcode::G_SDIV*//*Label 3*/ 2348, 676 /*TargetOpcode::G_UDIV*//*Label 4*/ 2569, 677 /*TargetOpcode::G_SREM*//*Label 5*/ 2790, 678 /*TargetOpcode::G_UREM*//*Label 6*/ 3011, 679 /*TargetOpcode::G_AND*//*Label 7*/ 3232, 680 /*TargetOpcode::G_OR*//*Label 8*/ 3719, [all …]
|
/third_party/flutter/skia/src/sksl/lex/ |
D | DFAState.h | 17 struct Label { struct 20 Label(std::vector<int> states) in Label() function 23 bool operator==(const Label& other) const { 27 bool operator!=(const Label& other) const { 48 DFAState(int id, Label label) in DFAState() 56 Label fLabel; 62 template<> struct hash<DFAState::Label> { 63 size_t operator()(const DFAState::Label& s) const {
|
/third_party/skia/src/sksl/lex/ |
D | DFAState.h | 17 struct Label { struct 20 Label(std::vector<int> states) in Label() function 23 bool operator==(const Label& other) const { 27 bool operator!=(const Label& other) const { 50 DFAState(int id, Label label) in DFAState() 58 Label fLabel; 64 template<> struct hash<DFAState::Label> { 65 size_t operator()(const DFAState::Label& s) const {
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionThisTypes.types | 89 interface Label extends Component { 94 function test(label: Label) { 95 >test : (label: Label) => void 96 >label : Label 99 >extended : Label & { id: number; } & { tag: string; } 100 >label.extend({ id: 67 }).extend({ tag: "hello" }) : Label & { id: number; } & { tag: string; } 101 >label.extend({ id: 67 }).extend : <T>(props: T) => Label & { id: number; } & T 102 >label.extend({ id: 67 }) : Label & { id: number; } 103 >label.extend : <T>(props: T) => Label & T 104 >label : Label [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/ |
D | ARMGenGlobalISel.inc | 839 GIM_SwitchOpcode, /*MI*/0, /*[*/35, 171, /*)*//*default:*//*Label 53*/ 102487, 840 /*TargetOpcode::G_ADD*//*Label 0*/ 141, 841 /*TargetOpcode::G_SUB*//*Label 1*/ 7399, 842 /*TargetOpcode::G_MUL*//*Label 2*/ 9654, 843 /*TargetOpcode::G_SDIV*//*Label 3*/ 10486, 844 /*TargetOpcode::G_UDIV*//*Label 4*/ 10588, 0, 0, 845 /*TargetOpcode::G_AND*//*Label 5*/ 10690, 846 /*TargetOpcode::G_OR*//*Label 6*/ 13033, 847 /*TargetOpcode::G_XOR*//*Label 7*/ 17856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 848 /*TargetOpcode::G_CONCAT_VECTORS*//*Label 8*/ 18957, 0, 0, [all …]
|
/third_party/boost/libs/math/dot_net_example/distribution_explorer/ |
D | DistexForm.Designer.cs | 33 this.modeLabel = new System.Windows.Forms.Label(); in InitializeComponent() 37 this.parameter3Label = new System.Windows.Forms.Label(); in InitializeComponent() 38 this.distributionNameLabel = new System.Windows.Forms.Label(); in InitializeComponent() 39 this.parameter2Label = new System.Windows.Forms.Label(); in InitializeComponent() 40 this.parameter1Label = new System.Windows.Forms.Label(); in InitializeComponent() 45 this.toLabel2 = new System.Windows.Forms.Label(); in InitializeComponent() 46 this.toLabel1 = new System.Windows.Forms.Label(); in InitializeComponent() 47 this.supportUpperLabel = new System.Windows.Forms.Label(); in InitializeComponent() 48 this.supportLowerLabel = new System.Windows.Forms.Label(); in InitializeComponent() 49 this.supportLabel = new System.Windows.Forms.Label(); in InitializeComponent() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCStreamer.cpp | 467 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfa() local 469 MCCFIInstruction::createDefCfa(Label, Register, Offset); in EmitCFIDefCfa() 478 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfaOffset() local 480 MCCFIInstruction::createDefCfaOffset(Label, Offset); in EmitCFIDefCfaOffset() 488 MCSymbol *Label = EmitCFILabel(); in EmitCFIAdjustCfaOffset() local 490 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment); in EmitCFIAdjustCfaOffset() 498 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfaRegister() local 500 MCCFIInstruction::createDefCfaRegister(Label, Register); in EmitCFIDefCfaRegister() 509 MCSymbol *Label = EmitCFILabel(); in EmitCFIOffset() local 511 MCCFIInstruction::createOffset(Label, Register, Offset); in EmitCFIOffset() [all …]
|
/third_party/boost/libs/python/test/ |
D | return_arg.cpp | 31 struct Label : Widget struct 33 Label() {} in Label() function 59 class_<Label, bases<Widget> >("Label") in BOOST_PYTHON_MODULE() argument 60 .def("label", &Label::get_label)//,return_arg<0>()) //error(s) in BOOST_PYTHON_MODULE() 61 .def("label", &Label::set_label, return_self<>()) in BOOST_PYTHON_MODULE()
|