/cts/tools/signature-tools/test/signature/converter/util/ |
AbstractTestSourceConverter.java | 29 public IApi convert(Set<CompilationUnit> units) throws IOException { 30 return convert(Visibility.PROTECTED, units); 32 public IApi convert(CompilationUnit... units) throws IOException { 33 return convert(Visibility.PROTECTED, new HashSet<CompilationUnit>(Arrays.asList(units))); 35 public IApi convert(Visibility visibility, CompilationUnit... units) throws IOException { 36 return convert(visibility, new HashSet<CompilationUnit>(Arrays.asList(units)));
|
ITestSourceConverter.java | 26 IApi convert(Set<CompilationUnit> units) throws IOException; 27 IApi convert(CompilationUnit... units) throws IOException; 28 IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException; 29 IApi convert(Visibility visibility, CompilationUnit... units) throws IOException;
|
AbstractConvertTest.java | 43 public IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException { 44 return converter.convert(visibility, units);
|
/dalvik/dx/tests/096-dex-giant-catch/ |
info.txt | 2 very long catch ranges (that cover >= 65536 code units) get emitted
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
FloatControl.java | 54 private String units; field in class:FloatControl 68 float initialValue, String units, String minLabel, String midLabel, 77 this.units = units; 84 float initialValue, String units) { 86 units, "", "", ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ 110 return this.units; 138 return getType() + " with current value: "+ value + " " + units //$NON-NLS-1$ //$NON-NLS-2$
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
CharacterData.java | 24 * the DOM are represented in UTF-16, i.e. as a sequence of 16-bit units. In 25 * the following, the term 16-bit units is used whenever necessary to 26 * indicate that indexing on CharacterData is done in 16-bit units. 60 * The number of 16-bit units that are available through <code>data</code> 69 * @param count The number of 16-bit units to extract. 72 * units to the end of the data are returned. 75 * negative or greater than the number of 16-bit units in 102 * negative or greater than the number of 16-bit units in 111 * Remove a range of 16-bit units from the node. Upon success, 114 * @param count The number of 16-bit units to delete. If the sum of [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
IItem.java | 52 int COVERAGE_BLOCK_COUNT = 0; // in count units 53 int COVERAGE_LINE_COUNT = 1; // in count units 54 int COVERAGE_BLOCK_INSTR = 2; // in instr units 63 int TOTAL_BLOCK_COUNT = 6; // in count units 64 int TOTAL_LINE_COUNT = 7; // in count units 65 int TOTAL_BLOCK_INSTR = 8; // in instr units 66 //int TOTAL_LINE_INSTR = 9; // in instr units
|
/external/freetype/include/freetype/ |
ftpfr.h | 74 * in metrics units to device sub-pixels. This is equivalent to 104 * The distance is expressed in metrics units, unlike the result of 122 * units. This is unlike @FT_Get_Kerning with the @FT_KERNING_UNSCALED 123 * mode, which always returns distances converted to outline units. 141 * Return a given glyph advance, expressed in original metrics units, 150 * aadvance :: The glyph advance in metrics units.
|
ftadvanc.h | 86 /* units. */ 97 /* padvance :: The advance value, in either font units or 16.16 */ 131 /* units. */ 144 /* padvance :: The advances, in either font units or 16.16 format. */
|
fttrigon.h | 61 * The angle pi expressed in @FT_Angle units. 73 * The angle 2*pi expressed in @FT_Angle units. 85 * The angle pi/2 expressed in @FT_Angle units. 97 * The angle pi/4 expressed in @FT_Angle units. 283 * The vector length, expressed in the same units that the original
|
/external/icu4c/layout/ |
LEFontInstance.cpp | 115 void LEFontInstance::unitsToPoints(LEPoint &units, LEPoint &points) const 117 points.fX = xUnitsToPoints(units.fX); 118 points.fY = yUnitsToPoints(units.fY); 131 void LEFontInstance::pixelsToUnits(LEPoint &pixels, LEPoint &units) const 133 units.fX = xPixelsToUnits(pixels.fX); 134 units.fY = yPixelsToUnits(pixels.fY);
|
LEFontInstance.h | 62 * pixels and funits. (font design units) 187 * This method returns the number of design units in 190 * @return the number of design units pre EM. 317 * This method converts font design units in the 320 * @param xUnits - design units in the X direction 329 * This method converts font design units in the 332 * @param yUnits - design units in the Y direction 341 * This method converts font design units to points. 343 * @param units - X and Y design units [all...] |
/external/webkit/WebKitTools/mangleme/ |
tags.h | 31 { "EMBED", "SRC", "HEIGHT", "WIDTH", "UNITS", "NAME", "PALETTE", "onLoad", "STYLE", 0 }, 32 { "FIG", "SRC", "ALIGN", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 }, 43 { "IMG", "ALIGN", "ALT", "SRC", "BORDER", "DYNSRC", "HEIGHT", "HSPACE", "ISMAP", "LOOP", "LOWSRC", "START", "UNITS", "USEMAP", "WIDTH", "VSPACE", "onLoad", "STYLE", 0 }, 55 { "OVERLAY", "SRC", "X", "Y", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 }, 59 { "SELECT", "NAME", "SIZE", "MULTIPLE", "WIDTH", "HEIGHT", "UNITS", "onLoad", "STYLE", 0 }, 64 { "TABLE", "ALIGN", "WIDTH", "BORDER", "CELLPADDING", "CELLSPACING", "BGCOLOR", "VALIGN", "COLSPEC", "UNITS", "DP", "onLoad", "STYLE", 0 },
|
/dalvik/vm/mterp/c/ |
OP_FILL_ARRAY_DATA.c | 11 arrayData = pc + offset; // offset in 16-bit units
|
OP_PACKED_SWITCH.c | 10 switchData = pc + offset; // offset in 16-bit units
|
OP_SPARSE_SWITCH.c | 10 switchData = pc + offset; // offset in 16-bit units
|
/cts/tools/signature-tools/test/signature/converter/dex/ |
DexTestConverter.java | 35 public IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException { 39 for (CompilationUnit unit : units) {
|
/external/icu4c/test/intltest/ |
utxttest.h | 52 int32_t nativeStart, // Range to be replaced, in UText native units. 54 int32_t u16Start, // Range to be replaced, in UTF-16 units
|
sfwdchit.h | 42 * no more code units to return, returns DONE. 55 * Returns FALSE if there are no more code units or code points
|
/external/skia/src/svg/ |
SkSVGGradient.h | 32 void translateGradientUnits(SkString& units);
|
/external/tcpdump/ |
igrp.h | 26 u_int8_t igr_bw[3]; /* bandwidth in units of 1 kb/s */
|
/external/gtest/test/ |
gtest-param-test_test.h | 45 // in separate translation units. 49 // translation units.
|
/sdk/traceview/src/com/android/traceview/ |
TraceUnits.java | 52 String units = label(); local 54 return String.format("%s: %s", units, num);
|
/external/webkit/WebCore/css/ |
CSSParser.h | 272 // defines units allowed for a certain property, used in parseUnit 273 enum Units { 286 friend inline Units operator|(Units a, Units b) 288 return static_cast<Units>(static_cast<unsigned>(a) | static_cast<unsigned>(b)); 291 static bool validUnit(CSSParserValue*, Units, bool strict);
|
/external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/include/ |
tsc_capability.h | 126 uint32 iTcsIn_H263_sqcifMPI; // Units 1/30 second 127 uint32 iTcsIn_H263_qcifMPI; // Units 1/30 second 128 uint32 iTcsIn_H263_cifMPI; // Units 1/30 second 129 uint32 iTcsIn_H263_4cifMPI; // Units 1/30 second 130 uint32 iTcsIn_H263_16cifMPI; // Units 1/30 second
|