/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
H A D | define_test.cpp | 32 preprocess(input, expected); in TEST_F() 65 preprocess(input, expected); in TEST_F() 80 preprocess(input, expected); in TEST_F() 95 preprocess(input, expected); in TEST_F() 110 preprocess(input, expected); in TEST_F() 127 preprocess(input, expected); in TEST_F() 144 preprocess(input, expected); in TEST_F() 161 preprocess(input, expected); in TEST_F() 178 preprocess(input, expected); in TEST_F() 190 preprocess(inpu in TEST_F() [all...] |
H A D | if_test.cpp | 31 preprocess(str, expected); in TEST_F() 49 preprocess(str, expected); in TEST_F() 71 preprocess(str, expected); in TEST_F() 93 preprocess(str, expected); in TEST_F() 127 preprocess(str, expected); in TEST_F() 157 preprocess(str, expected); in TEST_F() 187 preprocess(str, expected); in TEST_F() 219 preprocess(str, expected); in TEST_F() 251 preprocess(str, expected); in TEST_F() 269 preprocess(st in TEST_F() [all...] |
H A D | PreprocessorTest.cpp | 13 void SimplePreprocessorTest::preprocess(const char *input, in preprocess() function in angle::SimplePreprocessorTest 35 void SimplePreprocessorTest::preprocess(const char *input, const pp::PreprocessorSettings &settings) in preprocess() function in angle::SimplePreprocessorTest 38 preprocess(input, nullptr, &preprocessor); in preprocess() 41 void SimplePreprocessorTest::preprocess(const char *input) in preprocess() function in angle::SimplePreprocessorTest 43 preprocess(input, pp::PreprocessorSettings(SH_GLES2_SPEC)); in preprocess() 46 void SimplePreprocessorTest::preprocess(const char *input, const char *expected) in preprocess() function in angle::SimplePreprocessorTest 48 preprocess(input, expected, SH_GLES2_SPEC); in preprocess() 51 void SimplePreprocessorTest::preprocess(const char *input, const char *expected, ShShaderSpec spec) in preprocess() function in angle::SimplePreprocessorTest 56 preprocess(input, &output, &preprocessor); in preprocess()
|
H A D | version_test.cpp | 26 preprocess(str, expected); in TEST_F() 41 preprocess(str, expected, SH_GL_COMPATIBILITY_SPEC); in TEST_F() 63 preprocess(str, expected); in TEST_F() 77 preprocess(str, expected); in TEST_F() 94 preprocess(str, expected); in TEST_F() 111 preprocess(str, expected); in TEST_F() 124 preprocess(str); in TEST_F() 139 preprocess(str); in TEST_F() 152 preprocess(str); in TEST_F() 167 preprocess(st in TEST_F() [all...] |
H A D | pragma_test.cpp | 27 preprocess(str, expected); in TEST_F() 40 preprocess(str, expected); in TEST_F() 53 preprocess(str, expected); in TEST_F() 66 preprocess(str, expected); in TEST_F() 80 preprocess(str, expected); in TEST_F() 108 preprocess(str, expected); in TEST_F() 122 preprocess(str, expected); in TEST_F() 140 preprocess(str, expected); in TEST_P()
|
H A D | PreprocessorTest.h | 36 void preprocess(const char *input); 37 void preprocess(const char *input, const pp::PreprocessorSettings &settings); 40 void preprocess(const char *input, const char *expected); 41 void preprocess(const char *input, const char *expected, ShShaderSpec spec); 51 void preprocess(const char *input, std::stringstream *output, pp::Preprocessor *preprocessor);
|
H A D | extension_test.cpp | 26 preprocess(str, expected); in TEST_F() 52 preprocess(str, expected); in TEST_F() 66 preprocess(str, expected); in TEST_F() 84 preprocess(str, expected); in TEST_F() 101 preprocess(str, expected); in TEST_F() 125 preprocess(param.str, expected); in TEST_P()
|
H A D | error_test.cpp | 26 preprocess(str, expected); in TEST_F() 39 preprocess(str, expected); in TEST_F() 52 preprocess(str, expected); in TEST_F() 76 preprocess(str, expected); in TEST_F() 90 preprocess(str, expected); in TEST_F()
|
H A D | comment_test.cpp | 63 preprocess(str); in TEST_F()
|
H A D | number_test.cpp | 28 preprocess(str); in TEST_P()
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | __init__.py | 34 def preprocess(source, *, function 56 return _pure.preprocess(source, filename) 78 _preprocess = preprocess 95 def preprocess(**kwargs): function 105 return preprocess 160 'unix': _gcc.preprocess, 166 'gcc': _gcc.preprocess, 174 preprocess = _COMPILERS.get(tool) 175 if preprocess is None: 177 return preprocess [all...] |
H A D | pure.py | 7 def preprocess(lines, filename=None): function 10 yield from preprocess(lines, filename) 13 # XXX actually preprocess...
|
H A D | common.py | 47 def preprocess(tool, filename, **kwargs): function 59 # distutil compiler object's preprocess() method, since that 86 compiler.preprocess(
|
H A D | gcc.py | 43 def preprocess(filename, incldirs=None, macros=None, samefiles=None): function 44 text = _common.preprocess(
|
H A D | __main__.py | 65 preprocess = get_preprocessor(filename) 66 for line in preprocess(tool=not pure) or (): 134 'preprocess': ( 135 'preprocess the given C source & header files', 151 subset='preprocess',
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | comment.rs | 15 pub fn preprocess(comment: &str) -> String { in preprocess() functions 80 assert_eq!(preprocess("///"), ""); in processes_single_lines_correctly() 81 assert_eq!(preprocess("/// hello"), " hello"); in processes_single_lines_correctly() 82 assert_eq!(preprocess("// hello"), " hello"); in processes_single_lines_correctly() 83 assert_eq!(preprocess("// hello"), " hello"); in processes_single_lines_correctly() 88 assert_eq!(preprocess("/**/"), ""); in processes_multi_lines_correctly() 91 preprocess("/** hello \n * world \n * foo \n */"), in processes_multi_lines_correctly() 96 preprocess("/**\nhello\n*world\n*foo\n*/"), in processes_multi_lines_correctly()
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
H A D | doc_comments.rs | 54 preprocess: bool, in format_doc_comment() 58 let (short, long) = if preprocess { in format_doc_comment() 71 let (short, long) = if preprocess { in format_doc_comment()
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | __init__.py | 36 preprocess = get_file_preprocessor(filename) 37 preprocessed = preprocess()
|
/third_party/libsnd/Scripts/ |
H A D | cstyle.py | 180 preprocess = Preprocessor () 189 self.line_checks (preprocess (line)) 197 if preprocess.comment_nesting () != 0:
|
/third_party/node/deps/v8/tools/torque/ |
H A D | format-torque.py | 25 def preprocess(input): function 109 output, err = p.communicate(encode(preprocess(content)))
|
/third_party/astc-encoder/Source/ |
H A D | astcenccli_toplevel.cpp | 492 * @param[out] preprocess Image preprocess operation. 503 astcenc_preprocess& preprocess, in init_astcenc_config() 519 preprocess = ASTCENC_PP_NONE; in init_astcenc_config() 617 if (preprocess != ASTCENC_PP_NONE) in init_astcenc_config() 619 print_error("ERROR: Only a single image preprocess can be used\n"); in init_astcenc_config() 622 preprocess = ASTCENC_PP_NORMALIZE; in init_astcenc_config() 626 if (preprocess != ASTCENC_PP_NONE) in init_astcenc_config() 628 print_error("ERROR: Only a single image preprocess can be used\n"); in init_astcenc_config() 631 preprocess in init_astcenc_config() 497 init_astcenc_config( int argc, char **argv, astcenc_profile profile, astcenc_operation operation, astc_compressed_image& comp_image, astcenc_preprocess& preprocess, astcenc_config& config ) init_astcenc_config() argument [all...] |
/third_party/skia/third_party/externals/dawn/generator/ |
H A D | generator_lib.py | 109 source = self.preprocess(f.read()) 115 def preprocess(self, source): member in _PreprocessingLoader
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | token.h | 233 extern struct token *preprocess(struct token *);
|
/third_party/glslang/gtests/ |
H A D | TestFixture.h | 649 std::tuple<bool, std::string, std::string> preprocess( in preprocess() function in glslangtest::GlslangTest 659 const bool success = shader.preprocess( in preprocess() 689 std::tie(ppOk, output, error) = preprocess(input); in loadFilePreprocessAndCheck()
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 549 the :meth:`preprocess` method. 557 def preprocess(self, source, name=None, filename=None): member in Environment 563 lambda s, e: e.preprocess(s, name, filename), 572 source = self.preprocess(source, name, filename)
|