/external/icu4c/tools/toolutil/ |
filetools.cpp | 64 int32_t latest = whichFileModTimeIsLater(filePath, newpath); local 65 if (latest < 0 || latest == 2) { 81 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst); local 82 if (latest < 0 || latest == 2) {
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ProtocolVersion.java | 95 ProtocolVersion latest = getByName(protocols[0]); local 102 if ((latest == null) 103 || (latest.version[0] < current.version[0]) 104 || (latest.version[0] == current.version[0] && latest.version[1] < current.version[1])) { 105 latest = current; 108 return latest;
|
/external/dnsmasq/src/ |
dnsmasq.c | 908 struct resolvc *res, *latest; local 914 for (latest = NULL, res = daemon->resolv_files; res; res = res->next) 930 latest = res; 935 if (latest) 938 if (reload_servers(latest->name)) 940 my_syslog(LOG_INFO, _("reading %s"), latest->name); 948 latest->mtime = 0; 951 my_syslog(LOG_WARNING, _("no servers found in %s, will retry"), latest->name); [all...] |
/external/speex/libspeex/ |
jitter.c | 82 /** Buffer that keeps the time of arrival of the latest packets */ 86 spx_int32_t timing[MAX_TIMINGS]; /**< Sorted list of all timings ("latest" packets first) */ 159 struct TimingBuffer *timeBuffers[MAX_BUFFERS]; /**< Storing arrival time of latest frames so we can compute some stats */ 209 /* Pick the TOP_DELAY "latest" packets (doesn't need to actually be late 215 int latest = 32767; local 216 /* Pick latest amoung all sub-windows */ 219 if (pos[j] < tb[j].filled && tb[j].timing[pos[j]] < latest) 222 latest = tb[j].timing[pos[j]]; 230 worst = latest; 231 best = latest; [all...] |
/external/icu4c/common/ |
triedict.cpp | 1221 TernaryNode *latest = NULL; local [all...] |
/packages/apps/Browser/src/com/android/browser/ |
Tab.java | 257 * Private information regarding the latest voice search. If the Tab is not 295 * Get the latest array of voice search results, to be passed to the 362 Intent latest = new Intent(mVoiceSearchData.mVoiceSearchIntent); local 363 latest.putExtra(SearchManager.EXTRA_DATA_KEY, extraData); 364 mVoiceSearchData.mVoiceSearchIntent = latest; [all...] |
/prebuilt/common/jfreechart/ |
jfreechart-1.0.9.jar | |