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

1 2

  /external/icu4c/common/
utext.cpp 34 utext_access(UText *ut, int64_t index, UBool forward) {
35 return ut->pFuncs->access(ut, index, forward);
41 utext_moveIndex32(UText *ut, int32_t delta) {
45 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) {
48 c = ut->chunkContents[ut->chunkOffset]
904 UText ut; member in struct:ExtendedUText
    [all...]
ubrk.cpp 170 UText ut = UTEXT_INITIALIZER; local
171 utext_openUChars(&ut, text, textLength, status);
172 brit->setText(&ut, *status);
  /external/icu4c/i18n/
regextxt.h 23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16))
30 # define UTEXT_FULL_TEXT_IN_CHUNK(ut,len) (FALSE)
32 # define UTEXT_FULL_TEXT_IN_CHUNK(ut,len) ((0==((ut)->chunkNativeStart))&&((len)==((ut)->chunkNativeLimit))&&((len)==((ut)->nativeIndexingLimit)))
  /bionic/libc/bionic/
utmp.c 46 static FILE *ut; variable
52 if (ut == NULL)
54 (void)fseeko(ut, (off_t)0, SEEK_SET);
60 if (ut == NULL) {
61 if ((ut = fopen(utfile, "r")) == NULL)
64 if (fread(&utmp, sizeof(utmp), 1, ut) == 1)
72 if (ut != NULL) {
73 (void)fclose(ut);
74 ut = NULL;
  /external/icu4c/common/unicode/
utext.h 56 * UText *ut = whatever();
58 * for (c=utext_next32From(ut, 0); c>=0; c=utext_next32(ut)) {
68 * UText *ut = whatever();
69 * int textLength = utext_nativeLength(ut);
70 * for (c=utext_previous32From(ut, textLength); c>=0; c=utext_previous32(ut)) {
120 * UText ut = UTEXT_INITIALIZER;
121 * utext_openUTF8(ut, s, -1, &status);
173 * @param ut The UText to be closed
    [all...]
  /external/dropbear/
loginrec.c 166 void set_utmp_time(struct logininfo *li, struct utmp *ut);
167 void construct_utmp(struct logininfo *li, struct utmp *ut);
171 void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
172 void construct_utmpx(struct logininfo *li, struct utmpx *ut);
477 set_utmp_time(struct logininfo *li, struct utmp *ut)
480 ut->ut_tv.tv_sec = li->tv_sec;
481 ut->ut_tv.tv_usec = li->tv_usec;
484 ut->ut_time = li->tv_sec;
491 struct utmp *ut)
496 memset(ut, '\0', sizeof(*ut))
741 struct utmp ut; local
762 struct utmp ut; local
928 struct utmp ut; local
938 struct utmp ut; local
996 struct utmp ut; local
1221 struct utmp *ut; local
    [all...]
  /external/icu4c/test/intltest/
utxttest.cpp 25 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
165 UText *ut = NULL; local
191 ut = utext_openUChars(NULL, buf, -1, &status);
193 TestAccess(sa, ut, cpCount, cpMap);
194 utext_close(ut);
202 ut = utext_openUChars(NULL, buf, saLen, &status);
204 TestAccess(sa, ut, cpCount, cpMap);
205 utext_close(ut);
211 ut = utext_openUnicodeString(NULL, &sa, &status);
213 TestAccess(sa, ut, cpCount, cpMap)
1320 UText ut; local
1329 UText ut = UTEXT_INITIALIZER; local
1350 UText ut = UTEXT_INITIALIZER; local
1384 UText ut = UTEXT_INITIALIZER; local
1408 UText *ut = NULL; local
1481 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); local
1554 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); local
1622 UText *ut = utext_openReplaceable(NULL, &u16str, &status); local
1688 UText *ut = NULL; local
1908 UText *ut = utext_openUChars(NULL, s, -1, &status); local
    [all...]
utxttest.h 45 void TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap);
46 void TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap);
47 void TestCMR (const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *utf16Map);
48 void TestCopyMove(const UnicodeString &us, UText *ut, UBool move,
52 UText *ut, // UnicodeText object under test.
  /libcore/luni/src/test/resources/
blob.c 2 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  /external/v8/test/es5conform/
harness-adapt.js 30 function ES5Error(ut) {
31 this.ut = ut;
35 return this.ut.res;
60 var ut = this._testResults[i];
62 if (ut.res == "Precondition failed")
64 if (ut.res != 'pass')
65 throw new ES5Error(ut);
69 TestHarness.prototype.startingTest = function (ut) {
70 this.currentTest = ut;
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 79 struct utsname ut; local
106 if ((uname(&ut) == 0) &&
107 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
108 (ut.release[2] < '6') && (ut.release[3] == '.')))
  /cts/tests/tests/nativemedia/
Android.mk 14 system/media/wilhelm/src/ut
  /external/chromium/third_party/libjingle/source/talk/base/
win32.cc 47 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) {
48 ASSERT(NULL != ut);
68 *ut = static_cast<time_t>((current_ul.QuadPart - base_ul.QuadPart) / RATIO);
71 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) {
92 current_ul.QuadPart = base_ul.QuadPart + static_cast<int64>(ut) * RATIO;
win32.h 82 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut);
85 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
  /system/media/wilhelm/tests/automated/
Android.mk 13 system/media/wilhelm/src/ut
  /external/e2fsprogs/lib/ext2fs/
getsize.c 147 struct utsname ut;
179 if ((uname(&ut) == 0) &&
180 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
181 (ut.release[2] < '6') && (ut.release[3] == '.')))
unix_io.c 420 struct utsname ut; local
496 (uname(&ut) == 0) &&
497 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
498 (ut.release[2] == '4') && (ut.release[3] == '.') &&
499 (ut.release[4] == '1') && (ut.release[5] >= '0') &&
500 (ut.release[5] < '8')) &&
  /external/v8/test/mjsunit/
