OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ParseValue
(Results
1 - 4
of
4
) sorted by null
/external/libbrillo/brillo/
value_conversion_unittest.cc
30
std::unique_ptr<base::Value>
ParseValue
(std::string json) {
46
EXPECT_PRED2(IsEqualValue, *
ParseValue
(expected), actual)
52
EXPECT_TRUE(FromValue(*
ParseValue
("123"), &actual));
55
EXPECT_TRUE(FromValue(*
ParseValue
("-123"), &actual));
58
EXPECT_FALSE(FromValue(*
ParseValue
("true"), &actual));
63
EXPECT_TRUE(FromValue(*
ParseValue
("false"), &actual));
66
EXPECT_TRUE(FromValue(*
ParseValue
("true"), &actual));
69
EXPECT_FALSE(FromValue(*
ParseValue
("0"), &actual));
70
EXPECT_FALSE(FromValue(*
ParseValue
("1"), &actual));
75
EXPECT_TRUE(FromValue(*
ParseValue
("12.5"), &actual))
[
all
...]
/external/llvm/lib/AsmParser/
LLParser.h
358
bool
ParseValue
(Type *Ty, Value *&V, PerFunctionState *PFS);
359
bool
ParseValue
(Type *Ty, Value *&V, PerFunctionState &PFS) {
360
return
ParseValue
(Ty, V, &PFS);
363
bool
ParseValue
(Type *Ty, Value *&V, LocTy &Loc,
366
return
ParseValue
(Ty, V, &PFS);
/external/llvm/lib/TableGen/
TGParser.cpp
409
return
ParseValue
(CurRec, Type, ParseNameMode);
815
Init *LHS =
ParseValue
(CurRec);
919
InitList.push_back(
ParseValue
(CurRec));
925
InitList.push_back(
ParseValue
(CurRec));
993
Init *LHS =
ParseValue
(CurRec);
1002
Init *MHS =
ParseValue
(CurRec, ItemType);
1012
Init *RHS =
ParseValue
(CurRec, ItemType);
[
all
...]
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h
408
ParseValue
<parseFlags>(is, handler);
497
ParseValue
<parseFlags>(is, handler);
534
ParseValue
<parseFlags>(is, handler);
[
all
...]
Completed in 808 milliseconds