Home
last modified time | relevance | path

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

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Drawing/System.Drawing.Design/
H A DToolboxItem.cs247 …ITypeResolutionService typeRes = host.GetService (typeof (ITypeResolutionService)) as ITypeResolut… in GetType()
249 if (typeRes != null) { in GetType()
251 typeRes.GetAssembly (assemblyName, true); in GetType()
253 typeRes.ReferenceAssembly (assemblyName); in GetType()
254 type = typeRes.GetType (typeName, true); in GetType()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/Utilities/Scripts/
H A DbenchSummary.py66 typeRes = typeParser.match(line)
67 if typeRes:
68 type = typeRes.group(1)
H A DbenchCompare.py76 typeRes = typeParser.match(line)
77 if typeRes:
78 type = typeRes.group(1)
H A DbenchSummaryWithBaselines.py78 typeRes = typeParser.match(line)
79 if typeRes:
80 type = typeRes.group(1)
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/http/codec/test/
H A DHQFramerTest.h22 auto typeRes = quic::encodeQuicInteger(decodedType, appenderOp); in writeFrameHeaderManual() local
23 CHECK(typeRes.hasValue()); in writeFrameHeaderManual()
26 return *typeRes + *lengthRes; in writeFrameHeaderManual()
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/http/codec/
H A DHQFramer.cpp196 auto typeRes = in writeFrameHeader() local
198 if (typeRes.hasError()) { in writeFrameHeader()
199 return typeRes; in writeFrameHeader()
205 return *typeRes + *lengthRes; in writeFrameHeader()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/providers/postgres/
H A Dqgspostgresproviderconnection.cpp273 …QList<QVariantList> typeRes = executeSqlPrivate( QStringLiteral( "SELECT typname FROM pg_type WHER… in executeSqlPrivate() local
276 if ( typeRes.size() > 0 && typeRes.first().size() > 0 ) in executeSqlPrivate()
287 const QString typName { typeRes.first().first().toString() }; in executeSqlPrivate()
H A Dqgspostgresprovider.cpp1948 QgsPostgresResult typeRes( connectionRO()->PQexec( typeSql ) ); in enumValues() local
1949 if ( typeRes.PQresultStatus() != PGRES_TUPLES_OK || typeRes.PQntuples() < 1 ) in enumValues()
1955 const QString typtype = typeRes.PQgetvalue( 0, 0 ); in enumValues()
/dports/lang/polyml/polyml-5.8.2/basis/
H A DTopLevelPolyML.sml82 … of { requestId: string, parseTreeId: string, location: basicLoc, typeRes: PolyML.pretty option }
373 … | makeResponse (TypeResponse { requestId, parseTreeId, location, typeRes }) =
388 case typeRes of
390 | SOME typeRes =>
393 print(prettyAsString typeRes)
855 … | makeResponse (TypeResponse { requestId, parseTreeId, location, typeRes }) =
858 case typeRes of
1165 val (typeRes, location) = value
1173 val typeRes = value
1188 (typeRes, treeLocation newTree)
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/hashicorp/consul/agent/xds/
H A Ddelta.go772 for typeURL, typeRes := range resources {
773 for _, res := range typeRes {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/hashicorp/consul/agent/xds/
H A Ddelta.go772 for typeURL, typeRes := range resources {
773 for _, res := range typeRes {
/dports/graphics/qgis/qgis-3.22.3/src/providers/postgres/
H A Dqgspostgresproviderconnection.cpp318 for ( const auto &typeRes : std::as_const( typesResolved ) ) in execSqlPrivate() local
320 const QString oid { typeRes.constLast().toString() }; in execSqlPrivate()
323 oidTypeMap.insert( typeRes.constFirst().toString(), typeRes.constLast().toString() ); in execSqlPrivate()
H A Dqgspostgresprovider.cpp1964 QgsPostgresResult typeRes( connectionRO()->PQexec( typeSql ) ); in enumValues() local
1965 if ( typeRes.PQresultStatus() != PGRES_TUPLES_OK || typeRes.PQntuples() < 1 ) in enumValues()
1971 const QString typtype = typeRes.PQgetvalue( 0, 0 ); in enumValues()
/dports/sysutils/consul/consul-1.10.3/agent/xds/
H A Ddelta.go837 for typeURL, typeRes := range resources {
838 for _, res := range typeRes {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Semantics/
H A DOperators.cs1836 CType typeRes = GetSymbolLoader().GetTypeManager().GetNullable(typeBool); in BindBoolBitwiseOp()
1849 ExprBinOp exprRes = GetExprFactory().CreateBinop(ek, typeRes, expr1, expr2); in BindBoolBitwiseOp()
1853 mustCast(nonLiftedResult, typeRes, 0); in BindBoolBitwiseOp()