Home
last modified time | relevance | path

Searched refs:BResult (Results 1 – 3 of 3) sorted by relevance

/external/python/cffi/cffi/
Dbackend_ctypes.py848 def new_function_type(self, BArgs, BResult, has_varargs): argument
856 _ctype = ctypes.CFUNCTYPE(getattr(BResult, '_ctype', None),
859 _reftypename = BResult._get_c_name('(* &)(%s)' % (nameargs,))
865 if getattr(BResult, '_ctype', None) is not None:
866 error = BResult._from_ctypes(
867 BResult._create_ctype_obj(error))
876 res2 = BResult._to_ctypes(res2)
880 if issubclass(BResult, CTypesGenericPtr):
888 if issubclass(BResult, CTypesGenericPtr):
944 return BResult._from_ctypes(result)
/external/llvm-project/clang/unittests/Format/
DMacroExpanderTest.cpp167 auto BResult = uneof(Macros->expand(B, CResult)); in TEST_F() local
168 auto AResult = uneof(Macros->expand(A, BResult)); in TEST_F()
/external/llvm-project/clang/lib/Sema/
DSemaLookup.cpp2272 Result BResult = Next(BIt, BEnd); in LookupQualifiedName() local
2273 if (!AResult && !BResult) in LookupQualifiedName()
2275 if (!AResult || !BResult) in LookupQualifiedName()
2277 if (AResult != BResult) { in LookupQualifiedName()
2284 for (; BResult; BResult = Next(BIt, BEnd)) { in LookupQualifiedName()
2285 auto It = AResults.find(BResult); in LookupQualifiedName()