/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ |
D | command_line_interface_unittest.cc | 102 void Run(const string& command); 293 void CommandLineInterfaceTest::Run(const string& command) { in Run() function in google::protobuf::compiler::__anon182977270111::CommandLineInterfaceTest 356 return_code_ = cli_.Run(args.size(), argv.get()); in Run() 507 Run("protocol_compiler --test_out=$tmpdir " in Run() 521 Run("protocol_compiler --plug_out=$tmpdir " in Run() 535 Run("protocol_compiler --test_out=$tmpdir --plug_out=$tmpdir " in Run() 553 Run("protocol_compiler --test_out=$tmpdir --plug_out=$tmpdir " in Run() 583 Run("protocol_compiler --test_out=$tmpdir --plug_out=$tmpdir " in Run() 606 Run("protocol_compiler --test_out=$tmpdir/out --plug_out=$tmpdir/plugout " in Run() 621 Run("protocol_compiler --test_out=TestParameter:$tmpdir " in Run() [all …]
|
D | main.cc | 97 return cli.Run(argc, argv); in main()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/ |
D | common_unittest.cc | 206 closure->Run(); in TEST_F() 214 closure->Run(); in TEST_F() 221 closure->Run(); in TEST_F() 229 closure->Run(); in TEST_F() 236 closure->Run(); in TEST_F() 244 closure->Run(); in TEST_F() 253 closure->Run(); in TEST_F() 264 closure->Run(); in TEST_F() 274 closure->Run(); in TEST_F() 277 closure->Run(); in TEST_F() [all …]
|
D | callback.h | 75 virtual void Run() = 0; 87 virtual R Run() = 0; 99 virtual R Run(A1) = 0; 111 virtual R Run(A1,A2) = 0; 127 void Run() { in Run() function 147 void Run() { in Run() function 170 void Run() { in Run() function 193 void Run() { in Run() function 217 void Run() { in Run() function 241 void Run() { in Run() function [all …]
|
D | once_unittest.cc | 119 reinterpret_cast<TestThread*>(arg)->Run(); in Start() 123 void Run() { in Start() function in google::protobuf::__anon2aad2dec0111::OnceInitTest::TestThread 124 callback_->Run(); in Start()
|
D | once.cc | 83 closure->Run(); in GoogleOnceInitImpl()
|
/frameworks/minikin/include/minikin/ |
D | MeasuredText.h | 33 class Run { 35 Run(const Range& range) : mRange(range) {} in Run() function 36 virtual ~Run() {} in ~Run() 84 class StyleRun : public Run { 87 : Run(range), mPaint(std::move(paint)), mIsRtl(isRtl) {} in StyleRun() 118 class ReplacementRun : public Run { 121 : Run(range), mWidth(width), mLocaleListId(localeListId) {} in ReplacementRun() 183 std::vector<std::unique_ptr<Run>> runs; 212 MeasuredText(const U16StringPiece& textBuf, std::vector<std::unique_ptr<Run>>&& runs, in MeasuredText() 247 std::vector<std::unique_ptr<Run>> mRuns;
|
D | FontCollection.h | 38 struct Run { struct 45 std::vector<Run> itemize(U16StringPiece text, FontStyle style, uint32_t localeListId, argument 49 std::vector<Run> itemize(U16StringPiece text, FontStyle style, uint32_t localeListId, in itemize()
|
/frameworks/base/media/java/android/media/ |
D | SubtitleTrack.java | 47 final protected LongSparseArray<Run> mRunsByEndTime = new LongSparseArray<Run>(); 49 final protected LongSparseArray<Run> mRunsByID = new LongSparseArray<Run>(); 171 Run run = mRunsByEndTime.valueAt(ix); in removeRunsByEndTimeIndex() 181 Run nextRun = run.mNextRunAtEndTimeMs; in removeRunsByEndTimeIndex() 311 Run run = mRunsByID.get(cue.mRunID); in addCue() 313 run = new Run(); in addCue() 597 Run run = mRunsByID.get(runID); 607 Run run = mRunsByID.get(runID); 624 private static class Run { 626 public Run mNextRunAtEndTimeMs; [all …]
|
/frameworks/layoutlib/bridge/src/android/graphics/text/ |
D | MeasuredText_Builder_Delegate.java | 28 import android.graphics.text.LineBreaker_Delegate.Run; 47 protected final ArrayList<Run> mRuns = new ArrayList<>(); 114 private static class StyleRun extends Run { 132 private static class ReplacementRun extends Run {
|
D | MeasuredText_Delegate.java | 24 import android.graphics.text.LineBreaker_Delegate.Run; 89 for (Run run: builder.mRuns) { in computeRuns()
|
/frameworks/base/cmds/incidentd/ |
D | README.md | 11 Run the test on a device manually 19 Run the test via AndroidTest.xml
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/ |
D | message_differencer_unittest.cc | 1968 string Run(const Message& msg1, const Message& msg2) { in Run() function in google::protobuf::__anon99ff99d50111::ComparisonTest 1988 string Run() { in Run() function in google::protobuf::__anon99ff99d50111::ComparisonTest 1989 return Run(proto1_, proto2_); in Run() 1993 return Run(orderings_proto1_, orderings_proto2_); in RunOrder() 1997 return Run(proto1ex_, proto2ex_); in RunEx() 2001 return Run(proto1diff_, proto2diff_); in RunDiff() 2005 return Run(empty1_, empty2_); in RunUn() 2061 Run()); in TEST_F() 2075 Run()); in TEST_F() 2090 Run()); in TEST_F() [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/python/ |
D | python_plugin_unittest.cc | 116 EXPECT_EQ(0, cli.Run(5, argv)); in TEST() 147 ASSERT_EQ(0, cli.Run(5, argv)); in TEST()
|
/frameworks/minikin/libs/minikin/ |
D | LineBreakerUtil.h | 66 const Run& run, // A run of this region. in populateHyphenationPoints() 150 void updateLocaleIfNecessary(const Run& run) { in updateLocaleIfNecessary()
|
/frameworks/native/opengl/tests/gl_perfapp/ |
D | Android.bp | 9 // Run on Eclair
|
/frameworks/opt/gamesdk/src/tuningfork/ |
D | uploadthread.h | 47 void Run();
|
D | uploadthread.cpp | 85 thread_ = std::make_unique<std::thread>([&] { return Run(); }); in Start() 98 void UploadThread::Run() { in Run() function in tuningfork::UploadThread
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ruby/ |
D | ruby_generator_unittest.cc | 89 EXPECT_EQ(0, cli.Run(4, argv)); in TEST()
|
/frameworks/base/libs/hwui/tests/macrobench/ |
D | TestSceneRunner.cpp | 83 std::vector<BenchmarkReporter::Run> reports; in outputBenchmarkReport() 84 BenchmarkReporter::Run report; in outputBenchmarkReport()
|
/frameworks/opt/net/wifi/tests/wifitests/ |
D | runtests.sh | 15 Run just the specified test, and show the raw output.
|
/frameworks/native/services/nativeperms/ |
D | nativeperms.cpp | 86 messageLoop.Run(); in main()
|
/frameworks/minikin/tests/unittest/ |
D | LineBreakerTestHelper.h | 42 class ConstantRun : public Run { 46 : Run(range), in ConstantRun()
|
/frameworks/base/cmds/incident_helper/ |
D | README.md | 13 Run the test on a device
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/java/ |
D | java_plugin_unittest.cc | 121 EXPECT_EQ(0, cli.Run(5, argv)); in TEST()
|