/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/model/typesystem/ |
D | LazyType.java | 9 private Type concrete; field in LazyType 17 if (concrete == null) { in getType() 18 concrete = provider.apply(null); in getType() 20 return concrete; in getType()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/ |
D | LazyType.java | 10 private ResolvedType concrete; field in LazyType 18 if (concrete == null) { in getType() 19 concrete = provider.apply(null); in getType() 21 return concrete; in getType()
|
/external/vogar/src/vogar/target/junit/ |
D | Junit4.java | 36 boolean concrete = !Modifier.isAbstract(klass.getModifiers()); in isJunit4Test() 53 return concrete; in isJunit4Test() 66 if (!concrete) { in isJunit4Test()
|
/external/rust/crates/downcast-rs/src/ |
D | lib.rs | 402 (concrete $trait_:ident < $($types:ident),* >) => { 405 (sync concrete $trait_:ident < $($types:ident),* >) => { 409 (concrete $trait_:ident assoc $($atypes:ident = $aty:ty),*) => { 412 (sync concrete $trait_:ident assoc $($atypes:ident = $aty:ty),*) => { 416 (concrete $trait_:ident < $($types:ident),* > assoc $($atypes:ident = $aty:ty),*) => { 419 (sync concrete $trait_:ident < $($types:ident),* > assoc $($atypes:ident = $aty:ty),*) => { 662 impl_downcast!(concrete Base<u32>); 666 impl_downcast!(sync concrete Base<u32>); 674 impl_downcast!(concrete Base assoc H=u32); 678 impl_downcast!(sync concrete Base assoc H=u32); [all …]
|
/external/tensorflow/tensorflow/python/eager/ |
D | context_test.py | 114 concrete = f.get_concrete_function() 115 function_def = context.get_function_def(concrete.name) 160 concrete = f.get_concrete_function() 161 self.assertIn(concrete.name.decode(),
|
/external/tensorflow/tensorflow/core/profiler/convert/ |
D | xplane_to_tf_functions_test.cc | 170 const TfFunction& concrete = in TEST() local 172 EXPECT_EQ(concrete.total_tracing_count(), 0); in TEST() 173 EXPECT_EQ(concrete.compiler(), INVALID_COMPILER); in TEST() 174 EXPECT_NEAR(concrete.expensive_call_percent(), 0, kMaxError); in TEST() 175 const auto& concrete_metrics = concrete.metrics(); in TEST()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | overload-uneval.cpp | 22 static inline B *concrete(Foo *node) { in concrete() function in Wibble 33 inline operator B *() const { return concrete(i); } in operator B*()
|
/external/clang/test/SemaTemplate/ |
D | overload-uneval.cpp | 22 static inline B *concrete(Foo *node) { in concrete() function in Wibble 33 inline operator B *() const { return concrete(i); } in operator B*()
|
/external/llvm-project/mlir/docs/ |
D | Traits.md | 25 - The concrete class type that this trait was attached to. 40 verifying the concrete operation. The trait verifiers will currently always be 48 /// concrete operation. 57 instantiating the implementation for every concrete operation type. 60 folding the concrete operation. The trait folders will only be invoked if 61 the concrete operation fold is either not implemented, fails, or performs 72 /// concrete operation. 88 /// concrete operation. 98 instantiating the implementation for every concrete operation type. 105 have a single template argument for the concrete object, the templates for the [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | BasicSerializerFactory.java | 65 HashMap<String, JsonSerializer<?>> concrete 72 concrete.put(String.class.getName(), new StringSerializer()); in String.class.getName() 74 concrete.put(StringBuffer.class.getName(), sls); in StringBuffer.class.getName() 75 concrete.put(StringBuilder.class.getName(), sls); in StringBuilder.class.getName() 76 concrete.put(Character.class.getName(), sls); in Character.class.getName() 77 concrete.put(Character.TYPE.getName(), sls); in Character.TYPE.getName() 80 NumberSerializers.addAll(concrete); 81 concrete.put(Boolean.TYPE.getName(), new BooleanSerializer(true)); in Boolean.TYPE.getName() 82 concrete.put(Boolean.class.getName(), new BooleanSerializer(false)); in Boolean.class.getName() 85 concrete.put(BigInteger.class.getName(), new NumberSerializer(BigInteger.class)); in NumberSerializer() [all …]
|
/external/javaparser/doc/ |
D | component_diagram.puml | 6 [AST] <-- [concrete syntax model] 7 [concrete syntax model] <-- [lexical preserving printer]
|
/external/llvm-project/clang/docs/analyzer/developer-docs/ |
D | RegionStore.rst | 18 keys store both the original region, and the "concrete offset region" -- the 19 last region whose offset is entirely concrete. (For example, in the expression 20 ``foo.bar[1][i].baz``, the concrete offset region is the array ``foo.bar[1]``, 27 Supporting both concrete and symbolic offsets makes things a bit tricky. Here's 38 symbolic offset invalidates the entire concrete offset region.* We know 52 concrete offset invalidates any symbolic offset bindings whose concrete offset 73 they have no concrete compile-time offsets (in the modern, "non-fragile" 169 Here's a concrete example:
|
/external/clang/docs/analyzer/ |
D | RegionStore.txt | 15 keys store both the original region, and the "concrete offset region" -- the 16 last region whose offset is entirely concrete. (For example, in the expression 17 `foo.bar[1][i].baz`, the concrete offset region is the array `foo.bar[1]`, 24 Supporting both concrete and symbolic offsets makes things a bit tricky. Here's 33 symbolic offset invalidates the entire concrete offset region.* We know 44 concrete offset invalidates any symbolic offset bindings whose concrete offset 65 they have no concrete compile-time offsets (in the modern, "non-fragile" 159 Here's a concrete example:
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | signature_serialization.py | 108 concrete = _get_signature(function) 109 if concrete is not None and _valid_signature(concrete): 110 possible_signatures.append(concrete)
|
/external/rust/crates/downcast-rs/ |
D | README.md | 10 original concrete types to access additional functionality and performant 62 // With concrete types. 64 impl_downcast!(concrete TraitConcrete1<u32>); 67 impl_downcast!(concrete TraitConcrete2<u32> assoc H=f64); 132 // or: impl_downcast!(concrete Base<u32> assoc H=f32)
|
D | CHANGELOG.md | 52 objects to concrete types. Supports concrete type parameters and type
|
/external/llvm-project/clang/include/clang/Tooling/Syntax/ |
D | Syntax.td | 14 // The concrete node defines a Role sequence which identifies the children. 17 // The concrete node defines the element type, delimiters are always leaves. 22 // The concrete nodes are defined in terms of these classes in Nodes.td. 25 // concrete node classes will be generated. Migration to TableGen is not
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVAvailability.td | 48 // The following are fields for a concrete availability instance. 50 // The code for preparing a concrete instance. This should be C++ statements 53 // The availability requirement carried by a concrete instance.
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemEntry.groovy | 19 …* The abstract superclass for concrete file system entry classes representing files and directorie… 45 * Abstract method -- must be implemented within concrete subclasses
|
/external/rust/crates/regex-syntax/ |
D | README.md | 20 expressions back to their concrete syntax while mostly preserving its original 25 its equivalent concrete syntax, the result is unlikely to resemble the original 26 concrete syntax that produced the `Hir`. 99 at the level of the concrete syntax.
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_outside_compilation_test.py | 103 concrete = tf_func.get_concrete_function(*(list(args) + 105 return tpu.rewrite(concrete.__call__, list(args) + list(kwargs.values())) 114 concrete = tf_func.get_concrete_function(*args, **kwargs) 118 op_args = list(args) + list(kwargs.values()) + concrete.captured_inputs 122 Tout=[o.type for o in concrete.function_def.signature.output_arg], 123 f=concrete) 711 concrete = partitioned_tpu_fn.get_concrete_function( 716 concrete(array_ops.ones((1), dtype=dtypes.float32))[0], ops.Tensor)
|
/external/oboe/samples/parselib/ |
D | README.md | 25 A concrete implementation of `InputStream` that reads data from a file. 28 A concrete implementation of `InputStream` that reads data from a memory block.
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | saved_object_graph.proto | 31 // Information about captures and output structures in concrete functions. 105 // Stores low-level information about a concrete function. Referenced in either 113 // Input in canonicalized form that was received to create this concrete 132 // field may not be populated. If this field is absent, the concrete function 203 // Node ids of concrete functions for saving and loading from a checkpoint.
|
/external/clang/test/CodeGenCXX/ |
D | anonymous-namespaces.cpp | 44 int concrete() { in concrete() function
|
/external/rust/crates/anyhow/ |
D | METADATA | 2 description: "Flexible concrete Error type built on std::error::Error"
|