Home
last modified time | relevance | path

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

12

/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/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dunion_data_view_declaration.tmpl27 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}}());
Dunion_data_view_definition.tmpl8 DCHECK(is_{{name}}());
Dwrapper_union_class_declaration.tmpl58 bool is_{{field.name}}() const { return tag_ == Tag::{{field.name|upper}}; }
/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/tensorflow/tensorflow/python/autograph/operators/
Dlogical.py112 is_ = operator.is_ variable
D__init__.py56 from tensorflow.python.autograph.operators.logical import is_
/external/v8/src/
Disolate-inl.h137 bool Isolate::is_##name(type* value) { \
138 return raw_native_context()->is_##name(value); \
Dcontexts-inl.h128 bool Context::is_##name(type* value) const { \
Dcontexts.h575 inline bool is_##name(type* value) const; \
/external/clang/test/Lexer/
Dkeywords_test.cpp20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
/external/perfetto/gn/standalone/sanitizers/
Dsanitizers.gni59 assert(!using_sanitizer || is_clang, "is_*san requires is_clang=true'")
Dvars.gni55 "is_*san requires is_clang=true'")
/external/mesa3d/src/compiler/glsl/
Ds_expression.h33 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
Dir.h149 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
154 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
/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/cpython3/Lib/test/
Dtest_bool.py271 self.assertIs(operator.is_(True, True), True)
272 self.assertIs(operator.is_(True, False), False)
Dtest_operator.py301 self.assertRaises(TypeError, operator.is_)
302 self.assertTrue(operator.is_(a, b))
303 self.assertFalse(operator.is_(a,c))
/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/cpython3/Lib/
Doperator.py61 def is_(a, b): function
/external/python/cpython3/Doc/library/
Doperator.rst73 .. function:: is_(a, b)
390 | Identity | ``a is b`` | ``is_(a, 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/tensorflow/tensorflow/core/grappler/
Dop_types.cc690 return status.ok() && op_def->is_##PROPERTY(); \

12