/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/tensorflow/tensorflow/python/autograph/operators/ |
D | logical.py | 112 is_ = operator.is_ variable
|
D | __init__.py | 56 from tensorflow.python.autograph.operators.logical import is_
|
/external/v8/src/ |
D | isolate-inl.h | 137 bool Isolate::is_##name(type* value) { \ 138 return raw_native_context()->is_##name(value); \
|
D | contexts-inl.h | 128 bool Context::is_##name(type* value) const { \
|
D | contexts.h | 575 inline bool is_##name(type* value) const; \
|
/external/clang/test/Lexer/ |
D | keywords_test.cpp | 20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
|
/external/perfetto/gn/standalone/sanitizers/ |
D | sanitizers.gni | 59 assert(!using_sanitizer || is_clang, "is_*san requires is_clang=true'")
|
D | vars.gni | 55 "is_*san requires is_clang=true'")
|
/external/mesa3d/src/compiler/glsl/ |
D | s_expression.h | 33 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
|
D | ir.h | 149 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \ 154 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
|
/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 | 271 self.assertIs(operator.is_(True, True), True) 272 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/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/python/cpython3/Doc/library/ |
D | operator.rst | 73 .. function:: is_(a, b) 390 | 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 | 690 return status.ok() && op_def->is_##PROPERTY(); \
|