HomeSort by relevance Sort by last modified time
    Searched full:converter (Results 151 - 175 of 1841) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
SingleConversionRule.java 56 * @see org.slf4j.converter.ConversionRule#getPattern()
65 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/line/
TrivialMatcherTest.java 36 // "import org.slf4j.converter" -- > simple replacement with an unique
38 assertEquals("simple replacement with an unique capturing group", trivialLC.getOneLineReplacement("import org.slf4j.converter"));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
CharSequenceConverter.java 46 return CONVERTER.toList(iterable);
49 private static final ImmutableConverter<String, CharSequence> CONVERTER =
  /external/swiftshader/third_party/subzero/src/
IceConverter.cpp 11 /// \brief Implements the LLVM to ICE converter.
61 // TODO(stichnot): Redesign Converter, LLVM2ICEConverter,
71 explicit LLVM2ICEConverter(Ice::Converter &Converter)
72 : Converter(Converter), Ctx(Converter.getContext()),
73 TypeConverter(Converter.getModule()->getContext()) {}
75 Ice::Converter &getConverter() const { return Converter; }
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/types/
CompositeAdapter.kt 25 * A column adapter that uses a type converter to do the conversion. The type converter may be
  /hardware/libhardware/modules/camera/3_4/metadata/
v4l2_control_delegate.h 33 std::shared_ptr<ConverterInterface<TMetadata, TV4L2>> converter)
36 converter_(std::move(converter)){};
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/localization/locales/locale.convenience/conversions/conversions.string/
ctor_move.pass.cpp 29 // create a converter and perform some conversions to generate some
35 // move construct a new converter and make sure the state is the same.
  /external/guice/core/src/com/google/inject/internal/
TypeConverterBindingProcessor.java 135 TypeConverter converter) {
136 convertToClasses(injector, Matchers.identicalTo(type), converter);
140 final Matcher<? super Class<?>> typeMatcher, TypeConverter converter) {
154 }, converter);
159 TypeConverter converter) {
161 new TypeConverterBinding(SourceProvider.UNKNOWN_SOURCE, typeMatcher, converter));
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
VirtualizerTest.java 207 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
208 converter.order(ByteOrder.nativeOrder());
209 return converter.getInt(offset);
213 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
214 converter.order(ByteOrder.nativeOrder());
215 return converter.getShort(offset);
BassBoostTest.java 210 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
211 converter.order(ByteOrder.nativeOrder());
212 return converter.getInt(offset);
216 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
217 converter.order(ByteOrder.nativeOrder());
218 return converter.getShort(offset);
  /prebuilts/go/darwin-x86/src/cmd/internal/test2json/
