OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clang
(Results
226 - 250
of
3687
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Driver/
fpack-struct.c
1
// RUN: %
clang
-fpack-struct -### %s 2> %t
3
// RUN: %
clang
-fpack-struct=8 -### %s 2> %t
gnu-runtime.m
1
// RUN: %
clang
-target i386-apple-darwin10 -### -fsyntax-only -fgnu-runtime %s 2>&1 | FileCheck %s
2
// RUN: %
clang
-target i386-apple-darwin10 -### -x objective-c++ -fsyntax-only -fgnu-runtime %s 2>&1 | FileCheck %s
noinline.c
4
// RUN: %
clang
-target x86_64-apple-darwin10 \
8
// CHECK:
clang
redzone.c
1
// RUN: %
clang
-target i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log
3
// RUN: %
clang
-target i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log
/external/clang/test/Frontend/
ast-codegen.c
1
// RUN: %
clang
-target i386-unknown-unknown -emit-ast -o %t.ast %s
2
// RUN: %
clang
-target i386-unknown-unknown -emit-llvm -S -o - %t.ast | FileCheck %s
cpp-output.c
1
// RUN: %
clang
-E -o %t -C %s
4
// RUN: %
clang
-E -o %t -CC %s
/external/clang/test/Integration/
cocoa-pch.m
1
// RUN: %
clang
-arch x86_64 -x objective-c-header %s -o %t.h.pch
3
// RUN: %
clang
-arch x86_64 -fsyntax-only %t.empty.m -include %t.h -Xclang -ast-dump 2>&1 > /dev/null
/external/clang/test/PCH/Inputs/
cxx11-statement-attributes.h
7
[[
clang
::fallthrough]]; // This shouldn't generate a warning.
10
[[
clang
::fallthrough]]; // This should generate a warning: "fallthrough annotation does not directly precede switch label".
/external/clang/test/PCH/
different-diagnostic-level.c
1
// RUN: %
clang
-x c-header %s -Weverything -o %t.h.pch
2
// RUN: %
clang
-x c %s -w -include %t.h -fsyntax-only -Xclang -verify
/external/clang/test/Sema/
captured-statements.c
6
#pragma
clang
__debug captured
18
#pragma
clang
__debug captured
28
#pragma
clang
__debug captured
37
#pragma
clang
__debug captured
40
#pragma
clang
__debug captured
43
#pragma
clang
__debug captured
56
#pragma
clang
__debug captured
66
#pragma
clang
__debug captured
/external/clang/unittests/
CMakeLists.txt
2
set_target_properties(ClangUnitTests PROPERTIES FOLDER "
Clang
tests")
6
# Will compile the list of files together and link against the
clang
/external/deqp/framework/delibs/cmake/
toolchain-mingw-clang.cmake
10
set(CMAKE_C_COMPILER "${MINGW_BASE}/bin/
clang
.exe")
11
set(CMAKE_CXX_COMPILER "${MINGW_BASE}/bin/
clang
++.exe")
/external/llvm/test/CodeGen/X86/
ident-metadata.ll
5
; CHECK: .ident "
clang
version x.x"
8
!0 = metadata !{metadata !"
clang
version x.x"}
/external/llvm/test/DebugInfo/Inputs/
dwarfdump-test.cc
19
// Built with
Clang
3.2:
23
// $
clang
++ -g dwarfdump-test.cc -o <output>
llvm-symbolizer-dwo-test.cc
14
// Built with
Clang
3.5.0:
18
// $
clang
-gsplit-dwarf llvm-symbolizer-dwo-test.cc
llvm-symbolizer-test.c
14
// Built with
Clang
3.3:
18
// $
clang
-g llvm-symbolizer-test.c -o <output>
/ndk/tests/build/flto/jni/
Android.mk
8
ifneq ($(filter
clang
%,$(NDK_TOOLCHAIN_VERSION)),)
10
#
clang
does LTO via gold plugin, but gold doesn't support MIPS yet
/external/clang/docs/
ClangFormat.rst
13
:program:`
clang
-format` is located in `
clang
/tools/
clang
-format` and can be used
18
$
clang
-format -help
27
USAGE:
clang
-format [options] [<file> ...]
31
Clang
-format options:
34
clang
-format from an editor integration
42
-length,
clang
-format will format up to the end
59
.
clang
-format file located in one of the parent
75
by putting your style configuration in the ``.
clang
-format`` or ``_clang-format`
[
all
...]
ClangTools.rst
5
Clang
Tools are standalone command line (and potentially GUI) tools
7
Clang
as their compiler. These tools provide developer-oriented
12
primary
Clang
Subversion project. The rest of the tools are kept in a
14
don't. If you want to get access to the extra
Clang
Tools repository,
15
simply check it out into the tools tree of your
Clang
checkout and
17
LLVM/
Clang
checkout:
21
- ``cd llvm/tools/
clang
/tools``
22
- ``svn co http://llvm.org/svn/llvm-project/
clang
-tools-extra/trunk extra``
26
- ``cd llvm/tools/
clang
/tools``
27
- ``git clone http://llvm.org/git/
clang
-tools-extra.git extra`
[
all
...]
LibTooling.rst
5
LibTooling is a library to support writing standalone tools based on
Clang
.
9
For the information on how to setup
Clang
Tooling for LLVM see
15
Tools built with LibTooling, like
Clang
Plugins, run ``FrontendActions`` over
20
In this tutorial, we'll demonstrate the different ways of running
Clang
's
27
example to unit test parts of the
Clang
AST, ``runToolOnCode`` is what you
32
#include "
clang
/Tooling/Tooling.h"
37
EXPECT_TRUE(runToolOnCode(new
clang
::SyntaxOnlyAction, "class X {};"));
45
to run
clang
, it first needs to figure out what command line arguments to use
62
#include "
clang
/Tooling/CommonOptionsParser.h"
65
using namespace
clang
::tooling
[
all
...]
/build/core/clang/
TARGET_arm.mk
2
include $(BUILD_SYSTEM)/
clang
/arm.mk
36
define $(clang_2nd_arch_prefix)convert-to-
clang
-flags
38
$(call subst-
clang
-incompatible-arm-flags,\
44
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS)) \
48
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CPPFLAGS)) \
52
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS)) \
TARGET_arm64.mk
2
include $(BUILD_SYSTEM)/
clang
/arm64.mk
34
define convert-to-
clang
-flags
36
$(call subst-
clang
-incompatible-arm64-flags,\
42
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_CFLAGS)) \
46
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
50
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_LDFLAGS)) \
TARGET_mips.mk
2
include $(BUILD_SYSTEM)/
clang
/mips.mk
34
define $(clang_2nd_arch_prefix)convert-to-
clang
-flags
36
$(call subst-
clang
-incompatible-mips-flags,\
42
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS)) \
46
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CPPFLAGS)) \
50
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS)) \
TARGET_mips64.mk
2
include $(BUILD_SYSTEM)/
clang
/mips64.mk
34
define convert-to-
clang
-flags
36
$(call subst-
clang
-incompatible-mips64-flags,\
42
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_CFLAGS)) \
46
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
50
$(call convert-to-
clang
-flags,$(TARGET_GLOBAL_LDFLAGS)) \
TARGET_x86.mk
2
include $(BUILD_SYSTEM)/
clang
/x86.mk
36
define $(clang_2nd_arch_prefix)convert-to-
clang
-flags
38
$(call subst-
clang
-incompatible-x86-flags,\
44
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS)) \
48
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_CPPFLAGS)) \
52
$(call $(clang_2nd_arch_prefix)convert-to-
clang
-flags,$($(clang_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS)) \
Completed in 107 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>