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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
README 0 Replacement modules for an existing REXX interpreter. Not standalone.
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecReplacement.cpp 21 // The 'replacement' label itself should not be referenceable by
25 registrar("replacement", "replacement");
27 registrar("csiso2022kr", "replacement");
28 registrar("hz-gb-2312", "replacement");
29 registrar("iso-2022-cn", "replacement");
30 registrar("iso-2022-cn-ext", "replacement");
31 registrar("iso-2022-kr", "replacement");
41 registrar("replacement", newStreamingTextDecoderReplacement, 0);
TextCodec.cpp 38 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement)
42 replacement[0] = '?';
43 replacement[1] = 0;
46 snprintf(replacement, sizeof(UnencodableReplacementArray), "&#%u;", codePoint);
47 return static_cast<int>(strlen(replacement));
49 snprintf(replacement, sizeof(UnencodableReplacementArray), "%%26%%23%u%%3B", codePoint);
50 return static_cast<int>(strlen(replacement));
53 replacement[0] = 0;
TextCodecReplacementTest.cpp 26 // "replacement" is not a valid alias for itself
27 EXPECT_FALSE(TextEncoding("replacement").isValid());
28 EXPECT_FALSE(TextEncoding("rEpLaCeMeNt").isValid());
31 EXPECT_STREQ("replacement", TextEncoding(replacementAlias).name());
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 14 def replacement(*args, **kwargs): function in function:broken.wrapper
21 replacement.__doc__ = test_method.__doc__
22 replacement.__name__ = 'XXX_' + test_method.__name__
23 replacement.todo = reason
24 return replacement
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 36 Replacement createReplacement(SourceLocation Start, unsigned Length,
38 return Replacement(Context.Sources, Start, Length, ReplacementText);
47 Replacement Replace(createReplacement(Location, 4, ""));
55 Replacement Replace(createReplacement(Location, 17, ""));
63 Replacement Replace(createReplacement(Location, 0, "result"));
72 Replacement Replace(createReplacement(Location, 12, "x"));
81 Replacement Replace1(createReplacement(Location1, 12, "x\ny\n"));
88 Replacement Replace2(createReplacement(Location2, 1, "f"));
94 Replacement Replace("nonexistent-file.cpp", 0, 1, "");
99 Replacement Replace("/path/to/file.cpp", 0, 1, "")
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
UnfoldShortCircuitAST.cpp 38 TIntermSelection *replacement = NULL; local
43 replacement = UnfoldOR(node->getLeft(), node->getRight());
46 replacement = UnfoldAND(node->getLeft(), node->getRight());
51 if (replacement)
54 NodeUpdateEntry(getParentNode(), node, replacement));
66 entry.original, entry.replacement);
72 // node; instead, we update the replacement node.
77 entry2.parent = entry.replacement;
UnfoldShortCircuitAST.h 17 // be replaced, and creates the corresponding replacement nodes. However,
37 replacement(_replacement) {}
41 TIntermNode *replacement; member in struct:UnfoldShortCircuitAST::NodeUpdateEntry
  /external/clang/include/clang/Tooling/
