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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { function in class:clang::ASTUnresolvedSet
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { function in class:clang::ASTUnresolvedSet
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { function in class:clang::ASTUnresolvedSet
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
encoder.py 37 def replace(match): function in function:encode_basestring
39 return '"' + ESCAPE.sub(replace, s) + '"'
48 def replace(match): function in function:py_encode_basestring_ascii
64 return '"' + str(ESCAPE_ASCII.sub(replace, s)) + '"'
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
encoder.py 37 def replace(match): function in function:encode_basestring
39 return '"' + ESCAPE.sub(replace, s) + '"'
48 def replace(match): function in function:py_encode_basestring_ascii
64 return '"' + str(ESCAPE_ASCII.sub(replace, s)) + '"'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
encoder.py 37 def replace(match): function in function:encode_basestring
39 return '"' + ESCAPE.sub(replace, s) + '"'
48 def replace(match): function in function:py_encode_basestring_ascii
64 return '"' + str(ESCAPE_ASCII.sub(replace, s)) + '"'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 37 def replace(match): function in function:encode_basestring
39 return '"' + ESCAPE.sub(replace, s) + '"'
48 def replace(match): function in function:py_encode_basestring_ascii
64 return '"' + str(ESCAPE_ASCII.sub(replace, s)) + '"'
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddPrefixFix.java 53 document.replace(start, 0, prefix + ':');
DosLineEndingsFix.java 53 document.replace(i, 1, "\n"); //$NON-NLS-1$
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
StringMatcher.java 241 public int replace(Replaceable text, method in class:StringMatcher
259 text.replace(start, limit, ""); // delete original text
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
SpannableBuilder.java 292 * {@link SpannableStringBuilder#replace(int, int, CharSequence)}.
301 public SpannableStringBuilder replace(int start, int end, CharSequence tb) { method in class:SpannableBuilder
303 super.replace(start, end, tb);
309 public SpannableStringBuilder replace(int start, int end, CharSequence tb, int tbstart, method in class:SpannableBuilder
312 super.replace(start, end, tb, tbstart, tbend);
386 * Prevent the onSpanAdded calls to DynamicLayout$ChangeWatcher if in a replace operation
398 * Prevent the onSpanRemoved calls to DynamicLayout$ChangeWatcher if in a replace operation
410 * Prevent the onSpanChanged calls to DynamicLayout$ChangeWatcher if in a replace operation
  /libcore/ojluni/src/main/java/java/lang/
StringBuffer.java 450 public synchronized StringBuffer replace(int start, int end, String str) { method in class:StringBuffer
452 super.replace(start, end, str);
  /developers/build/prebuilts/gradle/RuntimePermissions/Application/src/main/java/com/example/android/system/runtimepermissions/
MainActivity.java 232 .replace(R.id.sample_content_fragment, CameraPreviewFragment.newInstance())
244 .replace(R.id.sample_content_fragment, ContactsFragment.newInstance())
310 transaction.replace(R.id.sample_content_fragment, fragment);
  /developers/samples/android/system/RuntimePermissions/Application/src/main/java/com/example/android/system/runtimepermissions/
MainActivity.java 232 .replace(R.id.sample_content_fragment, CameraPreviewFragment.newInstance())
244 .replace(R.id.sample_content_fragment, ContactsFragment.newInstance())
310 transaction.replace(R.id.sample_content_fragment, fragment);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentCustomAnimations.java 82 ft.replace(R.id.simple_fragment, newFragment);
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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
inspect_fodder2.py 8 def replace(func): function
20 @replace
  /external/annotation-tools/scene-lib/src/annotations/util/coll/
LinkedHashKeyedSet.java 93 case REPLACE:
171 public V replace(V v) { method in class:LinkedHashKeyedSet
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 35 * You can insert stuff, replace, and delete chunks. Note that the
137 public function replace(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void { function
143 throw new Error("replace: range invalid: "+fromIndex+".."+toIndex+"(size="+tokens.length+")");
287 * R.x-y.u = replace x-y indexed tokens with u
289 * First we need to examine replaces. For any replace op:
292 * 2. Drop any replace op before that is contained completely within
294 * 3. Throw exception upon boundary overlap with any previous replace.
299 * 2. for any prior replace with same left boundary, combine this
300 * insert with replace and delete this replace
    [all...]
  /external/clang/include/clang/AST/
UnresolvedSet.h 93 bool replace(const NamedDecl* Old, NamedDecl *New) { function in class:clang::UnresolvedSetImpl
102 void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); } function in class:clang::UnresolvedSetImpl
104 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { function in class:clang::UnresolvedSetImpl
  /external/clang/include/clang/Edit/
Commit.h 84 bool replace(CharSourceRange range, StringRef text);
101 bool replace(SourceRange TokenRange, StringRef text) { function in class:clang::edit::Commit
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
  /external/clang/lib/Edit/
Commit.cpp 111 bool Commit::replace(CharSourceRange range, StringRef text) { function in class:Commit
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
MapMaker.java 91 public boolean replace(K key, V oldValue, V newValue) { method in class:MapMaker.ExpiringComputingMap
100 public V replace(K key, V value) { method in class:MapMaker.ExpiringComputingMap
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NameUnicodeTransliterator.java 129 text.replace(openPos, cursor, str);
UnescapeTransliterator.java 240 text.replace(start, s, str);

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 91011>>