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

1 2 3 4 5

  /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/chromium_org/net/android/tools/
proxy_test_cases.py 26 "mappings" : {
39 "mappings" : {
51 "mappings" : {
64 "mappings" : {
78 "mappings" : {
91 "mappings" : {
105 "mappings" : {
119 "mappings" : {
131 "mappings" : {
143 "mappings" :
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string.h 22 typedef std::vector<gfx::Range> Mappings;
29 const Mappings& mappings() const { return mappings_; } function in class:app_list::TokenizedString
39 Mappings mappings_;
tokenized_string_unittest.cc 17 const TokenizedString::Mappings& mappings = tokenized.mappings(); local
24 str += UTF8ToUTF16(mappings[i].ToString());
tokenized_string_char_iterator.cc 16 mappings_(tokenized.mappings()),
  /external/chromium_org/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 */
291 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
293 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
300 UCMapping *mappings; local
305 mappings=table->mappings;
309 /* leave the map alone for the initial mappings with desired flags */
311 flag=mappings[map[i]].f;
319 flag=mappings[map[i]].f;
388 * - The mappings are sorted lexically. (Access is through the reverseMap.
415 UCMapping *mappings, *m; local
588 UCMapping *mappings, *m; local
714 UCMapping *mappings, *m; local
931 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/chromium_org/third_party/ots/src/
cmap.h 35 std::vector<OpenTypeCMAPSubtableVSMapping> mappings; member in struct:ots::OpenTypeCMAPSubtableVSRecord
cmap.cc 516 std::vector<ots::OpenTypeCMAPSubtableVSMapping>& mappings local
517 = records[i].mappings;
518 mappings.resize(num_mappings);
521 if (!subtable.ReadU24(&mappings[j].unicode_value) ||
522 !subtable.ReadU16(&mappings[j].glyph_id)) {
525 if (mappings[j].glyph_id == 0 ||
526 mappings[j].unicode_value == 0 ||
527 mappings[j].unicode_value > kUnicodeUpperLimit ||
529 mappings[j].unicode_value <= last_unicode_value)) {
532 last_unicode_value = mappings[j].unicode_value
908 const std::vector<ots::OpenTypeCMAPSubtableVSMapping> &mappings local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
http_server.py 81 # Three mappings (one with SSL) for LayoutTests http tests
139 mappings = [{'port': self._port, 'docroot': self._root}]
146 mappings = [{'port': 8000, 'docroot': self._root},
151 mappings = self.VIRTUALCONFIG
152 for mapping in mappings:
188 self._mappings = mappings
  /external/chromium_org/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/chromium_org/content/shell/browser/
shell_content_browser_client.cc 277 std::vector<content::FileDescriptorInfo>* mappings) {
292 mappings->push_back(
303 mappings->push_back(FileDescriptorInfo(kAndroidMinidumpDescriptor,
310 mappings->push_back(FileDescriptorInfo(
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SourceMap.js 195 var mappings = this._reverseMappingsBySourceURL[sourceURL];
196 for ( ; lineNumber < mappings.length; ++lineNumber) {
197 var mapping = mappings[lineNumber];
231 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.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...]

Completed in 964 milliseconds

1 2 3 4 5