HomeSort by relevance Sort by last modified time
    Searched full:inline (Results 1 - 25 of 9524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
inline.vgtest 1 prog: inline
  /external/webkit/LayoutTests/fast/encoding/
yentest2-expected.txt 3 two backslashes inline: \
4 one backslash inline:
yentest-expected.txt 2 two backslashes inline: \
  /external/clang/test/Sema/
inline.c 3 // Check that we don't allow illegal uses of inline
4 inline int a; // expected-error{{'inline' can only appear on functions}}
5 typedef inline int b; // expected-error{{'inline' can only appear on functions}}
6 int d(inline int a); // expected-error{{'inline' can only appear on functions}}
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p1.cpp 7 inline namespace b {} // inline original expected-warning {{inline namespaces are}}
8 inline namespace b {} // inline ext expected-warning {{inline namespaces are}}
9 inline namespace {} // inline unnamed expected-warning {{inline namespaces are}}
p7.cpp 4 inline namespace NIL {} // expected-error {{cannot be reopened as inline}}
5 inline namespace IL {} // expected-note {{previous definition}}
6 namespace IL {} // expected-warning{{inline namespace cannot be re-opened as a non-inline namespace}}
9 inline namespace {} // expected-error {{cannot be reopened as inline}}
11 inline namespace {} // expected-note {{previous definition}}
12 namespace {} // expected-error {{cannot be reopened as non-inline}}
  /external/clang/test/Modules/Inputs/
irgen.h 1 static inline int triple(int x) { return x * 3; }
  /external/clang/test/Preprocessor/Inputs/TestFramework.framework/Frameworks/AnotherTestFramework.framework/Headers/
AnotherTestFramework.h 1 static inline int another_test_framework_func(unsigned a) {
  /external/clang/test/ARCMT/Inputs/
test.h.result 6 static inline void part1(id p) {
11 static inline void part2(id p) {
  /external/clang/test/ARCMT/with space/
test.h.result 6 static inline void part1(id p) {
11 static inline void part2(id p) {
  /external/clang/test/CXX/basic/basic.start/basic.start.main/
p2e.cpp 3 inline int main() { // expected-error {{'main' is not allowed to be declared inline}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp 7 inline void f0(); // expected-error {{function definition cannot precede inline declaration}}
p3.cpp 4 inline void f1(); // expected-error {{inline declaration of 'f1' not allowed in block scope}}
11 // FIXME: Add test for "If the inline specifier is used in a friend declaration,
13 // been declared inline.
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
ser.h 3 inline bool f1() {
6 inline bool f2() {
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-values/
gtkhtml 4 inline
5 inline-table
  /external/icu4c/layout/
GlyphPositionAdjustments.h 29 inline Adjustment();
30 inline Adjustment(float xPlace, float yPlace, float xAdv, float yAdv, le_int32 baseOff = -1);
31 inline ~Adjustment();
33 inline float getXPlacement() const;
34 inline float getYPlacement() const;
35 inline float getXAdvance() const;
36 inline float getYAdvance() const;
38 inline le_int32 getBaseOffset() const;
40 inline void setXPlacement(float newXPlacement);
41 inline void setYPlacement(float newYPlacement)
    [all...]
IndicReordering.h 100 inline le_int32 getWorstCaseExpansion() const;
101 inline le_bool getFilterZeroWidth() const;
105 inline const SplitMatra *getSplitMatra(CharClass charClass) const;
107 inline le_bool isVowelModifier(LEUnicode ch) const;
108 inline le_bool isStressMark(LEUnicode ch) const;
109 inline le_bool isConsonant(LEUnicode ch) const;
110 inline le_bool isReph(LEUnicode ch) const;
111 inline le_bool isVirama(LEUnicode ch) const;
112 inline le_bool isAlLakuna(LEUnicode ch) const;
113 inline le_bool isNukta(LEUnicode ch) const
    [all...]
  /external/clang/test/CodeGen/
2006-09-25-DebugFilename.h 3 static inline int hfunc1()
  /external/clang/test/Index/Inputs/
preamble.h 0 inline int bar(int i) {
  /external/kernel-headers/original/asm-generic/
emergency-restart.h 4 static inline void machine_emergency_restart(void)
  /external/linux-tools-perf/util/include/linux/
prefetch.h 4 static inline void prefetch(void *a __attribute__((unused))) { }
  /gdk/sources/llvm-ndk-cc/tests/F_asm/
asm.stderr.txt.expect 0 Inline assembly is illigal. Please don't use it.
  /ndk/sources/host-tools/sed-4.2.1/lib/
se-context.in.h 7 static inline context_t context_new (char const *s _UNUSED_PARAMETER_)
9 static inline char *context_str (context_t con _UNUSED_PARAMETER_)
11 static inline void context_free (context_t c _UNUSED_PARAMETER_) {}
13 static inline int context_user_set (context_t sc _UNUSED_PARAMETER_,
16 static inline int context_role_set (context_t sc _UNUSED_PARAMETER_,
19 static inline int context_range_set (context_t sc _UNUSED_PARAMETER_,
22 static inline int context_type_set (context_t sc _UNUSED_PARAMETER_,
se-selinux.in.h 11 static inline int getcon (security_context_t *con _UNUSED_PARAMETER_)
13 static inline void freecon (security_context_t con _UNUSED_PARAMETER_) {}
16 static inline int getfscreatecon (security_context_t *con _UNUSED_PARAMETER_)
18 static inline int setfscreatecon (security_context_t con _UNUSED_PARAMETER_)
20 static inline int matchpathcon (char const *s _UNUSED_PARAMETER_,
24 static inline int getfilecon (char const *s _UNUSED_PARAMETER_,
27 static inline int lgetfilecon (char const *s _UNUSED_PARAMETER_,
30 static inline int setfilecon (char const *s _UNUSED_PARAMETER_,
33 static inline int lsetfilecon (char const *s _UNUSED_PARAMETER_,
36 static inline int fsetfilecon (int fd _UNUSED_PARAMETER_
    [all...]
  /external/clang/test/Driver/
noinline.c 1 // Make sure the driver is correctly passing -fno-inline-functions
5 // RUN: -fno-inline -fno-inline-functions -### -fsyntax-only %s 2> %t
9 // CHECK: "-fno-inline"
10 // CHECK: "-fno-inline-functions"

Completed in 904 milliseconds

1 2 3 4 5 6 7 8 91011>>