HomeSort by relevance Sort by last modified time
    Searched full:thetype (Results 1 - 20 of 20) sorted by null

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 26 private ElementType theType; // type of element
38 theType = type;
50 public ElementType type() { return theType; }
80 public String name() { return theType.name(); }
88 public String namespace() { return theType.namespace(); }
96 public String localName() { return theType.localName(); }
104 public int model() { return theType.model(); }
112 public int memberOf() { return theType.memberOf(); }
120 public int flags() { return theType.flags(); }
128 public ElementType parent() { return theType.parent();
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_functools.py 30 thetype = functools.partial variable in class:TestPartial
33 p = self.thetype(capture, 1, 2, a=10, b=20)
36 p = self.thetype(map, lambda x: x*10)
40 p = self.thetype(capture, 1, 2, a=10, b=20)
46 if not isinstance(self.thetype, type):
52 p = self.thetype(hex)
61 self.assertRaises(TypeError, self.thetype) # need at least a func arg
63 self.thetype(2)()
74 p = self.thetype(func, a=5)
83 p = self.thetype(capture
176 thetype = PartialSubclass variable in class:TestPartialSubclass
180 thetype = PythonPartial variable in class:TestPythonPartial
    [all...]
test_set.py 46 self.s = self.thetype(word)
50 self.assertRaises(TypeError, self.thetype, [], 2)
57 self.assertRaises(PassThru, self.thetype, check_pass_thru())
58 self.assertRaises(TypeError, self.thetype, [[]])
67 s = self.thetype([frozenset(self.letters)])
68 self.assertIn(self.thetype(self.letters), s)
74 self.assertEqual(self.s, self.thetype(self.word))
75 self.assertEqual(type(u), self.thetype)
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg')
344 thetype = set variable in class:TestSet
573 thetype = SetSubclass variable in class:TestSetSubclass
586 thetype = frozenset variable in class:TestFrozenSet
651 thetype = FrozenSetSubclass variable in class:TestFrozenSetSubclass
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_functools.py 30 thetype = functools.partial variable in class:TestPartial
33 p = self.thetype(capture, 1, 2, a=10, b=20)
36 p = self.thetype(map, lambda x: x*10)
40 p = self.thetype(capture, 1, 2, a=10, b=20)
46 if not isinstance(self.thetype, type):
52 p = self.thetype(hex)
61 self.assertRaises(TypeError, self.thetype) # need at least a func arg
63 self.thetype(2)()
74 p = self.thetype(func, a=5)
83 p = self.thetype(capture
176 thetype = PartialSubclass variable in class:TestPartialSubclass
180 thetype = PythonPartial variable in class:TestPythonPartial
    [all...]
test_set.py 46 self.s = self.thetype(word)
50 self.assertRaises(TypeError, self.thetype, [], 2)
57 self.assertRaises(PassThru, self.thetype, check_pass_thru())
58 self.assertRaises(TypeError, self.thetype, [[]])
67 s = self.thetype([frozenset(self.letters)])
68 self.assertIn(self.thetype(self.letters), s)
74 self.assertEqual(self.s, self.thetype(self.word))
75 self.assertEqual(type(u), self.thetype)
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg')
344 thetype = set variable in class:TestSet
573 thetype = SetSubclass variable in class:TestSetSubclass
586 thetype = frozenset variable in class:TestFrozenSet
651 thetype = FrozenSetSubclass variable in class:TestFrozenSetSubclass
    [all...]
  /external/clang/test/Analysis/
CFNumber.c 16 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
cfref_PR2519.c 23 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
uninit-vals-ps.c 74 extern Boolean CFNumberGetValue(CFNumberRef number, CFNumberType theType, void *valuePtr);
CFContainers.mm 90 CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
retain-release-gc-only.m 68 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
retain-release-inline.m 78 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
retain-release.mm 102 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
plist-output-alternate.m 50 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
    [all...]
edges-new.mm 32 CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
    [all...]
retain-release.m 108 extern CFNumberRef CFNumberCreate(CFAllocatorRef allocator, CFNumberType theType, const void *valuePtr);
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 117 const VarType *theType = TypeFactory::instance()->getVarTypeByName(retTypeName);
118 if (theType->name() == "UNKNOWN") {
122 m_retval.init(std::string(""), theType, std::string(""), Var::POINTER_OUT, std::string(""), std::string(""));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 107 theType = {"str": unicode, "int": int, "float": float, "None": type(None), "blob": buffer}
108 self.val = int(theType[whichType] is type(val))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 107 theType = {"str": unicode, "int": int, "float": float, "None": type(None), "blob": buffer}
108 self.val = int(theType[whichType] is type(val))
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 409 // Get the value of the "theType" argument.
413 // FIXME: We really should allow ranges of valid theType values, and
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]

Completed in 2857 milliseconds