/external/openfst/src/script/ |
concat.cc | 29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args); 37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args);
|
connect.cc | 25 Apply<Operation<MutableFstClass> >("Connect", fst->ArcType(), fst);
|
invert.cc | 25 Apply<Operation<MutableFstClass> >("Invert", fst->ArcType(), fst);
|
prune.cc | 29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args); 37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args); 47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args); 55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
|
topsort.cc | 27 Apply<Operation<TopSortArgs> >("TopSort", fst->ArcType(), &args);
|
verify.cc | 27 Apply<Operation<VerifyArgs> >("Verify", fst.ArcType(), &args);
|
relabel.cc | 32 Apply<Operation<RelabelArgs1> >("Relabel", ofst->ArcType(), &args); 41 Apply<Operation<RelabelArgs2> >("Relabel", ofst->ArcType(), &args); 49 Apply<Operation<RelabelArgs3> >("Relabel", fst->ArcType(), &args);
|
rmepsilon.cc | 30 Apply<Operation<RmEpsilonArgs1> >("RmEpsilon", ifst.ArcType(), &args); 38 Apply<Operation<RmEpsilonArgs2> >("RmEpsilon", fst->ArcType(), &args); 45 Apply<Operation<RmEpsilonArgs3> >("RmEpsilon", fst->ArcType(), &args);
|
shortest-distance.cc | 29 Apply<Operation<ShortestDistanceArgs1> >("ShortestDistance", fst.ArcType(), 38 Apply<Operation<ShortestDistanceArgs2> >("ShortestDistance", ifst.ArcType(), 46 Apply<Operation<ShortestDistanceArgs3> >("ShortestDistance", ifst.ArcType(),
|
/frameworks/base/obex/javax/obex/ |
ServerRequestHandler.java | 54 * an OBEX operation and a Connection ID was specified, no Connection ID will be 63 * <code>InputStream</code> from the <code>Operation</code> object passed to the 215 * @param operation contains the headers sent by the client and allows new 223 public int onPut(Operation operation) { 236 * @param operation contains the headers sent by the client and allows new 244 public int onGet(Operation operation) {
|
/frameworks/base/tools/preload/ |
Android.mk | 9 Operation.java \
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Gt.java | 27 * The '>' operation expression executer. 29 public class Gt extends Operation 34 * Apply the operation to two operands, and return the result. 40 * @return non-null reference to the XObject that represents the result of the operation.
|
Gte.java | 27 * The '>=' operation expression executer. 29 public class Gte extends Operation 34 * Apply the operation to two operands, and return the result. 40 * @return non-null reference to the XObject that represents the result of the operation.
|
Lt.java | 27 * The '<' operation expression executer. 29 public class Lt extends Operation 34 * Apply the operation to two operands, and return the result. 40 * @return non-null reference to the XObject that represents the result of the operation.
|
Lte.java | 27 * The '<=' operation expression executer. 29 public class Lte extends Operation 34 * Apply the operation to two operands, and return the result. 40 * @return non-null reference to the XObject that represents the result of the operation.
|
NotEquals.java | 27 * The '!=' operation expression executer. 29 public class NotEquals extends Operation 34 * Apply the operation to two operands, and return the result. 40 * @return non-null reference to the XObject that represents the result of the operation.
|
Quo.java | 27 * The 'quo' operation expression executer. (no longer supported by XPath). 30 public class Quo extends Operation 37 * Apply the operation to two operands, and return the result. 43 * @return non-null reference to the XObject that represents the result of the operation.
|
Div.java | 28 * The 'div' operation expression executer. 30 public class Div extends Operation 35 * Apply the operation to two operands, and return the result. 41 * @return non-null reference to the XObject that represents the result of the operation. 52 * Evaluate this operation directly to a double. 56 * @return The result of the operation as a double.
|
Minus.java | 28 * The binary '-' operation expression executer. 30 public class Minus extends Operation 35 * Apply the operation to two operands, and return the result. 42 * result of the operation. 53 * Evaluate this operation directly to a double. 57 * @return The result of the operation as a double.
|
/external/chromium_org/net/disk_cache/ |
tracing_cache_backend.h | 18 // of the operation until the result is delivered. 46 enum Operation { 60 void RecordEvent(base::TimeTicks start_time, Operation op, std::string key, 63 void BackendOpComplete(base::TimeTicks start_time, Operation op, 67 net::CompletionCallback BindCompletion(Operation op,
|
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
operation.h | 30 // Encapsulates an operation being run on behalf of the 31 // OperationManager. Construction of the operation does not start 32 // anything. The operation's Start method should be called to start it, and 33 // then the Cancel method will stop it. The operation will call back to the 36 // Each stage of the operation is generally divided into three phases: Start, 40 class Operation 41 : public base::RefCountedThreadSafe<Operation> { 47 Operation(base::WeakPtr<OperationManager> manager, 51 // Starts the operation. 54 // Cancel the operation. This must be called to clean up internal state an [all...] |
operation_manager.cc | 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h" 53 base::Bind(&Operation::Abort, 65 const Operation::StartWriteCallback& callback) { 73 scoped_refptr<Operation> operation( 82 operations_[extension_id] = operation; 86 base::Bind(&Operation::Start, 87 operation.get())); 96 const Operation::StartWriteCallback& callback) { 103 scoped_refptr<Operation> operation [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
AsyncQueryServiceHelper.java | 19 import com.android.calendar.AsyncQueryService.Operation; 108 builder.append(Operation.opToChar(op)); 142 * Compares an user-visible operation to this private OperationInfo 145 * @param o operation to be compared 148 public boolean equivalent(Operation o) { 154 * Queues the operation for execution 157 * @param args OperationInfo object describing the operation 172 * Gets the last delayed operation. It is typically used for canceling. 174 * @return Operation object which contains of the last cancelable operation [all...] |
/external/openfst/src/extensions/far/ |
farscript.cc | 49 Apply<Operation<FarCompileStringsArgs> >("FarCompileStrings", arc_type, 64 Apply<Operation<FarCreateArgs> >("FarCreate", arc_type, &args); 73 Apply<Operation<FarEqualArgs> >("FarEqual", arc_type, &args_with_retval); 89 Apply<Operation<FarExtractArgs> >("FarExtract", arc_type, &args); 99 Apply<Operation<FarInfoArgs> >("FarInfo", arc_type, &args); 120 Apply<Operation<FarPrintStringsArgs> >("FarPrintStrings", arc_type,
|
/external/openfst/src/extensions/pdt/ |
pdtscript.cc | 51 Apply<Operation<PdtComposeArgs> >("PdtCompose", ifst1.ArcType(), &args); 59 Apply<Operation<PdtExpandArgs> >("PdtExpand", ifst.ArcType(), &args); 81 Apply<Operation<PdtReplaceArgs> >("PdtReplace", ofst->ArcType(), &args); 89 Apply<Operation<PdtReverseArgs> >("PdtReverse", ifst.ArcType(), &args); 98 Apply<Operation<PdtShortestPathArgs> >("PdtShortestPath", 105 Apply<Operation<PrintPdtInfoArgs> >("PrintPdtInfo", ifst.ArcType(), &args);
|