Home
last modified time | relevance | path

Searched refs:getter (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc644 { "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/
DReadme.md37 .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/
DPropertiesTest.java84 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/
DGrGLMakeNativeInterface_win.cpp62 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/
DdeclFileTypeAnnotationVisibilityErrorAccessors.types24 // 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
DdeclFileAccessors.types6 /** 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
DdeclFileTypeAnnotationVisibilityErrorAccessors.symbols24 // 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
DdeclFileAccessors.symbols6 /** 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
DcontextSensitiveReturnTypeInference.types10 >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/
DWrapperTypeSettersTest.php27 $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/
DMessage.php518 $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/
DGrGLMakeNativeInterface_mac.cpp52 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/
DGrGLMakeNativeInterface_iOS.cpp48 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/
Dsuper-assignment.js27 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/
Dconfig_values_extractors.h73 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,
Dninja_target_command_util.cc48 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/
Dget-value.js27 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/
Dcall_get.js110 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/
Dqueues.py163 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/
DDecimalFormat.java654 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/
Dgetfattr.c33 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/
DGPBDescriptor.h81 @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/
DCHANGELOG.md12 - 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/
Dparam.c164 #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/
DSamplerGL.cpp54 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()

12345678910>>...19