/external/webrtc/webrtc/libjingle/xmpp/ |
xmppstanzaparser_unittest.cc | 60 parser.Parse(fragment.c_str(), fragment.length(), false); 70 parser.Parse(fragment.c_str(), fragment.length(), false); 75 parser.Parse(fragment.c_str(), fragment.length(), false); 80 parser.Parse(fragment.c_str(), fragment.length(), false); 84 parser.Parse(fragment.c_str(), fragment.length(), false); 89 parser.Parse(fragment.c_str(), fragment.length(), false); 99 parser.Parse(fragment.c_str(), fragment.length(), false); 103 parser.Parse(fragment.c_str(), fragment.length(), false); 109 parser.Parse(fragment.c_str(), fragment.length(), false); 115 parser.Parse(fragment.c_str(), fragment.length(), false) [all...] |
/external/webrtc/webrtc/test/fuzzers/ |
h264_depacketizer_fuzzer.cc | 16 depacketizer.Parse(&parsed_payload, data, size);
|
vp8_depacketizer_fuzzer.cc | 16 depacketizer.Parse(&parsed_payload, data, size);
|
vp9_depacketizer_fuzzer.cc | 16 depacketizer.Parse(&parsed_payload, data, size);
|
/build/kati/ |
parser.h | 28 void Parse(Makefile* mk); 29 void Parse(StringPiece buf, const Loc& loc, vector<Stmt*>* out_asts);
|
/system/tools/aidl/ |
aidl_unittest.cpp | 67 unique_ptr<AidlInterface> Parse(const string& path, 92 EXPECT_NE(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &java_types_)); 103 EXPECT_EQ(nullptr, Parse(path, contents, &java_types_)); 104 EXPECT_EQ(nullptr, Parse(path, contents, &cpp_types_)); 108 EXPECT_EQ(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &cpp_types_)); 110 Parse("a/IFoo.aidl", "package a; interface IFoo { }", &cpp_types_)); 118 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &cpp_types_)); 119 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &java_types_)); 120 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &cpp_types_)); 121 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &java_types_)) [all...] |
main_cpp.cpp | 30 std::unique_ptr<CppOptions> options = CppOptions::Parse(argc, argv);
|
/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/ |
parse_html_deps_unittest.py | 17 module = parser.Parse('') 25 module = parser.Parse(None) 42 module = parser.Parse(html) 61 module = parser.Parse(html) 78 module = parser.Parse(html) 100 module = parse_html_deps.HTMLModuleParser().Parse(html) 111 module = parser.Parse(html) 136 module = parse_html_deps.HTMLModuleParser().Parse(html) 161 self.assertRaises(lambda: parser.Parse(html)) 170 res = parser.Parse(orig_html [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_flag_parser.h | 25 virtual bool Parse(const char *value) { return false; } 34 bool Parse(const char *value) final; 38 inline bool FlagHandler<bool>::Parse(const char *value) { 56 inline bool FlagHandler<const char *>::Parse(const char *value) { 62 inline bool FlagHandler<int>::Parse(const char *value) { 71 inline bool FlagHandler<uptr>::Parse(const char *value) {
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_suppressions_test.cc | 83 TEST_F(SuppressionContextTest, Parse) { 84 ctx_.Parse("race:foo\n" 94 ctx_.Parse( 105 ctx_.Parse( 115 ctx_.Parse( 126 ctx_.Parse(
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 347 listener.EnterAlt(int.Parse(elements[1])); 349 listener.EnterSubRule(int.Parse(elements[1])); 351 listener.ExitSubRule(int.Parse(elements[1])); 353 listener.EnterDecision(int.Parse(elements[1]), elements[2].Equals("true")); 355 listener.ExitDecision(int.Parse(elements[1])); 357 listener.Location(int.Parse(elements[1]), 358 int.Parse(elements[2])); 375 listener.LT(int.Parse(elements[1]), t); 377 listener.Mark(int.Parse(elements[1])); 380 listener.Rewind(int.Parse(elements[1])) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 436 listener.EnterAlt( int.Parse( elements[1] ) ); 440 listener.EnterSubRule( int.Parse( elements[1] ) ); 444 listener.ExitSubRule( int.Parse( elements[1] ) ); 448 listener.EnterDecision(int.Parse(elements[1]), elements[2].Equals("true")); 452 listener.ExitDecision( int.Parse( elements[1] ) ); 456 listener.Location( int.Parse( elements[1] ), 457 int.Parse( elements[2] ) ); 482 listener.LT( int.Parse( elements[1] ), t ); 486 listener.Mark( int.Parse( elements[1] ) ); 492 listener.Rewind( int.Parse( elements[1] ) ) [all...] |
/external/clang/include/clang/AST/ |
CommentBriefParser.h | 48 std::string Parse();
|
/external/webrtc/webrtc/modules/rtp_rtcp/include/ |
rtp_header_parser.h | 30 // This method is thread-safe in the sense that it can parse multiple packets 32 virtual bool Parse(const uint8_t* packet,
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
h264_sps_parser.h | 24 bool Parse();
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/condense/ |
condense.cpp | 25 // JSON reader parse from the input stream and let writer generate the output.
26 if (!reader.Parse(is, writer)) {
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/pretty/ |
pretty.cpp | 23 // JSON reader parse from the input stream and let writer generate the output.
24 if (!reader.Parse<kParseValidateEncodingFlag>(is, writer)) {
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/ |
simpledom.cpp | 12 // 1. Parse a JSON string into DOM. 15 d.Parse(json);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
jsoncheckertest.cpp | 71 document.Parse((const char*)json);
74 document.Parse<kParseIterativeFlag>((const char*)json);
91 document.Parse((const char*)json);
94 document.Parse<kParseIterativeFlag>((const char*)json);
|
/external/webrtc/webrtc/libjingle/xmllite/ |
xmlparser_unittest.cc | 159 parser.Parse(fragment.c_str(), fragment.length(), false); 163 parser.Parse(fragment.c_str(), fragment.length(), false); 167 parser.Parse(fragment.c_str(), fragment.length(), false); 171 parser.Parse(fragment.c_str(), fragment.length(), false); 176 parser.Parse(fragment.c_str(), fragment.length(), false); 181 parser.Parse(fragment.c_str(), fragment.length(), false); 185 parser.Parse(fragment.c_str(), fragment.length(), false); 196 parser.Parse(fragment.c_str(), fragment.length(), false); 202 parser.Parse(fragment.c_str(), fragment.length(), false); 212 parser.Parse(fragment.c_str(), fragment.length(), false) [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
rrtr_unittest.cc | 39 TEST(RtcpPacketRrtrTest, Parse) { 41 read_rrtr.Parse(kBlock);
|
/art/cmdline/ |
cmdline_type_parser.h | 33 // Parse a single value for an argument definition out of the wildcard component. 37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) { 42 // Parse a value and append it into the existing value so far, for argument 45 // The value is parsed out of the wildcard component as in Parse. 58 // Whether or not your type can parse argument definitions defined without a "_"
|
/external/clang/lib/ |
Makefile | 12 PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis Frontend \
|
/external/libchrome/base/json/ |
json_reader.cc | 48 return make_scoped_ptr(parser.Parse(json)); 54 return make_scoped_ptr(parser.Parse(json)); 66 scoped_ptr<Value> root(parser.Parse(json)); 109 return make_scoped_ptr(parser_->Parse(json));
|
/external/libweave/third_party/chromium/base/json/ |
json_reader.cc | 48 return make_scoped_ptr(parser.Parse(json)); 54 return make_scoped_ptr(parser.Parse(json)); 66 scoped_ptr<Value> root(parser.Parse(json)); 109 return make_scoped_ptr(parser_->Parse(json));
|