Home
last modified time | relevance | path

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

/dports/lang/tclX/tclx8.4/generic/
H A DtclXchmod.c37 int modeVal));
72 ConvSymMode (interp, symMode, modeVal) in ConvSymMode() argument
75 int modeVal;
187 modeVal |= newMode;
189 modeVal &= ~newMode;
191 modeVal |= (modeVal & ugoMask) | newMode;
196 return modeVal;
/dports/x11-toolkits/scintilla/scite/src/
H A DJobQueue.cxx59 std::string modeVal(props.GetNewExpandString(propName.c_str(), fileNameExt)); in JobMode() local
61 modeVal.erase(std::remove(modeVal.begin(), modeVal.end(), ' '), modeVal.end()); in JobMode()
62 std::vector<std::string> modes = StringSplit(modeVal, ','); in JobMode()
/dports/editors/scite/scite/src/
H A DJobQueue.cxx59 std::string modeVal(props.GetNewExpandString(propName.c_str(), fileNameExt)); in JobMode() local
61 modeVal.erase(std::remove(modeVal.begin(), modeVal.end(), ' '), modeVal.end()); in JobMode()
62 std::vector<std::string> modes = StringSplit(modeVal, ','); in JobMode()
/dports/graphics/krita/krita-4.4.8/libs/libqml/qml/panels/filterconfigpages/
H A Dburn.qml38 var modeVal = configuration.readProperty("type");
39 modeChoice.currentIndex = (modeVal === undefined) ? 1 : modeVal;
H A Ddodge.qml38 var modeVal = configuration.readProperty("type");
39 modeChoice.currentIndex = (modeVal === undefined) ? 1 : modeVal;
/dports/www/firefox/firefox-99.0/js/src/builtin/streams/
H A DReadableStream.cpp312 Rooted<Value> modeVal(cx); in ReadableStream_getReader() local
313 if (!GetProperty(cx, optionsVal, cx->names().mode, &modeVal)) { in ReadableStream_getReader()
318 if (!modeVal.isUndefined()) { in ReadableStream_getReader()
323 Rooted<JSString*> modeStr(cx, ToString<CanGC>(cx, modeVal)); in ReadableStream_getReader()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/builtin/streams/
H A DReadableStream.cpp291 Rooted<Value> modeVal(cx); in ReadableStream_getReader() local
292 if (!GetProperty(cx, optionsVal, cx->names().mode, &modeVal)) { in ReadableStream_getReader()
306 if (modeVal.isUndefined()) { in ReadableStream_getReader()
311 Rooted<JSString*> mode(cx, ToString<CanGC>(cx, modeVal)); in ReadableStream_getReader()
/dports/biology/canu/canu-2.2/src/utility/src/utility/
H A Dstddev.H206 TT modeVal = 0; variable
215 modeVal = modeTmpVal;
227 modeVal = modeTmpVal;
230 mode = modeVal;
/dports/www/firefox-esr/firefox-91.8.0/js/src/builtin/streams/
H A DReadableStream.cpp315 Rooted<Value> modeVal(cx); in ReadableStream_getReader() local
316 if (!GetProperty(cx, optionsVal, cx->names().mode, &modeVal)) { in ReadableStream_getReader()
321 if (!modeVal.isUndefined()) { in ReadableStream_getReader()
326 Rooted<JSString*> modeStr(cx, ToString<CanGC>(cx, modeVal)); in ReadableStream_getReader()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/builtin/streams/
H A DReadableStream.cpp315 Rooted<Value> modeVal(cx); in ReadableStream_getReader() local
316 if (!GetProperty(cx, optionsVal, cx->names().mode, &modeVal)) { in ReadableStream_getReader()
321 if (!modeVal.isUndefined()) { in ReadableStream_getReader()
326 Rooted<JSString*> modeStr(cx, ToString<CanGC>(cx, modeVal)); in ReadableStream_getReader()
/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_test.go424 modeVal, err := evt.Command.LookupErr("$readPreference", "mode")
427 mode := modeVal.StringValue()
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_test.go446 modeVal, err := evt.Command.LookupErr("$readPreference", "mode")
449 mode := modeVal.StringValue()
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_test.go446 modeVal, err := evt.Command.LookupErr("$readPreference", "mode")
449 mode := modeVal.StringValue()
/dports/biology/bbmap/bbmap/pytools/lib/
H A Dreadqc_utils.py533 modeVal = None
543 modeVal = l.strip().split('\t')[1]
581 return reformatGchistFile, pngFile, htmlFile, meanVal, stdevVal, medVal, modeVal
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/builtin/
H A DStream.cpp765 RootedValue modeVal(cx); in ReadableStream_getReader_impl() local
768 if (!GetProperty(cx, optionsVal, cx->names().mode, &modeVal)) return false; in ReadableStream_getReader_impl()
771 if (modeVal.isUndefined()) { in ReadableStream_getReader_impl()
775 RootedString mode(cx, ToString<CanGC>(cx, modeVal)); in ReadableStream_getReader_impl()