/third_party/curl/lib/ |
H A D | headers.c | 74 struct Curl_header_store *pick = NULL; in curl_easy_header() local 93 pick = hs; in curl_easy_header() 104 hs = pick; in curl_easy_header() 133 struct Curl_llist_element *pick; in curl_easy_nextheader() local 145 pick = prev->anchor; in curl_easy_nextheader() 146 if(!pick) in curl_easy_nextheader() 149 pick = pick->next; in curl_easy_nextheader() 152 pick = data->state.httphdrs.head; in curl_easy_nextheader() 154 if(pick) { in curl_easy_nextheader() [all...] |
H A D | http.c | 364 static bool pickoneauth(struct auth *pick, unsigned long mask) in pickoneauth() argument 368 unsigned long avail = pick->avail & pick->want & mask; in pickoneauth() 374 pick->picked = CURLAUTH_NEGOTIATE; in pickoneauth() 377 pick->picked = CURLAUTH_BEARER; in pickoneauth() 381 pick->picked = CURLAUTH_DIGEST; in pickoneauth() 384 pick->picked = CURLAUTH_NTLM; in pickoneauth() 386 pick->picked = CURLAUTH_NTLM_WB; in pickoneauth() 389 pick->picked = CURLAUTH_BASIC; in pickoneauth() 393 pick in pickoneauth() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | bindingPatternContextualTypeDoesNotCauseWidening.js | 2 declare function pick<O, T extends keyof O>(keys: T[], obj?: O): Pick<O, T>; 3 const _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 4 const { } = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix) 8 var _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b"
9 var _a = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix)
|
H A D | keyofIsLiteralContexualType.js | 11 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; 13 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]); 22 var x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]);
|
H A D | mappedTypes2.js | 28 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>; 76 const x = pick(shape, "name", "location"); // { name: string, location: Point } 122 var x = pick(shape, "name", "location"); // { name: string, location: Point }
154 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>;
|
H A D | underscoreTest1.js | 43 pick(...keys: string[]): T; 217 pick(...keys: string[]): ChainedObject<T>; 326 pick(...keys: string[]): ChainedArray<T>; 377 pick(...keys: string[]): ChainedDictionary<T>; 592 pick<T>(object: T, ...keys: string[]): T; 800 _.pick({ name: 'moe', age: 50, userid: 'moe1' }, 'name', 'age'); 1017 _.pick({ name: 'moe', age: 50, userid: 'moe1' }, 'name', 'age');
|
/third_party/skia/third_party/externals/brotli/research/ |
H A D | durchschlag.cc | 108 MetaSlot& pick = slots[slice]; in buildCandidatesList() local 109 if (pick.mark == 0) { in buildCandidatesList() 110 score += pick.score; in buildCandidatesList() 112 pick.mark++; in buildCandidatesList() 130 MetaSlot& pick = slots[slice]; in buildCandidatesList() local 131 if (pick.mark == 0) { in buildCandidatesList() 132 score += pick.score; in buildCandidatesList() 134 pick.mark++; in buildCandidatesList() 197 MetaSlot& pick = slots[shortcut[i + span - 1]]; in rebuildCandidatesList() local 198 if (pick in rebuildCandidatesList() [all...] |
/third_party/mesa3d/bin/ |
H A D | pick-ui.py | 26 from pick.ui import UI, PALETTE
|
/third_party/libunwind/libunwind/src/dwarf/ |
H A D | Gexpr.c | 29 /* The "pick" operator provides an index range of 0..255 indicating 284 # define pick(n) \ in dwarf_eval_expr() macro 289 Debug (1, "Out-of-stack pick\n"); \ in dwarf_eval_expr() 493 push (pick (0)); in dwarf_eval_expr() 503 push (pick (operand1)); in dwarf_eval_expr() 508 push (pick (1)); in dwarf_eval_expr()
|
/third_party/libbpf/scripts/ |
H A D | sync-kernel.sh | 96 # Cherry-pick commits touching libbpf-related files 144 if ! git cherry-pick ${new_commit} &>/dev/null; then 153 echo "Empty cherry-pick, skipping it..." 154 git cherry-pick --abort 160 if ! GIT_EDITOR=true git cherry-pick --continue &>/dev/null; then 163 echo "Success! All cherry-pick conflicts were resolved for '${desc}'!" 247 # Cherry-pick new commits onto squashed baseline commit
|
/third_party/ffmpeg/libavcodec/ |
H A D | ilbcdec.c | 960 int16_t i, pick; in do_plc() local 1142 pick = i - randlag; in do_plc() 1144 if (pick < 0) { in do_plc() 1145 randvec[i] = s->prevResidual[s->block_samples + pick]; in do_plc() 1147 randvec[i] = s->prevResidual[pick]; in do_plc() 1151 pick = i - use_lag; in do_plc() 1153 if (pick < 0) { in do_plc() 1154 plc_residual[i] = s->prevResidual[s->block_samples + pick]; in do_plc() 1156 plc_residual[i] = plc_residual[pick]; in do_plc()
|
H A D | elbg.c | 108 int pick = 0; in get_closest_codebook() local 114 pick = i; in get_closest_codebook() 118 return pick; in get_closest_codebook()
|
H A D | roqvideoenc.c | 314 int i, lDiff = INT_MAX, pick=0; in index_mb() local 321 pick = i; in index_mb() 325 *outIndex = pick; in index_mb()
|
H A D | mobiclip.c | 789 uint8_t (*pick)(BlockXY bxy)) in block_fill() 808 val = pick(bxy); in block_fill()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 848 pick(i, choices, iset); in TestSetRelation() 850 pick(j, choices, jset); in TestSetRelation() 952 void pick(int bits, Object[] examples, SortedSet output) { in pick() method in UnicodeSetTest
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 862 pick(i, choices, iset); in TestSetRelation() 864 pick(j, choices, jset); in TestSetRelation() 966 void pick(int bits, Object[] examples, SortedSet output) { in pick() method in UnicodeSetTest
|
/third_party/ffmpeg/tests/fate/ |
H A D | mov.mak | 89 # Makes sure that we pick the right frames according to edit list when there is no keyframe with PTS < edit list start.
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 163 { package opcode; # pick up opcodes 241 { package const; # pick up constants, which start with $ 276 { package ea; # pick up effective addresses: expr(%reg,%reg,scale) 387 { package register; # pick up registers, which start with %. 429 { package label; # pick up labels, which end with : 496 { package expr; # pick up expressions 563 pick => 0x15, swap => 0x16, 775 { package directive; # pick up directives, which start with .
|
/third_party/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 158 { package opcode; # pick up opcodes 236 { package const; # pick up constants, which start with $ 271 { package ea; # pick up effective addresses: expr(%reg,%reg,scale) 382 { package register; # pick up registers, which start with %. 424 { package label; # pick up labels, which end with : 491 { package expr; # pick up expressions 558 pick => 0x15, swap => 0x16, 770 { package directive; # pick up directives, which start with .
|
/third_party/python/Lib/tkinter/ |
H A D | tix.py | 606 def pick(self, index): member in ComboBox 607 self.tk.call(self._w, 'pick', index)
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 1194 calls to C<fill_in> that use the same package will pick up the values
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1657 ! $acc0-$acc3 to 32-bit values and pick b[4] in 32-bit pieces. But
|
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1657 ! $acc0-$acc3 to 32-bit values and pick b[4] in 32-bit pieces. But
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 1194 calls to C<fill_in> that use the same package will pick up the values
|