Home
last modified time | relevance | path

Searched refs:source_code (Results 1 – 24 of 24) sorted by relevance

/external/google-fruit/tests/
Dfruit_test_common.py223 def _construct_final_source_code(setup_source_code, source_code, test_params): argument
225 source_code = textwrap.dedent(source_code)
226 source_code = _replace_using_test_params(source_code, test_params)
227 return setup_source_code + source_code
245 source_code, argument
249 source_code = _construct_final_source_code(setup_source_code, source_code, test_params)
251 source_file_name = _create_temporary_file(source_code, file_name_suffix='.cpp')
312 def expect_generic_compile_error(expected_error_regex, setup_source_code, source_code, test_params=… argument
350 expect_compile_error_helper(check_error, setup_source_code, source_code, test_params)
356 source_code, argument
[all …]
/external/python/cpython3/Lib/test/test_importlib/
Dtest_lazy.py43 source_code = 'attr = 42; __name__ = {!r}'.format(mutated_name) variable in TestingImporter
51 exec(self.source_code, module.__dict__)
62 def new_module(self, source_code=None): argument
64 if source_code is not None:
65 loader.source_code = source_code
/external/python/cpython3/Lib/test/
Dtest_utf8source.py32 source_code = '# coding: Latin-1\nu = "Ç"\n'.encode("Latin-1")
34 code = compile(source_code, '<dummy>', 'exec')
/external/grpc-grpc/src/compiler/
Dcpp_plugin.cc105 grpc::string source_code = in Generate() local
113 source_coded_out.WriteRaw(source_code.data(), source_code.size()); in Generate()
/external/brotli/scripts/dictionary/
Dstep-04-generate-java-literals.py70 source_code = [ variable
79 source.write("".join(source_code))
/external/tensorflow/tensorflow/python/autograph/pyct/
Dtransformer.py65 def __init__(self, source_code, source_file, namespace, arg_values, argument
67 self.source_code = source_code
Dtransformer_test.py33 source_code=None,
/external/snakeyaml/src/test/java/biz/source_code/base64Coder/
DBase64CoderTest.java16 package biz.source_code.base64Coder;
/external/syzkaller/docs/
Dfuchsia.md5 and [Soure Code](https://fuchsia.googlesource.com/docs/+/master/development/source_code/README.md).
/external/flatbuffers/src/
Didl_gen_grpc.cpp320 std::string source_code = in GenerateCppGRPC() local
329 source_code, false); in GenerateCppGRPC()
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dlive_values_test.py46 source_code=source,
Dtype_info_test.py67 source_code=source,
Dliveness_test.py38 source_code=source,
Dreaching_definitions_test.py38 source_code=source,
Dactivity_test.py117 source_code=source,
/external/tensorflow/tensorflow/python/autograph/impl/
Dconversion.py363 source_code=source,
412 context.info.source_code = None
/external/tensorflow/tensorflow/python/autograph/core/
Dconverter_testing.py131 source_code=source,
/external/antlr/
DREADME.txt81 http://www.pragprog.com/titles/tpdsl/source_code
/external/deqp/external/openglcts/modules/gl/
Dgl4cVertexAttrib64BitTest.cpp65 void CompileShader(GLuint id, const GLchar* source_code) const;
136 void Base::CompileShader(GLuint id, const GLchar* source_code) const in CompileShader()
140 gl.shaderSource(id, 1, &source_code, 0 /* length */); in CompileShader()
166 m_log << tcu::TestLog::Message << "Shader source:\n" << source_code << tcu::TestLog::EndMessage; in CompileShader()
Dgl4cShadingLanguage420PackTests.hpp217 shaderSource(const glw::GLchar* source_code);
Dgl4cShadingLanguage420PackTests.cpp17929 Utils::shaderSource::shaderSource(const glw::GLchar* source_code) in shaderSource() argument
17931 if (0 != source_code) in shaderSource()
17935 m_parts[0].m_code = source_code; in shaderSource()
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf_test.py73 source_code=None,
/external/v8/src/
Dbootstrapper.cc90 Handle<ExternalOneByteString> source_code = in GetNativeSource() local
92 DCHECK(source_code->is_short()); in GetNativeSource()
93 return source_code; in GetNativeSource()
3769 Handle<String> source_code = in CompileBuiltin() local
3779 return Bootstrapper::CompileNative(isolate, name, source_code, in CompileBuiltin()
3787 Handle<String> source_code = in CompileExtraBuiltin() local
3793 return Bootstrapper::CompileNative(isolate, name, source_code, in CompileExtraBuiltin()
3802 Handle<String> source_code = in CompileExperimentalExtraBuiltin() local
3808 return Bootstrapper::CompileNative(isolate, name, source_code, in CompileExperimentalExtraBuiltin()
Dlog.cc1613 String* source_code = String::cast(source_object); in EnsureLogScriptSource() local
1624 msg << source_code; in EnsureLogScriptSource()