Home
last modified time | relevance | path

Searched refs:stringValue (Results 1 - 25 of 47) sorted by relevance

12

/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonToken.cs60 return new JsonToken(TokenType.Name, stringValue: name); in Name()
65 return new JsonToken(TokenType.StringValue, stringValue: value); in Value()
94 private readonly string stringValue; field in Google.Protobuf.JsonToken
98 internal string StringValue { get { return stringValue; } }
101 private JsonToken(TokenType type, string stringValue = null, double numberValue = 0) in JsonToken()
104 this.stringValue = stringValue; in JsonToken()
119 hash = hash * 31 + stringValue == null ? 0 : stringValue.GetHashCode(); in GetHashCode()
136 return "name (" + stringValue in ToString()
[all...]
H A DJsonTokenizer.cs252 string stringValue = ReadString(); in NextImpl()
256 return JsonToken.Name(stringValue); in NextImpl()
261 return JsonToken.Value(stringValue); in NextImpl()
/third_party/skia/modules/svg/src/
H A DSkSVGDOM.cpp57 const char* stringValue) { in SetIRIAttribute()
58 auto parseResult = SkSVGAttributeParser::parse<SkSVGIRI>(stringValue); in SetIRIAttribute()
68 const char* stringValue) { in SetStringAttribute()
69 SkString str(stringValue, strlen(stringValue)); in SetStringAttribute()
76 const char* stringValue) { in SetTransformAttribute()
77 auto parseResult = SkSVGAttributeParser::parse<SkSVGTransformType>(stringValue); in SetTransformAttribute()
87 const char* stringValue) { in SetLengthAttribute()
88 auto parseResult = SkSVGAttributeParser::parse<SkSVGLength>(stringValue); in SetLengthAttribute()
98 const char* stringValue) { in SetViewBoxAttribute()
56 SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetIRIAttribute() argument
67 SetStringAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetStringAttribute() argument
75 SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetTransformAttribute() argument
86 SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetLengthAttribute() argument
97 SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetViewBoxAttribute() argument
109 SetObjectBoundingBoxUnitsAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetObjectBoundingBoxUnitsAttribute() argument
121 SetPreserveAspectRatioAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) SetPreserveAspectRatioAttribute() argument
183 SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, const char* stringValue) SetStyleAttributes() argument
[all...]
/third_party/icu/icu4c/source/samples/udata/
H A Dwriter.c69 char stringValue[]={'E', 'X', 'A', 'M', 'P', 'L', 'E', '\0'}; in main() local
97 printf("Writing string value of %s\n", stringValue); in main()
98 udata_writeString(pData, stringValue, sizeof(stringValue)); in main()
106 size=sizeof(stringValue) + sizeof(intValue); in main()
/third_party/skia/third_party/externals/icu/source/samples/udata/
H A Dwriter.c69 char stringValue[]={'E', 'X', 'A', 'M', 'P', 'L', 'E', '\0'}; in main() local
97 printf("Writing string value of %s\n", stringValue); in main()
98 udata_writeString(pData, stringValue, sizeof(stringValue)); in main()
106 size=sizeof(stringValue) + sizeof(intValue); in main()
/third_party/vk-gl-cts/framework/qphelper/
H A DqpXmlWriter.h47 const char* stringValue; member
57 attrib.stringValue = value; in qpSetStringAttrib()
68 attrib.stringValue = "<intAttrib>"; in qpSetIntAttrib()
79 attrib.stringValue = "<boolAttrib>"; in qpSetBoolAttrib()
H A DqpXmlWriter.c217 writeEscaped(writer, attrib->stringValue); in qpXmlWriter_startElement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp629 auto Name = Token.stringValue(); in parseBasicBlockDefinition()
1219 StringRef InstrName = Token.stringValue(); in parseInstruction()
1228 StringRef Name = Token.stringValue(); in parseNamedRegister()
1236 StringRef Name = Token.stringValue(); in parseNamedVirtualRegister()
1277 StringRef Name = Token.stringValue(); in parseRegisterClassOrBank()
1370 return error("duplicate '" + Token.stringValue() + "' register flag"); in parseRegisterFlag()
1380 auto Name = Token.stringValue(); in parseSubRegisterIndex()
1553 Src = StringRef(Loc, Len + Token.stringValue().size()); in parseTargetImmMnemonic()
1648 if (Token.isNot(MIToken::Identifier) || Token.stringValue() != "x")
1779 if (!Token.stringValue()
[all...]
H A DMILexer.h217 StringRef stringValue() const { return StringValue; } in stringValue() function
/third_party/icu/icu4c/source/tools/gentest/
H A Dgentest.c106 char stringValue[]={'Y', 'E', 'A', 'R', '\0'}; in createData() local
122 udata_writeString(pData, stringValue, sizeof(stringValue)); in createData()
130 size=sizeof(stringValue) + sizeof(intValue); in createData()
/third_party/skia/third_party/externals/icu/source/tools/gentest/
H A Dgentest.c106 char stringValue[]={'Y', 'E', 'A', 'R', '\0'}; in createData() local
122 udata_writeString(pData, stringValue, sizeof(stringValue)); in createData()
130 size=sizeof(stringValue) + sizeof(intValue); in createData()
/third_party/node/test/node-api/test_reference_by_node_api_version/
H A Dtest.js24 const stringValue = 'test_string';
41 { value: stringValue, canBeWeak: false, canBeRefV8: false },
/third_party/node/deps/v8/src/inspector/
H A Dv8-console-message.cc124 v8::Local<v8::String> stringValue; in append() local
125 if (object->ObjectProtoToString(m_context).ToLocal(&stringValue)) in append()
126 return append(stringValue); in append()
128 v8::Local<v8::String> stringValue; in append() local
129 if (!value->ToString(m_context).ToLocal(&stringValue)) return false; in append()
130 return append(stringValue); in append()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
H A DHeader.java213 builder.append(Tag.stringValue(this.tag)); in toString()
/third_party/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp2729 case stringValue: in Value()
2770 initBasic(stringValue, true); in Value()
2775 initBasic(stringValue, true); in Value()
2781 initBasic(stringValue, true); in Value()
2787 initBasic(stringValue); in Value()
2793 initBasic(stringValue, true); in Value()
2816 case stringValue: in Value()
2863 case stringValue: in ~Value()
2926 case stringValue: in operator <()
2982 case stringValue in operator ==()
[all...]
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2705 case stringValue:
2746 initBasic(stringValue, true);
2751 initBasic(stringValue, true);
2757 initBasic(stringValue, true);
2763 initBasic(stringValue);
2769 initBasic(stringValue, true);
2792 case stringValue:
2831 case stringValue:
2894 case stringValue:
2950 case stringValue
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2705 case stringValue:
2746 initBasic(stringValue, true);
2751 initBasic(stringValue, true);
2757 initBasic(stringValue, true);
2763 initBasic(stringValue);
2769 initBasic(stringValue, true);
2792 case stringValue:
2831 case stringValue:
2894 case stringValue:
2950 case stringValue
[all...]
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2705 case stringValue:
2746 initBasic(stringValue, true);
2751 initBasic(stringValue, true);
2757 initBasic(stringValue, true);
2763 initBasic(stringValue);
2769 initBasic(stringValue, true);
2792 case stringValue:
2831 case stringValue:
2894 case stringValue:
2950 case stringValue
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/
H A Ddescriptor.js1105 stringValue: Buffer.alloc(0),
1117 stringValue: isSet(object.stringValue) ? Buffer.from(bytesFromBase64(object.stringValue)) : Buffer.alloc(0),
1133 message.stringValue !== undefined &&
1134 (obj.stringValue = base64FromBytes(message.stringValue !== undefined ? message.stringValue : Buffer.alloc(0)));
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
H A DTag.java120 public static String stringValue(int tag) { in stringValue() method in Tag
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
H A DScriptTag.java153 throw new IllegalArgumentException(Tag.stringValue(tag)); in fromTag()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/fontinfo/
H A DFontUtils.java90 throw new RuntimeException("Font has no " + Tag.stringValue(tag) + " table"); in getTable()
/third_party/protobuf/objectivec/
H A DGPBStruct.pbobjc.h148 @property(nonatomic, readwrite, copy, null_resettable) NSString *stringValue; variable
/third_party/skia/src/ports/skia_ohos/
H A DFontConfig_ohos.cpp547 return logErrInfo(ERROR_CONFIG_INVALID_VALUE_TYPE, text.c_str(), Json::stringValue, root[i].type()); in parseFontDir()
566 return logErrInfo(ERROR_CONFIG_INVALID_VALUE_TYPE, key, Json::stringValue, root[key].type()); in parseGeneric()
752 Json::stringValue, root[key].type()); in parseFallbackItem()
829 return logErrInfo(ERROR_CONFIG_INVALID_VALUE_TYPE, key, Json::stringValue, root[key].type()); in parseVariation()
879 return logErrInfo(ret, text.c_str(), Json::stringValue, root[0].type()); in parseTtcIndex()
/third_party/icu/icu4c/source/test/intltest/
H A Dnumrgts.cpp422 UnicodeString stringValue; in assignFloatValue() local
423 stringValue = nfcommon->format(returnfloat, stringValue); in assignFloatValue()
424 logln(" DISPLAYVALUE " + stringValue); in assignFloatValue()
426 nfcommon->parse(stringValue, result, status); in assignFloatValue()
431 //String stringValue = nfcommon.format(returnfloat).substring(1); in assignFloatValue()
432 //if (Float.valueOf(stringValue).floatValue() != returnfloat) in assignFloatValue()
433 errln(UnicodeString("FAIL: expected ") + returnfloat + ", got " + floatResult + " (" + stringValue+")"); in assignFloatValue() local

Completed in 32 milliseconds

12