Searched defs:Function (Results 1 - 25 of 230) sorted by relevance

12345678910

/external/libcxxabi/test/
H A Dcatch_function_01.pass.cpp29 typedef void Function(); typedef
30 assert(!can_convert<Function&>(&f));
37 catch (Function& b) // can't catch void (*)()
45 catch(Function*)
H A Dcatch_function_02.pass.cpp19 typedef void Function(); typedef
25 catch (Function b) // equivalent to void (*)()
/external/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp1 //===- CoverageFilters.cpp - Function coverage mapping filters ------------===//
20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) { argument
21 StringRef FuncName = Function.Name;
26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) { argument
27 return llvm::Regex(Regex).match(Function.Name);
30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) { argument
31 return PassesThreshold(FunctionCoverageSummary::get(Function)
35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) { argument
37 FunctionCoverageSummary::get(Function).LineCoverage.getPercentCovered());
44 bool CoverageFilters::matches(const coverage::FunctionRecord &Function) { argument
53 matches(const coverage::FunctionRecord &Function) argument
[all...]
H A DCoverageSummaryInfo.cpp21 FunctionCoverageSummary::get(const coverage::FunctionRecord &Function) { argument
24 for (auto &CR : Function.CountedRegions) {
34 for (unsigned FileID = 0, E = Function.Filenames.size(); FileID < E;
40 for (auto &CR : Function.CountedRegions) {
51 for (auto &CR : Function.CountedRegions) {
68 Function.Name, Function.ExecutionCount,
/external/javasqlite/src/main/java/SQLite/
H A DFunction.java12 * class SinFunc implements SQLite.Function {
31 public interface Function { interface
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dfunction_definition.py11 'Function',
15 class Function(base_symbol.AnnotatedSymbol): class in inherits:base_symbol.AnnotatedSymbol
/external/deqp/modules/internal/
H A DditTestCase.hpp35 typedef void (*Function) (void); typedef in class:dit::SelfCheckCase
37 SelfCheckCase (tcu::TestContext& testCtx, const char* name, const char* desc, Function func)
51 Function m_function;
/external/guava/guava/src/com/google/common/base/
H A DFunction.java30 * Function}</a>.
36 public interface Function<F, T> { interface
58 * {@link Function} that it considers <i>interchangeable</i> with this one. "Interchangeable"
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunction.java24 public interface Function { interface
/external/libcxx/test/std/utilities/meta/meta.rel/
H A Dis_convertible.pass.cpp47 typedef void Function(); typedef
68 test_is_not_convertible<void,Function> ();
69 test_is_not_convertible<void,Function&> ();
70 test_is_not_convertible<void,Function*> ();
78 // Function
79 test_is_not_convertible<Function, void> ();
80 test_is_not_convertible<Function, Function> ();
81 test_is_convertible<Function, Function
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/python/cpython2/Mac/Modules/ah/
H A Dahsupport.py33 Function = OSErrFunctionGenerator variable
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/util/
H A DFunction.java6 public interface Function<R, T> { interface
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dvariables-expected.cc16 // Function parameters
17 int Function(int interesting_number) { function in namespace:blink
/external/deqp/framework/randomshaders/
H A DrsgShader.cpp44 Function::Function (void) function in class:rsg::Function
48 Function::Function (const char* name) function in class:rsg::Function
53 Function::~Function (void)
125 void Function::tokenize (GeneratorState& state, TokenStream& str) const
130 // Function name
/external/google-breakpad/src/processor/
H A Dmodule_serializer.h100 typedef BasicSourceLineResolver::Function Function; typedef in class:google_breakpad::ModuleSerializer
117 RangeMapSerializer<MemAddr, linked_ptr<Function> > functions_serializer_;
/external/guava/guava/src/com/google/common/collect/
H A DByFunctionOrdering.java22 import com.google.common.base.Function;
36 final Function<F, ? extends T> function;
40 Function<F, ? extends T> function, Ordering<T> ordering) {
39 ByFunctionOrdering( Function<F, ? extends T> function, Ordering<T> ordering) argument
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml31 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml36 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml39 type func = Function of proto * expr Constructor in type:func

Completed in 556 milliseconds

12345678910