OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rawarray
(Results
1 - 10
of
10
) sorted by null
/development/samples/Snake/src/com/example/android/snake/
SnakeView.java
189
int[]
rawArray
= new int[cvec.size() * 2];
193
rawArray
[i++] = c.x;
194
rawArray
[i++] = c.y;
197
return
rawArray
;
223
* @param
rawArray
: [x1,y1,x2,y2,...]
226
private ArrayList<Coordinate> coordArrayToArrayList(int[]
rawArray
) {
229
int coordCount =
rawArray
.length;
231
Coordinate c = new Coordinate(
rawArray
[index],
rawArray
[index + 1]);
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py
52
'RawValue', '
RawArray
', 'SUBDEBUG', 'SUBWARNING',
241
def
RawArray
(typecode_or_type, size_or_initializer):
245
from multiprocessing.sharedctypes import
RawArray
246
return
RawArray
(typecode_or_type, size_or_initializer)
sharedctypes.py
42
__all__ = ['RawValue', '
RawArray
', 'Value', 'Array', 'copy', 'synchronized']
76
def
RawArray
(typecode_or_type, size_or_initializer):
110
Return a synchronization wrapper for a
RawArray
115
obj =
RawArray
(typecode_or_type, size_or_initializer)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py
52
'RawValue', '
RawArray
', 'SUBDEBUG', 'SUBWARNING',
241
def
RawArray
(typecode_or_type, size_or_initializer):
245
from multiprocessing.sharedctypes import
RawArray
246
return
RawArray
(typecode_or_type, size_or_initializer)
sharedctypes.py
42
__all__ = ['RawValue', '
RawArray
', 'Value', 'Array', 'copy', 'synchronized']
76
def
RawArray
(typecode_or_type, size_or_initializer):
110
Return a synchronization wrapper for a
RawArray
115
obj =
RawArray
(typecode_or_type, size_or_initializer)
/frameworks/base/core/java/android/content/
ClipDescription.java
157
String[]
rawArray
= new String[array.size()];
158
array.toArray(
rawArray
);
159
return
rawArray
;
/cts/tests/tests/util/src/android/util/cts/
ArraySetTest.java
158
private static <E> void compareArraySetAndRawArray(ArraySet<E> arraySet, Object[]
rawArray
) {
159
assertEquals("Bad size", arraySet.size(),
rawArray
.length);
160
for (int i = 0; i <
rawArray
.length; ++i) {
162
arraySet.valueAt(i),
rawArray
[i]);
/frameworks/native/include/ui/
mat4.h
128
explicit tmat44(U const*
rawArray
);
221
tmat44<T>::tmat44(U const*
rawArray
) {
224
mValue[r][c] = *
rawArray
++;
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py
967
arr = self.
RawArray
('i', seq)
1011
raw_arr = self.
RawArray
('i', 10L)
1036
arr5 = self.
RawArray
('i', range(10))
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py
967
arr = self.
RawArray
('i', seq)
1011
raw_arr = self.
RawArray
('i', 10L)
1036
arr5 = self.
RawArray
('i', range(10))
[
all
...]
Completed in 1363 milliseconds