/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor.cc | 644 { "name", (getter)GetName, NULL, "Last name"}, 645 { "full_name", (getter)GetFullName, NULL, "Full name"}, 646 { "_concrete_class", (getter)GetConcreteClass, NULL, "concrete class"}, 647 { "file", (getter)GetFile, NULL, "File descriptor"}, 649 { "fields", (getter)GetFieldsSeq, NULL, "Fields sequence"}, 650 { "fields_by_name", (getter)GetFieldsByName, NULL, "Fields by name"}, 651 { "fields_by_camelcase_name", (getter)GetFieldsByCamelcaseName, NULL, 653 { "fields_by_number", (getter)GetFieldsByNumber, NULL, "Fields by number"}, 654 { "nested_types", (getter)GetNestedTypesSeq, NULL, "Nested types sequence"}, 655 { "nested_types_by_name", (getter)GetNestedTypesByName, NULL, [all …]
|
/third_party/node/deps/npm/node_modules/delegates/ |
D | Readme.md | 37 .getter('subdomains') 38 .getter('protocol') 39 .getter('header') 40 .getter('stale') 41 .getter('fresh') 42 .getter('secure') 43 .getter('ips') 44 .getter('ip') 58 ## Delegate#getter(name) 60 Creates a "getter" for the property with the given `name` on the delegated [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
D | PropertiesTest.java | 84 Method getter, setter; in testFieldCoverage() local 86 getter = DecimalFormatProperties.class.getMethod(getterName); in testFieldCoverage() 89 getter.getReturnType()); in testFieldCoverage() 122 Object default0 = getter.invoke(p0); in testFieldCoverage() 135 assertEquals(getter.invoke(p1), getter.invoke(p2)); in testFieldCoverage() 136 assertEquals(getter.invoke(p1), val0); in testFieldCoverage() 137 assertNotEquals(getter.invoke(p1), val1); in testFieldCoverage() 141 assertNotEquals(getter.invoke(p1), getter.invoke(p2)); in testFieldCoverage() 142 assertNotEquals(getter.invoke(p1), val0); in testFieldCoverage() 143 assertEquals(getter.invoke(p1), val1); in testFieldCoverage() [all …]
|
/third_party/flutter/skia/src/gpu/gl/win/ |
D | GrGLMakeNativeInterface_win.cpp | 62 const GLProcGetter* getter = (const GLProcGetter*) ctx; in win_get_gl_proc() local 63 return getter->getProc(name); in win_get_gl_proc() 76 GLProcGetter getter; in GrGLMakeNativeInterface() local 77 if (!getter.isInitialized()) { in GrGLMakeNativeInterface() 81 GrGLGetStringFn* getString = (GrGLGetStringFn*)getter.getProc("glGetString"); in GrGLMakeNativeInterface() 89 return GrGLMakeAssembledGLESInterface(&getter, win_get_gl_proc); in GrGLMakeNativeInterface() 91 return GrGLMakeAssembledGLInterface(&getter, win_get_gl_proc); in GrGLMakeNativeInterface()
|
/third_party/typescript/tests/baselines/reference/ |
D | declFileTypeAnnotationVisibilityErrorAccessors.types | 24 // getter with annotation 31 // getter without annotation 46 // Both - getter without annotation, setter with annotation 70 // getter with annotation 77 // getter without annotation 92 // Both - getter without annotation, setter with annotation 116 // getter with annotation 124 // getter without annotation 142 // Both - getter without annotation, setter with annotation
|
D | declFileAccessors.types | 6 /** getter property*/ 18 /** private getter property*/ 30 /** static getter property*/ 73 // Only getter property 93 /** getter property*/ 105 /** private getter property*/ 117 /** static getter property*/ 160 // Only getter property
|
D | declFileTypeAnnotationVisibilityErrorAccessors.symbols | 24 // getter with annotation 32 // getter without annotation 47 // Both - getter without annotation, setter with annotation 73 // getter with annotation 81 // getter without annotation 96 // Both - getter without annotation, setter with annotation 122 // getter with annotation 131 // getter without annotation 149 // Both - getter without annotation, setter with annotation
|
D | declFileAccessors.symbols | 6 /** getter property*/ 17 /** private getter property*/ 28 /** static getter property*/ 67 // Only getter property 86 /** getter property*/ 97 /** private getter property*/ 108 /** static getter property*/ 147 // Only getter property
|
D | contextSensitiveReturnTypeInference.types | 10 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => … 12 getter: (deps: TDependencies, data: IData) => any, 13 >getter : (deps: TDependencies, data: IData) => any 33 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => … 63 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => … 94 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => … 124 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => … 154 >test : <TDependencies>(getter: (deps: TDependencies, data: IData) => any, deps: TDependencies) => …
|
/third_party/protobuf/php/tests/ |
D | WrapperTypeSettersTest.php | 27 $getter, argument 42 $expectedValue = $oldSetterMsg->$getter(); 46 $actualValue = $newSetterMsg->$getter(); 208 …public function testConstructorWithWrapperType($class, $wrapperClass, $wrapperField, $getter, $val… argument 212 …$this->assertEquals($expectedInstance->$getter()->getValue(), $actualInstance->$getter()->getValue… 233 public function testConstructorWithRepeatedWrapperType($wrapperField, $getter, $value) argument 236 foreach ($actualInstance->$getter() as $key => $actualWrapperValue) { 274 public function testConstructorWithMapWrapperType($wrapperField, $getter, $value) argument 277 foreach ($actualInstance->$getter() as $key => $actualWrapperValue) {
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | Message.php | 518 $getter = $field->getGetter(); 665 $getter = $field->getGetter(); 666 $map = $this->$getter(); 671 $getter = $field->getGetter(); 672 $arr = $this->$getter(); 677 $getter = $field->getGetter(); 678 $sub = $this->$getter(); 708 $getter = $field->getGetter(); 710 if (count($msg->$getter()) != 0) { 712 foreach ($msg->$getter() as $key => $value) { [all …]
|
/third_party/flutter/skia/src/gpu/gl/mac/ |
D | GrGLMakeNativeInterface_mac.cpp | 52 const GLProcGetter* getter = (const GLProcGetter*) ctx; in mac_get_gl_proc() local 53 return getter->getProc(name); in mac_get_gl_proc() 57 GLProcGetter getter; in GrGLMakeNativeInterface() local 58 return GrGLMakeAssembledGLInterface(&getter, mac_get_gl_proc); in GrGLMakeNativeInterface()
|
/third_party/flutter/skia/src/gpu/gl/iOS/ |
D | GrGLMakeNativeInterface_iOS.cpp | 48 const GLProcGetter* getter = (const GLProcGetter*) ctx; in ios_get_gl_proc() local 49 return getter->getProc(name); in ios_get_gl_proc() 53 GLProcGetter getter; in GrGLMakeNativeInterface() local 54 return GrGLMakeAssembledGLESInterface(&getter, ios_get_gl_proc); in GrGLMakeNativeInterface()
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | super-assignment.js | 27 get getter () { getter in Base 48 get getter () { getter in Derived 49 return super.getter; 65 assert (derived.getter === 6);
|
/third_party/gn/src/gn/ |
D | config_values_extractors.h | 73 const std::vector<T>& (ConfigValues::*getter)() in ConfigValuesToStream() 77 const std::vector<T>& v = (values.*getter)(); in ConfigValuesToStream() 88 const std::vector<T>& (ConfigValues::*getter)() const, in RecursiveTargetConfigToStream() 92 ConfigValuesToStream(iter.cur(), getter, writer, out); in RecursiveTargetConfigToStream() 98 const std::vector<std::string>& (ConfigValues::*getter)() const,
|
D | ninja_target_command_util.cc | 48 const std::vector<std::string>& (ConfigValues::*getter)() in WriteOneFlag() 70 RecursiveTargetConfigStringsToStream(target, getter, flag_escape_options, in WriteOneFlag() 78 RecursiveTargetConfigStringsToStream(target, getter, flag_escape_options, in WriteOneFlag() 93 RecursiveTargetConfigStringsToStream(target, getter, flag_escape_options, in WriteOneFlag() 97 RecursiveTargetConfigStringsToStream(target, getter, flag_escape_options, in WriteOneFlag()
|
/third_party/jerryscript/tests/jerry/ |
D | get-value.js | 27 assert ((10).getter === 10); 28 assert (typeof ((10).getter) === 'number'); 30 delete Number.prototype.getter; method in delete
|
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | call_get.js | 110 var getter; 114 getter = maybeGetter !== null ? maybeGetter : namedGetter; 116 getter = namedGetter; 119 getter = indexedGetter; 121 return this._then(getter, undefined, undefined, propertyName, undefined);
|
/third_party/python/Lib/asyncio/ |
D | queues.py | 163 getter = self._loop.create_future() 164 self._getters.append(getter) 166 await getter 168 getter.cancel() # Just in case getter is not done yet. 171 self._getters.remove(getter) 176 if not self.empty() and not getter.cancelled():
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | DecimalFormat.java | 654 java.lang.reflect.Field getter; in readObject() local 656 getter = NumberFormat.class.getDeclaredField("groupingUsed"); in readObject() 657 getter.setAccessible(true); in readObject() 658 setGroupingUsed((Boolean) getter.get(this)); in readObject() 659 getter = NumberFormat.class.getDeclaredField("parseIntegerOnly"); in readObject() 660 getter.setAccessible(true); in readObject() 661 setParseIntegerOnly((Boolean) getter.get(this)); in readObject() 662 getter = NumberFormat.class.getDeclaredField("maximumIntegerDigits"); in readObject() 663 getter.setAccessible(true); in readObject() 664 setMaximumIntegerDigits((Integer) getter.get(this)); in readObject() [all …]
|
/third_party/toybox/toys/pending/ |
D | getfattr.c | 33 ssize_t (*getter)(const char *, const char *, void *, size_t) = getxattr; local 41 getter = lgetxattr; 74 while ((value_len = getter(file, key, NULL, 0))) { 77 if (getter(file, key, value, value_len) == value_len) break;
|
/third_party/protobuf/objectivec/ |
D | GPBDescriptor.h | 81 @property(nonatomic, readonly, getter=isWireFormat) BOOL wireFormat; 180 @property(nonatomic, readonly, getter=isRequired) BOOL required; 182 @property(nonatomic, readonly, getter=isOptional) BOOL optional; 188 @property(nonatomic, readonly, getter=isPackable) BOOL packable; 304 @property(nonatomic, readonly, getter=isRepeated) BOOL repeated; 306 @property(nonatomic, readonly, getter=isPackable) BOOL packable;
|
/third_party/node/deps/cjs-module-lexer/ |
D | CHANGELOG.md | 12 - Better support for Babel reexport getter function forms (https://github.com/guybedford/cjs-module… 17 - Support trailing commas in getter patterns (https://github.com/guybedford/cjs-module-lexer/issues… 21 - Unsafe getter tracking (https://github.com/guybedford/cjs-module-lexer/pull/29) 28 - Support named getter functions (https://github.com/guybedford/cjs-module-lexer/pull/26) 31 - Feature: Implement specific reexport getter forms (https://github.com/guybedford/cjs-module-lexer…
|
/third_party/glib/gobject/tests/ |
D | param.c | 164 #define CHECK_INT_CONVERSION(type, getter, value) \ in test_value_transform() argument 170 g_assert_cmpint (g_value_get_##getter (&dest), ==, value); \ in test_value_transform() 196 #define CHECK_UINT_CONVERSION(type, getter, value) \ in test_value_transform() argument 202 g_assert_cmpuint (g_value_get_##getter (&dest), ==, value); \ in test_value_transform() 221 #define CHECK_LONG_CONVERSION(type, getter, value) \ in test_value_transform() argument 227 g_assert_cmpint (g_value_get_##getter (&dest), ==, value); \ in test_value_transform() 246 #define CHECK_ULONG_CONVERSION(type, getter, value) \ in test_value_transform() argument 252 g_assert_cmpuint (g_value_get_##getter (&dest), ==, value); \ in test_value_transform() 271 #define CHECK_INT64_CONVERSION(type, getter, value) \ in test_value_transform() argument 277 g_assert_cmpint (g_value_get_##getter (&dest), ==, value); \ in test_value_transform() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | SamplerGL.cpp | 54 Getter getter, in SyncSamplerStateMember() argument 57 if ((curState.*getter)() != (newState.*getter)()) in SyncSamplerStateMember() 59 (curState.*setter)((newState.*getter)()); in SyncSamplerStateMember() 60 SetSamplerParameter(functions, sampler, name, (newState.*getter)()); in SyncSamplerStateMember()
|