/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/ |
gthr-single.h | 170 /* Backend condition mutex functions */ 172 /* Allocate a condition. */ 174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED) 179 /* Deallocate a condition. */ 181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED) 186 /* Wait on the condition */ 188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED, 194 /* Wake up all threads waiting on this condition. */ 196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED) 201 /* Wake up one thread waiting on this condition. * [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
logging.h | 82 // CHECK dies with a fatal error if condition is not true. It is *not* 88 #define CHECK(condition) \ 90 if (!(condition)) { \ 91 WRITE_TO_STDERR("Check failed: " #condition "\n", \ 92 sizeof("Check failed: " #condition "\n")-1); \ 98 #define RAW_CHECK(condition, message) \ 100 if (!(condition)) { \ 101 WRITE_TO_STDERR("Check failed: " #condition ": " message "\n", \ 102 sizeof("Check failed: " #condition ": " message "\n")-1);\ 110 #define RAW_DCHECK(condition, message [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
logging.h | 77 // CHECK dies with a fatal error if condition is not true. It is *not* 83 #define CHECK(condition) \ 85 if (!(condition)) { \ 86 WRITE_TO_STDERR("Check failed: " #condition "\n", \ 87 sizeof("Check failed: " #condition "\n")-1); \ 93 #define RAW_CHECK(condition, message) \ 95 if (!(condition)) { \ 96 WRITE_TO_STDERR("Check failed: " #condition ": " message "\n", \ 97 sizeof("Check failed: " #condition ": " message "\n")-1);\ 105 #define RAW_DCHECK(condition, message [all...] |
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/ |
makefile_writer.py | 135 """Helper class to keep a VarsDict along with a name and optional condition. 137 def __init__(self, vars_dict, name, condition=None): 144 condition: Optional string representing a condition. If not None, 148 self.condition = condition 185 writing it to the makefile. VarsDictData.condition, if not None, will be 186 written to the makefile as a condition to determine whether to include 224 if data.condition: 225 f.write('ifeq ($(%s), true)\n' % data.condition) [all...] |
/external/skia/platform_tools/android/gyp_gen/ |
makefile_writer.py | 135 """Helper class to keep a VarsDict along with a name and optional condition. 137 def __init__(self, vars_dict, name, condition=None): 144 condition: Optional string representing a condition. If not None, 148 self.condition = condition 185 writing it to the makefile. VarsDictData.condition, if not None, will be 186 written to the makefile as a condition to determine whether to include 224 if data.condition: 225 f.write('ifeq ($(%s), true)\n' % data.condition) [all...] |
/external/ceres-solver/internal/ceres/miniglog/glog/ |
logging.h | 71 // CHECK(condition) - fails if condition is false and logs condition. 294 // Log only if condition is met. Otherwise evaluates to void. 295 #define LOG_IF(severity, condition) \ 296 !(condition) ? (void) 0 : LoggerVoidify() & \ 299 // Log only if condition is NOT met. Otherwise evaluates to void. 300 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition)) 309 # define VLOG_IF(n, condition) LOG_IF(n, (n <= MAX_LOG_LEVEL) && condition [all...] |
/art/test/003-omnibus-opcodes/src/ |
Main.java | 76 public static void assertTrue(boolean condition) { 77 if (!condition) {
|
/art/test/406-fields/src/ |
TestCase.java | 50 public static void assertTrue(String message, boolean condition) { 51 if (!condition) { 56 public static void assertTrue(boolean condition) { 57 assertTrue("Expected true", condition); 60 public static void assertFalse(String message, boolean condition) { 61 if (condition) { 66 public static void assertFalse(boolean condition) { 67 assertFalse("Expected false", condition);
|
/art/test/407-arrays/src/ |
TestCase.java | 50 public static void assertTrue(String message, boolean condition) { 51 if (!condition) { 56 public static void assertTrue(boolean condition) { 57 assertTrue("Expected true", condition); 60 public static void assertFalse(String message, boolean condition) { 61 if (condition) { 66 public static void assertFalse(boolean condition) { 67 assertFalse("Expected false", condition);
|
/cts/common/device-side/util/src/com/android/compatibility/common/util/ |
PollingCheck.java | 60 public static void check(CharSequence message, long timeoutMs, Callable<Boolean> condition) 63 if (condition.call()) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
skip.py | 28 def skip_if(klass, condition, message=None, logger=None): 29 """Makes all test_* methods in a given class no-ops if the given condition 33 if not condition:
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Fence.h | 31 void setFence(GLenum condition); 54 void set(GLenum condition);
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
extension_helper.py | 124 """Create a C-preprocessor condition for the function. 127 condition is only created is all of the entry-point names for f are 128 not in the selected ABI. If all_not_in_ABI is not set, a condition 132 condition = [] 136 condition.append( 'defined(need_%s)' % (gl_XML.real_category_name( category )) ) 140 return condition 170 condition = condition_for_function(f, abi, 0) 171 if len(condition): 172 print '#if %s' % (string.join(condition, " || ")) 256 condition = condition_for_function(f, abi, 1 [all...] |
/external/chromium_org/tools/telemetry/telemetry/page/ |
test_expectations.py | 37 raise ValueError('Unknown expectation condition: "%s"' % c0) 39 condition = c.lower() 40 if condition in OS_MODIFIERS: 41 self.os_conditions.append(condition) 42 elif condition in GPU_MODIFIERS: 43 self.gpu_conditions.append(condition) 44 elif condition in CONFIG_MODIFIERS: 45 self.config_conditions.append(condition) 47 raise ValueError('Unknown expectation condition: "%s"' % condition) [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
extension_helper.py | 124 """Create a C-preprocessor condition for the function. 127 condition is only created is all of the entry-point names for f are 128 not in the selected ABI. If all_not_in_ABI is not set, a condition 132 condition = [] 136 condition.append( 'defined(need_%s)' % (gl_XML.real_category_name( category )) ) 140 return condition 170 condition = condition_for_function(f, abi, 0) 171 if len(condition): 172 print '#if %s' % (string.join(condition, " || ")) 256 condition = condition_for_function(f, abi, 1 [all...] |
/external/valgrind/main/drd/tests/ |
boost_thread.cpp | 2 // use the boost::thread, boost::mutex and boost::condition classes. 5 #include <boost/thread/condition.hpp> 11 static boost::condition s_cva;
|
/frameworks/base/core/java/android/hardware/camera2/legacy/ |
GLThreadManager.java | 59 public final ConditionVariable condition; field in class:GLThreadManager.ConfigureHolder 63 public ConfigureHolder(ConditionVariable condition, Collection<Surface> surfaces, 65 this.condition = condition; 89 configure.condition.open(); 212 final ConditionVariable condition = new ConditionVariable(/*closed*/false); local 213 ConfigureHolder configure = new ConfigureHolder(condition, surfaces, collector); 219 condition.block();
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
AgeFileFilter.java | 147 String condition = acceptOlder ? "<=" : ">"; local 148 return super.toString() + "(" + condition + cutoff + ")";
|
/external/eigen/bench/btl/generic_bench/utils/ |
utilities.h | 63 # define ASSERT(condition) if (!(condition)){ HERE ; cerr << "CONDITION " << #condition << " NOT VERIFIED"<< endl ; INTERRUPTION(1) ;} 80 # define ASSERT(condition)
|
/external/llvm/test/MC/ARM/ |
udf-arm-diagnostics.s | 10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
Exynos_OSAL_Event.h | 41 pthread_cond_t condition; member in struct:_Exynos_OSAL_THREADEVENT
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
name_utilities.py | 103 condition = 'ENABLE(%s)' % feature 104 return ('#if %s\n' % condition + 106 '#endif // %s\n' % condition)
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
ftdebug.h | 195 #define FT_ASSERT( condition ) \ 198 if ( !( condition ) ) \ 211 #define FT_ASSERT( condition ) do { } while ( 0 )
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFUtils.h | 28 #define NOT_IMPLEMENTED(condition, assert) \ 30 if ((bool)(condition)) { \ 31 PRINT_NOT_IMPL("NOT_IMPLEMENTED: " #condition "\n"); \
|
/external/chromium_org/v8/src/ |
checks.h | 52 // The CHECK macro checks that the given condition is true; if not, it 54 #define CHECK(condition) do { \ 55 if (!(condition)) { \ 56 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \ 254 #define SLOW_ASSERT(condition) \ 255 CHECK(!v8::internal::FLAG_enable_slow_asserts || (condition)) 258 #define SLOW_ASSERT(condition) ((void) 0) 273 #define ASSERT(condition) CHECK(condition) 281 #define ASSERT(condition) ((void) 0 [all...] |