HomeSort by relevance Sort by last modified time
    Searched defs:StringValue (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/v8/tools/clang/value_cleanup/tests/
values.h 25 class StringValue : public Value {
27 // Initializes a StringValue with a UTF-8 narrow character string.
28 explicit StringValue(StringPiece in_value);
30 // Initializes a StringValue with a string16.
31 explicit StringValue(const string16& in_value);
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 7 * $Id: StringValue.java,v 1.2 2004/05/20 02:28:06 vlad_r Exp $
18 abstract class StringValue
47 protected StringValue (final Task task)
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
StringValue.java 26 class StringValue extends VariantValue {
30 public StringValue(String value, EscapeMode escapeMode, boolean partiallyEscaped) {
  /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...]
Struct.cs 45 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Value), global::Google.Protobuf.WellKnownTypes.Value.Parser, new[]{ "NullValue", "NumberValue", "StringValue", "BoolValue", "StructValue", "ListValue" }, new[]{ "Kind" }, null, null),
212 case KindOneofCase.StringValue:
213 StringValue = other.StringValue;
263 public string StringValue {
264 get { return kindCase_ == KindOneofCase.StringValue ? (string) kind_ : ""; }
267 kindCase_ = KindOneofCase.StringValue;
316 StringValue = 3,
344 if (StringValue != other.StringValue) return false
    [all...]
  /external/protobuf/src/google/protobuf/
wrappers.pb.h 46 class StringValue;
689 class LIBPROTOBUF_EXPORT StringValue : public ::google::protobuf::Message {
691 StringValue();
692 virtual ~StringValue();
694 StringValue(const StringValue& from);
696 inline StringValue& operator=(const StringValue& from) {
706 static const StringValue& default_instance();
708 void UnsafeArenaSwap(StringValue* other)
    [all...]
wrappers.pb.cc 169 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(StringValue, value_),
174 StringValue::default_instance_,
179 sizeof(StringValue),
180 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(StringValue, _internal_metadata_),
181 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(StringValue, _is_default_instance_));
224 StringValue_descriptor_, &StringValue::default_instance());
246 delete StringValue::default_instance_;
265 "\r\n\005value\030\001 \001(\010\"\034\n\013StringValue\022\r\n\005value\030\001"
280 StringValue::default_instance_ = new StringValue();
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wrappers.pb.h 46 class StringValue;
689 class LIBPROTOBUF_EXPORT StringValue : public ::google::protobuf::Message {
691 StringValue();
692 virtual ~StringValue();
694 StringValue(const StringValue& from);
696 inline StringValue& operator=(const StringValue& from) {
706 static const StringValue& default_instance();
708 void UnsafeArenaSwap(StringValue* other)
    [all...]
  /external/libchrome/base/
values.cc 104 bool Value::GetAsString(const StringValue**) const {
240 ///////////////////// StringValue ////////////////////
242 StringValue::StringValue(const std::string& in_value)
248 StringValue::StringValue(const string16& in_value)
253 StringValue::~StringValue() {
256 std::string* StringValue::GetString() {
260 const std::string& StringValue::GetString() const
    [all...]
values.h 42 class StringValue;
87 virtual bool GetAsString(const StringValue** out_value) const;
146 class BASE_EXPORT StringValue : public Value {
148 // Initializes a StringValue with a UTF-8 narrow character string.
149 explicit StringValue(const std::string& in_value);
151 // Initializes a StringValue with a string16.
152 explicit StringValue(const string16& in_value);
154 ~StringValue() override;
163 bool GetAsString(const StringValue** out_value) const override;
164 StringValue* DeepCopy() const override
    [all...]
  /bootable/recovery/edify/
expr.cpp 65 Value* StringValue(const char* str) {
72 Value* StringValue(const std::string& str) {
73 return StringValue(str.c_str());
78 return StringValue("");
89 return StringValue(result);
109 return StringValue("");
134 return StringValue("");
149 return StringValue(val);
160 return StringValue("");
172 return StringValue("");
    [all...]
  /system/core/libutils/tests/
LruCache_test.cpp 27 typedef const char* StringValue;
111 class EntryRemovedCallback : public OnEntryRemoved<SimpleKey, StringValue> {
115 void operator()(SimpleKey& k, StringValue& v) {
122 StringValue lastValue;
125 class InvalidateKeyCallback : public OnEntryRemoved<KeyWithPointer, StringValue> {
127 void operator()(KeyWithPointer& k, StringValue&) {
154 LruCache<SimpleKey, StringValue> cache(100);
161 LruCache<SimpleKey, StringValue> cache(100);
173 LruCache<SimpleKey, StringValue> cache(2);
185 LruCache<SimpleKey, StringValue> cache(100)
    [all...]
  /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"),
  /external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(Value) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 128 StringRef StringValue;
175 StringRef stringValue() const { return StringValue; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 28 struct StringValue {
32 StringValue() {}
33 StringValue(std::string Value) : Value(std::move(Value)) {}
35 bool operator==(const StringValue &Other) const {
40 template <> struct ScalarTraits<StringValue> {
41 static void output(const StringValue &S, void *, llvm::raw_ostream &OS) {
45 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) {
56 struct FlowStringValue : StringValue {
58 FlowStringValue(std::string Value) : StringValue(std::move(Value)) {}
63 return ScalarTraits<StringValue>::output(S, nullptr, OS)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenVtf/
GenVtf.c 332 UINT64 StringValue;
347 if (AsciiStringToUint64 (*TokenStr, FALSE, &StringValue) != EFI_SUCCESS) {
352 VtfInfo->CompType = (UINT8) StringValue;
376 if (AsciiStringToUint64 (*TokenStr, FALSE, &StringValue) != EFI_SUCCESS) {
381 VtfInfo->CompSize = (UINTN) StringValue;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMAsmPrinter.cpp 114 StringRef StringValue;
204 Streamer.EmitBytes(UppercaseString(item.StringValue), 0);
    [all...]

Completed in 509 milliseconds

1 2 3 4