Home
last modified time | relevance | path

Searched refs:nativeValue (Results 101 – 125 of 141) sorted by relevance

123456

/dports/devel/jna/jna-5.7.0/test/com/sun/jna/
H A DDirectTest.java300 public PointerNativeMapped fromNative(Object nativeValue, FromNativeContext context) { in fromNative() argument
324 public PointerTypeMapped fromNative(Object nativeValue, FromNativeContext context) { in testDirectMappingFromNative()
H A DDirectTypeMapperTest.java222 Native.free(Pointer.nativeValue(p)); in mapper.addTypeConverter()
H A DArgumentsMarshalTest.java306 public Object fromNative(Object nativeValue, FromNativeContext context) { in fromNative() argument
307 return new Custom(((Integer)nativeValue).intValue()); in fromNative()
H A DStructureTest.java2051 public Object fromNative(Object nativeValue, FromNativeContext c) { in testStructureLayoutCacheingWithTypeMapper()
2052 return Boolean.valueOf(nativeValue.equals(Integer.valueOf(0))); in testStructureLayoutCacheingWithTypeMapper()
2124 public Object fromNative(Object nativeValue, FromNativeContext context) { in testFFITypeCalculationWithTypeMappedFields()
2125 return nativeValue.equals(Byte.valueOf((byte)0)) in testFFITypeCalculationWithTypeMappedFields()
/dports/editors/micro/micro-2.0.10/cmd/micro/
H A Dmicro.go260 nativeValue, err := config.GetNativeValue(k, config.DefaultAllSettings()[k], *v)
265 config.GlobalSettings[k] = nativeValue
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Interop/src/InteropExtensions/
H A DPInvokeMarshal.cs143 public static unsafe char AnsiCharToWideChar(byte nativeValue) in AnsiCharToWideChar() argument
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Ports/src/System/IO/Ports/
H A DSerialStream.cs473 byte nativeValue = 0;
474 if (value == StopBits.One) nativeValue = NativeMethods.ONESTOPBIT;
475 else if (value == StopBits.OnePointFive) nativeValue = NativeMethods.ONE5STOPBITS;
476 else nativeValue = NativeMethods.TWOSTOPBITS;
478 if (nativeValue != _dcb.StopBits)
481 _dcb.StopBits = nativeValue;
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/base/android/java/src/org/chromium/media/
H A DMediaCodecBridge.java542 private int translateEncryptionSchemeValue(int nativeValue) { in translateEncryptionSchemeValue() argument
543 switch (nativeValue) { in translateEncryptionSchemeValue()
551 Log.e(TAG, "Unsupported cipher mode: %d", nativeValue); in translateEncryptionSchemeValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/ports/
H A DSerialStream.cs519 byte nativeValue = 0;
520 if (value == StopBits.One) nativeValue = (byte) NativeMethods.ONESTOPBIT;
521 … else if (value == StopBits.OnePointFive) nativeValue = (byte) NativeMethods.ONE5STOPBITS;
522 else nativeValue = (byte) NativeMethods.TWOSTOPBITS;
524 if(nativeValue != dcb.StopBits)
527 dcb.StopBits = nativeValue;
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/util/
H A DDateTimeFormats.java1039 … String nativeValue = icuServiceBuilder.getDayPeriodValue(dayPeriodPath, "�", real); in addDayPeriods() local
1041 nativeValue = icuServiceBuilder.formatDayPeriod(midPoint, nativeValue); in addDayPeriods()
1044 .append(getCleanValue(nativeValue, width, "<i>missing</i>")) in addDayPeriods()
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmljs/3rdparty/qtcreator-libs/utils/
H A Denvironment.cpp349 const QString nativeValue = QDir::toNativeSeparators(value); in prependOrSetLibrarySearchPath() local
350 prependOrSet("DYLD_LIBRARY_PATH", nativeValue, sep); in prependOrSetLibrarySearchPath()
351 prependOrSet("DYLD_FRAMEWORK_PATH", nativeValue, sep); in prependOrSetLibrarySearchPath()
/dports/devel/jna/jna-5.7.0/contrib/platform/test/com/sun/jna/platform/win32/
H A DUser32WindowMessagesTest.java98 new LPARAM(Pointer.nativeValue(copyDataStruct.getPointer()))); in testWindowMesssages()
452 (int) Pointer.nativeValue(CallbackReference.getFunctionPointer(subclass))); in subclassProc()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Runtime/InteropServices/
H A DPInvokeMarshal.cs709 public static unsafe char AnsiCharToWideChar(byte nativeValue) in AnsiCharToWideChar() argument
712 ConvertMultiByteToWideChar(&nativeValue, 1, &ch, 1); in AnsiCharToWideChar()
/dports/audio/rhvoice/RHVoice-1.2.4/src/android/RHVoice-core/src/main/java/com/github/olga_yakovleva/rhvoice/android/
H A DRHVoiceService.java575 String nativeValue; in applyMappedSettings() local
582 nativeValue=setting.valueTranslator.translate(setting.prefValue); in applyMappedSettings()
583 tts.engine.configure(setting.nativeKey,nativeValue); in applyMappedSettings()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/foreign/
H A DStdLibTest.java323 args.stream().map(a -> a.nativeValue(scope)).toArray()); in printf()
436 public Object nativeValue(ResourceScope scope) { in nativeValue() method in StdLibTest.PrintfArg
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/vm/
H A DTypedArrayObject.cpp1055 NativeType nativeValue; in setElement() local
1056 if (!convertValue(cx, v, &nativeValue)) { in setElement()
1076 TypedArrayObjectTemplate<NativeType>::setIndex(*obj, index, nativeValue); in setElement()
1091 NativeType nativeValue; in defineElement() local
1092 if (!convertValue(cx, v, &nativeValue)) { in defineElement()
1105 index, nativeValue); in defineElement()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Interop/src/Shared/
H A DMcgMarshal.cs338 public static unsafe char AnsiCharToWideChar(byte nativeValue) in AnsiCharToWideChar() argument
340 return PInvokeMarshal.AnsiCharToWideChar(nativeValue); in AnsiCharToWideChar()
/dports/editors/micro/micro-2.0.10/internal/display/
H A Dbufwindow.go49 b.OptionCallback = func(option string, nativeValue interface{}) {
51 if nativeValue.(bool) {
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/debugger/
H A Ddumper.py2937 self.nativeValue = None
2953 val.nativeValue = self.nativeValue
2958 if self._type is None and self.nativeValue is not None:
2959 self._type = self.dumper.nativeValueType(self.nativeValue)
3021 if self.nativeValue is not None and not self.dumper.isCdb:
3022 return str(self.nativeValue)
3289 if self.nativeValue is None:
3299 if self.nativeValue is None:
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorJS.pm1755 my $nativeValue = JSValueToNative($attribute->signature, "value");
1765 push(@implContent, " podImp = $nativeValue;\n");
1767 … push(@implContent, " podImp.set$implSetterFunctionName($nativeValue");
1782 push(@implContent, " imp->$setterExpressionPrefix$nativeValue");
/dports/devel/jna/jna-5.7.0/src/com/sun/jna/
H A DPointer.java1189 public static long nativeValue(Pointer p) { in nativeValue() method in Pointer
1194 public static void nativeValue(Pointer p, long value) { in nativeValue() method in Pointer
/dports/devel/jna/jna-5.7.0/contrib/platform/src/com/sun/jna/platform/win32/
H A DWinNT.java1347 public Object fromNative(Object nativeValue, FromNativeContext context) { in fromNative() argument
1348 Object o = super.fromNative(nativeValue, context); in fromNative()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/
H A DLaunchManager.java1281 Object nativeValue = null; in getEnvironment() local
1293 nativeValue = env.get(key); in getEnvironment()
1294 if (nativeValue != null) { in getEnvironment()
/dports/www/firefox-esr/firefox-91.8.0/js/src/vm/
H A DTypedArrayObject.cpp984 NativeType nativeValue; in setElement() local
985 if (!convertValue(cx, v, &nativeValue)) { in setElement()
993 TypedArrayObjectTemplate<NativeType>::setIndex(*obj, index, nativeValue); in setElement()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/vm/
H A DTypedArrayObject.cpp984 NativeType nativeValue; in setElement() local
985 if (!convertValue(cx, v, &nativeValue)) { in setElement()
993 TypedArrayObjectTemplate<NativeType>::setIndex(*obj, index, nativeValue); in setElement()

123456