Home
last modified time | relevance | path

Searched refs:lengthFunc (Results 1 – 25 of 174) sorted by relevance

1234567

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO/tests/Stream/
H A DStream.CopyToTests.cs73 lengthFunc: () => 0L, in IfCanSeekIsTrueLengthAndPositionShouldOnlyBeCalledOnce()
91 lengthFunc: () => 0L, in AsyncIfCanSeekIsTrueLengthAndPositionShouldOnlyBeCalledOnce()
114 lengthFunc: () => length, in IfLengthIsLessThanOrEqualToPositionCopyToShouldStillBeCalledWithAPositiveBufferSize()
144 lengthFunc: () => length, in AsyncIfLengthIsLessThanOrEqualToPositionCopyToShouldStillBeCalledWithAPositiveBufferSize()
169 lengthFunc: () => length, in IfLengthMinusPositionPositiveOverflowsBufferSizeShouldStillBePositive()
199 lengthFunc: () => length, in AsyncIfLengthMinusPositionPositiveOverflowsBufferSizeShouldStillBePositive()
231 lengthFunc: () => length, in IfLengthIsGreaterThanPositionAndDoesNotOverflowEverythingShouldGoNormally()
286 lengthFunc: () => length, in AsyncIfLengthIsGreaterThanPositionAndDoesNotOverflowEverythingShouldGoNormally()
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/structures/script/
H A Dscripthandler.cpp109 QScriptValue lengthFunc = array->lengthFunction(); in updateLength() local
110 if (lengthFunc.isValid()) { in updateLength()
111 Q_ASSERT(lengthFunc.isFunction()); in updateLength()
113 … QScriptValue result = callFunction(lengthFunc, array, ScriptHandlerInfo::Mode::DeterminingLength); in updateLength()
/dports/multimedia/kaffeine/kaffeine-2.0.18/tools/
H A Dupdatedvbsi.cpp50 QString lengthFunc; member in Element
180 element.lengthFunc = attributes.namedItem("lengthFunc").nodeValue(); in parseEntry()
309 if ((element.type != Element::List) || element.lengthFunc.isEmpty()) { in parseEntry()
313 if ((i <= 0) || (elements.at(i - 1).name != element.lengthFunc)) { in parseEntry()
458 if (element.lengthFunc.isEmpty()) { in parseEntry()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/IO/
H A DDelegateStream.cs34 Func<long> lengthFunc = null, in DelegateStream() argument
51 _lengthFunc = lengthFunc ?? (() => { throw new NotSupportedException(); }); in DelegateStream()
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/structures/parsers/
H A Dosdparser.cpp249 const QScriptValue lengthFunc = ParserUtils::functionSafeEval(info.engine, lengthStr); in arrayFromXML() local
250 if (lengthFunc.isValid()) { in arrayFromXML()
251 apd.length = lengthFunc; in arrayFromXML()
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dfunc.c66 static void lengthFunc(sqlite_func *context, int argc, const char **argv){ in lengthFunc() function
576 { "length", 1, SQLITE_NUMERIC, 0, lengthFunc }, in sqliteRegisterBuiltinFunctions()
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dfunc.c66 static void lengthFunc(sqlite_func *context, int argc, const char **argv){ in lengthFunc() function
576 { "length", 1, SQLITE_NUMERIC, 0, lengthFunc }, in sqliteRegisterBuiltinFunctions()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dfunc.c85 static void lengthFunc( in lengthFunc() function
1522 FUNCTION(length, 1, 0, 0, lengthFunc ), in sqlite3RegisterGlobalFunctions()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dfunc.c99 static void lengthFunc( in lengthFunc() function
1812 FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), in sqlite3RegisterBuiltinFunctions()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dfunc.c104 static void lengthFunc( in lengthFunc() function
1959 FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), in sqlite3RegisterBuiltinFunctions()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dfunc.c104 static void lengthFunc( in lengthFunc() function
1970 FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), in sqlite3RegisterBuiltinFunctions()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dfunc.c104 static void lengthFunc( in lengthFunc() function
2170 FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), in sqlite3RegisterBuiltinFunctions()
/dports/devel/svntrac/cvstrac-2.0.1/
H A Ddb.c927 static void lengthFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ in lengthFunc() function
1029 sqlite3_create_function(pDb, "length", 1, SQLITE_ANY, 0, lengthFunc, 0, 0); in db_add_functions()
/dports/devel/cvstrac/cvstrac-2.0.1/
H A Ddb.c927 static void lengthFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ in lengthFunc() function
1029 sqlite3_create_function(pDb, "length", 1, SQLITE_ANY, 0, lengthFunc, 0, 0); in db_add_functions()
/dports/devel/gittrac/cvstrac-2.0.1/
H A Ddb.c927 static void lengthFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ in lengthFunc() function
1029 sqlite3_create_function(pDb, "length", 1, SQLITE_ANY, 0, lengthFunc, 0, 0); in db_add_functions()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/tests/FunctionalTests/
H A DHttpClientHandlerTest.cs1533 lengthFunc: () => wrappedMemStream.Length,
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/expression/
H A Dqgsexpressionfunction.cpp6367 …QgsStaticExpressionFunction *lengthFunc = new QgsStaticExpressionFunction( QStringLiteral( "$lengt… in Functions() local
6368 lengthFunc->setIsStatic( false ); in Functions()
6369 functions << lengthFunc; in Functions()
/dports/graphics/qgis/qgis-3.22.3/src/core/expression/
H A Dqgsexpressionfunction.cpp6877 …QgsStaticExpressionFunction *lengthFunc = new QgsStaticExpressionFunction( QStringLiteral( "$lengt… in Functions() local
6878 lengthFunc->setIsStatic( false ); in Functions()
6879 functions << lengthFunc; in Functions()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/sqlite/vtksqlite/
H A Dvtk_sqlite3.c71117 static void lengthFunc(
72496 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/devel/raknet/raknet-3.9.2_10,1/DependentExtensions/SQLite3Plugin/
H A Dsqlite3.c67143 static void lengthFunc(
68467 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/databases/db5/db-5.3.28/lang/sql/generated/
H A Dsqlite3.c72853 static void lengthFunc(
74290 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/sqlite/
H A Dsqlite3.amalgamation.c66326 static void lengthFunc(
67763 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/games/pokerth/pokerth-1.1.2-rc/src/third_party/sqlite3/
H A Dsqlite3.c86216 static void lengthFunc(
87669 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/sqlite/
H A Dsqlite3.c82321 static void lengthFunc(
83773 FUNCTION(length, 1, 0, 0, lengthFunc ),
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/sqlite/
H A Dsqlite3.c82285 static void lengthFunc(
83737 FUNCTION(length, 1, 0, 0, lengthFunc ),

1234567