Home
last modified time | relevance | path

Searched refs:configStr (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/glslang/StandAlone/
DResourceLimits.cpp267 std::string configStr(config); in DecodeResourceLimits() local
269 while ((pos = configStr.find_first_not_of(delims, pos)) != std::string::npos) { in DecodeResourceLimits()
271 const size_t token_e = configStr.find_first_of(delims, token_s); in DecodeResourceLimits()
272 const size_t value_s = configStr.find_first_not_of(delims, token_e); in DecodeResourceLimits()
273 const size_t value_e = configStr.find_first_of(delims, value_s); in DecodeResourceLimits()
277 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits()
278 const std::string valueStr = configStr.substr(value_s, value_e-value_s); in DecodeResourceLimits()
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DBinaryLogs.java48 public static BinaryLog createBinaryLog(BinaryLogSink sink, String configStr) throws IOException { in createBinaryLog() argument
49 return new BinaryLogProviderImpl(sink, configStr); in createBinaryLog()
DBinaryLogProviderImpl.java55 public BinaryLogProviderImpl(BinaryLogSink sink, String configStr) throws IOException { in BinaryLogProviderImpl() argument
58 factory = new BinlogHelper.FactoryImpl(sink, configStr); in BinaryLogProviderImpl()
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DBinlogHelperTest.java275 String configStr = in configBinLog_multiConfig_withGlobal() local
280 assertSameLimits(HEADER_FULL, makeLog(configStr, "otherpackage.service/method")); in configBinLog_multiConfig_withGlobal()
282 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method1")); in configBinLog_multiConfig_withGlobal()
283 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method2")); in configBinLog_multiConfig_withGlobal()
284 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method3")); in configBinLog_multiConfig_withGlobal()
287 new Builder().header(128).msg(128).build(), makeLog(configStr, "package.service1/both128")); in configBinLog_multiConfig_withGlobal()
289 assertSameLimits(HEADER_FULL, makeLog(configStr, "package.service1/absent")); in configBinLog_multiConfig_withGlobal()
291 assertSameLimits(MSG_FULL, makeLog(configStr, "package.service2/method_messageOnly")); in configBinLog_multiConfig_withGlobal()
293 assertSameLimits(HEADER_FULL, makeLog(configStr, "package.service2/absent")); in configBinLog_multiConfig_withGlobal()
298 String configStr = in configBinLog_multiConfig_noGlobal() local
[all …]