OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Constructable
(Results
1 - 3
of
3
) sorted by null
/external/llvm/unittests/ADT/
SmallVectorTest.cpp
27
class
Constructable
{
41
Constructable
() : constructed(true), value(0) {
45
Constructable
(int val) : constructed(true), value(val) {
49
Constructable
(const
Constructable
& src) : constructed(true) {
55
Constructable
(
Constructable
&& src) : constructed(true) {
61
~
Constructable
() {
67
Constructable
& operator=(const
Constructable
& src)
[
all
...]
/external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java
55
public static class
Constructable
{
56
@Inject public
Constructable
(@Named("c") String param) {}
107
TypeLiteral<?> typeLiteral = TypeLiteral.get(
Constructable
.class);
109
Constructor<?> constructor =
Constructable
.class.getConstructor(String.class);
113
assertEquals(
Constructable
.class.getName() + ".<init>()", injectionPoint.toString());
119
+
Constructable
.class.getName() + ".<init>()[0]", dependency.toString());
168
InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(
Constructable
.class);
169
assertEquals(
Constructable
.class.getName() + ".<init>()", injectionPoint.toString());
/external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java
83
* public static
Constructable
call(long a, boolean b) {
84
*
Constructable
result = new
Constructable
(a, b);
88
TypeId<
Constructable
>
constructable
= TypeId.get(
Constructable
.class);
local
89
MethodId<?,
Constructable
> methodId = GENERATED.getMethod(
90
constructable
, "call", TypeId.LONG, TypeId.BOOLEAN);
94
MethodId<
Constructable
, Void> constructor
95
=
constructable
.getConstructor(TypeId.LONG, TypeId.BOOLEAN)
[
all
...]
Completed in 709 milliseconds