| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
| D | ItaniumDemangle.cpp | 62 static const char *parse_number(const char *first, const char *last) { in parse_number() 116 static const char *parse_floating_number(const char *first, const char *last, in parse_floating_number() 155 static const char *parse_source_name(const char *first, const char *last, in parse_source_name() 192 static const char *parse_substitution(const char *first, const char *last, in parse_substitution() 292 static const char *parse_builtin_type(const char *first, const char *last, in parse_builtin_type() 434 static const char *parse_cv_qualifiers(const char *first, const char *last, in parse_cv_qualifiers() 458 static const char *parse_template_param(const char *first, const char *last, in parse_template_param() 503 static const char *parse_const_cast_expr(const char *first, const char *last, in parse_const_cast_expr() 529 static const char *parse_dynamic_cast_expr(const char *first, const char *last, in parse_dynamic_cast_expr() 555 static const char *parse_reinterpret_cast_expr(const char *first, in parse_reinterpret_cast_expr() [all …]
|
| /third_party/protobuf/src/google/protobuf/ |
| D | dynamic_message.h | 194 bool first = reflection->GetBool(*a, field_); in operator() local 199 int32 first = reflection->GetInt32(*a, field_); in operator() local 204 int64 first = reflection->GetInt64(*a, field_); in operator() local 209 uint32 first = reflection->GetUInt32(*a, field_); in operator() local 214 uint64 first = reflection->GetUInt64(*a, field_); in operator() local 219 std::string first = reflection->GetString(*a, field_); in operator() local
|
| /third_party/elfutils/lib/ |
| D | list.h | 33 #define CDBL_LIST_ADD_REAR(first, newp) \ argument 49 #define CDBL_LIST_DEL(first, elem) \ argument 76 #define SNGL_LIST_PUSH(first, newp) \ argument 86 #define CSNGL_LIST_ADD_REAR(first, newp) \ argument
|
| /third_party/typescript/tests/baselines/reference/ |
| D | commentsAfterSpread.js | 38 first, argument 45 first, argument 58 first, .../* comment i */rest argument 62 first, argument 68 first, property 121 function k({ first, ... /* comment k */rest }) { property
|
| D | reverseMappedTypeAssignableToIndex.js | 9 first: "first"; property 13 first: { name: "first" }, property
|
| /third_party/nghttp2/src/ |
| D | base64.h | 49 template <typename InputIt> std::string encode(InputIt first, InputIt last) { in encode() 89 OutputIt encode(InputIt first, InputIt last, OutputIt d_first) { in encode() 130 InputIt next_decode_input(InputIt first, InputIt last, const int *tbl) { in next_decode_input() 140 OutputIt decode(InputIt first, InputIt last, OutputIt d_first) { in decode() 193 template <typename InputIt> std::string decode(InputIt first, InputIt last) { in decode() 207 StringRef decode(BlockAllocator &balloc, InputIt first, InputIt last) { in decode()
|
| /third_party/protobuf/js/experimental/runtime/testing/ |
| D | jasmine_protobuf.js | 21 const byteStringEquality = (first, second) => { argument 38 const arrayBufferCustomEquality = (first, second) => { argument 54 const bufferDecoderCustomEquality = (first, second) => { argument
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| D | Pair.java | 20 public final F first; field in Pair 23 protected Pair(F first, S second) { in Pair() 34 public static <F, S> Pair<F, S> of(F first, S second) { in of()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| D | Pair.java | 18 public final F first; field in Pair 21 protected Pair(F first, S second) { in Pair() 32 public static <F, S> Pair<F, S> of(F first, S second) { in of()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
| D | LocalizedNumberRangeFormatter.java | 37 public FormattedNumberRange formatRange(int first, int second) { in formatRange() 54 public FormattedNumberRange formatRange(double first, double second) { in formatRange() 74 public FormattedNumberRange formatRange(Number first, Number second) { in formatRange() 83 …FormattedNumberRange formatImpl(DecimalQuantity first, DecimalQuantity second, boolean equalBefore… in formatImpl()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
| D | LocalizedNumberRangeFormatter.java | 37 public FormattedNumberRange formatRange(int first, int second) { in formatRange() 55 public FormattedNumberRange formatRange(double first, double second) { in formatRange() 76 public FormattedNumberRange formatRange(Number first, Number second) { in formatRange() 85 …FormattedNumberRange formatImpl(DecimalQuantity first, DecimalQuantity second, boolean equalBefore… in formatImpl()
|
| /third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
| D | validationGL44.cpp | 16 GLuint first, in ValidateBindBuffersBase() 25 GLuint first, in ValidateBindBuffersRange() 35 GLuint first, in ValidateBindImageTextures() 42 bool ValidateBindSamplers(Context *context, GLuint first, GLsizei count, const GLuint *samplers) in ValidateBindSamplers() 47 bool ValidateBindTextures(Context *context, GLuint first, GLsizei count, const GLuint *textures) in ValidateBindTextures() 53 GLuint first, in ValidateBindVertexBuffers()
|
| /third_party/node/deps/npm/node_modules/qs/test/ |
| D | utils.js | 9 var oneMerged = utils.merge({ foo: 'bar' }, { foo: { first: '123' } }); property 10 …t.deepEqual(oneMerged, { foo: ['bar', { first: '123' }] }, 'merges a standalone and an object into… property 12 var twoMerged = utils.merge({ foo: ['bar', { first: '123' }] }, { foo: { second: '456' } }); property 13 …t.deepEqual(twoMerged, { foo: { 0: 'bar', 1: { first: '123' }, second: '456' } }, 'merges a standa… property 15 var sandwiched = utils.merge({ foo: ['bar', { first: '123', second: '456' }] }, { foo: 'baz' }); property 16 …t.deepEqual(sandwiched, { foo: ['bar', { first: '123', second: '456' }, 'baz'] }, 'merges an objec… property
|
| /third_party/flutter/skia/third_party/externals/freetype/src/cache/ |
| D | ftcmru.c | 32 FTC_MruNode first = *plist; in FTC_MruNode_Prepend() local 76 FTC_MruNode first = *plist; in FTC_MruNode_Up() local 125 FTC_MruNode first = *plist; in FTC_MruNode_Remove() local 207 FTC_MruNode first, node; in FTC_MruList_Find() local 331 FTC_MruNode first, node, next; in FTC_MruList_RemoveSelection() local
|
| /third_party/skia/third_party/externals/freetype/src/cache/ |
| D | ftcmru.c | 31 FTC_MruNode first = *plist; in FTC_MruNode_Prepend() local 75 FTC_MruNode first = *plist; in FTC_MruNode_Up() local 124 FTC_MruNode first = *plist; in FTC_MruNode_Remove() local 206 FTC_MruNode first, node; in FTC_MruList_Find() local 330 FTC_MruNode first, node, next; in FTC_MruList_RemoveSelection() local
|
| /third_party/freetype/src/cache/ |
| D | ftcmru.c | 31 FTC_MruNode first = *plist; in FTC_MruNode_Prepend() local 75 FTC_MruNode first = *plist; in FTC_MruNode_Up() local 124 FTC_MruNode first = *plist; in FTC_MruNode_Remove() local 206 FTC_MruNode first, node; in FTC_MruList_Find() local 332 FTC_MruNode first, node, next; in FTC_MruList_RemoveSelection() local
|
| /third_party/flutter/skia/third_party/externals/angle2/src/tests/test_utils/ |
| D | angle_test_instantiate.h | 95 #define ANGLE_INSTANTIATE_TEST(testName, first, ...) \ argument 103 #define ANGLE_INSTANTIATE_TEST_COMBINE_1(testName, print, combine1, first, ...) \ argument 108 first, ...) \ argument 115 combine5, first, ...) \ argument
|
| /third_party/flutter/skia/third_party/externals/angle2/src/libGL/ |
| D | entry_points_gl_4_4_autogen.cpp | 29 void GL_APIENTRY BindBuffersBase(GLenum target, GLuint first, GLsizei count, const GLuint *buffers) in BindBuffersBase() 52 GLuint first, in BindBuffersRange() 82 void GL_APIENTRY BindImageTextures(GLuint first, GLsizei count, const GLuint *textures) in BindImageTextures() 101 void GL_APIENTRY BindSamplers(GLuint first, GLsizei count, const GLuint *samplers) in BindSamplers() 120 void GL_APIENTRY BindTextures(GLuint first, GLsizei count, const GLuint *textures) in BindTextures() 139 void GL_APIENTRY BindVertexBuffers(GLuint first, in BindVertexBuffers()
|
| /third_party/mesa3d/src/gallium/auxiliary/draw/ |
| D | draw_pt_util.c | 40 draw_pt_split_prim(enum pipe_prim_type prim, unsigned *first, unsigned *incr) in draw_pt_split_prim() 100 draw_pt_trim_count(unsigned count, unsigned first, unsigned incr) in draw_pt_trim_count()
|
| /third_party/vk-gl-cts/scripts/ |
| D | list_test_changes.py | 53 first = True variable 58 first = False variable
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
| D | algorithm.h | 78 It RotateImpl(It first, It middle, It last, std::true_type) { in RotateImpl() 83 It RotateImpl(It first, It middle, It last, std::false_type) { in RotateImpl() 131 bool linear_search(InputIterator first, InputIterator last, in linear_search() 148 ForwardIterator rotate(ForwardIterator first, ForwardIterator middle, in rotate()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/range/ |
| D | StandardPluralRanges.java | 42 StandardPlural first = StandardPlural.fromString(value.getString()); in put() local 84 … private void addPluralRange(StandardPlural first, StandardPlural second, StandardPlural result) { in addPluralRange() 96 public StandardPlural resolve(StandardPlural first, StandardPlural second) { in resolve()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
| D | explicit-padding.h | 8 uint8_t first; member 14 uint8_t first; member
|
| /third_party/rust/crates/bindgen/bindgen-integration/cpp/ |
| D | Test.cc | 48 First::assert(unsigned char first, in assert() 58 Second::assert(int first, bool second) in assert() 64 Third::assert(int first, bool second, ItemKind third) in assert() 117 Seventh::assert(bool first, in assert()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
| D | hash.cc | 22 uint64_t state, const unsigned char* first, size_t len) { in CombineLargeContiguousImpl32() 36 uint64_t state, const unsigned char* first, size_t len) { in CombineLargeContiguousImpl64()
|