HomeSort by relevance Sort by last modified time
    Searched refs:new_str (Results 1 - 16 of 16) sorted by null

  /cts/tools/dasm/src/java_cup/
action_part.java 45 public void set_code_string(String new_str) {_code_string = new_str;}
  /development/testrunner/
logger.py 41 def Log(new_str):
42 """Appends new_str to the end of _LOG_FILE and prints it to stdout.
45 # new_str is a string.
46 new_str: 'some message to log'
48 msg = _PrependTimeStamp(new_str)
69 def SilentLog(new_str):
70 """Silently log new_str. Unless verbose mode is enabled, will log new_str
73 # new_str is a string.
74 new_str: 'some message to log
    [all...]
  /external/chromium_org/third_party/android_testrunner/
logger.py 41 def Log(new_str):
42 """Appends new_str to the end of _LOG_FILE and prints it to stdout.
45 # new_str is a string.
46 new_str: 'some message to log'
48 msg = _PrependTimeStamp(new_str)
69 def SilentLog(new_str):
70 """Silently log new_str. Unless verbose mode is enabled, will log new_str
73 # new_str is a string.
74 new_str: 'some message to log
    [all...]
  /external/qemu/distrib/sdl-1.2.15/acinclude/
esd.m4 73 char *new_str;
77 new_str = malloc ((strlen (str) + 1) * sizeof(char));
78 strcpy (new_str, str);
81 new_str = NULL;
83 return new_str;
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
nacl_io_demo.c 167 char* new_str = (char*)malloc(length + 1); local
168 memcpy(new_str, str, length);
169 new_str[length] = 0;
170 return new_str;
  /external/elfutils/0.153/libelf/
elf_getarsym.c 214 char *new_str = (char *) (elf->state.ar.ar_sym + n + 1); local
223 || ((size_t) pread_retry (elf->fildes, new_str,
237 str_data = (char *) new_str;
  /system/core/libcutils/
str_parms.c 319 char *new_str; local
322 ret = asprintf(&new_str, "%s%s%s=%s",
331 *old_str = new_str;
  /ndk/sources/host-tools/make-3.81/
getopt.c 322 char *new_str = malloc (top + 1);
323 if (new_str == NULL)
327 memset (__mempcpy (new_str, __getopt_nonoption_flags,
331 __getopt_nonoption_flags = new_str;
320 char *new_str = malloc (top + 1); local
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 103 char *new_str; local
106 new_str = strdup(str);
107 free(new_str);
108 new_str = strdup(str + size - 1);
109 free(new_str);
  /external/bison/lib/
getopt.c 167 char *new_str = malloc (top + 1);
168 if (new_str == NULL)
172 memset (__mempcpy (new_str, __getopt_nonoption_flags,
176 __getopt_nonoption_flags = new_str;
164 char *new_str = malloc (top + 1); local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt.c 170 char *new_str = malloc (top + 1);
171 if (new_str == NULL)
175 memset (__mempcpy (new_str, __getopt_nonoption_flags,
179 __getopt_nonoption_flags = new_str;
167 char *new_str = malloc (top + 1); local
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 637 char new_str[16]; local
638 sprintf(new_str, "%d", (int)old_c);
639 NewName = NewName.replace(pos, 1, new_str);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 639 char new_str[16]; local
640 sprintf(new_str, "%d", (int)old_c);
641 NewName = NewName.replace(pos, 1, new_str);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 660 char new_str[16]; local
661 sprintf(new_str, "%d", (int)old_c);
662 NewName = NewName.replace(pos, 1, new_str);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 684 char new_str[16]; local
685 sprintf(new_str, "%d", (int)old_c);
686 NewName = NewName.replace(pos, 1, new_str);
    [all...]
  /external/chromium_org/v8/src/
liveedit-debugger.js     [all...]

Completed in 1351 milliseconds