/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
BaseRecognizer.cs | 358 s = Regex.Replace(s, "\n", "\\\\n"); 359 s = Regex.Replace(s, "\r", "\\\\r"); 360 s = Regex.Replace(s, "\t", "\\\\t"); 686 * have to return some token to replace the missing token, [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BaseRecognizer.cs | 423 s = Regex.Replace( s, "\n", "\\\\n" ); 424 s = Regex.Replace( s, "\r", "\\\\r" ); 425 s = Regex.Replace( s, "\t", "\\\\t" ); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 730 txt = txt.Replace( "%0A", "\n" ); // unescape \n 731 txt = txt.Replace( "%0D", "\r" ); // unescape \r 732 txt = txt.Replace( "%25", "%" ); // undo escaped escape chars
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/ |
nacl.scons | 21 env.Replace(TEST_DIR='${SOURCE_ROOT}/ppapi/native_client/tests/ppapi_browser/' +
|
/external/chromium_org/third_party/libjingle/source/talk/site_scons/ |
talk.py | 519 env.Replace(**{field : value}) 535 env.Replace(LIBS=static_libs)
|
/external/chromium_org/v8/test/mjsunit/ |
array-join.js | 46 // Replace array.prototype.toString.
|
/external/v8/test/mjsunit/ |
array-join.js | 46 // Replace array.prototype.toString.
|
/external/clang/lib/Parse/ |
ParseTemplate.cpp | 552 // latter case, replace the keyword with 'class'. 554 bool Replace = Tok.is(tok::kw_typename) || Tok.is(tok::kw_struct); 555 const Token& Next = Replace ? NextToken() : Tok; 560 << (Replace ? FixItHint::CreateReplacement(Tok.getLocation(), "class") 565 if (Replace) 835 /// \brief Replace the tokens that form a simple-template-id with an 840 /// simple-template-id and replace the tokens with a single annotation [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
metafunctions.cpp | 54 namespace Replace {
|
/external/openfst/src/include/fst/extensions/pdt/ |
replace.h | 0 // replace.h 19 // Recursively replace Fst arcs with other Fst(s) returning a PDT. 28 #include <fst/replace.h> 45 // identical to that in fst/lib/replace.h. The result is a PDT 51 void Replace(const vector<pair<typename Arc::Label, 71 // Queue of non-terminals to replace 73 // Map of non-terminals to replace to count 78 // PDT state corr. to ith replace FST start state. 80 // PDT state, weight pairs corr. to ith replace FST final state & weights.
|
/external/openfst/src/include/fst/script/ |
fstscript.h | 58 #include <fst/script/replace.h> 130 REGISTER_FST_OPERATION(Replace, Arc, ReplaceArgs);
|
/external/qemu/distrib/sdl-1.2.15/src/cpuinfo/ |
SDL_cpuinfo.c | 66 " popfl # Replace current EFLAGS value \n" 86 " popfq # Replace current EFLAGS value \n" 104 popfd ; Replace current EFLAGS value
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.pas | [all...] |
/external/chromium_org/chrome/browser/resources/signin_internals/ |
signin_internals.js | 165 // Replace the displayed values with the latest fetched ones.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/ |
background.js | 46 // Replace any extraneous whitespace to make it look nicer. 47 content = content.replace(/[\n\t]/g, ' '); 48 content = content.replace(/ {2,}/g, ' '); 52 content = content.replace(/<\/?pre>/g, ''); 56 content = content.replace(/<(\/)?b>/g, '<$1match>');
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayType.cpp | 175 CASE_NEW(Replace); 330 CASE_GET_INFO(Replace); 497 { "replace", SkType_Replace INIT_BOOL_FIELDS },
|
/external/chromium_org/v8/test/intl/ |
assert.js | 95 // TODO(cira): Replace String with PrettyPrint for objects and arrays.
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
generators-runtime.js | 32 // FIXME(wingo): Replace this reference with a more official link.
|
/external/lzma/CPP/7zip/UI/Console/ |
List.cpp | 345 s.Replace(wchar_t(0xA), L' ');
346 s.Replace(wchar_t(0xD), L' ');
|
/external/lzma/CPP/Common/ |
MyString.h | 490 int Replace(T oldChar, T newChar)
507 int Replace(const CStringBase &oldString, const CStringBase &newString)
|
/external/openfst/src/include/fst/ |
replace-util.h | 0 // replace-util.h 44 void Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >&, 84 // dependencies will result in an unexpandable replace fst. 159 // Computes the dependency graph of the replace Fsts. 178 bool epsilon_on_replace_; // see Replace() 325 if (j == root_fst_) // can't replace root 428 if (labels[i] != root_label_) // can't replace root 472 Replace(fst_pairs, mutable_fst_array_[s], label, epsilon_on_replace_);
|
replace.h | 0 // replace.h 39 #include <fst/replace-util.h> 46 // REPLACE STATE TUPLES AND TABLES 48 // The replace state table has the form 75 // \brief Tuple of information that uniquely defines a state in replace 94 // Equality of replace state tuples. 116 // Fingerprint for general replace state tuples. 146 // A generic hash function for replace state tuples. 168 // A two-level state table for replace. 236 // Default replace state tabl [all...] |
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/ |
sdlexe.cpp | 497 name.Replace(3, name.Length() - 3, _L("resource\\apps\\sdlexe.rsc")); 501 name.Replace(name.Length() - 3, 3, _L("mbm"));
|
/external/skia/src/animator/ |
SkDisplayType.cpp | 175 CASE_NEW(Replace); 330 CASE_GET_INFO(Replace); 497 { "replace", SkType_Replace INIT_BOOL_FIELDS },
|
/external/lzma/CPP/7zip/UI/Common/ |
Extract.cpp | 56 outDir.Replace(L"*", GetCorrectFsPath(arc.DefaultName));
|