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

1 2 3

  /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...]
  /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)
  /external/llvm/test/MC/COFF/
secidx.s 9 .section spam
15 // CHECK-NEXT: 0x4 IMAGE_REL_I386_SECTION spam
  /external/clang/bindings/python/tests/cindex/
test_cursor.py 172 tu = get_tu('enum TEST { SPAM=1, EGG, HAM = EGG * 20};')
181 spam, egg, ham = enum_constants
183 assert spam.kind == CursorKind.ENUM_CONSTANT_DECL
184 assert spam.enum_value == 1
191 tu = get_tu('enum TEST : long long { SPAM = -1, HAM = 0x10000000000};', lang="cpp")
200 spam, ham = enum_constants
202 assert spam.kind == CursorKind.ENUM_CONSTANT_DECL
203 assert spam.enum_value == -1
  /external/clang/test/CodeGenCXX/
mangle-ms-templates.cpp 169 void spam() { function
170 FunctionPointerTemplate<spam>();
171 // CHECK: "\01??$FunctionPointerTemplate@$1?spam@@YAXXZ@@YAXXZ"
172 // X64: "\01??$FunctionPointerTemplate@$1?spam@@YAXXZ@@YAXXZ"
microsoft-abi-vtables-single-inheritance.cpp 224 // CHECK-NEXT: 7 | void M::spam(long)
225 // CHECK-NEXT: 8 | void M::spam(int)
230 virtual void spam(int);
234 virtual void spam(long);
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"
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 107 * @see UIProvider.ConversationColumns#SPAM
109 public final boolean spam; field in class:Conversation
192 dest.writeInt(spam ? 1 : 0);
218 spam = in.readInt() != 0;
296 spam = cursor.getInt(UIProvider.CONVERSATION_IS_SPAM_COLUMN) != 0;
335 spam = other.spam;
354 boolean spam, boolean phishing, boolean muted, Uri accountUri,
374 this.spam = spam;
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
D_S_I_G_.py 101 pem_spam = lambda l, spam = {
103 }: not spam.get(l.strip())
  /external/libxml2/
Android.mk 56 # Turn off warnings to prevent log message spam

Completed in 936 milliseconds

1 2 3