HomeSort by relevance Sort by last modified time
    Searched defs:__CONCAT (Results 126 - 128 of 128) sorted by null

1 2 3 4 56

  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/sys/
cdefs.h 90 * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
91 * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
92 * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
93 * in between its arguments. __CONCAT can also concatenate double-quoted
98 #define ___CONCAT(x,y) __CONCAT(x,y)
102 #define __CONCAT(x,y) x ## y
118 #define __CONCAT(x,y) x/**/y
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
cdefs.h 90 * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
91 * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
92 * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
93 * in between its arguments. __CONCAT can also concatenate double-quoted
98 #define ___CONCAT(x,y) __CONCAT(x,y)
102 #define __CONCAT(x,y) x ## y
118 #define __CONCAT(x,y) x/**/y
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
cdefs.h 90 * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
91 * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
92 * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
93 * in between its arguments. __CONCAT can also concatenate double-quoted
98 #define ___CONCAT(x,y) __CONCAT(x,y)
102 #define __CONCAT(x,y) x ## y
118 #define __CONCAT(x,y) x/**/y

Completed in 153 milliseconds

1 2 3 4 56