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

1 2 3 4 5 6 7

  /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...]
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.h 48 // mappings: a list of additional mappings provided by the application.
54 const MappingList& mappings);
microdump_writer_unittest.cc 90 MappingList mappings; local
94 mappings.push_back(mapping);
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));
microdump_writer.cc 62 const MappingList& mappings,
69 mapping_list_(mappings),
282 // Ignore any mappings that are wholly contained within
283 // mappings in the mapping_info_ list.
339 // Write information about the mappings in effect.
341 // First write all the mappings from the dumper
342 for (unsigned i = 0; i < dumper_->mappings().size(); ++i) {
343 const MappingInfo& mapping = *dumper_->mappings()[i];
345 !mapping.exec || // only want executable mappings.
353 // Next write all the mappings provided by the calle
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.h 94 // These overloads also allow passing a list of known mappings and
98 const MappingList& mappings,
102 const MappingList& mappings,
109 const MappingList& mappings,
114 const MappingList& mappings,
118 const MappingList& mappings,
linux_ptrace_dumper_unittest.cc 227 // Now check that LinuxPtraceDumper interpreted the mappings properly.
231 for (unsigned i = 0; i < dumper.mappings().size(); ++i) {
232 const MappingInfo& mapping = *dumper.mappings()[i];
280 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
282 for (unsigned i = 0; i < mappings.size(); ++i) {
283 mapping = mappings[i];
300 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
302 for (unsigned i = 0; i < mappings.size(); ++i)
334 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
    [all...]
minidump_writer.cc 129 const MappingList& mappings,
141 mapping_list_(mappings),
342 for (unsigned j = 0; j < dumper_->mappings().size(); ++j) {
343 const MappingInfo& mapping = *dumper_->mappings()[j];
455 // Avoid filtering executable mappings.
470 // Ignore any mappings that are wholly contained within
471 // mappings in the mapping_info_ list.
481 // Write information about the mappings in effect. Because we are using the
482 // minidump format, the information about the mappings is pretty limited.
486 const unsigned num_mappings = dumper_->mappings().size()
    [all...]
  /external/google-breakpad/src/tools/linux/core2md/
core2md.cc 49 MappingList mappings; local
52 return google_breakpad::WriteMinidump(filename, mappings, memory_list,
  /external/jetty/src/java/org/eclipse/jetty/security/
ConstraintSecurityHandler.java 181 List<ConstraintMapping> mappings = new ArrayList<ConstraintMapping>();
186 mappings.add(mapping);
189 return mappings;
194 /** Take out of the constraint mappings those that match the
206 List<ConstraintMapping> mappings = new ArrayList<ConstraintMapping>();
209 //Remove the matching mappings by only copying in non-matching mappings
212 mappings.add(mapping);
215 return mappings;
230 List<ConstraintMapping> mappings = new ArrayList<ConstraintMapping>() local
477 Map<String, RoleInfo> mappings = (Map<String, RoleInfo>)_constraintMap.get(mapping.getPathSpec()); local
481 _constraintMap.put(mapping.getPathSpec(),mappings); local
637 Map<String, RoleInfo> mappings = (Map<String, RoleInfo>)_constraintMap.match(pathInContext); local
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
TypeResolver.java 41 * An object of this class encapsulates type mappings from type variables. Mappings are established
44 * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
88 * corresponding mappings exist in the current {@code TypeResolver} instance.
91 Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); local
92 populateTypeMappings(mappings, checkNotNull(formal), checkNotNull(actual));
93 return where(mappings);
97 TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) {
98 return new TypeResolver(typeTable.where(mappings));
102 final Map<TypeVariableKey, Type> mappings, Type from, final Type to)
312 private final Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); field in class:TypeResolver.TypeMappingIntrospector
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 62 /* for stage3 compaction of <subchar1> |2 mappings */
288 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
290 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
297 UCMapping *mappings; local
302 mappings=table->mappings;
306 /* leave the map alone for the initial mappings with desired flags */
308 flag=mappings[map[i]].f;
316 flag=mappings[map[i]].f;
385 * - The mappings are sorted lexically. (Access is through the reverseMap.
412 UCMapping *mappings, *m; local
585 UCMapping *mappings, *m; local
711 UCMapping *mappings, *m; local
928 UCMapping *mappings, *m; local
    [all...]
  /system/extras/librank/
librank.c 44 struct mapping_info **mappings; member in struct:library_info
114 library->mappings = malloc(INIT_MAPPINGS * sizeof(struct mapping_info *));
115 if (!library->mappings) {
116 fprintf(stderr, "Couldn't allocate space for library mappings array: %s\n", strerror(errno));
132 if (library->mappings[i]->proc == proc)
133 return library->mappings[i];
137 library->mappings = realloc(library->mappings,
139 if (!library->mappings) {
140 fprintf(stderr, "Couldn't resize mappings array: %s\n", strerror(errno))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializationHandler.java 106 * @param mappings NamespaceMappings
108 public void setNamespaceMappings(NamespaceMappings mappings);
  /external/jetty/src/java/org/eclipse/jetty/servlet/
FilterHolder.java 220 FilterMapping[] mappings =_servletHandler.getFilterMappings(); local
222 for (FilterMapping mapping : mappings)
235 FilterMapping[] mappings =_servletHandler.getFilterMappings(); local
237 for (FilterMapping mapping : mappings)
ServletHandler.java 214 //remove all of the mappings that were for non-embedded filters
216 //remove any mappings associated with this filter
237 List<ServletMapping> servletMappings = LazyList.array2List(_servletMappings); //will be remaining mappings
247 //remove any mappings associated with this servlet
858 * @param pathSpec servlet mappings for the servletHolder
1110 FilterMapping[] mappings =getFilterMappings(); local
1155 FilterMapping[] mappings = getFilterMappings(); local
1211 FilterMapping[] mappings = getFilterMappings(); local
    [all...]
  /external/icu/icu4c/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/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...]

Completed in 760 milliseconds

1 2 3 4 5 6 7