HomeSort by relevance Sort by last modified time
    Searched defs:Replace (Results 1 - 24 of 24) sorted by null

  /external/openfst/src/script/
replace.cc 19 #include <fst/script/replace.h>
24 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
28 if (!ArcTypesMatch(*tuples[i].second, *tuples[i+1].second, "Replace")) {
33 if (!ArcTypesMatch(*tuples[0].second, *ofst, "Replace")) return;
37 Apply<Operation<ReplaceArgs> >("Replace", ofst->ArcType(), &args);
40 REGISTER_FST_OPERATION(Replace, StdArc, ReplaceArgs);
41 REGISTER_FST_OPERATION(Replace, LogArc, ReplaceArgs);
42 REGISTER_FST_OPERATION(Replace, Log64Arc, ReplaceArgs);
  /external/chromium/chrome/browser/ui/views/tabs/
native_view_photobooth_gtk.cc 26 void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) {
native_view_photobooth_win.cc 61 Replace(NULL);
65 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) {
92 // us until someone calls Replace(NULL).
95 Replace(current_hwnd_);
164 Replace(initial_hwnd);
  /external/openfst/src/include/fst/script/
replace.h 27 #include <fst/replace.h>
36 void Replace(ReplaceArgs *args) {
38 // pair<real label, real fst> that the real Replace will use
52 Replace(fst_tuples, ofst, args->arg3, args->arg4);
55 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
118 =begin rdoc ANTLR3::TokenRewriteStream::Replace
127 class Replace < RewriteOperation
129 @operation_name = 'replace'.freeze
165 class Delete < Replace
180 def replace( *range_arguments ) method in class:ANTLR3.RewriteProgram
183 op = Replace.new( @stream, range, text )
220 when Replace
227 when Replace
245 when Replace
408 def replace( *args ) method
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 45 * You can insert stuff, replace, and delete chunks. Note that the
275 public virtual void Replace(int index, object text) {
276 Replace(DEFAULT_PROGRAM_NAME, index, index, text);
279 public virtual void Replace(int from, int to, object text) {
280 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
283 public virtual void Replace(IToken indexT, object text) {
284 Replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text);
287 public virtual void Replace(IToken from, IToken to, object text) {
288 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
291 public virtual void Replace(string programName, int from, int to, object text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 48 * You can insert stuff, replace, and delete chunks. Note that the
312 public virtual void Replace( int index, object text )
314 Replace( DEFAULT_PROGRAM_NAME, index, index, text );
317 public virtual void Replace( int from, int to, object text )
319 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
322 public virtual void Replace( IToken indexT, object text )
324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text );
327 public virtual void Replace( IToken from, IToken to, object text )
329 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
332 public virtual void Replace( string programName, int from, int to, object text
    [all...]
  /external/chromium/chrome/browser/notifications/
notification_ui_manager.cc 36 void Replace(const Notification& new_notification) {
193 (*iter)->Replace(notification);
  /external/clang/test/SemaTemplate/
deduction.cpp 38 struct Replace {
44 struct Replace<_1, Arg1, Arg2> {
49 struct Replace<_2, Arg1, Arg2> {
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
61 struct Replace<TT<T1>, Arg1, Arg2> {
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type;
67 struct Replace<TT<T1, T2>, Arg1, Arg2> {
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T2, Arg1, Arg2>::type> type
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
replace.h 0 // replace.h
19 // Recursively replace Fst arcs with other Fst(s) returning a PDT.
24 #include <fst/replace.h>
41 // identical to that in fst/lib/replace.h. The result is a PDT
47 void Replace(const vector<pair<typename Arc::Label,
66 deque<size_t> non_term_queue; // Queue of non-terminals to replace
67 unordered_set<Label> non_term_set; // Set of non-terminals to replace
71 // PDT state corr. to ith replace FST start state.
73 // PDT state, weight pairs corr. to ith replace FST final state & weights.
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 54 namespace Replace {
  /external/openfst/src/include/fst/
rational.h 31 #include <fst/replace.h>
96 StateId Start() { return Replace()->Start(); }
98 Weight Final(StateId s) { return Replace()->Final(s); }
100 size_t NumArcs(StateId s) { return Replace()->NumArcs(s); }
103 return Replace()->NumInputEpsilons(s);
107 return Replace()->NumOutputEpsilons(s);
114 if ((mask & kError) && Replace()->Properties(kError, false))
242 ReplaceFst<A> *Replace() const {
281 GetImpl()->Replace()->InitStateIterator(data);
285 GetImpl()->Replace()->InitArcIterator(s, data)
    [all...]
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/regex-re2/util/
pcre.cc 326 bool PCRE::Replace(string *str,
340 str->replace(vec[0], vec[1] - vec[0], s);
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 547 // latter case, replace the keyword with 'class'.
549 bool Replace = Tok.is(tok::kw_typename) || Tok.is(tok::kw_struct);
550 const Token& Next = Replace ? NextToken() : Tok;
555 << (Replace ? FixItHint::CreateReplacement(Tok.getLocation(), "class")
560 if (Replace)
745 /// \brief Replace the tokens that form a simple-template-id with an
750 /// simple-template-id and replace the tokens with a single annotation
    [all...]
  /external/regex-re2/re2/
re2.cc 307 // Returns the maximum submatch needed for the rewrite to be done by Replace().
326 bool RE2::Replace(string *str,
342 str->replace(vec[0].data() - str->data(), vec[0].size(), s);
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
replace.h 0 // replace.h
32 // By default ReplaceFst will copy the input label of the 'replace arc'.
52 // \brief Implementation class for replace class Fst
54 // The replace implementation class supports a dynamic
96 // constructor for replace class implementation.
101 SetType("replace");
126 SetType("replace");
170 // Computes the dependency graph of the replace class and returns
172 // in an un-expandable replace fst.
217 // Return or compute start state of replace fs
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
RenderState.java 232 * Replace the value in the stencil buffer with the reference value.
234 Replace,
    [all...]
  /external/v8/src/
liveedit.cc 960 void Replace(Code* substitution) {
995 // so temporary replace the pointers with offset numbers
1007 visitor.Replace(substitution);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
650 // Replace all uses. If any nodes become isomorphic to other nodes and
687 // Replace the old value with the new one.
718 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
719 Replace = false;
727 Replace = true;
763 bool Replace = false;
764 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
769 if (Replace)
778 bool Replace = false
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 699 milliseconds