Home
last modified time | relevance | path

Searched refs:stable (Results 1 – 25 of 811) sorted by relevance

12345678910>>...33

/external/icu/tools/icu4c_srcgen/doc_patches/patches/unicode/
Dulocdata.h.patch16 -/** Forward declaration of the ULocaleData structure. @stable ICU 3.6 */
19 -/** A locale data object. @stable ICU 3.6 */
25 - * @stable ICU 3.4
28 - /** Basic set @stable ICU 3.4 */
30 - /** Auxiliary set @stable ICU 3.4 */
32 - /** Index Character set @stable ICU 4.8 */
34 - /** Punctuation set @stable ICU 51 */
46 - * @stable ICU 3.4
49 - /** Quotation start @stable ICU 3.4 */
51 - /** Quotation end @stable ICU 3.4 */
[all …]
Dutext.h.patch46 - * @stable ICU 3.4
60 - * @stable ICU 3.4
77 - * @stable ICU 3.6
93 - * @stable ICU 3.8
135 - * @stable ICU 3.4
140 - * @stable ICU 3.4
147 - * @stable ICU 3.4
154 - * @stable ICU 3.4
160 - * @stable ICU 3.4
168 - * @stable ICU 3.6
[all …]
/external/javassist/src/test/javassist/compiler/
DCompTest.java83 jv.gen.recordVariable("I", "i0", 0, jv.stable); in testRecordLocalVar()
84 isRightDecl((Declarator)jv.stable.get("i0"), TokenId.INT, 0, null); in testRecordLocalVar()
85 jv.gen.recordVariable("[I", "i1", 1, jv.stable); in testRecordLocalVar()
86 isRightDecl((Declarator)jv.stable.get("i1"), TokenId.INT, 1, null); in testRecordLocalVar()
87 jv.gen.recordVariable("[[D", "i2", 2, jv.stable); in testRecordLocalVar()
88 isRightDecl((Declarator)jv.stable.get("i2"), TokenId.DOUBLE, 2, null); in testRecordLocalVar()
89 jv.gen.recordVariable("Ljava/lang/String;", "i3", 4, jv.stable); in testRecordLocalVar()
90 isRightDecl((Declarator)jv.stable.get("i3"), TokenId.CLASS, 0, in testRecordLocalVar()
92 jv.gen.recordVariable("[LTest;", "i4", 5, jv.stable); in testRecordLocalVar()
93 isRightDecl((Declarator)jv.stable.get("i4"), TokenId.CLASS, 1, in testRecordLocalVar()
[all …]
/external/mtools/debian/
Dchangelog1 mtools (4.0.26) stable; urgency=low
6 mtools (4.0.25) stable; urgency=low
10 mtools (4.0.24) stable; urgency=low
16 mtools (4.0.23) stable; urgency=low
23 mtools (4.0.22) stable; urgency=low
28 mtools (4.0.21) stable; urgency=low
37 mtools (4.0.20) stable; urgency=low
53 mtools (4.0.19) stable; urgency=low
66 mtools (4.0.18) stable; urgency=low
78 mtools (4.0.17) stable; urgency=low
[all …]
/external/boringssl/src/crypto/asn1/
Da_strnid.c69 static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
224 if (!stable) in ASN1_STRING_TABLE_get()
226 sk_ASN1_STRING_TABLE_sort(stable); in ASN1_STRING_TABLE_get()
227 found = sk_ASN1_STRING_TABLE_find(stable, &idx, &fnd); in ASN1_STRING_TABLE_get()
230 return sk_ASN1_STRING_TABLE_value(stable, idx); in ASN1_STRING_TABLE_get()
240 if (!stable) in ASN1_STRING_TABLE_add()
241 stable = sk_ASN1_STRING_TABLE_new(sk_table_cmp); in ASN1_STRING_TABLE_add()
242 if (!stable) { in ASN1_STRING_TABLE_add()
264 sk_ASN1_STRING_TABLE_push(stable, tmp); in ASN1_STRING_TABLE_add()
271 tmp = stable; in ASN1_STRING_TABLE_cleanup()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Da_strnid.c69 static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
224 if (!stable) in ASN1_STRING_TABLE_get()
226 sk_ASN1_STRING_TABLE_sort(stable); in ASN1_STRING_TABLE_get()
227 found = sk_ASN1_STRING_TABLE_find(stable, &idx, &fnd); in ASN1_STRING_TABLE_get()
230 return sk_ASN1_STRING_TABLE_value(stable, idx); in ASN1_STRING_TABLE_get()
240 if (!stable) in ASN1_STRING_TABLE_add()
241 stable = sk_ASN1_STRING_TABLE_new(sk_table_cmp); in ASN1_STRING_TABLE_add()
242 if (!stable) { in ASN1_STRING_TABLE_add()
264 sk_ASN1_STRING_TABLE_push(stable, tmp); in ASN1_STRING_TABLE_add()
271 tmp = stable; in ASN1_STRING_TABLE_cleanup()
[all …]
/external/rust/crates/rustversion/tests/
Dtest_eval.rs2 stable,
3 stable(1.34),
4 stable(1.34.0),
13 all(stable, beta, nightly),
/external/grpc-grpc/templates/
Dpackage.xml.template212 <release>stable</release>
213 <api>stable</api>
228 <release>stable</release>
229 <api>stable</api>
243 <release>stable</release>
244 <api>stable</api>
258 <release>stable</release>
259 <api>stable</api>
273 <release>stable</release>
274 <api>stable</api>
[all …]
/external/libwebsockets/READMEs/
DREADME.release-policy.md10 The stable releases go on to a branch like v4.0-stable as described below, over
13 into your planning that you will need to follow v4.0-stable in order to stay on
16 And we only backport fixes to the last stable release, although we will make
57 to be working, it's copied out into a versioned stable branch, like `v3.0-stable`.
59 ![stable branches are copied from master](../doc-assets/lws-relpol-2.svg)
72 that was copied to form the last -stable branch.
74 In that case, the patch may be backported to the last stable branch to also fix
83 When new stable releases are made, the soname is bumped reflecting the API is
86 ![backports from master to stable](../doc-assets/lws-relpol-3.svg)
96 Periodically fix patches pile up on the -stable branch and are tagged out as
[all …]
/external/javassist/src/main/javassist/compiler/
DJavac.java47 SymbolTable stable; field in Javac
75 stable = new SymbolTable(); in Javac()
98 ASTList mem = p.parseMember1(stable); in compile()
156 md = p.parseMethod2(stable, md); in compileMethod()
218 SymbolTable stb = new SymbolTable(stable); in compileBody()
290 va.index(i), stable); in recordLocalVariables() local
319 index, stable); in recordParamNames() local
339 return gen.recordParams(params, isStatic, "$", "$args", "$$", stable); in recordParams()
368 use0, varNo, target, stable); in recordParams()
403 (useResultVar ? resultVarName : null), stable); in recordReturnType()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceTableAccess.java45 ICUResourceBundle stable = table; in getTableString() local
47 stable = table.findWithFallback(subtableName); in getTableString()
49 if (stable != null) { in getTableString()
50 result = stable.findStringWithFallback(item); in getTableString()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceTableAccess.java43 ICUResourceBundle stable = table; in getTableString() local
45 stable = table.findWithFallback(subtableName); in getTableString()
47 if (stable != null) { in getTableString()
48 result = stable.findStringWithFallback(item); in getTableString()
/external/wycheproof/
DBUILD23 # plus a BouncyCastleAllTests alias for latest stable.
25 # To test latest stable:
53 # plus a SpongyCastleAllTests alias for latest stable.
55 # To test latest stable:
76 # plus a BouncyCastleTest alias for latest stable.
78 # To test latest stable:
105 # plus a SpongyCastleTest alias for latest stable.
107 # To test latest stable:
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Darithmetic.cc118 bool stable, bool tie_low) { in CreateMinMaxComputation() argument
133 if (stable) { in CreateMinMaxComputation()
144 bool stable, bool tie_low) { in ArgMinMax() argument
163 is_min, stable, tie_low); in ArgMinMax()
220 XlaOp ArgMax(XlaOp input, PrimitiveType output_type, int axis, bool stable, in ArgMax() argument
222 return ArgMinMax(input, output_type, axis, /*is_min=*/false, stable, tie_low); in ArgMax()
225 XlaOp ArgMin(XlaOp input, PrimitiveType output_type, int axis, bool stable, in ArgMin() argument
227 return ArgMinMax(input, output_type, axis, /*is_min=*/true, stable, tie_low); in ArgMin()
/external/libevent/
DMETADATA10 …github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gz"
12 version: "release-2.1.12-stable"
/external/mesa3d/docs/
Dsubmittingpatches.rst103 ``Fixes:``, ``Cc: mesa-stable`` and/or other) to the commit messages.
123 The stable tag
126 If you want a commit to be applied to a stable branch, you should add an
137 Cc: mesa-stable
138 Cc: 20.0 <mesa-stable>
139 CC: 20.0 19.3 <mesa-stable>
141 Using the CC tag **should** include the stable branches you want to
143 to all active stable branches.
273 Nominating a commit for a stable branch
276 There are several ways to nominate a patch for inclusion in the stable
[all …]
/external/toolchain-utils/llvm_tools/
Dget_llvm_hash.py154 def GetGoogle3LLVMVersion(stable): argument
165 subdir = 'stable' if stable else 'llvm_unstable'
232 version = GetGoogle3LLVMVersion(stable=svn_option == 'google3')
287 return self.GetLLVMHash(GetGoogle3LLVMVersion(stable=True))
291 return self.GetLLVMHash(GetGoogle3LLVMVersion(stable=False))
/external/rust/crates/rustversion/tests/ui/
Dbad-version.rs1 #[rustversion::stable(nightly)]
4 #[rustversion::any(stable(nightly))]
Dbad-bound.rs1 #[rustversion::since(stable)]
4 #[rustversion::any(since(stable))]
Dbad-date.rs1 #[rustversion::nightly(stable)]
4 #[rustversion::any(nightly(stable))]
Dbad-date.stderr4 1 | #[rustversion::nightly(stable)]
10 4 | #[rustversion::any(nightly(stable))]
Dbad-version.stderr4 1 | #[rustversion::stable(nightly)]
10 4 | #[rustversion::any(stable(nightly))]
/external/eigen/doc/
DB01_Experimental.dox9 With the 2.0 release, Eigen's API is, to a large extent, stable. However, we wish to retain the fre…
11 Our goal is that for the 2.1 release (expected in July 2009) most of these parts become API-stable
13 …to reach it, but at the same time we're being serious about not calling Eigen API-stable too early.
27 \li Geometry (this one should be mostly stable, but it's a little too early to make a formal guaran…
42 …se and that this is where most of their API comes from -- so in practice most of the API is stable.
/external/autotest/server/site_tests/tast/
Dcontrol.wificell-perf-stable6 NAME = 'tast.wificell-perf-stable'
13 Run the stable Tast tests which measure WiFi performance.
18 * "wificell_unstable": the test is unstable or yet to be verified as stable.
Dcontrol.wificell-func-stable6 NAME = 'tast.wificell-func-stable'
13 Run the stable Tast tests for basic WiFi functions on suite:wifi_matfunc.
18 * "wificell_unstable": the test is unstable or yet to be verified as stable.

12345678910>>...33