/system/tools/aidl/ |
D | aidl_unittest.cpp | 67 unique_ptr<AidlInterface> Parse(const string& path, in Parse() function in android::aidl::AidlTest 92 EXPECT_NE(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &java_types_)); in TEST_F() 103 EXPECT_EQ(nullptr, Parse(path, contents, &java_types_)); in TEST_F() 104 EXPECT_EQ(nullptr, Parse(path, contents, &cpp_types_)); in TEST_F() 108 EXPECT_EQ(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &cpp_types_)); in TEST_F() 110 Parse("a/IFoo.aidl", "package a; interface IFoo { }", &cpp_types_)); in TEST_F() 118 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &cpp_types_)); in TEST_F() 119 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &java_types_)); in TEST_F() 120 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &cpp_types_)); in TEST_F() 121 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &java_types_)); in TEST_F() [all …]
|
D | generate_cpp_unittest.cpp | 662 unique_ptr<AidlInterface> Parse() { in Parse() function in android::aidl::cpp::ASTTest 713 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 720 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 727 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 734 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 741 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 748 unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 780 return CppOptions::Parse(argc, cmdline); in GetOptions() 786 const unique_ptr<AidlInterface> interface = Parse(); in TEST_F() 793 const unique_ptr<AidlInterface> interface = Parse(); in TEST_F() [all …]
|
D | options.h | 42 static std::unique_ptr<JavaOptions> Parse(int argc, const char* const* argv); 77 static std::unique_ptr<CppOptions> Parse(int argc, const char* const* argv);
|
D | main_cpp.cpp | 30 std::unique_ptr<CppOptions> options = CppOptions::Parse(argc, argv); in main()
|
D | main_java.cpp | 30 std::unique_ptr<JavaOptions> options = JavaOptions::Parse(argc, argv); in main()
|
D | options.cpp | 64 unique_ptr<JavaOptions> JavaOptions::Parse(int argc, const char* const* argv) { in Parse() function in android::aidl::JavaOptions 201 unique_ptr<CppOptions> CppOptions::Parse(int argc, const char* const* argv) { in Parse() function in android::aidl::CppOptions
|
D | options_unittest.cpp | 77 unique_ptr<T> options(T::Parse(argc, command)); in GetOptions()
|
/system/connectivity/shill/ |
D | arp_packet_unittest.cc | 105 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 116 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 127 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 138 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 149 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 161 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 176 EXPECT_FALSE(packet_.Parse(arp_bytes)); in TEST_F() 185 EXPECT_TRUE(packet_.Parse(arp_bytes)); in TEST_F() 194 EXPECT_TRUE(packet_.Parse(arp_bytes)); in TEST_F() 203 EXPECT_TRUE(packet_.Parse(arp_bytes)); in TEST_F() [all …]
|
D | arp_packet.h | 36 bool Parse(const ByteString& packet);
|
D | arp_client.cc | 135 if (!packet->Parse(payload)) { in ReceivePacket()
|
D | arp_packet.cc | 67 bool ArpPacket::Parse(const ByteString& packet) { in Parse() function in shill::ArpPacket
|
/system/extras/tests/sdcard/ |
D | plot_sdcard.py | 97 def Parse(self, line): member in Metadata 122 def Parse(filename): function 143 metadata.Parse(line) 266 (metadata, data) = Parse('/tmp/sdcard-scalability.txt') 317 (metadata, data) = Parse(args[0]) 321 (metadata, data) = Parse(args[0])
|
/system/tpm/trunks/generator/ |
D | generator_test.py | 193 types, constants, structs, defines, typemap = parser.Parse() 206 types, constants, structs, defines, typemap = parser.Parse() 235 commands = parser.Parse() 243 commands = parser.Parse()
|
D | generator.py | 973 def Parse(self): member in StructureParser 1863 def Parse(self): member in CommandParser 2084 types, constants, structs, defines, typemap = structure_parser.Parse() 2086 commands = command_parser.Parse()
|
/system/tools/aidl/tests/ |
D | end_to_end_tests.cpp | 105 auto options = CppOptions::Parse(argc, cmdline); in TEST_F()
|
/system/tpm/attestation/server/ |
D | pkcs11_key_store_test.cc | 210 parsed.Parse(attributes_in); in GetAttributeValue() 284 parsed.Parse(attributes); in GetValue()
|
/system/core/init/ |
D | readme.txt | 384 Parse an init config file, extending the current configuration.
|