Home
last modified time | relevance | path

Searched refs:replaceValue (Results 1 – 25 of 288) sorted by relevance

12345678910>>...12

/dports/lang/v8/v8-9.6.180.12/src/builtins/
H A Dstring-replaceall.tq36 searchValue: JSAny, replaceValue: JSAny): JSAny {
56 // i. Return ? Call(replacer, searchValue, « O, replaceValue »).
60 return Call(context, replacer, searchValue, receiver, replaceValue);
70 // 5. Let functionalReplace be IsCallable(replaceValue).
71 let replaceValueArg = replaceValue;
72 const functionalReplace = Is<Callable>(replaceValue);
76 // a. Let replaceValue be ? ToString(replaceValue).
77 replaceValueArg = ToString_Inline(replaceValue);
106 // i. Let replacement be ? ToString(? Call(replaceValue, undefined,
113 // i. Assert: Type(replaceValue) is String.
[all …]
H A Dregexp-replace.tq178 regexp: FastJSRegExp, string: String, replaceValue: JSAny): String {
184 typeswitch (replaceValue) {
192 const replaceString: String = ToString_Inline(replaceValue);
195 // ToString(replaceValue) could potentially change the shape of the
238 const replaceValue: JSAny = arguments[1];
252 return RegExpReplace(fastRx, s, replaceValue);
255 return RegExpReplaceRT(context, rx, s, replaceValue);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/builtins/
H A Dstring-replaceall.tq97 receiver: JSAny)(searchValue: JSAny, replaceValue: JSAny): JSAny {
117 // i. Return ? Call(replacer, searchValue, « O, replaceValue »).
121 return Call(context, replacer, searchValue, receiver, replaceValue);
132 // 5. Let functionalReplace be IsCallable(replaceValue).
133 let replaceValueArg = replaceValue;
134 const functionalReplace = TaggedIsCallable(replaceValue);
138 // a. Let replaceValue be ? ToString(replaceValue).
139 replaceValueArg = ToString_Inline(replaceValue);
168 // i. Let replacement be ? ToString(? Call(replaceValue, undefined,
175 // i. Assert: Type(replaceValue) is String.
[all …]
H A Dregexp-replace.tq179 regexp: FastJSRegExp, string: String, replaceValue: JSAny): String {
185 typeswitch (replaceValue) {
193 const replaceString: String = ToString_Inline(replaceValue);
196 // ToString(replaceValue) could potentially change the shape of the
241 const replaceValue: JSAny = arguments[1];
255 return RegExpReplace(fastRx, s, replaceValue);
260 return RegExpReplaceRT(context, rx, s, replaceValue);
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/builtins/
H A Dstring-replaceall.tq96 searchValue: JSAny, replaceValue: JSAny): JSAny {
116 // i. Return ? Call(replacer, searchValue, « O, replaceValue »).
120 return Call(context, replacer, searchValue, receiver, replaceValue);
130 // 5. Let functionalReplace be IsCallable(replaceValue).
131 let replaceValueArg = replaceValue;
132 const functionalReplace = Is<Callable>(replaceValue);
136 // a. Let replaceValue be ? ToString(replaceValue).
137 replaceValueArg = ToString_Inline(replaceValue);
166 // i. Let replacement be ? ToString(? Call(replaceValue, undefined,
173 // i. Assert: Type(replaceValue) is String.
[all …]
H A Dregexp-replace.tq177 regexp: FastJSRegExp, string: String, replaceValue: JSAny): String {
183 typeswitch (replaceValue) {
191 const replaceString: String = ToString_Inline(replaceValue);
194 // ToString(replaceValue) could potentially change the shape of the
237 const replaceValue: JSAny = arguments[1];
251 return RegExpReplace(fastRx, s, replaceValue);
254 return RegExpReplaceRT(context, rx, s, replaceValue);
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/js2py/prototypes/
H A Djsstring.py145 def replace(searchValue, replaceValue): argument
151 if not replaceValue.is_callable():
152 replaceValue = replaceValue.to_string().value
166 res += replaceValue(*args).to_string().value
168 res += replacement_template(replaceValue, s, e.span(),
193 res += replaceValue(*args).to_string().value
195 res += replacement_template(replaceValue, s, span, pars)
/dports/devel/py-Js2Py/Js2Py-0.71/js2py/prototypes/
H A Djsstring.py145 def replace(searchValue, replaceValue): argument
151 if not replaceValue.is_callable():
152 replaceValue = replaceValue.to_string().value
166 res += replaceValue(*args).to_string().value
168 res += replacement_template(replaceValue, s, e.span(),
193 res += replaceValue(*args).to_string().value
195 res += replacement_template(replaceValue, s, span, pars)
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/js2py/internals/prototypes/
H A Djsstring.py156 replaceValue = get_arg(args, 1)
158 if not is_callable(replaceValue):
159 replaceValue = to_string(replaceValue)
173 replaceValue.call(
177 res += replacement_template(replaceValue, s, e.span(),
201 replaceValue.call(this,
205 res += replacement_template(replaceValue, s, span, pars)
/dports/devel/py-Js2Py/Js2Py-0.71/js2py/internals/prototypes/
H A Djsstring.py156 replaceValue = get_arg(args, 1)
158 if not is_callable(replaceValue):
159 replaceValue = to_string(replaceValue)
173 replaceValue.call(
177 res += replacement_template(replaceValue, s, e.span(),
201 replaceValue.call(this,
205 res += replacement_template(replaceValue, s, span, pars)
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimNullPixelFlip.cpp137 …T replaceValue = (m_replacementType==ReplacementType_MINPIX?static_cast<T>(inputTile->getMinPix(b… in flipPixels() local
145 bandPtr[x] = replaceValue; in flipPixels()
161 …T replaceValue = (m_replacementType==ReplacementType_MINPIX?static_cast<T>(inputTile->getMinPix(b… in flipPixels() local
169 (*bandPtr) = replaceValue; in flipPixels()
/dports/devel/jetbrains-goland/GoLand-2019.3.1/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.symbol.wellknown.d.ts191 [Symbol.replace](string: string, replaceValue: string): string;
240 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typescript/lib/
H A Dlib.es2015.symbol.wellknown.d.ts191 [Symbol.replace](string: string, replaceValue: string): string;
240 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.symbol.wellknown.d.ts191 [Symbol.replace](string: string, replaceValue: string): string;
241 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/node/node_modules/typescript/lib/
H A Dlib.es2015.symbol.wellknown.d.ts191 [Symbol.replace](string: string, replaceValue: string): string;
240 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/devel/jetbrains-webstorm/WebStorm-213.6461.79/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.symbol.wellknown.d.ts196 [Symbol.replace](string: string, replaceValue: string): string;
246 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/devel/jetbrains-phpstorm/PhpStorm-213.6461.83/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.symbol.wellknown.d.ts196 [Symbol.replace](string: string, replaceValue: string): string;
246 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/java/netbeans/netbeans/webcommon/typescript-lsp/node_modules/typescript/lib/
H A Dlib.es2015.symbol.wellknown.d.ts196 [Symbol.replace](string: string, replaceValue: string): string;
246 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/lib/
H A Dlib.es2015.symbol.wellknown.d.ts196 [Symbol.replace](string: string, replaceValue: string): string;
246 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/typescript/lib/
H A Dlib.es2015.symbol.wellknown.d.ts196 [Symbol.replace](string: string, replaceValue: string): string;
246 …lace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValu…
/dports/games/stuntrally/stuntrally-2.6.1/source/shiny/Main/
H A DShaderInstance.cpp193 std::string replaceValue; in parse() local
199 replaceValue = val ? "1" : "0"; in parse()
205 replaceValue = retrieveValue<StringValue>(value, properties->getContext()).get(); in parse()
212 replaceValue = (value == comparedAgainst) ? "1" : "0"; in parse()
220 replaceValue = (val.empty() ? "0" : "1"); in parse()
224 source.replace(pos, (end+1)-pos, replaceValue); in parse()
231 std::string replaceValue; in parse() local
236 replaceValue = (value == "true" || value == "1") ? "1" : "0"; in parse()
243 replaceValue = (value == comparedAgainst) ? "1" : "0"; in parse()
248replaceValue = retrieveValue<StringValue>(mParent->getCurrentGlobalSettings()->getProperty(setting… in parse()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Segmentation/RegionGrowing/test/
H A DitkConnectedThresholdImageFilterTest.cxx109 ConnectedThresholdImageFilterType::OutputImagePixelType replaceValue = 255; in itkConnectedThresholdImageFilterTest() local
110 connectedThresholdFilter->SetReplaceValue( replaceValue ); in itkConnectedThresholdImageFilterTest()
111 TEST_SET_GET_VALUE( replaceValue, connectedThresholdFilter->GetReplaceValue() ); in itkConnectedThresholdImageFilterTest()
/dports/editors/imhex/ImHex-1.7.0/plugins/libimhex/source/lang/
H A Dpreprocessor.cpp101 std::string replaceValue; in preprocess() local
106 replaceValue += code[offset]; in preprocess()
110 if (replaceValue.empty()) in preprocess()
113 this->m_defines.emplace(defineName, replaceValue); in preprocess()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DUseEntry.java57 replaceValue(instruction, value, newValue); in setValue()
60 private static void replaceValue(LIRInstruction op, Value oldValue, Value newValue) { in replaceValue() method in UseEntry
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DUseEntry.java57 replaceValue(instruction, value, newValue); in setValue()
60 private static void replaceValue(LIRInstruction op, Value oldValue, Value newValue) { in replaceValue() method in UseEntry

12345678910>>...12