HomeSort by relevance Sort by last modified time
    Searched refs:RANGE (Results 1 - 25 of 35) sorted by null

1 2

  /external/srec/srec/include/
all_defs.h 98 #ifndef RANGE
99 #define RANGE(X,Y,Z) ((X) < (Y) ? (Y) : (X) > (Z) ? (Z) : (X))
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 41 * range of unicode values (<code>m_first</code> to
42 * <code>m_last</code>). It will handle a certain range of values
44 * If the unicode point is before that explicit range, that is it
45 * is in the range <code>m_first <= value < m_explFirst</code>, then it will delegate to another EncodingInfo object for The root
46 * of such a tree, m_before. Likewise for values in the range
72 * because for ASCII all chars in the range '\u0001' to '\u007F'
191 // The unicode value is before the range
204 // The unicode value is after the range
217 // The unicode value is in the range we explitly handle
238 // The unicode value is before the range
    [all...]
  /external/srec/srec/clib/
imeld_tr.c 66 fram[ii] = RANGE(vec[ii] + prep->offset[ii], 0, 255);
69 fram[ii] = RANGE(vec[ii], 0, 255);
105 fram[ii]= RANGE (vec[ii], 0, 255);
  /external/clang/include/clang/AST/
StmtCXX.h 124 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
138 CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEnd,
151 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
161 return cast<DeclStmt>(SubExprs[RANGE]);
177 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
178 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 39 #define RANGE 64
90 * - Set gains search range *
96 size = RANGE;
106 p = t_qua_gain7b + RANGE; /* pt at 1/4th of table */
108 j = nb_qua_gain7b - RANGE;
124 size = RANGE;
  /external/chromium/net/http/
http_atom_list.h 48 HTTP_ATOM(RANGE)
  /external/checkpolicy/
policy_scan.l 127 RANGE |
128 range { return(RANGE); }
policy_parse.y 117 %token RANGE
584 opt_mls_user : LEVEL mls_level_def RANGE mls_range_def
  /external/guava/guava/src/com/google/common/net/
HttpHeaders.java 89 /** The HTTP If-Range header field name. */
90 public static final String IF_RANGE = "If-Range";
101 /** The HTTP Range header field name. */
102 public static final String RANGE = "Range";
142 /** The HTTP Content-Range header field name. */
143 public static final String CONTENT_RANGE = "Content-Range";
  /packages/apps/Gallery2/jni/filters/
wbalance.c 22 int RANGE = 256;
40 for (i = 1; i < RANGE-1; i++) {
66 for (i = RANGE-2; i >0; i--) {
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g 106 | ^(RANGE CHAR_LITERAL CHAR_LITERAL)
247 | ^(RANGE atom atom)
AssignTokenTypesWalker.g 264 | ^( RANGE CHAR_LITERAL CHAR_LITERAL )
363 | ^(RANGE atom atom)
ANTLRv3.g 46 RANGE;
72 RANGE='..';
256 | range
257 ( (op='^'|op='!') -> ^($op range)
258 | -> range
296 range!
297 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL elementOptions?
ANTLR.g 82 RANGE;
741 : range (ROOT^|BANG^)?
802 range
803 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL
1132 RANGE : '..' ;
ANTLRTreePrinter.g 210 | #( RANGE c3:CHAR_LITERAL c4:CHAR_LITERAL )
380 | ^(RANGE atom {out("..");} atom)
DefineGrammarItemsWalker.g 390 | ^(RANGE atom[null] atom[null])
TreeToNFAConverter.g 354 | ^(RANGE a=atom[null] b=atom[null])
  /external/srec/srec/cfront/
ca_wave.c 297 hWave->data.income[ii] = RANGE(hWave->data.income[ii] +
301 hWave->data.income[ii] = (short) RANGE(hWave->data.income[ii] *
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 47 RANGE;
74 RANGE='..';
263 atom: range ( (op='^'|op='!') -> ^($op range) | -> range )
308 range!
309 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL -> ^(CHAR_RANGE[$c1,".."] $c1 $c2)
  /external/bison/tests/
testsuite 966 echo >>$at_stderr; echo "input.y:2.13-14: integer out of range: \`\$1'
1015 echo >>$at_stderr; echo "input.y:2.13-14: integer out of range: \`@1'
    [all...]
  /external/srec/srec/crec/
get_fram.c 383 frame_ptr[ii] = (featdata) RANGE(prep->seq[ii], 0, 255);
  /external/openssh/openbsd-compat/
glob.c 39 * The [!...] convention to negate a range is supported (SysV, Posix, ksh).
88 #define RANGE '-'
502 if (*qpatnext == RANGE &&
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
ArchiveInstaller.java 271 headers.add(new BasicHeader(HttpHeaders.RANGE,
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 810 CXXForRangeStmt::CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEndStmt,
815 SubExprs[RANGE] = Range;
826 assert(RangeDecl &&& "for-range should have a single var decl");
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 

Completed in 867 milliseconds

1 2