Tagged Questions
The call tag has no wiki summary.
16
votes
4answers
2k views
iPhone call log / history
I'm doing some research on the feasibility of an iPhone application, and can't find any indication in Apple's documentation that an iPhone app can read the call history of the phone, specifically the ...
14
votes
2answers
327 views
How can I call a javascript constructor using call or apply?
how could I generalise the function below to take N arguments? (Using call or apply?)
Is there a programmatic way to apply arguments to 'new'? I don't want the constructor to be treated like a ...
13
votes
3answers
2k views
Explanation of [].slice.call in javascript?
I stumbled onto this neat shortcut for converting a DOM NodeList into a regular array, but I must admit, I don't completely understand how it works:
[].slice.call(document.querySelectorAll('a'), 0)
...
10
votes
1answer
7k views
Android - How to programmatically answer a call
I know this has been asked before, but at this time the answer of the post is not true.
http://stackoverflow.com/questions/2610587/how-to-programmatically-answer-a-call
Vringo and other apps does ...
8
votes
3answers
190 views
Delphi - dynamically calling different functions
I have a treeview (VirtualTree) which has nodes. When a user clicks on a node, I need to run a specific function, passing the text name of the node. This function is one of the attributes of the ...
8
votes
1answer
163 views
Capture both exit status and output from a system call in R
I've been playing a bit with system() and system2() for fun, and it struck me that I can save either the output or the exit status in an object. A toy example:
X <- system("ping ...
8
votes
2answers
225 views
Native way to merge objects in Javascript
Javascript's Object doesn't have any native merge operation. If you have two objects, say
{a:1, b:2}
{c:3, d:4}
And want to get
{a:1, b:2, c:3, d:4}
As far as I know, you have to iterate ...
8
votes
1answer
255 views
Why does `typeof this` return “object”?
var f = function(o){ return this+":"+o+"::"+(typeof this)+":"+(typeof o) };
f.call( "2", "2" );
// "2:2::object:string"
var f = function(o){ return this+":"+(typeof this)+":"+(typeof o); };
var x = ...
7
votes
4answers
580 views
When is a parameterized method call useful?
A Java method call may be parameterized like in the following code:
class Test
{
<T> void test()
{
}
public static void main(String[] args)
{
new ...
7
votes
4answers
3k views
Programmatically reject a call on the BlackBerry
I'm trying to programmatically reject a call on a BlackBerry, with Java + JDE.
I'm intercepting the callIncoming event, and in there I need to do something to reject a call from a specific number.
...
6
votes
3answers
369 views
How to intercept instance method calls?
I am looking for a way to intercept instance method calls in class MyWrapper below:
class SomeClass1:
def a1(self):
self.internal_z()
return "a1"
def a2(self):
return ...
6
votes
6answers
5k views
How can I record voice and record Call in Android?
Please help me if you know how to record voice and if anybody call us than record both voice.
If anybody know then give me hint.
6
votes
3answers
245 views
When fine-tuning performance, what is the best way to call JavaScript methods multiple times?
I have been researching JavaScript performance. I've learned that when accessing more than once, it is usually best to copy closure variables and class members into local scope to speed things up. ...
6
votes
3answers
279 views
Passing an array as a function parameter in JavaScript
i'd like to call a function using an array as a parameters:
var x = [ 'p0', 'p1', 'p2' ];
call_me ( x[0], x[1], x[2] ); // i don't like it
function call_me (param0, param1, param2 ) {
// ...
}
...
6
votes
4answers
1k views
Should I use Call keyword in VB/VBA?
I use the Call keyword used when calling subs in VB/VBA. I know it's optional, but is it better to use it or leave it off? I've always thought it was more explicit, but maybe it's just noise.
Also, ...
6
votes
4answers
2k views
How to execute a function asynchronously every 60 seconds in Python?
I want to execute a function every 60 seconds on Python but I don't want to be blocked meanwhile.
How can I do it asynchronously?
import threading
import time
def f():
print("hello world")
...
5
votes
1answer
236 views
Android - Auto answer the incoming call programatically?
I have the code for getting the number of the incoming call to a android phone. But I want to automatically answer the call when the incoming call is from a particular number.
I found this code on ...
5
votes
4answers
108 views
Will the “count limit” expression of a for-loop be evaluated only once, or on each iteration?
If I invoke a method within a loop's conditional statement, will it be called with each loop iteration?
For example:
for( int i = 0; i <= expensiveComputation(); i++ ) {
// Do something.
}
...
5
votes
2answers
113 views
Function is not Called
I have some javascript that is supposed to run after the window loads but for some reason, it never runs.
Here's my code:
function setClasses(){
...
5
votes
1answer
205 views
Supress Android incomming call Activity from apearing
How are things now
This has been discussed in many questions but neither one offers a good solution. Things look simple, after having a BroadcastReceiver is really easy to intercept and block a call. ...
5
votes
3answers
158 views
“<method> takes no arguments (1 given)” but I gave none
I am new to Python and I have written this simple script:
#!/usr/bin/python3
import sys
class Hello:
def printHello():
print('Hello!')
def main():
helloObject = Hello()
...
5
votes
12answers
263 views
java how expensive is a method call
I'm a beginner and I've always read that it's bad to repeat code. However, it seems that in order to not do so, you would have to have extra method calls usually. Let's say I have the following class
...
5
votes
1answer
318 views
LD_PRELOAD not working for printf
i am using LD_PRELOAD to capture write() system call in linux .
I am successfully able to do this for write system call and make it work.
But when i call printf() that time it does not work. If we ...
5
votes
5answers
194 views
How to add print statements in every function in c files right programmatically?
I am working on embedded code and for now totally reliant on prints from within functions to figure out the flow of execution (there is no stack trace functionality available).
It often happens that ...
5
votes
4answers
868 views
PHP: How To Call Standard Library Functions
I'm starting with PHP for dynamic web pages. I have some libaries written in ANSI C for getting/setting parameters and other proprietary stuff. I wonder, is there a simple solution to use a wrapper ...
5
votes
3answers
2k views
Silverlight WCF Proxy async only?
Why do the Silerlight-generated WCF proxy class(es) offer only async calls?
There are cases where I don't really need the async pattern (for example in a BackgroundWorker)
EDIT : Sometimes I need to ...
5
votes
3answers
316 views
How to make iPhone app look right when user is on a phone call or Internet tethering?
The status bar has grown, so parts of my interface get cut off. Any pointers on how to fix this (e.g. using autoresize masks, etc.)?
I use Interface Builder for the UI, so everything is .xib's.
5
votes
4answers
2k views
URL Scheme for Phone Call
Much like the "mailto" URL prefix launches the user's default mail program and starts a new email with specified address, is there a similar URL scheme that would initiate a phone call? Perhaps ...
4
votes
1answer
66 views
Trying to understand underscore.js source - call and apply used in library
In Jeremy Ashkenas's awesome Underscore.js library, I tried to understand one thing about the source file. I do not understand this:
args = slice.call(arguments, 2);
Note: here slice is a local ...
4
votes
2answers
149 views
Android: how can I launch phone call in my activity, and then back to it?
I can launch the phone call by Intent:
String url = "tel:3334444";
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url));
But it will stay in the phone call screen. What I want is ...
4
votes
2answers
88 views
Javascript apply or call used on charCodeAt
The premise: what the correct charCodeAt(i : Int) performance would look like:
"test".charCodeAt(0)
116
"test".charCodeAt(1)
101
"test".charCodeAt(2)
115
"test".charCodeAt(3)
116
"test".charCodeAt(4)
...
4
votes
2answers
179 views
Calling a Objective C function from C++ Code
I googled around and I find a million results to this subject. But none of the pages helps me. I think that I have a very common problem. I'm playing around with audio programming especially working ...
4
votes
3answers
842 views
Windows Phone 7 call history - Mango API
Am I able to get the current call history with the call number and DateTime details from the phone with the Mango API? I think it is not possible with the current one.
4
votes
1answer
1k views
phone number format for iPhone
I have to make calls programmatically in my iPhone app.
I have set of numbers in different countries with different formatting - braces, dots, spaces, "+" sign.
Can I simply remove all of this and ...
4
votes
2answers
97 views
Calling C function by generic pointer
Is there any method to call a function, by just knowing its address in a pointer, lets say a pointer of type "void *(*)(void *)", and number and type of its parameter?
The function could have any ...
4
votes
4answers
64 views
In .NET, is it possible to set Events based on calling of a function
Say I have a function named:
void AFun()
{
// body
}
Is it possible to set an event whenever this function is called. Say,
void AnEvent()
{
//body
}
And AnEvent() will always be called whenever ...
4
votes
2answers
556 views
Call 911 in Android
I want to Call Emergency number using android SDK
I am using following code to Call the number(911). This code works fine for all the numbers except 911(Emergency Nuumber). When i use 911 then It ...
4
votes
1answer
332 views
Android iPhone Blackberry call forwarding
I'm making a feasibility research for a mobile app (iPhone, Android & Blackberry) project. In short, there is a list of phone numbers, and if incoming call (caller id) is in that list, forward it ...
4
votes
2answers
3k views
Android Dialer application
I am figuring out a way to replace the default dialer app from my custom dialer app but I am not getting how to achieve this.
Here is what I want
Create a custom dialer UI
My app is called whenever ...
4
votes
2answers
102 views
Making redundant OpenGL calls
I was wondering if it is recommended to eliminate all redundant opengl calls.
For instance, should I be doing something like (wrapped in a function):
if(foobuffer != boundbuffer) {
...
4
votes
3answers
1k views
Javascript inheritance: call super-constructor or use prototype chain?
Quite recently I read about JavaScript call usage in MDC
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call
one linke of the example shown below, I still don't ...
4
votes
1answer
210 views
Calling a Perl module from Python
my question is the inverse of this one. In particular, I've dozens of existing modules written in Perl, some are object oriented and others just export a group of functions. Now since I have to write ...
4
votes
3answers
260 views
Call a java class from perl
I would like to call a java class from perl. I usually use the java class from command line to do some processing like
java com.something.some
and now, I need to call it from inside a perl script. ...
4
votes
4answers
229 views
How do I automatically reset a boolean when any method other is called in C#?
Using C#, I need to do some extra work if function A() was called right before function C(). If any other function was called in between A() and C() then I don't want to do that extra work. Any ideas ...
4
votes
6answers
8k views
Java Finalize method call
I need to find when finalized method called in the JVM. I Created a test Class which write into file when finalized method called by Overriding the protected finalize method It is not executing. Can ...
4
votes
2answers
761 views
Generate a call, sms, etc from iphone
is it possible to generate a call or an sms from an application that we create for iphone? Also is it possible to record a call???
4
votes
3answers
189 views
Is there a way to get to know if the user is on call while using my app?
Is it possible to identify whether the user is on a phone call while using an app.
Here is the scenario:
I get a call
I accept the call
Tap the home button
Launch an app
At this point can I tell ...
4
votes
12answers
3k views
Using 'this' as a parameter to a method call in a constructor
I have a constructor like as follows:
public Agent(){
this.name = "John";
this.id = 9;
this.setTopWorldAgent(this, "Top_World_Agent", true);
}
I'm getting a null pointer exception here in the ...
3
votes
6answers
144 views
How to call javascript method in asp.net web application
I want to use a javascript function inside a c# function
protected void button1_Click(object sender,EventArgs e){
//javascript function call ex.
/*
boolean b=the return of:
<script ...
3
votes
3answers
351 views
how to use android.intent.action.CALL_PRIVILEGED and android.intent.action.NEW_OUTGOING_CALL?
I can't find the documentation for:
android.intent.action.CALL_PRIVILEGED
I saw it is used for example in csipsimple to handle the call.
I would like to better understand how to use it. For ...