HomeSort by relevance Sort by last modified time
    Searched defs:BUILTIN (Results 1 - 15 of 15) sorted by null

  /development/tools/apkcheck/src/com/android/apkcheck/
Builtin.java 29 public class Builtin {
30 private Builtin() {}
32 private static final String BUILTIN =
108 return new StringReader(BUILTIN);
  /external/clang/lib/Basic/
Targets.cpp 644 static const Builtin::Info BuiltinInfo[];
729 virtual void getTargetBuiltins(const Builtin::Info *&Records,
732 NumRecords = clang::PPC::LastTSBuiltin-Builtin::FirstTSBuiltin;
860 const Builtin::Info PPCTargetInfo::BuiltinInfo[] = {
861 #define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
    [all...]
Builtins.cpp 1 //===--- Builtins.cpp - Builtin function implementation -------------------===//
10 // This file implements various things for builtin functions.
21 static const Builtin::Info BuiltinInfo[] = {
22 { "not a builtin function", 0, 0, 0, ALL_LANGUAGES },
23 #define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
29 const Builtin::Info &Builtin::Context::GetRecord(unsigned ID) const {
30 if (ID < Builtin::FirstTSBuiltin)
32 assert(ID - Builtin::FirstTSBuiltin < NumTSRecords && "Invalid builtin ID!")
    [all...]
  /external/clang/test/Analysis/
string-fail.c 21 // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined.
27 # define BUILTIN(f) __builtin_ ## f
29 # define BUILTIN(f) f
41 #define strnlen BUILTIN(strnlen)
bstring.c 16 // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined.
22 # define BUILTIN(f) __builtin_ ## f
24 # define BUILTIN(f) f
37 #define __memcpy_chk BUILTIN(__memcpy_chk)
45 #define memcpy BUILTIN(memcpy)
157 #define __mempcpy_chk BUILTIN(__mempcpy_chk)
165 #define mempcpy BUILTIN(mempcpy)
278 #define __memmove_chk BUILTIN(__memmove_chk)
285 #define memmove BUILTIN(memmove)
324 #define bcmp BUILTIN(bcmp
    [all...]
string.c 16 // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined.
22 # define BUILTIN(f) __builtin_ ## f
24 # define BUILTIN(f) f
38 #define strlen BUILTIN(strlen)
253 #define __strcpy_chk BUILTIN(__strcpy_chk)
260 #define strcpy BUILTIN(strcpy)
308 #define __stpcpy_chk BUILTIN(__stpcpy_chk)
315 #define stpcpy BUILTIN(stpcpy)
347 #define __strcat_chk BUILTIN(__strcat_chk)
354 #define strcat BUILTIN(strcat
    [all...]
  /external/clang/test/Sema/
warn-strncat-size.c 10 # define BUILTIN(f) __builtin_ ## f
12 # define BUILTIN(f) f
15 #define strncat BUILTIN(strncat)
  /external/clang/include/clang/Basic/
Builtins.h 1 //===--- Builtins.h - Builtin function header -------------------*- C++ -*-===//
11 /// \brief Defines enum values for all the target-independent builtin
34 C_LANG = 0x1, // builtin for c only.
35 CXX_LANG = 0x2, // builtin for cplusplus only.
36 OBJC_LANG = 0x4, // builtin for objective-c and objective-c++
37 ALL_LANGUAGES = (C_LANG|CXX_LANG|OBJC_LANG) //builtin is for all languages.
40 namespace Builtin {
42 NotBuiltin = 0, // This is not a builtin function.
43 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
72 /// appropriate builtin ID # and mark any non-portable builtin identifiers a
    [all...]
TargetBuiltins.h 1 //===--- TargetBuiltins.h - Target specific builtin IDs -------------------===//
27 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
28 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
37 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
38 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
47 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
48 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
58 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
59 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
108 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1
    [all...]
  /external/v8/src/
serialize.h 40 BUILTIN,
builtins.cc 116 // A builtin function is defined by writing:
118 // BUILTIN(name) {
122 // In the body of the builtin function the arguments can be accessed
127 #define BUILTIN(name) \
141 #define BUILTIN(name) \
177 BUILTIN(Illegal) {
183 BUILTIN(EmptyFunction) {
298 BUILTIN(InternalArrayCodeGeneric) {
306 BUILTIN(ArrayCodeGeneric) {
485 BUILTIN(ArrayPush)
    [all...]
objects.h     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 724 // Emit suffixes. Integer literals are always a builtin integer type.
754 // Emit suffixes. Float literals are always a builtin float type.
1101 #define BUILTIN(ID, TYPE, ATTRS)
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 121 case Builtin::BI__builtin___CFStringMakeConstantString:
123 "Wrong # arguments to builtin CFStringMakeConstantString");
127 case Builtin::BI__builtin_stdarg_start:
128 case Builtin::BI__builtin_va_start:
132 case Builtin::BI__builtin_isgreater:
133 case Builtin::BI__builtin_isgreaterequal:
134 case Builtin::BI__builtin_isless:
135 case Builtin::BI__builtin_islessequal:
136 case Builtin::BI__builtin_islessgreater:
137 case Builtin::BI__builtin_isunordered
    [all...]

Completed in 1287 milliseconds