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

1 2 3

  /external/icu4c/common/
utext.cpp 37 utext_access(UText *ut, int64_t index, UBool forward) {
38 return ut->pFuncs->access(ut, index, forward);
44 utext_moveIndex32(UText *ut, int32_t delta) {
48 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) {
51 c = ut->chunkContents[ut->chunkOffset]
558 UText ut; member in struct:ExtendedUText
    [all...]
  /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/icu4c/test/intltest/
utxttest.cpp 25 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
163 UText *ut = NULL; local
189 ut = utext_openUChars(NULL, buf, -1, &status);
191 TestAccess(sa, ut, cpCount, cpMap);
192 utext_close(ut);
200 ut = utext_openUChars(NULL, buf, saLen, &status);
202 TestAccess(sa, ut, cpCount, cpMap);
203 utext_close(ut);
209 ut = utext_openUnicodeString(NULL, &sa, &status);
211 TestAccess(sa, ut, cpCount, cpMap)
844 UText ut; local
853 UText ut = UTEXT_INITIALIZER; local
874 UText ut = UTEXT_INITIALIZER; local
908 UText ut = UTEXT_INITIALIZER; local
932 UText *ut = NULL; local
1005 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); local
1078 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); local
1146 UText *ut = utext_openReplaceable(NULL, &u16str, &status); local
1212 UText *ut = NULL; local
1432 UText *ut = utext_openUChars(NULL, s, -1, &status); local
    [all...]
utxttest.h 44 void TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap);
45 void TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap);
46 void TestCMR (const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *utf16Map);
47 void TestCopyMove(const UnicodeString &us, UText *ut, UBool move,
51 UText *ut, // UnicodeText object under test.
  /external/libppp/src/
id.h 75 struct utmp ut; \
76 strncpy(ut.ut_line, dev, sizeof ut.ut_line - 1); \
77 ut.ut_line[sizeof ut.ut_line - 1] = '\0'; \
78 if (no || logout(ut.ut_line)) \
79 logwtmp(ut.ut_line, "", ""); \
id.c 205 ID0login(struct utmp *ut)
208 if (logout(ut->ut_line)) {
209 log_Printf(LogID0, "logout(\"%s\")\n", ut->ut_line);
210 logwtmp(ut->ut_line, "", "");
211 log_Printf(LogID0, "logwtmp(\"%s\", \"\", \"\")\n", ut->ut_line);
213 login(ut);
215 ut->ut_line, (int)(sizeof ut->ut_name), ut->ut_name);
222 struct utmp ut; local
    [all...]
  /external/openssh/
loginrec.c 192 void set_utmp_time(struct logininfo *li, struct utmp *ut);
193 void construct_utmp(struct logininfo *li, struct utmp *ut);
197 void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
198 void construct_utmpx(struct logininfo *li, struct utmpx *ut);
633 set_utmp_time(struct logininfo *li, struct utmp *ut)
636 ut->ut_tv.tv_sec = li->tv_sec;
637 ut->ut_tv.tv_usec = li->tv_usec;
639 ut->ut_time = li->tv_sec;
645 struct utmp *ut)
651 memset(ut, '\0', sizeof(*ut))
925 struct utmp ut; local
946 struct utmp ut; local
1114 struct utmp ut; local
1124 struct utmp ut; local
1183 struct utmp ut; local
1417 struct utmp *ut; local
1663 struct utmp ut; local
    [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/openssh/regress/
keytype.sh 29 for ut in $ktypes; do
30 htypes=$ut
33 trace "ssh connect, userkey $ut, hostkey $ht"
40 echo IdentityFile $OBJ/key.$ut
46 cat $OBJ/key.$ut.pub > $OBJ/authorized_keys_$USER
48 printf "userkey $ut, hostkey ${ht}:\t"
51 fail "ssh userkey $ut, hostkey $ht failed"
  /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...]
  /device/ti/panda/audio/test/
test-signal 5 eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
6 minim veniam, quis nostrud exercitation ullamco laboris nisi ut
  /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/sl/
Android.mk 14 $(call include-path-for, wilhelm-ut)
  /cts/tests/tests/nativemedia/xa/
Android.mk 14 $(call include-path-for, wilhelm-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);
  /frameworks/wilhelm/tests/automated/
Android.mk 13 $(call include-path-for, wilhelm-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] == '.')))
  /build/core/
pathmap.mk 55 wilhelm-ut:frameworks/wilhelm/src/ut \
  /external/icu4c/tools/gendict/
gendict.cpp 154 UCharsTrieBuilder *ut; member in class:DataDict
162 DataDict(UBool isBytesTrie, UErrorCode &status) : bt(NULL), ut(NULL),
167 ut = new UCharsTrieBuilder(status);
173 delete ut;
233 if (ut) { ut->add(word, value, status); }
243 ut->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, s, status);
  /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...]

Completed in 1267 milliseconds

1 2 3