Home
last modified time | relevance | path

Searched refs:find_function (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dexecutionengine.ml81 (* find_function *)
82 match ExecutionEngine.find_function "dne" ee with
83 | Some _ -> raise (Failure "find_function 'dne' failed")
86 match ExecutionEngine.find_function "plus" ee with
87 | None -> raise (Failure "find_function 'plus' failed")
/external/arm-optimized-routines/test/rtest/
Dmain.c86 Testable *find_function(const char *func) in find_function() function
208 f = find_function(q); in dofile()
213 f = find_function(r); in dofile()
/external/mesa3d/src/compiler/glsl/
Dlower_int64.cpp101 ir_function *find_function(const char *name) in find_function() function in __anonb98d59b60111::lower_64bit_visitor
328 ir_function *f = find_function(function_name); in handle_op()
/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
Dllvm_executionengine.mli123 (** [find_function n ee] finds the function named [n] defined in any of the
126 val find_function : string -> t -> Llvm.llvalue option val
Dllvm_executionengine.ml71 external find_function: string -> t -> Llvm.llvalue option
/external/python/cpython3/Lib/test/
Dtest_pdb.py1193 expected, pdb.find_function(func_name, support.TESTFN))
/external/python/cpython2/Lib/
Dpdb.py31 def find_function(funcname, filename): function
469 answer = find_function(item, fname)
/external/python/cpython3/Lib/
Dpdb.py92 def find_function(funcname, filename): function
740 answer = find_function(item, fname)
/external/python/cpython3/Misc/
DHISTORY3881 - Issue #18714: Added tests for ``pdb.find_function()``.