Home
last modified time | relevance | path

Searched refs:inputStr (Results 1 – 6 of 6) sorted by relevance

/third_party/protobuf/objectivec/Tests/
DGPBUtilitiesTests.m84 NSString *inputStr = @"abcdefghIJ";
90 XCTAssertNil(GPBDecodeTextFormatName(nil, 1, inputStr));
94 XCTAssertNil(GPBDecodeTextFormatName(decodeData, 5, inputStr));
95 XCTAssertNil(GPBDecodeTextFormatName(decodeData, -1, inputStr));
99 XCTAssertEqualObjects(GPBDecodeTextFormatName(decodeData, 1, inputStr), @"abcdefghIJ");
100 XCTAssertEqualObjects(GPBDecodeTextFormatName(decodeData, 2, inputStr), @"Abcd_EfghIJ");
101 XCTAssertEqualObjects(GPBDecodeTextFormatName(decodeData, 3, inputStr), @"_AbcdefghIJ");
102 XCTAssertEqualObjects(GPBDecodeTextFormatName(decodeData, 4, inputStr), @"ABCD__EfghI_j");
105 XCTAssertEqualObjects(GPBDecodeTextFormatName(decodeData, 0, inputStr), @"zbcdefghIJ");
108inputStr = @"longFieldNameIsLooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo…
[all …]
/third_party/skia/src/gpu/
DGrGeometryProcessor.cpp274 SkString inputStr; in emitTransformCode() local
276 inputStr = SkStringPrintf("%s.xy1", inputCoords.getName().c_str()); in emitTransformCode()
279 inputStr = inputCoords.getName(); in emitTransformCode()
288 inputStr.c_str()); in emitTransformCode()
293 inputStr.c_str()); in emitTransformCode()
300 inputStr.c_str()); in emitTransformCode()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_fingerprint.cpp166 bool dng_fingerprint::FromUtf8HexString (const char inputStr [2 * kDNGFingerprintSize + 1]) in FromUtf8HexString()
172 int highNibble = HexCharToNum (inputStr [i * 2]); in FromUtf8HexString()
179 int lowNibble = HexCharToNum (inputStr [i * 2 + 1]); in FromUtf8HexString()
Ddng_fingerprint.h98 bool FromUtf8HexString (const char inputStr [2 * kDNGFingerprintSize + 1]);
/third_party/typescript/scripts/
DprocessDiagnosticMessages.mjs34 const inputStr = fs.readFileSync(inputFilePath, { encoding: "utf-8" });
37 const diagnosticMessagesJson = JSON.parse(inputStr);
/third_party/protobuf/objectivec/
DGPBUtilities.m2136 NSString *inputStr) {
2156 if (!decodeData || !inputStr) {
2195 [NSMutableString stringWithCapacity:[inputStr length]];
2215 unichar c = [inputStr characterAtIndex:i];
2220 unichar c = [inputStr characterAtIndex:i];
2229 unichar c = [inputStr characterAtIndex:(i + x)];