HomeSort by: relevance | last modified time | path
    Searched refs:rule (Results 1 - 25 of 190) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/public-domain/tz/dist/
zishrink.awk 20 # Return a shortened rule name representing NAME,
36 # Rule names are not part of the tzdb API, so substitute shorter
45 rule["Arg"] = "A"
46 rule["Brazil"] = "B"
47 rule["Canada"] = "C"
48 rule["Denmark"] = "D"
49 rule["EU"] = "E"
50 rule["France"] = "F"
51 rule["GB-Eire"] = "G"
52 rule["Halifax"] = "H
    [all...]
  /src/external/bsd/libarchive/dist/tar/
subst.c 55 struct subst_rule *rule; local
66 rule = malloc(sizeof(*rule));
67 if (rule == NULL)
69 rule->next = NULL;
70 rule->result = NULL;
73 subst->first_rule = rule;
75 subst->last_rule->next = rule;
76 subst->last_rule = rule;
90 if ((r = regcomp(&rule->re, pattern, REG_BASIC)) != 0)
206 struct subst_rule *rule; local
320 struct subst_rule *rule; local
    [all...]
  /src/external/gpl2/gmake/dist/
rule.h 21 struct rule struct
23 struct rule *next;
24 char **targets; /* Targets of the rule. */
27 struct dep *deps; /* Dependencies of the rule. */
40 extern struct rule *pattern_rules;
41 extern struct rule *last_pattern_rule;
53 extern int new_pattern_rule PARAMS ((struct rule *rule, int override));
rule.c 1 /* Pattern and suffix rule internals for GNU Make.
25 #include "rule.h"
27 static void freerule PARAMS ((struct rule *rule, struct rule *lastrule));
32 struct rule *pattern_rules;
34 /* Pointer to last rule in the chain, so we can add onto the end. */
36 struct rule *last_pattern_rule;
42 /* Maximum number of target patterns of any pattern rule. */
46 /* Maximum number of dependencies of any pattern rule. *
72 register struct rule *rule, *lastrule; local
    [all...]
  /src/usr.bin/make/unit-tests/
var-scope-local.exp 1 Global: .ALLTARGETS = all target-rule.ext dir/subdir/target-rule.ext target-rule.ir-gen-from dir/subdir/target-rule-dir.ir-gen-from inference-rule.ir-to dir/subdir/inference-rule.ir-to inference-rule.ir-from dir/subdir/inference-rule.ir-from inference-rule-chain.ir-to dir/subdir/inference-rule-chain.ir-to inference-rule-chain.ir-gen-from dir/subdir/inference-rule-chain.ir-gen-from on
    [all...]
  /src/external/bsd/openldap/dist/libraries/librewrite/
rule.c 1 /* $NetBSD: rule.c,v 1.4 2025/09/05 21:16:23 christos Exp $ */
27 * Appends a rule to the double linked list of rules
33 struct rewrite_rule *rule
40 assert( rule != NULL );
43 r->lr_next = rule;
44 rule->lr_prev = r;
132 struct rewrite_rule *rule = NULL; local
186 * Apply rule once only
197 * Bail out after applying rule
223 * After applying rule, jump N rule
477 struct rewrite_rule *rule; local
    [all...]
