Home
last modified time | relevance | path

Searched refs:fun_name (Results 1 – 8 of 8) sorted by relevance

/external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
Dtestbench.hpp50 #define TEST(fun_name) \ argument
51 void fun_name (); \
54 const char* name() { return(#fun_name); } \
55 void run() { fun_name(); } \
57 void fun_name()
/external/llvm-project/lldb/test/API/functionalities/return-value/
DTestReturnValue.py59 fun_name = frame.GetFunctionName()
60 self.assertEquals(fun_name, "outer_sint(int)")
80 fun_name = frame.GetFunctionName()
81 self.assertEquals(fun_name, "outer_sint(int)")
90 fun_name = frame.GetFunctionName()
91 self.assertEquals(fun_name, "main")
120 fun_name = frame.GetFunctionName()
121 self.assertEquals(fun_name, "outer_float(float)")
265 fun_name = frame.GetFunctionName()
266 self.assertEquals(fun_name, "main")
/external/apache-commons-bcel/src/examples/Mini/
DFunction.java32 private String fun_name; // Short for name.getName() field in Function
44 fun_name = name.getName(); in Function()
62 String prefix = "Function " + fun_name + "(" + buf.toString() + ")"; in toString()
73 public String getHashKey() { return fun_name; } in getHashKey()
/external/libaom/libaom/tools/txfm_analyzer/
Dtxfm_gen_code.cc114 char *fun_name = new char[100]; in gen_code_c() local
115 get_fun_name(fun_name, 100, type, node_num); in gen_code_c()
122 fun_name); in gen_code_c()
339 char *fun_name = new char[100]; in gen_code_sse2() local
340 get_fun_name(fun_name, 100, type, node_num); in gen_code_sse2()
346 fun_name); in gen_code_sse2()
510 char *fun_name = new char[100]; in gen_code_sse4_1() local
511 get_fun_name(fun_name, 100, type, node_num); in gen_code_sse4_1()
517 fun_name); in gen_code_sse4_1()
/external/llvm-project/libcxx/test/support/
Dfilesystem_test_helper.h627 explicit ExceptionChecker(std::errc first_err, const char* fun_name,
629 : expected_err{first_err}, num_paths(0), func_name(fun_name),
632 const char* fun_name, std::string opt_msg = {})
634 func_name(fun_name), opt_message(opt_msg) {} in expected_err()
637 const char* fun_name, std::string opt_msg = {})
639 num_paths(2), func_name(fun_name), opt_message(opt_msg) {} in expected_err()
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug-names-verify-completeness.s9 # CHECK: error: Name Index @ 0x0: Entry for DIE @ {{.*}} (DW_TAG_subprogram) with name fun_name mis…
/external/pdfium/fxjs/
Dcjs_publicmethods.cpp231 #define JS_STATIC_GLOBAL_FUN(fun_name) \ argument
232 void CJS_PublicMethods::fun_name##_static( \
234 JSGlobalFunc<fun_name>(#fun_name, info); \
/external/rust/crates/nom/
DCHANGELOG.md918 - `named!` now handles thge alternative `named!(pub fun_name<OutputType>, ...)`