Searched refs:new_str (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/android_testrunner/
H A Dlogger.py41 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
[all...]
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Desd.m473 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/
H A Dnacl_io_demo.c167 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/
H A Delf_getarsym.c214 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;
/external/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc103 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/
H A Dgetopt.c167 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
/external/chromium_org/v8/src/
H A Dliveedit-debugger.js1024 // being replaced with a completely different string new_str.
1030 function ApplySingleChunkPatch(script, change_pos, change_len, new_str,
1036 new_str + old_source.substring(change_pos + change_len);
1039 [ change_pos, change_pos + change_len, change_pos + new_str.length],
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp637 char new_str[16]; local
638 sprintf(new_str, "%d", (int)old_c);
639 NewName = NewName.replace(pos, 1, new_str);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp639 char new_str[16]; local
640 sprintf(new_str, "%d", (int)old_c);
641 NewName = NewName.replace(pos, 1, new_str);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp660 char new_str[16]; local
661 sprintf(new_str, "%d", (int)old_c);
662 NewName = NewName.replace(pos, 1, new_str);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp684 char new_str[16]; local
685 sprintf(new_str, "%d", (int)old_c);
686 NewName = NewName.replace(pos, 1, new_str);

Completed in 246 milliseconds