Home
last modified time | relevance | path

Searched full:just (Results 126 - 150 of 16448) sorted by relevance

12345678910>>...658

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/personname/
H A DFieldModifierImpl.java42 * A field modifier that just returns the field value unmodified. This is used to implement the default
54 * A field modifier that just returns the empty string. This is used to implement the default behavior of the
143 * A utility function that just returns the first grapheme cluster in the string.
151 // (currently, no locale overrides the grapheme-break rules, so we just use "root" instead of passing in the locale) in getFirstGrapheme()
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/
H A DREADME13 instead of just using insmod to load the module is to ensure that
46 setup the tif pointer. Use the examples I just mentioned
60 test modules you use the one provided here, and just change
93 For this example I just called everything tmod (short for test_mod),
/third_party/libwebsockets/minimal-examples/
H A DREADME.md27 - you can just add it all in the same source file
36 the protocol callback as a plugin just with a different
49 part, you can just use lwsws and pass per-vhost configuration
56 changes. It reduces the size of the task to just writing the
/third_party/node/deps/v8/src/objects/
H A Djs-segments.cc134 isolate, result, factory->segment_string(), segment, Just(kDontThrow)); in CreateSegmentDataObject()
141 factory->NewNumberFromInt(start_index), Just(kDontThrow)); in CreateSegmentDataObject()
150 isolate, result, factory->input_string(), input_string, Just(kDontThrow)); in CreateSegmentDataObject()
167 Just(kDontThrow)); in CreateSegmentDataObject()
/third_party/libabigail/
H A DCOMMIT-LOG-GUIDELINES65 Just describe the "what".
89 commit. It can contain whatever character I want. It just cannot
103 using your words. Just linking to the bugzilla is generally not
106 Then explain how your changes address the issue that you've just
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
H A DProtobufEqualityComparers.cs45 /// This is usually just the default equality comparer for the type, but floating point numbers are compared
94 // Just promote values to double and use BitConverter.DoubleToInt64Bits,
111 // The hash code for null is just a constant which is at least *unlikely* to be used
124 // The hash code for null is just a constant which is at least *unlikely* to be used
/third_party/skia/site/docs/dev/design/
H A Dtext_overview.md14 One primitive in particular stands out: **Text**. It can be drawn with the same common constructs as rects and paths, but it has another component unrelated to actual drawing, a 'processing' step that is surprisingly complex and expensive: **Shaping**. The native frameworks recognized this, and offer a separate set of APIs just around this:
31 - The 'ffi" in office (or possibly just the "fi") **could** be drawn with a specialized form called a [ligature](https://en.wikipedia.org/wiki/Ligature_(writing)).
35 This example in no way attempts to be complete or exhaustive, but it suggests the processing needed to go from just the 'letters' in a sentence, to the actual 'shapes' that must be found or composed from various fonts to finally be able to draw it.
70 We are also proposing a lower level interface, one that just addresses exposing [unicode properties](uni_characterize.md).
/third_party/skia/third_party/externals/microhttpd/doc/chapters/
H A Dexploringrequests.inc7 This time, we just want to collect information in the callback function, thus we will
8 just return MHD_NO after we have probed the request. This way, the connection is closed
41 each pair just like the above function is called for each HTTP request.
102 @code{inet_ntoa} but bear in mind that @code{addr} is actually just a structure containing other
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
H A Dround.hpp45 /// Return the power of two number which value is just higher the input value,
52 /// Return the power of two number which value is just higher the input value,
59 /// Return the power of two number which value is just lower the input value,
66 /// Return the power of two number which value is just lower the input value,
/third_party/typescript/tests/baselines/reference/
H A DawaitedTypeStrictNull.types44 type T13 = _Expect<Awaited<Promise<Promise<number>> | string | null>, /*expected*/ string | number | null>; // otherwise just prints T13 in types tests, which isn't very helpful
49 type T14 = _Expect<Awaited<Promise<Promise<number>> | string | undefined>, /*expected*/ string | number | undefined>; // otherwise just prints T14 in types tests, which isn't very helpful
52 type T15 = _Expect<Awaited<Promise<Promise<number>> | string | null | undefined>, /*expected*/ string | number | null | undefined>; // otherwise just prints T15 in types tests, which isn't very helpful
175 // helps with tests where '.types' just prints out the type alias name
H A DpropertiesAndIndexersForNumericNames.errors.txt47 public " ": string = "just space"; // No error
59 public "1e0": string = "just one"; // No error
60 public "-0": string = "just zero"; // No error
61 public "-0e0": string = "just zero"; // No error
H A DpropertiesAndIndexersForNumericNames.symbols45 public " ": string = "just space"; // No error
70 public "1e0": string = "just one"; // No error
73 public "-0": string = "just zero"; // No error
76 public "-0e0": string = "just zero"; // No error
H A DtsxStatelessFunctionComponentOverload3.symbols37 const two3 = <ZeroThingOrTwoThing {...obj2} />; // it is just any so we allow it to pass through
42 const two4 = <ZeroThingOrTwoThing yy={1000} {...obj2} />; // it is just any so we allow it to pass through
48 const two5 = <ZeroThingOrTwoThing {...obj2} yy={1000} />; // it is just any so we allow it to pass through
91 const three3 = <ThreeThing {...obj2} y2={10} />; // it is just any so we allow it to pass through
H A DtsxStatelessFunctionComponentOverload3.types35 const two3 = <ZeroThingOrTwoThing {...obj2} />; // it is just any so we allow it to pass through
41 const two4 = <ZeroThingOrTwoThing yy={1000} {...obj2} />; // it is just any so we allow it to pass through
49 const two5 = <ZeroThingOrTwoThing {...obj2} yy={1000} />; // it is just any so we allow it to pass through
93 const three3 = <ThreeThing {...obj2} y2={10} />; // it is just any so we allow it to pass through
/third_party/typescript/tests/cases/compiler/
H A DawaitedType.ts16 type T13 = _Expect<Awaited<Promise<Promise<number>> | string | null>, /*expected*/ string | number | null>; // otherwise just prints T13 in types tests, which isn't very helpful
17 type T14 = _Expect<Awaited<Promise<Promise<number>> | string | undefined>, /*expected*/ string | number | undefined>; // otherwise just prints T14 in types tests, which isn't very helpful
18 type T15 = _Expect<Awaited<Promise<Promise<number>> | string | null | undefined>, /*expected*/ string | number | null | undefined>; // otherwise just prints T15 in types tests, which isn't very helpful
163 // helps with tests where '.types' just prints out the type alias name
/third_party/skia/include/gpu/vk/
H A DGrVkMemoryAllocator.h67 // just something to return that is not VK_SUCCESS and can't be interpreted by a caller to in allocateImageMemory()
87 // just something to return that is not VK_SUCCESS and can't be interpreted by a caller to in allocateBufferMemory()
98 // implementation may map more memory than just the allocation, but the returned pointer must
104 // just something to return that is not VK_SUCCESS and can't be interpreted by a caller to in mapMemory()
/third_party/skia/include/private/
H A DSkMalloc.h104 * sk_careful_memcpy() is just like memcpy(), but guards against undefined behavior.
118 // So we just need to skip calling memcpy when len == 0. in sk_careful_memcpy()
127 // So we just need to skip calling memcpy when len == 0. in sk_careful_memmove()
136 // So we just need to skip calling memcmp when len == 0. in sk_careful_memcmp()
/third_party/icu/icu4c/source/tools/icuinfo/
H A Dicuplugins_windows_sample.txt9 # where ## is the major and minor ICU versions (i.e. just 96 for version 9.6.3)
39 # The configuration string isn't used, but is just an example
57 ## A low level plugin that just prints a message when uprv_malloc and related functions are called
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_csb_enum_helpers.h85 /* enum values are identical, so we can just cast the input directly. */ in pvr_ta_cmpmode()
91 /* enum values are identical, so we can just cast the input directly. */ in pvr_ta_stencilop()
129 /* enum values are identical, so we can just cast the input directly. */ in pvr_texstate_cmpmode()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
H A DVK_EXT_texture_compression_astc_hdr.adoc44 The feature is strictly speaking redundant as long as this is just an
45 extension; it would be sufficient to just enable the extension.
58 textures internally and just treat them as the same format, i.e. if this
H A DVK_EXT_texture_compression_astc_hdr.txt35 The feature is strictly speaking redundant as long as this is just an
36 extension; it would be sufficient to just enable the extension.
49 textures internally and just treat them as the same format, i.e. if this
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/
H A Dicuplugins_windows_sample.txt9 # where ## is the major and minor ICU versions (i.e. just 96 for version 9.6.3)
39 # The configuration string isn't used, but is just an example
57 ## A low level plugin that just prints a message when uprv_malloc and related functions are called
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
H A Dplace-dep.js127 // if it's a load failure, just plop it in the first place attempted,
141 // when installing globally, or just in global style, we never place
162 // otherwise, we just skip it. Only warn on the one that actually
274 // in case we just made some duplicates that can be removed,
289 // loop through any peer deps from the thing we just placed, and place
309 // peerConflicted peerEdge, just accept what's there already
365 // to just let it re-evaluate as a problemEdge later, or let it be
410 // otherwise filter the set down to just the set with no
415 // now just delete whatever's left, because it's junk
/third_party/skia/third_party/externals/libpng/
H A Dpngerror.c129 * and end pointer (which should point just *beyond* the end of the buffer!)
287 /* The internal buffer is just 192 bytes - enough for all our messages, in png_formatted_warning()
303 /* '@' at end of string is now just printed (previously it was skipped); in png_formatted_warning()
319 /* If the parameter digit is out of range it will just get printed. */ in png_formatted_warning()
338 /* else not a parameter and there is a character after the @ sign; just in png_formatted_warning()
537 /* This is always supported, but for just read or just write it in png_chunk_report()
602 * buffer is, just that it doesn't change. in png_set_longjmp_fn()
881 * possible to implement without setjmp support just so long as there is some
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DX86DisassemblerDecoderCommon.h97 ENUM_ENTRY(IC_64BIT_OPSIZE, 3, "Just as meaningful as IC_OPSIZE") \
98 ENUM_ENTRY(IC_64BIT_ADSIZE, 3, "Just as meaningful as IC_ADSIZE") \
99 ENUM_ENTRY(IC_64BIT_OPSIZE_ADSIZE, 4, "Just as meaningful as IC_OPSIZE/" \
103 ENUM_ENTRY(IC_64BIT_XS, 6, "Just as meaningful as IC_64BIT_XD") \
104 ENUM_ENTRY(IC_64BIT_XD_OPSIZE, 3, "Just as meaningful as IC_XD_OPSIZE") \
105 ENUM_ENTRY(IC_64BIT_XS_OPSIZE, 3, "Just as meaningful as IC_XS_OPSIZE") \
106 ENUM_ENTRY(IC_64BIT_XD_ADSIZE, 3, "Just as meaningful as IC_XD_ADSIZE") \
107 ENUM_ENTRY(IC_64BIT_XS_ADSIZE, 3, "Just as meaningful as IC_XS_ADSIZE") \
110 ENUM_ENTRY(IC_64BIT_REXW_XD, 7, "Just as meaningful as " \

Completed in 14 milliseconds

12345678910>>...658