HomeSort by relevance Sort by last modified time
    Searched defs:replace (Results 476 - 500 of 1777) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
UserString.py 107 def replace(self, old, new, maxsplit=-1): member in class:UserString
108 return self.__class__(self.data.replace(old, new, maxsplit))
string.py 511 def replace(s, old, new, maxreplace=-1): function
512 """replace (str, old, new[, maxreplace]) -> string
519 return s.replace(old, new, maxreplace)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 107 def replace(self, old, new, maxsplit=-1): member in class:UserString
108 return self.__class__(self.data.replace(old, new, maxsplit))
string.py 511 def replace(s, old, new, maxreplace=-1): function
512 """replace (str, old, new[, maxreplace]) -> string
519 return s.replace(old, new, maxreplace)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 107 def replace(self, old, new, maxsplit=-1): member in class:UserString
108 return self.__class__(self.data.replace(old, new, maxsplit))
string.py 511 def replace(s, old, new, maxreplace=-1): function
512 """replace (str, old, new[, maxreplace]) -> string
519 return s.replace(old, new, maxreplace)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 462 String replace(String attributeUri, String attributeName, String attributeValue); method in interface:BaseLayoutRule.AttributeFilter
507 public String replace(String uri, String name, String value) {
544 value = filter.replace(uri, name, value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 130 String replace = "name"; local
131 String suggestedName = String.format(mValues.type.getDefaultNameFormat(), replace);
137 int start = suggestedName.indexOf(replace);
139 mNameText.setSelection(start, start + replace.length());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 218 // (2) Delete the linear layout and replace with the text view.
361 TextEdit replace = new ReplaceEdit(mSelectionStart, mSelectionEnd - mSelectionStart, xml); local
362 rootEdit.addChild(replace);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 50 * Java source and replace it by an Android XML string reference.
88 // just replace the string literal by the named int constant (R.id.foo)
99 String title = "Replace string by ID";
124 title = "Replace string by Context.getString(R.string...)";
129 mRewriter.replace(node, newNode, editGroup);
  /frameworks/base/core/java/android/text/
TextUtils.java 905 public static CharSequence replace(CharSequence template, method in class:TextUtils
923 tb.replace(start, end, destinations[i]);
931 * Replace instances of "^1", "^2", etc. in the
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Activities/
TestActivity.java 116 transaction.replace(R.id.contentFragment, fragment);
408 transaction.replace(R.id.contentFragment, fragment);
429 transaction.replace(R.id.contentFragment, fragment);
  /external/clang/include/clang/Sema/
Lookup.h 644 void replace(NamedDecl *D) { function in class:clang::LookupResult::Filter
645 Results.Decls.replace(I-1, D);
650 void replace(NamedDecl *D, AccessSpecifier AS) { function in class:clang::LookupResult::Filter
651 Results.Decls.replace(I-1, D, AS);
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 138 void replace(SourceRange range, StringRef text);
139 void replace(SourceRange range, SourceRange replacementRange);
321 void TransformActionsImpl::replace(SourceRange range, StringRef text) { function in class:TransformActionsImpl
328 void TransformActionsImpl::replace(SourceRange range, function in class:TransformActionsImpl
640 void TransformActions::replace(SourceRange range, StringRef text) { function in class:TransformActions
641 static_cast<TransformActionsImpl*>(Impl)->replace(range, text);
644 void TransformActions::replace(SourceRange range, function in class:TransformActions
646 static_cast<TransformActionsImpl*>(Impl)->replace(range, replacementRange);
  /external/icu/icu4c/source/common/unicode/
unistr.h 4444 UnicodeString::replace(int32_t start, function in class:UnicodeString
4450 UnicodeString::replace(int32_t start, function in class:UnicodeString
4458 UnicodeString::replace(int32_t start, function in class:UnicodeString
4465 UnicodeString::replace(int32_t start, function in class:UnicodeString
4473 UnicodeString::replace(int32_t start, function in class:UnicodeString
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
Node.java 499 * Try to replace this node in the parent with the supplied node.
504 public boolean replace(Node node) { method in class:Node
508 return parentNode.replace(this, node);
644 public boolean replace(Node node, Node replacementNode) { method in class:Node
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
Statement.java 77 public boolean replace(Node node, Node replacementNode) { method in class:Statement
80 return super.replace(node, replacementNode);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir.cpp 164 // Check if we can replace this definition's value by the value in @rep,
201 ValueDef::replace(const ValueRef &repVal, bool doSet) function in class:nv50_ir::ValueDef
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_computation.cc 136 // renumbering the parameters, so replace the final number in the name with
574 // Try to add metadata for HLO instructions that are created to replace
748 auto replace = [&](HloInstruction* instr) { local
759 if (HloInstruction* replacement = replace(instr)) {
770 auto replaced_operand = replace(operand);
789 /*root_instruction=*/FindOrDie(clone_map, replace(root_instruction())));
795 auto replaced_successor = replace(successor);
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 843 content.replace(a, b, text);
  /frameworks/base/media/java/android/media/
VolumeShaper.java 89 * The effect of {@code replace()} is similar to an atomic close of
108 public void replace( method in class:VolumeShaper
112 new Operation.Builder(operation).replace(mId, join).build());
228 * by {@link VolumeShaper#replace(Configuration, Operation, boolean)
229 * VolumeShaper.replace(Configuration, Operation, boolean)}
230 * to replace an existing {@code configuration}.
1238 public @NonNull Builder replace(int id, boolean join) { method in class:VolumeShaper.Operation.Builder
    [all...]
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
RunLocalBenchmarksActivity.java 96 fragmentTransaction.replace(R.id.list_fragment_container, resultsView);
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 77 replace(lines, toPosition(it.getStart()), toEndPosition(it.getStop()), ""); method
95 replace(lines, rootStartTag, rootEndTag, ""); method
99 replace(lines, endLayoutPositions.left, endLayoutPositions.right, ""); method
241 private static boolean replace(ArrayList<String> lines, Position start, Position end, method in class:XmlEditor
310 replace(lines, start, end, it.attrName.getText() + "=\"" + defaultVal + "\""); method
311 } else if (replace(lines, start, end, tag)) {
372 String unescaped = unquoted.replace("\"", "\\\"").replace("\\`", "`");
  /libcore/ojluni/src/main/java/java/lang/
String.java 616 // BEGIN Android-changed: Replace with implementation in runtime to access chars (see above).
619 // END Android-changed: Replace with implementation in runtime to access chars (see above).
744 // Android-changed: Replace arraycopy with native call since chars are managed by runtime.
2136 public String replace(char oldChar, char newChar) { method in class:String
2301 public String replace(CharSequence target, CharSequence replacement) { method in class:String
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Hashtable.java 516 * These mappings will replace any mappings that this hashtable had for any
961 public synchronized boolean replace(K key, V oldValue, V newValue) { method in class:Hashtable
983 public synchronized V replace(K key, V value) { method in class:Hashtable
    [all...]

Completed in 1123 milliseconds

<<11121314151617181920>>