Home
last modified time | relevance | path

Searched refs:submapper (Results 1 – 25 of 39) sorted by relevance

12

/dports/emulators/mess/mame-mame0226/src/devices/bus/nes/
H A Dnes_ines.hxx417 if (submapper) in call_load_ines()
452 else if (submapper == 15) in call_load_ines()
471 submapper = 0; in call_load_ines()
482 if (submapper == 1) in call_load_ines()
484 else if (submapper == 3) in call_load_ines()
496 submapper = 0; in call_load_ines()
499 else if (submapper) in call_load_ines()
501 submapper = 0; in call_load_ines()
619 else if (!submapper) in call_load_ines()
871 if (submapper) in get_default_card_ines()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/bus/nes/
H A Dnes_ines.hxx417 if (submapper) in call_load_ines()
452 else if (submapper == 15) in call_load_ines()
471 submapper = 0; in call_load_ines()
482 if (submapper == 1) in call_load_ines()
484 else if (submapper == 3) in call_load_ines()
496 submapper = 0; in call_load_ines()
499 else if (submapper) in call_load_ines()
501 submapper = 0; in call_load_ines()
619 else if (!submapper) in call_load_ines()
871 if (submapper) in get_default_card_ines()
[all …]
/dports/www/py-routes/Routes-2.5.1/tests/test_functional/
H A Dtest_submapper.py18 c = m.submapper(path_prefix='/')
24 c = m.submapper(path_prefix='/entries', controller='entry',
26 e = c.submapper(path_prefix='/{id}')
40 c = m.submapper(path_prefix='/entries', controller='entry')
53 c = m.submapper(path_prefix='/entries', controller='entry')
69 e = c.submapper(path_prefix='/{id}')
89 e = c.submapper(path_prefix='/{id}')
105 e = c.submapper(path_prefix='/{id}',
165 first = m.submapper(path_prefix='/first_level',
169 second = first.submapper(path_prefix='/second_level',
[all …]
/dports/games/libretro-fceumm/libretro-fceumm-91ccd3b/src/boards/
H A Dresettxrom.c31 static uint8 submapper; variable
36 switch (submapper) { in M313CW()
49 switch (submapper) { in M313PW()
80 submapper = info->submapper; in BMCRESETTXROM_Init()
84 AddExState(&submapper, 1, 0, "SUBM"); in BMCRESETTXROM_Init()
H A D91.c33 static uint8 submapper; variable
59 if (submapper == 1) in Sync()
111 submapper = 0; in Mapper91_Init()
113 if (info->submapper == 1) submapper = info->submapper; in Mapper91_Init()
H A Daddrlatch.c281 static uint32 submapper = 0; variable
283 if (latche & 8 || submapper == 15) { in M201Sync()
290 if (submapper == 15) in M201Sync()
295 submapper = 0; in Mapper201_Init()
296 if (info->submapper > 0) submapper = info->submapper; in Mapper201_Init()
H A Ddatalatch.c158 if (info->submapper && info->submapper == 1) /* no bus conflict */ in CNROM_Init()
553 A65ASsubmapper = info->submapper; /* not a real submapper */ in BMCA65AS_Init()
H A Dhp898f.c104 _submapper = info->submapper; in BMCHP898F_Init()
/dports/www/p5-Router-Simple/Router-Simple-0.17/author/
H A Dprof.pl17 submapper('/account', { controller => 'Account' })
22 submapper('/account')
27 submapper('/', {}, { method => 'GET' })
32 submapper('/', { 'controller' => 'Account' })
H A Dbenchmark.pl41 submapper('/account', {controller => 'Account'})
/dports/www/p5-Router-Simple/Router-Simple-0.17/t/
H A D06_submapper.t7 $r->submapper('/account', {controller => 'Account'})
10 ->submapper('/profile') # nested submapper
14 $r->submapper('/entry/{id:[0-9]+}', {controller => 'Entry'})
H A D02_declare.t11 submapper( '/account', {controller => 'Account'} )
/dports/games/libretro-fceumm/libretro-fceumm-91ccd3b/src/
H A Dunif.c67 static int submapper; variable
361 int submapper; member
391 if (unif_db[x].submapper >= 0 && unif_db[x].submapper != submapper) { in CheckHashInfo()
392 FCEU_PrintError(" Submapper should be set to %d\n", unif_db[x].submapper); in CheckHashInfo()
393 submapper = unif_db[x].submapper; in CheckHashInfo()
704 UNIFCart.submapper = submapper; in InitializeBoard()
843 FCEU_printf(" [UNIF] SubMapper: %d\n", UNIFCart.submapper); in UNIFLoad()
H A Dines.c241 int32 submapper; member
292 if (moo[x].submapper >= 0) { in CheckHInfo()
293 if (moo[x].submapper != iNESCart.submapper) { in CheckHInfo()
294 iNESCart.submapper = moo[x].submapper; in CheckHInfo()
838 iNESCart.submapper = (head.ROM_type3 >> 4) & 0x0F; in rom_load_ines2()
986 FCEU_printf(" Sub Mapper #: %3d\n", iNESCart.submapper); in iNESLoad()
H A Dcart.h15 int submapper; /* submapper used */ /* TODO: */ member
/dports/www/py-routes/Routes-2.5.1/docs/
H A Dsetting_up.rst253 A submapper lets you add several similar routes
258 with map.submapper(controller="home") as m:
263 m = map.submapper(controller="home")
273 with map.submapper(path_prefix="/admin", controller="admin") as m:
280 All arguments to ``.submapper`` must be keyword arguments.
282 The submapper is *not* a complete mapper. It's just a temporary object
294 with map.submapper(controller="home") as m:
300 with map.submapper(controller="home", path_prefix="/") as m:
314 with entries.submapper(path_prefix="/{id}") as entry:
319 with map.submapper(controller="entries", path_prefix="/entries",
[all …]
/dports/www/p5-Router-Simple/Router-Simple-0.17/lib/Router/Simple/
H A DSubMapper.pm30 sub submapper { subroutine
33 Router::Simple::submapper($self, @_);
/dports/databases/py-sqlalchemy-utils/SQLAlchemy-Utils-0.37.9/sqlalchemy_utils/
H A Dgeneric.py163 six.text_type(submapper.class_.__name__)
164 for submapper in mapper._inheriting_mappers
/dports/www/p5-Amon2/Amon2-6.10/lib/Amon2/Web/Dispatcher/
H A DRouterSimple.pm28 $router->submapper(@_);
/dports/www/p5-Router-Simple/Router-Simple-0.17/lib/Router/
H A DSimple.pm37 sub submapper { subroutine
/dports/emulators/nestopia/nestopia-1.51.1/source/core/board/
H A DNstBoard.cpp1453 if (submapper == 1) in DetectBoard()
1461 if (submapper == 3) in DetectBoard()
1807 if (submapper == 1) in DetectBoard()
1819 if (submapper == 2) in DetectBoard()
1861 if (submapper == 2) in DetectBoard()
1977 if (submapper == 1) in DetectBoard()
2239 if (submapper == 1) in DetectBoard()
2290 if (submapper == 1) in DetectBoard()
2347 if (submapper == 1) in DetectBoard()
2354 if (submapper == 3) in DetectBoard()
[all …]
/dports/games/libretro-nestopia/nestopia-2b0315c/source/core/board/
H A DNstBoard.cpp1434 if (submapper == 1) in DetectBoard()
1442 if (submapper == 3) in DetectBoard()
1788 if (submapper == 1) in DetectBoard()
1800 if (submapper == 2) in DetectBoard()
1842 if (submapper == 2) in DetectBoard()
1950 if (submapper == 1) in DetectBoard()
2212 if (submapper == 1) in DetectBoard()
2263 if (submapper == 1) in DetectBoard()
2320 if (submapper == 1) in DetectBoard()
2327 if (submapper == 3) in DetectBoard()
[all …]
/dports/www/p5-Amon2/Amon2-6.10/t/800_dispatcher/
H A D002_router_simple.t49 submapper('/account/', {controller => 'Account'})
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/Routes/@python2/routes/
H A Dmapper.pyi9 def submapper(self, **kargs): ...
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/third_party/2/routes/
H A Dmapper.pyi9 def submapper(self, **kargs): ...

12