HomeSort by relevance Sort by last modified time
    Searched defs:Call (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/v8/test/webkit/
named-function-expression.js 28 function Call(lambda) { return lambda(); }
  /external/ceres-solver/include/ceres/internal/
variadic_evaluate.h 52 static bool Call(const Functor& functor, T const *const *input, T* output) {
70 static bool Call(const Functor& functor, T const *const *input, T* output) {
87 static bool Call(const Functor& functor, T const *const *input, T* output) {
103 static bool Call(const Functor& functor, T const *const *input, T* output) {
118 static bool Call(const Functor& functor, T const *const *input, T* output) {
131 static bool Call(const Functor& functor, T const *const *input, T* output) {
143 static bool Call(const Functor& functor, T const *const *input, T* output) {
154 static bool Call(const Functor& functor, T const *const *input, T* output) {
164 static bool Call(const Functor& functor, T const *const *input, T* output) {
173 static bool Call(const Functor& functor, T const *const *input, T* output)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 8 from ..fixer_util import Call, Name, parenthesize
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
59 return Call(func, l_newargs, prefix=prefix)
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
37 return Call(Name(u'isinstance'), args, prefix=node.prefix)
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
40 return Call(Name(u"exec"), args, prefix=node.prefix)
fix_filter.py 6 We avoid the transformation if the filter() call is directly contained
19 from ..fixer_util import Name, Call, ListComp, in_special_context
74 new = Call(Name(u"list"), [new])
fix_input.py 6 from ..fixer_util import Call, Name
20 # If we're already wrapped in a eval() call, we're done.
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
fix_zip.py 6 We avoid the transformation if the zip() call is directly contained in
12 from ..fixer_util import Name, Call, in_special_context
33 new = Call(Name(u"list"), [new])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 8 from ..fixer_util import Call, Name, parenthesize
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
59 return Call(func, l_newargs, prefix=prefix)
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
37 return Call(Name(u'isinstance'), args, prefix=node.prefix)
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
40 return Call(Name(u"exec"), args, prefix=node.prefix)
fix_filter.py 6 We avoid the transformation if the filter() call is directly contained
19 from ..fixer_util import Name, Call, ListComp, in_special_context
74 new = Call(Name(u"list"), [new])
fix_input.py 6 from ..fixer_util import Call, Name
20 # If we're already wrapped in a eval() call, we're done.
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
fix_zip.py 6 We avoid the transformation if the zip() call is directly contained in
12 from ..fixer_util import Name, Call, in_special_context
33 new = Call(Name(u"list"), [new])
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-nodeduct.cpp 4 template <class F> void Call(F f) { f(1); }
6 void a() { Call(f<int>); }
32 template <typename T> void g(T); // expected-note{{possible target for call}}
33 template <typename T> void g(T, T); // expected-note{{possible target for call}}
36 // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
  /external/clang/test/CodeGenCXX/
copy-constructor-elim.cpp 33 void Call(S) {};
41 Call(s);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 17 | Call of string * expr array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 17 | Call of string * expr array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 17 | Call of string * expr array
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 3 unless defined? Call
5 Call = Struct.new( :file, :line, :method )
6 class Call
13 return Call.new( file, line )
18 return Call.new( file, line, method )
47 Call.convert_backtrace( caller( depth + 1 ) )
53 Call.convert_backtrace( backtrace )
57 end # unless defined? Call
  /external/chromium_org/build/android/pylib/
cmd_helper.py 23 def Call(args, stdout=None, stderr=None, shell=None, cwd=None, env=None):
43 return Call(args, cwd=cwd)
93 exit_code = Call(args, cwd=cwd, stdout=tmpout, stderr=tmperr, shell=shell)
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 63 * a call HasProperty() for the same |name| would return false.
111 struct PP_Var (*Call)(void* object,
  /external/chromium_org/v8/src/
arguments.cc 48 v8::Handle<v8::Value> FunctionCallbackArguments::Call(FunctionCallback f) {
62 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f) { \
73 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
85 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
98 void PropertyCallbackArguments::Call(Function f, \

Completed in 285 milliseconds

1 2 3 4 5 6 7