Searched refs:reason (Results 1 - 25 of 1404) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.5-3.js54 testcases[0].reason += " Object == null" ;
57 testcases[0].reason += " Function == null";
60 testcases[0].reason += " String == null";
63 testcases[0].reason += " Array == null";
66 testcases[0].reason += " Function == null";
69 testcases[0].reason += " Math == null";
72 testcases[0].reason += " Boolean == null";
75 testcases[0].reason += " Date == null";
79 testcases[0].reason += " NaN == null";
82 testcases[0].reason
[all...]
H A D10.1.5-1.js52 testcases[0].reason += " Object == null" ;
55 testcases[0].reason += " Function == null";
58 testcases[0].reason += " String == null";
61 testcases[0].reason += " Array == null";
64 testcases[0].reason += " Function == null";
67 testcases[0].reason += " Math == null";
70 testcases[0].reason += " Boolean == null";
73 testcases[0].reason += " Date == null";
77 testcases[0].reason += " NaN == null";
80 testcases[0].reason
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dcheck-cracklib.pl84 my $reason = shift;
85 print "$reason\n";
100 my $reason;
102 $reason = check_basic($params{'principal'}, $params{'new-password'});
103 badpassword($reason) if ($reason ne "ok");
105 $reason = fascist_check($params{'new-password'}, $database);
106 badpassword($reason) if ($reason ne "ok");
108 $reason
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/win/
H A Dwin32main.c37 DWORD reason,
65 DllEntryPoint(hInst, reason, reserved)
67 DWORD reason; /* Reason this function is being called. */
70 return DllMain(hInst, reason, reserved);
91 DllMain(module, reason, reserved)
93 DWORD reason; /* Reason this function is being called. */
96 switch (reason) {
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Ddllmain.c40 ULONG reason,
43 switch(reason) {
39 DllMain(HANDLE hInst, ULONG reason, LPVOID lpReserved) argument
/macosx-10.10/WebCore-7600.1.25/platform/
H A DDisplaySleepDisabler.cpp32 std::unique_ptr<DisplaySleepDisabler> DisplaySleepDisabler::create(const char* reason) argument
34 return std::unique_ptr<DisplaySleepDisabler>(new DisplaySleepDisabler(reason));
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authz_owner.c45 char *reason = NULL; local
49 reason = "'Require file-owner' is not supported on this platform.";
51 "Authorization of user %s to access %s failed, reason: %s",
52 r->user, r->uri, reason ? reason : "unknown");
63 reason = "no filename available";
65 "Authorization of user %s to access %s failed, reason: %s",
66 r->user, r->uri, reason ? reason : "unknown");
72 reason
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A DdllEntryPoint.c33 DllEntryPoint(hInst, reason, reserved)
35 DWORD reason; /* Reason this function is being called. */
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A DdllEntryPoint.c33 DllEntryPoint(hInst, reason, reserved)
35 DWORD reason; /* Reason this function is being called. */
/macosx-10.10/WebCore-7600.1.25/platform/cocoa/
H A DDisplaySleepDisablerCocoa.cpp36 std::unique_ptr<DisplaySleepDisabler> DisplaySleepDisabler::create(const char* reason) argument
38 return std::unique_ptr<DisplaySleepDisabler>(new DisplaySleepDisablerCocoa(reason));
41 DisplaySleepDisablerCocoa::DisplaySleepDisablerCocoa(const char* reason) argument
42 : DisplaySleepDisabler(reason)
45 RetainPtr<CFStringRef> reasonCF = adoptCF(CFStringCreateWithCString(kCFAllocatorDefault, reason, kCFStringEncodingUTF8));
/macosx-10.10/ICU-531.30/icuSources/tools/icuinfo/
H A Dtestplug.c30 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
47 UPlugReason reason,
50 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
52 if(reason==UPLUG_REASON_QUERY) {
64 UPlugReason reason,
66 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
68 if(reason==UPLUG_REASON_QUERY) {
82 UPlugReason reason,
45 myPlugin( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
62 myPluginLow( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
80 myPluginFailQuery( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
95 myPluginFailToken( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
115 myPluginBad( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
140 myPluginHigh( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
185 debugMemoryPlugin( UPlugData *data, UPlugReason reason, UErrorCode *status) argument
[all...]
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWin32Dll.c40 BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason,
49 BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason,
74 DWORD reason, /* Reason this function is being called. */
77 return DllMain(hInst, reason, reserved);
105 DWORD reason,
117 switch (reason) {
71 DllEntryPoint( HINSTANCE hInst, DWORD reason, LPVOID reserved) argument
101 DllMain( HINSTANCE hInstance, DWORD reason, LPVOID reserved) argument
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DBlockExceptions.mm34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
/macosx-10.10/libclosure-65/escapeTests/
H A Descape5.m21 @throw [NSException exceptionWithName:@"funny" reason:@"nothing" userInfo:nil];
H A Descape6.m21 @throw [NSException exceptionWithName:@"funny" reason:@"nothing" userInfo:nil];
H A Descape7.m21 @throw [NSException exceptionWithName:@"funny" reason:@"nothing" userInfo:nil];
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/win/
H A DdllEntryPoint.c44 DllEntryPoint(hInst, reason, reserved)
46 DWORD reason; /* Reason this function is being called. */
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/win/
H A DdllEntryPoint.c41 DllEntryPoint(hInst, reason, reserved)
43 DWORD reason; /* Reason this function is being called. */
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/
H A DdllEntry.c31 DWORD reason, /* Reason this function is being called. */
58 DWORD reason, /* Reason this function is being called. */
28 DllEntryPoint( HINSTANCE hInst, DWORD reason, LPVOID reserved) argument
54 DllMain( HINSTANCE hInst, DWORD reason, LPVOID reserved) argument
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/win/
H A DdllEntryPoint.c44 DllEntryPoint(hInst, reason, reserved)
46 DWORD reason; /* Reason this function is being called. */
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWin32Dll.c38 BOOL WINAPI DllMain(HINSTANCE hInst, DWORD reason,
49 DWORD reason, LPVOID reserved));
72 DllEntryPoint(hInst, reason, reserved)
74 DWORD reason; /* Reason this function is being called. */
77 return DllMain(hInst, reason, reserved);
103 DllMain(hInstance, reason, reserved)
105 DWORD reason;
117 switch (reason) {
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A Dsimulate_crash.c23 static void __security_simulatecrash_link(CFStringRef reason, uint32_t code) argument
40 __SimulateCrash(getpid(), code, reason); local
49 void __security_simulatecrash(CFStringRef reason, uint32_t code) argument
51 secerror("Simulating crash, reason: %@, code=%08x", reason, code);
52 __security_simulatecrash_link(reason, code);
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A Dsimulate_crash.c23 static void __security_simulatecrash_link(CFStringRef reason, uint32_t code) argument
40 __SimulateCrash(getpid(), code, reason); local
49 void __security_simulatecrash(CFStringRef reason, uint32_t code) argument
51 secerror("Simulating crash, reason: %@, code=%08x", reason, code);
52 __security_simulatecrash_link(reason, code);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DRefCountedLeakCounter.cpp47 void RefCountedLeakCounter::suppressMessages(const char* reason)
51 leakMessageSuppressionReasons->add(reason);
54 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason)
57 ASSERT(leakMessageSuppressionReasons->contains(reason));
58 leakMessageSuppressionReasons->remove(reason);
73 // This logs only one reason. Later we could change it so we log all the reasons.
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DErrorHandling.h27 const std::string& reason);
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason);
77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason);
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason);
79 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason);

Completed in 174 milliseconds

1234567891011>>