HomeSort by relevance Sort by last modified time
    Searched defs:newstr (Results 1 - 10 of 10) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringFactory.java 37 public abstract XMLString newstr(String string); method in class:XMLStringFactory
49 public abstract XMLString newstr(FastStringBuffer string, int start, method in class:XMLStringFactory
62 public abstract XMLString newstr(char[] string, int start, method in class:XMLStringFactory
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XMLStringFactoryImpl.java 56 public XMLString newstr(String string) method in class:XMLStringFactoryImpl
71 public XMLString newstr(FastStringBuffer fsb, int start, int length) method in class:XMLStringFactoryImpl
86 public XMLString newstr(char[] string, int start, int length) method in class:XMLStringFactoryImpl
  /external/elfutils/0.153/libebl/
eblwstrtab.c 174 struct Ebl_WStrent *newstr; local
195 newstr = (struct Ebl_WStrent *) (st->backp + align);
196 newstr->string = str;
197 newstr->len = len;
198 newstr->next = NULL;
199 newstr->left = NULL;
200 newstr->right = NULL;
201 newstr->offset = 0;
203 newstr->reverse[i] = str[len - 2 - i];
204 newstr->reverse[len - 1] = L'\0'
244 struct Ebl_WStrent *newstr; local
    [all...]
eblgstrtab.c 192 struct Ebl_GStrent *newstr = (struct Ebl_GStrent *) (st->backp + align); local
193 newstr->string = str;
194 newstr->len = len;
195 newstr->width = st->width;
196 newstr->next = NULL;
197 newstr->left = NULL;
198 newstr->right = NULL;
199 newstr->offset = 0;
202 newstr->reverse[i * st->width + j] = str[(len - 2 - i) * st->width + j];
204 newstr->reverse[(len - 1) * st->width + j] = '\0'
244 struct Ebl_GStrent *newstr; local
    [all...]
eblstrtab.c 194 struct Ebl_Strent *newstr = (struct Ebl_Strent *) (st->backp + align); local
195 newstr->string = str;
196 newstr->len = len;
197 newstr->next = NULL;
198 newstr->left = NULL;
199 newstr->right = NULL;
200 newstr->offset = 0;
202 newstr->reverse[i] = str[len - 2 - i];
203 newstr->reverse[len - 1] = '\0';
207 return newstr;
251 struct Ebl_Strent *newstr = newstring (st, str, len); local
    [all...]
  /external/icu/icu4c/source/samples/uresb/
uresb.c 189 UChar *newstr, *np; local
200 newstr = (UChar *) malloc((1 + alen) * sizeof(*newstr));
201 for (sp = string, np = newstr; *sp; ++sp) {
218 return newstr;
  /system/core/logd/
LogAudit.cpp 126 char *newstr = reinterpret_cast<char *>(malloc(n)); local
127 if (!newstr) {
130 cp = newstr;
142 logbuf->log(LOG_ID_EVENTS, now, uid, pid, tid, newstr,
144 free(newstr);
174 newstr = reinterpret_cast<char *>(malloc(n));
175 if (!newstr) {
178 *newstr = (strstr(str, " permissive=1")
182 strlcpy(newstr + 1, comm, l);
183 strncpy(newstr + 1 + l, str, estr - str)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
derb.c 377 UChar *newstr, *np; local
388 newstr = (UChar *) uprv_malloc((1 + alen) * sizeof(*newstr));
389 for (sp = string, np = newstr; *sp; ++sp) {
406 return newstr;
  /external/icu/icu4c/source/tools/genrb/
derb.c 347 UChar *newstr, *np; local
358 newstr = (UChar *) uprv_malloc((1 + alen) * sizeof(*newstr));
359 for (sp = string, np = newstr; *sp; ++sp) {
376 return newstr;
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 357 char *newstr = SDL_malloc(len); local
358 if ( newstr ) {
359 SDL_strlcpy(newstr, string, len);
361 return newstr;
    [all...]

Completed in 638 milliseconds