Home
last modified time | relevance | path

Searched refs:source_text (Results 1 – 25 of 694) sorted by relevance

12345678910>>...28

/dports/textproc/py-three-merge/three-merge-0.1.1/three_merge/
H A Dmerge.py31 source_status, source_text = source
84 source_text = source_text[len(invariant):]
97 assert invariant[:len(source_text)] == source_text
105 source_text = source_text[len(invariant):]
118 composed_text.append(source_text)
133 source_text = source_text[len(target_text):]
139 source_text = source_text[len(target_text):]
169 source_text = source_text[len(target_text):]
197 source_text = source_text[len(target_text):]
222 source_status, source_text = source
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/shaderc/src/libshaderc/include/shaderc/
H A Dshaderc.hpp397 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
413 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
425 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
443 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
456 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
467 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
519 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
533 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
548 return CompileGlslToSpvAssembly(source_text.data(), source_text.size(), in CompileGlslToSpvAssembly()
567 const char* source_text, size_t source_text_size, in PreprocessGlsl() argument
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/shaderc/src/libshaderc/include/shaderc/
H A Dshaderc.hpp397 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
413 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
425 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
443 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
456 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
467 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
519 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
533 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
548 return CompileGlslToSpvAssembly(source_text.data(), source_text.size(), in CompileGlslToSpvAssembly()
567 const char* source_text, size_t source_text_size, in PreprocessGlsl() argument
[all …]
/dports/graphics/shaderc/shaderc-2021.3/libshaderc/include/shaderc/
H A Dshaderc.hpp404 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
420 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
432 SpvCompilationResult CompileGlslToSpv(const char* source_text, in CompileGlslToSpv() argument
450 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
463 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
474 return CompileGlslToSpv(source_text.data(), source_text.size(), shader_kind, in CompileGlslToSpv()
526 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
540 const char* source_text, size_t source_text_size, in CompileGlslToSpvAssembly() argument
555 return CompileGlslToSpvAssembly(source_text.data(), source_text.size(), in CompileGlslToSpvAssembly()
574 const char* source_text, size_t source_text_size, in PreprocessGlsl() argument
[all …]
/dports/textproc/p5-KinoSearch1/KinoSearch1-1.01/t/
H A D150-polyanalyzer.t15 my $source_text = 'Eats, shoots and leaves.';
24 test_analyzer( $polyanalyzer, $source_text, [$source_text],
31 $polyanalyzer, $source_text,
39 $polyanalyzer, $source_text,
47 $polyanalyzer, $source_text,
54 test_analyzer( $polyanalyzer, $source_text, [ 'eat', 'shoot', '', 'leav' ],
/dports/lang/v8/v8-9.6.180.12/test/cctest/
H A Dtest-modules.cc63 Local<String> source_text = v8_str( in TEST() local
105 Local<String> source_text = v8_str( in TEST() local
115 Local<String> source_text = v8_str(""); in TEST() local
188 Local<String> source_text = v8_str( in TEST() local
286 Local<String> source_text = in TEST() local
378 Local<String> source_text = v8_str( in TEST() local
417 Local<String> source_text = in TEST() local
727 Local<String> source_text = v8_str( in TEST() local
847 Local<String> source_text = v8_str(src); in TEST() local
1117 Local<String> source_text = in TEST() local
[all …]
/dports/devel/py-asttokens/asttokens-2.0.5/asttokens/
H A Dasttokens.py45 def __init__(self, source_text, parse=False, tree=None, filename='<unknown>'): argument
47 self._tree = ast.parse(source_text, filename) if parse else tree
52 if isinstance(source_text, six.binary_type):
53 source_text = source_text.decode('utf8')
55 self._text = source_text
56 self._line_numbers = LineNumbers(source_text)
59 self._tokens = list(self._generate_tokens(source_text))
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/tab_contents/
H A Dview_source_browsertest.cc301 std::string source_text; in IN_PROC_BROWSER_TEST_F() local
311 source_text); in IN_PROC_BROWSER_TEST_F()
377 std::string source_text; in IN_PROC_BROWSER_TEST_F() local
386 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
388 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
390 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
393 source_text, in IN_PROC_BROWSER_TEST_F()
399 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
487 std::string source_text; in IN_PROC_BROWSER_TEST_P() local
496 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_P()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/tab_contents/
H A Dview_source_browsertest.cc300 std::string source_text; in IN_PROC_BROWSER_TEST_F() local
310 source_text); in IN_PROC_BROWSER_TEST_F()
365 std::string source_text; in IN_PROC_BROWSER_TEST_F() local
374 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
376 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
378 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
381 source_text, in IN_PROC_BROWSER_TEST_F()
387 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_F()
475 std::string source_text; in IN_PROC_BROWSER_TEST_P() local
484 EXPECT_THAT(source_text, in IN_PROC_BROWSER_TEST_P()
[all …]
/dports/devel/upp/upp/bazaar/GoogleTranslator/
H A DGoogleTranslator.h14 …bool Translate(String source_text, Gate2<int, int> _progress = false) {sourceText = source…
15 …bool Translate(String source_text, String lang_from, Gate2<int, int> _progress = false) {sourc…
16 …bool Translate(String source_text, String lang_from, String lang_to, Gate2<int, int> _progress = f…
/dports/devel/rebar3/rebar3-3.17.0/src/
H A Drebar_prv_deps.erl98 display_dep_line(Name, NeedsUpdate, source_text(LockedSource), source_text(Source)).
126 source_text(Source) when is_list(Source); is_atom(Source) -> function
128 source_text({pkg, _Name, Vsn, _Hash, _RepoConfig}) -> function
129 source_text({pkg, _Name, Vsn, _Hash});
130 source_text({pkg, _Name, Vsn, _Hash}) -> function
132 source_text(Source) when is_tuple(Source), tuple_size(Source) < 3 -> function
134 source_text(Source) when is_tuple(Source) -> function
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/exo/wayland/compatibility_test/
H A Dwayland_protocol_codegen.py61 def clang_format_source_text(source_text, clang_format_path, argument
71 stdout_output, stderr_output = proc.communicate(input=source_text)
79 def write_if_changed(source_text, output): argument
84 if infile.read() == source_text:
88 outfile.write(source_text)
/dports/textproc/translate-toolkit/translate-toolkit-3.5.1/translate/storage/
H A Dstatistics.py99 source_text = ""
101 source_text += unit.source + "\n"
104 source_text += "\n".join(plurals[1:])
105 return source_text
113 source_text = self.get_source_text(self.getunits())
114 return self.wordcount(source_text)
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/core/
H A Dpotranslator.h31 QString translate(const char* context, const char* source_text,
33 QString ret = QTranslator::translate(context, source_text, disambiguation);
35 return QTranslator::translate(nullptr, source_text, disambiguation);
/dports/audio/strawberry/strawberry-1.0.0/src/core/
H A Dpotranslator.h34 …QString translate(const char *context, const char *source_text, const char *disambiguation = nullp…
36 QString ret = QTranslator::translate(context, source_text, disambiguation);
38 return QTranslator::translate(nullptr, source_text, disambiguation);
/dports/devel/py-spyder/spyder-3.2.7/spyder/widgets/
H A Dbrowser.py67 self.source_text = ''
89 def set_source_text(self, source_text): argument
91 self.source_text = source_text
93 def get_number_matches(self, pattern, source_text='', case=False): argument
98 if not source_text:
101 source_text = to_text_string(self.source_text)
103 source_text = to_text_string(
114 for match in regobj.finditer(source_text):
/dports/japanese/mozc-el/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/japanese/uim-mozc/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/japanese/mozc-tool/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/japanese/mozc-server/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/japanese/fcitx-mozc/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/japanese/ibus-mozc/mozc-2.23.2815.102.01/src/rewriter/
H A Dunicode_rewriter.cc134 if (request.composer().source_text().empty() || in RewriteToUnicodeCharFormat()
139 const string &source_text = request.composer().source_text(); in RewriteToUnicodeCharFormat() local
140 const size_t source_text_size = Util::CharsLen(source_text); in RewriteToUnicodeCharFormat()
145 const string &source_char = request.composer().source_text(); in RewriteToUnicodeCharFormat()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/components/quick_answers/search_result_parsers/
H A Dtranslation_result_parser.cc29 const std::string* source_text = result->FindStringPath(kSourceTextPath); in Parse() local
30 if (!source_text) { in Parse()
49 source_text->c_str(), source_text_language_localized_name->c_str()); in Parse()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/helpers/
H A Dmembers_helper.rb32 "#{text} #{action} the #{member.source.human_name} #{source_text(member)}?"
38 "#{action} from #{source_text(member)}"
69 def source_text(member) method
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/script/
H A Djs_module_script.cc27 ParkableString source_text; in Create() local
29 source_text = original_source_text; in Create()
49 isolate, source_text.ToString(), source_url, base_url, options, in Create()
60 CreateInternal(source_text.length(), modulator, result, source_url, in Create()

12345678910>>...28