Searched defs:Builtin (Results 1 - 19 of 19) sorted by relevance

/external/lldb/include/lldb/Core/
H A DClangForward.h22 namespace Builtin namespace in namespace:clang
/external/chromium_org/v8/tools/
H A Dcheck-name-clashes.py143 class Builtin(object): class in inherits:object
177 natives.append(Builtin(match))
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTypeInference.py4 import Builtin namespace
181 node.star_arg, TypedExprNode(Builtin.tuple_type))
184 node.starstar_arg, TypedExprNode(Builtin.dict_type))
489 Builtin.float_type):
H A DVisitor.py9 from Cython.Compiler import Builtin namespace
596 if (obj_type is Builtin.type_type and self_arg.is_name and
H A DFlowControl.py3 Builtin=object, InternalError=object,
9 import Builtin namespace
723 TypedExprNode(Builtin.tuple_type,
728 TypedExprNode(Builtin.dict_type,
H A DMain.py61 import Builtin, CythonScope namespace
62 self.modules = {"__builtin__" : Builtin.builtin_scope}
H A DOptimize.py5 Nodes=object, ExprNodes=object, PyrexTypes=object, Builtin=object,
12 import Builtin namespace
123 if iterator.type is Builtin.dict_type:
134 if iterator.type is Builtin.bytes_type:
136 if iterator.type is Builtin.unicode_type:
216 if arg.type in (Builtin.tuple_type, Builtin.list_type):
225 PyrexTypes.CFuncTypeArg("s", Builtin.bytes_type, None)
230 PyrexTypes.CFuncTypeArg("s", Builtin.bytes_type, None)
235 if not target_type.is_int and target_type is not Builtin
[all...]
H A DParseTreeTransforms.py12 import Builtin namespace
1338 args[0].type == Builtin.str_type):
2559 error(self.pos, "Builtin 'locals()' called with wrong number of args, expected 0, got %d"
2564 error(self.pos, "Builtin 'vars()' called with wrong number of args, expected 0-1, got %d"
2571 error(self.pos, "Builtin 'dir()' called with wrong number of args, expected 0-1, got %d"
2574 # optimised in Builtin.py
H A DParsing.py12 Builtin=object, ModuleNode=object, Utils=object,
21 import Builtin namespace
916 pos, loop=loop, append=append, type = Builtin.list_type,
982 pos, loop=loop, append=append, type=Builtin.set_type)
995 pos, loop=loop, append=append, type=Builtin.dict_type)
H A DSymtab.py997 import Builtin namespace
999 outer_scope = Builtin.builtin_scope
1457 import Builtin namespace
1459 type = Builtin.type_type,
H A DNodes.py7 Builtin=object, error=object, warning=object, Naming=object, PyrexTypes=object,
16 import Builtin namespace
914 ## type = Builtin.type_type
948 ## type = Builtin.type_type
964 elif type is Builtin.complex_type:
2715 arg.hdr_type = arg.type = Builtin.type_type
4325 self.class_name in Builtin.builtin_types and
4916 env.use_utility_code(Builtin.pyexec_utility_code)
4968 elif arg.is_subscript and arg.base.type is Builtin.bytearray_type:
4986 arg.is_subscript and arg.base.type is Builtin
[all...]
H A DExprNodes.py12 Builtin=object, Symtab=object, Utils=object, find_coercion_error=object,
31 from Builtin import list_type, tuple_type, set_type, dict_type, type_type, \
33 import Builtin namespace
71 (Builtin.unicode_type, Builtin.bytes_type) : "Cannot convert Unicode string to 'bytes' implicitly, encoding required.",
72 (Builtin.unicode_type, Builtin.str_type) : "Cannot convert Unicode string to 'str' implicitly. This is not portable and requires explicit encoding.",
73 (Builtin.unicode_type, PyrexTypes.c_char_ptr_type) : "Unicode objects only support coercion to Py_UNICODE*.",
74 (Builtin.unicode_type, PyrexTypes.c_uchar_ptr_type) : "Unicode objects only support coercion to Py_UNICODE*.",
75 (Builtin
[all...]
/external/clang/include/clang/Basic/
H A DBuiltins.h1 //===--- Builtins.h - Builtin function header -------------------*- C++ -*-===//
44 namespace Builtin { namespace in namespace:clang
178 bool BuiltinIsSupported(const Builtin::Info &BuiltinInfo,
H A DTargetInfo.h45 namespace Builtin { struct Info; } namespace in namespace:clang
458 virtual void getTargetBuiltins(const Builtin::Info *&Records,
/external/llvm/include/llvm/IR/
H A DAttributes.h71 Builtin, ///< Callee is recognized as a builtin, despite enumerator in enum:llvm::Attribute::AttrKind
/external/clang/lib/AST/
H A DExprConstant.cpp1171 unsigned Builtin = E->getBuiltinCallee(); local
1172 return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString ||
1173 Builtin == Builtin::BI__builtin___NSStringMakeConstantString);
3946 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
4821 case Builtin::BI__builtin_addressof:
6009 case Builtin::BI__builtin_object_size: {
6037 case Builtin::BI__builtin_bswap16:
6038 case Builtin
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h71 namespace Builtin { class Context; } namespace in namespace:clang
418 Builtin::Context &BuiltinInfo;
770 // Builtin Types.
805 SelectorTable &sels, Builtin::Context &builtins);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp10 // This contains code to emit Builtin calls as LLVM code.
213 case Builtin::BI__builtin___CFStringMakeConstantString:
214 case Builtin::BI__builtin___NSStringMakeConstantString:
216 case Builtin::BI__builtin_stdarg_start:
217 case Builtin::BI__builtin_va_start:
218 case Builtin::BI__va_start:
219 case Builtin::BI__builtin_va_end: {
220 Value *ArgValue = (BuiltinID == Builtin::BI__va_start)
228 Intrinsic::ID inst = (BuiltinID == Builtin::BI__builtin_va_end) ?
232 case Builtin
2424 const NeonIntrinsicInfo *Builtin = local
3389 const NeonIntrinsicInfo *Builtin = findNeonIntrinsicInMap( local
3962 const NeonIntrinsicInfo *Builtin = findNeonIntrinsicInMap( local
[all...]
/external/clang/lib/Sema/
H A DTreeTransform.h2650 FunctionDecl *Builtin = cast<FunctionDecl>(Lookup.front()); local
2651 Expr *Callee = new (SemaRef.Context) DeclRefExpr(Builtin, false,
2654 QualType CalleePtrTy = SemaRef.Context.getPointerType(Builtin->getType());
2660 SemaRef.Context, Callee, SubExprs, Builtin->getCallResultType(),
2661 Expr::getValueKindForType(Builtin->getReturnType()), RParenLoc);

Completed in 448 milliseconds