Home
last modified time | relevance | path

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

123

/external/webrtc/modules/audio_processing/agc2/rnn_vad/
Dtest_utils.h51 : is_(file_path, std::ios::binary | std::ios::ate),
52 data_length_(is_.tellg() / sizeof(T)),
54 RTC_CHECK(is_);
64 is_.read(reinterpret_cast<char*>(dst), sizeof(T)); in ReadValue()
67 is_.read(reinterpret_cast<char*>(&v), sizeof(T)); in ReadValue()
70 return is_.gcount() == sizeof(T); in ReadValue()
78 is_.read(reinterpret_cast<char*>(dst.data()), bytes_to_read); in ReadChunk()
80 is_.read(reinterpret_cast<char*>(buf_.data()), bytes_to_read); in ReadChunk()
84 return is_.gcount() == bytes_to_read; in ReadChunk()
86 void SeekForward(size_t items) { is_.seekg(items * sizeof(T), is_.cur); } in SeekForward()
[all …]
/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/webrtc/third_party/abseil-cpp/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/abseil-cpp/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/openscreen/third_party/abseil/src/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/angle/third_party/abseil-cpp/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/libtextclassifier/abseil-cpp/absl/random/internal/
Diostream_state_saver.h139 : is_(is), flags_(is.flags(flags)) {}
141 ~istream_state_saver() { is_.flags(flags_); }
144 istream_type& is_;
/external/llvm-project/clang/test/Lexer/
Dkeywords_test.cpp20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
/external/clang/test/Lexer/
Dkeywords_test.cpp20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
/external/llvm-project/mlir/test/mlir-tblgen/
Dop-python-bindings.td152 // CHECK: def __init__(self, _gen_arg_0, in_, _gen_arg_2, is_, loc=None, ip=None):
160 // CHECK: if is_ is not None: attributes["is"] = is_
170 // CHECK: def is_(self):
/external/mesa3d/src/compiler/glsl/
Ds_expression.h32 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
/external/perfetto/gn/standalone/sanitizers/
Dvars.gni55 "is_*san requires is_clang=true'")
/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.py308 self.assertRaises(TypeError, operator.is_)
309 self.assertTrue(operator.is_(a, b))
310 self.assertFalse(operator.is_(a,c))
/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/llvm-project/libcxx/docs/
DCxx1yStatusIssuesStatus.csv4 "`2010 <https://wg21.link/lwg2010>`__","``is_*``\ traits for binding operations can't be meaningfu…
68 "`2196 <https://wg21.link/lwg2196>`__","Specification of ``is_*[copy/move]_[constructible/assignabl…
69 "`2197 <https://wg21.link/lwg2197>`__","Specification of ``is_[un]signed``\ unclear for non-arithm…
/external/abseil-cpp/absl/types/internal/
Dconformance_profile.h244 ABSL_INTERNAL_CONFORMANCE_TESTING_DATA_MEMBER_DEF_IMPL(bool, is_##type)
/external/python/cpython3/Lib/
Doperator.py61 def is_(a, b): function
/external/webrtc/third_party/abseil-cpp/absl/types/internal/
Dconformance_profile.h244 ABSL_INTERNAL_CONFORMANCE_TESTING_DATA_MEMBER_DEF_IMPL(bool, is_##type)

123