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

1 2 3 4 5 6 7 8 91011>>

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYAxisType.java 21 RANGE
XYStepCalculator.java 44 case RANGE:
  /system/libvintf/include/vintf/
KernelConfigType.h 30 RANGE,
38 "range",
  /system/libvintf/
KernelConfigTypedValue.cpp 44 mType = KernelConfigType::RANGE;
62 case KernelConfigType::RANGE:
78 case KernelConfigType::RANGE: {
79 KernelConfigRangeValue range; local
80 return parseRange(s, &range) && range == mRangeValue;
  /external/curl/docs/cmdline-opts/
local-port.d 2 Arg: <num/range>
3 Help: Force use of RANGE for local port numbers
6 Set a preferred single number or range (FROM-TO) of local port numbers to use
8 that will be busy at times so setting this range to something too narrow might
range.d 1 Long: range
3 Help: Retrieve only the bytes within RANGE
4 Arg: <range>
7 Retrieve a byte range (i.e a partial document) from a HTTP/1.1, FTP or SFTP
34 \&'start-stop' range syntax. If a non-digit character is given in the range,
39 enabled, so that when you attempt to get a range, you'll instead get the whole
42 FTP and SFTP range downloads only support the simple 'start-stop' syntax
  /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...]
  /hardware/intel/common/omx-components/videocodec/
OMXComponentDefines.h 45 #define CHECK_ENUMERATION_RANGE(INDEX, RANGE)\
46 if (INDEX >= RANGE) {\
53 LOGE("Port out of range %u", (P)->nPortIndex);\
  /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;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
tokens.h 30 #define RANGE 22
  /external/drrickorang/LoopbackApp/app/src/main/jni/
jni_sles.c 81 // get the length = RANGE
82 jintArray result = (*env)->NewIntArray(env, RANGE);
83 (*env)->SetIntArrayRegion(env, result, 0, RANGE, recorderBufferPeriod);
116 jintArray result = (*env)->NewIntArray(env, RANGE);
117 (*env)->SetIntArrayRegion(env, result, 0, RANGE, playerBufferPeriod);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_constants.py 62 RANGE = "range"
124 RANGE,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_constants.py 60 RANGE = "range"
122 RANGE,
  /external/python/cpython2/Lib/
sre_constants.py 62 RANGE = "range"
124 RANGE,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
  /prebuilts/gdb/linux-x86/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
  /packages/apps/Gallery2/jni/filters/
wbalance.c 24 int RANGE = 256;
42 for (i = 1; i < RANGE-1; i++) {
68 for (i = RANGE-2; i >0; i--) {
  /external/clang/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
140 CXXForRangeStmt(DeclStmt *Range, DeclStmt *Begin, DeclStmt *End,
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
165 return cast<DeclStmt>(SubExprs[RANGE]);
184 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
185 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }

Completed in 5178 milliseconds

1 2 3 4 5 6 7 8 91011>>