Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 4 of 4) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DBase64.java75 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0; in decodeBase64()
98 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64()
106 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
112 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
117 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
/development/tools/axl/
Dsingletonmixin.py139 b1 = B.getInstance('arg1 value', 'arg2 value')
141 self.assertEquals(b1.arg1, 'arg1 value')
142 self.assertEquals(b1.arg2, 'arg2 value')
143 self.assertEquals(id(b1), id(b2))
192 b1 = B.getInstance('arg1 value', 'arg2 value')
/development/samples/ApiDemos/src/com/example/android/apis/view/
DGameView.java494 int a1, int r1, int g1, int b1,
497 blend(alpha, g1, g2), blend(alpha, b1, b2));
/development/samples/ControllerSample/src/com/example/controllersample/
DGameView.java459 int a1, int r1, int g1, int b1, in setPaintARGBBlend() argument
462 blend(alpha, g1, g2), blend(alpha, b1, b2)); in setPaintARGBBlend()