Home
last modified time | relevance | path

Searched refs:Replace (Results 1 - 4 of 4) sorted by relevance

/ide/tools/previewer/util/
H A DJsonReader.h94 bool Replace(const char* key, bool value);
95 bool Replace(const char* key, int32_t value);
96 bool Replace(const char* key, uint32_t value);
97 bool Replace(const char* key, int64_t value);
98 bool Replace(const char* key, double value);
99 bool Replace(const char* key, const char* value);
100 bool Replace(const char* key, const Value& value);
102 bool Replace(int index, bool value);
103 bool Replace(int index, int32_t value);
104 bool Replace(in
[all...]
H A DJsonReader.cpp440 bool Value::Replace(const char* key, bool value) in Replace() function in Json2::Value
456 bool Value::Replace(const char* key, int32_t value) in Replace() function in Json2::Value
458 return Replace(key, static_cast<double>(value)); in Replace()
461 bool Value::Replace(const char* key, uint32_t value) in Replace() function in Json2::Value
463 return Replace(key, static_cast<double>(value)); in Replace()
466 bool Value::Replace(const char* key, int64_t value) in Replace() function in Json2::Value
468 return Replace(key, static_cast<double>(value)); in Replace()
471 bool Value::Replace(const char* key, double value) in Replace() function in Json2::Value
487 bool Value::Replace(const char* key, const char* value) in Replace() function in Json2::Value
503 bool Value::Replace(cons function in Json2::Value
520 bool Value::Replace(int index, bool value) Replace() function in Json2::Value
536 bool Value::Replace(int index, int32_t value) Replace() function in Json2::Value
541 bool Value::Replace(int index, uint32_t value) Replace() function in Json2::Value
546 bool Value::Replace(int index, int64_t value) Replace() function in Json2::Value
551 bool Value::Replace(int index, double value) Replace() function in Json2::Value
567 bool Value::Replace(int index, const char* value) Replace() function in Json2::Value
583 bool Value::Replace(int index, const Value& value) Replace() function in Json2::Value
[all...]
/ide/tools/previewer/test/unittest/util/
H A DJsonReaderTest.cpp126 objVal.Replace("name", g_newName.c_str()); in TEST()
128 objVal.Replace("isChild", g_newIsChild); in TEST()
130 objVal.Replace("age", g_newAge); in TEST()
132 objVal.Replace("code1", g_newCode1); in TEST()
134 objVal.Replace("code2", g_newCode2); in TEST()
136 objVal.Replace("height", g_newHeight); in TEST()
141 objVal.Replace("school", resultJson); in TEST()
149 arrVal.Replace(index, g_newName.c_str()); in TEST()
151 arrVal.Replace(index, g_newIsChild); in TEST()
153 arrVal.Replace(inde in TEST()
[all...]
/ide/tools/previewer/test/unittest/cli/
H A DCommandLineTest.cpp131 args4.Replace("Orientation", "portrait"); in TEST_F()
511 args1.Replace("isInputMethod", true); in TEST_F()
512 args1.Replace("codePoint", "aaaa"); in TEST_F()
518 args1.Replace("codePoint", codePoint); in TEST_F()
562 args1.Replace("keyAction", 0); in TEST_F()
563 args1.Replace("keyCode", 1900); in TEST_F()
621 args1.Replace("y", 1071); in TEST_F()
622 args1.Replace("action", "2"); in TEST_F()
628 args1.Replace("action", 2); in TEST_F()
629 args1.Replace("sourceToo in TEST_F()
[all...]

Completed in 6 milliseconds