/third_party/pcre2/pcre2/src/ |
H A D | pcre2_config.c | 65 /* If where is NULL, the length of memory required is returned. 69 where where to put the information 73 PCRE2_ERROR_BADOPTION if "where" not recognized 78 pcre2_config(uint32_t what, void *where) in pcre2_config() argument 80 if (where == NULL) /* Requests a length */ in pcre2_config() 118 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF; in pcre2_config() 120 *((uint32_t *)where) = PCRE2_BSR_UNICODE; in pcre2_config() 125 *((uint32_t *)where) = 0 in pcre2_config() 139 *((uint32_t *)where) in pcre2_config() [all...] |
H A D | pcre2_pattern_info.c | 57 where where to put the information; if NULL, return length 65 pcre2_pattern_info(const pcre2_code *code, uint32_t what, void *where) in pcre2_pattern_info() argument 69 if (where == NULL) /* Requests field length */ in pcre2_pattern_info() 124 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info() 128 *((uint32_t *)where) = re->compile_options; in pcre2_pattern_info() 132 *((uint32_t *)where) = re->top_backref; in pcre2_pattern_info() 136 *((uint32_t *)where) = re->bsr_convention; in pcre2_pattern_info() 140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info() 144 *((uint32_t *)where) in pcre2_pattern_info() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | BreakIterator.java | 42 * <li>getLineInstance() returns a BreakIterator that locates positions where it is 607 * @param where A locale specifying the language of the text to be 610 * @throws NullPointerException if <code>where</code> is null. 613 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument 615 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance() 620 * @param where A locale specifying the language of the text to be 623 * @throws NullPointerException if <code>where</code> is null. 626 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument 628 return getBreakInstance(where, KIND_WORD); in getWordInstance() 647 * @param where 653 getLineInstance(Locale where) getLineInstance() argument 667 getLineInstance(ULocale where) getLineInstance() argument 694 getCharacterInstance(Locale where) getCharacterInstance() argument 708 getCharacterInstance(ULocale where) getCharacterInstance() argument 732 getSentenceInstance(Locale where) getSentenceInstance() argument 744 getSentenceInstance(ULocale where) getSentenceInstance() argument 775 getTitleInstance(Locale where) getTitleInstance() argument 791 getTitleInstance(ULocale where) getTitleInstance() argument 888 getBreakInstance(ULocale where, int kind) getBreakInstance() argument 938 private ULocale where; global() field in BreakIterator.BreakIteratorCache 940 BreakIteratorCache(ULocale where, BreakIterator iter) BreakIteratorCache() argument [all...] |
H A D | FilteredBreakIteratorBuilder.java | 38 * @param where the locale. 42 public static final FilteredBreakIteratorBuilder getInstance(Locale where) { in getInstance() argument 43 return new SimpleFilteredSentenceBreakIterator.Builder(where); in getInstance() 53 * @param where the locale. 57 public static final FilteredBreakIteratorBuilder getInstance(ULocale where) { in getInstance() argument 58 return new SimpleFilteredSentenceBreakIterator.Builder(where); in getInstance()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | BreakIterator.java | 43 * <li>getLineInstance() returns a BreakIterator that locates positions where it is 572 * @param where A locale specifying the language of the text to be 575 * @throws NullPointerException if <code>where</code> is null. 577 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument 579 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance() 584 * @param where A locale specifying the language of the text to be 587 * @throws NullPointerException if <code>where</code> is null. 589 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument 591 return getBreakInstance(where, KIND_WORD); in getWordInstance() 609 * @param where 614 getLineInstance(Locale where) getLineInstance() argument 627 getLineInstance(ULocale where) getLineInstance() argument 652 getCharacterInstance(Locale where) getCharacterInstance() argument 665 getCharacterInstance(ULocale where) getCharacterInstance() argument 687 getSentenceInstance(Locale where) getSentenceInstance() argument 698 getSentenceInstance(ULocale where) getSentenceInstance() argument 729 getTitleInstance(Locale where) getTitleInstance() argument 745 getTitleInstance(ULocale where) getTitleInstance() argument 843 getBreakInstance(ULocale where, int kind) getBreakInstance() argument 892 private ULocale where; global() field in BreakIterator.BreakIteratorCache 894 BreakIteratorCache(ULocale where, BreakIterator iter) BreakIteratorCache() argument [all...] |
H A D | FilteredBreakIteratorBuilder.java | 39 * @param where the locale. 42 public static final FilteredBreakIteratorBuilder getInstance(Locale where) { in getInstance() argument 43 return new SimpleFilteredSentenceBreakIterator.Builder(where); in getInstance() 53 * @param where the locale. 56 public static final FilteredBreakIteratorBuilder getInstance(ULocale where) { in getInstance() argument 57 return new SimpleFilteredSentenceBreakIterator.Builder(where); in getInstance()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | LocaleValidityChecker.java | 69 public boolean isValid(ULocale locale, Where where) { in isValid() argument 70 where.set(null, null); in isValid() 77 // // the only case where this is valid is if there is only an 'x' extension string in isValid() 80 // return where.set(Datatype.x, "Null language only with x-..."); in isValid() 84 if (!isValid(Datatype.language, language, where)) { in isValid() 87 where.set(null, null); // for x, well-formed == valid in isValid() 92 if (!isValid(Datatype.script, script, where)) return false; in isValid() 93 if (!isValid(Datatype.region, region, where)) return false; in isValid() 96 if (!isValid(Datatype.variant, variant, where)) return false; in isValid() 107 if (!isValidU(locale, datatype, locale.getExtension(c), where)) retur in isValid() 146 isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) isValidU() argument 319 isValidLocale(String extensionString, Where where) isValidLocale() argument 338 isValid(Datatype datatype, String code, Where where) isValid() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | LocaleValidityChecker.java | 74 public boolean isValid(ULocale locale, Where where) { in isValid() argument 75 where.set(null, null); in isValid() 82 // // the only case where this is valid is if there is only an 'x' extension string in isValid() 85 // return where.set(Datatype.x, "Null language only with x-..."); in isValid() 89 if (!isValid(Datatype.language, language, where)) { in isValid() 92 where.set(null, null); // for x, well-formed == valid in isValid() 97 if (!isValid(Datatype.script, script, where)) return false; in isValid() 98 if (!isValid(Datatype.region, region, where)) return false; in isValid() 101 if (!isValid(Datatype.variant, variant, where)) return false; in isValid() 112 if (!isValidU(locale, datatype, locale.getExtension(c), where)) retur in isValid() 151 isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) isValidU() argument 324 isValidLocale(String extensionString, Where where) isValidLocale() argument 343 isValid(Datatype datatype, String code, Where where) isValid() argument [all...] |
/third_party/libunwind/libunwind/src/arm/ |
H A D | Gstash_frame.c | 35 Debug (4, "ip=0x%x cfa=0x%x type %d cfa [where=%d val=%d] cfaoff=%d" in tdep_stash_frame() 36 " ra=0x%x r7 [where=%d val=%d @0x%x] lr [where=%d val=%d @0x%x] " in tdep_stash_frame() 37 "sp [where=%d val=%d @0x%x]\n", in tdep_stash_frame() 39 rs->reg.where[DWARF_CFA_REG_COLUMN], in tdep_stash_frame() 43 rs->reg.where[R7], rs->reg.val[R7], DWARF_GET_LOC(d->loc[R7]), in tdep_stash_frame() 44 rs->reg.where[LR], rs->reg.val[LR], DWARF_GET_LOC(d->loc[LR]), in tdep_stash_frame() 45 rs->reg.where[SP], rs->reg.val[SP], DWARF_GET_LOC(d->loc[SP])); in tdep_stash_frame() 54 && (rs->reg.where[DWARF_CFA_REG_COLUMN] == DWARF_WHERE_REG) in tdep_stash_frame() 59 && (rs->reg.where[R in tdep_stash_frame() [all...] |
/third_party/libunwind/libunwind/src/aarch64/ |
H A D | Gstash_frame.c | 35 Debug (4, "ip=0x%lx cfa=0x%lx type %d cfa [where=%d val=%ld] cfaoff=%ld" in tdep_stash_frame() 36 " ra=0x%lx fp [where=%d val=%ld @0x%lx] lr [where=%d val=%ld @0x%lx] " in tdep_stash_frame() 37 "sp [where=%d val=%ld @0x%lx]\n", in tdep_stash_frame() 39 rs->reg.where[DWARF_CFA_REG_COLUMN], in tdep_stash_frame() 43 rs->reg.where[FP], rs->reg.val[FP], DWARF_GET_LOC(d->loc[FP]), in tdep_stash_frame() 44 rs->reg.where[LR], rs->reg.val[LR], DWARF_GET_LOC(d->loc[LR]), in tdep_stash_frame() 45 rs->reg.where[SP], rs->reg.val[SP], DWARF_GET_LOC(d->loc[SP])); in tdep_stash_frame() 54 && (rs->reg.where[DWARF_CFA_REG_COLUMN] == DWARF_WHERE_REG) in tdep_stash_frame() 59 && (rs->reg.where[F in tdep_stash_frame() [all...] |
/third_party/libunwind/libunwind/src/x86_64/ |
H A D | Gstash_frame.c | 34 Debug (4, "ip=0x%lx cfa=0x%lx type %d cfa [where=%d val=%ld] cfaoff=%ld" in tdep_stash_frame() 35 " ra=0x%lx rbp [where=%d val=%ld @0x%lx] rsp [where=%d val=%ld @0x%lx]\n", in tdep_stash_frame() 37 rs->reg.where[DWARF_CFA_REG_COLUMN], in tdep_stash_frame() 41 rs->reg.where[RBP], rs->reg.val[RBP], DWARF_GET_LOC(d->loc[RBP]), in tdep_stash_frame() 42 rs->reg.where[RSP], rs->reg.val[RSP], DWARF_GET_LOC(d->loc[RSP])); in tdep_stash_frame() 44 if (rs->reg.where[DWARF_CFA_REG_COLUMN] == DWARF_WHERE_EXPR && in tdep_stash_frame() 45 rs->reg.where[RBP] == DWARF_WHERE_EXPR) { in tdep_stash_frame() 47 * def_cfa_expr that loads a constant offset from rbp, where the in tdep_stash_frame() 67 && (rs->reg.where[DWARF_CFA_REG_COLUM in tdep_stash_frame() [all...] |
/third_party/node/deps/npm/node_modules/npm-package-arg/lib/ |
H A D | npa.js | 21 function npa (arg, where) { 25 if (arg instanceof Result && (!where || where === arg.where)) { 28 return npa.resolve(arg.name, arg.rawSpec, where || arg.where) 30 return npa(arg.raw, where || arg.where) 53 return resolve(name, spec, where, arg) 58 function resolve (name, spec, where, ar [all...] |
/third_party/icu/icu4c/source/tools/icupkg/ |
H A D | icupkg.cpp | 56 FILE *where=isHelp ? stdout : stderr; in printUsage() local 58 fprintf(where, in printUsage() 67 fprintf(where, in printUsage() 76 fprintf(where, in printUsage() 83 fprintf(where, in printUsage() 91 fprintf(where, in printUsage() 97 fprintf(where, in printUsage() 106 fprintf(where, in printUsage() 114 fprintf(where, in printUsage() 118 fprintf(where, in printUsage() [all...] |
/third_party/node/deps/icu-small/source/tools/icupkg/ |
H A D | icupkg.cpp | 56 FILE *where=isHelp ? stdout : stderr; in printUsage() local 58 fprintf(where, in printUsage() 67 fprintf(where, in printUsage() 76 fprintf(where, in printUsage() 83 fprintf(where, in printUsage() 91 fprintf(where, in printUsage() 97 fprintf(where, in printUsage() 106 fprintf(where, in printUsage() 114 fprintf(where, in printUsage() 118 fprintf(where, in printUsage() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/icupkg/ |
H A D | icupkg.cpp | 56 FILE *where=isHelp ? stdout : stderr; in printUsage() local 58 fprintf(where, in printUsage() 67 fprintf(where, in printUsage() 76 fprintf(where, in printUsage() 83 fprintf(where, in printUsage() 91 fprintf(where, in printUsage() 97 fprintf(where, in printUsage() 106 fprintf(where, in printUsage() 114 fprintf(where, in printUsage() 118 fprintf(where, in printUsage() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | ilist.h | 241 iterator insert(iterator where, pointer New) { in insert() argument 243 return base_list_type::insert(where, *New); in insert() 246 iterator insert(iterator where, const_reference New) { in insert() argument 247 return this->insert(where, new value_type(New)); in insert() 250 iterator insertAfter(iterator where, pointer New) { in insertAfter() argument 254 return insert(++where, New); in insertAfter() 280 iterator erase(iterator where) { in erase() argument 281 this->deleteNode(remove(where)); in erase() 282 return where; in erase() 337 template<class InIt> void insert(iterator where, InI argument 342 splice(iterator where, iplist_impl &L2) splice() argument 346 splice(iterator where, iplist_impl &L2, iterator first) splice() argument 351 splice(iterator where, iplist_impl &L2, iterator first, iterator last) splice() argument 354 splice(iterator where, iplist_impl &L2, reference N) splice() argument 357 splice(iterator where, iplist_impl &L2, pointer N) splice() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | ilist.h | 226 iterator insert(iterator where, pointer New) { in insert() argument 228 return base_list_type::insert(where, *New); in insert() 231 iterator insert(iterator where, const_reference New) { in insert() argument 232 return this->insert(where, new value_type(New)); in insert() 235 iterator insertAfter(iterator where, pointer New) { in insertAfter() argument 239 return insert(++where, New); in insertAfter() 265 iterator erase(iterator where) { in erase() argument 266 this->deleteNode(remove(where)); in erase() 267 return where; in erase() 322 template<class InIt> void insert(iterator where, InI argument 327 splice(iterator where, iplist_impl &L2) splice() argument 331 splice(iterator where, iplist_impl &L2, iterator first) splice() argument 336 splice(iterator where, iplist_impl &L2, iterator first, iterator last) splice() argument 339 splice(iterator where, iplist_impl &L2, reference N) splice() argument 342 splice(iterator where, iplist_impl &L2, pointer N) splice() argument [all...] |
/third_party/node/test/parallel/ |
H A D | test-require-empty-main.js | 15 const where = fixtures.path('require-empty-main'); 16 const expected = path.join(where, 'index.js'); 22 assert.strictEqual(require.resolve(where), expected); 23 assert.strictEqual(require(where), 42); 24 assert.strictEqual(require.resolve(where), expected);
|
/third_party/mesa3d/src/mesa/main/ |
H A D | pbo.c | 183 const GLvoid *ptr, const char *where) in _mesa_validate_pbo_source() 192 where); in _mesa_validate_pbo_source() 196 where, clientMemSize); in _mesa_validate_pbo_source() 209 where); in _mesa_validate_pbo_source() 224 const char *where) in _mesa_validate_pbo_source_compressed() 235 where); in _mesa_validate_pbo_source_compressed() 242 where); in _mesa_validate_pbo_source_compressed() 264 const GLvoid *ptr, const char *where) in _mesa_map_validate_pbo_source() 268 clientMemSize, ptr, where)) { in _mesa_map_validate_pbo_source() 341 GLvoid *ptr, const char *where) in _mesa_map_validate_pbo_dest() 178 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) _mesa_validate_pbo_source() argument 221 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei imageSize, const GLvoid *pixels, const char *where) _mesa_validate_pbo_source_compressed() argument 258 _mesa_map_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) _mesa_map_validate_pbo_source() argument 336 _mesa_map_validate_pbo_dest(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, GLvoid *ptr, const char *where) _mesa_map_validate_pbo_dest() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | hook-list.c | 58 pa_hook_slot *slot, *where, *prev; in pa_hook_connect() local 70 for (where = hook->slots; where; where = where->next) { in pa_hook_connect() 71 if (prio < where->priority) in pa_hook_connect() 73 prev = where; in pa_hook_connect()
|
/third_party/libunwind/libunwind/src/ia64/ |
H A D | Gparser.c | 155 set_reg (struct ia64_reg_info *reg, enum ia64_where where, int when, in set_reg() argument 159 reg->where = where; in set_reg() 172 if (reg->where == IA64_WHERE_SPILL_HOME) in alloc_spill_area() 174 reg->where = IA64_WHERE_PSPREL; in alloc_spill_area() 189 if (reg->where == IA64_WHERE_SPILL_HOME) in spill_next_when() 211 if (reg->where == IA64_WHERE_GR_SAVE) in finish_prologue() 213 reg->where = IA64_WHERE_GR; in finish_prologue() 478 if (reg->where == IA64_WHERE_NONE) in desc_reg_when() 479 reg->where in desc_reg_when() 579 enum ia64_where where = IA64_WHERE_GR; desc_spill_reg_p() local 794 enum ia64_where where; parse_dynamic() local [all...] |
/third_party/spirv-tools/source/val/ |
H A D | function.cpp | 250 auto where = augmented_successors_map_.find(block); in AugmentedCFGSuccessorsFunction() 251 return where == augmented_successors_map_.end() ? block->successors() in AugmentedCFGSuccessorsFunction() 252 : &(*where).second; in AugmentedCFGSuccessorsFunction() 258 auto where = augmented_predecessors_map_.find(block); in AugmentedCFGPredecessorsFunction() 259 return where == augmented_predecessors_map_.end() ? block->predecessors() in AugmentedCFGPredecessorsFunction() 260 : &(*where).second; in AugmentedCFGPredecessorsFunction() 267 auto where = augmented_successors_map_.find(block); in AugmentedStructuralCFGSuccessorsFunction() 268 return where == augmented_successors_map_.end() in AugmentedStructuralCFGSuccessorsFunction() 270 : &(*where).second; in AugmentedStructuralCFGSuccessorsFunction() 277 auto where [all...] |
/third_party/icu/icu4c/source/tools/gencmn/ |
H A D | gencmn.c | 70 FILE *where = argc < 0 ? stderr : stdout; in main() local 76 fprintf(where, in main() 79 fprintf(where, "\n" in main() 82 fprintf(where, "\n" in main() 89 fprintf(where, in main()
|
/third_party/node/deps/icu-small/source/tools/gencmn/ |
H A D | gencmn.c | 70 FILE *where = argc < 0 ? stderr : stdout; in main() local 76 fprintf(where, in main() 79 fprintf(where, "\n" in main() 82 fprintf(where, "\n" in main() 89 fprintf(where, in main()
|
/third_party/skia/third_party/externals/icu/source/tools/gencmn/ |
H A D | gencmn.c | 70 FILE *where = argc < 0 ? stderr : stdout; in main() local 76 fprintf(where, in main() 79 fprintf(where, "\n" in main() 82 fprintf(where, "\n" in main() 89 fprintf(where, in main()
|