HomeSort by relevance Sort by last modified time
    Searched full:greater (Results 126 - 150 of 4344) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/
CharBuffer.java 80 * the start index, must not be negative and not greater than
83 * the length, must not be negative and not greater than
121 * the start index, must not be negative and not greater than
125 * greater than {@code cs.length()}.
199 * greater than {@code otherBuffer}.
273 * if the position is equal or greater than limit.
288 * if {@code dst.length} is greater than {@code remaining()}.
303 * greater than {@code dst.length}.
306 * greater than {@code dst.length - dstOffset}.
311 * if {@code charCount} is greater than {@code remaining()}
    [all...]
DoubleBuffer.java 78 * the start index, must not be negative and not greater than
81 * the length, must not be negative and not greater than
142 * equals to {@code other}; a positive value if this is greater
227 * if the position is equal or greater than limit.
242 * if {@code dst.length} is greater than {@code remaining()}.
257 * greater than {@code dst.length}.
260 * not greater than {@code dst.length - dstOffset}.
265 * if {@code doubleCount} is greater than {@code remaining()}.
364 * if position is equal or greater than limit.
398 * greater than {@code src.length}
    [all...]
FloatBuffer.java 77 * the start index, must not be negative and not greater than
80 * the length, must not be negative and not greater than
144 * greater than {@code otherBuffer}.
228 * if the position is equal or greater than limit.
243 * if {@code dst.length} is greater than {@code remaining()}.
258 * greater than {@code dst.length}.
261 * greater than {@code dst.length - dstOffset}.
266 * if {@code floatCount} is greater than {@code remaining()}.
363 * if position is equal or greater than limit.
397 * greater than {@code src.length}
    [all...]
IntBuffer.java 75 * the start index, must not be negative and not greater than
78 * the length, must not be negative and not greater than
139 * equals to {@code other}; a positive value if this is greater
214 * if the position is equal or greater than limit.
229 * if {@code dst.length} is greater than {@code remaining()}.
244 * greater than {@code dst.length}.
247 * greater than {@code dst.length - dstOffset}.
252 * if {@code intCount} is greater than {@code remaining()}.
349 * if position is equal or greater than limit.
382 * the offset of int array, must not be negative and not greater
    [all...]
LongBuffer.java 77 * the start index, must not be negative and not greater than
80 * the length, must not be negative and not greater than
142 * greater than {@code otherBuffer}
216 * if the position is equal or greater than limit.
231 * if {@code dst.length} is greater than {@code remaining()}.
246 * greater than {@code dst.length}.
249 * greater than {@code dst.length - dstOffset}.
254 * if {@code longCount} is greater than {@code remaining()}.
353 * if position is equal or greater than limit.
386 * the offset of long array, must not be negative and not greater
    [all...]
ShortBuffer.java 77 * the start index, must not be negative and not greater than
80 * the length, must not be negative and not greater than
142 * greater than {@code otherBuffer}.
217 * if the position is equal or greater than limit.
232 * if {@code dst.length} is greater than {@code remaining()}.
247 * greater than {@code dst.length}.
250 * not greater than {@code dst.length - dstOffset}.
255 * if {@code shortCount} is greater than {@code remaining()}.
352 * if position is equal or greater than limit.
386 * greater than {@code src.length}
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 102 std::greater<Scalar> greater; local
103 return selectComplexRoot_withRespectToNorm( greater );
216 std::greater<Scalar> greater; local
217 return selectRealRoot_withRespectToAbsRealPart( greater, hasArealRoot, absImaginaryThreshold );
262 std::greater<Scalar> greater; local
263 return selectRealRoot_withRespectToRealPart( greater, hasArealRoot, absImaginaryThreshold );
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 86 return (leftPrimary < rightPrimary) ? Collation.LESS : Collation.GREATER;
112 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
152 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
206 // Otherwise a tertiary CE's uppercase would be no greater than
230 return (leftCase < rightCase) ? Collation.LESS : Collation.GREATER;
232 return (leftCase < rightCase) ? Collation.GREATER : Collation.LESS;
271 // Their case+tertiary weights must be greater than those of
288 return (leftTertiary < rightTertiary) ? Collation.LESS : Collation.GREATER;
341 return (leftQuaternary < rightQuaternary) ? Collation.LESS : Collation.GREATER;
  /external/lldb/source/Plugins/Process/Utility/
