HomeSort by relevance Sort by last modified time
    Searched refs:mappings (Results 1 - 25 of 49) sorted by null

1 2

  /cts/tools/signature-tools/src/signature/compare/model/subst/
MethodProjection.java 30 private Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:MethodProjection
33 Map<ITypeVariableDefinition, ITypeReference> mappings) {
34 super(original, mappings);
35 this.mappings = mappings;
41 .getReturnType(), mappings);
46 return "(" + SigMethod.toString(this) + " : " + mappings + " )";
ArrayTypeProjection.java 29 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ArrayTypeProjection
32 Map<ITypeVariableDefinition, ITypeReference> mappings) {
34 this.mappings = mappings;
39 .getComponentType(), mappings);
54 return "(" + SigArrayType.toString(this) + " : " + mappings + " )";
ClassReferenceProjection.java 30 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ClassReferenceProjection
33 Map<ITypeVariableDefinition, ITypeReference> mappings) {
35 this.mappings = mappings;
39 return new ClassProjection(original.getClassDefinition(), mappings);
54 return "(" + SigClassReference.toString(this) + " : " + mappings + " )";
WildcardTypeProjection.java 31 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:WildcardTypeProjection
34 Map<ITypeVariableDefinition, ITypeReference> mappings) {
36 this.mappings = mappings;
41 .getLowerBound(), mappings);
46 .getUpperBounds(), mappings);
ConstructorProjection.java 29 Map<ITypeVariableDefinition, ITypeReference> mappings) {
30 super(original, mappings);
ParameterProjection.java 29 private Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ParameterProjection
32 Map<ITypeVariableDefinition, ITypeReference> mappings) {
34 this.mappings = mappings;
43 mappings);
ExecutableMemberProjection.java 35 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ExecutableMemberProjection
38 Map<ITypeVariableDefinition, ITypeReference> mappings) {
40 this.mappings = mappings;
53 .getExceptions(), mappings);
67 result.add(new ParameterProjection(parameter, mappings));
ParameterizedTypeProjection.java 32 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ParameterizedTypeProjection
35 Map<ITypeVariableDefinition, ITypeReference> mappings) {
37 this.mappings = mappings;
45 return ViewpointAdapter.substitutedTypeReference(ownerType, mappings);
70 .getTypeArguments(), mappings);
ViewpointAdapter.java 65 Map<ITypeVariableDefinition, ITypeReference> mappings) {
68 mappings));
73 Map<ITypeVariableDefinition, ITypeReference> mappings) {
77 result.add(substitutedTypeReference(typeReference, mappings));
84 Map<ITypeVariableDefinition, ITypeReference> mappings) {
88 mappings);
92 return new ArrayTypeProjection((IArrayType) type, mappings);
95 mappings);
97 return new WildcardTypeProjection((IWildcardType) type, mappings);
100 ITypeReference subst = mappings.get(((ITypeVariableReference) type
    [all...]
  /system/extras/librank/
librank.c 42 struct mapping_info **mappings; member in struct:library_info
105 library->mappings = malloc(INIT_MAPPINGS * sizeof(struct mapping_info *));
106 if (!library->mappings) {
107 fprintf(stderr, "Couldn't allocate space for library mappings array: %s\n", strerror(errno));
123 if (library->mappings[i]->proc == proc)
124 return library->mappings[i];
128 library->mappings = realloc(library->mappings,
130 if (!library->mappings) {
131 fprintf(stderr, "Couldn't resize mappings array: %s\n", strerror(errno))
    [all...]
  /external/chromium/third_party/icu/source/tools/makeconv/
gencnvex.c 65 /* for stage3 compaction of <subchar1> |2 mappings */
290 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
292 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
299 UCMapping *mappings; local
304 mappings=table->mappings;
308 /* leave the map alone for the initial mappings with desired flags */
310 flag=mappings[map[i]].f;
318 flag=mappings[map[i]].f;
387 * - The mappings are sorted lexically. (Access is through the reverseMap.
414 UCMapping *mappings, *m; local
587 UCMapping *mappings, *m; local
711 UCMapping *mappings, *m; local
928 UCMapping *mappings, *m; local
    [all...]
  /external/icu4c/tools/makeconv/
gencnvex.c 65 /* for stage3 compaction of <subchar1> |2 mappings */
290 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
292 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
299 UCMapping *mappings; local
304 mappings=table->mappings;
308 /* leave the map alone for the initial mappings with desired flags */
310 flag=mappings[map[i]].f;
318 flag=mappings[map[i]].f;
387 * - The mappings are sorted lexically. (Access is through the reverseMap.
414 UCMapping *mappings, *m; local
587 UCMapping *mappings, *m; local
711 UCMapping *mappings, *m; local
928 UCMapping *mappings, *m; local
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
http_server_base.py 56 for mapping in self.mappings:
http_server.py 87 # Three mappings (one with SSL) for LayoutTests http tests
147 mappings = [{'port': self._port, 'docroot': self._root}]
154 mappings = [{'port': 8000, 'docroot': self._root},
159 mappings = self.VIRTUALCONFIG
160 for mapping in mappings:
211 self.mappings = mappings
apache_http_server.py 54 self.mappings = [{'port': 8000},
  /libcore/luni/src/main/java/org/apache/xml/serializer/
SerializationHandler.java 106 * @param mappings NamespaceMappings
108 public void setNamespaceMappings(NamespaceMappings mappings);
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
TableContentProvider.java 44 ArrayList<Mapping> mappings = mMappings; local
46 matcher.addURI(authority, path, mappings.size());
47 mappings.add(new Mapping(table, mimeSubtype, false));
50 matcher.addURI(authority, path + "/#", mappings.size());
51 mappings.add(new Mapping(table, mimeSubtype, true));
  /external/chromium/third_party/icu/source/tools/toolutil/
ucm.c 16 * This file reads a .ucm file, stores its mappings and sorts them.
17 * It implements handling of Unicode conversion mappings from .ucm files
22 * character sequence are handled to support m:n mappings.
73 m=table->mappings;
201 /* sorting by Unicode first sorts mappings directly */
209 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
215 table, table->mappings+l,
216 table, table->mappings+r, FALSE);
231 uprv_sortArray(t->mappings, t->mappingsLength, sizeof(UCMapping),
239 * if mappings are added, the reverseMap need not b
    [all...]
  /external/icu4c/tools/toolutil/
ucm.c 16 * This file reads a .ucm file, stores its mappings and sorts them.
17 * It implements handling of Unicode conversion mappings from .ucm files
22 * character sequence are handled to support m:n mappings.
73 m=table->mappings;
201 /* sorting by Unicode first sorts mappings directly */
209 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
215 table, table->mappings+l,
216 table, table->mappings+r, FALSE);
231 uprv_sortArray(t->mappings, t->mappingsLength, sizeof(UCMapping),
239 * if mappings are added, the reverseMap need not b
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProvider.java     [all...]
  /external/webkit/WebCore/
wscript 105 TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cxx']
  /external/chromium/net/base/
mime_util.cc 106 static const char* FindMimeType(const MimeInfo* mappings,
112 const char* extensions = mappings[i].extensions;
117 return mappings[i].mime_type;
  /external/chromium/third_party/icu/source/i18n/
zonemeta.cpp 215 * Convert a date string used by metazone mappings to UDate.
508 * Creating Olson tzid to metazone mappings from resource (3.8.1 and beyond)
527 // Read metazone mappings from metazoneInfo bundle
918 const UVector *mappings = getMetazoneMappings(tzid); local
919 if (mappings != NULL) {
920 for (int32_t i = 0; i < mappings->size(); i++) {
921 OlsonToMetaMappingEntry *mzm = (OlsonToMetaMappingEntry*)mappings->elementAt(i);
959 UVector *mappings = (UVector*)uhash_get(gMetaToOlson, mzidUChars); local
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 374 Map<String, Object> mappings = getDefaultValueMapping(dexClass); local
376 dexClass.getMethods(), mappings);
427 HashMap<String, Object> mappings = new HashMap<String, Object>(); local
441 mappings.put(defaultAttribute.getName(),
447 return mappings;
471 List<DexMethod> list, Map<String, Object> mappings) {
476 annotationfields.add(convertAnnotationField(dexMethod, mappings
    [all...]
  /external/icu4c/i18n/
zonemeta.cpp 112 * Convert a date string used by metazone mappings to UDate.
360 const UVector *mappings = getMetazoneMappings(tzid); local
361 if (mappings != NULL) {
362 for (int32_t i = 0; i < mappings->size(); i++) {
363 OlsonToMetaMappingEntry *mzm = (OlsonToMetaMappingEntry*)mappings->elementAt(i);

Completed in 458 milliseconds

1 2