Searched +full:- +full:- +full:import (Results 1 – 25 of 2746) sorted by relevance
12345678910>>...110
/external/clang/unittests/Format/ |
D | SortImportsTestJS.cpp | 1 //===- unittest/Format/SortImportsTestJS.cpp - JS import sort unit tests --===// 8 //===----------------------------------------------------------------------===// 15 #define DEBUG_TYPE "format-test" 26 Length = Code.size() - Offset; in sort() 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() [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | standard_ops.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 # 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 sys as _sys 25 from tensorflow.python import autograph 27 # pylint: disable=g-bad-import-order 29 from tensorflow.python.ops import array_grad [all …]
|
/external/tensorflow/tensorflow/python/training/ |
D | training.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 22 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 [all …]
|
/external/tensorflow/tensorflow/python/ |
D | __init__.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 """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 24 import tensorflow as tf 27 import ctypes 28 import importlib [all …]
|
/external/llvm/test/tools/llvm-objdump/ |
D | coff-private-headers.test | 1 // RUN: llvm-objdump -p %p/Inputs/nop.exe.coff-i386 | \ 2 // RUN: FileCheck -check-prefix=IMPORT %s 4 IMPORT: The Import Tables: 5 IMPORT: lookup 000021e4 time 00000000 fwd 00000000 name 0000234a addr 00002024 6 IMPORT: DLL Name: MSVCR110.dll 7 IMPORT-NEXT: Hint/Ord Name 8 IMPORT-NEXT: 767 _initterm_e 9 IMPORT-NEXT: 766 _initterm 10 IMPORT-NEXT: 437 __initenv 11 IMPORT-NEXT: 660 _fmode [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/ |
D | coff-private-headers.test | 1 // RUN: llvm-objdump -p %p/Inputs/nop.exe.coff-i386 | \ 2 // RUN: FileCheck -check-prefix=IMPORT %s 4 IMPORT: The Import Tables: 5 IMPORT: lookup 000021e4 time 00000000 fwd 00000000 name 0000234a addr 00002024 6 IMPORT: DLL Name: MSVCR110.dll 7 IMPORT-NEXT: Hint/Ord Name 8 IMPORT-NEXT: 767 _initterm_e 9 IMPORT-NEXT: 766 _initterm 10 IMPORT-NEXT: 437 __initenv 11 IMPORT-NEXT: 660 _fmode [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/ |
D | __init__.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 19 from __future__ import absolute_import 20 from __future__ import division 21 from __future__ import print_function 23 from tensorflow.python.util import deprecation 26 # pylint: disable=unused-import,wildcard-import,line-too-long,g-importing-member,g-import-not-at-top 29 from tensorflow.contrib.distributions.python.ops import bijectors 30 from tensorflow.contrib.distributions.python.ops.autoregressive import * 31 from tensorflow.contrib.distributions.python.ops.batch_reshape import * 32 from tensorflow.contrib.distributions.python.ops.binomial import * [all …]
|
/external/tensorflow/tensorflow/python/layers/ |
D | layers.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 # pylint: disable=line-too-long 17 """This library provides a set of high-level neural networks layers.""" 19 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 27 from tensorflow.python.keras.engine.input_spec import InputSpec 30 from tensorflow.python.layers.core import Dense [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TestUtilLite.java | 1 // Protocol Buffers - Google's data interchange format 3 // https://developers.google.com/protocol-buffers/ 33 import static com.google.protobuf.UnittestLite.OptionalGroup_extension_lite; 34 import static com.google.protobuf.UnittestLite.RepeatedGroup_extension_lite; 35 import static com.google.protobuf.UnittestLite.defaultBoolExtensionLite; 36 import static com.google.protobuf.UnittestLite.defaultBytesExtensionLite; 37 import static com.google.protobuf.UnittestLite.defaultCordExtensionLite; 38 import static com.google.protobuf.UnittestLite.defaultDoubleExtensionLite; 39 import static com.google.protobuf.UnittestLite.defaultFixed32ExtensionLite; 40 import static com.google.protobuf.UnittestLite.defaultFixed64ExtensionLite; [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | VoidVisitor.java | 2 * Copyright (C) 2007-2010 Júlio Vilmar Gesser. 3 * Copyright (C) 2011, 2013-2015 The JavaParser Team. 24 import com.github.javaparser.ast.comments.BlockComment; 25 import com.github.javaparser.ast.CompilationUnit; 26 import com.github.javaparser.ast.ImportDeclaration; 27 import com.github.javaparser.ast.comments.LineComment; 28 import com.github.javaparser.ast.PackageDeclaration; 29 import com.github.javaparser.ast.TypeParameter; 30 import com.github.javaparser.ast.body.AnnotationDeclaration; 31 import com.github.javaparser.ast.body.AnnotationMemberDeclaration; [all …]
|
D | GenericVisitor.java | 2 * Copyright (C) 2007-2010 Júlio Vilmar Gesser. 3 * Copyright (C) 2011, 2013-2015 The JavaParser Team. 24 import com.github.javaparser.ast.comments.BlockComment; 25 import com.github.javaparser.ast.CompilationUnit; 26 import com.github.javaparser.ast.ImportDeclaration; 27 import com.github.javaparser.ast.comments.LineComment; 28 import com.github.javaparser.ast.PackageDeclaration; 29 import com.github.javaparser.ast.TypeParameter; 30 import com.github.javaparser.ast.body.AnnotationDeclaration; 31 import com.github.javaparser.ast.body.AnnotationMemberDeclaration; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/FunctionImport/ |
D | funcimport_cutoff.ll | 1 ; Test to ensure that thin linking with -import-cutoff stops importing when 4 ; "-stats" and "-debug-only" require +Asserts. 7 ; RUN: opt -module-summary %s -o %t.bc 8 ; RUN: opt -module-summary %p/Inputs/funcimport_cutoff.ll -o %t2.bc 9 ; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc 11 ; First do with default options, which should import both foo and bar 12 ; RUN: opt -function-import -stats -print-imports -summary-file %t3.thinlto.bc %t.bc -S 2>&1 | File… 14 ; Next try to restrict to 1 import. This should import just foo. 15 ; RUN: opt -import-cutoff=1 -function-import -stats -print-imports -summary-file %t3.thinlto.bc %t.… 17 ; Next try to restrict to 0 imports. This should not import. [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | framework_lib.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 # 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 [all …]
|
/external/tensorflow/tensorflow/contrib/metrics/ |
D | __init__.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 80 from __future__ import absolute_import 81 from __future__ import division 82 from __future__ import print_function 84 # pylint: disable=unused-import,line-too-long,g-importing-member,wildcard-import 85 from tensorflow.contrib.metrics.python.metrics import * 86 # pylint: enable=wildcard-import 87 from tensorflow.contrib.metrics.python.ops.confusion_matrix_ops import confusion_matrix 88 from tensorflow.contrib.metrics.python.ops.histogram_ops import auc_using_histogram 89 from tensorflow.contrib.metrics.python.ops.metric_ops import aggregate_metric_map [all …]
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_namespace_pkgs.py | 1 import contextlib 2 import importlib 3 import os 4 import sys 5 import unittest 7 from test.test_importlib import util 11 # need to test when nested, so that the top-level path isn't sys.path 12 # need to test dynamic path detection, both at top-level and nested 39 Save import state and sys.modules cache and restore it on exit. 76 import foo.one [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | GenericVisitor.java | 2 * Copyright (C) 2007-2010 Júlio Vilmar Gesser. 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 24 import com.github.javaparser.ast.*; 25 import com.github.javaparser.ast.comments.BlockComment; 26 import com.github.javaparser.ast.comments.LineComment; 27 import com.github.javaparser.ast.type.TypeParameter; 28 import com.github.javaparser.ast.body.AnnotationDeclaration; 29 import com.github.javaparser.ast.body.AnnotationMemberDeclaration; 30 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 31 import com.github.javaparser.ast.body.ConstructorDeclaration; [all …]
|
D | VoidVisitor.java | 2 * Copyright (C) 2007-2010 Júlio Vilmar Gesser. 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 24 import com.github.javaparser.ast.*; 25 import com.github.javaparser.ast.comments.BlockComment; 26 import com.github.javaparser.ast.comments.LineComment; 27 import com.github.javaparser.ast.type.TypeParameter; 28 import com.github.javaparser.ast.body.AnnotationDeclaration; 29 import com.github.javaparser.ast.body.AnnotationMemberDeclaration; 30 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 31 import com.github.javaparser.ast.body.ConstructorDeclaration; [all …]
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
D | tfe.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 88 from __future__ import absolute_import 89 from __future__ import division 90 from __future__ import print_function 93 # pylint:disable=g-bad-import-order,g-import-not-at-top,unused-import 95 from tensorflow.contrib.eager.python import metrics 96 from tensorflow.contrib.eager.python.datasets import Iterator 97 from tensorflow.contrib.eager.python.network import Network 98 from tensorflow.contrib.eager.python.network import Sequential 99 from tensorflow.contrib.eager.python.network import save_network_checkpoint [all …]
|
/external/tensorflow/tensorflow/python/keras/ |
D | initializers.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 from __future__ import absolute_import 18 from __future__ import division 19 from __future__ import print_function 21 import six 23 from tensorflow.python import tf2 24 from tensorflow.python.framework import dtypes 25 from tensorflow.python.keras.utils.generic_utils import deserialize_keras_object 26 from tensorflow.python.keras.utils.generic_utils import serialize_keras_object 27 from tensorflow.python.ops import init_ops_v2 [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/ |
D | __init__.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 57 from __future__ import absolute_import 58 from __future__ import division 59 from __future__ import print_function 61 # pylint: disable=unused-import,wildcard-import,line-too-long,g-importing-member 63 from tensorflow.contrib.distributions.python.ops.bijectors.absolute_value import * 64 from tensorflow.contrib.distributions.python.ops.bijectors.affine import * 65 from tensorflow.contrib.distributions.python.ops.bijectors.affine_linear_operator import * 66 from tensorflow.contrib.distributions.python.ops.bijectors.affine_scalar import * 67 from tensorflow.contrib.distributions.python.ops.bijectors.batch_normalization import * [all …]
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 1 //===--- ASTImporter.cpp - Importing ASTs from other Contexts ---*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 95 /// \brief What we should import from the definition. 97 /// \brief Import the default subset of the definition, which might be 98 /// nothing (if minimal import is set) or might be everything (if minimal 99 /// import is not set). 101 /// \brief Import everything. 103 /// \brief Import only the bare bones needed to establish a valid 263 [&ImporterRef](ItemT From) -> ItemT { in ImportArray() [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/ |
D | BootstrapTest.java | 3 import static android.content.res.Configuration.COLOR_MODE_HDR_MASK; 4 import static android.content.res.Configuration.COLOR_MODE_HDR_NO; 5 import static android.content.res.Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_MASK; 6 import static android.content.res.Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO; 7 import static android.content.res.Configuration.KEYBOARDHIDDEN_SOFT; 8 import static android.content.res.Configuration.KEYBOARDHIDDEN_YES; 9 import static android.content.res.Configuration.KEYBOARD_12KEY; 10 import static android.content.res.Configuration.KEYBOARD_NOKEYS; 11 import static android.content.res.Configuration.NAVIGATIONHIDDEN_YES; 12 import static android.content.res.Configuration.NAVIGATION_DPAD; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ThinLTO/X86/ |
D | cache-typeid-resolutions.ll | 1 ; RUN: opt -module-hash -module-summary %s -o %t.bc 2 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-typeid-resolutions-import.ll -o %t-import.bc 4 ; RUN: llvm-as -o %t1.bc %S/Inputs/cache-typeid-resolutions1.ll 5 ; RUN: llvm-as -o %t2.bc %S/Inputs/cache-typeid-resolutions2.ll 6 ; RUN: llvm-as -o %t3.bc %S/Inputs/cache-typeid-resolutions3.ll 9 ; where both t and t-import are sensitive to typeid1's resolution 11 ; RUN: rm -rf %t.cache 12 …-lto2 run -o %t.o %t.bc %t-import.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t-imp… 13 …-lto2 run -o %t.o %t.bc %t-import.bc %t1.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r… 17 ; where both t and t-import are sensitive to typeid2's resolution [all …]
|
/external/tensorflow/tensorflow/python/keras/layers/ |
D | serialization.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 # pylint: disable=wildcard-import 18 # pylint: disable=unused-import 20 from __future__ import absolute_import 21 from __future__ import division 22 from __future__ import print_function 24 from tensorflow.python import tf2 25 from tensorflow.python.keras.engine.base_layer import TensorFlowOpLayer 26 from tensorflow.python.keras.engine.input_layer import Input 27 from tensorflow.python.keras.engine.input_layer import InputLayer [all …]
|
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/ |
D | StubFtpServer.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 18 import java.io.IOException; 19 import java.net.ServerSocket; 20 import java.net.Socket; 21 import java.net.SocketTimeoutException; 22 import java.util.HashMap; 23 import java.util.Iterator; 24 import java.util.Map; 25 import java.util.ResourceBundle; 27 import org.apache.log4j.Logger; [all …]
|
12345678910>>...110