ARMDefines.h 39 #define COND_HI 0x8 // Unsigned higher Greater than, or unordered C == 1 and Z == 0
41 #define COND_GE 0xA // Greater than or equal Greater than or equal N == V
43 #define COND_GT 0xC // Greater than Greater than Z == 0 and N == V
  /external/v8/src/
double.h 34 // The value encoded by this Double must be greater or equal to +0.0.
42 // The value encoded by this Double must be strictly greater than 0.
64 // Returns the next greater double. Returns +infinity on input +infinity.
121 // Precondition: the value encoded by this Double must be greater or equal
131 // Precondition: the value encoded by this Double must be greater than 0.
  /libcore/luni/src/main/java/java/util/
SortedSet.java 80 * {@code SortedSet} which contains elements greater or equal to the start
89 * @return a subset where the elements are greater or equal to {@code start}
98 * when the start element is greater than the end element.
104 * {@code SortedSet} which contains elements greater or equal to the start
110 * @return a subset where the elements are greater or equal to {@code start} .
  /external/clang/lib/Parse/
ParseTemplate.cpp 325 if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater))
334 Tok.setKind(tok::greater);
337 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
338 Diag(Tok.getLocation(), diag::err_expected) << tok::greater; member in class:tok
362 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
369 } else if (Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {
377 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
394 case tok::greater:
411 case tok::greater:
438 case tok::greater
741 Diag(Tok.getLocation(), diag::err_expected) << tok::greater; member in class:tok
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 307 * is greater than {@code end} or {@code end} is greater than
339 * if {@code start} is less than zero, greater than the current
340 * length or greater than {@code end}.
355 * if {@code index} is less than zero or is greater than or
375 * if {@code offset} is negative or greater than the current
395 * if {@code offset} is negative or greater than the current
415 * if {@code offset} is negative or greater than the current
435 * if {@code offset} is negative or greater than the current
455 * if {@code offset} is negative or greater than the curren
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
VersionTest.java 49 * <BR>&nbsp;&nbsp; - length of returned description is greater than 0;
50 * <BR>&nbsp;&nbsp; - length of returned vmVersion is greater than 0;
51 * <BR>&nbsp;&nbsp; - length of returned vmName is greater than 0;
  /external/chromium-trace/trace-viewer/tracing/tracing/extras/rail/
response_interaction_record.html 46 // function. It must be greater than 0. At about 0.7, this function is
88 // than PAIN_BEGINS_AT_MS, and it might be greater than 1 if this.duration
89 // is greater than PAIN_PEAKS_AT_MS, so clamp it to between 0 and 1.
  /external/icu/icu4c/source/test/intltest/
trcoll.cpp 63 Collator::GREATER,
66 Collator::GREATER,
70 Collator::GREATER
  /external/lldb/examples/summaries/cocoa/
Logger.py 61 # define lldb.formatters.Logger._lldb_formatters_debug_level to any number greater than 0
62 # if you define it to any value greater than 1, the log will be automatically flushed after each write (slower but should make sure most of the stuff makes it to the log even if we crash)
63 # if you define it to any value greater than 2, the calling function's details will automatically be logged (even slower, but provides additional details)
  /external/vboot_reference/firmware/lib/include/
utility.h 52 * Returns an integer less than, equal to, or greater than zero if the first
54 * greater than the first n bytes of [src2]. */
80 * whether s1 is less than or greater than s2.
  /ndk/tests/device/test-gnustl-full/unit/
bind_test.cpp 76 replace_if(array, array + 3, binder2nd<greater<int> >(greater<int>(), 2), 4);
85 replace_if(array, array + 3, bind2nd(greater<int>(), 2), 4);
  /ndk/tests/device/test-stlport/unit/
bind_test.cpp 76 replace_if(array, array + 3, binder2nd<greater<int> >(greater<int>(), 2), 4);
85 replace_if(array, array + 3, bind2nd(greater<int>(), 2), 4);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 109 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(*(end() - 1)), local
115 if (!greater && !lesser)
120 if (greater)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 109 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(*(end() - 1)), local
115 if (!greater && !lesser)
120 if (greater)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 109 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(*(end() - 1)), local
115 if (!greater && !lesser)
120 if (greater)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 113 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(*(end() - 1)), local
119 if (!greater && !lesser)
124 if (greater)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 113 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(*(end() - 1)), local
119 if (!greater && !lesser)
124 if (greater)

Completed in 501 milliseconds

1 2 3 4 56 7 8 91011>>