Refactoring.h 66 /// \brief A text replacement.
68 /// Represents a SourceManager independent replacement of a range of text in a
70 class Replacement {
72 /// \brief Creates an invalid (not applicable) replacement.
73 Replacement();
75 /// \brief Creates a replacement of the range [Offset, Offset+Length) in
81 Replacement(StringRef FilePath, unsigned Offset,
84 /// \brief Creates a Replacement of the range [Start, Start+Length) with
86 Replacement(const SourceManager &Sources, SourceLocation Start, unsigned Length,
89 /// \brief Creates a Replacement of the given range with ReplacementText
    [all...]
ReplacementsYaml.h 24 LLVM_YAML_IS_SEQUENCE_VECTOR(clang::tooling::Replacement)
29 /// \brief Specialized MappingTraits to describe how a Replacement is
31 template <> struct MappingTraits<clang::tooling::Replacement> {
32 /// \brief Helper to (de)serialize a Replacement since we don't have direct
38 NormalizedReplacement(const IO &, const clang::tooling::Replacement &R)
42 clang::tooling::Replacement denormalize(const IO &) {
43 return clang::tooling::Replacement(FilePath, Offset, Length,
53 static void mapping(IO &Io, clang::tooling::Replacement &R) {
54 MappingNormalization<NormalizedReplacement, clang::tooling::Replacement>
  /external/smack/src/org/xbill/DNS/
NAPTRRecord.java 20 private Name replacement; field in class:NAPTRRecord
38 * @param replacement The domain-name to query for the next DNS resource
44 String flags, String service, String regexp, Name replacement)
57 this.replacement = checkName("replacement", replacement);
67 replacement = new Name(in);
82 replacement = st.getName(origin);
99 sb.append(replacement);
133 /** Returns the replacement domain-name *
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ReplacementTransformationMethodTest.java 34 private final char[] REPLACEMENT = new char[] { '3', '4' };
51 new MyReplacementTransformationMethod(ORIGINAL, REPLACEMENT);
62 REPLACEMENT);
75 // replacement has same chars
84 // replacement has more chars than original
96 new MyReplacementTransformationMethod(ORIGINAL_WITH_SAME_CHARS, REPLACEMENT);
103 // original has more chars than replacement
104 method = new MyReplacementTransformationMethod(ORIGINAL_WITH_MORE_CHARS, REPLACEMENT);
107 fail("Threre is more chars in the original than replacement.");
115 REPLACEMENT);
    [all...]
  /external/chromium_org/tools/git/
mffr.py 6 """Usage: mffr.py [-d] [-g *.h] [-g *.cc] REGEXP REPLACEMENT
16 REGEXP uses full Python regexp syntax. REPLACEMENT can use
32 def MultiFileFindReplace(original, replacement, file_globs):
35 Given an |original| string and a |replacement| string, find matching
40 |replacement|. |replacement| may use capture group back-references.
44 replacement: '\1chrome/browser/ui/browser/browser.h\3'
66 contents = re.sub(original, replacement, original_contents)
78 (1) %prog <options> REGEXP REPLACEMENT
79 REGEXP uses full Python regexp syntax. REPLACEMENT can use back-references
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
app_indicator_icon_menu.h 26 // Sets a menu item at the top of |gtk_menu_| as a replacement for the app
38 // Callback for when the "click action replacement" menu item is activated.
49 // Whether a "click action replacement" menu item has been added to the menu.
52 // Called when the click action replacement menu item is activated. When a
  /external/qemu/distrib/mini-glib/
README 1 This is a tiny replacement for the GLib library that can be used when building
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 16 replacement), where the regex and replacement will be used as in 're.sub' to
17 execute the variable replacement.
34 for regex_string,replacement in substitutions:
36 data = regex.sub(replacement, data)
  /external/harfbuzz_ng/src/
hb-utf-private.hh 44 hb_codepoint_t replacement)
48 * Generates one "replacement" for each ill-formed byte. */
105 *unicode = replacement;
113 hb_codepoint_t replacement)
119 if (likely (next (text, end, unicode, replacement) == end))
122 *unicode = replacement;
143 hb_codepoint_t replacement)
167 *unicode = replacement;
175 hb_codepoint_t replacement)
189 if (likely (next (text, end, unicode, replacement) == end)
    [all...]
  /external/chromium_org/components/policy/core/browser/
policy_error_map.cc 40 const std::string& replacement)
43 replacement_(replacement) {}
68 const std::string& replacement)
69 : SimplePendingError(policy_name, message_id, replacement),
90 const std::string& replacement)
91 : SimplePendingError(policy_name, message_id, replacement),
111 const std::string& replacement)
112 : SimplePendingError(policy_name, -1, replacement),
159 const std::string& replacement) {
160 AddError(new SimplePendingError(policy, message_id, replacement));
    [all...]
  /external/clang/lib/Tooling/
Refactoring.cpp 30 Replacement::Replacement()
33 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
38 Replacement::Replacement(const SourceManager &Sources, SourceLocation Start,
43 Replacement::Replacement(const SourceManager &Sources,
49 bool Replacement::isApplicable() const {
53 bool Replacement::apply(Rewriter &Rewrite) const
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
charger_replacement_ui.h 12 // A WebUI to host the spring charger replacement web ui.
  /external/chromium_org/third_party/WebKit/public/web/
WebTextCheckingResult.h 54 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
58 , replacement(replacement)
70 WebString replacement; member in struct:blink::WebTextCheckingResult
  /external/doclava/res/assets/templates/
components.cs 2 <?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?>
  /external/llvm/test/Transforms/ScalarRepl/
2003-09-12-IncorrectPromote.ll 1 ; Scalar replacement was incorrectly promoting this alloca!!
  /packages/apps/Email/src/com/android/email/service/
EmailUpgradeBroadcastReceiver.java 8 * {@link BroadcastReceiver} for app upgrade. This listens to package replacement (for unbundled
  /external/chromium_org/chrome/common/
spellcheck_result.h 12 // possible replacement of the misspelling if it is available.
33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
39 base::string16 replacement; member in struct:SpellCheckResult

Completed in 377 milliseconds

1 2 3 4 5 6 7 8 91011>>