HomeSort by relevance Sort by last modified time
    Searched refs:Check (Results 251 - 275 of 729) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/
string-flatten.js 28 // Check for regression of bug 1011505 (out of memory when flattening strings).
mirror-object.js 51 // Check the mirror hierachy.
56 // Check the mirror properties.
91 // Parse JSON representation and check.
105 // Check that the serialization contains all properties.
113 // Check that serialized handle is correct.
116 // Check that serialized name is correct.
  /ndk/build/core/
check-cygwin-make.mk 16 # Check that we have a Cygwin-compatible make.
add-application.mk 31 # Check that NDK_DEBUG is properly defined. If it is
51 $(call check-required-vars,$(NDK_APP_VARS_REQUIRED),$(_application_mk))
63 # check whether APP_PLATFORM is defined. If not, look for project.properties in
120 # Check that the value of APP_PLATFORM corresponds to a known platform
130 # Check platform level (after adjustment) against android:minSdkVersion in AndroidManifest.xml
143 # Check that the value of APP_ABI corresponds to known ABIs
168 # If APP_BUILD_SCRIPT is defined, check that the file exists.
229 # check that APP_OPTIM, if defined, is either 'release' or 'debug'
248 # Check that APP_STL is defined. If not, use the default value (system)
249 # otherwise, check that the name is correct
    [all...]
  /ndk/sources/host-tools/make-3.81/
makefile.com 100 $! Check if this is a define relating to the properties of the C/C++
116 $! Check for properties of C/C++ compiler
  /prebuilts/devtools/tools/
draw9patch.bat 27 rem Check we have a valid Java.exe in the path.
jobb.bat 30 rem Check we have a valid Java.exe in the path.
  /sdk/apkbuilder/etc/
apkbuilder.bat 27 rem Check we have a valid Java.exe in the path.
  /sdk/hierarchyviewer/etc/
hierarchyviewer1.bat 27 rem Check we have a valid Java.exe in the path.
  /sdk/monitor/
monitor.bat 23 rem Check we have a valid Java.exe in the path.
  /external/chromium_org/v8/test/mjsunit/
track-fields.js 68 // Check that large object migrations work.
147 // Check polymorphic load from double + object fields.
161 // Check polymorphic load from smi + object fields.
174 // Check polymorphic load from double + double fields.
188 // Check that JSON parsing respects existing representations.
array-shift.js 28 // Check that shifting array of holes keeps it as array of holes
35 // Now check the case with array of holes and some elements on prototype.
73 // Now check the case with array of holes and some elements on prototype
110 // Check that non-enumerable elements are treated appropriately
debug-script-breakpoints.js 46 // Check the content of the script break points.
87 // Check the content of the script break points.
debug-stepin-builtin-callback.js 44 // Check whether we break at the expected line.
131 // Check whether we break at the expected line.
mirror-regexp.js 62 // Check the mirror hierachy.
68 // Check the mirror properties.
81 // Parse JSON representation and check.
mirror-script.js 38 // Check the mirror hierachy.
43 // Check the mirror properties.
66 // Parse JSON representation and check.
mirror-unresolved-function.js 49 // Check the mirror hierachy for unresolved functions.
55 // Check the mirror properties for unresolved functions.
68 // Parse JSON representation of unresolved functions and check.
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 242 // check children of root all point at root
243 Check(C0.Parent = Root);
244 Check(C0.ChildIndex = 1);
245 Check(C1.Parent = Root);
246 Check(C1.ChildIndex = 2);
247 Check(C2.Parent = Root);
248 Check(C2.ChildIndex = 3);
370 Check(C0.Parent = R0);
372 Check(C1.Parent = R0);
374 Check(C2.Parent = R0)
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 187 static bool Check(DecodeStatus &Out, DecodeStatus In);
192 static bool Check(DecodeStatus &Out, DecodeStatus In) {
373 // S}. Hence we want to check bit 1.
685 if (!Check(S, DecodeGPR32RegisterClass(Inst, Rt, Address, Decoder)))
687 if (!Check(S, DecodeGPR32RegisterClass(Inst, Rt2, Address, Decoder)))
691 if (!Check(S, DecodeGPR64RegisterClass(Inst, Rt, Address, Decoder)))
693 if (!Check(S, DecodeGPR64RegisterClass(Inst, Rt2, Address, Decoder)))
700 if (!Check(S, DecodeGPR64xspRegisterClass(Inst, Rn, Address, Decoder)))
  /art/runtime/
check_jni.cc 349 * will be handled automatically by the instanceof check.)
400 void Check(bool entry, const char* fmt0, ...) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
483 // We only treat this specially so we can do the non-negative check.
579 LOG(FATAL) << "Unknown check format specifier: " << ch;
793 // Don't check here; we allow nested gets.
899 sc.Check(true, types, ##args)
903 sc.Check(false, type, _rc); \
906 sc.Check(false, "V")
    [all...]
  /external/chromium/base/
logging.h 58 // The CHECK(condition) macro is active in both debug and release builds and
257 // Sets the Log Assert Handler that will be used to notify of check failures.
264 // Sets the Log Report Handler that will be used to notify of check failures
342 // in debug mode. In particular, CHECK()s will always fire if they
444 // CHECK dies with a fatal error if condition is not true. It is *not*
445 // controlled by NDEBUG, so the check will be executed regardless of
448 // We make sure CHECK et al. always evaluates their arguments, as
449 // doing CHECK(FunctionWithSideEffect()) is a common idiom.
450 #define CHECK(condition) \
452 << "Check failed: " #condition ".
    [all...]
  /external/chromium_org/base/
logging.h 59 // The CHECK(condition) macro is active in both debug and release builds and
284 // Sets the Log Assert Handler that will be used to notify of check failures.
291 // Sets the Log Report Handler that will be used to notify of check failures
371 // in debug mode. In particular, CHECK()s will always fire if they
490 // CHECK dies with a fatal error if condition is not true. It is *not*
491 // controlled by NDEBUG, so the check will be executed regardless of
494 // We make sure CHECK et al. always evaluates their arguments, as
495 // doing CHECK(FunctionWithSideEffect()) is a common idiom.
499 // Make all CHECK functions discard their log strings to reduce code
505 #define CHECK(condition)
    [all...]
  /external/chromium_org/chrome/common/extensions/permissions/
api_permission.h 178 virtual bool Check(const CheckParam* param) const = 0;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.h 178 bool Check();
179 // Like Check() but does some more comprehensive checking.
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.h 168 bool Check();
169 // Like Check() but does some more comprehensive checking.

Completed in 455 milliseconds

<<11121314151617181920>>