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/openssh/openbsd-compat/
bsd-asprintf.c 47 char *string, *newstr; local
62 if ((newstr = realloc(string, len)) == NULL) {
68 ret = vsnprintf(newstr, len, fmt, ap2);
70 *str = newstr;
72 free(newstr);
  /external/elfutils/libebl/
eblstrtab.c 189 struct Ebl_Strent *newstr = (struct Ebl_Strent *) (st->backp + align); local
190 newstr->string = str;
191 newstr->len = len;
192 newstr->next = NULL;
193 newstr->left = NULL;
194 newstr->right = NULL;
195 newstr->offset = 0;
197 newstr->reverse[i] = str[len - 2 - i];
198 newstr->reverse[len - 1] = '\0';
202 return newstr;
246 struct Ebl_Strent *newstr = newstring (st, str, len); local
    [all...]
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...]
  /external/icu4c/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;
  /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/icu4c/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/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 379 milliseconds