Home
last modified time | relevance | path

Searched refs:replacement_string (Results 1 – 25 of 84) sorted by relevance

1234

/dports/math/scilab/scilab-6.1.1/scilab/modules/string/src/c/
H A Dstrsubst.c33 if ( (strings_input) && (string_to_search) && (replacement_string) ) in strsubst()
40 replacedStrings[i] = strsub (str, string_to_search, replacement_string); in strsubst()
50 if ( (strings_input) && (string_to_search) && (replacement_string) ) in strsubst_reg()
57 replacedStrings[i] = strsub_reg(str, string_to_search, replacement_string, ierr); in strsubst_reg()
63 char *strsub(const char* input_string, const char* string_to_search, const char* replacement_string) in strsub() argument
75 if (string_to_search == NULL || replacement_string == NULL) in strsub()
86 if (strlen (replacement_string) > strlen (string_to_search)) in strsub()
124 N = replacement_string; in strsub()
140 …(const char* input_string, const char* string_to_search, const char* replacement_string, int *ierr) in strsub_reg() argument
162 if (string_to_search == NULL || replacement_string == NULL) in strsub_reg()
[all …]
/dports/graphics/tesseract/tesseract-5.0.0/src/ccutil/
H A Dambigs.cpp86 char replacement_string[kMaxAmbigStringSize]; in LoadUnicharAmbigs() local
108 replacement_string, &type)) { in LoadUnicharAmbigs()
115 replacement_string, type, ambig_spec, unicharset)) { in LoadUnicharAmbigs()
131 if (unicharset->encode_string(replacement_string, true, &encoding, nullptr, nullptr)) { in LoadUnicharAmbigs()
270 snprintf(replacement_string, kMaxAmbigStringSize, "%s", fields[1].c_str()); in ParseAmbiguityLine()
316 replacement_string[0] = '\0'; in ParseAmbiguityLine()
321 strcat(replacement_string, token); in ParseAmbiguityLine()
362 unicharset->to_lower(unicharset->unichar_to_id(replacement_string))) { in InsertIntoTable()
380 unicharset->unichar_insert(replacement_string, OldUncleanUnichars::kTrue); in InsertIntoTable()
381 ambig_spec->correct_ngram_id = unicharset->unichar_to_id(replacement_string); in InsertIntoTable()
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/module_utils/powershell/
H A DAnsible.ModuleUtils.CamelConversion.psm19 $replacement_string = $string -creplace $matches[0], "_$($matches[0].ToLower())" in Convert-StringToSnakeCase() variable
12 if ($replacement_string.StartsWith("_") -and -not $string.StartsWith("_")) { in Convert-StringToSnakeCase()
13 $replacement_string = $replacement_string.Substring(1) in Convert-StringToSnakeCase() variable
15 $string = $replacement_string in Convert-StringToSnakeCase()
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/module_utils/powershell/
H A DAnsible.ModuleUtils.CamelConversion.psm19 $replacement_string = $string -creplace $matches[0], "_$($matches[0].ToLower())" in Convert-StringToSnakeCase() variable
12 if ($replacement_string.StartsWith("_") -and -not $string.StartsWith("_")) { in Convert-StringToSnakeCase()
13 $replacement_string = $replacement_string.Substring(1) in Convert-StringToSnakeCase() variable
15 $string = $replacement_string in Convert-StringToSnakeCase()
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/module_utils/powershell/
H A DAnsible.ModuleUtils.CamelConversion.psm19 $replacement_string = $string -creplace $matches[0], "_$($matches[0].ToLower())" in Convert-StringToSnakeCase() variable
12 if ($replacement_string.StartsWith("_") -and -not $string.StartsWith("_")) { in Convert-StringToSnakeCase()
13 $replacement_string = $replacement_string.Substring(1) in Convert-StringToSnakeCase() variable
15 $string = $replacement_string in Convert-StringToSnakeCase()
/dports/math/libmesh/libmesh-1.6.2/contrib/bin/
H A Dupdate_header_includes.sh26 replacement_string="#include \"libmesh/$header_name\""
33 echo " "$replacement_string
40 replacement_string="#include <libmesh/$header_name>"
47 echo " "$replacement_string
/dports/math/scilab/scilab-6.1.1/scilab/modules/string/includes/
H A Dstrsubst.h32 …ar **strings_input, int strings_dim, const char *string_to_search, const char *replacement_string);
33 …s_input, int strings_dim, const char *string_to_search, const char *replacement_string, int *ierr);
43 …ar *strsub(const char* input_string, const char* string_to_search, const char* replacement_string);
44 …const char* input_string, const char* string_to_search, const char* replacement_string, int *ierr);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libphonenumber/dist/cpp/src/phonenumbers/
H A Dregexp_adapter.h136 const string& replacement_string) const = 0;
140 const string& replacement_string) const { in Replace() argument
141 return Replace(string_to_process, false, replacement_string); in Replace()
145 const string& replacement_string) const { in GlobalReplace() argument
146 return Replace(string_to_process, true, replacement_string); in GlobalReplace()
H A Dregexp_adapter_icu.cc181 const string& replacement_string) const { in Replace()
201 Utf8StringToUnicodeString(replacement_string), in Replace()
208 Utf8StringToUnicodeString(replacement_string), in Replace()
H A Dregexp_adapter_re2.cc127 const string& replacement_string) const { in Replace()
130 TransformRegularExpressionToRE2Syntax(replacement_string); in Replace()
/dports/www/p5-MojoMojo/MojoMojo-1.12/script/util/
H A Dsearch_and_replace.pl27 my $replacement_string;
30 "replace|r=s" => \$replacement_string,
34 if ( !$search_string || !$replacement_string ) {
62 $content =~ s{$search_string}{$replacement_string}mxg;
/dports/math/scilab/scilab-6.1.1/scilab/modules/spreadsheet/src/c/
H A Dcsv_strsubst.c23 …sv_strsubst(const char *input_string, const char *string_to_search, const char *replacement_string) in csv_strsubst() argument
39 if (replacement_string == NULL) in csv_strsubst()
45 replacement_stringlen = strlen(replacement_string); in csv_strsubst()
72 memcpy(r, replacement_string, replacement_stringlen); in csv_strsubst()
/dports/devel/libphonenumber/libphonenumber-8.12.39/cpp/src/phonenumbers/
H A Dregexp_adapter.h172 const string& replacement_string) const = 0;
176 const string& replacement_string) const { in Replace() argument
177 return Replace(string_to_process, false, replacement_string); in Replace()
181 const string& replacement_string) const { in GlobalReplace() argument
182 return Replace(string_to_process, true, replacement_string); in GlobalReplace()
H A Dregexp_adapter_icu.cc184 const string& replacement_string) const { in Replace()
204 Utf8StringToUnicodeString(replacement_string), in Replace()
211 Utf8StringToUnicodeString(replacement_string), in Replace()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/devel/abseil/abseil-cpp-20211102.0/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/devel/bloaty/bloaty-1.1/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/abseil-cpp/absl/strings/
H A Dstr_replace_benchmark.cc77 const char* replacement_string = nullptr; in SetUpStrings() local
83 replacement_string = r.replacement; in SetUpStrings()
88 replacement_string); in SetUpStrings()
89 next_pos += strlen(replacement_string); in SetUpStrings()
/dports/devel/py-oci/oci-2.53.1/src/oci/log_analytics/models/
H A Dlog_analytics_source_data_filter.py412 def replacement_string(self): member in LogAnalyticsSourceDataFilter
423 @replacement_string.setter
424 def replacement_string(self, replacement_string): argument
433 self._replacement_string = replacement_string
/dports/math/plman/plman/src/
H A DReplacer.java54 public String replace(String original_formula, String[] symbols, String replacement_string) { in replace() argument
57 String element = replacement_string; in replace()
76 …ic String replaceSingleSymbol (String original_formula, String symbol, String replacement_string) { in replaceSingleSymbol() argument
80 formula = matcher.replaceAll( replacement_string ); in replaceSingleSymbol()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/policy/core/browser/
H A Dpolicy_error_map.h58 const std::string& replacement_string);
66 const std::string& replacement_string);
74 const std::string& replacement_string);
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/commonTools/refactoring/
H A Dstring-replace.pl17 my $replacement_string = shift;
35 $did_replacement = 1 if $_=~s/$find_string/$replacement_string/g;

1234