Home
last modified time | relevance | path

Searched full:import (Results 1 – 25 of 14742) sorted by relevance

12345678910>>...590

/external/fonttools/Lib/fontTools/ttLib/tables/
D__init__.py9 from . import B_A_S_E_
10 from . import C_B_D_T_
11 from . import C_B_L_C_
12 from . import C_F_F_
13 from . import C_F_F__2
14 from . import C_O_L_R_
15 from . import C_P_A_L_
16 from . import D_S_I_G_
17 from . import D__e_b_g
18 from . import E_B_D_T_
[all …]
/external/python/cpython2/Tools/pybench/
DImports.py1 from pybench import Test
4 import os
5 import package.submodule
16 import os
17 import os
18 import os
19 import os
20 import os
22 import os
23 import os
[all …]
/external/llvm-project/clang/unittests/Format/
DSortImportsTestJava.cpp40 EXPECT_EQ("import static org.b;\n" in TEST_F()
42 "import org.a;\n", in TEST_F()
43 sort("import org.a;\n" in TEST_F()
44 "import static org.b;\n")); in TEST_F()
48 EXPECT_EQ("import org.Test;\n" in TEST_F()
49 "import org.a.Test;\n" in TEST_F()
50 "import org.b;\n", in TEST_F()
51 sort("import org.a.Test;\n" in TEST_F()
52 "import org.Test;\n" in TEST_F()
53 "import org.b;\n")); in TEST_F()
[all …]
DSortImportsTestJS.cpp1 //===- unittest/Format/SortImportsTestJS.cpp - JS import sort unit tests --===//
48 verifySort("import {sym} from 'a';\n" in TEST_F()
49 "import {sym} from 'b';\n" in TEST_F()
50 "import {sym} from 'c';\n" in TEST_F()
53 "import {sym} from 'a';\n" in TEST_F()
54 "import {sym} from 'b';\n" in TEST_F()
55 "import {sym} from 'c';\n" in TEST_F()
61 verifySort("import {sym} from 'a';\n" in TEST_F()
62 "import {sym} from 'b';\n" in TEST_F()
63 "import {sym} from 'c';\n" in TEST_F()
[all …]
/external/tensorflow/tensorflow/python/keras/layers/
D__init__.py17 from __future__ import absolute_import
18 from __future__ import division
19 from __future__ import print_function
21 from tensorflow.python import tf2
24 # pylint: disable=g-bad-import-order
25 # pylint: disable=g-import-not-at-top
26 from tensorflow.python.keras.engine.input_layer import Input
27 from tensorflow.python.keras.engine.input_layer import InputLayer
28 from tensorflow.python.keras.engine.input_spec import InputSpec
29 from tensorflow.python.keras.engine.base_layer import Layer
[all …]
/external/google-java-format/core/src/test/java/com/google/googlejavaformat/java/
DImportOrdererTest.java17 import static com.google.common.truth.Truth.assertThat;
18 import static com.google.common.truth.Truth.assertWithMessage;
20 import com.google.common.base.Joiner;
21 import com.google.common.collect.ImmutableList;
22 import com.google.googlejavaformat.java.JavaFormatterOptions.Style;
23 import java.util.Arrays;
24 import java.util.Collection;
25 import org.junit.Test;
26 import org.junit.experimental.runners.Enclosed;
27 import org.junit.runner.RunWith;
[all …]
/external/python/cpython2/Lib/test/
Dtest_sundry.py3 from test import test_support
4 import sys
5 import unittest
11 import CGIHTTPServer
12 import audiodev
13 import bdb
14 import cgitb
15 import code
16 import compileall
18 import distutils.bcppcompiler
[all …]
/external/antlr/runtime/ObjC/Framework/
DANTLR.h27 #import <ANTLR/ACNumber.h>
28 #import <ANTLR/ACBTree.h>
29 #import <ANTLR/AMutableArray.h>
30 #import <ANTLR/AMutableDictionary.h>
31 #import <ANTLR/ANTLRBitSet.h>
32 #import <ANTLR/ANTLRError.h>
33 #import <ANTLR/ANTLRFileStream.h>
34 #import <ANTLR/ANTLRInputStream.h>
35 #import <ANTLR/ANTLRReaderStream.h>
36 #import <ANTLR/ANTLRStringStream.h>
[all …]
Dantlr3.h27 #import <ANTLR/ACNumber.h>
28 #import <ANTLR/ACBTree.h>
29 #import <ANTLR/AMutableArray.h>
30 #import <ANTLR/AMutableDictionary.h>
31 #import <ANTLR/ANTLRBitSet.h>
32 #import <ANTLR/ANTLRError.h>
33 #import <ANTLR/ANTLRFileStream.h>
34 #import <ANTLR/ANTLRInputStream.h>
35 #import <ANTLR/ANTLRReaderStream.h>
36 #import <ANTLR/ANTLRStringStream.h>
[all …]
/external/tensorflow/tensorflow/python/ops/
Dstandard_ops.py16 # pylint: disable=unused-import
17 """Import names of Tensor Flow standard Ops."""
19 from __future__ import absolute_import
20 from __future__ import division
21 from __future__ import print_function
23 import platform as _platform
24 import sys as _sys
26 from tensorflow.python import autograph
27 from tensorflow.python.training.experimental import loss_scaling_gradient_tape
29 # pylint: disable=g-bad-import-order
[all …]
/external/tensorflow/tensorflow/python/training/
Dtraining.py22 from __future__ import absolute_import
23 from __future__ import division
24 from __future__ import print_function
26 # pylint: disable=g-bad-import-order,unused-import
27 from tensorflow.python.ops.sdca_ops import sdca_optimizer
28 from tensorflow.python.ops.sdca_ops import sdca_fprint
29 from tensorflow.python.ops.sdca_ops import sdca_shrink_l1
30 from tensorflow.python.training.adadelta import AdadeltaOptimizer
31 from tensorflow.python.training.adagrad import AdagradOptimizer
32 from tensorflow.python.training.adagrad_da import AdagradDAOptimizer
[all …]
/external/tensorflow/tensorflow/python/
D__init__.py15 """Import core names of TensorFlow.
17 Programs that want to build TensorFlow Ops and Graphs without having to import
18 the constructors and utilities individually can import this file:
20 from __future__ import absolute_import
21 from __future__ import division
22 from __future__ import print_function
25 import tensorflow as tf
28 import ctypes
29 import importlib
30 import sys
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
DPlatformTestUtil.java.txt4 import com.intellij.configurationStore.StateStorageManagerKt;
5 import com.intellij.execution.ExecutionException;
6 import com.intellij.execution.configurations.GeneralCommandLine;
7 import com.intellij.execution.process.ProcessIOExecutorService;
8 import com.intellij.execution.process.ProcessOutput;
9 import com.intellij.execution.util.ExecUtil;
10 import com.intellij.ide.DataManager;
11 import com.intellij.ide.IdeEventQueue;
12 import com.intellij.ide.fileTemplates.FileTemplateManager;
13 import com.intellij.ide.fileTemplates.impl.FileTemplateManagerImpl;
[all …]
/external/clang/unittests/Format/
DSortImportsTestJS.cpp1 //===- unittest/Format/SortImportsTestJS.cpp - JS import sort unit tests --===//
49 verifySort("import {sym} from 'a';\n" in TEST_F()
50 "import {sym} from 'b';\n" in TEST_F()
51 "import {sym} from 'c';\n" in TEST_F()
54 "import {sym} from 'a';\n" in TEST_F()
55 "import {sym} from 'b';\n" in TEST_F()
56 "import {sym} from 'c';\n" in TEST_F()
62 verifySort("import {sym} from 'a';\n" in TEST_F()
63 "import {sym} from 'b';\n" in TEST_F()
64 "import {sym} from 'c';\n" in TEST_F()
[all …]
/external/dagger2/javatests/dagger/hilt/android/processor/internal/viewmodel/
DViewModelGeneratorTest.kt19 import com.google.testing.compile.CompilationSubject.assertThat
20 import com.google.testing.compile.Compiler
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.junit.runners.JUnit4
35 import dagger.hilt.android.lifecycle.HiltViewModel; in compiler()
36 import androidx.lifecycle.ViewModel; in compiler()
37 import javax.inject.Inject; in compiler()
49 import androidx.lifecycle.ViewModel; in compiler()
50 import dagger.Binds; in compiler()
[all …]
/external/llvm-project/clang/test/CXX/lex/lex.pptoken/
Dp3-2a.cpp4 // CHECK: import <foo bar>;
5 import <foo bar>;
8 // CHECK: { import <foo bar>; }
9 { import <foo bar>; }
10 // CHECK: ( import <foo bar>; :>
11 ( import <foo bar>; :>
12 // CHECK: [ import <foo bar>; %>
13 [ import <foo bar>; %>
15 // CHECK: import <foo bar>;
16 import <foo bar>;
[all …]
/external/fmtlib/doc/bootstrap/
Dbootstrap.less2 @import "variables.less";
3 @import "mixins.less";
6 @import "normalize.less";
7 @import "print.less";
8 @import "glyphicons.less";
11 @import "scaffolding.less";
12 @import "type.less";
13 @import "code.less";
14 @import "grid.less";
15 @import "tables.less";
[all …]
/external/tensorflow/tensorflow/python/data/experimental/
D__init__.py92 from __future__ import absolute_import
93 from __future__ import division
94 from __future__ import print_function
96 # pylint: disable=unused-import
97 from tensorflow.python.data.experimental import service
98 from tensorflow.python.data.experimental.ops.batching import dense_to_ragged_batch
99 from tensorflow.python.data.experimental.ops.batching import dense_to_sparse_batch
100 from tensorflow.python.data.experimental.ops.batching import map_and_batch
101 from tensorflow.python.data.experimental.ops.batching import map_and_batch_with_legacy_function
102 from tensorflow.python.data.experimental.ops.batching import unbatch
[all …]
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_lib.py28 from __future__ import absolute_import
29 from __future__ import division
30 from __future__ import print_function
32 import copy
33 import datetime
34 import os
35 import re
36 import zipfile
38 import tensorflow.compat.v1 as tf
43 # pylint: disable=g-import-not-at-top
[all …]
/external/python/jinja/src/jinja2/
D__init__.py5 from markupsafe import escape
6 from markupsafe import Markup
8 from .bccache import BytecodeCache
9 from .bccache import FileSystemBytecodeCache
10 from .bccache import MemcachedBytecodeCache
11 from .environment import Environment
12 from .environment import Template
13 from .exceptions import TemplateAssertionError
14 from .exceptions import TemplateError
15 from .exceptions import TemplateNotFound
[all …]
/external/tensorflow/tensorflow/python/layers/
Dlayers.py19 from __future__ import absolute_import
20 from __future__ import division
21 from __future__ import print_function
23 # pylint: disable=g-bad-import-order,unused-import
26 from tensorflow.python.layers.base import Layer
29 from tensorflow.python.layers.core import Dense
30 from tensorflow.python.layers.core import Dropout
31 from tensorflow.python.layers.core import Flatten
33 from tensorflow.python.layers.core import dense
34 from tensorflow.python.layers.core import dropout
[all …]
/external/python/dateutil/dateutil/test/
Dtest_imports.py1 import sys
2 import unittest
8 from dateutil import __version__
11 import dateutil
20 import dateutil.easter
23 from dateutil import easter
26 from dateutil.easter import easter
32 import dateutil.parser
35 from dateutil import parser
39 from dateutil.parser import parse
[all …]
/external/conscrypt/common/src/test/java/org/conscrypt/
DConscryptSuite.java19 import static org.conscrypt.TestUtils.installConscryptAsDefaultProvider;
21 import org.conscrypt.ct.CTVerifierTest;
22 import org.conscrypt.ct.SerializationTest;
23 import org.conscrypt.java.security.AlgorithmParameterGeneratorTestDH;
24 import org.conscrypt.java.security.AlgorithmParameterGeneratorTestDSA;
25 import org.conscrypt.java.security.AlgorithmParametersPSSTest;
26 import org.conscrypt.java.security.AlgorithmParametersTestAES;
27 import org.conscrypt.java.security.AlgorithmParametersTestDES;
28 import org.conscrypt.java.security.AlgorithmParametersTestDESede;
29 import org.conscrypt.java.security.AlgorithmParametersTestDH;
[all …]
/external/guava/guava-testlib/src/com/google/common/testing/
DArbitraryInstances.java19 import static com.google.common.base.Preconditions.checkArgument;
21 import com.google.common.annotations.Beta;
22 import com.google.common.annotations.GwtIncompatible;
23 import com.google.common.base.CharMatcher;
24 import com.google.common.base.Charsets;
25 import com.google.common.base.Defaults;
26 import com.google.common.base.Equivalence;
27 import com.google.common.base.Joiner;
28 import com.google.common.base.Predicate;
29 import com.google.common.base.Predicates;
[all …]
/external/tensorflow/tensorflow/python/framework/
Dframework_lib.py16 # pylint: disable=unused-import,g-bad-import-order
19 from __future__ import absolute_import
20 from __future__ import division
21 from __future__ import print_function
24 from tensorflow.python.framework.device import DeviceSpec
25 from tensorflow.python.framework.ops import Graph
26 from tensorflow.python.framework.ops import Operation
27 from tensorflow.python.framework.ops import Tensor
28 from tensorflow.python.framework.ops import IndexedSlices
30 from tensorflow.python.framework.sparse_tensor import SparseTensor
[all …]

12345678910>>...590