Searched refs:info (Results 226 - 250 of 889) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-coretext.cc104 release_data (void *info, const void *data, size_t size) argument
106 assert (hb_blob_get_length ((hb_blob_t *) info) == size &&
107 hb_blob_get_data ((hb_blob_t *) info, NULL) == data);
109 hb_blob_destroy ((hb_blob_t *) info);
558 hb_glyph_info_t *info = buffer->info; local
560 if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (unicode->general_category (info[i].codepoint)))
731 hb_codepoint_t c = buffer->info[i].codepoint;
746 hb_codepoint_t c = buffer->info[i].codepoint;
747 unsigned int cluster = buffer->info[
1068 hb_glyph_info_t *info = run_info; local
1090 hb_glyph_info_t *info = run_info; local
1152 hb_glyph_info_t *info = buffer->info; local
1183 hb_glyph_info_t *info = buffer->info; local
[all...]
H A Dhb-ot-shape-complex-use-machine.hh301 info[i].syllable() = (syllable_serial << 4) | syllable_type; \
312 hb_glyph_info_t *info = buffer->info; local
352 _trans = _inds[ _slen > 0 && _keys[0] <=( info[p].use_category()) &&
353 ( info[p].use_category()) <= _keys[1] ?
354 ( info[p].use_category()) - _keys[0] : _slen ];
H A Dhb-ot-shape-complex-myanmar-machine.hh275 info[i].syllable() = (syllable_serial << 4) | syllable_type; \
286 hb_glyph_info_t *info = buffer->info; local
326 _trans = _inds[ _slen > 0 && _keys[0] <=( info[p].myanmar_category()) &&
327 ( info[p].myanmar_category()) <= _keys[1] ?
328 ( info[p].myanmar_category()) - _keys[0] : _slen ];
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAPolicyMediatorImpl_NR_USM.java97 OAInvocationInfo info = orb.peekInvocationInfo();
103 locator.postinvoke(info.id(), (POA)(info.oa()),
104 info.getOperation(), info.getCookieHolder().value,
105 (Servant)(info.getServantContainer()) );
/openjdk10/jdk/src/java.base/share/classes/java/time/format/
H A DDecimalStyle.java156 DecimalStyle info = CACHE.get(locale);
157 if (info == null) {
158 info = create(locale);
159 CACHE.putIfAbsent(locale, info);
160 info = CACHE.get(locale);
162 return info;
207 * Returns a copy of the info with a new character that represents zero.
237 * Returns a copy of the info with a new character that represents the positive sign.
266 * Returns a copy of the info with a new character that represents the negative sign.
295 * Returns a copy of the info wit
[all...]
/openjdk10/jdk/src/jdk.management/solaris/native/libmanagement_ext/
H A DUnixOperatingSystem.c164 int get_info(const char *path, void *info, size_t s, off_t o) { argument
170 if (pread(fd, info, s, o) != s) {
218 psinfo_t info; local
222 if (get_info("/proc/self/psinfo",&info.pr_pctcpu, sizeof(info.pr_pctcpu), offsetof(psinfo_t, pr_pctcpu)) == 0) {
223 return (double) info.pr_pctcpu / 0x8000;
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp35 void LIR_Assembler::patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info) { argument
42 patch->install(_masm, patch_code, obj, info);
46 Bytecodes::Code code = info->scope()->method()->java_code_at_bci(info->stack()->bci());
79 Bytecodes::Code bc_raw = info->scope()->method()->raw_code_at_bci(info->stack()->bci());
87 PatchingStub::PatchID LIR_Assembler::patching_id(CodeEmitInfo* info) { argument
88 IRScope* scope = info->scope();
89 Bytecodes::Code bc_raw = scope->method()->raw_code_at_bci(info->stack()->bci());
317 //----------------------------------debug info
320 add_debug_info_for_branch(CodeEmitInfo* info) argument
426 add_debug_info_for_div0_here(CodeEmitInfo* info) argument
427 add_debug_info_for_div0(code_offset(), info); local
787 move_op(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide) argument
833 verify_oop_map(CodeEmitInfo* info) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/
H A DAbstractInlineInfo.java23 package org.graalvm.compiler.phases.common.inlining.info;
31 import org.graalvm.compiler.phases.common.inlining.info.elem.Inlineable;
32 import org.graalvm.compiler.phases.common.inlining.info.elem.InlineableGraph;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DHotSpotGraalMBeanTest.java110 MBeanInfo info = server.getMBeanInfo(name);
111 assertNotNull("Info is found", info);
113 MBeanAttributeInfo printCompilation = (MBeanAttributeInfo) findAttributeInfo("PrintCompilation", info);
127 private static Object findAttributeInfo(String attrName, Object info) { argument
129 for (MBeanAttributeInfo attr : ((MBeanInfo) info).getAttributes()) {
157 MBeanInfo info = server.getMBeanInfo(name);
158 assertNotNull("Info is found", info);
160 MBeanAttributeInfo dump = (MBeanAttributeInfo) findAttributeInfo("Dump", info);
200 MBeanInfo info = server.getMBeanInfo(name);
201 assertNotNull("Info is found", info);
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java155 Infopoint info = (Infopoint) site;
156 if (info.debugInfo != null) {
157 BytecodeFrame frame = info.debugInfo.frame();
/openjdk10/jdk/test/javax/sound/midi/MidiDeviceConnectors/
H A DTestAllDevices.java78 for (MidiDevice.Info info: infos) {
79 out(info.toString() + ":");
81 MidiDevice dev = MidiSystem.getMidiDevice(info);
/openjdk10/jdk/test/javax/swing/JFileChooser/8013442/
H A DTest8013442.java73 LookAndFeelInfo info = this.infos[this.index];
74 System.out.println(info.getName());
76 UIManager.setLookAndFeel(info.getClassName());
/openjdk10/langtools/test/tools/javap/classfile/
H A DT6887895.java48 CONSTANT_Class_info info = (CONSTANT_Class_info) cpInfo;
49 String name = info.getName();
50 String baseName = info.getBaseName();
/openjdk10/hotspot/src/os/aix/vm/
H A Dporting_aix.hpp62 int dladdr(void *addr, Dl_info *info);
69 // Given a program counter, tries to locate the traceback table and returns info from
/openjdk10/hotspot/test/compiler/aot/scripts/
H A Dtest-jaotc.sh33 $JAVA_HOME/bin/jaotc $JAOTC_OPTS --info --module jdk.aot --output libjdk.aot.$SO_TYPE || exit 1
37 $JAVA_HOME/bin/jaotc $JAOTC_OPTS -J-XX:AOTLibrary=./libjdk.aot.$SO_TYPE --info --compile-commands $DIR/java.base-list.txt --output libjava.base-aot.$SO_TYPE --module java.base || exit 1
/openjdk10/hotspot/test/runtime/jsig/
H A DlibTestJNI.c33 void sig_handler(int sig, siginfo_t *info, ucontext_t *context) { argument
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DCertificatePoliciesExtension.java75 public static final String IDENT = "x509.info.extensions.CertificatePolicies";
95 for (PolicyInformation info : certPolicies) {
96 info.encode(tmp);
167 for (PolicyInformation info : certPolicies) {
168 sb.append(info);
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java51 * A subset of the line number info that is softly cached
139 SoftLocationXRefs info = getLocations(stratum);
141 if (info.lineLocations.size() == 0) {
149 List<Location> list = info.lineMapper.get(lineNumber);
279 SoftLocationXRefs info =
282 if (info != null && info.stratumID.equals(stratumID)) {
283 return info;
339 info = new SoftLocationXRefs(stratumID, lineMapper, lineLocations,
341 softOtherLocationXRefsRef = new SoftReference<>(info);
[all...]
/openjdk10/jdk/src/jdk.management/share/classes/com/sun/management/internal/
H A DGarbageCollectorExtImpl.java73 GcInfo info = getGcInfoBuilder().getLastGcInfo();
74 return info;
110 GarbageCollectionNotificationInfo info =
117 GarbageCollectionNotifInfoCompositeData.toCompositeData(info);
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptedType.java166 * @param info the {@code ds:KeyInfo}, that carries information about
169 void setKeyInfo(KeyInfo info); argument
/openjdk10/jdk/test/javax/sound/sampled/Mixers/DirectSoundUnderrunSilence/
H A DDirectSoundUnderrunSilence.java43 static DataLine.Info info; field in class:DirectSoundUnderrunSilence
71 source = (SourceDataLine) mixer.getLine(info);
131 info = new DataLine.Info(SourceDataLine.class, audioFormat);
142 if (!mixer.isLineSupported(info)) {
/openjdk10/jdk/test/javax/sound/sampled/Mixers/DirectSoundRepeatingBuffer/
H A DDirectSoundRepeatingBuffer.java43 static DataLine.Info info; field in class:DirectSoundRepeatingBuffer
71 source = (SourceDataLine) mixer.getLine(info);
127 info = new DataLine.Info(SourceDataLine.class, audioFormat);
138 if (!mixer.isLineSupported(info)) {
/openjdk10/jdk/test/javax/sound/sampled/Mixers/
H A DBothEndiansAndSigns.java69 DataLine.Info info = (DataLine.Info) infos[i];
70 System.out.println(" Line "+info+" (max. "+mixer.getMaxLines(info)+" simultaneously): ");
71 AudioFormat[] formats = info.getFormats();
/openjdk10/jdk/test/javax/sound/sampled/Lines/ClickInPlay/
H A DClickInPlay.java43 static DataLine.Info info; field in class:ClickInPlay
70 source = (Clip) mixer.getLine(info);
125 info = new DataLine.Info(Clip.class, audioFormat);
132 if (mixer.isLineSupported(info)) {
/openjdk10/jdk/test/javax/swing/JComboBox/8136998/
H A Dbug8136998.java69 for (LookAndFeelInfo info : lafInfo) {
71 UIManager.setLookAndFeel(info.getClassName());
72 System.out.println("Look and Feel: " + info.getClassName());
75 System.out.println("Skipping unsupported LaF: " + info);

Completed in 204 milliseconds

1234567891011>>