/external/openfst/src/script/ |
compose.cc | 19 #include <fst/script/compose.h> 25 void Compose(const FstClass &ifst1, const FstClass &ifst2, 27 if (!ArcTypesMatch(ifst1, ifst2, "Compose") || 28 !ArcTypesMatch(*ofst, ifst1, "Compose")) return; 31 Apply<Operation<ComposeArgs1> >("Compose", ifst1.ArcType(), &args); 34 void Compose(const FstClass &ifst1, const FstClass &ifst2, 36 if (!ArcTypesMatch(ifst1, ifst2, "Compose") || 37 !ArcTypesMatch(*ofst, ifst1, "Compose")) return; 40 Apply<Operation<ComposeArgs2> >("Compose", ifst1.ArcType(), &args); 43 REGISTER_FST_OPERATION(Compose, StdArc, ComposeArgs1) [all...] |
Makefile.am | 5 libfstscript_la_SOURCES = arcsort.cc closure.cc compile.cc compose.cc \
|
/external/openfst/src/include/fst/script/ |
compose.h | 22 #include <fst/compose.h> 31 void Compose(ComposeArgs1 *args) { 36 Compose(ifst1, ifst2, ofst, args->arg4); 45 void Compose(ComposeArgs2 *args) { 50 Compose(ifst1, ifst2, ofst, args->arg4); 53 void Compose(const FstClass &ifst1, const FstClass &ifst2, 57 void Compose(const FstClass &ifst1, const FstClass &ifst2,
|
/external/skia/gm/ |
testimagefilters.cpp | 52 SkImageFilter* compose = new SkComposeImageFilter(outer, inner); local 53 SkAutoUnref aur2(compose); 61 return new SkMergeImageFilter(compose, blue); 69 SkImageFilter* compose = new SkComposeImageFilter(outer, inner); local 70 SkAutoUnref aur2(compose); 78 return new SkMergeImageFilter(compose, blue);
|
patheffects.cpp | 21 SkPathEffect* compose; local 23 compose = new SkComposePathEffect(pe, corner); 26 compose = corner; 28 paint->setPathEffect(compose)->unref();
|
/external/libnfc-nci/src/nfc/nci/ |
nci_hmsgs.c | 38 ** Description compose and send CORE RESET command to command queue 70 ** Description compose and send CORE INIT command to command queue 101 ** Description compose and send CORE GET_CONFIG command to command queue 134 ** Description compose and send CORE SET_CONFIG command to command queue 187 ** Description compose and send CORE CONN_CREATE command to command queue 226 ** Description compose and send CORE CONN_CLOSE command to command queue 261 ** Description compose and send NFCEE Management NFCEE_DISCOVER command 294 ** Description compose and send NFCEE Management NFCEE MODE SET command 330 ** Description compose and send RF Management DISCOVER command to command queue 373 ** Description compose and send RF Management DISCOVER SELECT comman [all...] |
/external/openfst/src/include/fst/ |
randequivalent.h | 26 #include <fst/compose.h> 82 Compose(ipath, sfst1, &cfst1); 84 Compose(cfst1, opath, &pfst1); 92 Compose(ipath, sfst2, &cfst2); 94 Compose(cfst2, opath, &pfst2);
|
compose.h | 0 // compose.h 30 #include <fst/compose-filter.h> 55 F *filter; // Composition filter (see compose-filter.h) 56 T *state_table; // Composition state table (see compose-state-table.h) 86 F *filter; // Composition filter (see compose-filter.h) 87 T *state_table; // Composition state table (see compose-state-table.h) 127 SetType("compose"); 201 // matcher.h), composition filter (see compose-filter-inl.h) and 202 // the composition state table (see compose-state-table.h). 463 // Compose specifying only caching options [all...] |
/external/openfst/src/bin/ |
fstcompose.cc | 23 #include <fst/script/compose.h> 83 LOG(ERROR) << argv[0] << "Unknown compose filter type: " 90 s::Compose(*ifst1, *ifst2, &ofst, opts);
|
/external/webkit/Source/WebCore/manual-tests/ |
mail-attachments.html | 7 <p><b>BUG ID:</b> <a href="rdar://problem/4435416">4435416</a> Attachments in Mail compose windows always display the broken image icon</p>
|
/external/icu4c/test/intltest/ |
tstnrapi.cpp | 56 // test compose() and decompose() 62 Normalizer::compose(tel, TRUE, 0, nfkc, errorCode); 65 dataerrln("error in Normalizer::(de)compose(): %s", u_errorName(errorCode)); 70 errln("error in Normalizer::(de)compose(): wrong result(s)"); 157 Normalizer::compose(s, FALSE, 0, s, status); 159 dataerrln("error in Normalizer::compose(self)");
|
/external/guava/guava-tests/test/com/google/common/base/ |
FunctionsTest.java | 218 Functions.compose(integerToSpanish, japaneseToInteger); 236 Functions.compose(integerToSpanish, japaneseToInteger)) 240 Functions.compose(japaneseToInteger, integerToSpanish)) 261 Functions.compose(integerToSpanish, japaneseToInteger); 266 Functions.compose(integerToSpanish, japaneseToInteger), 271 Functions.compose(japaneseToInteger, integerToSpanish)) 283 Functions.compose(numberToSpanish, japaneseToInteger); 300 Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); 301 Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)) [all...] |
/external/openfst/src/include/fst/extensions/pdt/ |
compose.h | 0 // compose.h 19 // Compose a PDT and an FST. 24 #include <fst/compose.h> 108 void Compose(const Fst<Arc> &ifst1, 130 void Compose(const Fst<Arc> &ifst1,
|
pdtlib.h | 26 #include <fst/extensions/pdt/compose.h>
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
difference.h | 22 #include "fst/lib/compose.h" 124 // Complexity: same as Compose. 126 // Caveats: same as Compose.
|
intersect.h | 22 #include "fst/lib/compose.h" 114 // Complexity: same as Compose. 116 // Caveats: same as Compose.
|
/external/icu4c/layout/ |
ThaiLayoutEngine.cpp | 58 // NOTE: this assumes that ThaiShaping::compose will allocate the outChars array... 90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
|
/development/tools/emulator/opengl/shared/OpenglOsUtils/ |
osDynLibrary.h | 50 // Macro to compose emugl shared library name under various OS and bitness
|
/external/chromium/chrome/browser/chromeos/cros/ |
cros_in_process_browser_test.h | 18 // that compose CrosLibrary will be created. Use CrosMock to specify minimum
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/ |
content.js | 58 // TODO(erikkay) This doesn't work in gmail's rich text compose window.
|
/external/openfst/src/include/ |
Makefile.am | 12 fst/extensions/pdt/compose.h fst/extensions/pdt/expand.h \ 21 fst/script/compose.h fst/script/concat.h fst/script/connect.h \ 51 fst/compose-filter.h fst/float-weight.h fst/product-weight.h \ 52 fst/rmepsilon.h fst/verify.h fst/compose.h fst/fst-decl.h \
|
/external/skia/include/core/ |
SkComposeShader.h | 25 /** Create a new compose shader, given shaders A, B, and a combining xfermode mode.
|
/sdk/emulator/opengl/shared/OpenglOsUtils/ |
osDynLibrary.h | 50 // Macro to compose emugl shared library name under various OS and bitness
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/repository/ |
README.txt | 3 The repository exports all the packages that compose the SDK as well as
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
TransformationTest.java | 38 t2.compose(t1); 47 t2.compose(t1);
|