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

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/python/tools/
optimize_for_inference_test.py 29 from tensorflow.python.framework import importer
166 _ = importer.import_graph_def(
217 _ = importer.import_graph_def(
247 _ = importer.import_graph_def(
276 _ = importer.import_graph_def(
305 _ = importer.import_graph_def(
freeze_graph_test.py 29 from tensorflow.python.framework import importer
107 _ = importer.import_graph_def(output_graph_def, name="")
206 _ = importer.import_graph_def(output_graph_def, name="")
250 _ = importer.import_graph_def(output_graph_def, name="")
  /external/javassist/sample/rmi/
webdemo.html 43 <font color="red">private ObjectImporter importer;
53 <font color="red">importer = new ObjectImporter(this);</font>
60 <font color="red">counter = (Counter)importer.getObject(counterName);</font>
  /frameworks/opt/vcard/java/com/android/vcard/
VCardConstants.java 19 * Constants used in both exporter and importer code.
52 // importer/exporter. Those properties will be read and discarded silently.
118 // but there may be some vCard importer which will get confused with more than
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 85 interface Importer {
92 * The Importer can be set, otherwise [import locale] syntax is not supported.
107 * Sets the pointer to an Importer object.
110 void setImporter(Importer importerAlias) {
111 importer = importerAlias;
656 if(importer == null) {
662 importer.getRules(baseID,
917 private Importer importer; field in class:CollationRuleParser
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 81 interface Importer {
88 * The Importer can be set, otherwise [import locale] syntax is not supported.
103 * Sets the pointer to an Importer object.
106 void setImporter(Importer importerAlias) {
107 importer = importerAlias;
652 if(importer == null) {
658 importer.getRules(baseID,
913 private Importer importer; field in class:CollationRuleParser
    [all...]
  /external/libmojo/mojo/public/tools/bindings/
chromium_bindings_configuration.gni 10 "//chrome/common/importer/typemaps.gni",
  /external/python/cpython2/Demo/
README 28 imputil Demonstration subclasses of imputil.Importer.
  /external/python/cpython3/Lib/
runpy.py 252 importer = get_importer(path_name)
255 if type(importer).__module__ == 'imp':
256 if type(importer).__name__ == 'NullImporter':
258 if isinstance(importer, type(None)) or is_NullImporter:
  /packages/apps/Tag/res/values-da/
strings.xml 28 <string name="import_vcard" msgid="5104299047930666528">"Importer ^1"</string>
  /packages/apps/Tag/res/values-fr/
strings.xml 28 <string name="import_vcard" msgid="5104299047930666528">"Importer ^1"</string>
  /packages/apps/Tag/res/values-fr-rCA/
strings.xml 28 <string name="import_vcard" msgid="5104299047930666528">"Importer ^1"</string>
  /prebuilts/go/darwin-x86/src/go/importer/
importer_test.go 5 package importer package
  /prebuilts/go/darwin-x86/src/go/types/
resolver.go 154 if importer := check.conf.Importer; importer == nil {
155 err = fmt.Errorf("Config.Importer not installed")
156 } else if importerFrom, ok := importer.(ImporterFrom); ok {
159 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, dir)
162 imp, err = importer.Import(path)
164 err = fmt.Errorf("Config.Importer.Import(%s) returned nil but no error", path)
198 // something went wrong (importer may have returned incomplete package without error)
  /prebuilts/go/linux-x86/src/go/importer/
importer_test.go 5 package importer package
  /prebuilts/go/linux-x86/src/go/types/
resolver.go 154 if importer := check.conf.Importer; importer == nil {
155 err = fmt.Errorf("Config.Importer not installed")
156 } else if importerFrom, ok := importer.(ImporterFrom); ok {
159 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, dir)
162 imp, err = importer.Import(path)
164 err = fmt.Errorf("Config.Importer.Import(%s) returned nil but no error", path)
198 // something went wrong (importer may have returned incomplete package without error)
  /external/python/cpython3/Python/
import.c 965 PyObject *importer; local
976 importer = PyDict_GetItem(path_importer_cache, p);
977 if (importer != NULL)
978 return importer;
988 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
989 if (importer != NULL)
997 if (importer == NULL) {
1000 if (importer != NULL) {
1001 int err = PyDict_SetItem(path_importer_cache, p, importer);
1002 Py_DECREF(importer);
1011 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL; local
    [all...]
  /external/drm_hwcomposer/
hwcomposer.cpp 197 std::unique_ptr<Importer> importer; member in struct:android::hwc_context_t
438 ret = layer.InitFromHwcLayer(sf_layer, ctx->importer.get(), ctx->gralloc);
448 ctx->drm.compositor()->CreateComposition(ctx->importer.get()));
787 ctx->importer.reset(Importer::CreateInstance(&ctx->drm));
788 if (!ctx->importer) {
789 ALOGE("Failed to create importer instance");
  /external/linux-kselftest/tools/testing/selftests/android/ion/
README 30 The client part (ionapp_import) is the importer of the buffer.
36 Finally the buffer FD must be closed by both the exporter and importer.
  /external/llvm/include/llvm/Transforms/IPO/
FunctionImport.h 27 /// The function importer is automatically importing function from other modules
45 /// Create a Function Importer.
  /external/python/cpython3/Lib/test/test_importlib/import_/
test___package__.py 38 with self.mock_modules('pkg.__init__', 'pkg.fake') as importer:
39 with util.import_state(meta_path=[importer]):
  /external/scapy/scapy/modules/
six.py 172 A meta path importer to import scapy.modules.six.moves and its submodules.
880 for i, importer in enumerate(sys.meta_path):
883 # the six meta path importer, since the other six instance will have
884 # inserted an importer with different class.
885 if (type(importer).__name__ == "_SixMetaPathImporter" and
886 importer.name == __name__):
889 del i, importer
890 # Finally, add the importer to the meta path import hook.
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer_tool.py 29 from tensorflow.python.framework import importer
57 importer.import_graph_def(graph_def, name="")
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
FunctionImport.h 29 /// The function importer is automatically importing function from other modules
51 /// Create a Function Importer.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/IPO/
FunctionImport.h 29 /// The function importer is automatically importing function from other modules
51 /// Create a Function Importer.

Completed in 997 milliseconds

1 2 3 4 5 67 8 91011>>