Home
last modified time | relevance | path

Searched +full:test +full:- +full:nostd (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/CodeGenCXX/
Dcfi-blacklist.cpp1 …cc1 -triple %itanium_abi_triple -fvisibility hidden -fms-extensions -fsanitize=cfi-vcall -emit-llv…
3-triple %itanium_abi_triple -fvisibility hidden -fms-extensions -fsanitize=cfi-vcall -fsanitize-bl…
18 // NOBL: llvm.type.test
19 // NOSTD: llvm.type.test
21 s1->f(); in s1f()
25 // NOBL: llvm.type.test
26 // NOSTD-NOT: llvm.type.test
28 s2->f(); in s2f()
Dlto-visibility-inference.cpp1 …cc1 -flto -triple x86_64-unknown-linux -std=c++11 -fms-extensions -fvisibility hidden -fwhole-prog…
2-flto -triple x86_64-pc-windows-msvc -std=c++11 -fms-extensions -fwhole-program-vtables -emit-llvm…
3-flto -triple x86_64-pc-windows-msvc -std=c++11 -fms-extensions -fwhole-program-vtables -flto-visi…
25 struct __declspec(uuid("00000000-0000-0000-0000-000000000000")) C6 {
70 // ITANIUM: type.test{{.*}}!"_ZTS2C1" in f()
71 // MS: type.test{{.*}}!"?AUC1@@" in f()
72 c1->f(); in f()
73 // ITANIUM-NOT: type.test{{.*}}!"_ZTS2C2" in f()
74 // MS: type.test{{.*}}!"?AUC2@@" in f()
75 c2->f(); in f()
[all …]
/external/grpc-grpc/src/cpp/ext/otel/
Dkey_value_iterable.h9 // http://www.apache.org/licenses/LICENSE-2.0
33 #include "opentelemetry/nostd/function_ref.h"
34 #include "opentelemetry/nostd/string_view.h"
41 inline opentelemetry::nostd::string_view AbslStrViewToOpenTelemetryStrView( in AbslStrViewToOpenTelemetryStrView()
43 return opentelemetry::nostd::string_view(str.data(), str.size()); in AbslStrViewToOpenTelemetryStrView()
69 bool ForEachKeyValue(opentelemetry::nostd::function_ref< in ForEachKeyValue()
70 bool(opentelemetry::nostd::string_view, in ForEachKeyValue()
74 !active_plugin_options_view_->ForEach( in ForEachKeyValue()
78 return plugin_option.labels_injector()->AddOptionalLabels( in ForEachKeyValue()
87 plugin_option_injected_iterable->ResetIteratorPosition(); in ForEachKeyValue()
[all …]
Dotel_plugin.cc9 // http://www.apache.org/licenses/LICENSE-2.0
30 #include "opentelemetry/nostd/shared_ptr.h"
31 #include "opentelemetry/nostd/unique_ptr.h"
32 #include "opentelemetry/nostd/variant.h"
104 bool ForEachKeyValue(opentelemetry::nostd::function_ref< in ForEachKeyValue()
105 bool(opentelemetry::nostd::string_view, in ForEachKeyValue()
119 if (!optional_labels_bits_.test(i)) { in ForEachKeyValue()
251 for (const auto& handle : key->metrics()) { in CallbackMetricReporter()
258 ot_plugin_->instruments_data_.at(handle.index).instrument); in CallbackMetricReporter()
259 callback_gauge_state->caches[key].clear(); in CallbackMetricReporter()
[all …]
/external/avb/rust/
DAndroid.bp7 // http://www.apache.org/licenses/LICENSE-2.0
17 // The auto-generated wrappers are Rust unsafe and somewhat difficult to work
19 // a safe higher-level Rust API.
33 "--constified-enum-module=AvbDescriptorTag",
34 "--bitfield-enum=Avb.*Flags",
35 "--default-enum-style rust",
36 "--with-derive-default",
37 "--with-derive-custom=Avb.*Descriptor=FromZeroes,FromBytes",
38 "--with-derive-custom=AvbCertPermanentAttributes=FromZeroes,FromBytes,AsBytes",
39 "--with-derive-custom=AvbCertCertificate.*=FromZeroes,FromBytes,AsBytes",
[all …]
/external/rust/crates/ahash/.github/workflows/
Drust.yml7 runs-on: ubuntu-latest
9 - uses: actions/checkout@v4
10 - name: Install latest stable
11 uses: dtolnay/rust-toolchain@master
15 - name: check nostd
16 run: cargo check --no-default-features
17 - name: test nostd
18 run: cargo test --no-default-features
19 - name: check constrandom
20 run: cargo check --no-default-features --features compile-time-rng
[all …]
/external/grpc-grpc/tools/distrib/
Dfix_build_deps.py9 # http://www.apache.org/licenses/LICENSE-2.0
102 "opentelemetry/nostd/function_ref.h": "otel/api",
103 "opentelemetry/nostd/string_view.h": "otel/api",
109 "opentelemetry/nostd/shared_ptr.h": "otel/api",
110 "opentelemetry/nostd/unique_ptr.h": "otel/api",
133 "opencensus-stats-stackdriver_exporter"
136 "opencensus-trace-stackdriver_exporter"
138 "opencensus/trace/context_util.h": "opencensus-trace-context_util",
140 "opencensus-trace-propagation"
142 "opencensus/tags/context_util.h": "opencensus-tags-context_util",
[all …]
/external/rust/crates/indexmap/
DCargo.toml.orig7 license = "Apache-2.0 OR MIT"
10 categories = ["data-structures", "no-std"]
11 rust-version = "1.56"
16 [build-dependencies]
20 arbitrary = { version = "1.0", optional = true, default-features = false }
21 quickcheck = { version = "1.0", optional = true, default-features = false }
22 serde = { version = "1.0", optional = true, default-features = false }
27 rustc-rayon = { version = "0.4", optional = true }
31 default-features = false
34 [dev-dependencies]
[all …]
/external/rust/crates/indexmap/.github/workflows/
Dci.yml3 branches: [ master, indexmap-1.x ]
5 branches: [ master, indexmap-1.x ]
15 runs-on: ubuntu-latest
19 - rust: 1.56.0 # MSRV
21 - rust: stable
23 - rust: stable
25 - rust: stable
27 - rust: stable
28 features: rustc-rayon
29 - rust: stable
[all …]
/external/grpc-grpc/test/cpp/ext/otel/
Dotel_plugin_test.cc9 // http://www.apache.org/licenses/LICENSE-2.0
31 #include "opentelemetry/nostd/variant.h"
42 #include "test/core/util/test_config.h"
43 #include "test/cpp/end2end/test_service_impl.h"
44 #include "test/cpp/ext/otel/otel_test_library.h"
159 data[i - 1].attributes.GetAttributes()))(label_map)) {
161 prev_value = opentelemetry::nostd::get<decltype(prev_value)>(
162 opentelemetry::nostd::get<
164 data[i - 1].point_data)
166 prev_index = i - 1;
[all …]
/external/rust/crates/winnow/examples/ndjson/
Dexample.ndjson1-artifact","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/crates.io-index…
2-script-executed","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/crates.i…
3-artifact","package_id":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","ma…
4-artifact","package_id":"libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)","ma…
5-artifact","package_id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-inde…
6-artifact","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/crates.io-index…
7-script-executed","package_id":"libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-inde…
8-script-executed","package_id":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-inde…
9-artifact","package_id":"syn 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)","man…
10-artifact","package_id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","ma…
[all …]