HomeSort by relevance Sort by last modified time
    Searched refs:pdt (Results 1 - 21 of 21) sorted by null

  /external/openfst/src/include/fst/extensions/pdt/
pdtlib.h 17 // This is an experimental push-down transducer(PDT) library. A PDT is
19 // parentheses. To be interpreted as a PDT, the parentheses must balance on a
25 #include <fst/extensions/pdt/pdt.h>
26 #include <fst/extensions/pdt/compose.h>
27 #include <fst/extensions/pdt/expand.h>
28 #include <fst/extensions/pdt/replace.h>
pdtscript.h 16 // Convenience file for including all PDT operations at once, and/or
34 #include <fst/extensions/pdt/compose.h>
35 #include <fst/extensions/pdt/expand.h>
36 #include <fst/extensions/pdt/info.h>
37 #include <fst/extensions/pdt/replace.h>
38 #include <fst/extensions/pdt/reverse.h>
39 #include <fst/extensions/pdt/shortest-path.h>
45 // PDT COMPOSE
82 // PDT EXPAND
123 // PDT REPLAC
    [all...]
info.h 19 // Prints information about a PDT.
34 #include <fst/extensions/pdt/pdt.h>
paren.h 18 // Common classes for PDT parentheses
34 #include <fst/extensions/pdt/pdt.h>
35 #include <fst/extensions/pdt/collection.h>
114 // on a PDT.
142 // a PDT with bounded stack.
337 // Store balancing parenthesis data for a PDT. Allows on-the-fly
expand.h 19 // Expand a PDT to an FST.
27 #include <fst/extensions/pdt/pdt.h>
28 #include <fst/extensions/pdt/paren.h>
29 #include <fst/extensions/pdt/shortest-path.h>
30 #include <fst/extensions/pdt/reverse.h>
53 // Properties for an expanded PDT.
215 // Expands a pushdown transducer (PDT) encoded as an FST into an FST.
216 // This version is a delayed Fst. In the PDT, some transitions are
217 // labeled with open or close parentheses. To be interpreted as a PDT,
    [all...]
shortest-path.h 19 // Functions to find shortest paths in a PDT.
25 #include <fst/extensions/pdt/paren.h>
26 #include <fst/extensions/pdt/pdt.h>
50 // Class to store PDT shortest path results. Stores shortest path
54 // (a) is w.r.t a PDT search state - a pair of a PDT state and
55 // a 'start' state, which is either the PDT start state or
85 StateId state; // PDT state
86 StateId start; // PDT paren 'source' stat
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
ToolsLocator.java 17 package com.android.ide.eclipse.pdt.internal;
20 import com.android.ide.eclipse.pdt.PdtPlugin;
DevTreeProjectProvider.java 17 package com.android.ide.eclipse.pdt.internal;
19 import com.android.ide.eclipse.pdt.PdtPlugin;
DebuggerConnector.java 17 package com.android.ide.eclipse.pdt.internal;
SourceRevealer.java 17 package com.android.ide.eclipse.pdt.internal;
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/preferences/
PrefPage.java 17 package com.android.ide.eclipse.pdt.internal.preferences;
19 import com.android.ide.eclipse.pdt.PdtPlugin;
  /external/openfst/src/extensions/pdt/
pdtscript.cc 17 // Definitions of 'scriptable' versions of pdt operations, that is,
29 #include <fst/extensions/pdt/compose.h>
30 #include <fst/extensions/pdt/expand.h>
31 #include <fst/extensions/pdt/pdtscript.h>
32 #include <fst/extensions/pdt/replace.h>
33 #include <fst/extensions/pdt/reverse.h>
34 #include <fst/extensions/pdt/shortest-path.h>
pdtinfo.cc 19 // Prints out various information about a PDT such as number of
23 #include <fst/extensions/pdt/pdtscript.h>
26 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
31 string usage = "Prints out information about a PDT.\n\n Usage: ";
33 usage += " in.pdt\n";
49 LOG(ERROR) << argv[0] << ": No PDT parenthesis label pairs provided";
pdtreverse.cc 19 // Reverse a PDT.
22 #include <fst/extensions/pdt/pdtscript.h>
25 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
30 string usage = "Reverse a PDT.\n\n Usage: ";
32 usage += " in.pdt [out.fst]\n";
48 LOG(ERROR) << argv[0] << ": No PDT parenthesis label pairs provided";
pdtcompose.cc 19 // Composes a PDT and an FST.
28 #include <fst/extensions/pdt/pdtscript.h>
31 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
32 DEFINE_bool(left_pdt, true, "1st arg is PDT (o.w. 2nd arg).");
38 string usage = "Compose a PDT and an FST.\n\n Usage: ";
40 usage += " in.pdt in.fst [out.pdt]\n";
41 usage += " in.fst in.pdt [out.pdt]\n";
65 LOG(ERROR) << argv[0] << ": No PDT parenthesis label pairs provided"
    [all...]
pdtexpand.cc 20 // Expands a PDT and an FST.
23 #include <fst/extensions/pdt/pdtscript.h>
26 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
28 DEFINE_bool(keep_parentheses, false, "Keep PDT parentheses in result.");
35 string usage = "Expand a PDT and an FST.\n\n Usage: ";
37 usage += " in.pdt [out.fst]\n";
53 LOG(ERROR) << argv[0] << ": No PDT parenthesis label pairs provided";
pdtreplace.cc 23 #include <fst/extensions/pdt/pdtscript.h>
27 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
pdtshortestpath.cc 20 // Return the shortest path in a PDT.
23 #include <fst/extensions/pdt/pdtscript.h>
27 DEFINE_bool(keep_parentheses, false, "Keep PDT parentheses in result.");
31 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
36 string usage = "Shortest path in a PDT.\n\n Usage: ";
38 usage += " in.pdt [out.fst]\n";
54 LOG(ERROR) << argv[0] << ": No PDT parenthesis label pairs provided";
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
PdtPlugin.java 17 package com.android.ide.eclipse.pdt;
20 import com.android.ide.eclipse.pdt.internal.preferences.PrefPage;
30 public final static String PLUGIN_ID = "com.android.ide.eclipse.pdt"; //$NON-NLS-1$
  /external/icu4c/test/intltest/
calregts.cpp 294 SimpleTimeZone *pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, *ids->snext(status)); local
295 pdt->setStartRule(UCAL_APRIL, 1, UCAL_SUNDAY, 2 * 60 * 60 * 1000, status);
296 pdt->setEndRule(UCAL_OCTOBER, -1, UCAL_SUNDAY, 2 * 60 * 60 * 1000, status);
297 Calendar *calendar = new GregorianCalendar(pdt, status);
    [all...]
  /external/openfst/
configure     [all...]

Completed in 213 milliseconds