HomeSort by relevance Sort by last modified time
    Searched defs:mappings (Results 1 - 18 of 18) sorted by null

  /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 + " )";
ParameterProjection.java 29 private Map<ITypeVariableDefinition, ITypeReference> mappings; field in class:ParameterProjection
32 Map<ITypeVariableDefinition, ITypeReference> mappings) {
34 this.mappings = mappings;
43 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 + " )";
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);
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);
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));
  /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.h 61 UCM_FLAGS_INITIAL, /* no mappings parsed yet */
62 UCM_FLAGS_EXPLICIT, /* .ucm file has mappings with | fallback indicators */
63 UCM_FLAGS_IMPLICIT, /* .ucm file has mappings without | fallback indicators, later wins */
68 UCMapping *mappings; member in struct:UCMTable
159 * Remove mappings with their move flag set from the base table
175 * Check the validity of mappings against a base table's states;
183 * Set the moveTarget!=NULL if it is possible to move mappings from the base.
186 * or when delta file mappings are subtracted from a base table.
191 * if(intersectBase) then mappings that exist in the base table but not in
195 * If intersectBase==2 for a DBCS extension table, then SBCS mappings ar
    [all...]
  /external/icu4c/tools/toolutil/
ucm.h 61 UCM_FLAGS_INITIAL, /* no mappings parsed yet */
62 UCM_FLAGS_EXPLICIT, /* .ucm file has mappings with | fallback indicators */
63 UCM_FLAGS_IMPLICIT, /* .ucm file has mappings without | fallback indicators, later wins */
68 UCMapping *mappings; member in struct:UCMTable
159 * Remove mappings with their move flag set from the base table
175 * Check the validity of mappings against a base table's states;
183 * Set the moveTarget!=NULL if it is possible to move mappings from the base.
186 * or when delta file mappings are subtracted from a base table.
191 * if(intersectBase) then mappings that exist in the base table but not in
195 * If intersectBase==2 for a DBCS extension table, then SBCS mappings ar
    [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/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);
  /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/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/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 905 ASN1Sequence mappings = (ASN1Sequence)pm; local
1087 ASN1Sequence mappings = pm; local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 1186 NamespaceMappings mappings = null; local
    [all...]

Completed in 512 milliseconds