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

123456

/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_has_key.py74 syms = self.syms
75 if (node.parent.type == syms.not_test and
88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
89 syms.or_test, syms.test, syms.lambdef, syms
[all...]
H A Dfix_intern.py34 if obj.type == self.syms.star_expr:
36 if (obj.type == self.syms.argument and
39 syms = self.syms
41 if obj.type == syms.arglist:
44 newarglist = pytree.Node(syms.arglist, [obj.clone()])
48 new = pytree.Node(syms.power,
50 [pytree.Node(syms.trailer,
H A Dfix_apply.py32 syms = self.syms
40 if args.type == self.syms.star_expr:
42 if (args.type == self.syms.argument and
45 if kwds and (kwds.type == self.syms.argument and
50 if (func.type not in (token.NAME, syms.atom) and
51 (func.type != syms.power or
69 #new = pytree.Node(syms.power, (func, ArgList(l_newargs)))
H A Dfix_exec.py29 syms = self.syms
H A Dfix_execfile.py12 ArgList, String, syms)
35 open_call = Node(syms.power, [Name(u"open"), open_args])
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
H A Dfix_metaclass.py23 from ..fixer_util import Name, syms, Node, Leaf namespace
33 if node.type == syms.suite:
35 elif node.type == syms.simple_stmt and node.children:
37 if expr_node.type == syms.expr_stmt and expr_node.children:
50 if node.type == syms.suite:
62 suite = Node(syms.suite, [])
83 new_expr = Node(syms.expr_stmt, [])
84 new_stmt = Node(syms.simple_stmt, [new_expr])
103 if node.type == syms.suite:
110 if simple_node.type == syms
[all...]
H A Dfix_nonzero.py6 from ..fixer_util import Name, syms namespace
H A Dfix_dict.py59 syms = self.syms
69 args = head + [pytree.Node(syms.trailer,
74 new = pytree.Node(syms.power, args)
79 new = pytree.Node(syms.power, [new] + tail)
H A Dfix_exitfunc.py8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms namespace
46 register = pytree.Node(syms.power,
60 if names.type == syms.dotted_as_names:
67 new_import = pytree.Node(syms.import_name,
70 new = pytree.Node(syms.simple_stmt, [new_import])
H A Dfix_import.py16 from ..fixer_util import FromImport, syms, token namespace
28 elif node.type == syms.dotted_name:
30 elif node.type == syms.dotted_as_name:
32 elif node.type == syms.dotted_as_names:
56 if node.type == syms.import_from:
H A Dfix_raise.py39 syms = self.syms
62 new = pytree.Node(syms.raise_stmt, [Name(u"raise"), exc])
84 new = pytree.Node(syms.simple_stmt, [Name(u"raise")] + with_tb)
88 return pytree.Node(syms.raise_stmt,
/external/icu/icu4c/source/i18n/
H A Dudat.cpp596 const DateFormatSymbols *syms; local
600 syms = sdtfmt->getDateFormatSymbols();
602 syms = rdtfmt->getDateFormatSymbols();
611 res = syms->getEras(count);
615 res = syms->getEraNames(count);
619 res = syms->getMonths(count);
623 res = syms->getShortMonths(count);
627 res = syms->getWeekdays(count);
631 res = syms->getShortWeekdays(count);
635 res = syms
743 const DateFormatSymbols *syms; local
917 setEra(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
924 setEraName(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
931 setMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
938 setShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
945 setNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
952 setStandaloneMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
959 setStandaloneShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
966 setStandaloneNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
973 setWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
980 setShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
987 setShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
994 setNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1001 setStandaloneWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1008 setStandaloneShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1015 setStandaloneShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1022 setStandaloneNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1029 setQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1036 setShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1043 setStandaloneQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1050 setStandaloneShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1057 setShortYearNames(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1064 setShortZodiacNames(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1071 setAmPm(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
1078 setLocalPatternChars(DateFormatSymbols *syms, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
[all...]
/external/python/cpython2/Lib/lib2to3/
H A Dfixer_util.py9 from .pygram import python_symbols as syms namespace
18 return Node(syms.argument,
35 return Node(syms.atom,
44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
58 node.insert_child(1, Node(syms.arglist, args))
63 node = Node(syms.power, [func_name, ArgList(args)])
81 return Node(syms.trailer, [Leaf(token.LBRACE, u"["),
106 inner_args.append(Node(syms.comp_if, [if_leaf, test]))
107 inner = Node(syms
[all...]
/external/zlib/src/examples/
H A Denough.c119 syms: number of symbols remaining to code
125 syms: 3..totsym (totsym == total symbols to code)
126 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
129 syms == 2 is not saved since that immediately leads to a single code. left
132 left ends at syms-1 since left == syms immediately results in a single code.
137 first one (syms) being outermost, and the last one (len) being innermost.
138 We build the array with length max-1 lists for the len index, with syms-3
151 to the num[] array as described above for the (syms, lef
203 count(int syms, int len, int left) argument
258 beenhere(int syms, int len, int left, int mem, int rem) argument
322 examine(int syms, int len, int left, int mem, int rem) argument
403 enough(int syms) argument
460 int syms; /* total number of symbols to code */ local
[all...]
/external/clang/test/CodeGen/
H A D2003-08-21-WideString.c16 } syms = { L"NUL" }; variable in typeref:struct:__anon2065
/external/curl/tests/
H A Dextern-scan.pl43 my @syms;
H A Dsymbol-scan.pl61 my @syms;
72 push @syms, $_;
82 push @syms, $1;
112 for my $e (sort @syms) {
166 printf "%d symbols in headers (out of which %d are ignored)\n", scalar(@syms),
169 scalar(@syms)- $ignored;
/external/iproute2/genl/
H A DMakefile32 genl: static-syms.o
33 static-syms.o: static-syms.h
34 static-syms.h: $(wildcard *.c)
/external/libcxx/utils/
H A Dsym_extract.py35 syms = extract.extract_symbols(args.library)
37 syms, other_syms = util.filter_stdlib_symbols(syms)
38 util.write_syms(syms, out=args.output, names_only=args.names_only)
/external/fec/
H A Dviterbi27.c134 int update_viterbi27_blk(void *p,unsigned char syms[],int nbits){ argument
141 update_viterbi27_blk_port(p,syms,nbits);
145 update_viterbi27_blk_av(p,syms,nbits);
150 update_viterbi27_blk_mmx(p,syms,nbits);
153 update_viterbi27_blk_sse(p,syms,nbits);
156 update_viterbi27_blk_sse2(p,syms,nbits);
H A Dviterbi29.c134 int update_viterbi29_blk(void *p,unsigned char syms[],int nbits){ argument
138 return update_viterbi29_blk_port(p,syms,nbits);
141 return update_viterbi29_blk_av(p,syms,nbits);
145 return update_viterbi29_blk_mmx(p,syms,nbits);
147 return update_viterbi29_blk_sse(p,syms,nbits);
149 return update_viterbi29_blk_sse2(p,syms,nbits);
H A Dviterbi39.c135 int update_viterbi39_blk(void *p,unsigned char syms[],int nbits){ argument
139 return update_viterbi39_blk_port(p,syms,nbits);
142 return update_viterbi39_blk_av(p,syms,nbits);
146 return update_viterbi39_blk_mmx(p,syms,nbits);
148 return update_viterbi39_blk_sse(p,syms,nbits);
150 return update_viterbi39_blk_sse2(p,syms,nbits);
H A Dviterbi615.c136 int update_viterbi615_blk(void *p,unsigned char syms[],int nbits){ argument
140 return update_viterbi615_blk_port(p,syms,nbits);
143 return update_viterbi615_blk_av(p,syms,nbits);
147 return update_viterbi615_blk_mmx(p,syms,nbits);
149 return update_viterbi615_blk_sse(p,syms,nbits);
151 return update_viterbi615_blk_sse2(p,syms,nbits);
H A Dfec.h29 int update_viterbi27_blk_av(void *p,unsigned char *syms,int nbits);
38 int update_viterbi27_blk_mmx(void *p,unsigned char *syms,int nbits);
45 int update_viterbi27_blk_sse(void *p,unsigned char *syms,int nbits);
52 int update_viterbi27_blk_sse2(void *p,unsigned char *syms,int nbits);
60 int update_viterbi27_blk_port(void *p,unsigned char *syms,int nbits);
69 int update_viterbi29_blk(void *vp,unsigned char syms[],int nbits);
79 int update_viterbi29_blk_av(void *p,unsigned char *syms,int nbits);
88 int update_viterbi29_blk_mmx(void *p,unsigned char *syms,int nbits);
95 int update_viterbi29_blk_sse(void *p,unsigned char *syms,int nbits);
102 int update_viterbi29_blk_sse2(void *p,unsigned char *syms,in
[all...]
H A Dviterbi615_port.c114 metric = ((Branchtab615[0].w[i] ^ syms[0]) + (Branchtab615[1].w[i] ^ syms[1])\
115 +(Branchtab615[2].w[i] ^ syms[2]) + (Branchtab615[3].w[i] ^ syms[3])\
116 +(Branchtab615[4].w[i] ^ syms[4]) + (Branchtab615[5].w[i] ^ syms[5]));\
132 int update_viterbi615_blk_port(void *p,unsigned char *syms,int nbits){ argument
146 syms += 6;

Completed in 1979 milliseconds

123456