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
...]
/dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java
69
* public static
Constructable
call(long a, boolean b) {
70
*
Constructable
result = new
Constructable
(a, b);
74
Type<
Constructable
>
constructable
= Type.get(
Constructable
.class);
local
75
MethodId<?,
Constructable
> methodId = GENERATED.getMethod(
76
constructable
, "call", Type.LONG, Type.BOOLEAN);
80
MethodId<
Constructable
, Void> constructor
81
=
constructable
.getConstructor(Type.LONG, Type.BOOLEAN)
[
all
...]
Completed in 600 milliseconds