Searched refs:elem1 (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dallocation-folding.js33 var elem1 = [1,2,3];
52 var elem1 = [1.1, 1.2];
68 var elem1 = [2, 3];
84 var elem1 = [1, 2];
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_match.cc82 bool AutocompleteMatch::MoreRelevant(const AutocompleteMatch& elem1, argument
87 if (elem1.relevance == elem2.relevance)
88 return elem1.contents > elem2.contents;
90 return elem1.relevance > elem2.relevance;
94 bool AutocompleteMatch::DestinationSortFunc(const AutocompleteMatch& elem1, argument
99 return (elem1.destination_url != elem2.destination_url) ?
100 (elem1.destination_url < elem2.destination_url) :
101 MoreRelevant(elem1, elem2);
105 bool AutocompleteMatch::DestinationsEqual(const AutocompleteMatch& elem1, argument
107 return elem1
[all...]
H A Dautocomplete_match.h100 static bool MoreRelevant(const AutocompleteMatch& elem1,
104 static bool DestinationSortFunc(const AutocompleteMatch& elem1,
106 static bool DestinationsEqual(const AutocompleteMatch& elem1,
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_match.cc170 bool AutocompleteMatch::MoreRelevant(const AutocompleteMatch& elem1, argument
175 return (elem1.relevance == elem2.relevance) ?
176 (elem1.contents < elem2.contents) : (elem1.relevance > elem2.relevance);
180 bool AutocompleteMatch::DestinationSortFunc(const AutocompleteMatch& elem1, argument
185 if (DestinationsEqual(elem1, elem2) ||
186 (elem1.stripped_destination_url.is_empty() &&
188 return MoreRelevant(elem1, elem2);
189 return elem1.stripped_destination_url < elem2.stripped_destination_url;
193 bool AutocompleteMatch::DestinationsEqual(const AutocompleteMatch& elem1, argument
[all...]
H A Dautocomplete_match.h104 static bool MoreRelevant(const AutocompleteMatch& elem1,
111 static bool DestinationSortFunc(const AutocompleteMatch& elem1,
113 static bool DestinationsEqual(const AutocompleteMatch& elem1,
H A Dautocomplete_result.cc33 bool operator()(const AutocompleteMatch& elem1,
54 bool CompareWithDemoteByType::operator()(const AutocompleteMatch& elem1, argument
57 const int demoted_relevance1 = GetDemotedRelevance(elem1);
63 (elem1.contents < elem2.contents) :
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_set.c74 static int SetBlobCmp(const void *elem1, const void *elem2 ) argument
76 const MYBLOB *b1 = (const MYBLOB *)elem1;
/external/openssl/crypto/asn1/
H A Da_set.c74 static int SetBlobCmp(const void *elem1, const void *elem2 ) argument
76 const MYBLOB *b1 = (const MYBLOB *)elem1;
/external/chromium_org/third_party/icu/source/tools/dumpce/
H A Ddumpce.cpp748 int compareSortKey(const void *elem1, const void *elem2) argument
751 UChar *ch1 = ((ScriptElement *)elem1)->ch;
753 int size1 = ((ScriptElement *)elem1)->count;
1110 int compareCodepoints(const void *elem1, const void *elem2) argument
1112 UChar *ch1 = ((ScriptElement *)elem1)->ch; // key
1114 ch1[((ScriptElement *)elem1)->count] = 0;
/external/icu4c/tools/dumpce/
H A Ddumpce.cpp748 int compareSortKey(const void *elem1, const void *elem2) argument
751 UChar *ch1 = ((ScriptElement *)elem1)->ch;
753 int size1 = ((ScriptElement *)elem1)->count;
1109 int compareCodepoints(const void *elem1, const void *elem2) argument
1111 UChar *ch1 = ((ScriptElement *)elem1)->ch; // key
1113 ch1[((ScriptElement *)elem1)->count] = 0;
/external/libexif/libexif/
H A Dexif-data.c493 cmp_func_intel (const void *elem1, const void *elem2) argument
495 return cmp_func ((const unsigned char *) elem1,
500 cmp_func_motorola (const void *elem1, const void *elem2) argument
502 return cmp_func ((const unsigned char *) elem1,
/external/stlport/test/unit/
H A Dmvctor_test.cpp96 vector<int> elem1(10, 0), elem2(10, 0);
98 int *p1 = &elem1.front();
101 swap(elem1, elem2);
103 CPPUNIT_ASSERT(((p1 == &elem2.front()) && (p2 == &elem1.front())));
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_model.cc89 bool operator()(const KeywordToTemplateMap::value_type& elem1, argument
91 return (elem1.second == NULL) ?
92 (elem2.first.compare(0, elem1.first.length(), elem1.first) > 0) :
93 (elem1.first < elem2.first);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp1312 static inline bool compareCellPositions(RenderTableCell* elem1, RenderTableCell* elem2) argument
1314 return elem1->rowIndex() < elem2->rowIndex();
1319 static inline bool compareCellPositionsWithOverflowingCells(RenderTableCell* elem1, RenderTableCell* elem2) argument
1321 if (elem1->rowIndex() != elem2->rowIndex())
1322 return elem1->rowIndex() < elem2->rowIndex();
1324 return elem1->col() < elem2->col();
/external/chromium_org/third_party/icu/source/common/
H A Duhash.c916 const UHashElement* elem1 = uhash_nextElement(hash1, &pos); local
917 const UHashTok key1 = elem1->key;
918 const UHashTok val1 = elem1->value;
/external/icu4c/common/
H A Duhash.c890 const UHashElement* elem1 = uhash_nextElement(hash1, &pos); local
891 const UHashTok key1 = elem1->key;
892 const UHashTok val1 = elem1->value;
/external/chromium/base/
H A Dstring_util.cc61 static bool CompareParameter(const ReplacementOffset& elem1, argument
63 return elem1.parameter < elem2.parameter;
/external/chromium_org/base/strings/
H A Dstring_util.cc63 static bool CompareParameter(const ReplacementOffset& elem1, argument
65 return elem1.parameter < elem2.parameter;
/external/chromium_org/chrome/browser/search_engines/
H A Dtemplate_url_service.cc268 bool operator()(const KeywordToTemplateMap::value_type& elem1, argument
270 return (elem1.second == NULL) ?
271 (elem2.first.compare(0, elem1.first.length(), elem1.first) > 0) :
272 (elem1.first < elem2.first);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 891 milliseconds