Home
last modified time | relevance | path

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

12345678910>>...659

/third_party/node/test/fixtures/
H A Ddocument_with_special_heading.md3 Sometimes heading contains more than just one text child, the current file is
4 there to test just that.
/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/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/curl/tests/unit/
H A Dunit1652.c113 /* A string just long enough to not be truncated */
122 /* Just over the limit for truncation without newline */
128 /* Just over the limit for truncation with newline */
/third_party/EGL/extensions/MESA/
H A DEGL_MESA_image_dma_buf_export.txt125 2. Should the API take a plane and just get the fd/stride/offset for that
128 ANSWER: UNKNOWN,this might be just as valid an API.
142 Just use the KHR 64-bit type.
/third_party/gn/src/util/
H A Daligned_alloc.h64 // Allocate block and store its address just before just before the in Alloc()
97 // Read address of real block just before the aligned block. in Free()
/third_party/libunwind/libunwind/src/coredump/
H A D_UCD_get_threadinfo_prstatus.c37 * This _UCD_elf_visit_notes() callback just increments a count for each
55 * This _UCD_elf_visit_notes() callback just copies the actual data structure
82 * with multiple NT_PRSTATUS notes in it, or multiple PT_NOTE segments. Just to
/third_party/mesa3d/docs/_extra/specs/
H A DMESA_image_dma_buf_export.txt125 2. Should the API take a plane and just get the fd/stride/offset for that
128 ANSWER: UNKNOWN,this might be just as valid an API.
142 Just use the KHR 64-bit type.
/third_party/node/src/crypto/
H A Dcrypto_pbkdf2.cc14 using v8::Just;
48 return Just(!result->IsEmpty()); in EncodeOutput()
111 return Just(true); in AdditionalConfig()
H A Dcrypto_scrypt.cc14 using v8::Just;
52 return Just(!result->IsEmpty()); in EncodeOutput()
114 return Just(true); in AdditionalConfig()

Completed in 16 milliseconds

12345678910>>...659