HomeSort by relevance Sort by last modified time
    Searched refs:StringValue (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /external/skia/src/utils/
SkJSON.h 48 * const StringValue* id = v.as<ObjectValue>()["id"];
278 class StringValue final : public Value {
282 StringValue();
283 StringValue(const char* src, size_t size, SkArenaAlloc& alloc);
314 StringValue fKey;
  /external/skqp/src/utils/
SkJSON.h 48 * const StringValue* id = v.as<ObjectValue>()["id"];
278 class StringValue final : public Value {
282 StringValue();
283 StringValue(const char* src, size_t size, SkArenaAlloc& alloc);
314 StringValue fKey;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
ParserValidate.py 603 StringValue = PcdValue.strip().lstrip('L\"').rstrip('\"')
604 if IsValidBareCString(StringValue):
607 StringValue = PcdValue.strip().lstrip('\"').rstrip('\"')
608 if IsValidBareCString(StringValue):
625 StringValue = PcdValue.strip().lstrip('{').rstrip('}')
626 ValueList = StringValue.split(',')
UniClassObject.py 268 self.StringValue = ''
279 self.StringValue = Value
280 self.StringValueByteList = UniToHexList(self.StringValue)
289 repr(self.StringValue) + ' ' + \
294 if self.StringValue:
295 self.StringValue = self.StringValue + '\r\n' + Value
297 self.StringValue = Value
298 self.StringValueByteList = UniToHexList(self.StringValue)
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 46 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.StringValue), global::Google.Protobuf.WellKnownTypes.StringValue.Parser, new[]{ "Value" }, null, null, null),
834 /// The JSON representation for `StringValue` is JSON string.
837 public sealed partial class StringValue : pb::IMessage<StringValue> {
838 private static readonly pb::MessageParser<StringValue> _parser = new pb::MessageParser<StringValue>(() => new StringValue());
839 public static pb::MessageParser<StringValue> Parser { get { return _parser; } }
849 public StringValue() {
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 82 StringRef StringValue) override;
184 StringRef StringValue) {
189 if (!StringValue.empty())
190 OS << ", \"" << StringValue << "\"";
257 std::string StringValue;
319 Item->StringValue = Value;
334 StringRef StringValue, bool OverwriteExisting) {
341 Item->StringValue = StringValue;
350 StringValue
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 95 StringRef StringValue) override;
208 StringRef StringValue) {
213 if (!StringValue.empty())
214 OS << ", \"" << StringValue << "\"";
286 std::string StringValue;
348 Item->StringValue = Value;
363 StringRef StringValue, bool OverwriteExisting) {
370 Item->StringValue = StringValue;
379 StringValue
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 128 StringRef StringValue;
175 StringRef stringValue() const { return StringValue; }
MIRParser.cpp 116 const yaml::StringValue &RegisterSource,
132 const yaml::StringValue &Source);
136 const yaml::StringValue &Source);
507 const yaml::StringValue &Name = Object.Name;
555 const yaml::StringValue &RegisterSource, int FrameIdx) {
569 const yaml::StringValue &Source,
605 MDNode *&Node, const yaml::StringValue &Source) {
662 const yaml::StringValue &Source) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/
MILexer.h 155 StringRef StringValue;
204 StringRef stringValue() const { return StringValue; }
MIRParser.cpp 122 const yaml::StringValue &RegisterSource,
139 const yaml::StringValue &Source);
143 const yaml::StringValue &Source);
628 const yaml::StringValue &Name = Object.Name;
678 const yaml::StringValue &RegisterSource, bool IsRestored, int FrameIdx) {
694 const yaml::StringValue &Source,
730 MDNode *&Node, const yaml::StringValue &Source) {
791 const yaml::StringValue &Source) {
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
ClassWriter.java 25 import com.google.turbine.model.Const.StringValue;
111 output.writeUTF(((StringValue) value).value());
ConstantPoolReader.java 165 return new Const.StringValue(utf8(reader.readUnsignedShort()));
167 return new Const.StringValue(reader.readUTF());
ConstantPool.java 22 import com.google.turbine.model.Const.StringValue;
113 int index = insert(new Entry(Kind.UTF8, new StringValue(value)));
  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/
ChannelOptionsTest.cs 38 Assert.Throws(typeof(InvalidOperationException), () => { var s = option.StringValue; });
48 Assert.AreEqual("ABCDEF", option.StringValue);
  /external/libtextclassifier/utils/
variant.h 87 const std::string& StringValue() const {
  /external/skia/modules/skottie/src/
SkottieJson.cpp 79 if (const skjson::StringValue* sv = v) {
SkottieLayer.cpp 86 const skjson::StringValue* jmode = (*m)["mode"];
281 const skjson::StringValue* hex_str = jlayer["sc"];
299 const skjson::StringValue* name = jimage["p"];
300 const skjson::StringValue* path = jimage["u"];
  /external/skqp/modules/skottie/src/
SkottieJson.cpp 79 if (const skjson::StringValue* sv = v) {
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
save.go 51 pv.StringValue = proto.String(v.String())
80 pv.StringValue = proto.String(string(b))
256 x.Value.StringValue = proto.String(v)
273 x.Value.StringValue = proto.String(string(v))
283 x.Value.StringValue = proto.String(string(v))
289 x.Value.StringValue = proto.String(string(v))
load.go 387 case v.StringValue != nil:
389 return []byte(*v.StringValue), nil
391 return appengine.BlobKey(*v.StringValue), nil
393 return ByteString(*v.StringValue), nil
396 err := proto.Unmarshal([]byte(*v.StringValue), &ent)
402 return *v.StringValue, nil
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
GlesStubActivity.java 322 static class StringValue extends ImplementationVariable {
323 public StringValue(String fieldName) {
353 new StringValue("GL_SHADING_LANGUAGE_VERSION"),
354 new StringValue("GL_VERSION"),
  /bootable/recovery/edify/include/edify/
expr.h 152 Value* StringValue(const char* str);
154 Value* StringValue(const std::string& str);
  /external/skia/modules/particles/include/
SkParticleSerialization.h 118 const skjson::StringValue* typeString = get("Type");
176 if (const skjson::StringValue* str = v) {
  /external/grpc-grpc/src/csharp/Grpc.Core/
ChannelOptions.cs 51 private readonly string stringValue;
57 /// <param name="stringValue">String value.</param>
58 public ChannelOption(string name, string stringValue)
62 this.stringValue = GrpcPreconditions.CheckNotNull(stringValue, "stringValue");
114 public string StringValue
119 return stringValue;
186 nativeArgs.SetString(i, option.Name, option.StringValue);

Completed in 1081 milliseconds

12 3 4 5