HomeSort by relevance Sort by last modified time
    Searched refs:ptrn (Results 1 - 3 of 3) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
ChoiceFormatTest.java 189 String ptrn = f.toPattern(); local
191 0, ptrn.length());
419 String ptrn = mf.toPattern(); local
420 assertEquals("Unused message format returning incorrect pattern", "CHOICE {1,choice,}", ptrn
433 ptrn = cf.toPattern();
435 0, ptrn.length());
  /external/deqp/android/scripts/
common.py 176 ptrn = re.compile(r'^([a-zA-Z0-9]+)\s+.*product:([^\s]+)\s+model:([^\s]+)\s+device:([^\s]+)')
182 m = ptrn.match(line)
  /external/mesa3d/src/mesa/main/
pack.c 101 GLubyte *ptrn = (GLubyte *) _mesa_unpack_bitmap(32, 32, pattern, unpacking); local
102 if (ptrn) {
106 GLubyte *p = ptrn;
115 free(ptrn);
131 GLubyte ptrn[32*4]; local
134 ptrn[i * 4 + 0] = (GLubyte) ((pattern[i] >> 24) & 0xff);
135 ptrn[i * 4 + 1] = (GLubyte) ((pattern[i] >> 16) & 0xff);
136 ptrn[i * 4 + 2] = (GLubyte) ((pattern[i] >> 8 ) & 0xff);
137 ptrn[i * 4 + 3] = (GLubyte) ((pattern[i] ) & 0xff);
140 _mesa_pack_bitmap(32, 32, ptrn, dest, packing)
    [all...]

Completed in 188 milliseconds