Home
last modified time | relevance | path

Searched refs:label1 (Results 1 – 25 of 62) sorted by relevance

123

/third_party/gettext/gettext-tools/examples/hello-csharp-forms/
Dhello.cs21 private Label label1; field in Hello.HelloWindow
28 label1 = new Label(); in HelloWindow()
29 label1.Text = catalog.GetString("Hello, world!"); in HelloWindow()
30 label1.ClientSize = new Size(label1.PreferredWidth, label1.PreferredHeight); in HelloWindow()
31 Controls.Add(label1); in HelloWindow()
60 int totalWidth = Math.Max(Math.Max(label1.PreferredWidth, label2.PreferredWidth), in ComputePreferredSizeWithoutBorder()
62 int totalHeight = label1.PreferredHeight + label2.PreferredHeight + 6 + ok.Height; in ComputePreferredSizeWithoutBorder()
68 label1.Location = new Point(border, border); in LayoutControls()
69 label2.Location = new Point(border, border + label1.PreferredHeight); in LayoutControls()
/third_party/gettext/gettext-tools/examples/hello-objc-gnustep/
DHello.m48 label1 = [NSTextField new];
49 [label1 setStringValue: _(@"Hello, world!")];
50 [label1 setAlignment: NSLeftTextAlignment];
51 [label1 setBordered: NO];
52 [label1 setEditable: NO];
53 [label1 setBezeled: NO];
54 [label1 setDrawsBackground: NO];
55 [label1 sizeToFit];
86 [cview addView: label1 enablingYResizing: NO];
87 AUTORELEASE (label1);
/third_party/typescript/tests/baselines/reference/
DcontinueLabel.js2 label1: for(var i = 0; i < 1; i++) {
3 continue label1;
7 label1: for (var i = 0; i < 1; i++) {
8 continue label1;
Dparser_continueLabel.js2 label1: for(var i = 0; i < 1; i++) {
3 continue label1;
7 label1: for (var i = 0; i < 1; i++) {
8 continue label1;
DcontinueLabel.types2 label1: for(var i = 0; i < 1; i++) {
3 >label1 : any
12 continue label1;
13 >label1 : any
Dparser_continueLabel.types2 label1: for(var i = 0; i < 1; i++) {
3 >label1 : any
12 continue label1;
13 >label1 : any
DcontinueLabel.symbols2 label1: for(var i = 0; i < 1; i++) {
7 continue label1;
Dparser_continueLabel.symbols2 label1: for(var i = 0; i < 1; i++) {
7 continue label1;
DjsFileCompilationBindReachabilityErrors.types41 label1: var x2 = 10;
42 >label1 : any
/third_party/gettext/gettext-tools/examples/hello-c-gnome/
Dhello.c26 GtkWidget *label1; in main() local
46 label1 = gtk_label_new (_("Hello, world!")); in main()
49 gtk_container_add (GTK_CONTAINER (label1aligned), label1); in main()
73 gtk_widget_show (label1); in main()
/third_party/gettext/gettext-tools/examples/hello-c++-gnome/
Dhello.cc29 Gtk::Label *label1; in main() local
50 label1 = new Gtk::Label (_("Hello, world!")); in main()
53 label1aligned->add (*label1); in main()
75 label1->show (); in main()
/third_party/mindspore/tests/ut/cpp/dataset/
Dstand_alone_samplers_test.cc80 std::shared_ptr<Tensor> label1, label2; in TEST_F() local
81 CreateINT64Tensor(&label1, 3, reinterpret_cast<unsigned char *>(res)); in TEST_F()
92 EXPECT_TRUE((*tensor) == (*label1)); in TEST_F()
99 EXPECT_TRUE((*tensor) == (*label1)); in TEST_F()
/third_party/gettext/gettext-tools/examples/hello-objc-gnome/
Dhello.m27 Gtk_Label *label1;
47 label1 = [[Gtk_Label alloc] initWithLabelInfo: _("Hello, world!")];
50 [label1aligned add: label1];
74 [label1 show];
/third_party/ltp/tools/sparse/sparse-src/validation/
Dconstexpr-labelref.c3 label1: in a()
5 static void *b = &&label1; in a()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/
Dparser_continueLabel.ts1 label1: for(var i = 0; i < 1; i++) {
2 continue label1;
/third_party/typescript/tests/cases/compiler/
DcontinueLabel.ts1 label1: for(var i = 0; i < 1; i++) {
2 continue label1;
/third_party/gettext/gettext-tools/examples/hello-c++-wxwidgets/
Dhello.cc67 wxStaticText *label1 = in MyFrame() local
77 topSizer->Add(label1); in MyFrame()
/third_party/typescript/tests/dets/cases/
DdynamicallyBuildUIElements.ets54 @Builder RowOfSquareTexts(label1: string, label2: string) {
56 this.SquareText(label1)
155 @Builder function specificParam(label1: string, label2: string) {
157 Text(label1)
DtargetEtsExample.ets116 @Builder function specificParam02(label1: string, label2: string) {
118 Text(label1)
/third_party/gettext/gettext-tools/examples/hello-java-qtjambi/
DHello.java26 QLabel label1 = in main() local
28 panelLayout.addWidget(label1); in main()
/third_party/gettext/gettext-tools/examples/hello-java-swing/
DHello.java19 JLabel label1 = in main() local
36 labels.add(label1); in main()
/third_party/gettext/gettext-tools/examples/hello-java-awt/
DHello.java23 Label label1 = new Label(GettextResource.gettext(catalog,"Hello, world!")); in main() local
39 labels.add(label1); in main()
/third_party/mindspore/tests/st/networks/models/bert/src/
DCRF.py95 label1 = labels[:, 1:, :]
97 label1 = self.expand(label1, 3)
99 label_trans = label1 * label2
/third_party/mindspore/tests/ut/python/dataset/
Dtest_mixup_label_smoothing.py140 label1 = data1["label"]
141 logger.info("label: {}".format(label1))
151 lam = np.abs(label2 - label1)
/third_party/typescript/tests/dets/baselines/reference/
DdynamicallyBuildUIElements.d.ets24 RowOfSquareTexts(label1: string, label2: string): void;
54 declare function specificParam(label1: string, label2: string): void;

123