Searched refs:funcName (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/
H A Dshell.js69 var funcName = currentFunc();
70 var prefix = (funcName) ? "[reported from " + funcName + "] ": "";
138 * Puts funcName at the top of the call stack. This stack is used to show
141 function enterFunc (funcName)
144 if (!funcName.match(/\(\)$/))
145 funcName += "()";
147 callStack.push(funcName);
152 * Pops the top funcName off the call stack. funcName i
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/
H A Dshell.js69 var funcName = currentFunc();
70 var prefix = (funcName) ? "[reported from " + funcName + "] ": "";
138 * Puts funcName at the top of the call stack. This stack is used to show
141 function enterFunc (funcName)
144 if (!funcName.match(/\(\)$/))
145 funcName += "()";
147 callStack.push(funcName);
152 * Pops the top funcName off the call stack. funcName i
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/objc/
H A D_descriptors.py49 funcName = func.__name__
53 selArgs = 1 + funcName.count('_')
55 raise TypeError('%s can not be an accessor because it accepts varargs or varkw' % (funcName,))
59 raise TypeError('%s expected to take %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, maxArgs, selArgs))
61 raise TypeError('%s expected to take between %d and %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, minArgs, maxArgs, selArgs))
64 if funcName.startswith('validate') and funcName.endswith('_error_'):
67 if funcName.startswith('insertObject_in') and funcName.endswith('AtIndex_'):
69 elif funcName
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_descriptors.py43 funcName = func.__name__
47 selArgs = 1 + funcName.count('_')
49 raise TypeError('%s can not be an accessor because it accepts varargs or varkw' % (funcName,))
52 if selArgs == 3 and (minArgs <= 2 <= maxArgs) and funcName.startswith('validate') and funcName.endswith('_error_'):
55 raise TypeError('%s expected to take %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, maxArgs, selArgs))
57 raise TypeError('%s expected to take between %d and %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, minArgs, maxArgs, selArgs))
60 if funcName.startswith('validate') and funcName.endswith('_error_'):
63 if funcName
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/objc/
H A D_descriptors.py43 funcName = func.__name__
47 selArgs = 1 + funcName.count('_')
49 raise TypeError('%s can not be an accessor because it accepts varargs or varkw' % (funcName,))
52 if selArgs == 3 and (minArgs <= 2 <= maxArgs) and funcName.startswith('validate') and funcName.endswith('_error_'):
55 raise TypeError('%s expected to take %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, maxArgs, selArgs))
57 raise TypeError('%s expected to take between %d and %d args, but must accept %d from Objective-C (implicit self plus count of underscores)' % (funcName, minArgs, maxArgs, selArgs))
60 if funcName.startswith('validate') and funcName.endswith('_error_'):
63 if funcName
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_6/
H A Dshell.js89 var funcName = currentFunc();
90 var prefix = (funcName) ? "[reported from " + funcName + "] ": "";
160 * Puts funcName at the top of the call stack. This stack is used to show
163 function enterFunc (funcName)
166 if (!funcName.match(/\(\)$/))
167 funcName += "()";
169 callStack.push(funcName);
174 * Pops the top funcName off the call stack. funcName i
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/exceptionFuzz/
H A Ddate-format-xparb.js29 var funcName = "format" + Date.formatFunctions.count++;
30 Date.formatFunctions[format] = funcName;
31 var code = "Date.prototype." + funcName + " = function(){return ";
120 var funcName = "parse" + Date.parseFunctions.count++;
123 Date.parseFunctions[format] = funcName;
125 var code = "Date." + funcName + " = function(input){\n"
/macosx-10.10/JavaScriptCore-7600.1.17/interpreter/
H A DVMInspector.h45 static JS_EXPORT_PRIVATE void dumpFrame(CallFrame*, const char* prefix = 0, const char* funcName = 0, const char* file = 0, int line = -1);
H A DVMInspector.cpp60 const char* funcName, const char* file, int line)
90 if (funcName || file || (line >= 0)) {
92 if (funcName)
93 printf(" %s", funcName);
59 dumpFrame(CallFrame* frame, const char* prefix, const char* funcName, const char* file, int line) argument
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/unix/
H A DtclXunixOS.c74 * o funcName - Command or other name to use in not available error.
80 TclXNotAvailableError (interp, funcName)
82 char *funcName;
84 TclX_AppendObjResult (interp, funcName, " is not available on this system",
174 * o funcName - Command or other name to use in not available error.
180 TclXOSgetpriority (interp, priority, funcName)
183 char *funcName;
202 * o funcName - Command or other name to use in not available error.
208 TclXOSincrpriority (interp, priorityIncr, priority, funcName)
212 char *funcName;
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/win/
H A DtclXwinOS.c45 * o funcName - Command or other name to use in not available error.
52 char *funcName)
54 Tcl_AppendResult(interp, funcName, " is not available on MS Windows",
62 char *funcName = Tcl_GetStringFromObj(obj, NULL);
64 Tcl_AppendResult(interp, funcName, " is not available on MS Windows",
326 * o funcName - Command or other name to use in not available error. argument
334 char *funcName)
337 return TclXNotAvailableError (interp, funcName);
350 * o funcName - Command or other name to use in not available error.
359 char *funcName)
50 TclXNotAvailableError(Tcl_Interp *interp, char *funcName) argument
61 char *funcName = Tcl_GetStringFromObj(obj, NULL); local
349 TclXOSincrpriority(Tcl_Interp *interp, int priorityIncr, int *priority, char *funcName) argument
413 TclXOSsetitimer(Tcl_Interp *interp, double *seconds, char *funcName) argument
530 TclX_OSlink(Tcl_Interp *interp, char *srcPath, char *targetPath, char *funcName) argument
552 TclX_OSsymlink(Tcl_Interp *interp, char *srcPath, char *targetPath, char *funcName) argument
602 TclXOSkill(Tcl_Interp *interp, pid_t pid, int signal, char *funcName) argument
946 TclXOSftruncate(Tcl_Interp *interp, Tcl_Channel channel, off_t newSize, char *funcName) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclExtdInt.h418 char *funcName));
429 char *funcName));
435 char *funcName));
444 char *funcName));
465 char *funcName));
470 char *funcName));
480 char *funcName));
508 char *funcName));
557 char *funcName));
564 char *funcName));
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetLibraryInfo.cpp336 bool TargetLibraryInfo::getLibFunc(StringRef funcName, argument
340 const char **I = std::lower_bound(Start, End, funcName);
341 if (I != End && *I == funcName) {
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclCompExpr.c159 Tcl_Token *exprTokenPtr, CONST char *funcName,
819 * mathFuncCall ::= funcName '(' [condExpr {',' condExpr}] ')'
836 CompileMathFuncCall(exprTokenPtr, funcName, infoPtr, envPtr, endPtrPtr)
839 CONST char *funcName; /* Name of the math function. */
859 hPtr = Tcl_FindHashEntry(&iPtr->mathFuncTable, funcName);
863 "unknown math function \"", funcName, "\"", (char *) NULL);
874 TclEmitPush(TclRegisterNewLiteral(envPtr, funcName, -1), envPtr);
857 "unknown math function \\"", funcName, "\\"", (char *) NULL); local
H A DtclExecute.c5937 char *funcName;
5959 funcName = TclGetString(objv[0]);
5960 hPtr = Tcl_FindHashEntry(&iPtr->mathFuncTable, funcName);
5963 "unknown math function \"", funcName, "\"", (char *) NULL);
5918 char *funcName; local
5944 "unknown math function \\"", funcName, "\\"", (char *) NULL); local
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetLibraryInfo.h354 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const;
/macosx-10.10/swig-12/Source/Modules/
H A Dguile.cxx1512 String *funcName = NewString(mangled_classname); local
1513 Printf(funcName, "_swig_guile_setgoopsclass");
1514 String *guileFuncName = NewString(funcName);
1517 Printv(f_wrappers, "static SCM ", funcName, "(SCM cl) \n", NIL);
1523 Printf(f_init, "scm_c_define_gsubr(\"%s\", 1, 0, 0, (swig_guile_proc) %s);\n", guileFuncName, funcName);
1530 Delete(funcName);
/macosx-10.10/llvmCore-3425.0.34/tools/bugpoint/
H A DMiscompilation.cpp825 GlobalVariable *funcName = local
830 // 2. Use `GetElementPtr *funcName, 0, 0' to convert the string to an
833 // GetElementPtr *funcName, ulong 0, ulong 0
836 Value *GEP = ConstantExpr::getGetElementPtr(funcName, GEPargs);
/macosx-10.10/JavaScriptCore-7600.1.17/API/tests/
H A Dtestapi.c566 JSStringRef funcName; local
569 funcName = JSStringCreateWithUTF8CString("toNumber");
572 funcName = JSStringCreateWithUTF8CString("toStringExplicit");
578 JSValueRef func = JSObjectGetProperty(context, object, funcName, exception);
579 JSStringRelease(funcName);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/CppBackend/
H A DCPPBackend.cpp117 void printFunction(const std::string& fname, const std::string& funcName );
119 void printInline(const std::string& fname, const std::string& funcName );
1969 const std::string& funcName) {
1970 const Function* F = TheModule->getFunction(funcName);
1972 error(std::string("Function '") + funcName + "' not found in input module");
1968 printFunction(const std::string& fname, const std::string& funcName) argument
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddomxslt.c2095 char * funcName,
2121 DBG ( fprintf(stderr,"xsltXPathFuncs funcName='%s'\n",funcName); )
2123 if (strcmp(funcName, "key")==0) {
2233 if (strcmp(funcName, "current")==0) {
2247 if (strcmp (funcName, "format-number")==0) {
2316 if (strcmp (funcName, "document")==0) {
2439 return (xs->orig_funcCB)(xs->orig_funcClientData, funcName,
2093 xsltXPathFuncs( void * clientData, char * funcName, domNode * ctxNode, int ctxPos, xpathResultSet * ctx, domNode * exprContext, int argc, xpathResultSets * argv, xpathResultSet * result, char ** errMsg ) argument
/macosx-10.10/libxml2-26/libxml2/
H A Dxmlschemas.c1087 const char *funcName,
2265 const char *funcName,
2275 msg = xmlStrcat(msg, BAD_CAST funcName);
2293 const char *funcName,
2296 xmlSchemaInternalErr2(actxt, funcName, message, NULL, NULL);
2302 const char *funcName,
2307 xmlSchemaInternalErr2(ACTXT_CAST pctxt, funcName, message,
2264 xmlSchemaInternalErr2(xmlSchemaAbstractCtxtPtr actxt, const char *funcName, const char *message, const xmlChar *str1, const xmlChar *str2) argument
2292 xmlSchemaInternalErr(xmlSchemaAbstractCtxtPtr actxt, const char *funcName, const char *message) argument
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlschemas.c1082 const char *funcName,
2246 const char *funcName,
2256 msg = xmlStrcat(msg, BAD_CAST funcName);
2274 const char *funcName,
2277 xmlSchemaInternalErr2(actxt, funcName, message, NULL, NULL);
2283 const char *funcName,
2288 xmlSchemaInternalErr2(ACTXT_CAST pctxt, funcName, message,
2245 xmlSchemaInternalErr2(xmlSchemaAbstractCtxtPtr actxt, const char *funcName, const char *message, const xmlChar *str1, const xmlChar *str2) argument
2273 xmlSchemaInternalErr(xmlSchemaAbstractCtxtPtr actxt, const char *funcName, const char *message) argument

Completed in 505 milliseconds