/ndk/sources/host-tools/nawk-20071023/ |
maketab.c | 46 { NE, "relop", " != " }, 47 { EQ, "relop", " == " }, 48 { LE, "relop", " <= " }, 49 { LT, "relop", " < " }, 50 { GE, "relop", " >= " }, 51 { GT, "relop", " > " },
|
proto.h | 164 extern Cell *relop(Node **, int);
|
run.c | 644 Cell *relop(Node **a, int n) /* a[0 < a[1], etc. */ function [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathParser.cpp | 130 case EQOP: case RELOP: 307 return makeTokenAndAdvance(RELOP, EqTestOp::OpcodeLessOrEqual, 2); 308 return makeTokenAndAdvance(RELOP, EqTestOp::OpcodeLessThan); 311 return makeTokenAndAdvance(RELOP, EqTestOp::OpcodeGreaterOrEqual, 2); 312 return makeTokenAndAdvance(RELOP, EqTestOp::OpcodeGreaterThan); 432 case RELOP:
|
XPathGrammar.y | 79 %left <eqop> EQOP RELOP 501 RelationalExpr RELOP AdditiveExpr
|
/external/libpcap/ |
grammar.y | 262 %type <i> byteop pname pnum relop irelop 420 | arth relop arth { $$.b = gen_relation($2, $1, $3, 0); 604 relop: '>' { $$ = BPF_JGT; } label 657 | relop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 0); } 690 | relop NUM { $$.b = gen_mtp3field_code($<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 0); }
|
pcap-filter.manmisc.in | 742 .IP "\fIexpr relop expr\fR"
|
grammar.c | [all...] |
/external/iproute2/doc/ |
ss.sgml | 398 <item> <tt/dport RELOP PORT/ - compares remote port to a number 399 <item> <tt/sport RELOP PORT/ - compares local port to a number 404 <p><tt/RELOP/ is some of <tt/<=/, <tt/>=/, <tt/==/ etc.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mapidefs.h | 736 ULONG relop; member in struct:_SPropertyRestriction 742 ULONG relop; member in struct:_SComparePropsRestriction 748 ULONG relop; member in struct:_SSizeRestriction [all...] |
wabdefs.h | 738 ULONG relop; member in struct:_SPropertyRestriction 744 ULONG relop; member in struct:_SComparePropsRestriction 750 ULONG relop; member in struct:_SSizeRestriction [all...] |
/external/bison/tests/ |
existing.at | 85 %token RELOP APPEND_OP 105 %nonassoc RELOP '<' '>' '|' APPEND_OP TWOWAYIO 306 | exp RELOP exp 323 | rexp RELOP rexp 708 + 151 non_post_simp_exp: '+' simp_exp . [error, FUNC_CALL, NAME, YNUMBER, YSTRING, RELOP, APPEND_OP, MATCHOP, NEWLINE, LEX_IN, LEX_AND, LEX_OR, INCREMENT, DECREMENT, LEX_BUILTIN, LEX_LENGTH, '?', ':', ',', '<', '>', '|', TWOWAYIO, '+', '-', '!', '$', '(', ')', '@:>@', '{', ';'] 729 + 150 non_post_simp_exp: '-' simp_exp . [error, FUNC_CALL, NAME, YNUMBER, YSTRING, RELOP, APPEND_OP, MATCHOP, NEWLINE, LEX_IN, LEX_AND, LEX_OR, INCREMENT, DECREMENT, LEX_BUILTIN, LEX_LENGTH, '?', ':', ',', '<', '>', '|', TWOWAYIO, '+', '-', '!', '$', '(', ')', '@:>@', '{', ';'] 750 + 139 non_post_simp_exp: '!' simp_exp . [error, FUNC_CALL, NAME, YNUMBER, YSTRING, RELOP, APPEND_OP, MATCHOP, NEWLINE, LEX_IN, LEX_AND, LEX_OR, INCREMENT, DECREMENT, LEX_BUILTIN, LEX_LENGTH, '?', ':', ',', '<', '>', '|', TWOWAYIO, '+', '-', '!', '$', '(', ')', '@:>@', '{', ';'] [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
Nodes.py | [all...] |