string-indexof-2.js 29 + "naturalem atque insitam in animis nostris inesse notionem, ut "
36 + "Sed ut perspiciatis, unde omnis iste natus error sit voluptatem "
44 + " tempora incidunt, ut labore et dolore magnam aliquam quaerat "
45 + "voluptatem. ut enim ad minima veniam, quis nostrum exercitationem "
46 + "ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi "
  /external/ppp/pppd/
sys-linux.c 2148 struct utmp ut, *utp; local
    [all...]
  /external/icu4c/test/cintltst/
cbiapts.c 324 UText *ut = NULL; local
337 ut = utext_openUChars(ut, s2, -1, &status);
338 ubrk_setUText(bb, ut, &status);
344 utext_close(ut);
677 UText *ut = utext_openUTF8(NULL, UTF8Str, -1, &status); local
686 ubrk_setUText(bi, ut, &status);
707 utext_close(ut);
  /external/e2fsprogs/debugfs/
dump.c 70 struct utimbuf ut; local
94 ut.actime = inode->i_atime;
95 ut.modtime = inode->i_mtime;
96 if (utime(name, &ut) == -1)
  /external/e2fsprogs/util/
subst.c 313 struct utimbuf ut; local
384 ut.actime = stbuf.st_atime;
385 ut.modtime = time(0);
386 if (utime(outfn, &ut) < 0)
  /build/libs/host/
CopyFile.c 162 struct utimbuf ut; local
169 ut.actime = pSrcStat->st_atime;
170 ut.modtime = pSrcStat->st_mtime;
172 ut.modtime += 1;
173 if (utime(dst, &ut) != 0) {
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 1668 struct utmpx ut; local
    [all...]
  /system/media/wilhelm/tests/sandbox/
Android.mk 65 system/media/wilhelm/src/ut
95 system/media/wilhelm/src/ut
209 system/media/wilhelm/src/ut

Completed in 441 milliseconds

1 2