/external/clang/include/clang/Basic/ |
D | OpenCLOptions.h | 42 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/libchrome/mojo/public/tools/bindings/generators/cpp_templates/ |
D | union_data_view_declaration.tmpl | 27 bool is_{{name}}() const { return data_->tag == Tag::{{name|upper}}; } 35 DCHECK(is_{{name}}()); 43 DCHECK(is_{{name}}()); 49 DCHECK(is_{{name}}()); 56 DCHECK(is_{{name}}()); 68 DCHECK(is_{{name}}()); 79 DCHECK(is_{{name}}());
|
D | union_data_view_definition.tmpl | 8 DCHECK(is_{{name}}());
|
D | wrapper_union_class_declaration.tmpl | 58 bool is_{{field.name}}() const { return tag_ == Tag::{{field.name|upper}}; }
|
/external/jdiff/src/jdiff/ |
D | StreamReader.java | 14 InputStream is_; field in StreamReader 18 is_ = is; in StreamReader() 24 InputStreamReader isr = new InputStreamReader(is_); in run()
|
/external/v8/src/execution/ |
D | isolate-inl.h | 121 bool Isolate::is_##name(type value) { \ 122 return raw_native_context().is_##name(value); \
|
/external/clang/test/Lexer/ |
D | keywords_test.cpp | 20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
|
/external/mesa3d/src/compiler/glsl/ |
D | s_expression.h | 32 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
|
D | ir.h | 151 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \ 156 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
|
/external/perfetto/gn/standalone/sanitizers/ |
D | vars.gni | 55 "is_*san requires is_clang=true'")
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 356 self.assertRaises(TypeError, operator.is_) 357 self.assertTrue(operator.is_(a, b)) 358 self.assertFalse(operator.is_(a,c))
|
D | test_bool.py | 296 self.assertIs(operator.is_(True, True), True) 297 self.assertIs(operator.is_(True, False), False)
|
/external/python/cpython3/Lib/test/ |
D | test_bool.py | 268 self.assertIs(operator.is_(True, True), True) 269 self.assertIs(operator.is_(True, False), False)
|
D | test_operator.py | 301 self.assertRaises(TypeError, operator.is_) 302 self.assertTrue(operator.is_(a, b)) 303 self.assertFalse(operator.is_(a,c))
|
/external/v8/src/objects/ |
D | contexts-inl.h | 184 bool Context::is_##name(type value) const { \
|
D | contexts.h | 600 inline bool is_##name(type value) const; \
|
/external/python/cpython2/Modules/ |
D | operator.c | 165 is_(PyObject *s, PyObject *a) in is_() function 385 spam1(is_, "is_(a, b) -- Same as a is b.")
|
/external/python/cpython3/Lib/ |
D | operator.py | 61 def is_(a, b): function
|
/external/mesa3d/src/compiler/nir/ |
D | nir_search_helpers.h | 392 is_ ## r (struct hash_table *ht, nir_alu_instr *instr, unsigned src, \
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 73 .. function:: is_(a, b) 392 | Identity | ``a is b`` | ``is_(a, b)`` |
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 71 .. function:: is_(a, b) 642 | Identity | ``a is b`` | ``is_(a, b)`` |
|
/external/clang/lib/Parse/ |
D | ParsePragma.cpp | 478 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/tensorflow/tensorflow/core/grappler/ |
D | op_types.cc | 730 return status.ok() && op_def->is_##PROPERTY(); \
|
/external/clang/lib/Frontend/ |
D | InitPreprocessor.cpp | 961 if (TI.getSupportedOpenCLOpts().is_##Ext##_supported( \ in InitializePredefinedMacros()
|
/external/clang/lib/Sema/ |
D | Sema.cpp | 215 if (Context.getTargetInfo().getSupportedOpenCLOpts().is_##Ext##_supported_core( \ in Initialize()
|