OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Constructable
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/ADT/
SmallVectorTest.cpp
26
class
Constructable
{
35
Constructable
() : value(0) {
39
Constructable
(int val) : value(val) {
43
Constructable
(const
Constructable
& src) {
48
~
Constructable
() {
52
Constructable
& operator=(const
Constructable
& src) {
76
friend bool operator==(const
Constructable
& c0, const
Constructable
& c1)
[
all
...]
/external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java
73
* public static
Constructable
call(long a, boolean b) {
74
*
Constructable
result = new
Constructable
(a, b);
78
TypeId<
Constructable
>
constructable
= TypeId.get(
Constructable
.class);
local
79
MethodId<?,
Constructable
> methodId = GENERATED.getMethod(
80
constructable
, "call", TypeId.LONG, TypeId.BOOLEAN);
84
MethodId<
Constructable
, Void> constructor
85
=
constructable
.getConstructor(TypeId.LONG, TypeId.BOOLEAN)
[
all
...]
Completed in 53 milliseconds