HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 601 - 625 of 2935) sorted by null

<<21222324252627282930>>

  /external/markdown/markdown/
__init__.py 197 * safe_mode: Disallow raw html. One of "remove", "replace" or "escape".
380 source = source.replace(STX, "").replace(ETX, "")
381 source = source.replace("\r\n", "\n").replace("\r", "\n") + "\n\n"
582 * safe_mode: Disallow raw html. One of "remove", "replace" or "escape".
  /development/ndk/sources/android/ndk_helper/
shader.cpp 58 str.replace( pos, it->first.length(), it->second );
59 str_replacement_map.replace( pos, it->first.length(), it->first.length(),
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentLayout.java 143 // Check what fragment is currently shown, replace if needed.
154 ft.replace(R.id.details, details);
156 ft.replace(R.id.a_item, details);
  /external/chromium-libpac/test/js-unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
21 c = '.'; // Replace unsupported characters with a dot.
  /external/chromium_org/base/debug/
trace_event_android.cc 51 // Replace chars used for separators with similar chars in the value.
52 std::replace(out.begin() + value_start, out.end(), ';', ',');
53 std::replace(out.begin() + value_start, out.end(), '|', '!');
  /external/chromium_org/build/android/gyp/
jarjar_resources.py 44 return class_name.replace(old[:-2], new, 1)
46 return class_name.replace(old, new, 1)
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
test_msgs.js 50 messageString = messageString.replace('$' + (i + 1), opt_subs[i]);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/
background.js 46 // Replace any extraneous whitespace to make it look nicer.
47 content = content.replace(/[\n\t]/g, ' ');
48 content = content.replace(/ {2,}/g, ' ');
52 content = content.replace(/<\/?pre>/g, '');
56 content = content.replace(/<(\/)?b>/g, '<$1match>');
  /external/chromium_org/chrome/common/
service_process_util_win.cc 45 std::replace(scoped_name.begin(), scoped_name.end(), '\\', '!');
46 std::replace(scoped_name.begin(), scoped_name.end(), '/', '!');
  /external/chromium_org/components/onc/docs/
onc_spec.js 14 header.id = 'sec_' + header.textContent.replace(/ /g, '_');
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
21 c = '.'; // Replace unsupported characters with a dot.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScriptFormatter.js 104 content = content.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, '');
  /external/chromium_org/third_party/libxml/src/include/libxml/
catalog.h 81 const xmlChar *replace);
135 const xmlChar *replace);
  /external/chromium_org/third_party/skia/src/core/
SkRecord.h 89 // Replace the i-th command with a new command of type T.
93 T* replace(unsigned i) { function in class:SkRecord
103 // Replace the i-th command with a new command of type T.
107 T* replace(unsigned i, const SkRecords::Adopted<Existing>& proofOfAdoption) { function in class:SkRecord
154 // A mutator that can be used with replace to destroy canvas commands.
  /external/chromium_org/third_party/skia/tools/
find_bad_images_in_skps.py 149 output = output.strip().replace('\n',' ').replace('"','\'')
  /external/chromium_org/tools/git/
move_source_file.py 77 from_path = from_path.replace('\\', '/')
78 to_path = to_path.replace('\\', '/')
121 guard = path_from_root.replace('/', '_')
122 guard = guard.replace('\\', '_')
123 guard = guard.replace('.', '_')
141 new_contents = contents.replace(old_guard, new_guard)
  /external/chromium_org/tools/gyp/tools/
pretty_sln.py 61 current_project = results.group(1).replace('_gyp', '')
62 projects[current_project] = [results.group(2).replace('_gyp', ''),
  /external/chromium_org/tools/python/google/
platform_utils_win.py 86 path = path.replace("\\", "/")
194 return path.replace('\\', '/')
process_utils.py 65 print '\n' + subprocess.list2cmdline(command).replace('\\', '/') + '\n', ###
165 print '\n' + subprocess.list2cmdline(command).replace('\\', '/') + '\n',
  /external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
webdriver_tab_backend.py 101 'return eval(\'%s\')' % expr.replace('\'', '\\\'').replace('\n', ' '))
  /external/chromium_org/tools/valgrind/
common.py 206 ret[i] = ret[i].replace('*', '.*').replace('?', '.')
suppressions.py 228 regex = regex.replace("\nMemcheck:Addr%d\n" % sz,
230 regex = regex.replace("\nMemcheck:Value%d\n" % sz,
232 regex = regex.replace("\nMemcheck:Cond\n",
234 regex = regex.replace("\nMemcheck:Unaddressable\n",
236 regex = regex.replace("\nMemcheck:Uninitialized\n",
494 name = line.replace('name=', '')
496 instr = line.replace('instruction=', '')
946 filename.replace('/', os.sep) # Make the path look native.
    [all...]
  /external/chromium_org/v8/test/mjsunit/
regexp-static.js 57 // String.prototype.match and String.prototype.replace (when given a
80 s.replace(re, 'whocares');
117 // String.prototype.replace must interleave matching and replacing when a
122 assertEquals('abcd', 'abcd'.replace(re, f));
  /external/chromium_org/v8/tools/
mingw-generate-makefiles.sh 50 build_file = build_file.replace('/', '\\\\')
83 # Patch generated Makefiles: replace most backslashes with forward slashes,
  /external/clang/lib/ARCMigrate/
Internals.h 66 void replace(SourceRange range, StringRef text);
67 void replace(SourceRange range, SourceRange replacementRange);

Completed in 856 milliseconds

<<21222324252627282930>>