HomeSort by relevance Sort by last modified time
    Searched defs:is_function (Results 1 - 10 of 10) sorted by null

  /external/skia/include/private/
SkTLogic.h 38 // template<typename R, typename... Args> struct is_function<
43 // mcvc 2013 introduced __vectorcall, but it wan't until 2015 that it was added to is_function.
44 template <typename> struct is_function : std::false_type {}; struct in namespace:skstd
46 template <typename R, typename... Args> struct is_function<R(Args...)> : std::true_type {}; struct in namespace:skstd
48 template <typename R, typename... Args> struct is_function<R __cdecl (Args...)> : std::true_type {}; struct in namespace:skstd
50 template <typename R, typename... Args> struct is_function<R __stdcall (Args...)> : std::true_type {}; struct in namespace:skstd
51 template <typename R, typename... Args> struct is_function<R __fastcall (Args...)> : std::true_type {}; struct in namespace:skstd
54 template <typename R, typename... Args> struct is_function<R __vectorcall (Args...)> : std::true_type {}; struct in namespace:skstd
57 template <typename R, typename... Args> struct is_function<R(Args..., ...)> : std::true_type {}; struct in namespace:skstd
66 bool=std::is_void<S>::value || is_function<D>::value || std::is_array<D>::value
    [all...]
  /external/v8/src/ast/
variables.h 83 bool is_function() const { return kind_ == FUNCTION; } function in class:v8::internal::Variable
ast.h 2655 bool is_function() const { return IsFunction::decode(bitfield_); } function in class:v8::internal::final
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 45 bool is_function,
71 DCHECK(is_function);
126 bool is_function = initial_value->IsSharedFunctionInfo();
127 DCHECK_EQ(1, BoolToInt(is_var) + BoolToInt(is_function));
130 if (is_function) {
147 if (is_function && is_native) attr |= READ_ONLY;
154 is_var, is_function, RedeclarationType::kSyntaxError);
225 bool is_function = value->IsJSFunction(); local
226 bool is_var = !is_function;
255 value, NONE, is_var, is_function,
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.h 134 int is_function; member in struct:__anon19505
  /external/libcxxabi/src/
cxa_demangle.cpp 1898 bool is_function = *t == 'F'; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_demangle.cpp 1897 bool is_function = *t == 'F'; local
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 577 void is_function() function
    [all...]
  /external/v8/src/
gdb-jit.cc 970 bool is_function() const { function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 9467 bool is_function = false; local
    [all...]

Completed in 265 milliseconds