HomeSort by relevance Sort by last modified time
    Searched refs:replace_with (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/build/
gypi_to_gn.py 107 def ReplaceSubstrings(values, search_for, replace_with):
114 return values.replace(search_for, replace_with)
117 return [ReplaceSubstrings(v, search_for, replace_with) for v in values]
123 new_key = ReplaceSubstrings(key, search_for, replace_with)
124 new_value = ReplaceSubstrings(value, search_for, replace_with)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
export-w3c-performance-wg-tests 77 for to_find, replace_with in replacements:
78 line = line.replace(to_find, replace_with)
import-w3c-performance-wg-tests 84 for to_find, replace_with in replacements:
85 line = line.replace(to_find, replace_with).rstrip() + '\n'
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_constant_folding.cpp 135 param_rval->replace_with(new_param);
147 ir->replace_with(assignment);
lower_discard.cpp 160 ir->replace_with(assignment);
lower_vec_index_to_swizzle.cpp 142 param->replace_with(new_param);
lower_clip_distance.cpp 110 ir->replace_with(this->new_clip_distance_var);
301 actual_param->replace_with(
opt_function_inlining.cpp 87 ret->replace_with(new(ctx) ir_assignment(lhs, ret->value, NULL));
358 param->replace_with(new_param);
ir_rvalue_visitor.cpp 125 param->replace_with(new_param);
lower_jumps.cpp 341 ir->replace_with(new(ir) ir_loop_jump(ir_loop_jump::jump_break));
368 ir->replace_with(create_lowered_break());
641 jumps[lower]->replace_with(lowered);
677 jumps[lower]->replace_with(new(ir) ir_assignment(new (ir) ir_dereference_variable(execute_flag), new (ir) ir_constant(false), 0));
    [all...]
  /external/mesa3d/src/glsl/
opt_constant_folding.cpp 135 param_rval->replace_with(new_param);
147 ir->replace_with(assignment);
lower_discard.cpp 160 ir->replace_with(assignment);
lower_vec_index_to_swizzle.cpp 142 param->replace_with(new_param);
lower_clip_distance.cpp 110 ir->replace_with(this->new_clip_distance_var);
301 actual_param->replace_with(
opt_function_inlining.cpp 87 ret->replace_with(new(ctx) ir_assignment(lhs, ret->value, NULL));
358 param->replace_with(new_param);
ir_rvalue_visitor.cpp 125 param->replace_with(new_param);
lower_jumps.cpp 341 ir->replace_with(new(ir) ir_loop_jump(ir_loop_jump::jump_break));
368 ir->replace_with(create_lowered_break());
641 jumps[lower]->replace_with(lowered);
677 jumps[lower]->replace_with(new(ir) ir_assignment(new (ir) ir_dereference_variable(execute_flag), new (ir) ir_constant(false), 0));
    [all...]
  /external/chromium_org/base/strings/
string_util.cc 117 const STR& replace_with,
120 size_t replace_length = replace_with.length();
127 output->replace(found, 1, replace_with);
136 const string16& replace_with,
138 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
143 const std::string& replace_with,
145 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
497 const StringType& replace_with,
505 str->replace(offs, find_this.length(), replace_with);
506 offs += replace_with.length()
    [all...]
string_util.h 160 // |replace_with|. Each character in |replace_chars| will be replaced with
161 // the |replace_with| string. Returns true if any characters were replaced.
166 const string16& replace_with,
170 const std::string& replace_with,
378 // |find_this| with |replace_with|.
383 const base::string16& replace_with);
388 const std::string& replace_with);
391 // instances of |find_this| with |replace_with|.
400 const base::string16& replace_with);
404 const std::string& replace_with);
    [all...]
string_util_unittest.cc 515 const char* replace_with; member in struct:base::__anon7102
536 ASCIIToUTF16(cases[i].replace_with));
546 const char* replace_with; member in struct:base::__anon7103
566 ASCIIToUTF16(cases[i].replace_with));
1101 const char* replace_with; member in struct:base::TestData
    [all...]
  /external/chromium_org/testing/gtest/scripts/
release_docs.py 115 self.replace_with = r'\1%s\2\3' % (self.version_prefix,)
144 new_text = self.search_for_re.sub(self.replace_with, text)
  /external/chromium_org/athena/wm/
split_view_controller.cc 243 aura::Window* replace_with) {
245 CHECK(replace_with);
247 CHECK(replace_with != left_window_ && replace_with != right_window_);
248 DCHECK(window_list_provider_->IsWindowInList(replace_with));
252 left_window_ = replace_with;
255 right_window_ = replace_with;
260 wm::ActivateWindow(replace_with);
261 window_list_provider_->StackWindowBehindTo(not_replaced, replace_with);
split_view_controller.h 62 // Replaces |window| in split-view mode with |replace_with|. Adjusts
63 // |replace_with|'s visibility, transform and bounds. Resets |window|'s
66 aura::Window* replace_with);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_cse.cpp 140 inst->replace_with(copy);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cse.cpp 140 inst->replace_with(copy);

Completed in 347 milliseconds

1 2