HomeSort by relevance Sort by last modified time
    Searched refs:check (Results 401 - 425 of 1366) sorted by null

<<11121314151617181920>>

  /external/clang/lib/StaticAnalyzer/Checkers/
PointerSubChecker.cpp 12 // This check corresponds to CWE-469.
27 : public Checker< check::PreStmt<BinaryOperator> > {
ReturnPointerRangeChecker.cpp 10 // This file defines ReturnPointerRangeChecker, which is a path-sensitive check
27 public Checker< check::PreStmt<ReturnStmt> > {
UndefResultChecker.cpp 10 // This defines UndefResultChecker, a builtin check in ExprEngine that
27 : public Checker< check::PostStmt<BinaryOperator> > {
UndefinedAssignmentChecker.cpp 10 // This defines UndefinedAssignmentChecker, a builtin check in ExprEngine that
26 : public Checker<check::Bind> {
  /external/expat/amiga/
Makefile 5 .PHONY: help all staticlib sharedlib check clean install
52 staticlib: $(STATICLIB) $(XMLWF) $(ELEMENTS) $(OUTLINE) $(RUNTESTS) $(BENCHMARK) check
55 sharedlib: $(SHAREDLIB) $(XMLWF) $(ELEMENTS) $(OUTLINE) $(RUNTESTS) $(BENCHMARK) check
58 check:
  /external/gtest/scripts/test/
Makefile 7 # make check - makes everything and runs the built sample test.
31 check : all
  /external/icu4c/samples/datefmt/
util.cpp 12 void check(UErrorCode& status, const char* msg) { function
  /external/icu4c/samples/msgfmt/
util.cpp 12 void check(UErrorCode& status, const char* msg) { function
  /external/icu4c/samples/translit/
util.cpp 12 void check(UErrorCode& status, const char* msg) { function
  /external/openssl/apps/
verify.c 73 static int check(X509_STORE *ctx, char *file,
225 if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e);
228 check(cert_ctx,argv[i], untrusted, trusted, crls, e);
254 static int check(X509_STORE *ctx, char *file, function
  /external/proguard/src/proguard/
UpToDateChecker.java 48 public boolean check() method in class:UpToDateChecker
56 // Check the dates of the program jars, if any.
88 // Check the dates of the library jars, if any.
  /external/protobuf/gtest/scripts/test/
Makefile 7 # make check - makes everything and runs the built sample test.
31 check : all
  /external/v8/include/
v8-preparser.h 41 #error both BUILDING_V8_SHARED and USING_V8_SHARED are set - please check the\
  /external/valgrind/main/memcheck/tests/x86/
pushfpopf_s.S 28 # because Vex does an emulation-warning check on the popfl,
  /external/webkit/Tools/Scripts/
check-webkit-style 58 _log = logging.getLogger("check-webkit-style")
98 "specific paths to check.")
121 patch_checker.check(patch)
  /external/webkit/Tools/Scripts/webkitpy/style/
patchreader_unittest.py 63 self._patch_checker.check(patch_string)
  /external/bison/src/
tables.c 123 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
128 base_number *check; variable
141 | If TABLE (and CHECK) appear to be small to be addressed at |
155 fprintf (stderr, "growing table and check from: %d to %d\n",
161 check = xnrealloc (check, table_size, sizeof *check);
167 check[old_size] = -1;
707 check[loc] = from[k];
759 check = xnmalloc (table_size, sizeof *check)
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 96 check(!voicemail.hasId(), "Inserted voicemails must not have an id", voicemail);
97 check(voicemail.hasTimestampMillis(), "Inserted voicemails must have a timestamp",
99 check(voicemail.hasNumber(), "Inserted voicemails must have a number", voicemail);
111 check(!voicemail.hasUri(), "Can't update the Uri of a voicemail", voicemail);
212 private void check(boolean assertion, String message, Voicemail voicemail) { method in class:VoicemailProviderHelpers
  /external/grub/stage2/
md5.c 201 /* If CHECK is true, check a password for correctness. Returns 0
204 If CHECK is false, crypt KEY and save the result in CRYPTED.
207 md5_password (const char *key, char *crypted, int check)
217 if (check)
287 if (check)
304 if (check)
318 if (! check)
  /system/core/fastboot/
usb_linux.c 85 static int check(void *_desc, int len, unsigned type, int size) function
111 if(check(ptr, len, USB_DT_DEVICE, USB_DT_DEVICE_SIZE))
117 if(check(ptr, len, USB_DT_CONFIG, USB_DT_CONFIG_SIZE))
159 if(check(ptr, len, USB_DT_INTERFACE, USB_DT_INTERFACE_SIZE))
172 if(check(ptr, len, USB_DT_ENDPOINT, USB_DT_ENDPOINT_SIZE))
233 // Check if we have read-only access, so we can give a helpful
  /frameworks/base/core/jni/android/opengl/
util.cpp 174 // We seperate the bounds check from the initialization because we want to
175 // be able to bounds-check multiple arrays, and we can't throw an exception
178 // Return true if the bounds check succeeded
181 bool check() { function in class:android::ArrayHelper
241 bool checkOK = positions.check() && sphere.check();
404 bool initializedOK = mvp.check() && spheres.check() && results.check();
448 bool checkOK = ws.check() && positions.check() && indices.check()
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 34 // Called on the IO thread to check if the given url is safe or not. If we
51 SafeBrowsingService::SafeBrowsingCheck check; local
52 check.urls.push_back(gurl);
53 check.client = client;
54 check.result = badurls[gurl.spec()];
55 client->OnSafeBrowsingResult(check);
244 const SafeBrowsingService::SafeBrowsingCheck& check) {
  /external/javassist/src/main/javassist/compiler/
Javac.java 451 public void setReturnType(JvstTypeChecker check, ASTList args)
459 expr.accept(check);
460 check.addNullIfVoid();
493 public void setReturnType(JvstTypeChecker check, ASTList args)
499 expr.accept(check);
500 check.addNullIfVoid();
  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.java 39 private static boolean check(TestParcelable p, int n, String s) { method in class:AidlTest
256 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
257 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
258 assertTrue("out parameter 2: " + list.get(2), check(list.get(2), 34, "jkl;"));
279 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
280 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
  /dalvik/vm/mterp/out/
InterpAsm-x86-atom.S     [all...]

Completed in 1672 milliseconds

<<11121314151617181920>>