Home
last modified time | relevance | path

Searched refs:is_ (Results 1 – 21 of 21) sorted by relevance

/external/clang/include/clang/Basic/
DOpenCLOptions.h42 bool is_##Ext##_supported(unsigned OCLVer) const { \
51 bool is_##Ext##_supported_extension(unsigned CLVer) const { \
52 return is_##Ext##_supported(CLVer) && (Core == ~0U || CLVer < Core); \
59 bool is_##Ext##_supported_core(unsigned CLVer) const { \
60 return is_##Ext##_supported(CLVer) && Core != ~0U && CLVer >= Core; \
/external/jdiff/src/jdiff/
DStreamReader.java14 InputStream is_; field in StreamReader
18 is_ = is; in StreamReader()
24 InputStreamReader isr = new InputStreamReader(is_); in run()
/external/v8/src/
Disolate-inl.h112 bool Isolate::is_##name(type* value) { \
113 return raw_native_context()->is_##name(value); \
Dcontexts-inl.h147 bool Context::is_##name(type* value) { \
Dcontexts.h613 inline bool is_##name(type* value); \
Disolate.h836 inline bool is_##name(type* value);
/external/clang/test/Lexer/
Dkeywords_test.cpp20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
/external/mesa3d/src/compiler/glsl/
Ds_expression.h34 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
Dir.h150 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
155 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
Dwrapper_union_class_declaration.tmpl40 bool is_{{field.name}}() const;
Dwrapper_union_class_definition.tmpl19 bool {{union.name}}::is_{{field.name}}() const {
/external/python/cpython2/Lib/test/
Dtest_operator.py356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
Dtest_bool.py296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
/external/python/cpython2/Modules/
Doperator.c165 is_(PyObject *s, PyObject *a) in is_() function
385 spam1(is_, "is_(a, b) -- Same as a is b.")
/external/python/cpython2/Doc/library/
Doperator.rst71 .. function:: is_(a, b)
642 | Identity | ``a is b`` | ``is_(a, b)`` |
/external/clang/lib/Parse/
DParsePragma.cpp478 if (Supp.is_##nm##_supported_extension(CLVer)) \ in HandlePragmaOpenCLExtension()
483 if (Supp.is_##nm##_supported_extension(CLVer)) \ in HandlePragmaOpenCLExtension()
485 else if (Supp.is_##nm##_supported_core(CLVer)) \ in HandlePragmaOpenCLExtension()
/external/clang/lib/Frontend/
DInitPreprocessor.cpp961 if (TI.getSupportedOpenCLOpts().is_##Ext##_supported( \ in InitializePredefinedMacros()
/external/clang/lib/Sema/
DSema.cpp215 if (Context.getTargetInfo().getSupportedOpenCLOpts().is_##Ext##_supported_core( \ in Initialize()
/external/python/cpython2/Doc/howto/
Dfunctional.rst1113 * Object identity: ``is_()``, ``is_not()``.
/external/python/cpython2/Lib/test/decimaltestdata/
Dextra.decTest244 -- Tests for the is_* boolean operations
/external/python/cpython2/Misc/
DHISTORY5283 operator.is_(a,b) which is equivalent to: a is b.