test2json.go 48 // A converter holds the state of a test-to-JSON conversion.
50 // and the converter writes JSON output to w.
51 type converter struct { type
55 start time.Time // time converter started
87 // NewConverter returns a "test to json" converter.
98 // The mode flag adjusts the behavior of the converter.
104 c := new(converter)
105 *c = converter{
124 // Write writes the test input to the converter.
125 func (c *converter) Write(b []byte) (int, error)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/test2json/
test2json.go 48 // A converter holds the state of a test-to-JSON conversion.
50 // and the converter writes JSON output to w.
51 type converter struct { type
55 start time.Time // time converter started
87 // NewConverter returns a "test to json" converter.
98 // The mode flag adjusts the behavior of the converter.
104 c := new(converter)
105 *c = converter{
124 // Write writes the test input to the converter.
125 func (c *converter) Write(b []byte) (int, error)
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/g3doc/
cmdline_examples.md 1 # TensorFlow Lite Optimizing Converter command-line examples
3 This page is a guide to using the TensorFlow Lite Optimizing Converter by
66 The converter accepts both TENSORFLOW_GRAPHDEF and TFLITE file formats as both
69 are possible, and effectively ask the converter to optimize and simplify a
89 GraphDef that the converter deals with is "FakeQuantized" graphs that are still
93 example, using the converter to extract just a sub-graph from a TensorFlow
98 As we mentioned that the converter supports file format conversions in any
116 quantized TensorFlow GraphDefs that the converter is concerned with, is
148 the converter to generate an output file that performs quantized inference
163 graphs before they can evaluate a possible benefit, the converter allows t
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidates1LineViewManager.java 100 /** The converter to get candidates from and notice the selected candidate to. */
385 public void displayCandidates(WnnEngine converter) {
391 mConverter = converter;
395 isNextCandidate = displayCandidatesNormal(converter);
399 isNextCandidate = displayCandidatesDelay(converter);
408 * @param converter {@link WnnEngine} which holds candidates.
410 private int displayCandidatesNormal(WnnEngine converter) {
413 if (converter == null) {
418 WnnWord result = converter.getNextCandidate();
447 * @param converter {@link WnnEngine} which holds candidates
    [all...]
WnnEngine.java 22 * The interface of the text converter accessed from OpenWnn.
46 * Close the converter.
161 * Reflect the preferences in the converter.
171 * words to the converter. The converter will stop learning
  /external/icu/icu4c/source/common/unicode/
ucnvsel.h 37 * A converter selector is built with a set of encoding/charset names
41 * A converter selector can be serialized into a buffer and reopened
68 * @param whichSet what converter set to use? Use this to determine whether
121 * @param buffer pointer to the serialized form of a converter selector;
139 * serialized form of this converter selector
  /prebuilts/misc/common/robolectric/3.1.1/lib/
robolectric-resources-3.1.1-javadoc.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c 176 PyObject* converter; local
187 converter = NULL;
200 * no converter and proceed */
204 converter = _pysqlite_get_converter(key);
212 if (!converter && self->connection->detect_types & PARSE_DECLTYPES) {
216 /* Converter names are split at '(' and blanks.
229 converter = _pysqlite_get_converter(py_decltype);
234 if (!converter) {
235 converter = Py_None;
238 if (PyList_Append(self->row_cast_map, converter) != 0) {
310 PyObject* converter; local
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.c 166 PyObject* converter; local
176 converter = NULL;
189 * no converter and proceed */
193 converter = _pysqlite_get_converter(key);
201 if (!converter && self->connection->detect_types & PARSE_DECLTYPES) {
205 /* Converter names are split at '(' and blanks.
218 converter = _pysqlite_get_converter(py_decltype);
223 if (!converter) {
224 converter = Py_None;
227 if (PyList_Append(self->row_cast_map, converter) != 0)
298 PyObject* converter; local
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cursor.c 128 PyObject* converter; local
138 converter = NULL;
151 * no converter and proceed */
155 converter = _pysqlite_get_converter(key);
163 if (!converter && self->connection->detect_types & PARSE_DECLTYPES) {
167 /* Converter names are split at '(' and blanks.
180 converter = _pysqlite_get_converter(py_decltype);
185 if (!converter) {
186 converter = Py_None;
189 if (PyList_Append(self->row_cast_map, converter) != 0)
232 PyObject* converter; local
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
CommandLineArgs2.java 49 @Parameter(names = { "-m", "--md5" }, description = "create an MD5 checksum for the given file.", converter = FileConverter.class)
52 @Parameter(names = { "-c", "--cat" }, description = "'cat' the given Lilith logfile.", converter = FileConverter.class)
55 @Parameter(names = { "-t", "--tail" }, description = "'tail' the given Lilith logfile.", converter = FileConverter.class)
  /external/selinux/secilc/
secil2conf.8.xml 17 <refmiscinfo class="manual">SELinux CIL to policy.conf Converter</refmiscinfo>
21 <refpurpose>invoke the SELinux Common Intermediate Language (CIL) to policy.conf converter</refpurpose>
33 <para><emphasis role="italic">secil2conf</emphasis> invokes the CIL to policy.conf converter with the specified <emphasis role="italic">argument</emphasis>s.</para>
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 219 PointFToIntArray converter = new PointFToIntArray(); local
220 return new MultiIntValuesHolder(propertyName, converter, null, keyframes);
226 * values are converted to <code>int[]</code> using the converter.
230 * @param converter Used to convert the animated value to setter parameters.
241 TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) {
242 return new MultiIntValuesHolder(propertyName, converter, evaluator, values);
250 * <code>converter</code> converts the values to parameters in the setter function.
256 * @param converter Converts <code>values</code> into int parameters for the setter.
263 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) {
265 return new MultiIntValuesHolder(propertyName, converter, evaluator, keyframeSet)
338 PointFToFloatArray converter = new PointFToFloatArray(); local
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
flagcb.c 88 ucnv_setFromUCallBack(fromUArgs->converter,
101 ucnv_setFromUCallBack(fromUArgs->converter,
188 printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, reason, fromUArgs->converter, u_errorName(*err));
216 ucnv_setFromUCallBack(fromUArgs->converter,
235 ucnv_setFromUCallBack(fromUArgs->converter,
268 printf("debugCB_fromU: leaving cnv %p, ctx %p: err %s\n", fromUArgs->converter, ctx, u_errorName(*err));
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.h 171 * the converter to correct state for converting the rest of the stream. So the UConverter parameter
174 * and the converter.
177 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise.
191 * the converter to correct state for converting the rest of the stream. So the UConverter parameter
193 * If the charset was autodetected, the caller must close the converter.
196 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise.

Completed in 1743 milliseconds

1 2 3 4 5 67 8 91011>>