HomeSort by relevance Sort by last modified time
    Searched full:clang (Results 2326 - 2350 of 15538) sorted by null

<<919293949596979899100>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Tooling/
CompilationDatabasePluginRegistry.h 13 #include "clang/Tooling/CompilationDatabase.h"
16 namespace clang { namespace
25 } // end namespace clang
  /prebuilts/clang/host/linux-x86/clang-4691093/share/clang/
clang-format-bbedit.applescript 1 -- In this file, change "/path/to/" to the path where you installed clang-format
3 -- select the script from the Script menu and clang-format will format the
18 set newContents to do shell script "/path/to/clang-format -offset=" & selectionOffset & " -length=" & selectionLength & " " & quoted form of filePath
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /system/bt/build/toolchain/clang/
get_clang_suffix.py 14 clang_path = which("clang++")
30 # Loop in support clang version only
35 clang_path = which("clang++-" + clang_version_str)
  /system/core/libcutils/include_vndk/cutils/
log.h 27 #pragma clang diagnostic push
28 #pragma clang diagnostic ignored "-Wpedantic"
42 #pragma clang diagnostic pop
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 10 #include "clang/CodeGen/ObjectFilePCHContainerOperations.h"
13 #include "clang/AST/ASTContext.h"
14 #include "clang/AST/DeclObjC.h"
15 #include "clang/AST/Expr.h"
16 #include "clang/AST/RecursiveASTVisitor.h"
17 #include "clang/Basic/Diagnostic.h"
18 #include "clang/Basic/TargetInfo.h"
19 #include "clang/CodeGen/BackendUtil.h"
20 #include "clang/Frontend/CodeGenOptions.h"
21 #include "clang/Frontend/CompilerInstance.h
    [all...]
  /external/clang/docs/
