search for: clion

Displaying 14 results from an estimated 14 matches for "clion".

Did you mean: lion
2009 Oct 21
1
re ferring to data of previous rows
...1 NA 1 2004 0 1 1 2005 1 0 1 2006 1 1 1 2007 0 1 2 2003 0 NA 2 2004 1 0 2 2005 1 1 2 2006 0 1 2 2007 1 0 3 2003 1 NA 3 2004 1 1 3 2005 1 1 3 2006 0 1 3 2007 0 0 any idea how I could program that? thanks a lot, clion -- View this message in context: http://www.nabble.com/referring-to-data-of-previous-rows-tp25987364p25987364.html Sent from the R help mailing list archive at Nabble.com.
2020 May 04
2
[EXTERNAL] How to get branch coverage by using 'source-based code coverage'
...see the gcov file on my example: simple.cc. There are 6 branches in total which are all hit So the result would be 6/6 * 100% = 100% [image: cov3.png] - Are there any existing post-processing tools based on clang/llvm source based coverage? I just saw a clion plugin <https://github.com/zero9178/C-Cpp-Coverage-for-CLion> at github which may generate branch coverage by using region coverage data. But this depends on clion which is not easy to implement automation test. - How to disable STL (or other) noise in gcov branch coverage?...
2009 Nov 25
2
difference of two rows
Dear R user, I'd like to calculate the difference of two rows, where "ID" is the same. eg.: I've got the following dataframe: ID YEAR 13 2007 15 2003 15 2006 15 2008 21 2006 21 2007 and I'd like to get the difference, like this: ID YEAR diff 13 2007 NA 15 2003 3 15 2006 2 15 2008 NA 21 2006 1 21 2007 NA that should be fairly
2019 Apr 03
2
LLVM 8 + Mavericks?
Does LLVM 8 work in macOS 10.9.5? -- Mark
2019 Jul 12
0
Having trouble getting started on writing a WDC 65816 backend
...lling your users they have to add lines to their > build system to do it, which is also fine to begin with). I believe > the key code is in clang/lib/Driver/ToolChains, for copy/paste > purposes. Does another target have an example of needing an external assembler? >> I'm using CLion on Windows with Msys2-mingw64 (my VoidLinux-musl installation isn't that great for >> development yet). Importing the project works correctly, but I don't know how to build the project >> or test the project or test my backend. > > That I can't help you with I'm a...
2009 Feb 09
2
length of object in repeated measures
Hi there. I collectad data of several animals (Id) that were caught and measured at several occasions. The dataframe looks like this: Grouped Data: mass ~ age | Id Id age mass 1 1 5.4 1 3 6.2 1 15 10.0 2 3 8.1 2 10 12.8 3 2 5.9 3 10 7.1 3 15 15.4 3 17
2019 Jul 09
5
Having trouble getting started on writing a WDC 65816 backend
...(`lorom`, `hirom`, `sa1`, etc) <srnb> - The assembler I want to target is one that's not very known outside of the Super Mario World RomHacking community. Who's job is it to assemble what LLVM outputs, and how? It got buried under join/leave messages and build alerts. I'm using CLion on Windows with Msys2-mingw64 (my VoidLinux-musl installation isn't that great for development yet). Importing the project works correctly, but I don't know how to build the project or test the project or test my backend. This is my first time ever using a mailing list, apologies if I get...
2019 Apr 08
2
LLVM 8 + Mavericks?
...entifier 'LC_VERSION_MIN_TVOS' /Users/mkl/Downloads/llvm/llvm-8.0.0.src/tools/lldb/tools/debugserver/source/MacOSX/MachProcess.mm:603:10: error: use of undeclared identifier 'LC_VERSION_MIN_WATCHOS' I thought I'll dl LLVM 8 bin pkg and see if it goes so instead of LLVM 5 with CLion 2018.3.4 (which is fine) I used in Settings > Build, Execution, Deployment > Toolchains: CMake - Bundled (Version: 3.13.2) Make - Detected (/usr/bin/make) C Compiler - /usr/local/Cellar/llvm/8.0.0-bin/bin/clang C++ Compiler - /usr/local/Cellar/llvm/8.0.0-bin/bin/clang++ Debugger - Bundled LL...
2020 May 03
2
[EXTERNAL] How to get branch coverage by using 'source-based code coverage'
Hi, Alan Really very excited to receive your email and sorry to be slow replying, it has been exceptionally busy over the last few days ;( Your explanation made the problem clear to me. So gcov branch coverage should be called condition coverage and clang region coverage is branch coverage in fact(also known as *decision/C1*), right? And llvm/clang will support all the following coverage
2009 Feb 23
1
"autonumber" for grouping variable
Dear R users, my dataframe looks like this head(dat) Id sex byear age 1 300 m 2003 50 2 300 m 2003 36 3 402 f 2003 29 4 402 f 2003 21 5 402 f 2003 64 6 150 m 2005 43 ... ...(where Id is just the Identification number of Individual, sex (male or female), byear (=birthyear)) now, I 'd like to add a column, where each Individual gets an automated number starting
2017 Jul 14
2
Next steps for optimization remarks?
...HTML generated > report as a fallback and having the opt-remarks more integrated in the > developer's workflow. > I personally use Visual studio daily to compile clang and it would be > nice to have remarks there as a plugin. I can imagine something > similar happening for XCode/CLion/Emacs etc.. > > Thanks, > > -- > Davide -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170714/ba46ae50/attachment-0001.html>
2016 Sep 26
3
jetbrains emails?
Around 3:30am Pacific (so ~7 hours ago) I got a brief flurry of emails from jetbrains.com, apparently related to llvm.org bugzillas, anybody know what that was about? Thanks, --paulr
2017 Jul 14
3
Next steps for optimization remarks?
> On Jul 14, 2017, at 8:21 AM, Davide Italiano via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On Mon, Jun 19, 2017 at 4:13 PM, Brian Gesiak via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: >> Hello all, >> >> In https://www.youtube.com/watch?v=qq0q1hfzidg, Adam Nemet (cc'ed) describes >>
2009 Feb 20
3
mean over previous cells
Dear RUsers, I guess this is an easy question for someone a little familiar with programming...(which I am not)... I've got 2 colummns, one shows just dates(SST_date, Class 'Date' num), the other one shows the SeaSurfaceTemperature (SST, num) at that certain date. SST_date SST 2008-01-01 22.2 2008-01-02 21.8 2008-01-03 22.8 2008-01-04 22.9 2008-01-05 23.1 2008-01-06 23.2 ...