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

1 2

  /external/skia/gn/
gypi_to_gn.py 133 def ReplaceSubstrings(values, search_for, replace_with):
140 return values.replace(search_for, replace_with)
143 return [ReplaceSubstrings(v, search_for, replace_with) for v in values]
149 new_key = ReplaceSubstrings(key, search_for, replace_with)
150 new_value = ReplaceSubstrings(value, search_for, replace_with)
  /external/skqp/gn/
gypi_to_gn.py 133 def ReplaceSubstrings(values, search_for, replace_with):
140 return values.replace(search_for, replace_with)
143 return [ReplaceSubstrings(v, search_for, replace_with) for v in values]
149 new_key = ReplaceSubstrings(key, search_for, replace_with)
150 new_value = ReplaceSubstrings(value, search_for, replace_with)
  /external/libchrome/base/strings/
string_util.cc 251 const STR& replace_with,
254 size_t replace_length = replace_with.length();
261 output->replace(found, 1, replace_with);
270 const string16& replace_with,
272 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
277 const std::string& replace_with,
279 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
719 BasicStringPiece<StringType> replace_with,
732 str->replace(offset, find_length, replace_with.data(), replace_with.size())
    [all...]
string_util.h 184 // |replace_with|. Each character in |replace_chars| will be replaced with
185 // the |replace_with| string. Returns true if any characters were replaced.
190 const string16& replace_with,
194 const std::string& replace_with,
378 // |find_this| with |replace_with|.
383 StringPiece16 replace_with);
388 StringPiece replace_with);
391 // instances of |find_this| with |replace_with|.
400 StringPiece16 replace_with);
405 StringPiece replace_with);
    [all...]
string_util_unittest.cc 591 const char* replace_with; member in struct:base::__anon24326
612 ASCIIToUTF16(cases[i].replace_with));
622 const char* replace_with; member in struct:base::__anon24327
642 ASCIIToUTF16(cases[i].replace_with));
1107 const char* replace_with; member in struct:base::TestData
    [all...]
  /external/mesa3d/src/compiler/glsl/
opt_conditional_discard.cpp 83 ir->replace_with(discard);
opt_constant_folding.cpp 186 param_rval->replace_with(new_param);
197 ir->replace_with(assignment);
lower_discard.cpp 163 ir->replace_with(assignment);
lower_tess_level.cpp 127 ir->replace_with(new_tess_level_outer_var);
144 ir->replace_with(new_tess_level_inner_var);
408 actual_param->replace_with(
opt_dead_builtin_varyings.cpp 412 var->replace_with(this->new_color[i]);
416 var->replace_with(this->new_backcolor[i]);
421 var->replace_with(this->new_fog);
lower_jumps.cpp 348 ir->replace_with(new(ir) ir_loop_jump(ir_loop_jump::jump_break));
375 ir->replace_with(create_lowered_break());
648 jumps[lower]->replace_with(lowered);
684 jumps[lower]->replace_with(new(ir) ir_assignment(new (ir) ir_dereference_variable(execute_flag), new (ir) ir_constant(false), 0));
    [all...]
lower_vec_index_to_cond_assign.cpp 206 param->replace_with(new_param);
opt_function_inlining.cpp 92 ret->replace_with(new(ctx) ir_assignment(lhs, ret->value, NULL));
417 param->replace_with(new_param);
lower_distance.cpp 206 ir->replace_with(*new_var);
554 actual_param->replace_with(
ir_rvalue_visitor.cpp 133 param->replace_with(new_param);
opt_tree_grafting.cpp 221 ir->replace_with(new_ir);
list.h 98 void replace_with(exec_node *replacement);
242 inline void exec_node::replace_with(exec_node *replacement) function in class:exec_node
opt_constant_propagation.cpp 336 param->replace_with(new_param);
ast_function.cpp 399 actual->replace_with(deref_tmp_2);
455 actual->replace_with(converted);
890 from->replace_with(result);
    [all...]
lower_shared_reference.cpp 471 base_ir->replace_with(new_ir);
  /external/googletest/googletest/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/v8/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/selinux/libsemanage/src/
genhomedircon.c 118 const char *replace_with; member in struct:__anon33676
521 repl[i].replace_with, retval, 0);
682 {.search_for = TEMPLATE_HOME_DIR,.replace_with = user->home},
683 {.search_for = TEMPLATE_ROLE,.replace_with = user->prefix},
702 {.search_for = TEMPLATE_HOME_ROOT,.replace_with = homedir},
714 {.search_for = TEMPLATE_USERNAME,.replace_with = user->name},
715 {.search_for = TEMPLATE_USERID,.replace_with = user->uid},
716 {.search_for = TEMPLATE_ROLE,.replace_with = user->prefix},
727 {.search_for = TEMPLATE_USER,.replace_with = user->name},
728 {.search_for = TEMPLATE_ROLE,.replace_with = user->prefix}
    [all...]
  /art/compiler/optimizing/
instruction_simplifier.cc 820 HInstruction* replace_with = nullptr; local
903 HInstruction* replace_with = nullptr; local
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
system_app.py 190 with ReplaceSystemApp(device, args.package, args.replace_with):

Completed in 1717 milliseconds

1 2