Displaying 3 results from an estimated 3 matches for "_else".
Did you mean:
else
2011 Nov 16
3
create list of names where two df contain == values
Hello again... sorry to be posting yet again, but I hadn't anticipated this
problem.
I am trying to now put the names found in one column in data frame 1 (lets
call it df.1[,1]) in to a list from the rows where the values in df.1[,2]
match values in a column of another dataframe (df.2[3])
I tried to write this function so that it put the list of names (called
Iffy) where the 2 criteria
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
..._TXL(dst, target, src0, src1) ureg_TXL(ureg, dst, TGSI_TEXTURE_##target, _src(src0), _src(src1))
-#define _BRK() ureg_BRK(ureg)
-#define _IF(src, label) ureg_IF(ureg, _src(src), label)
-#define _BGNFOR(dst, src) ureg_BGNFOR(ureg, dst, _src(src))
-#define _REP(src) ureg_REP(ureg, _src(src))
-#define _ELSE(label) ureg_ELSE(ureg, label)
-#define _ENDIF() ureg_ENDIF(ureg)
-#define _ENDFOR(dst) ureg_ENDFOR(ureg, dst)
-#define _ENDREP() ureg_ENDREP(ureg)
-#define _PUSHA(src) ureg_PUSHA(ureg, _src(src))
-#define _POPA(dst) ureg_POPA(ureg, dst)
-#define _CEIL(dst, src) ureg_CEIL(ureg, dst, _src(src))
-#def...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...ld(child), operand(operand) {}
+
+ void print_left(stream& s) const override
+ {
+ s += "(";
+ child->print(s);
+ s += ")";
+ s += operand;
+ }
+};
+
+class conditional_expr : public expr
+{
+ node* cond;
+ node* then;
+ node* _else;
+public:
+ conditional_expr(node* cond, node* then, node* _else)
+ : cond(cond), then(then), _else(_else) {}
+
+ void print_left(stream& s) const override
+ {
+ s += "(";
+ cond->print(s);
+ s += ") ? (";
+ then->print(s...