HomeSort by relevance Sort by last modified time
    Searched refs:BUILTIN (Results 1 - 23 of 23) 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/include/clang/Basic/
TargetBuiltins.h 1 //===--- TargetBuiltins.h - Target specific builtin IDs ---------*- C++ -*-===//
26 LastTIBuiltin = clang::Builtin::FirstTSBuiltin - 1,
27 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
36 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
38 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
47 LastTIBuiltin = clang::Builtin::FirstTSBuiltin - 1,
49 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
58 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1,
59 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
68 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1
    [all...]
Builtins.h 1 //===--- Builtins.h - Builtin function header -------------------*- C++ -*-===//
11 /// \brief Defines enum values for all the target-independent builtin
34 GNU_LANG = 0x1, // builtin requires GNU mode.
35 C_LANG = 0x2, // builtin for c only.
36 CXX_LANG = 0x4, // builtin for cplusplus only.
37 OBJC_LANG = 0x8, // builtin for objective-c and objective-c++
38 MS_LANG = 0x10, // builtin requires MS mode.
39 ALL_LANGUAGES = C_LANG | CXX_LANG | OBJC_LANG, // builtin for all languages.
40 ALL_GNU_LANGUAGES = ALL_LANGUAGES | GNU_LANG, // builtin requires GNU mode.
41 ALL_MS_LANGUAGES = ALL_LANGUAGES | MS_LANG // builtin requires MS mode
    [all...]
  /external/chromium_org/v8/src/
builtins.h 11 // Specifies extra arguments required by a C++ builtin.
37 V(Make##C##CodeYoungAgainOddMarking, BUILTIN, \
39 V(Make##C##CodeYoungAgainEvenMarking, BUILTIN, \
67 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \
69 V(InOptimizationQueue, BUILTIN, UNINITIALIZED, \
71 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED, \
73 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, \
75 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, \
77 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, \
79 V(CompileUnoptimized, BUILTIN, UNINITIALIZED,
294 Code* builtin(Name name) { function in class:v8::internal::Builtins
    [all...]
gdb-jit.h 31 V(BUILTIN) \
builtins.cc 96 // A builtin function is defined by writing:
98 // BUILTIN(name) {
102 // In the body of the builtin function the arguments can be accessed
107 #define BUILTIN(name) \
121 #define BUILTIN(name) \
165 BUILTIN(Illegal) {
171 BUILTIN(EmptyFunction) {
371 BUILTIN(ArrayPush) {
481 BUILTIN(ArrayPop) {
511 BUILTIN(ArrayShift)
    [all...]
serialize.h 17 BUILTIN,
serialize.cc 66 case BUILTIN: {
135 { BUILTIN, \
    [all...]
debug.cc 440 // Find the builtin to use for invoking the debug break
444 // Find the builtin debug break function matching the calling convention
497 // Patch the code to invoke the builtin debug break function matching the
837 Handle<JSBuiltinsObject> builtin = local
841 JSReceiver::SetProperty(global, key, builtin, NONE, SLOPPY),
    [all...]
log.cc     [all...]
objects-inl.h     [all...]
objects.h     [all...]
objects.cc     [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/test/Analysis/
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-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)
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)
312 #define __stpcpy_chk BUILTIN(__stpcpy_chk)
319 #define stpcpy BUILTIN(stpcpy)
351 #define __strcat_chk BUILTIN(__strcat_chk)
358 #define strcat BUILTIN(strcat
    [all...]
  /external/clang/lib/Basic/
Builtins.cpp 1 //===--- Builtins.cpp - Builtin function implementation -------------------===//
10 // This file implements various things for builtin functions.
22 static const Builtin::Info BuiltinInfo[] = {
23 { "not a builtin function", nullptr, nullptr, nullptr, ALL_LANGUAGES},
24 #define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
31 const Builtin::Info &Builtin::Context::GetRecord(unsigned ID) const {
32 if (ID < Builtin::FirstTSBuiltin)
34 assert(ID - Builtin::FirstTSBuiltin < NumTSRecords && "Invalid builtin ID!")
    [all...]
Targets.cpp 678 static const Builtin::Info BuiltinInfo[];
774 void getTargetBuiltins(const Builtin::Info *&Records,
777 NumRecords = clang::PPC::LastTSBuiltin-Builtin::FirstTSBuiltin;
918 const Builtin::Info PPCTargetInfo::BuiltinInfo[] = {
919 #define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_provider.cc 41 return "Builtin";
76 return metrics::OmniboxEventProto::BUILTIN;
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 108 CHECK_EQ(make_code(BUILTIN, Builtins::kArrayCode),
144 decoder.Decode(make_code(BUILTIN, Builtins::kArrayCode)));
388 // Make sure all builtin scripts are cached.
539 // Make sure all builtin scripts are cached.
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 137 case Builtin::BI__builtin___CFStringMakeConstantString:
139 "Wrong # arguments to builtin CFStringMakeConstantString");
143 case Builtin::BI__builtin_stdarg_start:
144 case Builtin::BI__builtin_va_start:
145 case Builtin::BI__va_start:
149 case Builtin::BI__builtin_isgreater:
150 case Builtin::BI__builtin_isgreaterequal:
151 case Builtin::BI__builtin_isless:
152 case Builtin::BI__builtin_islessequal:
153 case Builtin::BI__builtin_islessgreater
    [all...]

Completed in 743 milliseconds