Home
last modified time | relevance | path

Searched refs:anime (Results 1 – 25 of 704) sorted by relevance

12345678910>>...29

/dports/www/flexget/Flexget-3.2.18/flexget/plugins/input/
H A Danilist.py136 for anime in list_status['list']:
137 anime = anime.get('anime')
139 anime.get('status')
143 anime.get('format') and anime.get('format').lower() in selected_formats
172 if anime.get('endDate').get('year')
185 entry['al_format'] = anime.get('format')
186 entry['al_genres'] = anime.get('genres')
197 anime['status'].capitalize() if anime.get('status') else None
200 entry['al_title'] = anime.get('title')
204 if anime.get('trailer')
[all …]
H A Dmy_anime_list.py89 for anime in list_json:
90 has_selected_status = anime["status"] in selected_status or config['status'] == 'all'
92 anime["anime_airing_status"] in selected_airing_status
96 anime["anime_media_type_string"].lower() in selected_types
101 anime["anime_title"] = str(anime["anime_title"])
104 title=anime["anime_title"],
105 url="https://myanimelist.net" + anime["anime_url"],
106 mal_name=anime["anime_title"],
107 mal_poster=anime["anime_image_path"],
108 mal_type=anime["anime_media_type_string"],
[all …]
H A Dkitsu.py91 for item, anime in zip(json_data['data'], json_data['included']):
92 if item['relationships']['media']['data']['id'] != anime['id']:
95 id1=item['relationships']['media']['data']['id'], id2=anime['id']
100 if status == 'airing' and anime['attributes']['endDate'] is not None:
102 if status == 'finished' and anime['attributes']['endDate'] is None:
107 subType = anime['attributes']['subtype']
112 entry['title'] = anime['attributes']['canonicalTitle']
113 titles_en = anime['attributes']['titles'].get('en')
116 titles_en_jp = anime['attributes']['titles'].get('en_jp')
119 titles_ja_jp = anime['attributes']['titles'].get('ja_jp')
[all …]
/dports/www/rss-bridge/rss-bridge-2021-04-25/bridges/
H A DShanaprojectBridge.php107 private function extractAnimeTitle($anime){ argument
108 $title = $anime->find('a', 0)
114 private function extractAnimeUri($anime){ argument
115 $uri = $anime->find('a', 0)
121 private function extractAnimeTimestamp($anime){ argument
132 private function extractAnimeAuthor($anime){ argument
166 private function buildAnimeSearchUri($anime){ argument
169 . urlencode($this->extractAnimeTitle($anime))
174 private function buildAnimeContent($anime){ argument
177 . $this->extractAnimeUri($anime)
[all …]
/dports/games/xblast/xblast-2.10.4/
H A Dx11c_sprite.c149 pixEpmSpriteBits[player][anime] = None; in GUI_LoadPlayerSprite()
155 pixEpmSpriteBits[player][anime] = in GUI_LoadPlayerSprite()
266 int anime = SpriteAnime (ptr); in GUI_DrawBombSprite() local
269 assert (anime < MAX_BOMB_ANIME); in GUI_DrawBombSprite()
276 DrawSprite (SpriteRectangle (ptr), pixBombBits[bomb][anime], pixBombMask[bomb][anime]); in GUI_DrawBombSprite()
288 int anime = SpriteAnime (ptr); in GUI_DrawPlayerSprite() local
291 assert (anime < MAX_ANIME); in GUI_DrawPlayerSprite()
294 if (anime >= MAX_ANIME_EPM) { in GUI_DrawPlayerSprite()
316 int anime = SpriteAnime (ptr); in GUI_DrawIconSprite() local
318 assert (anime < MAX_ICON_SPRITES); in GUI_DrawIconSprite()
[all …]
H A Dsdl_sprite.c247 pixEpmSpriteBits[player][anime] = NULL; in GUI_LoadPlayerSprite()
253 pixEpmSpriteBits[player][anime] = in GUI_LoadPlayerSprite()
366 int anime = SpriteAnime (ptr); in GUI_DrawBombSprite() local
369 assert (anime < MAX_BOMB_ANIME); in GUI_DrawBombSprite()
376 DrawSprite (SpriteRectangle (ptr), pixBombBits[bomb][anime], pixBombMask[bomb][anime]); in GUI_DrawBombSprite()
388 int anime = SpriteAnime (ptr); in GUI_DrawPlayerSprite() local
391 assert (anime < MAX_ANIME); in GUI_DrawPlayerSprite()
394 if (anime >= MAX_ANIME_EPM) { in GUI_DrawPlayerSprite()
416 int anime = SpriteAnime (ptr); in GUI_DrawIconSprite() local
418 assert (anime < MAX_ICON_SPRITES); in GUI_DrawIconSprite()
[all …]
H A Dmi_player.c44 BMSpriteAnimation *anime; /* animation phases */ member
57 int anime = player->anime[player->cntAnime++]; in AnimatePlayerItem() local
59 if (0 == (player->animeMask & (1 << anime))) { in AnimatePlayerItem()
60 GUI_LoadPlayerSprite (player->id, anime, player->oldConfig); in AnimatePlayerItem()
61 player->animeMask |= (1 << anime); in AnimatePlayerItem()
64 SetSpriteAnime (player->sprite, anime); in AnimatePlayerItem()
144 int numAnime, BMSpriteAnimation * anime) in MenuCreatePlayer() argument
149 assert (anime != NULL); in MenuCreatePlayer()
164 player->anime = anime; in MenuCreatePlayer()
180 assert (anime != NULL); in MenuCreateConfigPlayer()
[all …]
H A Dsprite.c72 ptr->anime = anime; in CreateSprite()
118 result.w = imgRectSprite[ptr->any.anime].w; in RectPlayerSprite()
119 result.h = imgRectSprite[ptr->any.anime].h; in RectPlayerSprite()
209 ptr->any.anime = anime; in CreateTextSprite()
229 assert (spr->any.anime < MAX_ICON_SPRITES); in RectIconSprite()
233 result.w = imgRectIcon[spr->any.anime].w; in RectIconSprite()
234 result.h = imgRectIcon[spr->any.anime].h; in RectIconSprite()
396 if (anime == sprite->any.anime) { in SetSpriteAnime()
403 sprite->any.anime = anime; in SetSpriteAnime()
418 GUI_LoadIconSprite (sprite->any.anime, color); in SetSpriteColor()
[all …]
H A Dw32_sprite.c366 int anime = SpriteAnime (ptr); in GUI_DrawBombSprite() local
369 assert (anime < MAX_BOMB_ANIME); in GUI_DrawBombSprite()
374 DrawSprite (SpriteRectangle (ptr), pixBombBits[bomb][anime], pixBombMask[bomb][anime]); in GUI_DrawBombSprite()
386 int anime = SpriteAnime (ptr); in GUI_DrawPlayerSprite() local
389 assert (anime < MAX_ANIME); in GUI_DrawPlayerSprite()
392 if (anime >= MAX_ANIME_EPM) { in GUI_DrawPlayerSprite()
397 bits = pixEpmSpriteBits[player][anime]; in GUI_DrawPlayerSprite()
398 mask = pixEpmSpriteMask[player][anime]; in GUI_DrawPlayerSprite()
415 int anime = SpriteAnime (ptr); in GUI_DrawIconSprite() local
417 assert (anime < MAX_ICON_SPRITES); in GUI_DrawIconSprite()
[all …]
H A Dmi_player.h31 BMSpriteAnimation * anime);
34 BMSpriteAnimation * anime, XBRgbValue * pRgb);
/dports/emulators/xsystem35/xsystem35-1.7.3-pre5/modules/SACT/
H A Dsprite_anime.c51 if ((now - sp->u.anime.starttime) < sp->u.anime.interval) return 0; in eventCB_ANIM()
54 sp->u.anime.starttime = now; in eventCB_ANIM()
57 switch(sp->u.anime.tick % sp->u.anime.npat) { in eventCB_ANIM()
69 sp->u.anime.tick++; in eventCB_ANIM()
88 sp->u.anime.interval = 500; // �ǥե���Ȥδֳ� 0.5�� in sp_anime_setup()
89 sp->u.anime.starttime = get_high_counter(SYSTEMCOUNTER_MSEC); // ���ϻ��� in sp_anime_setup()
90 sp->u.anime.tick = 0; // ����������� in sp_anime_setup()
96 sp->u.anime.npat = n; in sp_anime_setup()
/dports/graphics/py-mcomix/mcomix3-9eb4fc7/mcomix/mcomix/
H A Danime_tools.py60 anime=GdkPixbuf.PixbufSimpleAnim.new(self.width,self.height,self.fps)
62 anime.set_loop(False)
64 anime.set_loop(True)
75 anime.add_frame(pixbuf)
77 anime._framebuffer=self
79 return anime
93 anime=AnimeFrameBuffer(framebuffer.n_frames,loop=framebuffer.loop)
96 anime.add_frame(n,function(pixbuf,*args,**kwargs),duration)
97 return anime.create_animation()
/dports/x11/xmangekyou/xmangekyou-2.0.1/
H A DMakefile8 xmangekyou : anime.o argument.o cal.o graph.o init.o main.o quit.o string.o time.o xmangekyou.o
10 anime.o argument.o cal.o graph.o init.o \
13 anime.o : anime.h anime.c
14 ${CC} -c anime.c ${CFLAGS} -I${LOCALBASE}/include \
/dports/www/py-protego/Protego-0.1.16/tests/test_data/
H A Dwww.animenewsnetwork.com11 Disallow: /encyclopedia/anime-
13 Disallow: /encyclopedia/releases.php?*anime=
38 Disallow: /MyAnime/anime-set-categ.php
39 Disallow: /MyManga/anime-set-categ.php
/dports/science/phonopy/phonopy-2.11.0/doc/
H A Danimation.rst7 ``anime.ascii`` is supposed to work with v_sim version 3.51 or later.
12 ``anime.ascii`` that contains all phonon modes at the *q*-point. Then
17 v_sim anime.ascii
36 v_sim -w oneWindow anime.ascii -x 1:1:0 -t 0.5:0.5:0.5
/dports/games/mindfocus/mindfocus-0.88/mindfocus/
H A Dmfc.c110 mfc->anime = (NULL == ptr)? 1: atoi(ptr); in mfc_open()
112 mfc->images = malloc(mfc->anime * sizeof(Pixmap)); in mfc_open()
113 mfc->shapes = malloc(mfc->anime * sizeof(Pixmap)); in mfc_open()
151 for(i = 0; i<mfc->anime; i++){ in mfc_open()
195 for(i = 0; i<mfc->anime; i++) in mfc_close()
/dports/japanese/navi2ch/navi2ch-faebfd1/
H A Dnavi2ch-thumbnail.el396 thumb-file file width height size anime filename
422 (setq anime (nth 2 image-attr))
476 (message "gif anime %s" anime)))))
486 (if anime " GIF ANIME" "") (round (/ size 1024))))
565 (let ((len (length data)) (i 2) (anime nil))
585 (throw 'jfif (list xsize ysize anime)))))
591 (anime nil))
609 (list xsize ysize anime)))))
616 (anime nil)
650 (setq anime t)
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/recipes/
H A Dtanuki.recipe9 description = u'Tanuki - portal o anime i mandze.'
10 category = 'anime, manga'
17 …type(u'')(r'<div><a href="/strony/((manga)|(anime))/[0-9]+?/oceny(\-redakcji){0,1}">Zobacz jak oce…
23 (u'Anime', u'http://anime.tanuki.pl/rss_anime.xml'),
/dports/net-p2p/jackett/Jackett/Definitions/
H A Danime-free.yml2 id: anime-free
9 - https://anime-free.biz/
11 - https://anime-free.net/ # redirects to *.biz
64 …# https://anime-free.biz/index.php?do=search&subaction=search&search_start=0&full_search=1&result_…
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/hime/src/
H A Dwin-message.c48 GdkPixbufAnimation *anime = NULL; in create_win_message() local
54 anime = gtk_image_get_animation (GTK_IMAGE (image)); in create_win_message()
55 pixbuf = gdk_pixbuf_animation_get_static_image (anime); in create_win_message()
/dports/mail/squirrelmail-translations/squirrelmail.locales/locale/ja_JP/LC_MESSAGES/
H A Dweb_search.po4 # Andre Nicholson <andre@neo-anime.org>, 2005.
10 "Last-Translator: Andre Nicholson <andre@neo-anime.org>\n"
H A Ddebugger.po4 # Andre Nicholson <andre@neo-anime.org>, 2005.
11 "Last-Translator: Andre Nicholson <andre@neo-anime.org>\n"
H A Dshow_ssl_link.po4 # Andre Nicholson <andre@neo-anime.org>, 2005.
11 "Last-Translator: Andre Nicholson <andre@neo-anime.org>\n"
/dports/mail/squirrelmail-translations/squirrelmail.locales/locale/ja_JP/LC_MESSAGES/plugins/
H A Donline_users.po4 # Andre Nicholson <andre@neo-anime.org>, 2005.
10 "Last-Translator: Andre Nicholson <andre@neo-anime.org>\n"
H A Drewrap.po4 # Andre Nicholson <andre@neo-anime.org>, 2005.
11 "Last-Translator: Andre Nicholson <andre@neo-anime.org>\n"

12345678910>>...29