Home
last modified time | relevance | path

Searched +full:case +full:- +full:sensitive (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/llvm-project/lldb/test/Shell/Breakpoint/
H A Dcase-insensitive.test1 # REQUIRES: system-windows
3 # RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t
4 # RUN: lldb-test breakpoints %t %s | FileCheck %s
6 breakpoint set -f case-sensitive.c -l 3
7 # CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3
10 breakpoint set -f %p/Inputs/case-sensitive.c -l 3
11 # CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3
14 breakpoint set -f %p/INPUTS/case-sensitive.c -l 3
15 # CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3
18 breakpoint set -f Case-Sensitive.c -l 3
[all …]
H A Dcase-sensitive.test1 # UNSUPPORTED: system-windows
3 # RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t
4 # RUN: lldb-test breakpoints %t %s | FileCheck %s
6 breakpoint set -f case-sensitive.c -l 3
7 # CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3
10 breakpoint set -f %p/Inputs/case-sensitive.c -l 3
11 # CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3
14 breakpoint set -f %p/INPUTS/case-sensitive.c -l 3
15 # CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3
18 breakpoint set -f Case-Sensitive.c -l 3
[all …]
/llvm-project/clang/test/FixIt/
H A Dfixit-unicode-named-escape-sequences.c1 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck -check-pref…
3 \N{GREEK_SMALL_LETTER-OMICRON} = // expected-error {{'GREEK_SMALL_LETTER-OMICRON' is not a valid Un…
4 // expected-note {{sensitive to case and whitespaces}}
5 // CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-2]]:4-[[@LINE-2]]:30}:"GREEK SMALL LETTER OMICRON"
7 "\N{zero width no break space}" // expected-error {{'zero width no break space' is not a valid Unic…
8 // expected-note {{sensitive to case and whitespaces}}
9 // CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-2]]:5-[[@LINE-2]]:30}:"ZERO WIDTH NO-BREAK SPACE"
11 "abc\N{MAN IN A BUSINESS SUIT LEVITATING}" // expected-error {{'MAN IN A BUSINESS SUIT LEVITATING' …
12 … // expected-note {{did you mean MAN IN BUSINESS SUIT LEVITATING ('��' U+1F574)?}}
13 // CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-2]]:8-[[@LINE-2]]:41}:"MAN IN BUSINESS SUIT LEVITATING"
[all …]
/llvm-project/lldb/test/Shell/ObjectFile/PECOFF/
H A Dsettings-abi.yaml1 # RUN: yaml2obj %s -o %t
2 # RUN: yaml2obj %s -o %t.debug
3 # RUN: mkdir -p %t.dir
4 # RUN: yaml2obj %s -o %t.dir/UPPER_CASE
5 # RUN: yaml2obj %s -o %t.dir/UPPER_CASE.debug
8 # RUN: %lldb -O "settings set plugin.object-file.pe-coff.abi msvc" \
9 # RUN: -f %t -o "image list --triple --basename" -o exit | \
10 # RUN: FileCheck -DABI=msvc -DFILENAME=%basename_t.tmp %s
13 # RUN: %lldb -O "settings set plugin.object-file.pe-coff.abi gnu" \
14 # RUN: -f %t -o "image list --triple --basename" -o exit | \
[all …]
/llvm-project/clang/test/Frontend/
H A Dinvalid-cxx-abi.cpp1 // These shouldn't be valid -fc++-abi values.
2 // RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=InvalidABI %s 2>&1 | FileCheck %s -check-p…
3 // RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=Fuchsia %s 2>&1 | FileCheck %s -check-pref…
5 // CASE-SENSITIVE: error: invalid C++ ABI name 'Fuchsia'
8 // RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=fuchsia -triple i386 %s 2>&1 | FileCheck %…
9 // UNSUPPORTED-FUCHSIA: error: C++ ABI 'fuchsia' is not supported on target triple 'i386'
/llvm-project/llvm/include/llvm/Analysis/
H A DLoads.h1 //===- Loads.h - Local load analysis --------
[all...]
/llvm-project/clang/test/Analysis/
H A Dunreachable-code-path.c1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,deadcode.DeadStores,alpha.deadcode.UnreachableCod…
5 // The first few tests are non-path specific - we should be able to find them
9 a += 5; // expected-warning{{never executed}} in test()
10 case 2: in test()
12 case 3: in test()
24 foo(a); // expected-warning{{never executed}} in test2()
30 if (a > 5) { // expected-warning{{never executed}} in test3()
35 // These next tests are path-sensitive
41 a -= 2; in test4()
44 a = a + 56; // expected-warning{{never executed}} in test4()
[all …]
/llvm-project/clang/docs/analyzer/developer-docs/
H A DIPA.rst5 inlining. The major one is ``-analyzer-config ipa``:
7 * ``analyzer-config ipa=none`` - All inlining is disabled. This is the only mode
10 * ``analyzer-config ipa=basic-inlining`` - Turns on inlining for C functions, C++
11 static member functions, and blocks -- essentially, the calls that behave
15 * ``analyzer-config ipa=inlining`` - Turns on inlining when we can confidently find
17 functions, devirtualized C++ methods, Objective-C class methods, Objective-C
21 * ``analyzer-config ipa=dynamic`` - Inline instance methods for which the type is
25 * ``analyzer-config ipa=dynamic-bifurcate`` - Same as -analyzer-config ipa=dynamic,
30 Currently, ``-analyzer-config ipa=dynamic-bifurcate`` is the default mode.
32 While ``-analyzer-config ipa`` determines in general how aggressively the analyzer
[all …]
/llvm-project/clang/test/ClangScanDeps/
H A Doptimize-vfs-edgecases.m1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: sed -e "s|DIR|%/t|g" %t/build/compile-commands.json.in > %t/build/compile-commands.json
4 // RUN: sed -e "s|DIR|%/t|g" %t/build/vfsoverlay.yaml.in > %t/build/vfsoverlay.yaml
5 // RUN: sed -e "s|DIR|%/t|g" %t/build/vfs.notyaml.in > %t/build/vfs.notyaml
6 // RUN: clang-scan-deps -compilation-database %t/build/compile-commands.json \
7 // RUN: -j 1 -format experimental-full --optimize-args=vfs,header-search > %t/deps.db
9 // RUN: %deps-to-rsp %t/deps.db --module-name=A > %t/A.rsp
13 // * `-ivfsoverlay` args that depend on earlier `-ivfsoverlay` args.
15 //--- build/compile-commands.json.in
[all …]
/llvm-project/llvm/docs/
H A DSecurity.rst7 1. Allow LLVM contributors and security researchers to disclose security-related issues affecting the LLVM project to members of the LLVM community.
10 4. Ensure timely notification and release to vendors who package and distribute LLVM-based toolchains and projects.
11 5. Ensure timely notification to users of LLVM-based toolchains whose compiled code is security-sensitive, through the `CVE process`_.
17 .. _report-security-issue:
22 To report a security issue in any of the LLVM projects, please use the `report a vulnerability`_ feature in the `llvm/llvm-security-repo`_ repository on github, under the "Security" tab.
31 -
[all...]
H A DAliasAnalysis.rst14 different ways of classifying them: flow-sensitive vs. flow-insensitive,
15 context-sensitive vs. context-insensitive, field-sensitive
16 vs. field-insensitive, unification-based vs. subset-based, etc. Traditionally,
27 are assumed to be flow-insensitive). In addition to simple alias analysis
57 --------------------------
69 .. code-block:: c++
77 C[1] = A[9-i]; /* One byte store */
80 In this case, the ``basic-aa`` pass will disambiguate the stores to ``C[0]`` and
82 the accesses are each one byte. In this case, the Loop Invariant Code Motion
86 .. code-block:: c++
[all …]
/llvm-project/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
H A Dcompare.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // XFAIL: LIBCXX-ANDROID-FIXME
12 // REQUIRES: locale.en_US.UTF-8
26 // XFAIL: windows-dll && msvc
52 ASSERT_COMPARE(std::string, "aaa", "bbb", -1); in main()
53 ASSERT_COMPARE(std::string, "AAA", "BBB", -1); in main()
58 // Apple's default collation is case-sensitive in main()
61 // Glibc, Windows, and FreeBSD's default collation is case-insensitive in main()
[all …]
/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp1 //===--- AnalysisConsumer.cpp - ASTConsumer for running Analyses ------
[all...]
/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp1 //===--- ModuleDependencyCollector.cpp - Collect module dependencies ------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
18 #include "llvm/Config/llvm-config.h"
38 // Run this through the FileManager in order to respect 'use-external-name' in visitInputFile()
39 // in case we have a VFS overlay. in visitInputFile()
41 Filename = FE->getName(); in visitInputFile()
63 Collector.addFile(File->getName()); in InclusionDirective()
102 // Change path to all upper case and ask for its real path, if the latter in isCaseSensitivePath()
[all …]
/llvm-project/libc/src/__support/FPUtil/x86_64/
H A DFEnvImpl.h1 //===-- x86_64 floating point env manipulation functions --------*
[all...]
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Deasily-swappable-parameters.rst1 .. title:: clang-tidy - bugprone-easily-swappable-parameters
3 bugprone-easily-swappable-parameters
10 .. code-block:: c++
15 A potential call like ``drawPoint(-2, 5)`` or ``openPath("a.txt", "tmp", Read)``
19 More elaborate and type-safe constructs, such as opaque typedefs or strong
22 .. code-block:: c++
29 Due to the potentially elaborate refactoring and API-breaking that is necessary
30 to strengthen the type safety of a project, no automatic fix-its are offered.
33 -------
39 analysis and fine-tune the enabling of more mixes between types.
[all …]
/llvm-project/clang/test/VFS/Inputs/
H A Dunknown-value.yaml3 'case-sensitive': 'Maybe?',
H A Droot-relative-overlay.yaml3 'case-sensitive': false,
4 'overlay-relative': OVERLAY_DIR,
5 'root-relative': 'overlay-dir',
8 'external-contents': 'EXTERNAL_DIR/actual_header.h'
/llvm-project/flang/docs/
H A DPreprocessing.md1 <!--===- docs/Preprocessing.md
5 SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 -->
12 ---
14 ---
19 * Macro and argument names are sensitive to case.
22 recognition of function-like parentheses and arguments.
33 * C-like line continuations with backslash-newline are allowed in
38 * C-like line continuations with backslash-newline can appear in
39 old-style C comments in directives.
[all …]
/llvm-project/flang/test/Preprocessing/
H A Dpp004.F1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
3 * KWMs case-sensitive
H A Dpp104.F901 ! RUN: %flang -E %s 2>&1 | FileCheck %s
3 ! KWMs case-sensitive
/llvm-project/llvm/test/TableGen/
H A DMixedCasedMnemonic.td1 // RUN: llvm-tblgen -gen-asm-matcher -I %p/../../include %s | FileCheck %s --check-prefix=MATCHER
2 // RUN: llvm-tblgen -ge
[all...]
/llvm-project/llvm/tools/opt/
H A DNewPMDriver.cpp1 //===- NewPMDriver.cpp - Driver for opt with new PM --------
[all...]
/llvm-project/clang/test/Modules/Inputs/double-quotes/
H A Dz.yaml3 'case-sensitive': 'false',
12 'external-contents': "TEST_DIR/flat-header-path/Z.h"
23 'external-contents': "TEST_DIR/flat-header-path/Z.modulemap"
/llvm-project/clang/test/Modules/Inputs/
H A Dall-product-headers.yaml3 'case-sensitive': 'false',
12 'external-contents': "DUMMY_DIR/sources/A.h"
23 'external-contents': "DUMMY_DIR/build/module.modulemap"
28 'external-contents': "DUMMY_DIR/build/module.private.modulemap"

12345678910>>...12