search for: defvar

Displaying 16 results from an estimated 16 matches for "defvar".

Did you mean: defval
2012 Dec 06
3
Proper way to call variables from a parent class to a child class
I currently have a child class of a parent one. The parent defines some variable that I need to use in the child class. I am also using gepetto. Gepetto is complaining about the syntax of the child variable. It is saying that "$parentVar" should be "$::parentVar" however, when changing to what Gepetto wants to use this breaks my classes. Does anyone know the proper
2020 Aug 14
2
Another possible tracing feature for TableGen
...int rare = 0> { list<int> D_list = list1; int D_rare = rare; int D_field1 = 10101; int D_field2 = 10102; bits<4> D_bits = {1, 0, 1, 0}; } let C_to_let = "C to let" in let D_field2 = -10102 in { def rec1 : C<"arg1_val">, D<[13, 14, 15]> { defvar var1 = -1; defvar var2 = "base string"; int num = 42; list<string> list_a; string str = "Hello world!"; string from_var2 = var2 # " from var2"; int num2 = !mul(3, num); let num = 43; let str = from_var2 # " with let"; } } // let =======...
2013 May 11
0
[LLVMdev] Fw: Accepting iCode as input to SDCC
...hat I achieved so far is that compiling trivial C code to iCode, and then recompiling to iCode again produces matching output iCode's and asm's. As an example, ======== int a, b, c; int foo() { return a & b; } ======== is compiled into external iCode representation as: ======== defvar a{int fixed as=data} defvar b{int fixed as=data} defvar c{int fixed as=data} _entry: proc foo{int ( ) fixed as=code} iTemp0{int fixed as=data} = a{int fixed as=data} & b{int fixed as=data} ret iTemp0{int fixed as=data} _return: eproc foo{int ( ) fixed as=code} ======== I would target th...
2010 Nov 12
0
Installing R+Emacs+MikTeX editor on a USB drive
...on the usb drive: - extract emacs in the USB drive, in my case its name is emacs-23.2 on the USB drive. - extract auctex in the emacs directory (i.e. emacs-23.2) - extract ess in the emacs-23.2/site-lisp/ directory. a. Edit G:/emacs-23.2/site-lisp/site-start.el so that it contains (defvar usb-drive-letter (substring data-directory 0 3)) (defvar usb-home-dir (concat usb-drive-letter "home/")) (setenv "HOME" usb-home-dir) (setenv "PATH" (concat usb-drive-letter "miktex_portable/miktex/bin;" (getenv "PATH"))) b. Create a directory cal...
2020 Aug 02
3
Combine TableGen documents?
...vm-dev at lists.llvm.org> wrote: > > Thanks, David. I have started a new document titled "TableGen Programmer's Guide." Getting it in reasonable shape will take a few days. Then I'll have to do some research on the code to find out how certain things really work, such as DEFVAR and !CAST. I may even understand some of the code when I'm done. > > At 7/31/2020 03:43 PM, David Greene wrote: >> Eric Christopher <echristo at gmail.com> writes: >> >>> +David Greene<mailto:dag at cray.com> as someone who might have an opinion. >&gt...
2015 Jan 05
2
[LLVMdev] [PATCH] Fix Emacs package formatting
...-- Major mode for the LLVM assembler language. + ;; Maintainer: The LLVM team, http://llvm.org/ -;; Description: Major mode for the LLVM assembler language. -;; Updated: 2007-09-19 -;; Create mode-specific tables. +;;; Commentary: + +;; Major mode for editing LLVM IR files. + +;;; Code: + (defvar llvm-mode-syntax-table nil "Syntax table used while in LLVM mode.") (defvar llvm-font-lock-keywords @@ -52,7 +57,7 @@ `(,(regexp-opt '("uselistorder" "uselistorder_bb") 'words) . font-lock-keyword-face) ) - "Syntax highlighting for LLVM&quot...
2020 Jul 31
3
Combine TableGen documents?
Eric Christopher <echristo at gmail.com> writes: > +David Greene<mailto:dag at cray.com> as someone who might have an opinion. > > I don't have a strong opinion, but if someone wants to try to make the > docs better and more friendly to them I'm totally down :) Thanks for the CC. I think combining them makes sense. I recall having similar issues finding things
2008 Jul 12
1
[ESS] Process SAS is not running... error on Ubuntu
It does appear the ess package on CRAN for Ubuntu 8.04 fails to install the file 'ess-sas-sh-command'. This prevents invoking SAS via 'M-x SAS'. http://cran.mirrors.hoobly.com/bin/linux/ubuntu/README.html --Dale On Fri, Jul 11, 2008 at 12:39 PM, Rodney Sparapani <rsparapa at mcw.edu> wrote: > Dale Steele wrote: >> >> I re-installed from Hardy packages on
2010 Nov 10
4
Installing R and an editor on a USB drive
Hi, I have adviced my students to install R and an editor on a USB drive for working in the computer class. With R everything works fine following these instructions: http://personal.bgsu.edu/~mrizzo/Rmisc/usbR.htm. But several editors (e.g., Tinn-R and WinEdt) require administrator rights. I have found out that Emacs (Vincent Goulet's Emacs for Windows Modified
2019 May 30
5
[PATCH 0/5] RFC: switch augeas APIs to OCaml
This synchronizes the embedded ocaml-augeas copy, and reimplements the augeas APIs using it (dropping all the C code). The behaviour seems unchanged, although I may have not tested all the various corner cases. Pino Toscano (5): common/mlaugeas: Synchronize with latest ocaml-augeas daemon: fix/enhance error reporting of Augeas exceptions Revert "Revert "daemon: implement
2019 Dec 16
4
[PATCH 0/2] Move ocaml-augeas copy to libguestfs repo
ocaml-augeas is used only by virtlibguestfs, so move it to this repository, instead of having it around in the common submodule. The removal from common will happen later. Pino Toscano (2): Bundle the ocaml-augeas library for use by libguestfs build: switch embedded copy of ocaml-augeas .gitignore | 1 + 3rdparty/ocaml-augeas/COPYING.LIB | 515
2006 Oct 05
11
Block comments in R?
Hello list, Is there any way to perform a block comment in R? In C++, anything in between a /* and */ is considered a comment, and it allows programmers to comment out chunks of code for testing and debugging. Is there such a feature in R? Cheers, Wee-Jin
2020 Mar 09
4
[PATCH v3 0/3] Switch augeas APIs to OCaml
This reimplements the augeas APIs using ocaml-augeas (dropping all the C code). The behaviour seems unchanged, although I may have not tested all the various corner cases. Changes from v2: - dropped patch #1, as it was applied already (was a real bugfix) - rebased on master Pino Toscano (3): Revert "Revert "daemon: implement OptString for OCaml APIs"" daemon: move augeas
2020 Jan 09
5
[PATCH v2 0/4] Switch augeas APIs to OCaml
This reimplements the augeas APIs using ocaml-augeas (dropping all the C code). The behaviour seems unchanged, although I may have not tested all the various corner cases. Pino Toscano (4): daemon: fix/enhance error reporting of Augeas exceptions Revert "Revert "daemon: implement OptString for OCaml APIs"" daemon: move augeas APIs to OCaml daemon: drop usage of C
2013 Aug 24
46
[PATCH 00/46] Proposed patches for libguestfs 1.20.11.
Tested with 'make check-release'. tests/parallel (in check-slow) failed, although it does regularly and that seems to be because of libvirt. Rich.
2013 Aug 24
67
[PATCH 00/67] Proposed patches for libguestfs 1.22.6.
In the kernel and qemu communities it is routine for patches that will be backported to stable branches to be posted for review. I'm proposing we do the same for libguestfs stable branches. All of the attached have been tested with 'make check-release'. Rich.