Searched refs:temp (Results 1 - 11 of 11) sorted by relevance

/development/tools/emulator/system/qemu-props/
H A Dqemu-props.c85 char temp[BUFF_SIZE]; local
86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
92 temp[len] = '\0'; /* zero-terminate string */
94 DD("received: %.*s", len, temp);
97 q = strchr(temp, '=');
104 if (property_set(temp, q) < 0) {
105 DD("could not set property '%s' to '%s'", temp, q);
/development/apps/FontLab/src/com/android/fontlab/
H A DBackgroundPicker.java60 Bundle temp = new Bundle();
61 temp.putString("title", name);
63 temp.putInt("texture", textureRes);
65 temp.putInt("bgcolor", bgColor);
66 temp.putInt("text", textColor);
67 data.add(temp);
H A DFontPicker.java60 Bundle temp = new Bundle();
61 temp.putString("title", name);
62 temp.putString("font", fontName);
63 temp.putInt("style", style);
64 data.add(temp);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
H A DGLVertex.java82 GLVertex temp = new GLVertex();
83 transform.multiply(this, temp);
84 vertexBuffer.put(toFixed(temp.x));
85 vertexBuffer.put(toFixed(temp.y));
86 vertexBuffer.put(toFixed(temp.z));
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
H A DWeatherWidgetService.java74 int temp = 0;
80 temp = mCursor.getInt(tempColIndex);
89 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, city));
/development/samples/ApiDemos/src/com/example/android/apis/
H A DApiDemos.java135 Map<String, Object> temp = new HashMap<String, Object>();
136 temp.put("title", name);
137 temp.put("intent", intent);
138 data.add(temp);
/development/samples/Support13Demos/src/com/example/android/supportv13/
H A DSupport13Demos.java135 Map<String, Object> temp = new HashMap<String, Object>();
136 temp.put("title", name);
137 temp.put("intent", intent);
138 data.add(temp);
/development/samples/Support4Demos/src/com/example/android/supportv4/
H A DSupport4Demos.java135 Map<String, Object> temp = new HashMap<String, Object>();
136 temp.put("title", name);
137 temp.put("intent", intent);
138 data.add(temp);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DTouchPaint.java506 double temp = vy;
507 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt);
508 vz = temp * Math.sin(tilt) + vz * Math.cos(tilt);
511 temp = vx;
512 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation);
513 vy = temp * Math.sin(orientation) + vy * Math.cos(orientation);
/development/tools/emulator/system/gps/
H A Dgps_qemu.c161 char temp[16]; local
163 if (len >= (int)sizeof(temp))
166 memcpy( temp, p, len );
167 temp[len] = 0;
168 return strtod( temp, NULL );
493 char temp[256]; local
494 char* p = temp;
495 char* end = p + sizeof(temp);
516 D(temp);
/development/samples/RSSReader/src/com/example/android/rssreader/
H A DRssReader.java324 final String temp = status;
328 mStatusText.setText(temp);

Completed in 312 milliseconds