HomeSort by relevance Sort by last modified time
    Searched defs:mappings (Results 1 - 25 of 33) 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 + " )";
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));
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 102 private final HashMap<String, Mapping> mappings = new HashMap<String, Mapping>(); field in class:InputManager
463 * Adds a new listener to receive events on the given mappings.
482 Mapping mapping = mappings.get(mappingName);
485 mappings.put(mappingName, mapping);
496 * <p>This will unregister the listener from any mappings that it
505 for (Mapping mapping : mappings.values()) {
516 * registered to the mappings will receive appropriate events.
524 Mapping mapping = mappings.get(mappingName);
527 mappings.put(mappingName, mapping);
556 return mappings.containsKey(mappingName);
    [all...]
FlyByCamera.java 56 private static String[] mappings = new String[]{ field in class:FlyByCamera
203 inputManager.addListener(this, mappings);
227 for (String s : mappings) {
  /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 138 * Convert a date string used by metazone mappings to UDate.
512 const UVector *mappings = getMetazoneMappings(tzid); local
513 if (mappings != NULL) {
514 for (int32_t i = 0; i < mappings->size(); i++) {
515 OlsonToMetaMappingEntry *mzm = (OlsonToMetaMappingEntry*)mappings->elementAt(i);
tznames_impl.cpp 1057 const UVector* mappings = ZoneMeta::getMetazoneMappings(tzID); local
1058 if (mappings == NULL) {
1068 for (int32_t i = 0; U_SUCCESS(status) && i < mappings->size(); i++) {
1070 OlsonToMetaMappingEntry *map = (OlsonToMetaMappingEntry *)mappings->elementAt(i);
    [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/libvorbis/lib/
vorbisenc.c 93 int mappings; member in struct:__anon9690
644 int mappings=setup_list[i]->mappings; local
652 if(req>map[setup_list[i]->mappings]){++i;continue;}
653 for(j=0;j<mappings;j++)
656 if(j==mappings)
    [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/apache-xml/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 1186 NamespaceMappings mappings = null; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 887 ASN1Sequence mappings = (ASN1Sequence)pm; local
1069 ASN1Sequence mappings = pm; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
org.eclipse.ant.core_3.2.200.v20100427.jar 
org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
org.eclipse.update.configurator_3.3.100.v20100512.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.jdt.launching_3.5.100.v20100526.jar 

Completed in 236 milliseconds

1 2