Home
last modified time | relevance | path

Searched refs:feature (Results 1 – 25 of 827) sorted by relevance

12345678910>>...34

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBType.i11 %feature("docstring",
63 %feature("docstring",
113 %feature("docstring",
216 %feature("docstring",
238 %feature("docstring",
252 %feature("docstring",
264 %feature("docstring",
278 %feature("docstring",
292 %feature("docstring",
307 %feature("docstring",
[all …]
H A DSBExpressionOptions.i11 %feature("docstring",
30 …%feature("docstring", "Sets whether to coerce the expression result to ObjC id type after evaluati…
38 %feature("docstring", "Sets whether to unwind the expression stack on error.") SetUnwindOnError;
46 …%feature("docstring", "Sets whether to ignore breakpoint hits while running expressions.") SetUnwi…
54 …%feature("docstring", "Sets whether to cast the expression result to its dynamic type.") SetFetchD…
62 …%feature("docstring", "Sets the timeout in microseconds to run the expression for. If try all thre…
69 …%feature("docstring", "Sets the timeout in microseconds to run the expression on one thread before…
76 …%feature("docstring", "Sets whether to run all threads if the expression does not complete on one …
83 …%feature("docstring", "Sets whether to stop other threads at all while running expressions. If fa…
90 …%feature("docstring", "Sets whether to abort expression evaluation if an exception is thrown while…
[all …]
H A DSBThread.i11 %feature("docstring",
85 %feature("docstring", "
91 %feature("docstring", "
114 %feature("autodoc", "
121 %feature("autodoc", "
129 %feature("autodoc", "
138 %feature("autodoc", "
149 %feature("autodoc", "
164 %feature("autodoc", "
171 %feature("autodoc", "
[all …]
H A DSBProcess.i11 %feature("docstring",
74 %feature("autodoc", "
80 %feature("autodoc", "
87 %feature("autodoc", "
106 %feature("docstring", "
114 %feature("docstring",
134 %feature("autodoc", "
142 %feature("autodoc", "
147 %feature("autodoc", "
152 %feature("autodoc", "
[all …]
H A DSBTarget.i11 %feature("docstring",
100 %feature("docstring", "
111 %feature("docstring", "
127 %feature("docstring", "
208 %feature("docstring", "
234 %feature("docstring", "
261 %feature("docstring", "
283 %feature("docstring", "
309 %feature("docstring", "
338 %feature("docstring", "
[all …]
H A DSBBlock.i11 %feature("docstring",
24 %feature("docstring",
35 %feature("docstring", "
41 %feature("docstring", "
47 %feature("docstring", "
53 %feature("docstring", "
59 %feature("docstring", "Get the parent block.") GetParent;
63 …%feature("docstring", "Get the inlined block that is or contains this block.") GetContainingInline…
67 %feature("docstring", "Get the sibling block for this block.") GetSibling;
71 %feature("docstring", "Get the first child block.") GetFirstChild;
H A DSBFrame.i11 %feature("docstring",
68 %feature("docstring", "
107 %feature("docstring", "
114 %feature("docstring", "
137 %feature("docstring", "
144 %feature("docstring", "
154 %feature("docstring", "
164 %feature("docstring", "
179 %feature("docstring", "
213 %feature("docstring", "
[all …]
H A DSBBreakpointLocation.i11 %feature("docstring",
60 %feature("docstring", "
66 %feature("docstring", "
75 %feature("docstring", "
81 %feature("docstring", "
89 %feature("docstring", "
H A DSBFile.i11 %feature("docstring",
21 %feature("docstring", "
26 %feature("docstring", "initialize a SBFile from a python file object");
69 %feature("autodoc", "Read(buffer) -> SBError, bytes_read") Read;
72 %feature("autodoc", "Write(buffer) -> SBError, written_read") Write;
83 %feature("docstring", "
H A DSBStream.i13 %feature("docstring",
52 %feature("docstring", "
58 %feature("docstring", "
78 %feature("autodoc", "DEPRECATED, use RedirectToFile");
88 %feature("docstring", "
/openbsd-src/gnu/usr.bin/perl/regen/
H A Dfeature.pl5 # lib/feature.pm
6 # feature.h
25 # (feature name) => (internal name, used in %^H and macro names)
26 my %feature = (
51 # NOTE: If a feature is ever enabled in a non-contiguous range of Perl
76 all => [ sort keys %feature ],
112 if (keys %feature > 32) {
118 for my $feature (sort keys %feature) {
119 $feature_bits{$feature}
[all...]
/openbsd-src/gnu/usr.bin/perl/t/lib/feature/
H A Dbundle1 Check feature bundles.
4 # Standard feature bundle
5 use feature ":5.10";
10 # Standard feature bundle, no 5.11
11 use feature ":5.10";
16 # Standard feature bundle, 5.11
17 use feature ":5.11";
22 # Standard feature bundle, 5.11
23 use feature ":5.11";
30 use feature ":5.10.0";
[all …]
H A Dapi4 # NAME test feature enabled by bundle
5 use feature ();
7 print "default: ", join(" ", feature::features_enabled(0)), "\n";
8 print "unicode_strings ", feature::feature_enabled("unicode_strings", 0) ? "is" : "is not",
10 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
14 print "5.12: ", join(" ", feature::features_enabled(0)), "\n";
15 print "unicode_strings ", feature::feature_enabled("unicode_strings", 0) ? "is" : "is not",
17 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
28 no feature "indirect";
30 print "no feature indirect: ", join(" ", feature::features_enabled(0)), "\n";
[all …]
H A Dbareword_filehandles1 Test no feature bareword_filehandles
99 use feature "bareword_filehandles";
124 no feature "bareword_filehandles", "indirect";
142 no feature "bareword_filehandles";
155 Bareword filehandle "FOO" not allowed under 'no feature "bareword_filehandles"' at - line 9.
156 Bareword filehandle "FOO" not allowed under 'no feature "bareword_filehandles"' at - line 10.
157 Bareword filehandle "FOO" not allowed under 'no feature "bareword_filehandles"' at - line 11.
158 Bareword filehandle "FOO" not allowed under 'no feature "bareword_filehandles"' at - line 12.
163 use feature "say";
168 no feature "bareword_filehandle
[all...]
H A Dswitch39 use feature 'switch'; no warnings 'deprecated';
45 use feature 'switch'; no warnings 'deprecated';
51 use feature 'switch'; no warnings 'deprecated';
57 use feature 'switch';
64 { use feature 'switch';
75 { use feature 'switch';
86 { use feature 'switch';
97 { use feature 'switch';
105 # C<no feature 'switch'> should work
107 use feature 'switch';
[all …]
H A Dindirect1 Test no feature indirect.
4 # NAME feature indirect
5 use feature 'say';
17 no feature "indirect";
31 use feature 'say';
44 use feature "indirect";
54 no feature "indirect";
67 use feature 'say';
80 use feature "indirect";
90 no feature "indirect";
[all …]
H A Dsay16 use feature "say";
23 use feature "say";
28 # feature out of scope; should be a syntax error.
30 { use feature 'say'; }
38 # 'no feature' should work
40 use feature 'say';
42 no feature;
50 # 'no feature "say"' should work too
52 use feature 'say';
54 no feature 'say';
H A Dbits5 use feature 'say';
14 use feature 'say';
17 no feature 'say';
24 # NAME check deleting entries (via feature.pm) clears the bits
25 use feature 'say';
27 no feature 'say';
34 # NAME check deleting entries (bypass feature.pm) clears the bits
35 use feature 'say';
/openbsd-src/gnu/usr.bin/perl/lib/
H A Dfeature.pm3 # This file is built by regen/feature.pl.
6 package feature; package
9 our %feature = (
89 # - think about versioned features (use feature switch => 2)
95 feature - Perl pragma to enable new features
99 use feature qw(fc say);
101 # Without the "use feature" above, this code would not be able to find
108 use feature ':5.36';
111 # implicitly loads :5.36 feature bundle
119 constructs, can be enabled by C<use feature 'fo
[all...]
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/show-used-features/
H A Dmixed.txt2 // REQUIRES: my-require-feature-2 || my-require-feature-3, my-{{[require]*}}-feature-4
3 // UNSUPPORTED: my-unsupported-feature-2, my-unsupported-feature-3 && !my-{{[unsupported]*}}-featur…
4 // XFAIL: my-xfail-feature-2, my-xfail-feature-3, my-{{[xfail]*}}-feature-4
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-if-else/
H A Dtest.txt6 # RUN: %if feature %{ echo "test-1" %}
21 # RUN: echo test-%if feature %{ 3 %} %else %{ fail %}-test
22 # RUN: echo test-%if feature %{ 4 4 %} %else %{ fail %}-test
30 # RUN: %if feature \
42 # RUN: echo "test%if feature %{%} %else %{%}-7"
48 # RUN: echo %%if feature %{ echo "test-8" %}
49 # CHECK-NEXT: {{^.*'RUN}}: at line [[#@LINE-1]]'; echo %if feature %{ echo "test-8" %}
53 # RUN: echo %if feature %{ %if feature %{ %if nofeature %{"fail"%} %else %{"test-9"%} %} %}
59 # RUN: echo %if feature && !nofeature %{ "test-10" %}
60 # RUN: echo %if feature && nofeature %{ "fail" %} %else %{ "test-11" %}
[all …]
/openbsd-src/gnu/llvm/lldb/tools/intel-features/
H A DREADME.txt27 For each hardware feature, separate cli commands have been developed that are
29 in feature specific folders.
31 For details regarding cli commands of each feature, please refer to these
32 feature specific wrappers.
41 the feature specific source files (residing in feature specific folders).
44 feature while building lldbIntelFeatures library. This is done by flags described
48 feature (inside intel-mpx folder). This flag defaults to "ON" meaning
49 the feature is excluded while building lldbIntelFeatures library.
51 Please refer to README files in feature specific folders to know about additional
52 flags that need to be set in order to build that feature successfully.
[all …]
/openbsd-src/gnu/usr.bin/perl/t/lib/croak/
H A Dclass4 use feature 'class';
12 use feature 'class';
20 use feature 'class';
28 use feature 'class';
36 use feature 'class';
43 use feature 'class';
50 use feature 'class';
56 use feature 'class';
62 use feature 'class';
71 use feature 'clas
[all...]
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_kms.c211 fw_info->feature = adev->vce.fb_version; in amdgpu_firmware_info()
215 fw_info->feature = 0; in amdgpu_firmware_info()
219 fw_info->feature = 0; in amdgpu_firmware_info()
223 fw_info->feature = 0; in amdgpu_firmware_info()
227 fw_info->feature = adev->gfx.me_feature_version; in amdgpu_firmware_info()
231 fw_info->feature = adev->gfx.pfp_feature_version; in amdgpu_firmware_info()
235 fw_info->feature = adev->gfx.ce_feature_version; in amdgpu_firmware_info()
239 fw_info->feature = adev->gfx.rlc_feature_version; in amdgpu_firmware_info()
243 fw_info->feature = adev->gfx.rlc_srlc_feature_version; in amdgpu_firmware_info()
247 fw_info->feature in amdgpu_firmware_info()
[all...]
/openbsd-src/sys/arch/i386/stand/libsa/
H A Dsmpprobe.c46 u_int8_t feature[5]; member
134 mp->feature[0], mp->feature[1], mp->feature[2], in smpprobe()
135 mp->feature[3], mp->feature[4]); in smpprobe()

12345678910>>...34