/external/webkit/LayoutTests/storage/domstorage/events/resources/ |
eventTestHarness.js | 29 // When we're done testing LocalStorage, this is run. 41 // When we're done testing with SessionStorage, this is run. 49 // First run the test with SessionStorage.
|
/external/webkit/WebCore/platform/graphics/mac/ |
FontComplexTextMac.cpp | 38 FloatRect Font::selectionRectForComplexText(const TextRun& run, const IntPoint& point, int h, 41 ComplexTextController controller(this, run); 48 if (run.rtl()) { 56 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, 63 ComplexTextController controller(this, run); 68 // We couldn't generate any glyphs for the run. Give up. 74 if (run.rtl()) { 83 drawGlyphBuffer(context, glyphBuffer, run, startPoint); 86 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts) const 88 ComplexTextController controller(this, run, true, fallbackFonts) [all...] |
/external/webkit/WebKit/gtk/po/ |
README | 6 not get to run the usual make commands in the po directory. 9 run `make webkit.pot-update'. To update the .po files using the new 10 .pot file run `make update-po'. This will also build the .mo files.
|
/external/webkit/WebKitTools/CodeCoverage/ |
README | 13 WebKitTools/Scripts/run-webkit-tests 14 WebKitTools/Scripts/run-javascriptcore-tests GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES EXTRA_LINK=" -ftest-coverage -fprofile-arcs" OTHER_CFLAGS=" -MD " OTHER_LDFLAGS=" -ftest-coverage -fprofile-arcs -framework AppKit" 18 WebKitTools/CodeCoverage/run-generate-coverage-data <RUN_ID> ../coverage-results/
|
/frameworks/base/test-runner/src/junit/textui/ |
TestRunner.java | 10 * A command line based tool to run tests. 16 * will be invoked and the returned test is run. Otherwise all 17 * the methods starting with "test" having no arguments are run. 56 static public void run(Class testClass) { method in class:TestRunner 57 run(new TestSuite(testClass)); method 62 * This method can be used to start a test run 66 * test.textui.TestRunner.run(suite()); 70 static public TestResult run(Test test) { method in class:TestRunner 102 * Creates the TestResult to be used for the test run. 116 suite.run(result) [all...] |
/external/elfutils/tests/ |
ChangeLog | 20 * run-get-files.sh: Adjust expected result. 21 * run-get-lines.sh: Likewise. 22 * Makefile.am: Run get-lines test. Don't run get-aranges and 27 * run-show-abbrev.sh: Adjust expected output. 33 * run-show-die-info.sh: Adjust expected output.
|
/external/webkit/WebCore/platform/graphics/qt/ |
FontQt.cpp | 69 void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, int from, int to) const 72 to = run.length(); 100 String sanitized = Font::normalizeSpaces(String(run.characters(), run.length())); 109 if (from > 0 || to < run.length()) { 111 QTextLine line = setupLayout(&layout, run); 154 int flags = run.rtl() ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight; 160 p->drawText(pt, string, flags, run.padding()); 169 p->drawText(pt, string, flags, run.padding()); 172 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>*) cons [all...] |
/dalvik/dx/src/junit/extensions/ |
RepeatedTest.java | 21 public void run(TestResult result) { method in class:RepeatedTest 25 super.run(result);
|
/dalvik/libcore/junit/src/main/java/junit/extensions/ |
RepeatedTest.java | 21 public void run(TestResult result) { method in class:RepeatedTest 25 super.run(result);
|
/dalvik/tests/003-omnibus-opcodes/src/ |
Monitor.java | 21 public static void run() { method in class:Monitor 22 System.out.println("Monitor.run");
|
/dalvik/tests/050-sync-test/ |
expected.txt | 31 SleepyThread.run starting 32 SleepyThread.run starting
|
/external/icu4c/tools/genrb/ |
rle.h | 26 * Construct a string representing a byte array. Use run-length encoding. 32 * Since an encoded run occupies 3 bytes, we only encode runs of 4 or 34 * If we encounter a run where n == ESCAPE_BYTE, we represent this as: 44 * Construct a string representing a char array. Use run-length encoding. 49 * Since an encoded run occupies 3 characters, we only encode runs of 4 or 51 * If we encounter a run where n == ESCAPE, we represent this as: 60 * Construct an array of bytes from a run-length encoded string. 65 * Construct an array of shorts from a run-length encoded string.
|
/external/junit/src/junit/extensions/ |
RepeatedTest.java | 22 public void run(TestResult result) { method in class:RepeatedTest 26 super.run(result);
|
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
vlc_encode.h | 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
|
vlc_encode.cpp | 142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream); 143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream); 144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream); 145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream); 154 Int PutCoeff_Inter_RVLC(Int run, Int level, BitstreamEncVideo *bitstream); 155 Int PutCoeff_Inter_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream); 156 Int PutCoeff_Intra_RVLC(Int run, Int level, BitstreamEncVideo *bitstream); 157 Int PutCoeff_Intra_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream); 159 Int PutRunCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream); 160 Int PutRunCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) 1437 Int run; local 1510 Int run; local 1579 Int run; local 1794 Int run, idx; local [all...] |
/external/webkit/WebCore/manual-tests/ |
paste-crash.html | 3 <p>To run the test:</p> 16 <p>To run the test:</p>
|
timeout-test.html | 6 To run this test, both timeout-test.html and timeout-test.php must be served over http.<br> 10 <input type="submit" value="Run Test">
|
/external/webkit/WebCore/platform/graphics/gtk/ |
FontGtk.cpp | 138 static void setPangoAttributes(const Font* font, const TextRun& run, PangoLayout* layout) 157 PangoDirection direction = run.rtl() ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR; 166 if (!run.spacingDisabled()) { 184 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const 191 setPangoAttributes(this, run, layout); 193 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length()); 200 if (to - from != run.length()) { 201 // Clip the region of the run to be rendere [all...] |
/ndk/build/gmsl/ |
README | 17 3. To run the GMSL test suite have 23 And then run
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
TimerTaskTest.java | 43 public void run() { method in class:TimerTaskTest.TimerTestTask 106 assertTrue("TimerTask should not have run yet", testTask.cancel()); 109 // Ensure cancelling a task which has already run returns true 120 "TimerTask.cancel() should return false if task has run", 127 // Ensure cancelling a repeated execution task which has never run 131 t.schedule(testTask, 500, 500); // should never run 133 "TimerTask.cancel() should return true if sheduled for repeated execution even if not run", 137 // Ensure cancelling a repeated execution task which HAS run returns 149 "TimerTask.cancel() should return true if sheduled for repeated execution and run", 156 t.schedule(testTask, 5000); // Should never run [all...] |
/external/icu4c/layoutex/ |
playout.cpp | 223 pl_getVisualRunFont(const pl_visualRun *run) 225 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; 235 pl_getVisualRunDirection(const pl_visualRun *run) 237 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; 247 pl_getVisualRunGlyphCount(const pl_visualRun *run) 249 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; 259 pl_getVisualRunGlyphs(const pl_visualRun *run) 261 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; 271 pl_getVisualRunPositions(const pl_visualRun *run) 273 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; [all...] |
/external/opencore/engines/player/src/ |
pv_player_datapath.cpp | 291 void PVPlayerDatapath::Run() 300 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Processing PREPARE_INIT case for %s", iSourceTrackInfo->getTrackMimeType().get_cstr())); 304 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Calling Init() on dec node")); 313 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVPlayerDatapath::Run() Init on iDecNode did a leave or failed")); 320 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Calling Init() on sink node")); 329 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVPlayerDatapath::Run() Init on iSinkNode did a leave")); 339 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Processing PREPARE_REQPORT case for %s", iSourceTrackInfo->getTrackMimeType().get_cstr())); 343 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Calling RequestPort() on source node")); 354 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVPlayerDatapath::Run() RequestPort on iSourceNode did a leave or failed")); 362 PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "PVPlayerDatapath::Run() Calling RequestPort() on dec node(input)")) [all...] |
/cts/tools/dx-tests/src/dxc/junit/opcodes/dmul/ |
Test_dmul.java | 31 assertEquals(8.478000000000002d, t.run(2.7d, 3.14d)); 39 assertEquals(-0d, t.run(0, -3.14d)); 47 assertEquals(8.478000000000002d, t.run(-3.14d, -2.7d)); 55 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN)); 63 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY, 0)); 71 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY, 81 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY, 90 assertEquals(-0d, t.run(+0d, -0d)); 98 assertEquals(+0d, t.run(-0d, -0d)); 106 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.MAX_VALUE [all...] |
/cts/tools/dx-tests/src/dxc/junit/opcodes/fmul/ |
Test_fmul.java | 30 assertEquals(8.478001f, t.run(2.7f, 3.14f)); 38 assertEquals(-0f, t.run(0, -3.14f)); 46 assertEquals(8.478001f, t.run(-3.14f, -2.7f)); 54 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN)); 62 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY, 0)); 70 assertEquals(Float.NEGATIVE_INFINITY, t.run(Float.POSITIVE_INFINITY, 80 assertEquals(Float.NEGATIVE_INFINITY, t.run(Float.POSITIVE_INFINITY, 89 assertEquals(-0f, t.run(+0f, -0f)); 97 assertEquals(+0f, t.run(-0f, -0f)); 105 assertEquals(Float.POSITIVE_INFINITY, t.run(Float.MAX_VALUE [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/double_to_float/ |
Test_double_to_float.java | 30 assertEquals(2.71f, t.run(2.71d)); 38 assertEquals(1f, t.run(1d)); 46 assertEquals(-1f, t.run(-1d)); 56 t.run(12345l); 66 assertEquals(Float.POSITIVE_INFINITY, t.run(Double.MAX_VALUE)); 74 assertEquals(0f, t.run(Double.MIN_VALUE)); 82 assertEquals(-0f, t.run(-0d)); 90 assertTrue(Float.isNaN(t.run(Double.NaN))); 98 assertTrue(Float.isInfinite(t.run(Double.POSITIVE_INFINITY))); 106 assertTrue(Float.isInfinite(t.run(Double.NEGATIVE_INFINITY))) [all...] |