Tagged Questions
The function-call tag has no wiki summary.
26
votes
1answer
824 views
Why is 'X x; x();' allowed, when 'X' defines a conversion to function pointer, but not, when it defines a conversion to a functor?
void f(int){}
typedef void (*f_ptr)(int);
struct Functor{
void operator()(int){}
};
struct X{
operator f_ptr(){ return f; }
};
struct Y{
operator Functor(){ return Functor(); }
};
int ...
5
votes
5answers
2k views
How to call Java function from string stored in a Variable [closed]
Possible Duplicate:
Calling a method named “string” at runtime in Java and C
I need to be able to call a function, but the function name is stored in a variable, is this ...
4
votes
3answers
103 views
How do I create an std::vector of functions without defining the functions explicitly?
I want to create an std::vector object (or any other standard or custom container type) with elements of custom and arbitrary functions whose signatures are all the same.
It should be something like ...
3
votes
1answer
99 views
On Exception-Safety in a Function-Call
Is the call to f() exception-safe?
inline std::auto_ptr<C> auto_new() {
return std::auto_ptr<C>(new C());
}
void f(std::auto_ptr<C> p1,
std::auto_ptr<C> p2);
// ...
3
votes
1answer
472 views
How to implement a function call with Antlr so that it can be called even before it is defined?
Once the AST is built, what is the best way implement the tree walker so that functions can be defined and called in whatever order?
For example, this is valid in PHP:
<?php
f(); // function ...
2
votes
1answer
19 views
How can i stop hearing mediaplayer on call?
I thought that android automatically stops sound from other sources than call . But i have seen in a program i'm developing that it only put it too low .
Anyway to solve this problem? Any OnCall ...
2
votes
2answers
222 views
What is faster: noop function call or if statement?
I got a function pointer for a deleter, but most of the time, the deleter is not gonna be needed, only when I maintain an internal copy of something. Currently I do that with a noop deleter function:
...
2
votes
2answers
402 views
How to get (sub)class name from a static method in Python?
If I define:
class Bar(object):
@staticmethod
def bar():
# code
pass
class Foo(Bar):
# code
pass
Is it possible for a function call Foo.bar() to determine the ...
2
votes
2answers
159 views
Displaying the actual parameter list of the function during execution
I am trying to display the actual values of the parameters that were supplied when the function was called. `match.call' does something along the lines I want but it does not evaluate variables. For ...
2
votes
3answers
762 views
Direct call using GCC's inline assembly
If you want to call a C/C++ function from inline assembly, you can do something like this:
void callee() {}
void caller()
{
asm("call *%0" : : "r"(callee));
}
GCC will then emit code which ...
1
vote
1answer
73 views
Mysterious C function calling
I have this code:
int indexOf(const char *array[], char *e)
{
printf("inside: %d\n",(int)sizeof(array));
/* ... */
}
int main(int argc, char *argv[])
{
const char *a[] = {";", ",", ":", ...
1
vote
1answer
87 views
Why has the statement “printfn” in F# different name in VS2010 object browser?
I had know the difference between F# library and .NET library when I called their functions.
But when I saw the statement "printfn" in VS 2010 object browser, I saw only the "public static T ...
1
vote
5answers
465 views
How to call a PHP function in JavaScript?
HI Guys, This question might be so irrelevant but I am a complete newbie to programming so I honestly don't understand some basic principles.
I have
index.php
<select id="year_list" ...
1
vote
1answer
125 views
How to find function that never called [closed]
Possible Duplicate:
Find never-called functions
Hello
I know that similar question was already asked Find never-called functions
but maybe someone have some other solutions?That don't ...
1
vote
2answers
197 views
Recognizing stack frames in a stack using saved EBP values
I would like to divide a stack to stack-frames by looking on the raw data on the stack. I thought to do so by finding a "linked list" of saved EBP pointers.
Can I assume that a (standard and ...
1
vote
3answers
164 views
Objective-C and Cocoa : crash when calling a class function without entering the function
I have a class function (declared and implemented) in a class MyUtils.
When I call this function my app crashes. In the debugger I have a breakpoint on the first action of the "theFunction" function. ...
1
vote
1answer
173 views
How can I tell if a function call is an expression or a statement while writing a parser for a Lua-like language
I'm trying to write a parser for a Lua-like language, using lex and yacc. It is a language without a forced statement terminator(a semicolon), and this feature made me not able to tell if a function ...
1
vote
1answer
115 views
Custom jQuery functions called from inline events
I want to wrap the following code into a function using jQuery and call that function from inline (eg: onclick, onchange etc.).
function some_function() {
alert("Hello world");
}
Called by ...
1
vote
5answers
1k views
How to use default arguments in php
I want to define a function doSomething(arg1, arg2) with default values to arg1=val and arg2=val
When I write
function doSomething($arg1="value1", $arg2="value2"){
// do something
}
Is it ...
1
vote
2answers
129 views
javascript “this” points to Window object again
I asked a question on http://stackoverflow.com/questions/2719643/javascript-this-points-to-window-object regarding "this" points to Window object.
here is source code
var archive = function(){}
...
0
votes
3answers
116 views
Calling a function through its address in memory in c / c++
Given knowledge of the prototype of a function and its address in memory, is it possible to call this function from another process or some piece of code that knows nothing but the prototype and ...
0
votes
4answers
68 views
How to use the javascript call method in jQuery?
Is it possible to use the call method of javascript (as described in the [mdn documentation])
in order to pass the argument this?
Having for example this code:
console.log(this);
...
0
votes
2answers
49 views
How to fopen with name already in a array of strings
I am trying to find a way to use
FILE * fopen ( const char * filename, const char * mode ); but passing the filename indirectly. i would also like to know how to indirectly call a function with name ...
0
votes
0answers
29 views
Calling functions in nasm under Mac OS X (FreeBSD)
section .data
a dd 4
b dd 3
section .text
global main
main:
push a
push b
call sum
add esp, 8
;or pop ebx
; pop ebx
; remove parameter
; remove ...
0
votes
0answers
78 views
Calling a function from chrome extension
I'm creating an extension for chrome. I'm using NPAPI for calling the code that is written in C. While linking the ".so" file (which is the output of the NPAPI plugin) to the chrome as per the link ...
0
votes
3answers
58 views
undefined variable in MATLAB
I am newbie to MATLAB .I have written a code to upsample a data.when executed always shrows the particular error(below)
??? Input argument "n" is undefined.
Error in ==> upsamp at 7
mm=min(n)
but ...
0
votes
3answers
68 views
Jquery self-call function loop
I'm trying to check whether my self-calling jquery function did the job done but what happened is that the result keep multiplying on each self calling.
HTML
<span id="checkit"></span>
...
0
votes
1answer
24 views
Firefox & AJAX oddity: DOM replacements not working again after just working
these are the two functions (externally loaded):
function replaceText(element, text) {
if (element != null) {
clearText(element);
var newNode = document.createTextNode(text);
...
0
votes
2answers
96 views
null pointer exception during a function call
I am getting a null pointer exception when I am calling a function.
Here is my code:
try{
.....
String [] forForm = new String[5];
forForm[0] = new ...
0
votes
3answers
57 views
Ways to call JavaScript Functions
How can I call a JavaScript function when a div's display is set to none?
This is the code I have :
if(document.getElementById("myDiv").style.display == "none"){
myFunction();
}
I was thinking ...
0
votes
1answer
42 views
Efficiency - function call in a conditional statement
If I have a bit of code looking like this:
if(someInteger || somecomplexfunction() > 0) {
// do something
}
Will the function be called if someInteger evaluates to true?
p.s. compiling with ...
0
votes
3answers
163 views
I can't get my delete function to delete items off the list. Any help would be greatly appreciated
When I add a person it gets added correctly, but when I go to delete the name it says the name is not found. This program allows a user to create a phonebook and edit information in the phonebook
...
0
votes
2answers
214 views
Is JavaScript function call faster through prototype or direct reference?
In JavaScript, let's say I want to call aObj.myMethod() from inside bObj. In the case of my application, from the design point of view, aObj is the base class for bObj. JavaScript is a late binding ...
0
votes
1answer
34 views
Not sure why my program seems to be skipping some functions?
Hey there,
I'm a little confused with some Actionscript I'm working on. For my GUI, I have written four functions for times when computing is taking place. These are showMessage("Loading Text..."), ...
0
votes
1answer
138 views
iPhone - Waiting beetween 2 code line for asynchronous task to be done
I have two lines of code that are executed just before the pop of a view.
Those two lines are making some scrolling.
Because of those 3 animations, there are many things that the user don't see, or ...
0
votes
6answers
681 views
Which is faster for large “for” loop: function call or inline coding?
I have programmed an embedded software (using C of course) and now I'm considering ways to improve the running time of the system. The most important single module in my system is one very large ...
0
votes
3answers
679 views
Cocoa application crashing on OpenGL call
I made a new project and pretty much copied this guide, but whenever I call any OpenGL function it the spot marked // Drawing code here it crashes. I have this there :
glViewport(0, 0, [self ...
0
votes
4answers
148 views
How to handle the error that occurs on giving wrong number of parameters in a function call in Python?
When i give wrong number of parameters in a function , i get errors.
How do I handle it?
I gave
def fun_name(...):
try:
...
except TypeError:
print 'Wrong no of arg'
It ...
-1
votes
9answers
284 views
what's faster - the if statement or a call of a function? [closed]
i'm writing an interesting program, and every performance hit is very painful for me.
so i'm wondering what is better - to make an extra "if" statement to reduce a number of function calls, or to ...
-1
votes
4answers
679 views
How do I timestamp simultaneous function calls in Python?
I have a read function in a module.
If I perform that function simultaneously I need to timestamp it.
How do I do this?
-4
votes
1answer
60 views
Javascript function not called
I´ve got a javascript method that calls a php method to get some data in the array "availabletags". To prove if the function is even called, I added
availableTags[0] = "Test";
When I put it on my ...