/external/guava/guava-tests/test/com/google/common/base/ |
StopwatchTest.java | 98 ticker.advance(1); 101 ticker.advance(2); 104 ticker.advance(3); 109 ticker.advance(1); 112 ticker.advance(2); 116 ticker.advance(3); 121 ticker.advance(78); 125 ticker.advance(345); 130 ticker.advance(1); 132 ticker.advance(4) [all...] |
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
StopwatchTest.java | 97 ticker.advance(1); 100 ticker.advance(2); 103 ticker.advance(3); 108 ticker.advance(1); 111 ticker.advance(2); 115 ticker.advance(3); 120 ticker.advance(78); 124 ticker.advance(345); 129 ticker.advance(1); 131 ticker.advance(4) [all...] |
/dalvik/dx/tests/079-dex-local-variable-renumbering/ |
expected.txt | 49 0002: advance pc 51 0006: advance pc 53 000a: advance pc 55 000e: advance pc 57 0012: advance pc 59 0016: advance pc 61 001a: advance pc 63 001e: advance pc 65 0022: advance pc 67 0026: advance p [all...] |
/bootable/recovery/edify/ |
lexer.l | 32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \ 90 if ADVANCE; return IF; 91 then ADVANCE; return THEN; 92 else ADVANCE; return ELSE; 93 endif ADVANCE; return ENDIF; 96 ADVANCE; 101 \&\& ADVANCE; return AND; 102 \|\| ADVANCE; return OR; 103 == ADVANCE; return EQ; 104 != ADVANCE; return NE [all...] |
/dalvik/dx/tests/078-dex-local-variable-table/ |
expected.txt | 13 0001: advance pc 29 0002: advance pc 31 0007: advance pc 47 0001: advance pc 49 0003: advance pc 51 0005: advance pc 71 0001: advance pc 73 0003: advance pc 75 000b: advance pc 99 0001: advance p [all...] |
/art/compiler/dex/quick/ |
lazy_debug_frame_opcode_writer.cc | 36 for (auto advance : advances_) { 37 DCHECK_GE(advance.pos, pos); 38 // Copy old data up to the point when advance was issued. 41 old_opcodes.begin() + advance.pos); 42 pos = advance.pos; 44 LIR* next_lir = NEXT_LIR(advance.last_lir_insn); 45 // Insert the advance command with its final offset.
|
/art/runtime/interpreter/ |
interpreter_goto_table_impl.cc | 34 // Advance to the next instruction and updates interpreter state. 35 #define ADVANCE(_offset) \ 53 ADVANCE(_offset); \ 172 ADVANCE(0); 176 ADVANCE(1); 182 ADVANCE(1); 188 ADVANCE(2); 194 ADVANCE(3); 200 ADVANCE(1); 206 ADVANCE(2) [all...] |
/external/freetype/include/ |
ftadvanc.h | 5 /* Quick computation of advance widths (specification only). */ 42 * Quick retrieval of advance values 45 * Retrieve horizontal and vertical advance values without processing 49 * This section contains functions to quickly extract advance values 70 /* quick advance computation. */ 73 /* or light-hinted can have their advance width computed very */ 89 /* Retrieve the advance value of a given glyph outline in an */ 101 /* padvance :: The advance value. If scaling is performed (based on */ 102 /* the value of `load_flags'), the advance value is in */ 106 /* vertical advance corresponding to a vertical layout. * [all...] |
/external/pdfium/third_party/freetype/include/ |
ftadvanc.h | 5 /* Quick computation of advance widths (specification only). */ 42 * Quick retrieval of advance values 45 * Retrieve horizontal and vertical advance values without processing 49 * This section contains functions to quickly extract advance values 70 /* quick advance computation. */ 73 /* or light-hinted can have their advance width computed very */ 89 /* Retrieve the advance value of a given glyph outline in an */ 101 /* padvance :: The advance value. If scaling is performed (based on */ 102 /* the value of `load_flags'), the advance value is in */ 106 /* vertical advance corresponding to a vertical layout. * [all...] |
/external/skia/src/effects/ |
Sk1DPathEffect.cpp | 34 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, 37 if (advance <= 0 || path.isEmpty()) { 38 SkDEBUGF(("SkPath1DPathEffect can't use advance <= 0\n")); 47 if (phase > advance) { 48 phase = SkScalarMod(phase, advance); 51 if (phase > advance) { 52 phase = SkScalarMod(phase, advance); 54 phase = advance - phase; 56 // now catch the edge case where phase == advance (within epsilon) 57 if (phase >= advance) { 155 SkScalar advance = buffer.readScalar(); local [all...] |
/external/tcpdump/ |
print-lwres.c | 221 int advance; local 226 advance = lwres_printname(l, p + 2); 227 if (advance < 0) 229 return 2 + advance; 304 int advance; local 391 advance = lwres_printname(l, s); 392 if (advance < 0) 394 s += advance; 408 advance = lwres_printaddr(&gnba->addr); 409 if (advance < 0 [all...] |
print-ip6.c | 85 register int advance; local 143 advance = sizeof(struct ip6_hdr); 145 while (cp < ndo->ndo_snapend && advance > 0) { 146 cp += advance; 147 len -= advance; 158 advance = hbhopt_print(cp); 162 advance = dstopt_print(cp); 166 advance = frag6_print(cp, (const u_char *)ip6); 167 if (ndo->ndo_snapend <= cp + advance) 176 * XXX - we don't use "advance"; the curren [all...] |
/frameworks/minikin/libs/minikin/ |
Measurement.cpp | 33 float advance = 0.0f; local 39 advance += charAdvance; 64 advance -= clusterWidth * numGraphemeClustersAfter / numGraphemeClusters; 67 return advance; 77 * measured caret comes closest to the provided advance param, and which is on a grapheme 84 float advance) { 97 if (x > advance) { 106 // "getRunAdvance(layout, buf, start, count, i) - advance" but more efficient 109 + xSearchStart - advance;
|
/external/pdfium/third_party/freetype/src/cid/ |
cidgload.c | 177 metrics.advance = FIXED_TO_INT( decoder->builder.advance.x ); 178 metrics.advance_v = FIXED_TO_INT( decoder->builder.advance.y ); 184 decoder->builder.advance.x = INT_TO_FIXED( metrics.advance ); 185 decoder->builder.advance.y = INT_TO_FIXED( metrics.advance_v ); 203 /********** COMPUTE THE MAXIMUM ADVANCE WIDTH *********/ 206 /********** the maximum advance width of the font. It *********/ 248 /* the advance width */ 257 *max_advance = FIXED_TO_INT( decoder.builder.advance.x ) 360 FT_Vector advance; local [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
advance_fwd.hpp | 21 BOOST_MPL_AUX_COMMON_NAME_WKND(advance) 24 template< typename Iterator, typename N > struct advance;
|
/packages/apps/Email/tests/src/com/android/email/ |
MockClock.java | 31 public void advance() { method in class:MockClock 35 public void advance(long milliseconds) { method in class:MockClock
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/ |
MockClock.java | 20 /** Current time. Only updated with advance(). */ 42 public void advance() { method in class:MockClock
|
/external/google-breakpad/src/common/ |
dwarf_line_to_module.h | 73 // Advance Line by 14 to 15 75 // Special opcode 48: advance Address by 3 to 0x3 and Line by 1 to 16 76 // Special opcode 119: advance Address by 8 to 0xb and Line by 2 to 18 77 // Advance PC by 2 to 0xd 81 // Advance Line by 14 to 15 83 // Special opcode 48: advance Address by 3 to 0x3 and Line by 1 to 16 84 // Special opcode 119: advance Address by 8 to 0xb and Line by 2 to 18 85 // Advance PC by 2 to 0xd 89 // Advance Line by 19 to 20 91 // Special opcode 48: advance Address by 3 to 0x3 and Line by 1 to 2 [all...] |
/external/guava/guava/src/com/google/common/io/ |
MultiReader.java | 39 advance(); method 45 private void advance() throws IOException { method in class:MultiReader 58 advance(); method 72 advance(); method
|
/frameworks/base/graphics/java/android/graphics/ |
PathDashPathEffect.java | 38 * @param advance spacing between each stamp of shape 42 public PathDashPathEffect(Path shape, float advance, float phase, 44 native_instance = nativeCreate(shape.ni(), advance, phase, 48 private static native long nativeCreate(long native_path, float advance,
|
/external/harfbuzz_ng/src/ |
hb-ot-hmtx-table.hh | 47 USHORT advance; /* Advance width/height. */ member in struct:OT::LongMetric 68 LongMetric longMetric[VAR]; /* Paired advance width and leading 76 SHORT leadingBearingX[VAR]; /* Here the advance is assumed 77 * to be the same as the advance
|
/external/icu/icu4c/source/test/letest/ |
SimpleFontInstance.cpp | 59 void SimpleFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const 63 advance.fX = xUnitsToPoints(2048); 65 advance.fX = 0; 69 advance.fX = xUnitsToPoints(2048); 72 advance.fY = 0;
|
/external/icu/icu4c/source/test/perf/leperf/ |
SimpleFontInstance.cpp | 54 void SimpleFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const 58 advance.fX = xUnitsToPoints(2048); 60 advance.fX = 0; 63 advance.fX = xUnitsToPoints(2048); 66 advance.fY = 0;
|
/external/skia/include/effects/ |
Sk1DPathEffect.h | 54 @param advance The space between instances of path 55 @param phase distance (mod advance) along path for its initial position 59 static SkPath1DPathEffect* Create(const SkPath& path, SkScalar advance, SkScalar phase, 61 return SkNEW_ARGS(SkPath1DPathEffect, (path, advance, phase, style)); 71 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
|
/external/v8/src/ |
lithium-inl.h | 51 void TempIterator::Advance() { 73 void InputIterator::Advance() { 106 void UseIterator::Advance() { 107 input_iterator_.Done() ? env_iterator_.Advance() : input_iterator_.Advance();
|