HomeSort by relevance Sort by last modified time
    Searched defs:try (Results 1 - 25 of 321) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/zlib/src/
configure 13 # If you have problems, try without defining CC and CFLAGS before reporting
333 try() function
340 try() function
368 if try $CC -c $CFLAGS $test.c; then
385 if try $CC -w -c $SFLAGS $test.c &&
386 try $LDSHARED $SFLAGS -o $test$shared_ext $test.o; then
392 echo 'No shared library support; try without defining CC and CFLAGS' | tee -a configure.log
430 if try $CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c; then
447 if try $CC $CFLAGS -o $test $test.c; then
464 if try $CC $CFLAGS -o $test $test.c; the
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sehmap.h 7 #undef try macro
11 #define try __try macro
  /external/valgrind/none/tests/amd64/
fxtract.c 19 void try ( double x ) function
34 try( 1.27 + (double)(i*10 - 200) );
36 try(+0.0);
37 try(1.0 / 0.0);
38 try(sqrt(-1.0));
40 try(5.1e-308);
41 try(4.1e-308);
42 try(3.1e-308);
43 try(2.1e-308);
44 try(1.1e-308)
    [all...]
  /external/valgrind/none/tests/x86/
fxtract.c 18 void try ( double x ) function
33 try( 1.27 + (double)(i*10 - 200) );
35 try(+0.0);
36 try(1.0 / 0.0);
37 try(sqrt(-1.0));
39 try(5.1e-308);
40 try(4.1e-308);
41 try(3.1e-308);
42 try(2.1e-308);
43 try(1.1e-308)
    [all...]
  /external/toybox/toys/other/
shred.c 42 char **try; local
50 for (try = toys.optargs; *try; try++) {
52 int fd = open(*try, O_RDWR), iter = 0, throw;
56 chmod(*try, 0600);
57 fd = open(*try, O_RDWR);
60 perror_msg_raw(*try);
67 error_msg("%s: needs -s", *try);
87 perror_msg_raw(*try);
    [all...]
  /external/toybox/toys/posix/
ln.c 49 char *oldnew, *try = toys.optargs[i]; local
51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try));
67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new);
82 (toys.optflags & FLAG_s) ? "symbolic" : "hard", try, new);
84 if (toys.optflags & FLAG_v) fprintf(stderr, "'%s' -> '%s'\n", new, try);
du.c 120 struct dirtree *try = node; local
122 while ((try = try->parent))
123 if (node->st.st_dev==try->st.st_dev && node->st.st_ino==try->st.st_ino)
  /libcore/ojluni/src/main/java/sun/security/util/
UntrustedCertificates.java 59 try (ByteArrayInputStream is = method
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
ShellCommandBuilder.java 73 try (ParcelFileDescriptor fd = automation.executeShellCommand(command)) { method
74 try (InputStream inputStream = new FileInputStream(fd.getFileDescriptor())) { method
75 try (BufferedReader reader = new BufferedReader( method
  /cts/tests/tests/calllog/src/android/calllog/cts/
TestUtils.java 42 try (InputStream in = executeStreamedShellCommand(instrumentation, command)) { method
66 try {
  /cts/tests/tests/jni/src/android/jni/cts/
LinkerNamespacesHelper.java 62 try (BufferedReader br = new BufferedReader(new FileReader(file))) { method
  /external/testng/src/test/java/org/testng/xml/
SuiteXmlParserTest.java 30 try (FileInputStream stream = new FileInputStream(new File(PARENT, fileName))) { method
  /frameworks/support/documents-archive/tests/src/android/support/provider/
TestUtils.java 39 try ( method
  /packages/apps/TV/src/com/android/tv/license/
LicenseUtils.java 38 try (InputStream is = am.open("licenses.html")) { method
49 try (InputStream is = am.open("rating_sources.html")) { method
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 61 try (FileWriter fw = createWriter(baseDir, name)) { method
  /external/avahi/avahi-core/
conformance-test.c 46 static int try = 0; variable
82 try++;
102 try = 0;
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamCloseTest.java 42 try (Stream<Integer> ints = countTo(100).stream()) { method
51 try (Stream<Integer> ints = countTo(100).stream()) { method
58 try (Stream<Integer> ints = countTo(100).stream().onClose(closer)) { method
64 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(closer)) { method
70 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(closer).filter(e -> true)) { method
81 try (Stream<Integer> ints = countTo(100).stream()) { method
88 try (Stream<Integer> ints = countTo(100).stream().onClose(close1).onClose(close2)) { method
94 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(close1).onClose(close2)) { method
100 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(close1).onClose(close2).filter(e -> true)) { method
113 try (Stream<Integer> ints = countTo(100).stream()) method
126 try (Stream<Integer> ints = countTo(100).stream().onClose(close1).onClose(close2).onClose(close3)) { method
138 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(close1).onClose(close2).onClose(close3)) { method
150 try (Stream<Integer> ints = countTo(100).stream().filter(e -> true).onClose(close1).onClose(close2).filter(e -> true).onClose(close3)) { method
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/commands/
PreviewCommand.java 51 try (FrameServer.Session session = mFrameServer.createExclusiveSession()) { method
  /packages/apps/Dialer/tests/src/com/android/dialer/voicemail/
VoicemailArchiveTest.java 102 try (InputStream inputStream = assets.open(TEST_ASSET_NAME); method
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 57 try ( method
86 try ( method
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallLogMigrationTest.java 37 try (final InputStream input = context.getAssets().open(assetName)) { method
38 try (final OutputStream output = new FileOutputStream(diskPath)) { method
54 try (final SQLiteDatabase sourceDb = SQLiteDatabase.openDatabase( method
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
AppLinkTestActivity.java 50 try (Cursor cursor = getContentResolver().query( method
MultipleTracksTestActivity.java 117 try (Cursor cursor = getContentResolver().query( method
SearchUtil.java 67 try (Cursor c = provider.query(uri, null, selection, selectionArg, null, null)) { method
  /cts/tests/backup/app/src/android/backup/app/
MainActivity.java 54 try {
70 try (BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(f))) { method

Completed in 1683 milliseconds

1 2 3 4 5 6 7 8 91011>>