HomeSort by relevance Sort by last modified time
    Searched defs:check (Results 876 - 900 of 1856) sorted by null

<<31323334353637383940>>

  /external/libpng/contrib/libtests/
pngunknown.c 197 * to check for a definition outside a #if.
645 * a check to ensure the logic is correct.
652 check(FILE *fp, int argc, const char **argv, png_uint_32p flags/*out*/, function
733 * in this case, so we just check the arguments! This could
1013 def = check(fp, argc, argv, flags[1], d, set_callback);
1017 * IDAT to the list of unknowns. (Do this after 'check' above sets the
1021 * triggering the consistency check below and the flag must only be set if
1022 * there are multiple IDATs, so if the check above did find an unknown IDAT
    [all...]
  /external/libxml2/
debugXML.c 48 int check; /* do just checkings */ member in struct:_xmlDebugCtxt
62 ctxt->check = 0;
86 * Check that a given namespace is in scope on a node.
140 if (ctxt->check)
233 if (ctxt->check) {
252 if (ctxt->check) {
426 if (ctxt->check) {
429 /* TODO: check UTF8 content of the string */
452 if (!ctxt->check)
462 if (!ctxt->check) {
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 33 static inline std::error_code check(std::error_code Err) { function
343 // "Check that -2^27 <= result < 2^27".
406 // Check that -2^32 <= X < 2^32
407 assert(isInt<33>(Result) && "overflow check failed for relocation");
799 check(Section.getName(SectionName));
829 check(RelSecI->getName(RelSectionName));
847 Check(AddendOrErr.getError());
854 // Just check if following relocation is a R_PPC64_TOC
860 // to check if this .opd entry refers to the symbol the relocation
866 check(TSIOrErr.getError())
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.h 138 For Mac OS X kernel development, iDebug is enabled by default because we can dynamically check for the presence
480 @abstract Performs a compile-time check of something such as the size of an int.
508 @abstract Perform a compile-time check, suitable for placement in code, of something such as the size of an int.
533 #pragma mark == check macros ==
537 /*! @defined check
539 @abstract Check that an expression is true (non-zero).
546 Code inside check() statements is not compiled into production builds.
550 #undef check macro
552 #if( !defined( check ) )
554 #define check( X ) macro
563 #define check macro
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngread.c 86 * via png_set_sig_bytes(), and we will only check the remaining bytes
102 /* Read and check the PNG file signature. */
334 /* Check for transforms that have been set but were defined out */
966 * latter by doing SCALE first. This is ok and allows apps not to check for
3937 png_uint_32 check; local
    [all...]
  /external/skia/tests/
MathTest.cpp 207 what to do if the float exceeds 2^32-1, we check for that explicitly.
340 // check some special values
564 int64_t check = SkLeftShift((int64_t)numer, 16) / denom; local
570 if (check > SK_MaxS32) {
571 check = SK_MaxS32;
572 } else if (check < -SK_MaxS32) {
573 check = SK_MinS32;
575 if (result != (int32_t)check) {
576 ERRORF(reporter, "\nFixed Divide: %8x / %8x -> %8x %8x\n", numer, denom, result, check);
578 REPORTER_ASSERT(reporter, result == (int32_t)check);
    [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 394 // Check the function's context matches the context argument.
406 // Check the function's context matches the context argument.
1181 Label check; local
    [all...]
  /external/v8/src/compiler/
js-generic-lowering.cc 647 // fast modification check. Otherwise, we got a fixed array, and we have to
648 // perform a slow check on every iteration.
730 cache_type_false0 = jsgraph()->OneConstant(); // Smi means slow check
828 Node* check = graph()->NewNode(machine()->UintLessThan(), limit, pointer); local
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 635 // Check the function's context matches the context argument.
647 // Check the function's context matches the context argument.
1702 Label check; local
    [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 422 // Check the function's context matches the context argument.
451 // Check the function's context matches the context argument.
1557 Label check; local
    [all...]
  /external/v8/test/cctest/compiler/
test-run-machops.cc 5671 Node* check = m.Projection(1, trunc); local
5704 Node* check = m.Projection(1, trunc); local
5742 Node* check = m.Projection(1, trunc); local
5778 Node* check = m.Projection(1, trunc); local
    [all...]
  /external/valgrind/coregrind/
m_translate.c 676 (2) partial: known-problematic situations get a self-check
677 (3) full checking: all translations get a self-check
689 be non-self-checking. Otherwise, it needs a self-check.
691 This is complicated by Vex's basic-block chasing. If a self-check
813 Bool check = False; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_i.h 35 Boolean (*check)(struct eap_sm *sm, void *priv, member in struct:eap_method
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeService.java 222 // skip proximity check
230 // proximity check is only done to capture statistics, continue pulsing
233 // perform a proximity check
254 }.check(); method
590 public void check() {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Filter.java 43 public synchronized boolean check(int state) { method in class:Filter.State
97 * Before instantiating a filter, check if it is available by using this method.
99 * This method uses the shared FilterFactory to check whether the filter class is available.
274 return mState.check(State.STATE_OPEN);
333 * Check if the input conditions are met in order to schedule this filter.
360 * Check if the output conditions are met in order to schedule this filter.
386 * Check if the Filter is in a state so that it can be scheduled.
395 return (mIsActive && !mState.check(State.STATE_CLOSED));
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
Expr.java 116 Preconditions.check(mId != NO_ID, "if getId is called on an expression, it should have"
122 Preconditions.check(mId == NO_ID, "ID is already set on %s", this);
290 Preconditions.check(mParents.remove(oldParent), "trying to remove non-existent parent %s"
392 Preconditions.check(!mUniqueKey.trim().equals(""),
435 Preconditions.check(mRequirementId != NO_ID, "If this is an expression w/ conditional"
503 // check if remaining dependencies can be satisfied w/ existing values
542 Preconditions.check(isConditional(), "should not call this on a non-conditional expr");
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
LayoutFileParser.java 214 Preconditions.check(myParentContent instanceof XMLParser.ContentContext,
218 Preconditions.check(grandParent instanceof XMLParser.ElementContext,
299 Preconditions.check(StringUtils.isNotBlank(type), "Type of an import cannot be empty."
337 Preconditions.check(data.size() == 1, "XML layout can have only 1 data tag");
343 Preconditions.check(view.size() == 1, "XML layout %s must have 1 view but has %s. root"
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 355 * Check to see if an application is allowed to send new SMS messages, and confirm with
364 public boolean check(String appName, int smsWaiting) { method in class:SmsUsageMonitor
379 * Check if the destination is a possible premium short code.
401 if (DBG) Rlog.e(TAG, "check disabled");
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.h 140 bool check(uint32_t _w, uint32_t _h) const { function in struct:overlay::utils::Dim
  /hardware/qcom/display/msm8909/liboverlay/
overlayUtils.h 140 bool check(uint32_t _w, uint32_t _h) const { function in struct:overlay::utils::Dim
  /hardware/qcom/display/msm8994/liboverlay/
overlayUtils.h 140 bool check(uint32_t _w, uint32_t _h) const { function in struct:overlay::utils::Dim
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramChannelImpl.java 392 assert IOStatus.check(n);
461 } else { // Connected case; Check address then write
491 assert IOStatus.check(n);
572 assert IOStatus.check(n);
601 assert IOStatus.check(n);
628 assert IOStatus.check(n);
657 assert IOStatus.check(n);
FileChannelImpl.java 165 assert IOStatus.check(n);
195 assert IOStatus.check(n);
221 assert IOStatus.check(n);
251 assert IOStatus.check(n);
279 assert IOStatus.check(p);
304 assert IOStatus.check(p);
326 assert IOStatus.check(s);
382 assert IOStatus.check(rv);
402 assert IOStatus.check(rv);
728 assert IOStatus.check(n)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/ssl/
SSLContextImpl.java 842 // check endpoint identity
851 // try the best to check the algorithm constraints
    [all...]
  /prebuilts/devtools/tools/lib/
asm-tree-4.0.jar 

Completed in 803 milliseconds

<<31323334353637383940>>