Searched refs:mapper (Results 1 - 25 of 73) sorted by relevance

123

/external/libunwind/tests/
H A Drun-ptrace-mapper2 ./test-ptrace -c -n -t ./mapper $*
/external/ltp/testscripts/
H A Dltpdmmapper.sh22 Note: In order to run this test, you must turn on "device mapper"
25 files (libdevmapper and dmsetup). They are in the device-mapper
67 echo "0 10240 linear " $part1 "0" > ltp-dev-mapper-table1
68 echo "0 100000 linear " $part1 "0" > ltp-dev-mapper-table2
69 echo "0 100000 linear " $part2 "0" > ltp-dev-mapper-table3
70 echo "0 200000 striped 2 16 " $part1 "0" $part2 "0" > ltp-dev-mapper-table4
74 dmsetup create dm-test-1 ltp-dev-mapper-table1
75 dmsetup create dm-test-2 ltp-dev-mapper-table2
76 dmsetup create dm-test-3 ltp-dev-mapper-table3
77 dmsetup create dm-test-4 ltp-dev-mapper
[all...]
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
H A DDependencyRequestMapperTest.java104 DependencyRequestMapper mapper = DependencyRequestMapper.FOR_PROVIDER;
105 assertThat(mapper.getFrameworkClass(dependencyRequestForInstance()))
107 assertThat(mapper.getFrameworkClass(dependencyRequestForLazy()))
109 assertThat(mapper.getFrameworkClass(dependencyRequestForProvider()))
111 assertThat(mapper.getFrameworkClass(dependencyRequestForMembersInjector()))
116 DependencyRequestMapper mapper = DependencyRequestMapper.FOR_PRODUCER;
117 assertThat(mapper.getFrameworkClass(dependencyRequestForInstance()))
119 assertThat(mapper.getFrameworkClass(dependencyRequestForLazy()))
121 assertThat(mapper.getFrameworkClass(dependencyRequestForProvider()))
123 assertThat(mapper
[all...]
/external/icu/icu4c/source/test/letest/
H A DSimpleFontInstance.cpp99 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
101 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
106 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
108 return LEFontInstance::mapCharToGlyph(ch, mapper);
H A DSimpleFontInstance.h51 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.h100 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
104 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
/external/icu/icu4c/source/test/perf/leperf/
H A DSimpleFontInstance.cpp97 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
99 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
104 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
106 return LEFontInstance::mapCharToGlyph(ch, mapper);
H A DSimpleFontInstance.h55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
59 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.h105 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
109 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
/external/skia/src/core/
H A DSkBitmapProcState_matrix_template.h25 const SkBitmapProcStateAutoMapper mapper(s, x, y);
27 *xy++ = TileProc::Y(s, mapper.fixedY(), maxY);
28 fx = mapper.fractionalIntX();
85 const SkBitmapProcStateAutoMapper mapper(s, x, y);
87 SkFractionalInt fx = mapper.fractionalIntX();
88 SkFractionalInt fy = mapper.fractionalIntY();
H A DSkBitmapProcState_matrix.h59 const SkBitmapProcStateAutoMapper mapper(s, x, y);
60 const SkFixed fy = mapper.fixedY();
65 fx = mapper.fractionalIntX();
92 const SkBitmapProcStateAutoMapper mapper(s, x, y);
96 SkFixed fx = mapper.fixedX();
97 SkFixed fy = mapper.fixedY();
H A DSkBitmapProcState_shaderproc.h34 const SkBitmapProcStateAutoMapper mapper(s, x, y);
35 SkFixed fy = mapper.fixedY();
47 fx = mapper.fixedX();
H A DSkBitmapProcState.cpp355 const SkBitmapProcStateAutoMapper mapper(s, x, y);
363 yTemp = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height());
365 yTemp = mapper.intY();
387 const SkBitmapProcStateAutoMapper mapper(s, x, y);
393 iY2 = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height());
395 iY2 = mapper.intY();
446 const SkBitmapProcStateAutoMapper mapper(*this, 0, 0, &pt);
461 fFilterOneX = mapper.intX();
462 fFilterOneY = mapper.intY();
644 const SkBitmapProcStateAutoMapper mapper(
[all...]
/external/r8/src/test/java/com/android/tools/r8/naming/
H A DProguardMapReaderTest.java34 ClassNameMapper mapper = ProguardMapReader.mapperFromString(EXAMPLE_MAP_WITH_PACKAGE_INFO);
35 Assert.assertTrue(mapper.getObfuscatedToOriginalMapping().isEmpty());
/external/junit-params/src/main/java/junitparams/custom/
H A DFileParametersProvider.java29 DataMapper mapper = fileParameters.mapper().newInstance();
31 return mapper.map(reader);
/external/r8/src/main/java/com/android/tools/r8/
H A DReadMainDexList.java35 private String deobfuscateClassName(String name, ClassNameMapper mapper) { argument
36 if (mapper == null) {
39 return mapper.deobfuscateClassName(name);
59 final ClassNameMapper mapper =
66 .map(name -> deobfuscateClassName(name, mapper))
/external/junit-params/src/main/java/junitparams/
H A DFileParameters.java30 * The mapper which knows how to get the data from the external resource and
36 Class<? extends DataMapper> mapper() default IdentityMapper.class;
/external/parameter-framework/upstream/parameter/
H A DInstanceConfigurableElement.cpp79 bool CInstanceConfigurableElement::map(IMapper &mapper, std::string &strError) argument
85 if (bHasMappingData && !mapper.mapBegin(this, bKeepDiving, strError)) {
102 if (!pInstanceConfigurableChildElement->map(mapper, strError)) {
112 mapper.mapEnd();
/external/junit-params/src/test/java/junitparams/
H A DFileParamsTest.java25 @FileParameters(value = "src/test/resources/test.csv", mapper = PersonMapper.class)
44 @FileParameters(value = "classpath:with_header.csv", mapper = CsvWithHeaderMapper.class)
/external/skia/src/opts/
H A DSkBitmapProcState_matrix_neon.h39 const SkBitmapProcStateAutoMapper mapper(s, x, y);
41 *xy++ = TILEY_PROCF(mapper.fixedY(), maxY);
42 fx = mapper.fractionalIntX();
117 const SkBitmapProcStateAutoMapper mapper(s, x, y);
119 SkFractionalInt fx = mapper.fractionalIntX();
120 SkFractionalInt fy = mapper.fractionalIntY();
251 const SkBitmapProcStateAutoMapper mapper(s, x, y);
252 const SkFixed fy = mapper.fixedY();
257 fx = mapper.fractionalIntX();
309 const SkBitmapProcStateAutoMapper mapper(
[all...]
H A DSkBitmapProcState_opts_SSE2.cpp257 const SkBitmapProcStateAutoMapper mapper(s, x, y);
258 const SkFixed fy = mapper.fixedY();
263 SkFixed fx = mapper.fixedX();
374 const SkBitmapProcStateAutoMapper mapper(s, x, y);
376 *xy++ = SkClampMax(mapper.intY(), maxY);
377 SkFixed fx = mapper.fixedX();
485 const SkBitmapProcStateAutoMapper mapper(s, x, y);
489 SkFixed fx = mapper.fixedX();
490 SkFixed fy = mapper.fixedY();
558 const SkBitmapProcStateAutoMapper mapper(
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTrie2.java399 * @param mapper provides a function to remap values obtained from the Trie2.
402 public Iterator<Range> iterator(ValueMapper mapper) { argument
403 return new Trie2Iterator(mapper);
420 public Iterator<Range> iteratorForLeadSurrogate(char lead, ValueMapper mapper) { argument
421 return new Trie2Iterator(lead, mapper);
859 mapper = vm;
871 mapper = vm;
900 mappedVal = mapper.map(val);
909 if (mapper.map(val) != mappedVal) {
917 mappedVal = mapper
987 private ValueMapper mapper; field in class:Trie2.Trie2Iterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie2.java397 * @param mapper provides a function to remap values obtained from the Trie2.
400 public Iterator<Range> iterator(ValueMapper mapper) { argument
401 return new Trie2Iterator(mapper);
418 public Iterator<Range> iteratorForLeadSurrogate(char lead, ValueMapper mapper) { argument
419 return new Trie2Iterator(lead, mapper);
857 mapper = vm;
869 mapper = vm;
898 mappedVal = mapper.map(val);
907 if (mapper.map(val) != mappedVal) {
915 mappedVal = mapper
985 private ValueMapper mapper; field in class:Trie2.Trie2Iterator
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java65 * Creates an empty IProperties set with an optional property mapper.
67 * @param mapper [may be null]
70 public static IProperties create (final IMapper mapper) argument
72 return new PropertiesImpl (null, mapper);
77 * with an optional property mapper. Note that 'properties' content is
82 * @param mapper [may be null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper) argument
99 return new PropertiesImpl (map, mapper); // note: map is a defensive clone
109 * @return [never null; an empty property set with a null mapper is created
299 PropertiesImpl (final HashMap values, final IMapper mapper) argument
[all...]
/external/r8/src/test/java/com/android/tools/r8/optimize/
H A DR8DebugStrippingTest.java81 private ClassNameMapper mapper; field in class:R8DebugStrippingTest
91 mapper = ProguardMapReader.mapperFromFile(Paths.get(ROOT, EXAMPLE_MAP));
177 private String extractRangeIndex(String line, ClassNameMapper mapper) { argument
186 MemberNaming naming = mapper.getClassNaming(EXAMPLE_CLASS)
206 private MemberNaming selectRanges(String line, ClassNameMapper mapper) { argument
210 return mapper.getClassNaming(EXAMPLE_CLASS).lookup(entry.getValue());
228 String expected = extractRangeIndex(beforeLine, mapper);

Completed in 5172 milliseconds

123