Searched refs:mapper (Results 1 - 25 of 25) sorted by relevance

/macosx-10.10/ICU-531.30/icuSources/test/letest/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
H A DSimpleFontInstance.h49 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.cpp446 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
448 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
453 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
455 return LEFontInstance::mapCharToGlyph(ch, mapper);
/macosx-10.10/ICU-531.30/icuSources/test/perf/leperf/
H A DSimpleFontInstance.cpp91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
H A DSimpleFontInstance.h49 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.cpp446 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
448 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
453 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
455 return LEFontInstance::mapCharToGlyph(ch, mapper);
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/
H A DIterator.pm47 my ($me, $them, $data, @mapper) = @_;
51 _mapper => [@mapper],
58 my ($self, @mapper) = @_;
59 $self->{_mapper} = [@mapper];
65 sub mapper { @{ shift->{_mapper} } } subroutine
76 foreach my $meth ($self->mapper) {
99 my $slice = $self->new($self->class, \@return, $self->mapper,);
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dmapselector.c168 idn_mapper_t mapper; local
194 if (idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper)
196 r = idn_mapper_create(&mapper);
200 r = idn__strhash_put(ctx->maphash, hash_key, mapper);
205 r = idn_mapper_add(mapper, name);
238 idn_mapper_t mapper; local
256 mapper = NULL;
257 r = idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper);
261 idn_mapper_incrref(mapper);
263 return (mapper);
270 idn_mapper_t mapper = NULL; local
[all...]
H A Dresconf.c70 #include <idn/mapper.h>
114 idn_mapper_t mapper; member in struct:idn_resconf
199 ctx->mapper = NULL;
474 if (ctx->mapper != NULL)
475 idn_mapper_incrref(ctx->mapper);
476 return (ctx->mapper);
611 idn_resconf_setmapper(idn_resconf_t ctx, idn_mapper_t mapper) { argument
616 if (ctx->mapper != NULL)
617 idn_mapper_destroy(ctx->mapper);
618 ctx->mapper
684 idn_mapper_t mapper = NULL; local
[all...]
H A Dres.c60 #include <idn/mapper.h>
1308 idn_mapper_t mapper; local
1314 mapper = idn_resconf_getmapper(ctx);
1315 if (mapper == NULL) {
1331 r = idn_mapper_map(mapper, from, to, to_length);
1348 if (mapper != NULL)
1349 idn_mapper_destroy(mapper);
H A Dmapper.c2 static char *rcsid = "$Id: mapper.c,v 1.1 2003/06/04 00:25:55 marka Exp $";
57 #include <idn/mapper.h>
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DLEFontInstance.cpp50 le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const
71 glyphStorage[out] = mapCharToGlyph(code, mapper, filterZeroWidth);
80 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
82 return mapCharToGlyph(ch, mapper, TRUE);
85 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
87 LEUnicode32 mappedChar = mapper->mapChar(ch);
49 mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const argument
H A DLEFontInstance.h226 * <code>mapCharToGlyph(ch, mapper)</code> on each one. It also handles surrogate
236 * @param mapper - the character mapper.
244 virtual void mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const;
249 * method calls the mapper, and then calls <code>mapCharToGlyph(mappedCh)</code>.
252 * @param mapper - the character mapper
261 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
266 * method calls the mapper, and then calls <code>mapCharToGlyph(mappedCh)</code>.
269 * @param mapper
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dmapselector.h60 #include <idn/mapper.h>
116 * Return the mapper for `tld' registered in `ctx', or return NULL if
117 * mapper for `tld' is not registered.
123 * Add mapping scheme `name' to the mapper for `tld' to the mapselector
124 * context `ctx'. If no mapper for `TLD' has not been registered, the
125 * function creates a new mapper for `tld', and then adds the given mapping
126 * scheme to the mapper. Otherwise, it adds the scheme to the mapper for
142 * Map an UCS4 string with the mapper for TLD of the domain name.
143 * If there is no mapper suitabl
[all...]
H A Dresconf.h60 #include <idn/mapper.h>
211 idn_resconf_setmapper(idn_resconf_t ctx, idn_mapper_t mapper);
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIODMACommand.h74 @abstract Mapping types to indicate the desired mapper type for translating memory descriptors into I/O DMA Bus addresses.
77 @constant kBypassed Allow drivers to bypass any mapper
189 @param mapper For mapping types kMapped & kBypassed mapper is used to define the hardware that will perform the mapping, defaults to the system mapper.
199 IOMapper *mapper = 0,
212 @param mapper For mapping types kMapped & kBypassed mapper is used to define the hardware that will perform the mapping, defaults to the system mapper.
228 IOMapper *mapper
522 weakWithSpecification(IODMACommand **newCommand, SegmentFunction outSegFunc, UInt8 numAddressBits, UInt64 maxSegmentSize, MappingOptions mapType, UInt64 maxTransferSize, UInt32 alignment, IOMapper *mapper, void *refCon) argument
[all...]
H A DIOMemoryDescriptor.h243 IOMapper * mapper = kIOMapperSystem);
317 IOMapper * mapper,
451 @param mapper Which IOMapper should be used to map the in-memory physical addresses into I/O space addresses. Defaults to 0 which indicates that the system mapper is to be used, if present.
460 IOMapper * mapper = kIOMapperSystem);
935 IOMapper * mapper,
941 bool initMemoryEntries(size_t size, IOMapper * mapper);
997 IOMapper * mapper = kIOMapperSystem);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIODMACommand.cpp115 IOMapper *mapper,
123 alignment, mapper, refCon))
148 IOMapper *mapper,
175 if (mapper && !OSDynamicCast(IOMapper, mapper))
177 device = mapper;
178 mapper = 0;
180 if (!mapper)
183 mapper = IOMapper::gSystem;
196 fMapper = mapper;
109 withSpecification(SegmentFunction outSegFunc, UInt8 numAddressBits, UInt64 maxSegmentSize, MappingOptions mappingOptions, UInt64 maxTransferSize, UInt32 alignment, IOMapper *mapper, void *refCon) argument
142 initWithSpecification(SegmentFunction outSegFunc, UInt8 numAddressBits, UInt64 maxSegmentSize, MappingOptions mappingOptions, UInt64 maxTransferSize, UInt32 alignment, IOMapper *mapper, void *refCon) argument
599 prepareWithSpecification(SegmentFunction outSegFunc, UInt8 numAddressBits, UInt64 maxSegmentSize, MappingOptions mappingOptions, UInt64 maxTransferSize, UInt32 alignment, IOMapper *mapper, UInt64 offset, UInt64 length, bool flushCache, bool synchronize) argument
[all...]
H A DIOMapper.cpp152 IOMapper * mapper = NULL; local
159 if ((mapper = OSDynamicCast(IOMapper, obj)))
160 return (mapper);
179 mapper = OSDynamicCast(IOMapper, IOService::waitForMatchingService(matching));
186 return (mapper);
266 // These are C accessors to the system mapper for non-IOKit clients
298 panic("IOMapperInsertPPNPages no system mapper");
310 panic("IOMapperInsertUPLPages no system mapper");
H A DIOMemoryDescriptor.cpp1121 if (that->initWithOptions(ranges, rangeCount, 0, task, options, /* mapper */ 0))
1145 IOMapper * mapper)
1150 && !self->initWithOptions(buffers, count, offset, task, opts, mapper))
1164 IOMapper * mapper)
1283 return initWithOptions(ranges, count, 0, 0, mdOpts, /* mapper */ 0);
1311 return initWithOptions(ranges, count, 0, task, mdOpts, /* mapper */ 0);
1335 IOMapper * mapper)
1369 // Now grab the original task and whatever mapper was previously used
1371 mapper = dataP->fMapper;
1448 // Grab the appropriate mapper
1140 withOptions(void * buffers, UInt32 count, UInt32 offset, task_t task, IOOptionBits opts, IOMapper * mapper) argument
1159 initWithOptions(void * buffers, UInt32 count, UInt32 offset, task_t task, IOOptionBits options, IOMapper * mapper) argument
1330 initWithOptions(void * buffers, UInt32 count, UInt32 offset, task_t task, IOOptionBits options, IOMapper * mapper) argument
2278 IOMapper * mapper = gIOSystemMapper; local
2429 IOMapper * mapper = 0; local
2793 IOMapper *mapper; local
2999 initMemoryEntries(size_t size, IOMapper * mapper) argument
3031 dmaMap( IOMapper * mapper, const IODMAMapSpecification * mapSpec, uint64_t offset, uint64_t length, uint64_t * address, ppnum_t * mapPages) argument
3107 dmaMap( IOMapper * mapper, const IODMAMapSpecification * mapSpec, uint64_t offset, uint64_t length, uint64_t * address, ppnum_t * mapPages) argument
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/
H A Dvtd.c812 AppleVTD * mapper = 0; local
820 mapper = new AppleVTD;
821 if (mapper)
823 if (mapper->init(wl, data) && mapper->attach(provider))
825 ok = mapper->start(provider);
826 if (!ok) mapper->detach(provider);
828 mapper->release();
/macosx-10.10/vim-55/runtime/syntax/
H A Dant.vim69 syn keyword antElement display location macrodef mail majority manifest map mapper marker mergefiles message
/macosx-10.10/files-662.1.1/private/etc/
H A Dservices10114 mapper-nodemgr 3984/udp # MAPPER network node manager
10115 mapper-nodemgr 3984/tcp # MAPPER network node manager
10116 mapper-mapethd 3985/udp # MAPPER TCP/IP server
10117 mapper-mapethd 3985/tcp # MAPPER TCP/IP server
10118 mapper-ws_ethd 3986/udp # MAPPER workstation server
10119 mapper-ws_ethd 3986/tcp # MAPPER workstation server

Completed in 429 milliseconds