/third_party/typescript/tests/baselines/reference/tsbuildWatch/reexport/ |
H A D | Reports-errors-correctly.js | 6 "references": [{ "path": "./pure" }, { "path": "./main" }] 17 "references": [{ "path": "../pure" }] 22 import { Session } from "../pure"; 29 //// [/user/username/projects/reexport/src/pure/tsconfig.json]
40 //// [/user/username/projects/reexport/src/pure/index.ts]
44 //// [/user/username/projects/reexport/src/pure/session.ts]
73 * src/pure/tsconfig.json
77 [[90m12:00:37 AM[0m] Project 'src/pure/tsconfig.json' is out of date because output file 'out/pure/tsconfig.tsbuildinfo' does not exist 79 [[90m12:00:38 AM[0m] Building project '/user/username/projects/reexport/src/pure/tsconfi [all...] |
/third_party/mesa3d/src/util/format/ |
H A D | u_format_parse.py | 56 def __init__(self, type, norm, pure, size, name=''): 59 self.pure = pure 68 if self.pure: 80 return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.size == other.size 224 if channel.pure != ref_channel.pure: 243 if channel.pure != ref_channel.pure [all...] |
H A D | u_format_table.py | 155 print(" {%s, %s, %s, %u, %u}%s\t/* %s = %s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, channel.shift, sep, "xyzw"[i], channel.name))
|
/third_party/node/deps/npm/node_modules/color-convert/ |
H A D | conversions.js | 714 const pure = [0, 0, 0]; 723 pure[0] = 1; pure[1] = v; pure[2] = 0; break; 725 pure[0] = w; pure[1] = 1; pure[2] = 0; break; 727 pure[0] = 0; pure[1] = 1; pure[ [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | kill-pure-call.c | 2 int pure(int a) __attribute__((pure)); 5 int kill(int a) { return pure(a) && 0; } in kill() 8 * check-name: kill-pure-call 12 * when the function is "pure". 16 * check-output-excludes: call\\..* pure
|
H A D | function-redecl2.c | 3 int func0(int a) __attribute__ ((pure)); 5 __attribute__ ((pure))
|
H A D | function-redecl-funattr.c | 1 #define __pure __attribute__((pure))
|
H A D | function-attribute.c | 1 #define __pure __attribute__((pure))
|
H A D | builtin_safe1.c | 7 int h(int) __attribute__((pure));
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
H A D | attributes.h | 680 // ABSL_ATTRIBUTE_PURE_FUNCTION is used to annotate declarations of "pure" 681 // functions. A function is pure if its return value is only a function of its 682 // arguments. The pure attribute prohibits a function from modifying the state 684 // function's return value. Declaring such functions with the pure attribute 691 #if ABSL_HAVE_CPP_ATTRIBUTE(gnu::pure) 692 #define ABSL_ATTRIBUTE_PURE_FUNCTION [[gnu::pure]] 693 #elif ABSL_HAVE_ATTRIBUTE(pure) 694 #define ABSL_ATTRIBUTE_PURE_FUNCTION __attribute__((pure))
|
/third_party/selinux/libselinux/utils/ |
H A D | Makefile | 14 EXTRA_CFLAGS = -fipa-pure-const -Wpacked-bitfield-compat -Wsync-nand -Wcoverage-mismatch \ 16 -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wtrampolines -Wjump-misses-init \ 17 -Wno-suggest-attribute=pure -Wno-suggest-attribute=const
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | __main__.py | 63 pure=False, 66 for line in preprocess(tool=not pure) or (): 76 parser.add_argument('--pure', action='store_true') 77 parser.add_argument('--no-pure', dest='pure', action='store_const', const=False)
|
H A D | __init__.py | 14 pure as _pure,
|
/third_party/ltp/tools/sparse/sparse-src/validation/preprocessor/ |
H A D | has-attribute.c | 18 && __has_attribute(pure) \
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | keywords.h | 53 int pure; variable
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
H A D | yacc.c | 69 b4_percent_define_default([[api.pure]], [[false]]) 70 b4_percent_define_check_values([[[[api.pure]], 74 m4_case(b4_percent_define_get([[api.pure]]), 85 [m4_fatal([invalid api.pure value: ]$1)])]) 171 # pure-parser.
|
/third_party/jerryscript/jerry-core/include/ |
H A D | jerryscript-compiler.h | 41 #define JERRY_ATTR_PURE __attribute__((pure))
|
/third_party/selinux/libselinux/src/ |
H A D | Makefile | 64 EXTRA_CFLAGS = -fipa-pure-const -Wlogical-op -Wpacked-bitfield-compat -Wsync-nand \ 66 -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wtrampolines -Wjump-misses-init \ 67 -Wno-suggest-attribute=pure -Wno-suggest-attribute=const -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 \
|
/third_party/ffmpeg/libavutil/ |
H A D | attributes.h | 76 # define av_pure __attribute__((pure))
|
/third_party/pulseaudio/src/pulse/ |
H A D | gccmacro.h | 68 #define PA_GCC_PURE __attribute__ ((pure))
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | device9.c | 258 This->pure = !!(This->params.BehaviorFlags & D3DCREATE_PUREDEVICE); in NineDevice9_ctor() 2176 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetTransform() 2253 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetMaterial() 2302 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetLight() 2352 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetLightEnable() 2398 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetClipPlane() 2439 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetRenderState() 2696 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetTextureStageState() 2737 user_assert(!This->pure, D3DERR_INVALIDCALL); in NineDevice9_GetSamplerState() 3543 user_assert(!This->pure, D3DERR_INVALIDCAL in NineDevice9_GetVertexShaderConstantF() [all...] |
/third_party/eudev/src/shared/ |
H A D | macro.h | 31 #define _pure_ __attribute__ ((pure))
|
/third_party/mesa3d/src/amd/common/ |
H A D | gfx10_format_table.py | 166 chan_pure = set([chan.pure for chan in fmt.le_channels if chan.type != VOID]) 189 # Shader-based work-around for 32-bit non-pure-integer 201 # Shader-based work-around for 32-bit non-pure-integer
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | preprocessor.y | 86 %pure-parser
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
H A D | ExpressionParser.y | 98 %pure-parser
|