Home
last modified time | relevance | path

Searched refs:is_ (Results 1 – 25 of 35) 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/v8/src/execution/
Disolate-inl.h121 bool Isolate::is_##name(type value) { \
122 return raw_native_context().is_##name(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.h32 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
Dir.h151 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
156 return is_##TYPE() ? (ir_##TYPE *) this : NULL; \
/external/perfetto/gn/standalone/sanitizers/
Dvars.gni55 "is_*san requires is_clang=true'")
/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.py268 self.assertIs(operator.is_(True, True), True)
269 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/v8/src/objects/
Dcontexts-inl.h184 bool Context::is_##name(type value) const { \
Dcontexts.h600 inline bool is_##name(type value) const; \
/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/mesa3d/src/compiler/nir/
Dnir_search_helpers.h392 is_ ## r (struct hash_table *ht, nir_alu_instr *instr, unsigned src, \
/external/python/cpython3/Doc/library/
Doperator.rst73 .. function:: is_(a, b)
392 | 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.cc730 return status.ok() && op_def->is_##PROPERTY(); \
/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()

12