OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Func2
(Results
1 - 4
of
4
) sorted by null
/external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp
331
Function *
Func2
= Function::Create(FuncTy, Function::InternalLinkage,
332
"
func2
", M);
336
BasicBlock *Block2 = BasicBlock::Create(Context, "block2",
Func2
);
337
BasicBlock *True2 = BasicBlock::Create(Context, "cond_true",
Func2
);
338
BasicBlock *False2 = BasicBlock::Create(Context, "cond_false",
Func2
);
343
// Make Func1 call
Func2
(0) and Func3(0).
345
Builder.CreateCall(
Func2
, ConstantInt::getTrue(Context));
349
// void
Func2
(bool b) { if (b) { Func3(false); return; } return; }
351
Builder.CreateCondBr(
Func2
->arg_begin(), True2, False2);
358
// void Func3(bool b) { if (b) {
Func2
(false); return; } return;
[
all
...]
/external/clang/test/SemaCXX/
overloaded-operator.cpp
198
typedef float&
Func2
(int, double);
202
operator
Func2
&(); // expected-note 2{{conversion candidate of type 'float &(&)(int, double)'}}
/external/valgrind/unittest/
demo_tests.cc
456
void
Func2
() { Func1(); }
457
void Func3() {
Func2
(); }
/external/valgrind/main/drd/tests/
tsan_unittest.cpp
[
all
...]
Completed in 205 milliseconds