Home
last modified time | relevance | path

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

/third_party/libsnd/
Dmake_lite.py116 source_code = open (filename, 'r').read ()
119 source_code = remove_prototype (source_code, func) ;
120 source_code = remove_function (source_code, func) ;
121 open (filename, 'w').write (source_code)
124 source_code = open (filename, 'r').read ()
127 source_code = remove_function (source_code, func) ;
128 open (filename, 'w').write (source_code)
131 source_code = open (filename, 'r').read ()
134 source_code = remove_prototype (source_code, func) ;
135 open (filename, 'w').write (source_code)
[all …]
/third_party/mbedtls/scripts/
Dgenerate_ssl_debug_helpers.py156 def extract(cls, source_code, start=0, end=-1): argument
162 for match in enum_pattern.finditer(source_code, start, end):
163 yield EnumDefinition(source_code,
167 def __init__(self, source_code, span=None, group=None): argument
179 self._source = source_code
251 def extract(cls, source_code, start=0, end=-1): argument
255 matches = list(sig_alg_pattern.finditer(source_code, start, end))
257 yield SignatureAlgorithmDefinition(source_code, definitions=matches)
259 def __init__(self, source_code, definitions=None): argument
264 self._source = source_code
[all …]
/third_party/python/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
/third_party/rust/crates/syn/examples/dump-syntax/src/
Dmain.rs36 source_code: String,
50 source_code, in fmt()
51 } => render_location(f, error, filepath, source_code), in fmt()
77 source_code: code, in try_main()
/third_party/python/Lib/test/
Dtest_utf8source.py32 source_code = '# coding: Latin-1\nu = "Ç"\n'.encode("Latin-1")
34 code = compile(source_code, '<dummy>', 'exec')
Dtest_tabnanny.py67 def __init__(self, source_code='', directory=None): argument
68 self.source_code = source_code
75 f.write(self.source_code)
/third_party/skia/third_party/externals/brotli/scripts/dictionary/
Dstep-04-generate-java-literals.py70 source_code = [ variable
79 source.write("".join(source_code))
/third_party/cef/tests/cefclient/browser/
Dosr_d3d11_win.cc648 std::shared_ptr<ID3DBlob> Device::compile_shader(const std::string& source_code, in compile_shader() argument
678 const auto psrc = source_code.c_str(); in compile_shader()
679 const auto len = source_code.size() + 1; in compile_shader()
Dosr_d3d11_win.h123 std::shared_ptr<ID3DBlob> compile_shader(const std::string& source_code,
/third_party/jerryscript/jerry-debugger/
Djerry_client_main.py867 source_code = ""
892 source_code += data[1:]
906 stack.append({"source": source_code,
940 func_desc["source"] = source_code
/third_party/vk-gl-cts/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.cpp17871 Utils::shaderSource::shaderSource(const glw::GLchar* source_code) : m_use_lengths(false) in shaderSource() argument
17873 if (0 != source_code) in shaderSource()
17877 m_parts[0].m_code = source_code; in shaderSource()
/third_party/node/deps/v8/src/logging/
Dlog.cc1697 String source_code = String::cast(source_object); in EnsureLogScriptSource() local
1708 msg << source_code; in EnsureLogScriptSource()
/third_party/chromium/patch/
D0004-ohos-3.2-Beta5.patch39910 const String& source_code,