File: not-expr.rc

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (17 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
not DIALOGEX // not as an identifier
0,
3 | not 1, // = 2
61 + not 1, // = 60
not 1 | 3,  // = 3
7 | (not 1 + not 2) // = 4
STYLE   0xff00ff03 & ~(not (1|2)) // = 0xff00ff03
EXSTYLE 0xff00ff03 | ~(not (1|2)) | not 8 // = 0xfffffff7
{
    GROUPBOX "", 0,
        not 1, // = 0
        15 + (((not 1 | not 2 | not 4) | 2)), // = 10
        0, 0, 0x34 - (not 1) + (not 0x14) // expression evaluates to 0x20 with not mask 0x15, which clears 0x5 bits of default
                                          // groupbox class style 0x50000007, resulting with style 0x50000022
    GROUPBOX "", 1, 0,0,0,0,(not 7) | 1   // expression evaluates to 1 with not mask 0x7, which clears 0x7 bits of groupbox default
                                          // class style 0x50000007, but sets bit 1, resulting with style 0x50000001
}