Welcome to mirror list, hosted at ThFree Co, Russian Federation.

function_resource.h « selectors « mycss « source - github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67c48acd517f9e49df0cb5d5ca4cd2556f56781c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 Copyright (C) 2016-2017 Alexander Borisov
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
 Author: lex.borisov@gmail.com (Alexander Borisov)
*/

#ifndef MyHTML_MyCSS_SELECTORS_FUNCTION_RESOURCE_H
#define MyHTML_MyCSS_SELECTORS_FUNCTION_RESOURCE_H
#pragma once

#define MyCSS_SELECTORS_FUNCTION_NAME_STATIC_SIZE 57

static const mycss_selectots_function_begin_entry_t mycss_selectors_function_begin_map_index[] =
{
    {NULL, 0, NULL, 0, 0},
    {"dir", 3, mycss_selectors_function_begin_dir, 0, 1},
    {NULL, 0, NULL, 0, 0},
    {"nth-of-type", 11, mycss_selectors_function_begin_nth_of_type, 0, 3},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"nth-last-column", 15, mycss_selectors_function_begin_nth_last_column, 0, 13},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"current", 7, mycss_selectors_function_begin_current, 0, 19},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"matches", 7, mycss_selectors_function_begin_matches, 0, 23},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"has", 3, mycss_selectors_function_begin_has, 0, 28},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"not", 3, mycss_selectors_function_begin_not, 0, 34},
    {"nth-last-of-type", 16, mycss_selectors_function_begin_nth_last_of_type, 0, 35},
    {NULL, 0, NULL, 0, 0},
    {"lang", 4, mycss_selectors_function_begin_lang, 0, 37},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"nth-last-child", 14, mycss_selectors_function_begin_nth_last_child, 0, 44},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"nth-column", 10, mycss_selectors_function_begin_nth_column, 0, 47},
    {NULL, 0, NULL, 0, 0},
    {"nth-child", 9, mycss_selectors_function_begin_nth_child, 0, 49},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {NULL, 0, NULL, 0, 0},
    {"drop", 4, mycss_selectors_function_begin_drop, 0, 56},
    {NULL, 0, NULL, 0, 0},
};

#endif /* MyHTML_MyCSS_SELECTORS_FUNCTION_RESOURCE_H */