/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_objects.py | 48 >>> x.array[0] = 'spam spam spam' 50 {'0:2': 'spam spam spam'} 52 {'0:2': 'spam spam spam'}
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_objects.py | 48 >>> x.array[0] = 'spam spam spam' 50 {'0:2': 'spam spam spam'} 52 {'0:2': 'spam spam spam'}
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_property.py | 25 def spam(self): member in class:BaseClass 29 @spam.setter 30 def spam(self, value): member in class:BaseClass 33 @spam.deleter 34 def spam(self): member in class:BaseClass 39 @BaseClass.spam.getter 40 def spam(self): member in class:SubClass 44 @spam.setter 45 def spam(self, value): member in class:SubClass 48 @spam.delete 49 def spam(self): member in class:SubClass 56 spam = property(_get_spam, doc="spam spam spam") variable in class:PropertyDocBase 60 def spam(self): member in class:PropertyDocSub 66 def spam(self): member in class:PropertySubNewGetter 72 def spam(self): member in class:PropertyNewGetter 76 def spam(self): member in class:PropertyNewGetter 146 def spam(self): member in class:PropertySubclassTests.test_slots_docstring_copy_exception.Foo 159 def spam(self): member in class:PropertySubclassTests.test_docstring_copy.Foo 172 def spam(self): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo 176 def spam(self, value): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo 188 def spam(self, value): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.FooSub 205 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo 209 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo 215 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.FooBase 220 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo2 [all...] |
test_symtable.py | 20 def spam(a, b, *var, **kw): 52 spam = find_block(top, "spam") variable in class:SymtableTest 53 internal = find_block(spam, "internal") 60 self.assertEqual(self.spam.get_type(), "function") 68 self.assertTrue(self.spam.is_optimized()) 77 self.assertFalse(self.spam.is_nested()) 87 self.assertEqual(self.spam.get_lineno(), 11) 90 func = self.spam 98 self.assertTrue(self.spam.lookup("glob").is_global() [all...] |
inspect_fodder.py | 8 def spam(a, b, c, d=3, (e, (f,))=(4, (5,)), *g, **h): function 43 spam(a, b, c)
|
test_frozen.py | 22 import __phello__.spam namespace 24 self.fail("import __phello__.spam failed:" + str(x)) namespace 38 del sys.modules['__phello__.spam']
|
test_rlcompleter.py | 8 spam = 1 variable in class:CompleteMe 14 self.completer = rlcompleter.Completer(dict(spam=int, 58 ['CompleteMe.spam']) 63 ['CompleteMe.me.me.spam'])
|
test_argparse.py | 575 Sig('-y', nargs='?', default='spam'), 580 ('', NS(w=None, x=None, y='spam', z=84)), 581 ('-w', NS(w=None, x=None, y='spam', z=84)), 582 ('-w 2', NS(w='2', x=None, y='spam', z=84)), 583 ('-x', NS(w=None, x=42, y='spam', z=84)), 584 ('-x 2', NS(w=None, x='2', y='spam', z=84)), 587 ('-z', NS(w=None, x=None, y='spam', z=42)), 588 ('-z 2', NS(w=None, x=None, y='spam', z=2)), 597 Sig('-y', nargs='*', default='spam'), 601 ('', NS(x=None, y='spam')), 4437 def spam(string): function in function:TestArgumentTypeError.test_argument_type_error 4458 def spam(string_to_convert): function in function:TestTypeFunctionCallOnlyOnce.test_type_function_call_only_once 4474 def spam(int_to_convert): function in function:TestTypeFunctionCalledOnDefault.test_type_function_call_with_non_string_default 4485 def spam(int_to_convert): function in function:TestTypeFunctionCalledOnDefault.test_type_function_call_with_string_default [all...] |
test_iter.py | 146 def spam(state=[0]): function in function:TestCase.test_iter_function 150 self.check_iterator(iter(spam, 10), range(10)) 154 def spam(state=[0]): function in function:TestCase.test_iter_function_stop 160 self.check_iterator(iter(spam, 20), range(10)) 164 def spam(state=[0]): function in function:TestCase.test_exception_function 172 for x in iter(spam, 20): 856 def spam(state=[0]): function in function:TestCase.test_sinkstate_callable 862 b = iter(spam, 5)
|
test_pkg.py | 101 ("t2 sub subsub __init__"+os.extsep+"py", "spam = 1"), 122 from t2.sub.subsub import spam namespace 126 for name in ['spam', 'sub', 'subsub', 't2']: 148 ("t3 sub subsub __init__"+os.extsep+"py", "spam = 1"), 168 ("t4 sub subsub __init__"+os.extsep+"py", "spam = 1"), 174 self.assertEqual(spam, 1) 182 ("t5 string"+os.extsep+"py", "spam = 1"), 184 "from . import string; assert string.spam == 1"), 204 'spam']) 210 "__all__ = ['spam', 'ham', 'eggs']") [all...] |
test_descr.py | 306 import copy, xxsubtype as spam namespace 309 import xxsubtype as spam namespace 310 return spam.spamlist(l) 313 copy._deepcopy_dispatch[spam.spamlist] = spamlist 336 class C(spam.spamlist): 350 import copy, xxsubtype as spam namespace 352 import xxsubtype as spam namespace 353 sd = spam.spamdict() 358 copy._deepcopy_dispatch[spam.spamdict] = spamdict 388 class C(spam.spamdict) 517 def spam(self): member in class:ClassPropertiesAndMethods.test_metaclass.C 813 def spam(self): return "A" member in class:ClassPropertiesAndMethods.test_diamond_inheritence.A 817 def spam(self): return "B" member in class:ClassPropertiesAndMethods.test_diamond_inheritence.B 1411 import xxsubtype as spam namespace 1459 import xxsubtype as spam namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_property.py | 25 def spam(self): member in class:BaseClass 29 @spam.setter 30 def spam(self, value): member in class:BaseClass 33 @spam.deleter 34 def spam(self): member in class:BaseClass 39 @BaseClass.spam.getter 40 def spam(self): member in class:SubClass 44 @spam.setter 45 def spam(self, value): member in class:SubClass 48 @spam.delete 49 def spam(self): member in class:SubClass 56 spam = property(_get_spam, doc="spam spam spam") variable in class:PropertyDocBase 60 def spam(self): member in class:PropertyDocSub 66 def spam(self): member in class:PropertySubNewGetter 72 def spam(self): member in class:PropertyNewGetter 76 def spam(self): member in class:PropertyNewGetter 146 def spam(self): member in class:PropertySubclassTests.test_slots_docstring_copy_exception.Foo 159 def spam(self): member in class:PropertySubclassTests.test_docstring_copy.Foo 172 def spam(self): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo 176 def spam(self, value): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo 188 def spam(self, value): member in class:PropertySubclassTests.test_property_setter_copies_getter_docstring.FooSub 205 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo 209 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo 215 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.FooBase 220 def spam(self): member in class:PropertySubclassTests.test_property_new_getter_new_docstring.Foo2 [all...] |
test_symtable.py | 20 def spam(a, b, *var, **kw): 52 spam = find_block(top, "spam") variable in class:SymtableTest 53 internal = find_block(spam, "internal") 60 self.assertEqual(self.spam.get_type(), "function") 68 self.assertTrue(self.spam.is_optimized()) 77 self.assertFalse(self.spam.is_nested()) 87 self.assertEqual(self.spam.get_lineno(), 11) 90 func = self.spam 98 self.assertTrue(self.spam.lookup("glob").is_global() [all...] |
inspect_fodder.py | 8 def spam(a, b, c, d=3, (e, (f,))=(4, (5,)), *g, **h): function 43 spam(a, b, c)
|
test_frozen.py | 22 import __phello__.spam namespace 24 self.fail("import __phello__.spam failed:" + str(x)) namespace 38 del sys.modules['__phello__.spam']
|
test_rlcompleter.py | 8 spam = 1 variable in class:CompleteMe 14 self.completer = rlcompleter.Completer(dict(spam=int, 58 ['CompleteMe.spam']) 63 ['CompleteMe.me.me.spam'])
|
test_argparse.py | 575 Sig('-y', nargs='?', default='spam'), 580 ('', NS(w=None, x=None, y='spam', z=84)), 581 ('-w', NS(w=None, x=None, y='spam', z=84)), 582 ('-w 2', NS(w='2', x=None, y='spam', z=84)), 583 ('-x', NS(w=None, x=42, y='spam', z=84)), 584 ('-x 2', NS(w=None, x='2', y='spam', z=84)), 587 ('-z', NS(w=None, x=None, y='spam', z=42)), 588 ('-z 2', NS(w=None, x=None, y='spam', z=2)), 597 Sig('-y', nargs='*', default='spam'), 601 ('', NS(x=None, y='spam')), 4437 def spam(string): function in function:TestArgumentTypeError.test_argument_type_error 4458 def spam(string_to_convert): function in function:TestTypeFunctionCallOnlyOnce.test_type_function_call_only_once 4474 def spam(int_to_convert): function in function:TestTypeFunctionCalledOnDefault.test_type_function_call_with_non_string_default 4485 def spam(int_to_convert): function in function:TestTypeFunctionCalledOnDefault.test_type_function_call_with_string_default [all...] |
test_iter.py | 146 def spam(state=[0]): function in function:TestCase.test_iter_function 150 self.check_iterator(iter(spam, 10), range(10)) 154 def spam(state=[0]): function in function:TestCase.test_iter_function_stop 160 self.check_iterator(iter(spam, 20), range(10)) 164 def spam(state=[0]): function in function:TestCase.test_exception_function 172 for x in iter(spam, 20): 856 def spam(state=[0]): function in function:TestCase.test_sinkstate_callable 862 b = iter(spam, 5)
|
test_pkg.py | 101 ("t2 sub subsub __init__"+os.extsep+"py", "spam = 1"), 122 from t2.sub.subsub import spam namespace 126 for name in ['spam', 'sub', 'subsub', 't2']: 148 ("t3 sub subsub __init__"+os.extsep+"py", "spam = 1"), 168 ("t4 sub subsub __init__"+os.extsep+"py", "spam = 1"), 174 self.assertEqual(spam, 1) 182 ("t5 string"+os.extsep+"py", "spam = 1"), 184 "from . import string; assert string.spam == 1"), 204 'spam']) 210 "__all__ = ['spam', 'ham', 'eggs']") [all...] |
test_descr.py | 306 import copy, xxsubtype as spam namespace 309 import xxsubtype as spam namespace 310 return spam.spamlist(l) 313 copy._deepcopy_dispatch[spam.spamlist] = spamlist 336 class C(spam.spamlist): 350 import copy, xxsubtype as spam namespace 352 import xxsubtype as spam namespace 353 sd = spam.spamdict() 358 copy._deepcopy_dispatch[spam.spamdict] = spamdict 388 class C(spam.spamdict) 517 def spam(self): member in class:ClassPropertiesAndMethods.test_metaclass.C 813 def spam(self): return "A" member in class:ClassPropertiesAndMethods.test_diamond_inheritence.A 817 def spam(self): return "B" member in class:ClassPropertiesAndMethods.test_diamond_inheritence.B 1411 import xxsubtype as spam namespace 1459 import xxsubtype as spam namespace [all...] |
/external/clang/test/CodeGenCXX/ |
mangle-ms-templates.cpp | 131 void spam() { function 132 FunctionPointerTemplate<spam>(); 133 // CHECK: "\01??$FunctionPointerTemplate@$1?spam@@YAXXZ@@YAXXZ" 134 // X64: "\01??$FunctionPointerTemplate@$1?spam@@YAXXZ@@YAXXZ"
|
mangle-ms-back-references-pr13207.cpp | 113 void spam(K<A,B,C> x) {} function in namespace:PR13207 114 // CHECK: "\01?spam@PR13207@@YAXV?$K@VA@PR13207@@VB@2@VC@2@@1@@Z" 139 void spam(NA::Y<NA::X> x) {} function in namespace:PR13207::NB 140 // CHECK: "\01?spam@NB@PR13207@@YAXV?$Y@VX@NA@PR13207@@@NA@2@@Z"
|
/external/clang/bindings/python/tests/cindex/ |
test_cursor.py | 179 tu = get_tu('enum TEST { SPAM=1, EGG, HAM = EGG * 20};') 188 spam, egg, ham = enum_constants 190 assert spam.kind == CursorKind.ENUM_CONSTANT_DECL 191 assert spam.enum_value == 1 198 tu = get_tu('enum TEST : long long { SPAM = -1, HAM = 0x10000000000};', lang="cpp") 207 spam, ham = enum_constants 209 assert spam.kind == CursorKind.ENUM_CONSTANT_DECL 210 assert spam.enum_value == -1
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Conversation.java | 146 * @see UIProvider.ConversationColumns#SPAM 148 public boolean spam; field in class:Conversation 231 dest.writeInt(spam ? 1 : 0); 264 spam = in.readInt() != 0; 342 spam = cursor.getInt(UIProvider.CONVERSATION_IS_SPAM_COLUMN) != 0; 393 spam = other.spam; 423 boolean spam, boolean phishing, boolean muted, Uri accountUri, 447 conversation.spam = spam; [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
SelectedConversationsActionMenu.java | 144 // Currently, since spam messages are only shown in list with other spam messages, 145 // marking a message not as spam is a destructive action 371 if (conversation.spam) { 432 final MenuItem spam = menu.findItem(R.id.report_spam); local 433 spam.setVisible(!showMarkNotSpam
|