Searched refs:condition (Results 1 - 25 of 207) sorted by relevance

123456789

/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptBreakpoint.h65 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition, bool autoContinue) argument
68 , condition(condition)
73 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition, BreakpointActions& actions, bool autoContinue) argument
76 , condition(condition)
84 String condition; member in struct:Inspector::ScriptBreakpoint
/macosx-10.10.1/libauto-186/auto_tester/
H A DEnliveningRace.m112 ERCondition *condition;
115 @property(readonly) ERCondition *condition;
120 @synthesize condition;
125 condition = [ERCondition new];
154 [condition lock];
155 [condition signal];
156 [condition waitWithTimeout:10]; // wait up to 10 seconds to avoid deadlocks.
157 [condition unlock];
163 [condition lock];
167 [condition signa
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOConditionLock.h46 IOLock * cond_interlock; // condition var Simple lock
47 volatile int condition; member in class:IOConditionLock
55 static IOConditionLock *withCondition(int condition, bool inIntr = true);
56 virtual bool initWithCondition(int condition, bool inIntr = true);
65 virtual int setCondition(int condition);
67 virtual int lockWhen(int condition); // acquire lock when condition
68 virtual void unlockWith(int condition); // set condition & release lock
/macosx-10.10.1/WebKit2-7600.1.25/Scripts/webkit2/
H A Dmodel.py27 def __init__(self, name, superclass, attributes, messages, condition):
32 self.condition = condition
42 def __init__(self, name, parameters, reply_parameters, attributes, condition):
47 self.condition = condition
54 def __init__(self, type, name, attributes=None, condition=None):
58 self.condition = condition
H A Dparser.py38 def bracket_if_needed(condition):
39 if re.match(r'.*(&&|\|\|).*', condition):
40 return '(%s)' % condition
42 return condition
78 parameter.condition = combine_condition(conditions)
87 reply_parameter.condition = combine_condition(conditions)
H A Dmessages.py64 def surround_in_condition(string, condition):
65 if not condition:
67 return '#if %s\n%s#endif\n' % (condition, string)
153 return surround_in_condition(''.join(result), message.condition)
295 if receiver.condition:
296 result.append('#if %s\n\n' % receiver.condition)
317 if receiver.condition:
318 result.append('\n#endif // %s\n' % receiver.condition)
346 return surround_in_condition(''.join(result), message.condition)
363 return surround_in_condition(''.join(result), message.condition)
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOConditionLock.cpp31 * AppleIOPSSafeCondLock.m. Lock object with exported condition variable,
53 condition = inCondition;
61 IOConditionLock *IOConditionLock::withCondition(int condition, bool intr) argument
65 if (me && !me->initWithCondition(condition, intr)) {
88 return condition;
93 int old = condition;
95 condition = inCondition;
96 thread_wakeup_one((void *) &condition);
105 thread_wakeup_one((void *) &condition);
121 condition
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/
H A Dfail.h17 #define VERIFY(condition, fail_message) do {\
18 if(!(condition)) FAIL(fail_message);\
/macosx-10.10.1/JavaScriptCore-7600.1.17/debugger/
H A DBreakpoint.h46 Breakpoint(SourceID sourceID, unsigned line, unsigned column, String condition, bool autoContinue) argument
51 , condition(condition)
61 , condition(other.condition)
70 String condition; member in struct:JSC::Breakpoint
/macosx-10.10.1/libauto-186/
H A DLocks.h73 void check(bool volatile *condition, spin_lock_t *lock) { argument
74 if (*condition) {
76 if (!*condition) {
84 ConditionBarrier(bool volatile *condition, spin_lock_t *lock) : _lock(NULL) { argument
85 check(condition, lock);
87 ConditionBarrier(LockedBoolean &condition) : _lock(NULL) { argument
88 check(&condition.state, &condition.lock);
98 UnconditionalBarrier(bool volatile *condition, spin_lock_t *lock) : _condition(condition), _loc argument
101 UnconditionalBarrier(LockedBoolean &condition) argument
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dgthr-single.h172 /* Backend condition mutex functions */
174 /* Allocate a condition. */
176 __gthread_objc_condition_allocate (objc_condition_t _GLIBCXX_UNUSED(condition))
181 /* Deallocate a condition. */
183 __gthread_objc_condition_deallocate (objc_condition_t _GLIBCXX_UNUSED(condition))
188 /* Wait on the condition */
190 __gthread_objc_condition_wait (objc_condition_t _GLIBCXX_UNUSED(condition),
196 /* Wake up all threads waiting on this condition. */
198 __gthread_objc_condition_broadcast (objc_condition_t _GLIBCXX_UNUSED(condition))
203 /* Wake up one thread waiting on this condition
[all...]
H A Dgthr-default.h502 /* Backend condition mutex functions */
504 /* Allocate a condition. */
506 __gthread_objc_condition_allocate (objc_condition_t condition) argument
510 condition->backend = objc_malloc (sizeof (pthread_cond_t));
512 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL))
514 objc_free (condition->backend);
515 condition->backend = NULL;
523 /* Deallocate a condition. */
525 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
529 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition
540 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex) argument
551 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
561 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
H A Dgthr-posix.h502 /* Backend condition mutex functions */
504 /* Allocate a condition. */
506 __gthread_objc_condition_allocate (objc_condition_t condition) argument
510 condition->backend = objc_malloc (sizeof (pthread_cond_t));
512 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL))
514 objc_free (condition->backend);
515 condition->backend = NULL;
523 /* Deallocate a condition. */
525 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
529 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition
540 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex) argument
551 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
561 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcapitst.h32 static void doAssert(int condition, const char *message);
H A Dcintltst.h128 * NOTE: Use 'int condition' rather than 'UBool condition' so the
132 U_CFUNC UBool assertTrue(const char* msg, int condition);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const {
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const {
41 return *this == code.category() && code.value() == condition;
/macosx-10.10.1/WebKit2-7600.1.25/Platform/gtk/
H A DWorkQueueGtk.cpp85 m_socketEventSource.schedule("[WebKit] WorkQueue::SocketEventHandler", [function, closeFunction](GIOCondition condition) {
86 if (condition & G_IO_HUP || condition & G_IO_ERR || condition & G_IO_NVAL) {
91 if (condition & G_IO_IN) {
/macosx-10.10.1/libclosure-65/tests/
H A DNSFuture.m22 pthread_cond_t condition;
70 pthread_cond_signal(&extra->condition);
97 pthread_cond_init(&extra->condition, 0);
111 pthread_cond_destroy(&extra->condition);
138 pthread_cond_wait(&extra->condition, &extra->mutex);
140 // XXX release the mutex & condition??
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dapicoll.h25 void doAssert(UBool condition, const char *message);
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-nocem.el265 wanted conditions condition)
272 (while (setq condition (pop conditions))
274 ((stringp condition)
275 (when (string-match condition type)
277 ((and (consp condition)
278 (eq (car condition) 'not)
279 (stringp (cadr condition)))
280 (when (string-match (cadr condition) type)
283 (error "Invalid NoCeM condition: %S" condition))))
[all...]
/macosx-10.10.1/pcre-7/pcre/
H A Dpcre_stringpiece_unittest.cc15 // CHECK dies with a fatal error if condition is not true. It is *not*
19 #define CHECK(condition) do { \
20 if (!(condition)) { \
22 __FILE__, __LINE__, #condition); \
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DTest.js108 // Appends a message in the test document only if the condition is false.
109 InspectorTest.assert = function(condition, message)
111 if (condition)
118 // Appends a message in the test document whether the condition is true or not.
119 InspectorTest.expectThat = function(condition, message)
121 var prefix = condition ? "PASS" : "FAIL";
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DBTreePrivate.h98 #define PanicIf( condition, message ) if ( (condition) != 0 ) DebugStr( message )
101 #define PanicIf( condition, message ) do { ; } while (0)
214 // Test for passed condition and return if true
215 #define M_ReturnErrorIf( condition, error ) if ( condition ) return( error )
219 #define PanicIf( condition, message ) if ( (condition) != 0 ) DebugStr( message )
222 #define PanicIf( condition, message ) do { ; } while (0)
/macosx-10.10.1/WTF-7600.1.24/wtf/gobject/
H A DGMainLoopSource.cpp121 void GMainLoopSource::schedule(const char* name, std::function<bool (GIOCondition)> function, GSocket* socket, GIOCondition condition, std::function<void ()> destroyFunction, GMainContext* context) argument
130 m_source = adoptGRef(g_socket_create_source(socket, condition, m_cancellable.get()));
217 bool GMainLoopSource::socketCallback(GIOCondition condition) argument
232 bool retval = m_socketCallback(condition);
264 gboolean GMainLoopSource::socketSourceCallback(GSocket*, GIOCondition condition, GMainLoopSource* source) argument
266 return source->socketCallback(condition) == Continue;
/macosx-10.10.1/llvmCore-3425.0.34/examples/ParallelJIT/
H A DParallelJIT.cpp14 // The three threads are created and then block waiting on a condition variable.
132 int result = pthread_cond_init( &condition, NULL );
141 int result = pthread_cond_destroy( &condition );
166 result = pthread_cond_wait( &condition, &mutex );
190 pthread_cond_wait( &condition, &mutex );
211 int result = pthread_cond_broadcast( &condition );
218 pthread_cond_t condition; member in class:WaitForThreads

Completed in 248 milliseconds

123456789