HomeSort by relevance Sort by last modified time
    Searched refs:is_ (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/include/clang/Basic/
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/jdiff/src/jdiff/
StreamReader.java 14 InputStream is_; field in class:StreamReader
18 is_ = is;
24 InputStreamReader isr = new InputStreamReader(is_);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodedstream.h 38 EncodedInputStream(InputByteStream& is) : is_(is) {
39 current_ = Encoding::TakeBOM(is_);
43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; }
44 size_t Tell() const { return is_.Tell(); }
56 InputByteStream& is_; member in class:EncodedInputStream
111 AutoUTFInputStream(InputByteStream& is, UTFType type = kUTF8) : is_(&is), type_(type), hasBOM_(false) {
116 current_ = takeFunc_(*is_);
123 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; }
124 size_t Tell() const { return is_->Tell(); }
145 const unsigned char* c = (const unsigned char *)is_->Peek4();
186 InputByteStream* is_; member in class:AutoUTFInputStream
    [all...]
  /external/clang/test/Lexer/
keywords_test.cpp 20 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
  /external/v8/src/
isolate-inl.h 112 bool Isolate::is_##name(type* value) { \
113 return raw_native_context()->is_##name(value); \
contexts-inl.h 147 bool Context::is_##name(type* value) { \
  /external/mesa3d/src/compiler/glsl/
s_expression.h 34 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bool.py 297 self.assertIs(operator.is_(True, True), True)
298 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /external/python/cpython2/Lib/test/
test_bool.py 296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /external/python/cpython3/Lib/test/
test_bool.py 267 self.assertIs(operator.is_(True, True), True)
268 self.assertIs(operator.is_(True, False), False)
test_operator.py 301 self.assertRaises(TypeError, operator.is_)
302 self.assertTrue(operator.is_(a, b))
303 self.assertFalse(operator.is_(a,c))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bool.py 296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bool.py 296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 296 self.assertIs(operator.is_(True, True), True)
297 self.assertIs(operator.is_(True, False), False)
test_operator.py 356 self.assertRaises(TypeError, operator.is_)
357 self.assertTrue(operator.is_(a, b))
358 self.assertFalse(operator.is_(a,c))
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 1046 std::istream& is_; member in class:IStreamWrapper
    [all...]
  /external/python/cpython3/Lib/
operator.py 17 'is_', 'is_not', 'isub', 'itemgetter', 'itruediv', 'ixor', 'le',
61 def is_(a, b): function
  /external/tensorflow/tensorflow/core/grappler/
op_types.cc 383 return status.ok() && op_def->is_##PROPERTY(); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
operator.c 165 is_(PyObject *s, PyObject *a) function
168 if (PyArg_UnpackTuple(a,"is_", 2, 2, &a1, &a2)) {
385 spam1(is_, "is_(a, b) -- Same as a is b.")

Completed in 559 milliseconds

1 2