/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
commands.py | 7 outtext = commands.getoutput(cmd) 26 __all__ = ["getstatusoutput","getoutput","getstatus"] 41 return getoutput('ls -ld' + mkarg(file)) 48 def getoutput(cmd): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
commands.py | 7 outtext = commands.getoutput(cmd) 26 __all__ = ["getstatusoutput","getoutput","getstatus"] 41 return getoutput('ls -ld' + mkarg(file)) 48 def getoutput(cmd): function
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
json_writer_unittest.py | 58 output = self.GetOutput(grd, 'fr', {'_chromium': '1',}, 'json', 'en') 79 output = self.GetOutput(grd, 'fr', {'_google_chrome' : '1'}, 'json', 'en') 106 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en') 133 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en') 164 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'json', 'en') 197 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'json', 'en') 224 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en') 261 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en') 290 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en') 324 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'json', 'en' [all...] |
reg_writer_unittest.py | 47 output = self.GetOutput(grd, 'fr', {'_chromium': '1', }, 'reg', 'en') 69 output = self.GetOutput(grd, 'fr', {'_google_chrome' : '1'}, 'reg', 'en') 97 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en') 122 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en') 151 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'reg', 'en') 182 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'reg', 'en') 207 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en') 242 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en') 269 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en') 304 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'reg', 'en' [all...] |
plist_writer_unittest.py | 64 output = self.GetOutput( 96 output = self.GetOutput( 143 output = self.GetOutput( 190 output = self.GetOutput( 241 output = self.GetOutput( 297 output = self.GetOutput( 349 output = self.GetOutput( 397 output = self.GetOutput(
|
plist_strings_writer_unittest.py | 35 output = self.GetOutput( 73 output = self.GetOutput( 116 output = self.GetOutput( 169 output = self.GetOutput( 223 output = self.GetOutput( 266 output = self.GetOutput(
|
adm_writer_unittest.py | 59 output = self.GetOutput(grd, 'fr', {'_chromium': '1',}, 'adm', 'en') 103 output = self.GetOutput(grd, 'fr', {'_google_chrome' : '1'}, 'adm', 'en') 175 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'adm', 'en') 245 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'adm', 'en') 329 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'adm', 'en') 420 output = self.GetOutput(grd, 'fr', {'_google_chrome': '1'}, 'adm', 'en') 507 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'adm', 'en') 579 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'adm', 'en') 655 output = self.GetOutput(grd, 'fr', {'_chromium' : '1'}, 'adm', 'en') 699 output = self.GetOutput(grd, 'fr', {'_google_chrome' : '1'}, 'adm', 'en' [all...] |
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
IFormatter.java | 25 String getOutput(TrackerEntry entry);
|
TrackerDataHelper.java | 48 public String getOutput(TrackerEntry entry) { 169 String output = mFormatter.getOutput(TrackerEntry.createEntry(cursor));
|
/external/srec/tools/grxmlcompile/ |
sub_phon.cpp | 251 arc[backwardList[fix]]->GetOutput(), currId, newId); 294 arc[forwardList[bix]]->GetOutput(), currId, newId); 331 ReverseMarkOutput (arc[ii]->GetFromId(), startId, arc[ii]->GetOutput()); 343 if (arc[backwardList[rix]]->GetOutput() != DISCARD_LABEL // not resolved yet 345 if (arc[backwardList[rix]]->GetOutput() == NONE_LABEL) 347 else if (outId != arc[backwardList[rix]]->GetOutput()) 372 nodeList[currId]= arc[ii]->GetOutput(); 373 else if (nodeList[currId] != arc[ii]->GetOutput()) 382 if (nodeList[currId] >= 0 && arc[ii]->GetOutput() >= 0) // unique ones 388 if (arc[ii]->GetOutput() >= 0 && arc[ii]->GetCentre() == intraId) [all...] |
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/ |
CtsXmlResultReporterTest.java | 94 String actualOutput = getOutput(); 116 String output = getOutput(); 144 String output = getOutput(); 145 System.out.print(getOutput()); 158 private String getOutput() {
|
/external/guava/guava-tests/test/com/google/common/io/ |
CheckCloseSupplier.java | 61 @Override public T getOutput() throws IOException { 62 return wrap(delegate.getOutput(), newCallback());
|
ByteStreamsTest.java | 66 public OutputStream getOutput() { 92 public OutputStream getOutput() { 110 /** Throws an IOException from getOutput. */ 114 public OutputStream getOutput() throws IOException { 182 public OutputStream getOutput() { 225 OutputStream out = okWrite.getOutput(); 231 out = brokenWrite.getOutput(); 242 out = okWrite.getOutput(); 253 out = brokenWrite.getOutput(); 360 @Override public OutputStream getOutput() { [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_commands.py | 17 # Actually, getoutput should work on any platform with an os.popen, but 27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_commands.py | 17 # Actually, getoutput should work on any platform with an os.popen, but 27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
|
/external/guava/guava/src/com/google/common/io/ |
OutputSupplier.java | 39 T getOutput() throws IOException;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
GdbServerTask.java | 88 return mOutputReceiver.getOutput(); 114 public synchronized String getOutput() {
|
/external/chromium/net/tools/flip_server/ |
sm_interface.h | 59 virtual void GetOutput() = 0;
|
http_interface.cc | 326 void HttpSM::GetOutput() { 329 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput: nothing to " 337 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput transformed " 344 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "GetOutput remove_stream_id: [" 356 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput SendDataFrame["
|
/external/chromium_org/chrome/test/functional/ |
codesign.py | 50 return commands.getoutput('codesign -vvv "%s"' % file_path)
|
/external/chromium_org/net/tools/flip_server/ |
sm_interface.h | 59 virtual void GetOutput() = 0;
|
http_interface.cc | 326 void HttpSM::GetOutput() { 329 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput: nothing to " 337 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput transformed " 344 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "GetOutput remove_stream_id: [" 356 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput SendDataFrame["
|
/external/chromium_org/v8/tools/ |
status-file-converter.py | 39 print old_statusfile.ConvertNotation(sys.argv[1]).GetOutput()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ExecResultException.java | 37 public String[] getOutput() {
|
/bionic/libc/kernel/tools/ |
utils.py | 203 commands.getoutput("git add " + " ".join(adds)) 206 commands.getoutput("git rm " + " ".join(deletes)) 211 commands.getoutput("git add " + " ".join(edits))
|