OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntArray
(Results
1 - 12
of
12
) sorted by null
/external/clang/test/SemaTemplate/
instantiate-array.cpp
11
template <int N> class
IntArray
{
15
static_assert(sizeof(
IntArray
<10>) == sizeof(int) * 10, "Array size mismatch");
16
static_assert(sizeof(
IntArray
<1>) == sizeof(int) * 1, "Array size mismatch");
/packages/apps/Gallery2/tests/src/com/android/gallery3d/util/
IntArrayTest.java
19
import com.android.gallery3d.util.
IntArray
;
32
IntArray
a = new
IntArray
();
48
IntArray
b = new
IntArray
();
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
IntArray.java
7
class
IntArray
9
// TODO make m fixed for the
IntArray
, and hence compute T once and for all
13
public
IntArray
(int intLen)
18
public
IntArray
(int[] ints)
23
public
IntArray
(BigInteger bigInt)
28
public
IntArray
(BigInteger bigInt, int minIntLen)
233
// make the
IntArray
one byte longer
258
public
IntArray
shiftLeft(int n)
287
return new
IntArray
(newInts);
290
public void addShifted(
IntArray
other, int shift
[
all
...]
ECFieldElement.java
831
* The <code>
IntArray
</code> holding the bits.
833
private
IntArray
x;
864
this.x = new
IntArray
(x, t);
911
private F2m(int m, int k1, int k2, int k3,
IntArray
x)
[
all
...]
/packages/apps/Camera/src/com/android/camera/
IconListPreference.java
90
IntArray
iconIds = new
IntArray
();
91
IntArray
largeIconIds = new
IntArray
();
92
IntArray
imageIds = new
IntArray
();
IntArray.java
19
public class
IntArray
{
/external/antlr/src/org/antlr/runtime/misc/
IntArray.java
44
public class
IntArray
{
/packages/apps/Gallery2/src/com/android/gallery3d/util/
IntArray.java
19
public class
IntArray
{
/external/antlr/src/org/antlr/runtime/tree/
CommonTreeNodeStream.java
33
import org.antlr.runtime.misc.
IntArray
;
54
protected
IntArray
calls;
127
calls = new
IntArray
();
BufferedTreeNodeStream.java
32
import org.antlr.runtime.misc.
IntArray
;
120
protected
IntArray
calls;
345
calls = new
IntArray
();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java
89
private final static Map<
IntArray
, String> sRArrayMap = new HashMap<
IntArray
, String>();
113
private final static class
IntArray
{
116
private
IntArray
() {
120
private
IntArray
(int[] a) {
139
IntArray
other = (
IntArray
) obj;
146
private final static
IntArray
sIntArrayWrapper = new
IntArray
();
267
// if the object is an int[] we put it in sRArrayMap using an
IntArray
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLCanvasImpl.java
20
import com.android.gallery3d.util.
IntArray
;
74
private final
IntArray
mUnboundTextures = new
IntArray
();
75
private final
IntArray
mDeleteBuffers = new
IntArray
();
817
IntArray
ids = mUnboundTextures;
Completed in 601 milliseconds