/third_party/icu/icu4c/source/common/ |
H A D | uvectr32.h | 40 * <p>There is index bounds checking, but little is done about it. If 57 * <p>Improve the handling of index out of bounds errors. 102 void setElementAt(int32_t elem, int32_t index); 104 void insertElementAt(int32_t elem, int32_t index, UErrorCode &status); 106 inline int32_t elementAti(int32_t index) const; 122 void removeElementAt(int32_t index); 223 inline int32_t UVector32::elementAti(int32_t index) const { in elementAti() 224 return (index >= 0 && count > 0 && count - index > 0) ? elements[index] in elementAti() [all...] |
/third_party/node/src/ |
H A D | aliased_buffer.h | 38 const AliasedBufferIndex* index = nullptr); 54 const AliasedBufferIndex* index = nullptr); 71 Reference(AliasedBufferBase<NativeT, V8T>* aliased_buffer, size_t index) in Reference() argument 72 : aliased_buffer_(aliased_buffer), index_(index) {} in Reference() 138 * Set position index to given value. 140 inline void SetValue(const size_t index, NativeT value); 143 * Get value at position index 145 inline const NativeT GetValue(const size_t index) const; 150 Reference operator[](size_t index); 152 NativeT operator[](size_t index) cons [all...] |
/third_party/node/deps/v8/tools/ |
H A D | process-wasm-compilation-times.py | 45 def __init__(self, index): 46 self.index = index 60 assert self.index == words[2], "wrong function" 69 assert not self.has_tf, "duplicate TF line for %s" % self.index 82 assert self.index == words[2], "wrong function" 83 assert not self.has_lo, "duplicate Liftoff line for %s" % self.index 96 Name(self.index), self.time_lo, self.time_tf,
|
/third_party/node/test/parallel/ |
H A D | test-net-connect-options-fd.js | 17 const cloneOptions = (index) => 18 ({ ...getSocketOpt(index), ...getConnectOpt(index) }); 76 const getSocketOpt = (index) => { 81 handleMap.set(index, handle); 88 const getConnectCb = (index) => common.mustCall(function clientOnConnect() { 90 assert(handleMap.has(index)); 91 const oldHandle = handleMap.get(index);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uvectr32.h | 40 * <p>There is index bounds checking, but little is done about it. If 57 * <p>Improve the handling of index out of bounds errors. 102 void setElementAt(int32_t elem, int32_t index); 104 void insertElementAt(int32_t elem, int32_t index, UErrorCode &status); 106 inline int32_t elementAti(int32_t index) const; 122 void removeElementAt(int32_t index); 223 inline int32_t UVector32::elementAti(int32_t index) const { in elementAti() 224 return (index >= 0 && count > 0 && count - index > 0) ? elements[index] in elementAti() [all...] |
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_opt_cse.c | 43 hash_index(uint32_t hash, bi_index index) in hash_index() argument 45 hash = HASH(hash, index.value); in hash_index() 46 hash = HASH(hash, index.abs); in hash_index() 47 hash = HASH(hash, index.neg); in hash_index() 48 hash = HASH(hash, index.swizzle); in hash_index() 49 hash = HASH(hash, index.offset); in hash_index() 50 hash = HASH(hash, index.reg); in hash_index() 51 hash = HASH(hash, index.type); in hash_index()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | control-equivalence.h | 132 size_t const index = node->id(); in GetData() local 133 if (index >= node_data_.size()) node_data_.resize(index + 1); in GetData() 134 return node_data_[index]; in GetData() 137 size_t const index = node->id(); in AllocateData() local 138 if (index >= node_data_.size()) node_data_.resize(index + 1); in AllocateData() 139 node_data_[index] = zone_->New<NodeData>(zone_); in AllocateData()
|
/third_party/skia/src/utils/ |
H A D | SkAnimCodecPlayer.cpp | 52 sk_sp<SkImage> SkAnimCodecPlayer::getFrameAt(int index) { in getFrameAt() argument 53 SkASSERT((unsigned)index < fFrameInfos.size()); in getFrameAt() 55 if (fImages[index]) { in getFrameAt() 56 return fImages[index]; in getFrameAt() 64 opts.fFrameIndex = index; in getFrameAt() 75 if (fFrameInfos[index].fAlphaType != kOpaque_SkAlphaType && imageInfo.isOpaque()) { in getFrameAt() 78 const int requiredFrame = fFrameInfos[index].fRequiredFrame; in getFrameAt() 113 return fImages[index] = image; in getFrameAt()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | client.c | 72 pa_assert_se(pa_idxset_put(core->clients, c, &c->index) >= 0); in pa_client_new() 74 pa_log_info("Created %u \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME))); in pa_client_new() 75 pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_NEW, c->index); in pa_client_new() 96 pa_log_info("Freed %u \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME))); in pa_client_free() 97 pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_REMOVE, c->index); in pa_client_free() 115 pa_log_warn("kill() operation not implemented for client %u", c->index); in pa_client_kill() 126 pa_log_info("Client %u changed name from \"%s\" to \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME)), name); in pa_client_set_name() 139 pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->index); in pa_client_update_proplist()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uvectr32.h | 40 * <p>There is index bounds checking, but little is done about it. If 57 * <p>Improve the handling of index out of bounds errors. 102 void setElementAt(int32_t elem, int32_t index); 104 void insertElementAt(int32_t elem, int32_t index, UErrorCode &status); 106 inline int32_t elementAti(int32_t index) const; 122 void removeElementAt(int32_t index); 223 inline int32_t UVector32::elementAti(int32_t index) const { in elementAti() 224 return (index >= 0 && count > 0 && count - index > 0) ? elements[index] in elementAti() [all...] |
/third_party/typescript/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/ |
H A D | when-packageJson-has-types-field-when-solution-is-already-built.js | 16 {"main":"lib/index.js","types":"lib/index.d.ts"}
24 //// [/user/username/projects/myproject/packages/A/src/index.ts]
31 //// [/user/username/projects/myproject/packages/B/src/index.ts]
50 //// [/user/username/projects/myproject/packages/B/lib/index.js]
58 //// [/user/username/projects/myproject/packages/B/lib/index.d.ts]
63 {"program":{"fileNames":["../../../../../../a/lib/lib.d.ts","./src/bar.ts","./src/index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},{"version":"1045484683-export function bar() { }","signature":"-2904461644-export declare function bar(): void;\n"},{"version":"4646078106-export function foo() { }","signature":"-5677608893-export declare function foo(): void;\n"}],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"FakeTSVersion"}
71 "./src/index.ts" 83 "./src/index [all...] |
H A D | when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js | 16 {"main":"lib/index.js","types":"lib/index.d.ts"}
24 //// [/user/username/projects/myproject/packages/A/src/index.ts]
31 //// [/user/username/projects/myproject/packages/B/src/index.ts]
50 //// [/user/username/projects/myproject/packages/B/lib/index.js]
58 //// [/user/username/projects/myproject/packages/B/lib/index.d.ts]
63 {"program":{"fileNames":["../../../../../../a/lib/lib.d.ts","./src/bar.ts","./src/index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},{"version":"1045484683-export function bar() { }","signature":"-2904461644-export declare function bar(): void;\n"},{"version":"4646078106-export function foo() { }","signature":"-5677608893-export declare function foo(): void;\n"}],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"FakeTSVersion"}
71 "./src/index.ts" 83 "./src/index [all...] |
H A D | when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js | 16 {"main":"lib/index.js","types":"lib/index.d.ts"}
24 //// [/user/username/projects/myproject/packages/A/src/index.ts]
31 //// [/user/username/projects/myproject/packages/B/src/index.ts]
50 //// [/user/username/projects/myproject/packages/B/lib/index.js]
58 //// [/user/username/projects/myproject/packages/B/lib/index.d.ts]
63 {"program":{"fileNames":["../../../../../../a/lib/lib.d.ts","./src/bar.ts","./src/index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},{"version":"1045484683-export function bar() { }","signature":"-2904461644-export declare function bar(): void;\n"},{"version":"4646078106-export function foo() { }","signature":"-5677608893-export declare function foo(): void;\n"}],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"FakeTSVersion"}
71 "./src/index.ts" 83 "./src/index [all...] |
H A D | when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js | 16 {"main":"lib/index.js","types":"lib/index.d.ts"}
24 //// [/user/username/projects/myproject/packages/A/src/index.ts]
31 //// [/user/username/projects/myproject/packages/B/src/index.ts]
50 //// [/user/username/projects/myproject/packages/B/lib/index.js]
58 //// [/user/username/projects/myproject/packages/B/lib/index.d.ts]
63 {"program":{"fileNames":["../../../../../../a/lib/lib.d.ts","./src/bar.ts","./src/index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},{"version":"1045484683-export function bar() { }","signature":"-2904461644-export declare function bar(): void;\n"},{"version":"4646078106-export function foo() { }","signature":"-5677608893-export declare function foo(): void;\n"}],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"FakeTSVersion"}
71 "./src/index.ts" 83 "./src/index [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/hw/bnxt_re/ |
H A D | qplib_sp.c | 204 struct bnxt_qplib_sgid_tbl *sgid_tbl, int index, in bnxt_qplib_get_sgid() 207 if (index >= sgid_tbl->max) { in bnxt_qplib_get_sgid() 210 index, sgid_tbl->max); in bnxt_qplib_get_sgid() 213 memcpy(gid, &sgid_tbl->tbl[index].gid, sizeof(*gid)); in bnxt_qplib_get_sgid() 224 int index; in bnxt_qplib_del_sgid() local 235 for (index = 0; index < sgid_tbl->max; index++) { in bnxt_qplib_del_sgid() 236 if (!memcmp(&sgid_tbl->tbl[index].gid, gid, sizeof(*gid)) && in bnxt_qplib_del_sgid() 237 vlan_id == sgid_tbl->tbl[index] in bnxt_qplib_del_sgid() 203 bnxt_qplib_get_sgid(struct bnxt_qplib_res *res, struct bnxt_qplib_sgid_tbl *sgid_tbl, int index, struct bnxt_qplib_gid *gid) bnxt_qplib_get_sgid() argument 277 bnxt_qplib_add_sgid(struct bnxt_qplib_sgid_tbl *sgid_tbl, struct bnxt_qplib_gid *gid, u8 *smac, u16 vlan_id, bool update, u32 *index) bnxt_qplib_add_sgid() argument 406 bnxt_qplib_get_pkey(struct bnxt_qplib_res *res, struct bnxt_qplib_pkey_tbl *pkey_tbl, u16 index, u16 *pkey) bnxt_qplib_get_pkey() argument [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | reada.c | 272 zone->device = dev; /* our device always sits at index 0 */ in reada_find_zone() 312 unsigned long index = logical >> PAGE_SHIFT; in reada_find_extent() local 317 re = radix_tree_lookup(&fs_info->reada_tree, index); in reada_find_extent() 389 ret = radix_tree_insert(&fs_info->reada_tree, index, re); in reada_find_extent() 391 re_exist = radix_tree_lookup(&fs_info->reada_tree, index); in reada_find_extent() 436 ret = radix_tree_insert(&dev->reada_extents, index, re); in reada_find_extent() 442 radix_tree_delete(&dev->reada_extents, index); in reada_find_extent() 444 radix_tree_delete(&fs_info->reada_tree, index); in reada_find_extent() 452 radix_tree_delete(&fs_info->reada_tree, index); in reada_find_extent() 492 unsigned long index in reada_extent_put() local 585 unsigned long index = zone->end >> PAGE_SHIFT; reada_peer_zones_set_lock() local 604 unsigned long index = 0; reada_pick_zone() local 847 unsigned long index; dump_devs() local [all...] |
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | hwmon.c | 52 int index; member 66 int index; /* sensor index */ member 162 tdata->index, &t); in hwmon_thermal_get_temp() 189 if (info[i]->config[tdata->index] & HWMON_T_MIN) { in hwmon_thermal_set_trips() 191 hwmon_temp_min, tdata->index, low); in hwmon_thermal_set_trips() 196 if (info[i]->config[tdata->index] & HWMON_T_MAX) { in hwmon_thermal_set_trips() 198 hwmon_temp_max, tdata->index, high); in hwmon_thermal_set_trips() 216 static int hwmon_thermal_add_sensor(struct device *dev, int index) in hwmon_thermal_add_sensor() argument 228 tdata->index in hwmon_thermal_add_sensor() 282 hwmon_thermal_notify(struct device *dev, int index) hwmon_thermal_notify() argument 301 hwmon_thermal_notify(struct device *dev, int index) hwmon_thermal_notify() argument 386 hwmon_genattr(const void *drvdata, enum hwmon_sensor_types type, u32 attr, int index, const char *template, const struct hwmon_ops *ops) hwmon_genattr() argument [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
H A D | name_table.cc | 450 int32_t NameTable::PlatformId(int32_t index) { in PlatformId() argument 452 OffsetForNameRecord(index)); in PlatformId() 455 int32_t NameTable::EncodingId(int32_t index) { in EncodingId() argument 457 OffsetForNameRecord(index)); in EncodingId() 460 int32_t NameTable::LanguageId(int32_t index) { in LanguageId() argument 462 OffsetForNameRecord(index)); in LanguageId() 465 int32_t NameTable::NameId(int32_t index) { in NameId() argument 467 OffsetForNameRecord(index)); in NameId() 470 void NameTable::NameAsBytes(int32_t index, std::vector<uint8_t>* b) { in NameAsBytes() argument 474 int32_t length = NameLength(index); in NameAsBytes() 500 Name(int32_t index) Name() argument 518 GetNameEntry(int32_t index) GetNameEntry() argument 562 OffsetForNameRecord(int32_t index) OffsetForNameRecord() argument 566 NameLength(int32_t index) NameLength() argument 571 NameOffset(int32_t index) NameOffset() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/microchip/wilc1000/ |
H A D | hif.c | 83 /* The idx starts from 0 to (NUM_CONCURRENT_IFC - 1), but 0 index used as 84 * special purpose in wilc device, so we add 1 to the index to starts from 1. 85 * As a result, the returned index will be 1 to NUM_CONCURRENT_IFC. 92 /* We need to minus 1 from idx which is from wilc device to get real index 95 * As a result, the index should be between 0 and (NUM_CONCURRENT_IFC - 1). 99 int index = idx - 1; in wilc_get_vif_from_idx() local 102 if (index < 0 || index >= WILC_NUM_CONCURRENT_IFC) in wilc_get_vif_from_idx() 106 if (vif->idx == index) in wilc_get_vif_from_idx() 157 u32 index in wilc_scan() local 1028 wilc_remove_wep_key(struct wilc_vif *vif, u8 index) wilc_remove_wep_key() argument 1045 wilc_set_wep_default_keyid(struct wilc_vif *vif, u8 index) wilc_set_wep_default_keyid() argument 1062 wilc_add_wep_key_bss_sta(struct wilc_vif *vif, const u8 *key, u8 len, u8 index) wilc_add_wep_key_bss_sta() argument 1091 wilc_add_wep_key_bss_ap(struct wilc_vif *vif, const u8 *key, u8 len, u8 index, u8 mode, enum authtype auth_type) wilc_add_wep_key_bss_ap() argument 1130 wilc_add_ptk(struct wilc_vif *vif, const u8 *ptk, u8 ptk_key_len, const u8 *mac_addr, const u8 *rx_mic, const u8 *tx_mic, u8 mode, u8 cipher_mode, u8 index) wilc_add_ptk() argument 1201 wilc_add_rx_gtk(struct wilc_vif *vif, const u8 *rx_gtk, u8 gtk_key_len, u8 index, u32 key_rsc_len, const u8 *key_rsc, const u8 *rx_mic, const u8 *tx_mic, u8 mode, u8 cipher_mode) wilc_add_rx_gtk() argument 1340 wilc_set_operation_mode(struct wilc_vif *vif, int index, u8 mode, u8 ifc_id) wilc_set_operation_mode() argument [all...] |
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
H A D | xfs_dir2_leaf.c | 484 int index, in xfs_dir3_leaf_find_stale() 489 * Find the first stale entry before our index, if any. in xfs_dir3_leaf_find_stale() 491 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) { in xfs_dir3_leaf_find_stale() 498 * Find the first stale entry at or after our index, if any. in xfs_dir3_leaf_find_stale() 502 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) { in xfs_dir3_leaf_find_stale() 506 if (*lowstale >= 0 && index - *lowstale <= *highstale - index) in xfs_dir3_leaf_find_stale() 515 int index, /* leaf table position */ in xfs_dir3_leaf_find_entry() 517 int lowstale, /* index of prev stale leaf */ in xfs_dir3_leaf_find_entry() 518 int highstale, /* index o in xfs_dir3_leaf_find_entry() 481 xfs_dir3_leaf_find_stale( struct xfs_dir3_icleaf_hdr *leafhdr, struct xfs_dir2_leaf_entry *ents, int index, int *lowstale, int *highstale) xfs_dir3_leaf_find_stale() argument 512 xfs_dir3_leaf_find_entry( struct xfs_dir3_icleaf_hdr *leafhdr, struct xfs_dir2_leaf_entry *ents, int index, int compact, int lowstale, int highstale, int *lfloglow, int *lfloghigh) xfs_dir3_leaf_find_entry() argument 628 int index; /* leaf table position */ xfs_dir2_leaf_addname() local 976 int index; /* insertion index */ xfs_dir3_leaf_compact_x1() local 1157 int index; /* found entry index */ xfs_dir2_leaf_lookup() local 1217 int index; /* index in leaf block */ xfs_dir2_leaf_lookup_int() local 1348 int index; /* index into leaf entries */ xfs_dir2_leaf_removename() local 1491 int index; /* index of leaf entry */ xfs_dir2_leaf_replace() local [all...] |
/kernel/linux/linux-6.6/fs/xfs/libxfs/ |
H A D | xfs_dir2_leaf.c | 493 int index, in xfs_dir3_leaf_find_stale() 498 * Find the first stale entry before our index, if any. in xfs_dir3_leaf_find_stale() 500 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) { in xfs_dir3_leaf_find_stale() 507 * Find the first stale entry at or after our index, if any. in xfs_dir3_leaf_find_stale() 511 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) { in xfs_dir3_leaf_find_stale() 515 if (*lowstale >= 0 && index - *lowstale <= *highstale - index) in xfs_dir3_leaf_find_stale() 524 int index, /* leaf table position */ in xfs_dir3_leaf_find_entry() 526 int lowstale, /* index of prev stale leaf */ in xfs_dir3_leaf_find_entry() 527 int highstale, /* index o in xfs_dir3_leaf_find_entry() 490 xfs_dir3_leaf_find_stale( struct xfs_dir3_icleaf_hdr *leafhdr, struct xfs_dir2_leaf_entry *ents, int index, int *lowstale, int *highstale) xfs_dir3_leaf_find_stale() argument 521 xfs_dir3_leaf_find_entry( struct xfs_dir3_icleaf_hdr *leafhdr, struct xfs_dir2_leaf_entry *ents, int index, int compact, int lowstale, int highstale, int *lfloglow, int *lfloghigh) xfs_dir3_leaf_find_entry() argument 637 int index; /* leaf table position */ xfs_dir2_leaf_addname() local 985 int index; /* insertion index */ xfs_dir3_leaf_compact_x1() local 1166 int index; /* found entry index */ xfs_dir2_leaf_lookup() local 1226 int index; /* index in leaf block */ xfs_dir2_leaf_lookup_int() local 1357 int index; /* index into leaf entries */ xfs_dir2_leaf_removename() local 1500 int index; /* index of leaf entry */ xfs_dir2_leaf_replace() local [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
H A D | UCharacter.java | 4140 * By default, titlecasing will take each break iterator index, 6358 * Returns the code point at index. 6359 * This examines only the characters at index and index+1. 6362 * @param index the index of the first or only char forming the code point 6363 * @return the code point at the index 6366 public static final int codePointAt(CharSequence seq, int index) { in codePointAt() argument 6367 char c1 = seq.charAt(index++); in codePointAt() 6369 if (index < se in codePointAt() 6389 codePointAt(char[] text, int index) codePointAt() argument 6413 codePointAt(char[] text, int index, int limit) codePointAt() argument 6439 codePointBefore(CharSequence seq, int index) codePointBefore() argument 6462 codePointBefore(char[] text, int index) codePointBefore() argument 6486 codePointBefore(char[] text, int index, int limit) codePointBefore() argument 6623 offsetByCodePoints(CharSequence text, int index, int codePointOffset) offsetByCodePoints() argument 6671 offsetByCodePoints(char[] text, int start, int count, int index, int codePointOffset) offsetByCodePoints() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
H A D | UCharacter.java | 3462 * By default, titlecasing will take each break iterator index, 5533 * Returns the code point at index. 5534 * This examines only the characters at index and index+1. 5537 * @param index the index of the first or only char forming the code point 5538 * @return the code point at the index 5540 public static final int codePointAt(CharSequence seq, int index) { in codePointAt() argument 5541 char c1 = seq.charAt(index++); in codePointAt() 5543 if (index < se in codePointAt() 5562 codePointAt(char[] text, int index) codePointAt() argument 5585 codePointAt(char[] text, int index, int limit) codePointAt() argument 5610 codePointBefore(CharSequence seq, int index) codePointBefore() argument 5632 codePointBefore(char[] text, int index) codePointBefore() argument 5655 codePointBefore(char[] text, int index, int limit) codePointBefore() argument 5786 offsetByCodePoints(CharSequence text, int index, int codePointOffset) offsetByCodePoints() argument 5833 offsetByCodePoints(char[] text, int start, int count, int index, int codePointOffset) offsetByCodePoints() argument [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp.cc | 58 Handle<String> subject, int index, int32_t* output, 62 Handle<String> subject, int index, 65 // Execute a regular expression on the subject, starting from index. 72 Handle<String> subject, int index, int32_t* output, 81 int index, Handle<RegExpMatchInfo> last_match_info, 304 int index, Handle<RegExpMatchInfo> last_match_info, in ExperimentalOneshotExec() 306 return ExperimentalRegExp::OneshotExec(isolate, regexp, subject, index, in ExperimentalOneshotExec() 312 Handle<String> subject, int index, in Exec() 319 return RegExpImpl::AtomExec(isolate, regexp, subject, index, in Exec() 322 return RegExpImpl::IrregexpExec(isolate, regexp, subject, index, in Exec() 302 ExperimentalOneshotExec( Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int index, Handle<RegExpMatchInfo> last_match_info, RegExp::ExecQuirks exec_quirks) ExperimentalOneshotExec() argument 311 Exec(Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int index, Handle<RegExpMatchInfo> last_match_info, ExecQuirks exec_quirks) Exec() argument 354 AtomExecRaw(Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) AtomExecRaw() argument 401 AtomExec(Isolate* isolate, Handle<JSRegExp> re, Handle<String> subject, int index, Handle<RegExpMatchInfo> last_match_info) AtomExec() argument 657 IrregexpExecRaw(Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) IrregexpExecRaw() argument 1202 int index = current_match_index_ * registers_per_match_; LastSuccessfulMatch() local 1227 uint32_t index = ((hash & (kRegExpResultsCacheSize - 1)) & Lookup() local 1262 uint32_t index = ((hash & (kRegExpResultsCacheSize - 1)) & Enter() local [all...] |
/third_party/mesa3d/src/glx/ |
H A D | indirect_vertex_array.c | 81 unsigned index); 84 unsigned index); 87 unsigned index); 246 arrays->arrays[4 + i].index = i; in __glXInitVertexArrayState() 278 arrays->arrays[idx + i].index = idx; in __glXInitVertexArrayState() 337 const struct array_state_vector * arrays, unsigned index) in emit_element_none() 344 const size_t offset = index * arrays->arrays[i].true_stride; in emit_element_none() 359 arrays->arrays[i].index > 0) { in emit_element_none() 364 GLenum texture = arrays->arrays[i].index + GL_TEXTURE0; in emit_element_none() 379 /* Vertex attribute data requires the index sen in emit_element_none() 336 emit_element_none(GLubyte * dst, const struct array_state_vector * arrays, unsigned index) emit_element_none() argument 403 emit_element_old(GLubyte * dst, const struct array_state_vector * arrays, unsigned index) emit_element_old() argument 425 get_array_entry(const struct array_state_vector *arrays, GLenum key, unsigned index) get_array_entry() argument 787 unsigned index = 0; emit_DrawElements_none() local 858 const GLint index = (GLint) * (ui_ptr++); emit_DrawElements_old() local 867 const GLint index = (GLint) * (us_ptr++); emit_DrawElements_old() local 876 const GLint index = (GLint) * (ub_ptr++); emit_DrawElements_old() local 1001 __indirect_glArrayElement(GLint index) __indirect_glArrayElement() argument 1445 unsigned index; __indirect_glTexCoordPointer() local 1611 __indirect_glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer) __indirect_glVertexAttribPointer() argument 1737 __indirect_glVertexAttribPointerNV(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __indirect_glVertexAttribPointerNV() argument 1789 __glXSetArrayEnable(__GLXattribute * state, GLenum key, unsigned index, GLboolean enable) __glXSetArrayEnable() argument 1832 __glXGetArrayEnable(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayEnable() argument 1851 __glXGetArrayType(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayType() argument 1870 __glXGetArraySize(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArraySize() argument 1889 __glXGetArrayStride(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayStride() argument 1908 __glXGetArrayPointer(const __GLXattribute * const state, GLenum key, unsigned index, void **dest) __glXGetArrayPointer() argument 1928 __glXGetArrayNormalized(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayNormalized() argument [all...] |