Searched refs:toString (Results 1 - 25 of 161) sorted by relevance

1234567

/development/tools/idegen/src/
H A DFiles.java28 static String toString(File file) throws IOException { method in class:Files
37 return builder.toString();
H A DIntelliJ.java34 String ipr = Files.toString(new File(templatesDirectory, IDEA_IPR));
37 String iml = Files.toString(new File(templatesDirectory, IDEA_IML));
86 sourceRootsXml.toString() + excludeXml.toString());
87 iml = iml.replace("JAR_ENTRIES", jarsXml.toString());
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
H A DOutput.java65 write(Character.toString(c));
71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write.
74 write(sb.toString());
H A DAccessSourcer.java76 public String toString() { method in class:AccessSourcer.Flag
77 return super.toString().substring(4).toLowerCase();
105 mOutput.write(f.toString());
H A DSignatureSourcer.java111 public String toString() { method in class:SignatureSourcer
112 return mBuf.toString();
140 return mFormalsBuf.toString();
218 getBuf().append(Type.getType(Character.toString(descriptor)).getClassName());
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssItem.java34 @Override public String toString(){ method in class:RssItem
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
H A DUtils.java47 viewMethods.setText(sbMethods.toString());
56 viewStatus.setText(sbStatus.toString());
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
H A DFieldSourcerTest.java56 String s = mWriter.toString();
71 String s = mWriter.toString();
H A DClassSourcerTest.java73 sw.toString());
101 sw.toString());
136 sw.toString());
H A DMethodSourcerTest.java59 mWriter.toString());
75 mWriter.toString());
91 mWriter.toString());
H A DSignatureSourcerTest.java49 String result = mSourcer.getReturnType().toString();
61 String result = mSourcer.getReturnType().toString();
122 String result = mSourcer.getReturnType().toString();
142 array[i] = params.get(i).toString();
H A DAccessSourcerTest.java50 String s = mWriter.toString();
59 String s = mWriter.toString();
/development/samples/SimpleJNI/src/com/example/android/simplejni/
H A DSimpleJNI.java30 tv.setText("2 + 3 = " + Integer.toString(sum));
/development/samples/ToyVpn/src/com/example/android/toyvpn/
H A DToyVpnClient.java60 .putExtra(prefix + ".ADDRESS", mServerAddress.getText().toString())
61 .putExtra(prefix + ".PORT", mServerPort.getText().toString())
62 .putExtra(prefix + ".SECRET", mSharedSecret.getText().toString());
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeySourceNetworkVars.java74 VAR_MAP.put("build.brand", new StaticVarGetter(Long.toString(Build.TIME)));
81 VAR_MAP.put("build.version.sdk", new StaticVarGetter(Integer.toString(Build.VERSION.SDK_INT)));
86 VAR_MAP.put("display.width", new StaticVarGetter(Integer.toString(display.getWidth())));
87 VAR_MAP.put("display.height", new StaticVarGetter(Integer.toString(display.getHeight())));
91 VAR_MAP.put("display.density", new StaticVarGetter(Float.toString(dm.density)));
142 return sb.toString();
149 return Long.toString(SystemClock.elapsedRealtime());
154 return Long.toString(SystemClock.uptimeMillis());
159 return Long.toString(System.currentTimeMillis());
164 return Integer.toString(MonkeySourceNetwor
[all...]
H A DMonkeySourceNetworkViews.java128 return positions.toString();
142 String packageName = node.getPackageName().toString();
195 String packageName = node.getPackageName().toString();
205 return new MonkeyCommandReturn(true, fieldBuilder.toString());
313 return new MonkeyCommandReturn(true, ids.toString());
335 return new MonkeyCommandReturn(true, positions.toString());
359 return new MonkeyCommandReturn(true, node.getText().toString());
375 return new MonkeyCommandReturn(true, node.getClassName().toString());
389 return new MonkeyCommandReturn(true, Boolean.toString(node.isChecked()));
404 return new MonkeyCommandReturn(true, Boolean.toString(nod
[all...]
H A DMonkeyCommandEvent.java46 System.err.println(e.toString());
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DUrlIntentListener.java33 final String url = view.getTag().toString();
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
H A DNewsArticle.java51 mBody = sb.toString();
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
H A DDbQueryUtils.java41 return clause.toString();
75 return builder.toString();
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
H A DMainActivity.java46 public String toString() { method in class:MainActivity.Sample
47 return title.toString();
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
H A DVoicemailFilterFactory.java57 public String toString() {
113 Long.toString(fieldMatch.getDuration())));
117 Long.toString(fieldMatch.getTimestampMillis())));
/development/apps/Development/src/com/android/development/
H A DConnectivity.java143 mSCCycleCountView.setText(Integer.toString(mSCCycleCount));
178 mDCCycleCountView.setText(Integer.toString(mDCCycleCount));
206 mDCOnDurationEdit.setText(Long.toString(mDCOnDuration));
208 mDCOffDurationEdit.setText(Long.toString(mDCOffDuration));
210 mDCCycleCountView.setText(Integer.toString(mDCCycleCount));
215 mSCOnDurationEdit.setText(Long.toString(mSCOnDuration));
217 mSCOffDurationEdit.setText(Long.toString(mSCOffDuration));
219 mSCCycleCountView.setText(Integer.toString(mSCCycleCount));
319 mDCOnDuration = Long.parseLong(mDCOnDurationEdit.getText().toString());
320 mDCOffDuration = Long.parseLong(mDCOffDurationEdit.getText().toString());
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/os/
H A DMorseCode.java82 String text = mTextView.getText().toString();
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
H A DPeerActivity.java40 tv.setText(getResources().getText(R.string.peer_count).toString() + mPeerCount);

Completed in 482 milliseconds

1234567