OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_int
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/SemaTemplate/
overload-candidates.cpp
54
template<typename T> struct
is_int
{ enum { value = false }; };
struct
55
template<> struct
is_int
<int> { enum { value = true }; };
struct
56
template<typename T> typename llvm::enable_if<
is_int
<T> >::type if_int(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}}
/external/qemu/target-i386/
exec.h
62
void do_interrupt(int intno, int
is_int
, int error_code,
64
void do_interrupt_user(int intno, int
is_int
, int error_code,
op_helper.c
657
static void do_interrupt_protected(int intno, int
is_int
, int error_code,
668
if (!
is_int
&& !is_hw)
670
if (
is_int
)
720
if (
is_int
&& dpl < cpl)
882
static void do_interrupt64(int intno, int
is_int
, int error_code,
893
if (!
is_int
&& !is_hw)
895
if (
is_int
)
920
if (
is_int
&& dpl < cpl)
[
all
...]
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php
343
if (
is_int
($alias)) $alias = strtr($field, '/', '_');
Completed in 525 milliseconds