context.c 136 * The first, empty rule
162 * Finds the next rule according to a goto action statement,
169 struct rewrite_rule *rule
176 assert( rule != NULL );
181 for ( ; n > 1 && rule != NULL ; n-- ) {
182 rule = rule->lr_next;
185 for ( ; n < 1 && rule != NULL ; n++ ) {
186 rule = rule->lr_prev
208 struct rewrite_rule *rule; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/util/
markdownlint.rb 7 rule 'MD003', :style => :setext_with_atx
10 rule 'MD046', :style => :consistent
  /src/crypto/external/bsd/openssl/dist/util/
markdownlint.rb 7 rule 'MD003', :style => :setext_with_atx
10 rule 'MD046', :style => :consistent
  /src/external/mpl/bind/dist/lib/dns/
ssu.c 87 dns_ssurule_t *rule = ISC_LIST_HEAD(table->rules); local
88 if (rule->identity != NULL) {
89 dns_name_free(rule->identity, mctx);
90 isc_mem_put(mctx, rule->identity,
91 sizeof(*rule->identity));
93 if (rule->name != NULL) {
94 dns_name_free(rule->name, mctx);
95 isc_mem_put(mctx, rule->name, sizeof(*rule->name));
97 if (rule->types != NULL)
139 dns_ssurule_t *rule; local
289 dns_ssurule_t *rule; local
648 dns_ssurule_t *rule; local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
ssu.c 90 dns_ssurule_t *rule = ISC_LIST_HEAD(table->rules); local
91 if (rule->identity != NULL) {
92 dns_name_free(rule->identity, mctx);
93 isc_mem_put(mctx, rule->identity, sizeof(dns_name_t));
95 if (rule->name != NULL) {
96 dns_name_free(rule->name, mctx);
97 isc_mem_put(mctx, rule->name, sizeof(dns_name_t));
99 if (rule->types != NULL) {
100 isc_mem_put(mctx, rule->types,
101 rule->ntypes * sizeof(dns_rdatatype_t))
141 dns_ssurule_t *rule; local
290 dns_ssurule_t *rule; local
600 dns_ssurule_t *rule; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
ld-cache.c 89 dump_cache_rule(cache_table* rule,
92 dumpf(indent, "((cache_table*)%p\n", rule);
93 dumpf(indent, " (type %s)\n", i2name(rule->type, cache_type_map));
94 dumpf(indent, " (field_name \"%s\")\n", rule->field_name);
95 dumpf(indent, " (derived_name \"%s\")\n", rule->derived_name);
96 dumpf(indent, " (type-def \"%s\")\n", rule->type_def);
97 dumpf(indent, " (expression \"%s\")\n", rule->expression);
98 dumpf(indent, " (next %p)\n", rule->next);
104 dump_cache_rules(cache_table* rule,
107 while (rule) {
    [all...]
ld-decode.c 108 dump_decode_rule(decode_table *rule,
111 dumpf(indent, "((decode_table*)%p\n", rule);
112 if (rule) {
113 dumpf(indent, " (type %s)\n", i2name(rule->type, decode_type_map));
114 dumpf(indent, " (gen %s)\n", i2name(rule->gen, decode_gen_map));
115 dumpf(indent, " (force_slash %d)\n", rule->force_slash);
116 dumpf(indent, " (first %d)\n", rule->first);
117 dumpf(indent, " (last %d)\n", rule->last);
118 dumpf(indent, " (force_first %d)\n", rule->force_first);
119 dumpf(indent, " (force_last %d)\n", rule->force_last)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
ld-cache.c 89 dump_cache_rule(cache_table* rule,
92 dumpf(indent, "((cache_table*)%p\n", rule);
93 dumpf(indent, " (type %s)\n", i2name(rule->type, cache_type_map));
94 dumpf(indent, " (field_name \"%s\")\n", rule->field_name);
95 dumpf(indent, " (derived_name \"%s\")\n", rule->derived_name);
96 dumpf(indent, " (type-def \"%s\")\n", rule->type_def);
97 dumpf(indent, " (expression \"%s\")\n", rule->expression);
98 dumpf(indent, " (next %p)\n", rule->next);
104 dump_cache_rules(cache_table* rule,
107 while (rule) {
    [all...]
ld-decode.c 108 dump_decode_rule(decode_table *rule,
111 dumpf(indent, "((decode_table*)%p\n", rule);
112 if (rule) {
113 dumpf(indent, " (type %s)\n", i2name(rule->type, decode_type_map));
114 dumpf(indent, " (gen %s)\n", i2name(rule->gen, decode_gen_map));
115 dumpf(indent, " (force_slash %d)\n", rule->force_slash);
116 dumpf(indent, " (first %d)\n", rule->first);
117 dumpf(indent, " (last %d)\n", rule->last);
118 dumpf(indent, " (force_first %d)\n", rule->force_first);
119 dumpf(indent, " (force_last %d)\n", rule->force_last)
    [all...]
  /src/external/bsd/libbind/dist/irs/
gen_ng.c 50 struct irs_rule * rule; member in struct:pvt
85 pvt->rule = pvt->rules;
115 while (pvt->rule) {
116 ng = pvt->rule->inst->ng;
119 if (!(pvt->rule->flags & IRS_CONTINUE))
121 pvt->rule = pvt->rule->next;
122 if (pvt->rule) {
123 ng = pvt->rule->inst->ng;
135 struct irs_rule *rule; local
167 struct irs_rule *rule; local
    [all...]
gen_pw.c 54 struct irs_rule * rule; member in struct:pvt
92 pvt->rule = pvt->rules;
121 while (pvt->rule) {
122 pw = pvt->rule->inst->pw;
126 if (!(pvt->rule->flags & IRS_CONTINUE))
128 pvt->rule = pvt->rule->next;
129 if (pvt->rule) {
130 pw = pvt->rule->inst->pw;
142 pvt->rule = pvt->rules
152 struct irs_rule *rule; local
169 struct irs_rule *rule; local
186 struct irs_rule *rule; local
217 struct irs_rule *rule; local
    [all...]
gen_sv.c 49 struct irs_rule * rule; member in struct:pvt
88 pvt->rule = pvt->rules;
117 while (pvt->rule) {
118 sv = pvt->rule->inst->sv;
122 if (!(pvt->rule->flags & IRS_CONTINUE))
124 pvt->rule = pvt->rule->next;
125 if (pvt->rule) {
126 sv = pvt->rule->inst->sv;
136 struct irs_rule *rule; local
153 struct irs_rule *rule; local
182 struct irs_rule *rule; local
213 struct irs_rule *rule; local
    [all...]
gen_nw.c 50 struct irs_rule * rule; member in struct:pvt
90 pvt->rule = pvt->rules;
127 while (pvt->rule) {
128 nw = pvt->rule->inst->nw;
134 pvt->rule = pvt->rule->next;
135 if (pvt->rule) {
136 nw = pvt->rule->inst->nw;
146 struct irs_rule *rule; local
153 for (rule = pvt->rules; rule; rule = rule->next)
169 struct irs_rule *rule; local
204 struct irs_rule *rule; local
237 struct irs_rule *rule; local
    [all...]
gen_pr.c 49 struct irs_rule * rule; member in struct:pvt
87 pvt->rule = pvt->rules;
116 while (pvt->rule) {
117 pr = pvt->rule->inst->pr;
123 pvt->rule = pvt->rule->next;
124 if (pvt->rule) {
125 pr = pvt->rule->inst->pr;
135 struct irs_rule *rule; local
140 for (rule = pvt->rules; rule; rule = rule->next)
152 struct irs_rule *rule; local
181 struct irs_rule *rule; local
212 struct irs_rule *rule; local
    [all...]
gen_ho.c 52 struct irs_rule * rule; member in struct:pvt
98 pvt->rule = pvt->rules;
129 struct irs_rule *rule; local
138 for (rule = pvt->rules; rule; rule = rule->next) {
139 ho = rule->inst->ho;
151 if (rule->flags & IRS_CONTINUE)
172 struct irs_rule *rule; local
211 struct irs_rule *rule; local
286 struct irs_rule *rule; local
319 struct irs_rule *rule; local
340 struct irs_rule *rule; local
    [all...]
gen_gr.c 56 struct irs_rule * rule; member in struct:pvt
121 pvt->rule = pvt->rules;
151 while (pvt->rule) {
152 gr = pvt->rule->inst->gr;
156 if (!(pvt->rule->flags & IRS_CONTINUE))
158 pvt->rule = pvt->rule->next;
159 if (pvt->rule) {
160 gr = pvt->rule->inst->gr;
170 struct irs_rule *rule; local
197 struct irs_rule *rule; local
238 struct irs_rule *rule; local
281 struct irs_rule *rule; local
312 struct irs_rule *rule; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
diagnostic-metadata.h 35 /* Abstract base class for referencing a rule that has been violated,
37 class rule class in class:diagnostic_metadata
45 class precanned_rule : public rule
82 void add_rule (const rule &r)
88 const rule &get_rule (unsigned idx) const { return *(m_rules[idx]); }
92 auto_vec<const rule *> m_rules;
  /src/external/mpl/bind/dist/lib/dns/include/dns/
ssu.h 80 * single rule with matchtype dns_ssumatchtype_dlz. This type of SSU
101 * Detach '*tablep' from its simple-secure-update rule table.
118 * Adds a new rule to a simple-secure-update rule table. The rule
124 *\li If 'matchtype' is of SELF type, this rule only matches if the
127 *\li If 'ntypes' is 0, this rule applies to all types except
130 *\li If 'types' includes ANY, this rule applies to all types
153 * to the rules specified in the simple-secure-update rule table. If
191 /*% Accessor functions to extract rule components *
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
rewrite_clnt.c 23 /* rewrite_clnt() sends a rule set name and external-form address to the
98 VSTRING *rewrite_clnt(const char *rule, const char *addr, VSTRING *result)
129 && strcmp(rule, STR(last_rule)) == 0) {
133 rule, addr, vstring_str(result));
156 SEND_ATTR_STR(MAIL_ATTR_RULE, rule),
170 rule, addr, vstring_str(result));
183 vstring_strcpy(last_rule, rule);
222 msg_fatal("usage: %s [-v] [rule address...]", myname);
225 static void rewrite(char *rule, char *addr, VSTRING *reply)
227 rewrite_clnt(rule, addr, reply)
238 char *rule; local
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8