/system/vold/ |
Fat.h | 24 static int check(const char *fsPath);
|
/external/chromium/chrome/browser/printing/ |
print_job_unittest.cc | 67 explicit TestPrintJob(volatile bool* check) : check_(check) { 99 volatile bool check = false; local 100 scoped_refptr<printing::PrintJob> job(new TestPrintJob(&check)); 107 EXPECT_TRUE(check); 111 volatile bool check = false; local 113 scoped_refptr<printing::PrintJob> job(new TestPrintJob(&check)); 115 EXPECT_TRUE(check);
|
/gdk/build/core/ |
build-bitcode.mk | 4 $(call check-defined-LOCAL_MODULE,$(LOCAL_BUILD_SCRIPT)) 5 $(call check-LOCAL_MODULE,$(LOCAL_MAKEFILE)) 6 $(call check-LOCAL_MODULE_FILENAME)
|
/external/icu4c/tools/ |
Makefile.in | 24 check check-local check-recursive build-local 35 check: all check-recursive 38 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 74 check-local:
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ServReqMultiClientTestCase01.java | 52 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 94 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 103 if (!dnsCh1Listener.check(DnsSdResponseListenerTest.NO_DNS_PTR, 108 if (!txtCh1Listener.check(DnsSdTxtRecordListenerTest.NO_DNS_TXT, 113 if (!upnpCh1Listener.check( 123 if (!dnsCh2Listener.check(DnsSdResponseListenerTest.ALL_DNS_PTR, 128 if (!txtCh2Listener.check(DnsSdTxtRecordListenerTest.ALL_DNS_TXT, 133 if (!upnpCh2Listener.check(
|
ServReqMultiClientTestCase02.java | 52 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 94 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 103 if (!dnsCh1Listener.check(DnsSdResponseListenerTest.IPP_DNS_PTR, 108 if (!txtCh1Listener.check(DnsSdTxtRecordListenerTest.NO_DNS_TXT, 113 if (!upnpCh1Listener.check( 123 if (!dnsCh2Listener.check(DnsSdResponseListenerTest.NO_DNS_PTR, 128 if (!txtCh2Listener.check(DnsSdTxtRecordListenerTest.AFP_DNS_TXT, 133 if (!upnpCh2Listener.check(
|
ServReqClearRequestTestCase.java | 25 * Service discovery requester test case to check clearServiceRequests() works well. 56 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 66 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 71 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 80 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 89 if (!actionListener.check(ActionListenerTest.FAIL_NO_SERVICE, TIMEOUT)) {
|
ServReqRemoveRequestTestCase.java | 25 * Service discovery requester test case to check removeServiceRequest() works well. 56 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 66 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 71 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 80 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 85 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 90 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 112 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 118 * check that bonjour response NEVER received [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/ |
Checker.h | 26 namespace check { namespace in namespace:clang::ento 304 } // end check namespace 367 template <typename CHECK1, typename CHECK2=check::_VoidCheck, 368 typename CHECK3=check::_VoidCheck, typename CHECK4=check::_VoidCheck, 369 typename CHECK5=check::_VoidCheck, typename CHECK6=check::_VoidCheck, 370 typename CHECK7=check::_VoidCheck, typename CHECK8=check::_VoidCheck, 371 typename CHECK9=check::_VoidCheck, typename CHECK10=check::_VoidCheck [all...] |
/external/valgrind/main/helgrind/tests/ |
t2t.c | 25 #define check if (ret != 0) printf("error %d at line %d\n", ret, __LINE__) macro 55 check; 60 check; 69 check; 74 check; 83 check; 89 check; 98 check; 103 check;
|
/external/icu4c/samples/ |
Makefile.in | 29 check check-recursive check-local 43 check-samples: check-samples-recursive 45 # Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future. 46 #check: all check-recursive check-local 47 check: all check-loca [all...] |
/frameworks/wilhelm/tests/sandbox/ |
multiplay.c | 84 #define check(result) check2(result, __LINE__) macro 99 check(result); 102 check(result); 151 check(result); 153 check(result); 156 check(result); 163 check(result); 165 check(result); 169 check(result); 172 check(result) [all...] |
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/ |
VariableSpeed.java | 90 check(!mHasBeenReleased, "has been released, reset before use"); 98 check(!mHasBeenReleased, "has been released, reset before use"); 183 check(!mHasBeenReleased, "has been released, reset before use"); 184 check(mDataSource == null, "cannot setDataSource more than once"); method 199 check(mHasBeenReleased && mIsReadyToReUse, "to re-use, must call reset after release"); method 219 check(!mHasBeenReleased, "has been released, reset before use"); 220 check(mDataSource != null, "must setDataSource before you prepare"); 221 check(!mIsPrepared, "cannot prepare more than once"); 232 check(!mHasDuration, "can't have duration, this is impossible"); 242 check(!mHasBeenReleased, "has been released, reset before use") 243 check(mHasDuration, "you haven't called prepare, can't get the duration"); method 254 check(mHasDuration, "you can't seek until you have prepared"); method 287 check(mIsPrepared, "must have prepared before you can start"); method 385 private void check(boolean condition, String exception) { method in class:VariableSpeed [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
cwg1170.cpp | 16 template<typename U> static yes_type check(unsigned_c<sizeof(U(t))> * = 0); 17 template<typename U> static no_type check(...); 20 static const bool value = (sizeof(check<T>(0)) == sizeof(yes_type));
|
/external/chromium/chrome/browser/prefs/ |
pref_value_map_unittest.cc | 55 PrefValueMap check; local 59 reference.GetDifferingKeys(&check, &differing_paths); 65 EXPECT_TRUE(check.SetValue("a", Value::CreateStringValue("test"))); 66 EXPECT_TRUE(check.SetValue("c", Value::CreateStringValue("test"))); 67 EXPECT_TRUE(check.SetValue("d", Value::CreateStringValue("test"))); 69 reference.GetDifferingKeys(&check, &differing_paths);
|
/dalvik/vm/mterp/x86-atom/ |
OP_GOTO.S | 35 js common_periodicChecks_backwardBranch # do check on backwards branch
|
/external/fsck_msdos/ |
Android.mk | 5 LOCAL_SRC_FILES := boot.c check.c dir.c fat.c main.c
|
/external/icu4c/samples/msgfmt/answers/ |
main_2.cpp | 29 check(status, "MessageFormat::ct"); 38 check(status, "MessageFormat::format");
|
main_3.cpp | 29 check(status, "MessageFormat::ct"); 38 check(status, "MessageFormat::format");
|
/external/icu4c/samples/msgfmt/ |
main.cpp | 29 check(status, "MessageFormat::ct"); 38 check(status, "MessageFormat::format");
|
/external/icu4c/test/ |
Makefile.in | 27 check check-recursive check-local xcheck xcheck-recursive xcheck-local 46 check: everything check-recursive check-local 47 check-recursive: all-recursive 70 xcheck-recursive check-recursive: 104 xcheck-local check-local: all-local
|
/external/icu4c/test/perf/ |
Makefile.in | 30 check check-recursive check-local xperf xperf-recursive 49 check: everything check-recursive check-local 50 check-recursive: all-recursive 58 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 87 check-local: all-local
|
/external/libxslt/libxslt/ |
security.c | 261 * @path: the path to check 311 xsltSecurityCheck check; local 314 check = xsltGetSecurityPrefs(sec, XSLT_SECPREF_WRITE_FILE); 315 if (check != NULL) { 316 ret = check(sec, ctxt, path); 330 * The directory doesn't exist check for creation 332 check = xsltGetSecurityPrefs(sec, 334 if (check != NULL) { 335 ret = check(sec, ctxt, directory); 362 * Check if the resource is allowed to be written, if necessary make 372 xsltSecurityCheck check; local 437 xsltSecurityCheck check; local [all...] |
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
python.py | 36 def check(self, lines): member in class:PythonChecker 43 def _pep8_handle_error(line_number, offset, text, check):
|
/sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/ |
XmlVisitor.java | 81 // TODO: Check appliesTo() for files, and find a quick way to enable/disable 140 for (Detector check : mAllDetectors) { 141 check.beforeCheckFile(context); 144 for (Detector.XmlScanner check : mDocumentDetectors) { 145 check.visitDocument(context, context.document); 153 for (Detector check : mAllDetectors) { 154 check.afterCheckFile(context); 169 Detector.XmlScanner check = elementChecks.get(i); local 170 check.visitElement(context, element); 175 Detector.XmlScanner check = mAllElementDetectors.get(i) local 191 Detector.XmlScanner check = list.get(j); local 197 Detector.XmlScanner check = mAllAttributeDetectors.get(j); local 216 Detector.XmlScanner check = elementChecks.get(i); local 222 Detector.XmlScanner check = mAllElementDetectors.get(i); local [all...] |