Home
last modified time | relevance | path

Searched full:just (Results 151 - 175 of 16479) sorted by relevance

12345678910>>...660

/third_party/skia/third_party/externals/libpng/scripts/
H A Dpnglibconf.dfa40 # used as given (e.g. enables GAMMA just expands to that on the
317 # BENIGN_ERRORS: support for just issuing warnings for recoverable errors
320 # By default recoverable errors on read should just generate warnings,
325 # By default recoverable errors on write should just generate warnings,
472 # gamma processing; and it is an enormous waste of space. You just need to
564 # tEXt, zTXt, tRNS, pCAL). Others will just save time and make png_info
599 # Colorspace support (enabled as required); just the support for colorant
600 # information. Gamma support, likewise, is just support for the gamma
607 # processing, it just validates the data in the PNG file.
619 # 0: Just validat
[all...]
/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc73 // downloading one piece of software just to find that they need to
75 // people downloading Protocol Buffers will already be doing so just
77 // our code, but that obligates us to keep it up-to-date and just seems
78 // like a big waste just to save 200 lines of code.
83 // have its locale set to "C", it would behave strangely. We can't just set
301 current_.type = TYPE_START; // Just for the sake of initializing it. in StartToken()
385 // just be consumed by the main loop anyway so we don't need in ConsumeString()
548 // Oops, it was just a slash. Return it. in TryConsumeCommentStart()
611 // just be a '.' symbol. in Next()
665 // This basically just buffer
[all...]
/third_party/gn/docs/
H A Dquick_start.md7 You just run `gn` from the command line. For large projects, GN is versioned
102 Now we just need to tell the build about this new target. Open the `BUILD.gn`
104 file, and then loads all dependencies ourward from here, so we just need to add
110 So let's make a "tools" group. In GN, a "group" is just a collection of
326 will print out lots of exciting information. You can also print just one
/third_party/fsverity-utils/
H A DREADME.md19 fsverity-utils currently contains just one program, `fsverity`. The
72 (`man fsverity`). Here, we just show some typical examples.
99 get any authenticity protection (as opposed to just integrity
105 First, note that fs-verity is essentially just a way of hashing a
227 then you just add a line saying::
/third_party/curl/docs/libcurl/
H A Dcurl_easy_getinfo.md110 Time from start until just before the transfer begins.
115 Time from start until just before the transfer begins.
125 Time from start until just when the first byte is received.
130 Time from start until just when the first byte is received.
429 took from the start until the file transfer is just about to begin. This
/third_party/gn/src/gn/
H A Dninja_action_target_writer.cc68 // and the action will just depend on all the input deps directly. in Run()
100 // Write any order-only deps out for actions just like they are for in Run()
125 // TODO(thakis): If the action has just a single output, make things depend in Run()
152 // just always define unique_name. in WriteRuleDefinition()
229 // Write any order-only deps out for actions just like they are written in WriteSourceRules()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPersonName.java12 * object just for formatting) or to override the default modifier behavior described
68 * just go in the SURNAME field.)
139 * field. If the PersonName object doesn't apply this modifier, PersonNameFormatter just
149 * "van den Hul", this requests just the prefixes ("van den"). Only applied to the "surname"
160 * "van den Hul", this requests just the main word ("Hul"). Only applied to the "surname"
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationThaiTest.java168 // right, just not looking at the colation keys in detail... in TestDictionary()
260 "\u0E41\u0301", "=", "\u0E41\u0301", // unsafe (just checking backwards iteration) in TestReordering()
267 "abc\u0E41\u0301", "=", "abc\u0E41\u0301", // unsafe (just checking backwards iteration) in TestReordering()
274 "\u0E41\u0301abc", "=", "\u0E41\u0301abc", // unsafe (just checking backwards iteration) in TestReordering()
281 "abc\u0E41\u0301abc", "=", "abc\u0E41\u0301abc", // unsafe (just checking backwards iteration) in TestReordering()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java45 * On failure, returns the error. This implementation just returns null.
56 * On failure, returns the error. This implementation just returns null.
67 * On failure, returns the error. This implementation just returns null.
78 * On failure, returns the error. This implementation just returns null.
89 * On failure, returns the error. This implementation just returns null.
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationThaiTest.java171 // right, just not looking at the colation keys in detail... in TestDictionary()
263 "\u0E41\u0301", "=", "\u0E41\u0301", // unsafe (just checking backwards iteration) in TestReordering()
270 "abc\u0E41\u0301", "=", "abc\u0E41\u0301", // unsafe (just checking backwards iteration) in TestReordering()
277 "\u0E41\u0301abc", "=", "\u0E41\u0301abc", // unsafe (just checking backwards iteration) in TestReordering()
284 "abc\u0E41\u0301abc", "=", "abc\u0E41\u0301abc", // unsafe (just checking backwards iteration) in TestReordering()
/third_party/node/deps/v8/src/inspector/
H A Dstring-util.cc24 if ('A' <= byte && byte <= 'Z') return v8::Just<uint8_t>(byte - 'A'); in DecodeByte()
25 if ('a' <= byte && byte <= 'z') return v8::Just<uint8_t>(byte - 'a' + 26); in DecodeByte()
27 return v8::Just<uint8_t>(byte - '0' + 26 + 26); in DecodeByte()
28 if (byte == '+') return v8::Just<uint8_t>(62); in DecodeByte()
29 if (byte == '/') return v8::Just<uint8_t>(63); in DecodeByte()
/third_party/node/deps/openssl/openssl/apps/include/
H A Dopt.h170 {"no_ssl3", OPT_S_NOSSL3, '-',"Just disable SSLv3" }, \
171 {"no_tls1", OPT_S_NOTLS1, '-', "Just disable TLSv1"}, \
172 {"no_tls1_1", OPT_S_NOTLS1_1, '-', "Just disable TLSv1.1" }, \
173 {"no_tls1_2", OPT_S_NOTLS1_2, '-', "Just disable TLSv1.2"}, \
174 {"no_tls1_3", OPT_S_NOTLS1_3, '-', "Just disable TLSv1.3"}, \
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/
H A DNfaFlattener.java105 // Visit the trivial "subgraph" that's really just a single edge. Note that this code could in visitSubgraph()
130 // If we just processed the last "joining" paths then this sub-graph has been collapsed in visitSubgraph()
131 // into a single edge and we just return the current follower. Note that we can join edges in visitSubgraph()
136 // Recurse into the next sub-graph (possibly just a single edge) which is just concatenated in visitSubgraph()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
H A DFieldAccessTest.cs75 // Just one example for repeated fields - they're all just returning the list in GetValue()
78 Assert.AreEqual(message.RepeatedInt32[0], list[0]); // Just in case there was any doubt... in GetValue()
80 // Just a single map field, for the same reason in GetValue()
124 // Just a sample (primitives, messages, enums, strings, byte strings) in SetValue_SingleFields()
/third_party/openssl/apps/include/
H A Dopt.h170 {"no_ssl3", OPT_S_NOSSL3, '-',"Just disable SSLv3" }, \
171 {"no_tls1", OPT_S_NOTLS1, '-', "Just disable TLSv1"}, \
172 {"no_tls1_1", OPT_S_NOTLS1_1, '-', "Just disable TLSv1.1" }, \
173 {"no_tls1_2", OPT_S_NOTLS1_2, '-', "Just disable TLSv1.2"}, \
174 {"no_tls1_3", OPT_S_NOTLS1_3, '-', "Just disable TLSv1.3"}, \
/third_party/vk-gl-cts/external/vulkan-docs/src/config/extension-highlighter/
H A Dextension.rb56 # Undefined attribute is currently just the extension with "_undefined"
119 # Undefined attribute is currently just the extension with "_undefined"
174 # In practice it *might just work* but it also might not.
175 # May need to consider what to do about this in future - maybe just
183 # That should not be a problem in practice though, it just might look
/third_party/rust/crates/proc-macro-error/
H A DREADME.md17 So you can just use this crate and have *both* some of `proc_macro::Diagnostic` functionality
102 // so just highlight the proc-macro invocation itself
153 // just return a TokenStream as you normally would
189 a [`compile_error!`][compl_err] invocation or just use a good old panic. Both these ways suck:
192 just for critical errors that will crash the macro anyway; so people mostly
/third_party/curl/lib/
H A Dselect.c54 * is provided to wait on, just being used to delay execution.
138 /* no sockets, just wait */ in our_select()
154 It is unclear why WinSock doesn't just handle this for us instead of in our_select()
156 many bits are set on an fd_set. So, let's just check it beforehand. in our_select()
200 /* no sockets, just wait */ in Curl_socket_check()
295 /* no sockets, just wait */ in Curl_poll()
/third_party/curl/docs/
H A DMAIL-ETIQUETTE65 services, by all means go ahead, but if it's just another curl question,
133 the email, your post will just be silently discarded.
179 or just remove them completely from the mail. Note that this includes base64
198 just hit reply on an existing mail and change the subject, create a new mail.
203 reply" or "reply to all", and not just reply to the author of the single
251 Quote as little as possible. Just enough to provide the context you cannot
/third_party/libbpf/src/
H A Dbpf_helpers.h66 * vmlinux.h. This just adds unnecessary hurdles and forces users to re-define
327 * *`, not just `int`. So for integers bpf_for() is more convenient.
336 struct bpf_iter_##type ___it __attribute__((aligned(8), /* enforce, just in case */, \
338 /* ___p pointer is just to call bpf_iter_##type##_new() *once* to init ___it */ \
365 struct bpf_iter_num ___it __attribute__((aligned(8), /* enforce, just in case */ \
390 struct bpf_iter_num ___it __attribute__((aligned(8), /* enforce, just in case */ \
/third_party/mesa3d/src/freedreno/decode/
H A Dscript.c222 /* if a register has no bitfields, just return in l_rnn_etype()
301 /* if just a single sub-element, it is directly a register, in l_rnn_array_meta_index()
641 /* if no handler just ignore it: */ in script_start_cmdstream()
665 /* if no handler just ignore it: */ in script_draw()
731 /* if no handler for the packet, just ignore it: */ in script_packet()
766 /* if no handler just ignore it: */ in simple_call()
/third_party/node/src/quic/
H A Dtlscontext.cc20 using v8::Just;
30 // TODO(@jasnell): This session class is just a placeholder.
189 if (!bio) return Just(false); in InitializeSecureContext()
219 if (!bio) return Just(false); in InitializeSecureContext()
487 // The early data will just be ignored if it's invalid. in MaybeSetEarlySession()
583 return Just<const Options>(options); in From()
/third_party/node/deps/npm/node_modules/@npmcli/metavuln-calculator/lib/
H A Dadvisory.js102 // just don't use the cached data, so we will definitely not match later
126 // if no changes, then just return what we got from cache
155 // advisories just get their range from the advisory above
176 // we don't test prerelease versions, so just skip past it
191 // it'll either be just the first version, which means no overlap,
238 // advisory, just test range
/third_party/node/deps/v8/src/compiler/
H A Dredundancy-elimination.cc266 // If we do not know anything about the predecessor, do not propagate just yet in ReduceCheckNode()
283 // The loop entry edge always dominates the header, so we can just use in ReduceEffectPhi()
316 // If we do not know anything about the predecessor, do not propagate just yet in ReduceSpeculativeNumberComparison()
377 // If we do not know anything about the predecessor, do not propagate just yet in ReduceSpeculativeNumberOperation()
420 // If we do not know anything about the predecessor, do not propagate just yet in TakeChecksFromFirstEffect()
423 // We just propagate the information from the effect input (ideally, in TakeChecksFromFirstEffect()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_cts.c176 * block using an IV of zero. For decryption the IV is just XORed after in cts128_cs1_decrypt()
177 * doing an Cipher CBC block - so just XOR in the cipher text. in cts128_cs1_decrypt()
205 /* If we only have one block then just process the aligned block */ in cts128_cs3_encrypt()
245 /* If we only have one block then just process the aligned block */ in cts128_cs3_decrypt()
283 * block using an IV of zero. For decryption the IV is just XORed after in cts128_cs3_decrypt()
284 * doing an AES block - so just XOR in the ciphertext. in cts128_cs3_decrypt()

Completed in 18 milliseconds

12345678910>>...660