Searched defs:check (Results 126 - 150 of 381) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/cctest/
H A Dtest-ostreams.cc54 static void check(const char* expected, T value) { function
62 check<bool>("0 0", false);
63 check<bool>("1 1", true);
65 check<int16_t>("-12345 cfc7", -12345);
66 check<int16_t>("-32768 8000", std::numeric_limits<int16_t>::min());
67 check<int16_t>("32767 7fff", std::numeric_limits<int16_t>::max());
69 check<uint16_t>("34567 8707", 34567);
70 check<uint16_t>("0 0", std::numeric_limits<uint16_t>::min());
71 check<uint16_t>("65535 ffff", std::numeric_limits<uint16_t>::max());
73 check<int32_
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h40 BugType(class CheckName check, StringRef name, StringRef cat) argument
41 : Check(check), Name(name), Category(cat), SuppressonSink(false) {}
65 BuiltinBug(class CheckName check, const char *name, const char *description) argument
66 : BugType(check, name, categories::LogicError), desc(description) {}
/external/clang/test/CXX/drs/
H A Ddr14xx.cpp86 template<typename T> constexpr bool check() { function in namespace:dr1460
90 static_assert(check<A>(), "");
91 static_assert(check<B>(), ""); // expected-error {{constant}} expected-note {{in call}}
92 static_assert(check<C>(), "");
93 static_assert(check<D>(), "");
94 static_assert(check<E>(), ""); // expected-error {{constant}} expected-note {{in call}}
95 static_assert(check<F>(), "");
/external/clang/test/CXX/over/over.over/
H A Dp2-resolve-single-template-id.cpp35 void check() function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
43 // check the template function case
44 template<class T> void check() function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp32 constexpr bool check(const char *, int=0, int=0);
57 constexpr bool Board::check(const char *p, int Row, int Col) { function in class:Board
59 *p == '\n' ? check(p+1, Row+1, 0) :
60 *p == 'o' ? at(Row, Col) && check(p+1, Row, Col+1) :
61 *p == '-' ? !at(Row, Col) && check(p+1, Row, Col+1) :
65 static_assert(q8.check(
/external/clang/test/SemaTemplate/
H A Dinstantiate-member-expr.cpp18 void registerCheck(CHECKER *check) { argument
/external/deqp/framework/common/
H A DtcuTestContext.cpp121 bool ResultCollector::check (bool condition, const std::string& msg) function in class:tcu::ResultCollector
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java11 package org.eclipse.wb.internal.core.utils.check;
46 * the boolean expression of the check
47 * @return <code>true</code> if the check passes (does not return if the check fails)
61 * the boolean expression of the check
64 * @return <code>true</code> if the check passes (does not return if the check fails)
115 * the format of error message to produce if the check fails, as expected by
131 * the format of error message to produce if the check fails, as expected by
182 * the format of error message to produce if the check fail
[all...]
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
H A Dpolochallengeresponse.cc138 bool check = (gamma == (*expected)); local
143 return check;
/external/icu/icu4c/source/samples/numfmt/
H A Dutil.cpp23 void check(UErrorCode& status, const char* msg) { function
/external/libopus/celt/tests/
H A Dtest_unit_dft.c54 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse) function
131 check(in,out,nfft,isinverse);
H A Dtest_unit_mdct.c54 void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse) function
160 check(in_copy,out,nfft,isinverse);
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py273 check = 'state->target == vertex_shader && '
275 check = 'state->target == fragment_shader && '
277 check = '' variable
281 check += 'state->language_version == ' + version
283 check += 'state->' + version + '_enable'
285 print ' if (' + check + ') {'
/external/openssl/apps/
H A Ddh.c81 * -check - check the parameters are ok
94 int informat,outformat,check=0,noout=0,C=0,ret=1; local
149 else if (strcmp(*argv,"-check") == 0)
150 check=1;
176 BIO_printf(bio_err," -check check the DH parameters\n");
261 if (check)
273 printf("unable to check the generator value\n");
/external/qemu/distrib/libpng-1.2.46/
H A Dpngrio.c68 png_size_t check; local
76 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
77 check = 0;
79 check = (png_size_t)fread(data, (png_size_t)1, length,
83 if (check != length)
98 int check; local
110 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
112 check = 0;
114 check = fread(n_data, 1, length, io_ptr);
121 check
[all...]
H A Dpngwio.c52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr);
99 check
231 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
245 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
[all...]
/external/blktrace/btt/
H A Dbtt_plot.py100 def check(mn, mx, v): function in function:get_data
166 (min_x, max_x, x) = check(min_x, max_x, f[0])
167 (min_y, max_y, y) = check(min_y, max_y, f[1])
/external/chromium_org/ash/system/tray/
H A Dhover_highlight_view.cc101 const gfx::ImageSkia* check = local
108 image_view->SetImage(check);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dgenderinfotest.cpp42 void check(UGender expected_neutral, UGender expected_mixed, UGender expected_taints, const UGender* genderList, int32_t listLength);
57 check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_OTHER, NULL, 0);
58 check(UGENDER_FEMALE, UGENDER_FEMALE, UGENDER_FEMALE, kSingleFemale, LENGTHOF(kSingleFemale));
59 check(UGENDER_MALE, UGENDER_MALE, UGENDER_MALE, kSingleMale, LENGTHOF(kSingleMale));
60 check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_OTHER, kSingleOther, LENGTHOF(kSingleOther));
62 check(UGENDER_OTHER, UGENDER_FEMALE, UGENDER_FEMALE, kAllFemale, LENGTHOF(kAllFemale));
63 check(UGENDER_OTHER, UGENDER_MALE, UGENDER_MALE, kAllMale, LENGTHOF(kAllMale));
64 check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kAllOther, LENGTHOF(kAllOther));
66 check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kFemaleMale, LENGTHOF(kFemaleMale));
67 check(UGENDER_OTHE
93 void GenderInfoTest::check( function in class:GenderInfoTest
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DFieldVerifier.java179 // First check these exist.
211 protected boolean check(ScriptType script, AddressProblemType problem, AddressField field, method in class:FieldVerifier
/external/chromium_org/third_party/libxslt/libxslt/
H A Dsecurity.c261 * @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);
372 xsltSecurityCheck check; local
437 xsltSecurityCheck check; local
[all...]
/external/chromium_org/tools/checkperms/
H A Dcheckperms.py344 return self.check(rel_path)
346 def check(self, start_dir): member in class:ApiBase
347 """Check the files in start_dir, recursively check its subdirectories."""
350 logging.info('check(%s) -> %d' % (start_dir, len(items)))
414 tocheck Specifies the directory, relative to root, to check. This defaults
435 help='Specifics a list of files to check the permissions of. Only these '
457 errors = api.check(start_dir)
/external/chromium_org/v8/src/ic/x64/
H A Dic-compiler-x64.cc77 IcCheckType check) {
80 if (check == PROPERTY &&
83 // check whether the name is unique.
73 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/chromium_org/v8/test/mjsunit/compiler/
H A Descape-analysis.js187 function check(x, y) { function
196 check(23, 42); check(23, 42);
197 %OptimizeFunctionOnNextCall(check);
198 check(23, 42); check(23, 42);
200 check(27, 27); check(27, 27);
/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp162 check(*I);
170 check(I);
177 void check(Stmt *S) { function in class:__anon17695::EmptyStatementsRemover

Completed in 9419 milliseconds

1234567891011>>