Home
last modified time | relevance | path

Searched refs:bundle (Results 1 - 25 of 224) sorted by relevance

123456789

/third_party/curl/lib/
H A Dconncache.c62 static void bundle_destroy(struct connectbundle *bundle) in bundle_destroy() argument
64 free(bundle); in bundle_destroy()
67 /* Add a connection to a bundle */
68 static void bundle_add_conn(struct connectbundle *bundle, in bundle_add_conn() argument
71 Curl_llist_insert_next(&bundle->conn_list, bundle->conn_list.tail, conn, in bundle_add_conn()
73 conn->bundle = bundle; in bundle_add_conn()
74 bundle->num_connections++; in bundle_add_conn()
77 /* Remove a connection from a bundle */
78 bundle_remove_conn(struct connectbundle *bundle, struct connectdata *conn) bundle_remove_conn() argument
173 struct connectbundle *bundle = NULL; Curl_conncache_find_bundle() local
184 conncache_add_bundle(struct conncache *connc, char *key, struct connectbundle *bundle) conncache_add_bundle() argument
191 conncache_remove_bundle(struct conncache *connc, struct connectbundle *bundle) conncache_remove_bundle() argument
218 struct connectbundle *bundle = NULL; Curl_conncache_add_conn() local
266 struct connectbundle *bundle = conn->bundle; Curl_conncache_remove_conn() local
320 struct connectbundle *bundle; Curl_conncache_foreach() local
353 struct connectbundle *bundle; conncache_find_first_connection() local
419 Curl_conncache_extract_bundle(struct Curl_easy *data, struct connectbundle *bundle) Curl_conncache_extract_bundle() argument
476 struct connectbundle *bundle; Curl_conncache_extract_oldest() local
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
H A DRBUntranslatedPanel.java22 Bundle bundle; field in RBUntranslatedPanel
46 if (bundle == null) { in setBundle()
47 bundle = b; in setBundle()
49 } else if (bundle != b) { in setBundle()
50 bundle = b; in setBundle()
56 bundle = null; in setManager()
67 if (rbm != null || bundle != null) { in removeElements()
69 bundle = null; in removeElements()
76 if (bundle == null) return; in markSelectedResourceAsTranslated()
89 if (bundle in deleteSelectedResource()
258 Bundle bundle; global() field in UntranslatedItemsTableModel
260 UntranslatedItemsTableModel(Bundle bundle) UntranslatedItemsTableModel() argument
264 setBundle(Bundle bundle) setBundle() argument
[all...]
H A DRBStatisticsPanel.java22 Bundle bundle; field in RBStatisticsPanel
48 // Components - bundle manager
77 if (bundle == null) { in setBundle()
78 bundle = b; in setBundle()
80 } else if (bundle != b) { in setBundle()
81 bundle = b; in setBundle()
87 bundle = null; in setManager()
98 if (rbm != null || bundle != null) { in removeElements()
100 bundle = null; in removeElements()
107 if (bundle ! in initComponents()
[all...]
H A DRBGroupPanel.java23 Bundle bundle; field in RBGroupPanel
53 if (bundle == null) { in setBundle()
54 bundle = b; in setBundle()
56 } else if (bundle != b) { in setBundle()
57 bundle = b; in setBundle()
63 bundle = null; in setManager()
74 if (rbm != null || bundle != null) { in removeElements()
76 bundle = null; in removeElements()
83 if (bundle == null) return; in markSelectedResourceAsTranslated()
96 if (bundle in deleteSelectedResource()
445 Bundle bundle; global() field in GroupComboBoxModel
447 GroupComboBoxModel(Bundle bundle) GroupComboBoxModel() argument
[all...]
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dreslist.h73 /* Resource bundle root table */
127 void bundle_write_java(struct SRBRoot *bundle, const char *outputDir, const char* outputEnc, char *writtenFilename,
132 void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc, const char* rbname,
139 * for use in non-error cases when no resource is to be added to the bundle.
148 TableResource *table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
150 ArrayResource *array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
152 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const char16_t *value, int32_t len, const struct UString* comment, UErrorCode *status);
154 struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, char16_t *value, int32_t len, const struct UString* comment, UErrorCode *status);
156 IntVectorResource *intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
158 struct SResource *int_open(struct SRBRoot *bundle, cons
245 ContainerResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, UErrorCode &errorCode) ContainerResource() argument
269 TableResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) TableResource() argument
289 ArrayResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) ArrayResource() argument
310 PseudoListResource(SRBRoot *bundle, UErrorCode &errorCode) PseudoListResource() argument
341 StringResource(SRBRoot *bundle, const char *tag, const char16_t *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringResource() argument
346 StringResource(SRBRoot *bundle, const icu::UnicodeString &value, UErrorCode &errorCode) StringResource() argument
380 AliasResource(SRBRoot *bundle, const char *tag, const char16_t *value, int32_t len, const UString* comment, UErrorCode &errorCode) AliasResource() argument
[all...]
H A Dreslist.cpp53 * Align binary data at a 16-byte offset from the start of the resource bundle,
60 // and it makes no sense to move it to the pool bundle.
62 // the smaller the savings, and the smaller the pool bundle.
63 // We trade some total size reduction to reduce the pool bundle a bit,
65 // removing bundle files without rebuilding the pool bundle.
91 * for use in non-error cases when no resource is to be added to the bundle.
157 SResource::SResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, in SResource() argument
160 fKey(bundle != nullptr ? bundle in SResource()
271 StringBaseResource(SRBRoot *bundle, const char *tag, int8_t type, const char16_t *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringBaseResource() argument
288 StringBaseResource(SRBRoot *bundle, int8_t type, const icu::UnicodeString &value, UErrorCode &errorCode) StringBaseResource() argument
330 IntResource(SRBRoot *bundle, const char *tag, int32_t value, const UString* comment, UErrorCode &errorCode) IntResource() argument
340 IntVectorResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) IntVectorResource() argument
372 BinaryResource(SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const UString* comment, UErrorCode &errorCode) BinaryResource() argument
411 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
451 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
459 preflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) preflightStrings() argument
543 writeAllRes16(SRBRoot *bundle) writeAllRes16() argument
551 handleWrite16(SRBRoot *bundle) handleWrite16() argument
571 handleWrite16(SRBRoot *bundle) handleWrite16() argument
614 write16(SRBRoot *bundle) write16() argument
1096 table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) table_open() argument
1101 array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) array_open() argument
1106 string_open(struct SRBRoot *bundle, const char *tag, const char16_t *value, int32_t len, const struct UString* comment, UErrorCode *status) string_open() argument
1112 alias_open(struct SRBRoot *bundle, const char *tag, char16_t *value, int32_t len, const struct UString* comment, UErrorCode *status) alias_open() argument
1118 intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) intvector_open() argument
1124 int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) int_open() argument
1129 bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status) bin_open() argument
1313 const struct SRBRoot *bundle=(const struct SRBRoot *)context; compareKeySuffixes() local
1751 applyFilter( const PathFilter& filter, ResKeyPath& path, const SRBRoot* bundle) applyFilter() argument
[all...]
/third_party/icu/icu4c/source/tools/genrb/
H A Dreslist.h73 /* Resource bundle root table */
127 void bundle_write_java(struct SRBRoot *bundle, const char *outputDir, const char* outputEnc, char *writtenFilename,
132 void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc, const char* rbname,
139 * for use in non-error cases when no resource is to be added to the bundle.
148 TableResource *table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
150 ArrayResource *array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
152 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
154 struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
156 IntVectorResource *intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
158 struct SResource *int_open(struct SRBRoot *bundle, cons
245 ContainerResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, UErrorCode &errorCode) ContainerResource() argument
269 TableResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) TableResource() argument
289 ArrayResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) ArrayResource() argument
310 PseudoListResource(SRBRoot *bundle, UErrorCode &errorCode) PseudoListResource() argument
341 StringResource(SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringResource() argument
346 StringResource(SRBRoot *bundle, const icu::UnicodeString &value, UErrorCode &errorCode) StringResource() argument
380 AliasResource(SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) AliasResource() argument
[all...]
H A Dreslist.cpp53 * Align binary data at a 16-byte offset from the start of the resource bundle,
60 // and it makes no sense to move it to the pool bundle.
62 // the smaller the savings, and the smaller the pool bundle.
63 // We trade some total size reduction to reduce the pool bundle a bit,
65 // removing bundle files without rebuilding the pool bundle.
91 * for use in non-error cases when no resource is to be added to the bundle.
157 SResource::SResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, in SResource() argument
160 fKey(bundle != NULL ? bundle in SResource()
271 StringBaseResource(SRBRoot *bundle, const char *tag, int8_t type, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringBaseResource() argument
288 StringBaseResource(SRBRoot *bundle, int8_t type, const icu::UnicodeString &value, UErrorCode &errorCode) StringBaseResource() argument
330 IntResource(SRBRoot *bundle, const char *tag, int32_t value, const UString* comment, UErrorCode &errorCode) IntResource() argument
340 IntVectorResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) IntVectorResource() argument
372 BinaryResource(SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const UString* comment, UErrorCode &errorCode) BinaryResource() argument
411 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
451 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
459 preflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) preflightStrings() argument
543 writeAllRes16(SRBRoot *bundle) writeAllRes16() argument
551 handleWrite16(SRBRoot *bundle) handleWrite16() argument
571 handleWrite16(SRBRoot *bundle) handleWrite16() argument
614 write16(SRBRoot *bundle) write16() argument
1096 table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) table_open() argument
1101 array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) array_open() argument
1106 string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) string_open() argument
1112 alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) alias_open() argument
1118 intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) intvector_open() argument
1124 int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) int_open() argument
1129 bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status) bin_open() argument
1313 const struct SRBRoot *bundle=(const struct SRBRoot *)context; compareKeySuffixes() local
1751 applyFilter( const PathFilter& filter, ResKeyPath& path, const SRBRoot* bundle) applyFilter() argument
[all...]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dreslist.h73 /* Resource bundle root table */
127 void bundle_write_java(struct SRBRoot *bundle, const char *outputDir, const char* outputEnc, char *writtenFilename,
132 void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc, const char* rbname,
139 * for use in non-error cases when no resource is to be added to the bundle.
148 TableResource *table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
150 ArrayResource *array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
152 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
154 struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
156 IntVectorResource *intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
158 struct SResource *int_open(struct SRBRoot *bundle, cons
245 ContainerResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, UErrorCode &errorCode) ContainerResource() argument
269 TableResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) TableResource() argument
289 ArrayResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) ArrayResource() argument
310 PseudoListResource(SRBRoot *bundle, UErrorCode &errorCode) PseudoListResource() argument
341 StringResource(SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringResource() argument
346 StringResource(SRBRoot *bundle, const icu::UnicodeString &value, UErrorCode &errorCode) StringResource() argument
380 AliasResource(SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) AliasResource() argument
[all...]
H A Dreslist.cpp53 * Align binary data at a 16-byte offset from the start of the resource bundle,
60 // and it makes no sense to move it to the pool bundle.
62 // the smaller the savings, and the smaller the pool bundle.
63 // We trade some total size reduction to reduce the pool bundle a bit,
65 // removing bundle files without rebuilding the pool bundle.
91 * for use in non-error cases when no resource is to be added to the bundle.
157 SResource::SResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment, in SResource() argument
160 fKey(bundle != NULL ? bundle in SResource()
271 StringBaseResource(SRBRoot *bundle, const char *tag, int8_t type, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringBaseResource() argument
288 StringBaseResource(SRBRoot *bundle, int8_t type, const icu::UnicodeString &value, UErrorCode &errorCode) StringBaseResource() argument
330 IntResource(SRBRoot *bundle, const char *tag, int32_t value, const UString* comment, UErrorCode &errorCode) IntResource() argument
340 IntVectorResource(SRBRoot *bundle, const char *tag, const UString* comment, UErrorCode &errorCode) IntVectorResource() argument
372 BinaryResource(SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const UString* comment, UErrorCode &errorCode) BinaryResource() argument
411 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
451 handlePreflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) handlePreflightStrings() argument
459 preflightStrings(SRBRoot *bundle, UHashtable *stringSet, UErrorCode &errorCode) preflightStrings() argument
543 writeAllRes16(SRBRoot *bundle) writeAllRes16() argument
551 handleWrite16(SRBRoot *bundle) handleWrite16() argument
571 handleWrite16(SRBRoot *bundle) handleWrite16() argument
614 write16(SRBRoot *bundle) write16() argument
1104 table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) table_open() argument
1109 array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) array_open() argument
1114 string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) string_open() argument
1120 alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) alias_open() argument
1126 intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) intvector_open() argument
1132 int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) int_open() argument
1137 bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status) bin_open() argument
1321 const struct SRBRoot *bundle=(const struct SRBRoot *)context; compareKeySuffixes() local
1759 applyFilter( const PathFilter& filter, ResKeyPath& path, const SRBRoot* bundle) applyFilter() argument
[all...]
/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_ra_pipeline.c30 * of the current bundle. If it is not, it is promoted to a bundle-specific
34 * pipeline (vmul/sadd) lasting the duration of the bundle only. There are two
45 midgard_bundle *bundle, unsigned i, in mir_pipeline_ins()
48 midgard_instruction *ins = bundle->instructions[i]; in mir_pipeline_ins()
51 * created at the start of the bundle and are destroyed at the end. So in mir_pipeline_ins()
55 * 2. The index is not live after the bundle. in mir_pipeline_ins()
59 * creation of the bundle, so the pipeline register can exist. #2 is in mir_pipeline_ins()
73 /* Analyze the bundle for a per-byte read mask */ in mir_pipeline_ins()
75 for (unsigned j = 0; j < bundle in mir_pipeline_ins()
42 mir_pipeline_ins( compiler_context *ctx, midgard_block *block, midgard_bundle *bundle, unsigned i, unsigned pipeline_count) mir_pipeline_ins() argument
[all...]
H A Dmidgard_emit.c422 mir_can_run_ooo(midgard_block *block, midgard_bundle *bundle, in mir_can_run_ooo() argument
426 if (bundle >= (midgard_bundle *) ((char *) block->bundles.data + block->bundles.size)) in mir_can_run_ooo()
430 if (!IS_ALU(bundle->tag) && bundle->tag != TAG_LOAD_STORE_4) in mir_can_run_ooo()
435 for (unsigned i = 0; i < bundle->instruction_count; ++i) { in mir_can_run_ooo()
436 midgard_instruction *ins = bundle->instructions[i]; in mir_can_run_ooo()
449 mir_pack_tex_ooo(midgard_block *block, midgard_bundle *bundle, midgard_instruction *ins) in mir_pack_tex_ooo() argument
454 if (!mir_can_run_ooo(block, bundle + count + 1, ins->dest)) in mir_pack_tex_ooo()
727 midgard_bundle *bundle, in emit_branch()
744 is_tilebuf_wait ? bundle in emit_branch()
724 emit_branch(midgard_instruction *ins, compiler_context *ctx, midgard_block *block, midgard_bundle *bundle, struct util_dynarray *emission) emit_branch() argument
834 emit_alu_bundle(compiler_context *ctx, midgard_block *block, midgard_bundle *bundle, struct util_dynarray *emission, unsigned lookahead) emit_alu_bundle() argument
948 emit_binary_bundle(compiler_context *ctx, midgard_block *block, midgard_bundle *bundle, struct util_dynarray *emission, int next_tag) emit_binary_bundle() argument
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/bundle/
H A Dindex.js7 function toSignedEntity(bundle, artifact) {
8 const { tlogEntries, timestampVerificationData } = bundle.verificationMaterial;
23 signature: signatureContent(bundle, artifact),
24 key: key(bundle),
30 function signatureContent(bundle, artifact) {
31 switch (bundle.content.$case) {
33 return new dsse_1.DSSESignatureContent(bundle.content.dsseEnvelope);
35 return new message_1.MessageSignatureContent(bundle.content.messageSignature, artifact);
39 function key(bundle) {
40 switch (bundle
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DICUResourceBundleTest.java97 UResourceBundle bundle = UResourceBundle.getBundleInstance("ohos.global.icu.impl.data.HolidayBundle", "da_DK"); in TestResourceBundleWrapper()
98 Object o = bundle.getObject("holidays"); in TestResourceBundleWrapper()
105 bundle = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME, "bogus"); in TestResourceBundleWrapper()
106 if(bundle instanceof UResourceBundle && bundle.getULocale().getName().equals("en_US")){ in TestResourceBundleWrapper()
113 bundle = UResourceBundle.getBundleInstance("bogus", "bogus"); in TestResourceBundleWrapper()
114 if(bundle!=null){ in TestResourceBundleWrapper()
125 // this tests tests loading of root bundle when a resource bundle in TestJB3879()
128 UResourceBundle bundle in TestJB3879()
[all...]
H A DICUResourceBundleCollationTest.java89 UResourceBundle bundle =(UResourceBundle) UResourceBundle.getBundleInstance("com/ibm/icu/dev/data/testdata","te_IN"); in TestGetWithFallback()
90 String key = bundle.getStringWithFallback("Keys/collation"); in TestGetWithFallback()
94 String type = bundle.getStringWithFallback("Types/collation/direct"); in TestGetWithFallback()
99 ICUResourceBundle bundle = null; in TestGetWithFallback()
102 bundle = (ICUResourceBundle) UResourceBundle.getBundleInstance( in TestGetWithFallback()
106 if(!bundle.getULocale().getName().equals("de")){ in TestGetWithFallback()
107 errln("did not get the expected bundle"); in TestGetWithFallback()
109 key = bundle.getStringWithFallback("collations/collation/default"); in TestGetWithFallback()
119 bundle = (ICUResourceBundle) UResourceBundle.getBundleInstance(ICUData.ICU_COLLATION_BASE_NAME,"fr_FR"); in TestGetWithFallback()
120 key = bundle in TestGetWithFallback()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUResourceBundleTest.java94 UResourceBundle bundle = UResourceBundle.getBundleInstance("com.ibm.icu.impl.data.HolidayBundle", "da_DK"); in TestResourceBundleWrapper()
95 Object o = bundle.getObject("holidays"); in TestResourceBundleWrapper()
102 bundle = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME, "bogus"); in TestResourceBundleWrapper()
103 if(bundle instanceof UResourceBundle && bundle.getULocale().getName().equals("en_US")){ in TestResourceBundleWrapper()
110 bundle = UResourceBundle.getBundleInstance("bogus", "bogus"); in TestResourceBundleWrapper()
111 if(bundle!=null){ in TestResourceBundleWrapper()
122 // this tests tests loading of root bundle when a resource bundle in TestJB3879()
125 UResourceBundle bundle in TestJB3879()
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBManager.java32 private String baseClass; // The name of the base class of the active resource bundle
89 * This is the standard constructor for RBManager. It is constructed from the root of a resource bundle.
94 * translation is reversed when saving the resource bundle.
95 * @param mainFile The base class file of the resource bundle to be read
387 Bundle bundle = (Bundle)bundles.elementAt(i); in writeToFile()
389 ((bundle.encoding == null || bundle.encoding.equals("")) ? "" : "_" + bundle.encoding) + in writeToFile()
392 bundle.writeContents(fw); in writeToFile()
396 // In case this is a newly created bundle o in writeToFile()
[all...]
H A DRBImporter.java25 * <LI>The class should resolve all conflicts with locale encodings existing in the import files, but not in the active resource bundle.</LI>
26 * <LI>The class should parse resources one at a time and use the importResource() method to insert them into the resource bundle.</LI>
123 Bundle bundle = null; in importResource()
131 // Get the bundle to which we will be adding this resource in importResource()
132 bundle = rbm.getBundle(encoding); in importResource()
133 // Skip this import if the bundle is non-existent (Should have been resolved if wanted) in importResource()
134 if (bundle == null) in importResource()
136 // Find the group in the bundle, Ungrouped if non-existent in importResource()
137 Vector gv = bundle.getGroupsAsVector(); in importResource()
150 bundle in importResource()
182 resolveResource(Bundle bundle, BundleItem item) resolveResource() argument
[all...]
/third_party/icu/icu4c/source/io/
H A Dlocbund.cpp105 u_locbund_clone(const ULocaleBundle *bundle)
114 result->fLocale = (char*) uprv_malloc(strlen(bundle->fLocale) + 1);
120 strcpy(result->fLocale, bundle->fLocale );
125 result->fNumberFormat[styleIdx] = unum_clone(bundle->fNumberFormat[styleIdx], &status);
134 result->fDateFormat = (bundle->fDateFormat == 0 ? 0 :
135 udat_clone(bundle->fDateFormat, &status));
136 result->fTimeFormat = (bundle->fTimeFormat == 0 ? 0 :
137 udat_clone(bundle->fTimeFormat, &status));
143 u_locbund_close(ULocaleBundle *bundle) in u_locbund_close() argument
147 uprv_free(bundle in u_locbund_close()
160 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style) u_locbund_getNumberFormat() argument
[all...]
/third_party/skia/third_party/externals/icu/source/io/
H A Dlocbund.cpp105 u_locbund_clone(const ULocaleBundle *bundle)
114 result->fLocale = (char*) uprv_malloc(strlen(bundle->fLocale) + 1);
120 strcpy(result->fLocale, bundle->fLocale );
125 result->fNumberFormat[styleIdx] = unum_clone(bundle->fNumberFormat[styleIdx], &status);
134 result->fDateFormat = (bundle->fDateFormat == 0 ? 0 :
135 udat_clone(bundle->fDateFormat, &status));
136 result->fTimeFormat = (bundle->fTimeFormat == 0 ? 0 :
137 udat_clone(bundle->fTimeFormat, &status));
143 u_locbund_close(ULocaleBundle *bundle) in u_locbund_close() argument
147 uprv_free(bundle in u_locbund_close()
160 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style) u_locbund_getNumberFormat() argument
[all...]
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DManualGlitchActivity.java171 void configureStreamsFromBundle(Bundle bundle) { in configureStreamsFromBundle() argument
180 configureStreamsFromBundleForApi(bundle); in configureStreamsFromBundle()
182 // Extract parameters from the bundle. in configureStreamsFromBundle()
183 String text = bundle.getString(KEY_IN_PERF, VALUE_PERF_LOW_LATENCY); in configureStreamsFromBundle()
187 text = bundle.getString(KEY_OUT_PERF, VALUE_PERF_LOW_LATENCY); in configureStreamsFromBundle()
191 text = bundle.getString(KEY_IN_SHARING, VALUE_SHARING_EXCLUSIVE); in configureStreamsFromBundle()
194 text = bundle.getString(KEY_OUT_SHARING, VALUE_SHARING_EXCLUSIVE); in configureStreamsFromBundle()
198 int sampleRate = bundle.getInt(KEY_SAMPLE_RATE, VALUE_DEFAULT_SAMPLE_RATE); in configureStreamsFromBundle()
202 float tolerance = bundle.getFloat(KEY_TOLERANCE, DEFAULT_TOLERANCE); in configureStreamsFromBundle()
207 int inChannels = bundle in configureStreamsFromBundle()
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DICUResourceBundleCollationTest.java86 UResourceBundle bundle =(UResourceBundle) UResourceBundle.getBundleInstance("com/ibm/icu/dev/data/testdata","te_IN"); in TestGetWithFallback()
87 String key = bundle.getStringWithFallback("Keys/collation"); in TestGetWithFallback()
91 String type = bundle.getStringWithFallback("Types/collation/direct"); in TestGetWithFallback()
96 ICUResourceBundle bundle = null; in TestGetWithFallback()
99 bundle = (ICUResourceBundle) UResourceBundle.getBundleInstance( in TestGetWithFallback()
103 if(!bundle.getULocale().getName().equals("de")){ in TestGetWithFallback()
104 errln("did not get the expected bundle"); in TestGetWithFallback()
106 key = bundle.getStringWithFallback("collations/collation/default"); in TestGetWithFallback()
116 bundle = (ICUResourceBundle) UResourceBundle.getBundleInstance(ICUData.ICU_COLLATION_BASE_NAME,"fr_FR"); in TestGetWithFallback()
117 key = bundle in TestGetWithFallback()
[all...]
/third_party/node/deps/npm/node_modules/sigstore/dist/
H A Dsigstore.js42 const bundle_1 = require("@sigstore/bundle");
50 const bundle = await bundler.create({ data: payload });
51 return (0, bundle_1.bundleToJSON)(bundle);
58 const bundle = await bundler.create({ data: payload, type: payloadType });
59 return (0, bundle_1.bundleToJSON)(bundle);
62 async function verify(bundle, dataOrOptions, options) {
70 return createVerifier(options).then((verifier) => verifier.verify(bundle, data));
95 verify: (bundle, payload) => {
96 const deserializedBundle = (0, bundle_1.bundleFromJSON)(bundle);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DUResourceBundleIterator.java39 private UResourceBundle bundle; field in UResourceBundleIterator
43 * Construct a resource bundle iterator for the
44 * given resource bundle
46 * @param bndl The resource bundle to iterate over
50 bundle = bndl; in UResourceBundleIterator()
51 size = bundle.getSize(); in UResourceBundleIterator()
62 return bundle.get(index++); in next()
75 return bundle.getString(index++); in nextString()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DUResourceBundleIterator.java40 private UResourceBundle bundle; field in UResourceBundleIterator
44 * Construct a resource bundle iterator for the
45 * given resource bundle
47 * @param bndl The resource bundle to iterate over
50 bundle = bndl; in UResourceBundleIterator()
51 size = bundle.getSize(); in UResourceBundleIterator()
61 return bundle.get(index++); in next()
73 return bundle.getString(index++); in nextString()

Completed in 16 milliseconds

123456789