/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/ |
BarColumnTest.java | 190 assertTrue(c.compare(i1, i2) < 0); 191 assertTrue(c.compare(i2, i1) > 0); 192 assertEquals(0, c.compare(i1, i1)); 201 assertTrue(c.compare(i1, i2) < 0); 202 assertTrue(c.compare(i2, i1) > 0); 203 assertEquals(0, c.compare(i1, i1));
|
CounterColumnTest.java | 167 assertEquals(0, c.compare(i1, i1)); 168 assertTrue(c.compare(i1, i2) > 0); 169 assertTrue(c.compare(i2, i1) < 0); 180 assertEquals(0, c.compare(i1, i1)); 181 assertTrue(c.compare(i1, i2) > 0); 182 assertTrue(c.compare(i2, i1) < 0); 193 assertEquals(0, c.compare(i1, i1)); 194 assertTrue(c.compare(i1, i2) > 0); 195 assertTrue(c.compare(i2, i1) < 0);
|
PercentageColumnTest.java | 148 assertTrue(c.compare(i1, i2) < 0); 149 assertTrue(c.compare(i2, i1) > 0); 150 assertEquals(0, c.compare(i1, i1));
|
/external/junit/src/main/java/org/junit/experimental/max/ |
MaxHistory.java | 134 public int compare(Description o1, Description o2) { method in class:MaxHistory.TestComparator
|
/external/junit/src/main/java/org/junit/runners/model/ |
TestClass.java | 299 public int compare(Field left, Field right) { method in class:TestClass.FieldComparator 309 public int compare(FrameworkMethod left, FrameworkMethod right) { method in class:TestClass.MethodComparator 310 return NAME_ASCENDING.compare(left.getMethod(), right.getMethod());
|
/external/libchrome/base/containers/ |
small_map.h | 59 // double-compare, but you should be aware of this if you use your own 147 // Provide overrides to use operator== for key compare for the "normal" map and 388 key_equal compare; local 391 if (compare(array_[i]->first, key)) { 402 key_equal compare; local 405 if (compare(array_[i]->first, key)) { 417 key_equal compare; local 423 if (compare(array_[i]->first, key)) { 441 key_equal compare; local 445 if (compare(array_[i]->first, x.first)) [all...] |
/external/libchrome/base/strings/ |
string_piece.h | 238 int compare(const BasicStringPiece<STRING_TYPE>& x) const { function in class:base::BasicStringPiece 271 return STRING_TYPE::traits_type::compare(p, p2, N);
|
/external/libcups/cups/ |
array.c | 55 cups_array_func_t compare; /* Element comparison function */ member in struct:_cups_array_s 56 void *data; /* User data passed to compare */ 377 da->compare = a->compare; 499 if (!a->unique && a->compare) 505 while (current > 0 && !(*(a->compare))(e, a->elements[current - 1], 752 a->compare = f; 1074 * compare function or elements, just add it to the beginning or end... 1077 if (!a->num_elements || !a->compare) 1119 while (current > 0 && !(*(a->compare))(e, a->elements[current - 1] [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineDominators.h | 247 inline bool compare(const MachineDominatorTree &Other) const { function in class:llvm::MachineDominatorTree 254 if (DT->compare(*Other.DT))
|
/external/llvm/include/llvm/IR/ |
Dominators.h | 114 inline bool compare(const DominatorTree &Other) const { function in class:llvm::DominatorTree 121 if (Base::compare(Other))
|
/external/ltp/utils/benchmark/ebizzy-0.3/ |
ebizzy.c | 340 static int compare(const void *p1, const void *p2) function 409 record_size, compare);
|
/external/lz4/examples/ |
HCStreaming_ringBuffer.c | 127 // Compare 2 files content 130 size_t compare(FILE* f0, FILE* f1) function 211 const size_t cmp = compare(inpFp, decFp);
|
blockStreaming_ringBuffer.c | 119 int compare(FILE* f0, FILE* f1) function 189 const int cmp = compare(inpFp, decFp);
|
dictionaryRandomAccess.c | 173 int compare(FILE* fp0, FILE* fp1, int length) function 268 const int cmp = compare(inpFp, decFp, length);
|
frameCompress.c | 216 int compare(FILE* fp0, FILE* fp1) function 301 const int cmp = compare(inpFp, decFp);
|
/external/lzma/CPP/7zip/UI/Common/ |
Extract.cpp | 215 Sorted list for file paths was sorted with case insensitive compare function.
216 But FindInSorted function did binary search via case sensitive compare function */
225 int compare = CompareFileNames(name, midValue);
local 226 if (compare == 0)
228 if (compare < 0)
|
/external/protobuf/src/google/protobuf/stubs/ |
stringpiece.h | 109 // All empty StringPiece values compare equal to each other. 300 int compare(StringPiece x) const { function in class:google::protobuf::StringPiece
|
/external/python/cpython2/Lib/ |
difflib.py | 108 uses SequenceMatcher both to compare sequences of lines, and to compare 247 second sequence, so if you want to compare one sequence S against 273 second sequence, so if you want to compare one sequence S against 513 # block so lengthened remains the block to compare against. 518 # new block to compare against. 768 SequenceMatcher both to compare sequences of lines, and to compare 816 Finally, we compare the two: 818 >>> result = list(d.compare(text1, text2) 882 def compare(self, a, b): member in class:Differ [all...] |
pstats.py | 234 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare)) 455 each tuple-index. The compare functions can then be used as the function 462 def compare (self, left, right): member in class:TupleComp
|
/external/python/cpython2/Lib/test/ |
test_sort.py | 9 def check(tag, expected, raw, compare=None): 16 if compare: 17 raw.sort(compare) 194 def compare(x, y): function in function:TestDecorateSortUndecorate.test_cmp_and_key_combination 199 data.sort(cmp=compare, key=str.lower)
|
/external/python/cpython3/Lib/ |
difflib.py | 107 uses SequenceMatcher both to compare sequences of lines, and to compare 241 second sequence, so if you want to compare one sequence S against 267 second sequence, so if you want to compare one sequence S against 501 # block so lengthened remains the block to compare against. 506 # new block to compare against. 755 SequenceMatcher both to compare sequences of lines, and to compare 803 Finally, we compare the two: 805 >>> result = list(d.compare(text1, text2) 868 def compare(self, a, b): member in class:Differ [all...] |
pstats.py | 220 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare)) 442 each tuple-index. The compare functions can then be used as the function 449 def compare (self, left, right): member in class:TupleComp
|
/external/replicaisland/src/com/replica/replicaisland/ |
GameObjectCollisionSystem.java | 321 public int compare(CollisionVolumeRecord object1, CollisionVolumeRecord object2) { method in class:GameObjectCollisionSystem.CollisionVolumeComparator
|
GameObjectManager.java | 185 public int compare(BaseObject object1, BaseObject object2) { method in class:GameObjectManager.HorizontalPositionComparator
|
SoundSystem.java | 182 public int compare(final Sound object1, final Sound object2) { method in class:SoundSystem.SoundComparator
|