/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/ |
D | PduParser.java | 969 int temp = pduDataStream.read(); in parseUnsignedInt() local 970 if (temp == -1) { in parseUnsignedInt() 971 return temp; in parseUnsignedInt() 974 while((temp & 0x80) != 0) { in parseUnsignedInt() 976 result |= temp & 0x7F; in parseUnsignedInt() 977 temp = pduDataStream.read(); in parseUnsignedInt() 978 if (temp == -1) { in parseUnsignedInt() 979 return temp; in parseUnsignedInt() 984 result |= temp & 0x7F; in parseUnsignedInt() 1005 int temp = pduDataStream.read(); in parseValueLength() local [all …]
|
D | PduComposer.java | 258 long temp = longInt; in appendLongInteger() local 261 for(size = 0; (temp != 0) && (size < LONG_INTEGER_LENGTH_MAX); size++) { in appendLongInteger() 262 temp = (temp >>> 8); in appendLongInteger() 376 long temp = value >>> (i * 7); in appendUintvarInteger() local 377 temp = temp & 0x7f; in appendUintvarInteger() 379 append((int)((temp | 0x80) & 0xff)); in appendUintvarInteger() 456 EncodedStringValue temp = null; in appendAddressType() local 460 temp = EncodedStringValue.copy(address); in appendAddressType() 463 temp.appendTextString(STRING_PHONE_NUMBER_ADDRESS_TYPE.getBytes()); in appendAddressType() 466 temp.appendTextString(STRING_IPV4_ADDRESS_TYPE.getBytes()); in appendAddressType() [all …]
|
D | EncodedStringValue.java | 213 String[] temp = getString().split(pattern); in split() local 214 EncodedStringValue[] ret = new EncodedStringValue[temp.length]; in split() 218 temp[i].getBytes()); in split()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLVertex.java | 82 GLVertex temp = new GLVertex(); in update() local 83 transform.multiply(this, temp); in update() 84 vertexBuffer.put(toFixed(temp.x)); in update() 85 vertexBuffer.put(toFixed(temp.y)); in update() 86 vertexBuffer.put(toFixed(temp.z)); in update()
|
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/ |
D | InsecureSHA1PRNGKeyDerivator.java | 445 int temp; 457 temp = arrW[t-3] ^ arrW[t-8] ^ arrW[t-14] ^ arrW[t-16]; 458 arrW[t] = ( temp<<1 ) | ( temp>>>31 ); 463 temp = ( ( a<<5 ) | ( a>>>27 ) ) + 470 a = temp; 474 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ; 479 a = temp; 483 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) + 489 a = temp; 493 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0xCA62C1D6) ; [all …]
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
D | WeatherWidgetService.java | 74 int temp = 0; in getViewAt() local 80 temp = mCursor.getInt(tempColIndex); in getViewAt() 87 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, day)); in getViewAt()
|
D | WeatherWidgetProvider.java | 195 int temp = c.getInt(tempColIndex); in buildLayout() local 197 String header = String.format(formatStr, temp, in buildLayout()
|
/development/samples/ApiDemos/src/com/example/android/apis/ |
D | ApiDemos.java | 135 Map<String, Object> temp = new HashMap<String, Object>(); in addItem() local 136 temp.put("title", name); in addItem() 137 temp.put("intent", intent); in addItem() 138 data.add(temp); in addItem()
|
/development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/ |
D | QuizListenerService.java | 72 Map<Integer, Integer> temp = new HashMap<Integer, Integer>(4); 73 temp.put(0, R.drawable.ic_choice_a); 74 temp.put(1, R.drawable.ic_choice_b); 75 temp.put(2, R.drawable.ic_choice_c); 76 temp.put(3, R.drawable.ic_choice_d); 77 questionNumToDrawableId = Collections.unmodifiableMap(temp);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | TouchPaint.java | 539 double temp = vy; in drawSplat() local 540 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt); in drawSplat() 541 vz = temp * Math.sin(tilt) + vz * Math.cos(tilt); in drawSplat() 544 temp = vx; in drawSplat() 545 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation); in drawSplat() 546 vy = temp * Math.sin(orientation) + vy * Math.cos(orientation); in drawSplat()
|
/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/ |
D | MainActivity.java | 115 Map<Integer, Integer> temp = new HashMap<Integer, Integer>(4); 116 temp.put(R.id.choice_a_radio, 0); in temp.put() 117 temp.put(R.id.choice_b_radio, 1); in temp.put() 118 temp.put(R.id.choice_c_radio, 2); in temp.put() 119 temp.put(R.id.choice_d_radio, 3); in temp.put() 120 radioIdToIndex = Collections.unmodifiableMap(temp);
|
/development/samples/RSSReader/src/com/example/android/rssreader/ |
D | RssReader.java | 324 final String temp = status; in run() local 328 mStatusText.setText(temp); in run()
|
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/ |
D | DynamicListView.java | 374 Object temp = arrayList.get(indexOne); in swapElements() local 376 arrayList.set(indexTwo, temp); in swapElements()
|