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

1 2 3 4 5 6 7 8 91011>>

  /system/netd/server/
Network.cpp 60 std::stringstream repr; local
62 repr << mNetId;
64 repr << kSeparator;
67 repr << "DUMMY";
70 repr << "LOCAL";
73 repr << "PHYSICAL";
76 repr << "VIRTUAL";
79 repr << "unknown";
83 repr << kSeparator << android::base::Join(mInterfaces, ",");
86 return repr.str()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
checkpyc.py 20 print 'Using MAGIC word', repr(MAGIC)
25 print 'Cannot list directory', repr(dirname)
28 print 'Checking ', repr(dirname), '...'
36 print 'Cannot stat', repr(name)
39 print 'Check', repr(name), '...'
44 print 'Cannot open', repr(name_c)
51 print repr(name_c)
55 print 'Bad ".pyc" file', repr(name_c)
58 print repr(name_c)
  /external/python/cpython2/Tools/scripts/
checkpyc.py 20 print 'Using MAGIC word', repr(MAGIC)
25 print 'Cannot list directory', repr(dirname)
28 print 'Checking ', repr(dirname), '...'
36 print 'Cannot stat', repr(name)
39 print 'Check', repr(name), '...'
44 print 'Cannot open', repr(name_c)
51 print repr(name_c)
55 print 'Bad ".pyc" file', repr(name_c)
58 print repr(name_c)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_default.py 7 self.dumps(type, default=repr),
8 self.dumps(repr(type)))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_default.py 7 self.dumps(type, default=repr),
8 self.dumps(repr(type)))
  /external/python/cpython2/Lib/json/tests/
test_default.py 7 self.dumps(type, default=repr),
8 self.dumps(repr(type)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_default.py 7 self.dumps(type, default=repr),
8 self.dumps(repr(type)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_default.py 7 self.dumps(type, default=repr),
8 self.dumps(repr(type)))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Dbm.py 16 t = repr(key) + ': ' + repr(self[key])
25 return eval(self.db[repr(key)])
28 self.db[repr(key)] = repr(value)
31 del self.db[repr(key)]
40 return self.db.has_key(repr(key))
  /external/python/cpython2/Demo/classes/
Dbm.py 16 t = repr(key) + ': ' + repr(self[key])
25 return eval(self.db[repr(key)])
28 self.db[repr(key)] = repr(value)
31 del self.db[repr(key)]
40 return self.db.has_key(repr(key))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
unicast.py 12 data = repr(time.time()) + '\n'
unixclient.py 12 print 'Received', repr(data)
  /external/python/cpython2/Demo/sockets/
unicast.py 12 data = repr(time.time()) + '\n'
unixclient.py 12 print 'Received', repr(data)
  /external/python/cpython2/Lib/ctypes/test/
test_repr.py 21 self.assertTrue(repr(base(42)).startswith(base.__name__))
22 self.assertEqual("<X object at", repr(typ(42))[:12])
25 self.assertEqual("c_char('x')", repr(c_char('x')))
26 self.assertEqual("<X object at", repr(X('x'))[:12])
  /external/python/cpython2/Mac/Demo/sound/
playaiff.py 15 print repr(frames[:100])
17 print repr(frames[:100])
30 print repr(header1)
38 print repr(header3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_repr.py 21 self.assertTrue(repr(base(42)).startswith(base.__name__))
22 self.assertEqual("<X object at", repr(typ(42))[:12])
25 self.assertEqual("c_char('x')", repr(c_char('x')))
26 self.assertEqual("<X object at", repr(X('x'))[:12])
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_repr.py 21 self.assertTrue(repr(base(42)).startswith(base.__name__))
22 self.assertEqual("<X object at", repr(typ(42))[:12])
25 self.assertEqual("c_char('x')", repr(c_char('x')))
26 self.assertEqual("<X object at", repr(X('x'))[:12])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_repr.py 21 self.assertTrue(repr(base(42)).startswith(base.__name__))
22 self.assertEqual("<X object at", repr(typ(42))[:12])
25 self.assertEqual("c_char('x')", repr(c_char('x')))
26 self.assertEqual("<X object at", repr(X('x'))[:12])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_repr.py 21 self.assertTrue(repr(base(42)).startswith(base.__name__))
22 self.assertEqual("<X object at", repr(typ(42))[:12])
25 self.assertEqual("c_char('x')", repr(c_char('x')))
26 self.assertEqual("<X object at", repr(X('x'))[:12])
  /external/llvm/unittests/ADT/
TwineTest.cpp 18 std::string repr(const Twine &Value) { function in namespace:__anon26451
52 // Check verse repr, since we care about the actual representation not just
57 repr(Twine("hi").concat(Twine::createNull())));
59 repr(Twine::createNull().concat(Twine("hi"))));
63 repr(Twine("hi").concat(Twine())));
65 repr(Twine().concat(Twine("hi"))));
67 repr(Twine().concat(Twine(SmallString<5>("hi")))));
69 repr(Twine(SmallString<7>("hey")).concat(Twine("there"))));
73 repr(Twine("a").concat(Twine("b"))));
77 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))))
    [all...]
  /external/libxml2/python/tests/
outbuf.py 38 print(' got: %s' % repr(f.getvalue()))
39 print('expected: %s' % repr(expected))
62 print(' got: %s' % repr(f.getvalue()))
63 print('expected: %s' % repr(expected[i]))
83 print(' got: %s' % repr(f.getvalue()))
84 print('expected: %s' % repr(expected))
91 print(' got: %s' % repr(f.getvalue()))
92 print('expected: %s' % repr(expected))
  /external/swiftshader/third_party/LLVM/unittests/ADT/
TwineTest.cpp 18 std::string repr(const Twine &Value) { function in namespace:__anon33069
51 // Check verse repr, since we care about the actual representation not just
56 repr(Twine("hi").concat(Twine::createNull())));
58 repr(Twine::createNull().concat(Twine("hi"))));
62 repr(Twine("hi").concat(Twine())));
64 repr(Twine().concat(Twine("hi"))));
68 repr(Twine("a").concat(Twine("b"))));
72 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))));
74 repr(Twine("a").concat(Twine("b").concat(Twine("c")))));
  /external/python/cpython2/Lib/test/
test_repr.py 2 Test cases for the repr module
12 from repr import repr as r # Don't shadow builtin repr
13 from repr import Repr
30 expected = repr(s)[:13] + "..." + repr(s)[-14:]
33 eq(r("\"'"), repr("\"'"))
35 expected = repr(s)[:13] + "..." + repr(s)[-14:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_repr.py 2 Test cases for the repr module
12 from repr import repr as r # Don't shadow builtin repr
13 from repr import Repr
30 expected = repr(s)[:13] + "..." + repr(s)[-14:]
33 eq(r("\"'"), repr("\"'"))
35 expected = repr(s)[:13] + "..." + repr(s)[-14:]
    [all...]

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>