/third_party/flutter/skia/third_party/externals/sdl/src/ |
D | SDL_hints.c | 51 SDL_Hint *hint; in SDL_SetHintWithPriority() local 63 for (hint = SDL_hints; hint; hint = hint->next) { in SDL_SetHintWithPriority() 64 if (SDL_strcmp(name, hint->name) == 0) { in SDL_SetHintWithPriority() 65 if (priority < hint->priority) { in SDL_SetHintWithPriority() 68 if (!hint->value || !value || SDL_strcmp(hint->value, value) != 0) { in SDL_SetHintWithPriority() 69 for (entry = hint->callbacks; entry; ) { in SDL_SetHintWithPriority() 72 entry->callback(entry->userdata, name, hint->value, value); in SDL_SetHintWithPriority() 75 SDL_free(hint->value); in SDL_SetHintWithPriority() 76 hint->value = value ? SDL_strdup(value) : NULL; in SDL_SetHintWithPriority() 78 hint->priority = priority; in SDL_SetHintWithPriority() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
D | getaddrinfo.c | 39 struct addrinfo *result, hint; in getaddrinfo_0100() local 40 hint.ai_flags = AI_PASSIVE; in getaddrinfo_0100() 41 hint.ai_family = AF_UNSPEC; in getaddrinfo_0100() 42 int ret = getaddrinfo("127.0.0.1", NULL, &hint, &result); in getaddrinfo_0100() 56 struct addrinfo *result, hint; in getaddrinfo_0200() local 57 hint.ai_flags = AI_ALL; in getaddrinfo_0200() 58 hint.ai_family = AF_UNSPEC; in getaddrinfo_0200() 59 int ret = getaddrinfo("127.0.0.1", NULL, &hint, &result); in getaddrinfo_0200() 74 struct addrinfo *result, hint; in getaddrinfo_0300() local 75 hint.ai_flags = AI_NUMERICHOST; in getaddrinfo_0300() [all …]
|
/third_party/musl/Benchmark/musl/ |
D | libc_network.cpp | 40 struct addrinfo hint; in Bm_function_Getaddrinfo_intranet1() local 42 bzero(&hint, sizeof(struct addrinfo)); in Bm_function_Getaddrinfo_intranet1() 43 hint.ai_flags = AI_PASSIVE; in Bm_function_Getaddrinfo_intranet1() 44 hint.ai_family = AF_UNSPEC; in Bm_function_Getaddrinfo_intranet1() 46 int n = getaddrinfo("127.0.0.1", nullptr, &hint, &res); in Bm_function_Getaddrinfo_intranet1() 58 struct addrinfo hint; in Bm_function_Getaddrinfo_intranet2() local 60 bzero(&hint, sizeof(struct addrinfo)); in Bm_function_Getaddrinfo_intranet2() 61 hint.ai_flags = AI_ALL; // Find IPv4 and IPV6 in Bm_function_Getaddrinfo_intranet2() 62 hint.ai_family = AF_UNSPEC; // not specified in Bm_function_Getaddrinfo_intranet2() 64 int n = getaddrinfo("127.0.0.1", nullptr, &hint, &res); in Bm_function_Getaddrinfo_intranet2() [all …]
|
/third_party/freetype/src/pshinter/ |
D | pshalgo.c | 82 PSH_Hint hint = table->hints; in psh_hint_table_deactivate() local 85 for ( ; count > 0; count--, hint++ ) in psh_hint_table_deactivate() 87 psh_hint_deactivate( hint ); in psh_hint_table_deactivate() 88 hint->order = -1; in psh_hint_table_deactivate() 98 PSH_Hint hint = table->hints + idx; in psh_hint_table_record() local 108 if ( psh_hint_is_active( hint ) ) in psh_hint_table_record() 111 psh_hint_activate( hint ); in psh_hint_table_record() 121 hint->parent = NULL; in psh_hint_table_record() 126 if ( psh_hint_overlap( hint, hint2 ) ) in psh_hint_table_record() 128 hint->parent = hint2; in psh_hint_table_record() [all …]
|
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
D | pshalgo.c | 82 PSH_Hint hint = table->hints; in psh_hint_table_deactivate() local 85 for ( ; count > 0; count--, hint++ ) in psh_hint_table_deactivate() 87 psh_hint_deactivate( hint ); in psh_hint_table_deactivate() 88 hint->order = -1; in psh_hint_table_deactivate() 98 PSH_Hint hint = table->hints + idx; in psh_hint_table_record() local 108 if ( psh_hint_is_active( hint ) ) in psh_hint_table_record() 111 psh_hint_activate( hint ); in psh_hint_table_record() 121 hint->parent = NULL; in psh_hint_table_record() 126 if ( psh_hint_overlap( hint, hint2 ) ) in psh_hint_table_record() 128 hint->parent = hint2; in psh_hint_table_record() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/pshinter/ |
D | pshalgo.c | 83 PSH_Hint hint = table->hints; in psh_hint_table_deactivate() local 86 for ( ; count > 0; count--, hint++ ) in psh_hint_table_deactivate() 88 psh_hint_deactivate( hint ); in psh_hint_table_deactivate() 89 hint->order = -1; in psh_hint_table_deactivate() 99 PSH_Hint hint = table->hints + idx; in psh_hint_table_record() local 109 if ( psh_hint_is_active( hint ) ) in psh_hint_table_record() 112 psh_hint_activate( hint ); in psh_hint_table_record() 122 hint->parent = NULL; in psh_hint_table_record() 127 if ( psh_hint_overlap( hint, hint2 ) ) in psh_hint_table_record() 129 hint->parent = hint2; in psh_hint_table_record() [all …]
|
/third_party/node/deps/npm/node_modules/es-to-primitive/ |
D | es2015.js | 10 var ordinaryToPrimitive = function OrdinaryToPrimitive(O, hint) { argument 14 if (typeof hint !== 'string' || (hint !== 'number' && hint !== 'string')) { 17 var methodNames = hint === 'string' ? ['toString', 'valueOf'] : ['valueOf', 'toString']; 47 var hint = 'default'; 50 hint = 'string'; 52 hint = 'number'; 65 var result = exoticToPrim.call(input, hint); 71 if (hint === 'default' && (isDate(input) || isSymbol(input))) { 72 hint = 'string'; 74 return ordinaryToPrimitive(input, hint === 'default' ? 'number' : hint);
|
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_hash.c | 58 static int countBits(int hint) in countBits() argument 61 int bits = hint; in countBits() 70 } else if (primeForNumBits(numBits) < hint) { in countBits() 95 static void cso_data_rehash(struct cso_hash *hash, int hint) in cso_data_rehash() argument 97 if (hint < 0) { in cso_data_rehash() 98 hint = countBits(-hint); in cso_data_rehash() 99 if (hint < MinNumBits) in cso_data_rehash() 100 hint = MinNumBits; in cso_data_rehash() 101 hash->userNumBits = (short)hint; in cso_data_rehash() 102 while (primeForNumBits(hint) < (hash->size >> 1)) in cso_data_rehash() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/ |
D | pshints.c | 90 cf2_hint_init( CF2_Hint hint, in cf2_hint_init() argument 102 FT_ZERO( hint ); in cf2_hint_init() 116 hint->csCoord = stemHint->max; in cf2_hint_init() 117 hint->flags = CF2_GhostBottom; in cf2_hint_init() 120 hint->flags = 0; in cf2_hint_init() 128 hint->flags = 0; in cf2_hint_init() 131 hint->csCoord = stemHint->min; in cf2_hint_init() 132 hint->flags = CF2_GhostTop; in cf2_hint_init() 158 hint->csCoord = stemHint->max; in cf2_hint_init() 159 hint->flags = CF2_PairBottom; in cf2_hint_init() [all …]
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | pshints.c | 90 cf2_hint_init( CF2_Hint hint, in cf2_hint_init() argument 102 FT_ZERO( hint ); in cf2_hint_init() 116 hint->csCoord = stemHint->max; in cf2_hint_init() 117 hint->flags = CF2_GhostBottom; in cf2_hint_init() 120 hint->flags = 0; in cf2_hint_init() 128 hint->flags = 0; in cf2_hint_init() 131 hint->csCoord = stemHint->min; in cf2_hint_init() 132 hint->flags = CF2_GhostTop; in cf2_hint_init() 158 hint->csCoord = stemHint->max; in cf2_hint_init() 159 hint->flags = CF2_PairBottom; in cf2_hint_init() [all …]
|
/third_party/freetype/src/psaux/ |
D | pshints.c | 90 cf2_hint_init( CF2_Hint hint, in cf2_hint_init() argument 102 FT_ZERO( hint ); in cf2_hint_init() 116 hint->csCoord = stemHint->max; in cf2_hint_init() 117 hint->flags = CF2_GhostBottom; in cf2_hint_init() 120 hint->flags = 0; in cf2_hint_init() 128 hint->flags = 0; in cf2_hint_init() 131 hint->csCoord = stemHint->min; in cf2_hint_init() 132 hint->flags = CF2_GhostTop; in cf2_hint_init() 158 hint->csCoord = stemHint->max; in cf2_hint_init() 159 hint->flags = CF2_PairBottom; in cf2_hint_init() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/PGI/ |
D | PGI_misc_hints.txt | 100 This hint indicates whether the application is willing to accept 108 This hint indicates whether the application is willing to accept 115 This hint indicates whether the application is willing to accept 122 This hint indicates whether the application is willing to accept 130 This hint indicates that the application is about to perform 141 This hint indicates that the application has completed native-API 144 hint. When <mode> is NICEST, GL assumes that the entire native-API 152 The hint indicates that the application should attempt to conserve 161 The hint indicates that the application should reclaim unused 196 hither/yon clipping when the depth test is disabled. (The hint [all …]
|
/third_party/openGLES/extensions/PGI/ |
D | PGI_misc_hints.txt | 100 This hint indicates whether the application is willing to accept 108 This hint indicates whether the application is willing to accept 115 This hint indicates whether the application is willing to accept 122 This hint indicates whether the application is willing to accept 130 This hint indicates that the application is about to perform 141 This hint indicates that the application has completed native-API 144 hint. When <mode> is NICEST, GL assumes that the entire native-API 152 The hint indicates that the application should attempt to conserve 161 The hint indicates that the application should reclaim unused 196 hither/yon clipping when the depth test is disabled. (The hint [all …]
|
/third_party/jerryscript/tests/debugger/ |
D | do_throw_adv.expected | 5 Exception hint: 2 11 Exception hint: 4 15 Exception hint: Catch again 19 Exception hint: 7 23 Exception hint: 10 27 Exception hint: Replace the other error 31 Exception hint: 13 35 Exception hint: Should be caught 39 Exception hint: 16
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fBufferMapTests.cpp | 613 const deUint32 hint = GL_STATIC_READ; in init() local 618 …xt, (string(getBufferTargetName(target)) + "_full").c_str(), "", target, hint, size, 0, size, wri… in init() 619 …, (string(getBufferTargetName(target)) + "_partial").c_str(), "", target, hint, size, partialOffs,… in init() 633 deUint32 hint = usageHints[hintNdx]; in init() local 635 string name = string(getBufferTargetName(target)) + "_" + getUsageHintName(hint); in init() 637 …hintsGroup->addChild(new BufferMapReadCase(m_context, name.c_str(), "", target, hint, size, 0, siz… in init() 658 deUint32 hint = GL_STATIC_DRAW; in init() local 662 string name = string(getBufferTargetName(target)) + "_" + getUsageHintName(hint); in init() 664 …context, (string(getBufferTargetName(target)) + "_full").c_str(), "", target, hint, size, verify)); in init() 665 …, (string(getBufferTargetName(target)) + "_partial").c_str(), "", target, hint, size, partialOffs,… in init() [all …]
|
D | es3fBufferCopyTests.cpp | 155 deUint32 hint, in SingleBufferCopyCase() argument 160 , m_hint (hint) in SingleBufferCopyCase() 268 const deUint32 hint = GL_STATIC_DRAW; in init() local 272 …icBufferCopyCase(m_context, name.c_str(), "", srcTarget, size, hint, dstTarget, size, hint, 0, 0, … in init() 306 deUint32 hint = GL_STATIC_DRAW; in init() local 310 srcTarget, cases[ndx].srcSize, hint, in init() 311 dstTarget, cases[ndx].dstSize, hint, in init() 331 const deUint32 hint = GL_STATIC_DRAW; in init() local 335 …ddChild(new SingleBufferCopyCase(m_context, name.c_str(), "", srcTarget, dstTarget, hint, verify)); in init()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_fieldhint.c | 34 FILE *hint; member 68 s->hint = av_fopen_utf8(s->hint_file_str, "r"); in init() 69 if (!s->hint) { in init() 118 char hint = '=', field = '='; in filter_frame() local 134 if (fgets(buf, sizeof(buf)-1, s->hint)) { in filter_frame() 138 } else if (sscanf(buf, "%"PRId64",%"PRId64" %c %c", &tf, &bf, &hint, &field) == 4) { in filter_frame() 140 } else if (sscanf(buf, "%"PRId64",%"PRId64" %c", &tf, &bf, &hint) == 3) { in filter_frame() 205 switch (hint) { in filter_frame() 223 av_log(ctx, AV_LOG_ERROR, "Invalid hint: %c.\n", hint); in filter_frame() 271 if (s->hint) in uninit() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/manual/network/ |
D | getnameinfo.c | 55 struct addrinfo *result, hint; in getnameinfo_0200() local 56 hint.ai_flags = AI_NUMERICHOST; in getnameinfo_0200() 57 hint.ai_family = AF_INET6; in getnameinfo_0200() 59 ret = getaddrinfo(buf, NULL, &hint, &result); in getnameinfo_0200() 137 struct addrinfo *result, hint; in getnameinfo_0600() local 138 hint.ai_flags = AI_NUMERICHOST; in getnameinfo_0600() 139 hint.ai_family = AF_INET6; in getnameinfo_0600() 141 ret = getaddrinfo(buf, NULL, &hint, &result); in getnameinfo_0600()
|
/third_party/typescript/src/compiler/transformers/ |
D | es5.ts | 13 …let previousOnEmitNode: (hint: EmitHint, node: Node, emitCallback: (hint: EmitHint, node: Node) =>… 46 …function onEmitNode(hint: EmitHint, node: Node, emitCallback: (emitContext: EmitHint, node: Node) … 56 previousOnEmitNode(hint, node, emitCallback); 65 function onSubstituteNode(hint: EmitHint, node: Node) { 67 return previousOnSubstituteNode(hint, node); 70 node = previousOnSubstituteNode(hint, node);
|
/third_party/musl/src/network/ |
D | getaddrinfo.c | 12 …restrict host, const char *restrict serv, const struct addrinfo *restrict hint, struct addrinfo **… in getaddrinfo() argument 15 if (dns_get_addr_info_from_netsys_cache(host, serv, hint, res) == 0) { in getaddrinfo() 30 if (hint) { in getaddrinfo() 31 family = hint->ai_family; in getaddrinfo() 32 flags = hint->ai_flags; in getaddrinfo() 33 proto = hint->ai_protocol; in getaddrinfo() 34 socktype = hint->ai_socktype; in getaddrinfo() 142 dns_set_addr_info_to_netsys_cache(host, serv, hint, *res); in getaddrinfo()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree_container.h | 296 iterator insert(const_iterator hint, const value_type &v) { in insert() argument 298 .insert_hint_unique(iterator(hint), params_type::key(v), v) in insert() 301 iterator insert(const_iterator hint, value_type &&v) { in insert() argument 303 .insert_hint_unique(iterator(hint), params_type::key(v), std::move(v)) in insert() 307 iterator emplace_hint(const_iterator hint, Args &&... args) { in emplace_hint() argument 310 .insert_hint_unique(iterator(hint), params_type::key(v), std::move(v)) in emplace_hint() 332 iterator insert(const_iterator hint, node_type &&node) { in insert() argument 335 iterator(hint), params_type::key(CommonAccess::GetSlot(node)), in insert() 432 iterator insert_or_assign(const_iterator hint, const key_arg<K> &k, in insert_or_assign() argument 434 return insert_or_assign_hint_impl(hint, k, obj); in insert_or_assign() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/ |
D | WhatsNew.txt | 13 …ng a window will not be delivered to the SDL application. You can set the hint SDL_HINT_MOUSE_FOCU… 14 …l use a newer BMP format that supports alpha information. You can set the hint SDL_HINT_BMP_SAVE_L… 15 * Added SDL_GetHintBoolean() to get the boolean value of a hint 30 * Added a hint SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING to prevent SDL from raising a debugger except… 31 * The hint SDL_HINT_THREAD_STACK_SIZE is now supported on Windows 57 * Added a hint SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION to control whether he Apple TV remote's joys… 92 * Added a hint SDL_HINT_NO_SIGNAL_HANDLERS to disable SDL's built in signal handling 93 * Added a hint SDL_HINT_THREAD_STACK_SIZE to set the stack size of SDL's threads 97 * Added a hint SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN to prevent window interaction while… 105 * Timer resolution is now 1 ms by default, adjustable with the SDL_HINT_TIMER_RESOLUTION hint [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/timer/windows/ |
D | SDL_systimer.c | 64 SDL_TimerResolutionChanged(void *userdata, const char *name, const char *oldValue, const char *hint) in SDL_TimerResolutionChanged() argument 69 if (hint && *hint) { in SDL_TimerResolutionChanged() 70 uPeriod = SDL_atoi(hint); in SDL_TimerResolutionChanged() 74 if (uPeriod || oldValue != hint) { in SDL_TimerResolutionChanged()
|
/third_party/flutter/engine/flutter/lib/ui/semantics/ |
D | semantics_update_builder.cc | 54 std::string hint, in updateNode() argument 85 node.hint = hint; in updateNode() 106 std::string hint, in updateCustomAction() argument 112 action.hint = hint; in updateCustomAction()
|
/third_party/typescript/lib/ |
D | lib.es2015.symbol.wellknown.d.ts | 89 [Symbol.toPrimitive](hint: string): symbol; 114 [Symbol.toPrimitive](hint: "default"): string; 118 [Symbol.toPrimitive](hint: "string"): string; 122 [Symbol.toPrimitive](hint: "number"): number; 131 [Symbol.toPrimitive](hint: string): string | number;
|