OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:elide
(Results
1 - 25
of
124
) sorted by null
1
2
3
4
5
/external/clang/test/Misc/
diag-template-diffing.cpp
1
// RUN: not %clang_cc1 -fsyntax-only %s -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-
ELIDE
-NOTREE
2
// RUN: not %clang_cc1 -fsyntax-only %s -fno-
elide
-type -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-NOELIDE-NOTREE
3
// RUN: not %clang_cc1 -fsyntax-only %s -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-
ELIDE
-TREE
4
// RUN: not %clang_cc1 -fsyntax-only %s -fno-
elide
-type -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-NOELIDE-TREE
26
// CHECK-
ELIDE
-NOTREE: no matching function for call to 'f'
27
// CHECK-
ELIDE
-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argument
30
// CHECK-
ELIDE
-TREE: no matching function for call to 'f'
31
// CHECK-
ELIDE
-TREE: candidate function not viable: no known conversion from argument type to parameter type for 1st argument
32
// CHECK-
ELIDE
-TREE: vector<
33
// CHECK-
ELIDE
-TREE: [std::basic_string != versa_string]
[
all
...]
/external/clang/test/CodeGenCXX/
no-elide-constructors.cpp
1
// RUN: %clang_cc1 -std=c++98 -triple i386-unknown-unknown -fno-
elide
-constructors -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-CXX98
2
// RUN: %clang_cc1 -std=c++11 -triple i386-unknown-unknown -fno-
elide
-constructors -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-CXX11
3
// RUN: %clang_cc1 -std=c++98 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-CXX98-
ELIDE
4
// RUN: %clang_cc1 -std=c++11 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-CXX11-
ELIDE
26
// CHECK-CXX98-
ELIDE
-NOT: call void @_ZN1XC1ERKS_(
27
// CHECK-CXX11-
ELIDE
-NOT: call void @_ZN1XC1EOS_(
30
// FIXME: This call is present even in the -
ELIDE
runs, but is guarded by a
eh-aggregate-copy-destroy.cpp
4
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fexceptions -fcxx-exceptions -O0 -fno-
elide
-constructors -emit-llvm %s -o - | FileCheck %s
eh-aggregated-inits-unwind.cpp
7
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -O0 -fno-
elide
-constructors -emit-llvm %s -o - | FileCheck %s
eh-aggregated-inits.cpp
5
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -O0 -fno-
elide
-constructors -emit-llvm %s -o - | FileCheck %s
copy-constructor-elim-2.cpp
9
// Verify that we do not
elide
copies when constructing a base class.
/external/chromium-trace/catapult/third_party/typ/typ/
printer.py
29
def update(self, msg,
elide
=True):
31
if
elide
and self.cols and msg_len > self.cols - 5:
runner.py
530
self.update(test_start_msg + ' queued',
elide
=False)
532
self.update(test_start_msg,
elide
=(not self.args.verbose))
558
self.update(stats.format() + result.name + suffix,
elide
=False)
567
elide
=(not self.args.verbose))
576
def update(self, msg,
elide
):
577
self.printer.update(msg,
elide
)
599
'' if num_failures == 1 else 's'),
elide
=False)
[
all
...]
/art/compiler/utils/
stack_checks.h
33
// Determine whether a frame is small or large, used in the decision on whether to
elide
a
/external/chromium-trace/catapult/tracing/tracing/ui/base/
elided_cache.html
19
* key: String we wish to
elide
.
/external/llvm/test/Feature/OperandBundles/
dse.ll
33
; legal to
elide
the final store that location.
/external/owasp/sanitizer/src/main/org/owasp/html/
Encoding.java
192
//
Elide
the orphaned surrogate.
201
//
Elide
since not an the XML Character.
247
// We
elide
control characters so that we can ensure that our output is
253
REPLACEMENTS[i] = ""; //
Elide
/external/v8/test/webkit/
dfg-int-overflow-large-constants-in-a-line.js
25
"Tests that our optimization to
elide
overflow checks understands that if we keep adding huge numbers, we could end up creating a number that is not precisely representable using doubles."
dfg-int-overflow-large-constants-in-a-line-expected.txt
24
Tests that our optimization to
elide
overflow checks understands that if we keep adding huge numbers, we could end up creating a number that is not precisely representable using doubles.
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/
rect_track_test.html
106
var optDicts = [{ trackName: 'elideOff',
elide
: false },
107
{ trackName: 'elideOn',
elide
: true }];
129
track.SHOULD_ELIDE_TEXT = dict.
elide
;
216
test('
elide
', function() {
/external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp
142
// Several situations to
elide
for checking.
150
//
Elide
analyzing the call entirely if the base pointer is not 'this'.
/external/clang/include/clang/Basic/
DiagnosticOptions.def
76
DIAGOPT(ElideType, 1, 0) ///
Elide
identical types in template diffing
/external/clang/test/CodeGenObjC/
exceptions.m
64
// Landing pad. Note that we
elide
the re-enter.
/external/libchrome/sandbox/linux/bpf_dsl/
codegen.cc
34
// we could trace back through the program in Compile() and
elide
/art/runtime/base/
stringpiece.h
172
// one of the arguments is a literal, the compiler can
elide
a lot of the
/external/llvm/test/CodeGen/X86/
peephole-na-phys-copy-folding.ll
4
; The peephole optimizer can
elide
some physical register copies such as
/external/bison/lib/
quotearg.c
434
/* No need to escape the escape if we are trying to
elide
701
/*
Elide
embedded null bytes if we can't return a size. */
795
/*
Elide
embedded null bytes since we don't return a size. */
/art/compiler/dex/
verified_method.cc
208
* to
elide
these casts.
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
gen_client.py
72
'Full method IDs of methods for which we should NOT try to
elide
'
/external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
132
// invalid types earlier and we can
elide
the kind checks inside the
Completed in 5282 milliseconds
1
2
3
4
5