HomeSort by relevance Sort by last modified time
    Searched full:replacetext (Results 1 - 25 of 37) sorted by null

1 2

  /external/clang/unittests/Tooling/
RewriterTest.cpp 18 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
27 Context.Rewrite.ReplaceText(Context.getLocation(FailingID, 1, 2), 1, "other");
30 Context.Rewrite.ReplaceText(Context.getLocation(WorkingID, 2, 1), 5,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
QueryTextView.java 62 protected void replaceText(CharSequence text) {
94 replaceText(completion.getText());
  /cts/tests/tests/widget/src/android/widget/cts/
MultiAutoCompleteTextViewTest.java 190 multiAutoCompleteTextView.replaceText("Android Test.");
194 multiAutoCompleteTextView.replaceText("replace test");
285 protected void replaceText(CharSequence text) {
286 super.replaceText(text);
AutoCompleteTextViewTest.java 295 autoCompleteTextView.replaceText("Text");
301 autoCompleteTextView.replaceText("Another");
742 protected void replaceText(CharSequence text) {
743 super.replaceText(text);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAutoCompleteTextView.java 56 public void replaceText(CharSequence text) {
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 88 /// ReplaceText - This method replaces a range of characters in the input
91 void ReplaceText(unsigned OrigOffset, unsigned OrigLength,
231 /// ReplaceText - This method replaces a range of characters in the input
234 bool ReplaceText(SourceLocation Start, unsigned OrigLength,
237 /// ReplaceText - This method replaces a range of characters in the input
240 bool ReplaceText(SourceRange range, StringRef NewStr) {
241 return ReplaceText(range.getBegin(), getRangeSize(range), NewStr);
244 /// ReplaceText - This method replaces a range of characters in the input
247 bool ReplaceText(SourceRange range, SourceRange replacementRange);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShadowAutoCompleteTextViewTest.java 91 replaceText(text);
  /external/chromium_org/third_party/icu/source/tools/genrb/
prscmnts.cpp 37 UnicodeString replaceText, UErrorCode *status){
52 dest = myMatcher.replaceAll(replaceText,*status);
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 105 /// ReplaceText - This method replaces a range of characters in the input
108 void RewriteBuffer::ReplaceText(unsigned OrigOffset, unsigned OrigLength,
300 /// ReplaceText - This method replaces a range of characters in the input
303 bool Rewriter::ReplaceText(SourceLocation Start, unsigned OrigLength,
309 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, NewStr);
313 bool Rewriter::ReplaceText(SourceRange range, SourceRange replacementRange) {
324 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
342 ReplaceText(From->getLocStart(), Size, Str);
HTMLRewrite.cpp 128 RB.ReplaceText(FilePos, 1, " ");
132 RB.ReplaceText(FilePos, 1, "<hr>");
141 RB.ReplaceText(FilePos, 1,
145 RB.ReplaceText(FilePos, 1, StringRef(" ", NumSpaces));
150 RB.ReplaceText(FilePos, 1, "&lt;");
155 RB.ReplaceText(FilePos, 1, "&gt;");
160 RB.ReplaceText(FilePos, 1, "&amp;");
  /external/icu4c/tools/genrb/
prscmnts.cpp 37 UnicodeString replaceText, UErrorCode *status){
52 dest = myMatcher.replaceAll(replaceText,*status);
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 236 if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, Str)) {
256 void ReplaceText(SourceLocation Start, unsigned OrigLength,
259 if (!Rewrite.ReplaceText(Start, OrigLength, Str) ||
751 ReplaceText(ImportLoc, ImportLen, "include");
    [all...]
RewriteModernObjC.cpp 273 if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, Str)) {
293 void ReplaceText(SourceLocation Start, unsigned OrigLength,
296 if (!Rewrite.ReplaceText(Start, OrigLength, Str) ||
    [all...]
FixItRewriter.cpp 69 Rewrite.ReplaceText(range.getBegin(), Rewrite.getRangeSize(range), text);
  /external/clang/lib/Tooling/
Refactoring.cpp 66 // ReplaceText returns false on success.
67 // ReplaceText only fails if the source location is not a file location, in
69 bool RewriteSucceeded = !Rewrite.ReplaceText(
  /external/clang/include/clang/Edit/
Commit.h 86 bool replaceText(SourceLocation loc, StringRef text,
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 197 replaceText(text, newCursorPosition, false);
437 replaceText(text, newCursorPosition, true);
596 private void replaceText(CharSequence text, int newCursorPosition,
  /external/clang/lib/ARCMigrate/
Internals.h 70 void replaceText(SourceLocation loc, StringRef text,
TransBlockObjCVariable.cpp 144 Pass.TA.replaceText(SM.getExpansionLoc(attr->getLocation()),
TransformActions.cpp 141 void replaceText(SourceLocation loc, StringRef text,
338 void TransformActionsImpl::replaceText(SourceLocation loc, StringRef text,
655 void TransformActions::replaceText(SourceLocation loc, StringRef text,
657 static_cast<TransformActionsImpl*>(Impl)->replaceText(loc, text,
TransEmptyStatementsAndDealloc.cpp 244 TA.replaceText(FinalizeM->getSelectorStartLoc(), "finalize", "dealloc");
TransGCAttrs.cpp 215 TA.replaceText(Attr.Loc, "__weak", "__unsafe_unretained");
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
actionscript.php 115 'replaceSel', 'replaceText', 'resolutionX', 'resolutionY', 'restrict', 'reverse', 'RIGHT',
  /frameworks/base/core/java/android/widget/
MultiAutoCompleteTextView.java 187 protected void replaceText(CharSequence text) {
  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model.h 94 void ReplaceText(const string16& text) {

Completed in 5146 milliseconds

1 2