HomeSort by relevance Sort by last modified time
    Searched refs:ParseValue (Results 1 - 17 of 17) sorted by null

  /bionic/libc/malloc_debug/
Config.cpp 143 bool Config::ParseValue(const std::string& option, const std::string& value, size_t min_value,
184 bool Config::ParseValue(const std::string& option, const std::string& value, size_t default_value,
190 return ParseValue(option, value, min_value, max_value, new_value);
201 if (!ParseValue(option, value, 1, MAX_GUARD_BYTES, &rear_guard_bytes_)) {
212 if (!ParseValue(option, value, DEFAULT_GUARD_BYTES, 1, MAX_GUARD_BYTES, &front_guard_bytes_)) {
222 return ParseValue(option, value, DEFAULT_GUARD_BYTES, 1, MAX_GUARD_BYTES, &rear_guard_bytes_);
233 if (!ParseValue(option, value, 1, SIZE_MAX, &fill_on_alloc_bytes_)) {
241 return ParseValue(option, value, SIZE_MAX, 1, SIZE_MAX, &fill_on_alloc_bytes_);
245 return ParseValue(option, value, SIZE_MAX, 1, SIZE_MAX, &fill_on_free_bytes_);
250 return ParseValue(option, value, DEFAULT_BACKTRACE_FRAMES, 1, MAX_BACKTRACE_FRAMES
    [all...]
Config.h 102 bool ParseValue(const std::string& option, const std::string& value, size_t default_value,
105 bool ParseValue(const std::string& option, const std::string& value, size_t min_value,
  /external/libbrillo/brillo/
value_conversion_unittest.cc 31 std::unique_ptr<base::Value> ParseValue(std::string json) {
45 EXPECT_PRED2(IsEqualValue, *ParseValue(expected), actual)
51 EXPECT_TRUE(FromValue(*ParseValue("123"), &actual));
54 EXPECT_TRUE(FromValue(*ParseValue("-123"), &actual));
57 EXPECT_FALSE(FromValue(*ParseValue("true"), &actual));
62 EXPECT_TRUE(FromValue(*ParseValue("false"), &actual));
65 EXPECT_TRUE(FromValue(*ParseValue("true"), &actual));
68 EXPECT_FALSE(FromValue(*ParseValue("0"), &actual));
69 EXPECT_FALSE(FromValue(*ParseValue("1"), &actual));
74 EXPECT_TRUE(FromValue(*ParseValue("12.5"), &actual))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.h 278 bool ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
279 bool ParseValue(Type *Ty, Value *&V, PerFunctionState &PFS) {
280 return ParseValue(Ty, V, &PFS);
282 bool ParseValue(Type *Ty, Value *&V, LocTy &Loc,
285 return ParseValue(Ty, V, &PFS);
LLParser.cpp     [all...]
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.h 133 util::Status ParseValue(TokenType type);
json_stream_parser.cc 215 result = ParseValue(t);
261 util::Status JsonStreamParser::ParseValue(TokenType type) {
667 // The ParseValue call may push something onto the stack so we need to make
670 util::Status result = ParseValue(type);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
TGParser.cpp 512 Init *Name = ParseValue(CurRec, StringRecTy::get(), ParseNameMode);
934 Init *LHS = ParseValue(CurRec);
1012 Init *LHS = ParseValue(CurRec);
    [all...]
TGParser.h 183 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr,
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGParser.cpp 730 Init *LHS = ParseValue(CurRec);
833 InitList.push_back(ParseValue(CurRec));
839 InitList.push_back(ParseValue(CurRec));
894 Init *LHS = ParseValue(CurRec);
903 Init *MHS = ParseValue(CurRec);
912 Init *RHS = ParseValue(CurRec);
    [all...]
TGParser.h 119 Init *ParseValue(Record *CurRec, RecTy *ItemType = 0);
  /external/llvm/lib/AsmParser/
LLParser.h 364 bool ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
365 bool ParseValue(Type *Ty, Value *&V, PerFunctionState &PFS) {
366 return ParseValue(Ty, V, &PFS);
369 bool ParseValue(Type *Ty, Value *&V, LocTy &Loc,
372 return ParseValue(Ty, V, &PFS);
LLParser.cpp     [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 404 return ParseValue(CurRec, Type, ParseNameMode);
810 Init *LHS = ParseValue(CurRec);
914 InitList.push_back(ParseValue(CurRec));
920 InitList.push_back(ParseValue(CurRec));
988 Init *LHS = ParseValue(CurRec);
997 Init *MHS = ParseValue(CurRec, ItemType);
1007 Init *RHS = ParseValue(CurRec, ItemType);
    [all...]
TGParser.h 175 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
LLParser.h 452 bool ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
453 bool ParseValue(Type *Ty, Value *&V, PerFunctionState &PFS) {
454 return ParseValue(Ty, V, &PFS);
457 bool ParseValue(Type *Ty, Value *&V, LocTy &Loc,
460 return ParseValue(Ty, V, &PFS);
LLParser.cpp     [all...]

Completed in 286 milliseconds