LibASTMatchersTutorial.rst 6 translation tool based on Clang's `LibTooling <LibTooling.html>`_. It is
7 explicitly aimed at people who are new to Clang, so all you should need
12 skim the :doc:`Introduction to the Clang
15 Step 0: Obtaining Clang
18 As Clang is part of the LLVM project, you'll need to download LLVM's
19 source code first. Both Clang and LLVM are maintained as Subversion
26 mkdir ~/clang-llvm && cd ~/clang-llvm
29 git clone http://llvm.org/git/clang.git
30 cd clang/tool
    [all...]
  /frameworks/minikin/tests/unittest/
GreedyLineBreakerTest.cpp 87 // Note that disable clang-format everywhere since aligned expectation is more readable.
112 // clang-format off
117 // clang-format on
126 // clang-format off
133 // clang-format on
142 // clang-format off
149 // clang-format on
158 // clang-format off
166 // clang-format on
175 // clang-format of
    [all...]
  /frameworks/compile/slang/
slang_backend.cpp 23 #include "clang/AST/ASTContext.h"
24 #include "clang/AST/Attr.h"
25 #include "clang/AST/Decl.h"
26 #include "clang/AST/DeclGroup.h"
27 #include "clang/AST/RecordLayout.h"
29 #include "clang/Basic/Diagnostic.h"
30 #include "clang/Basic/TargetInfo.h"
31 #include "clang/Basic/TargetOptions.h"
33 #include "clang/CodeGen/ModuleBuilder.h"
35 #include "clang/Frontend/CodeGenOptions.h
    [all...]
  /external/clang/test/Preprocessor/
x86_target_features.c 1 // RUN: %clang -target i386-unknown-unknown -march=core2 -msse4 -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=SSE4 %s
12 // RUN: %clang -target i386-unknown-unknown -march=core2 -msse4.1 -mno-sse4 -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=NOSSE4 %s
16 // RUN: %clang -target i386-unknown-unknown -march=core2 -msse4 -mno-sse2 -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=SSE %s
27 // RUN: %clang -target i386-unknown-unknown -march=pentium-m -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=SSE2 %s
38 // RUN: %clang -target i386-unknown-unknown -march=pentium-m -mno-sse -mavx -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=AVX %s
50 // RUN: %clang -target i386-unknown-unknown -march=pentium-m -mxop -mno-avx -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=SSE4A %s
62 // RUN: %clang -target i386-unknown-unknown -march=atom -mavx512f -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=AVX512F %s
76 // RUN: %clang -target i386-unknown-unknown -march=atom -mavx512cd -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=AVX512CD %s
91 // RUN: %clang -target i386-unknown-unknown -march=atom -mavx512er -x c -E -dM -o - %s | FileCheck -match-full-lines --check-prefix=AVX512ER %s
106 // RUN: %clang -target i386-unknown-unknown -march=atom -mavx512pf -x c -E -dM -o - %s | FileCheck -match-full-li (…)
    [all...]
  /external/clang/lib/Parse/
ParseAST.cpp 1 //===--- ParseAST.cpp - Provide the clang::ParseAST method ----------------===//
10 // This file implements the clang::ParseAST method.
14 #include "clang/Parse/ParseAST.h"
15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ExternalASTSource.h"
18 #include "clang/AST/Stmt.h"
19 #include "clang/Parse/ParseDiagnostic.h"
20 #include "clang/Parse/Parser.h"
21 #include "clang/Sema/CodeCompleteConsumer.h
    [all...]
  /external/clang/www/analyzer/
checker_dev_manual.html 28 part of the Clang project, so consult <a href="http://clang.llvm.org/hacking.html">Hacking on Clang</a>
56 the <a href="http://clang.llvm.org/get_started.html">Clang Getting Started</a>
59 <li>The analyzer source code is located under the Clang source tree:
61 $ <b>cd llvm/tools/clang</b>
63 <br>See: <tt>include/clang/StaticAnalyzer</tt>, <tt>lib/StaticAnalyzer</tt>,
66 <li>The analyzer regression tests can be executed from the Clang's build
69 $ <b>cd ../../../; cd build/tools/clang; TESTDIRS=Analysis make test</b
    [all...]
xcode.html 23 <p>Since Xcode 3.2, users have been able to run the Clang Static Analyzer
62 <p>By default, Xcode uses the version of <tt>clang</tt> that came bundled with
64 alternate version of <tt>clang</tt> for this purpose while continuing to use
65 the <tt>clang</tt> that came with Xcode for compiling projects.</p>
82 copy of <tt>clang</tt> that Xcode uses for analysis:</p>
91 Use the Clang located at the provided absolute path,
93 --use-xcode-clang Use the Clang bundled with Xcode
97 to point it to use the version of <tt>clang</tt> you specify for static
101 <li><b>--use-xcode-clang</b>: Switch Xcode (back) to using the <tt>clang</tt> that came bundled with it for static analysis (…)
    [all...]
  /external/llvm/test/Transforms/ObjCARC/
invoke.ll 15 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW:#[0-9]+]], !clang.imprecise_release !0
18 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0
29 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
35 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
43 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0
47 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0
71 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
91 to label %invoke.cont unwind label %finally.rethrow, !clang.arc.no_objc_arc_exceptions !0
95 call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void ()*)(), !clang.arc.no_objc_arc_exceptions !0
97 to label %finally.cont unwind label %finally.rethrow, !clang.arc.no_objc_arc_exceptions !
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/share/clang/
clang-include-fixer.py 1 # This file is a minimal clang-include-fixer vim-integration. To install:
2 # - Change 'binary' if clang-include-fixer is not on the path (see below).
5 # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr>
7 # This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf"
8 # to another binding if you need clang-include-fixer on a different key.
10 # To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html
12 # With this integration you can press the bound key and clang-include-fixer will
25 # set g:clang_include_fixer_path to the path to clang-include-fixer if it is no
    [all...]

Completed in 1217 milliseconds

<<919293949596979899100>>