Searched refs:success (Results 151 - 175 of 266) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DContextualGlyphSubstProc.h59 ContextualGlyphSubstitutionProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
H A DGlyphPositioningTables.h57 const LEReferenceTo<GlyphDefinitionTableHeader> &glyphDefinitionTableHeader, LEErrorCode &success,
H A DGlyphSubstitutionTables.h63 LEErrorCode &success) const;
H A DIndicRearrangementProcessor.h61 IndicRearrangementProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
H A DLigatureSubstSubtables.h68 le_uint32 process(const LETableReference &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
H A DMarkToBasePosnSubtables.cpp54 le_int32 MarkToBasePositioningSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const
57 le_int32 markCoverage = getGlyphCoverage(base, (LEGlyphID) markGlyph, success);
59 if (LE_FAILURE(success)) {
82 le_int32 baseCoverage = getBaseCoverage(base, (LEGlyphID) baseGlyph, success);
H A DMarkToLigaturePosnSubtables.cpp53 le_int32 MarkToLigaturePositioningSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const
56 le_int32 markCoverage = getGlyphCoverage(base, (LEGlyphID) markGlyph, success);
58 if (LE_FAILURE(success)) {
81 le_int32 ligatureCoverage = getBaseCoverage(base, (LEGlyphID) ligatureGlyph, success);
H A DMarkToLigaturePosnSubtables.h51 le_int32 process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
H A DIndicReordering.cpp233 LEErrorCode success = LE_NO_ERROR; local
237 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
238 fGlyphStorage.setAuxData(fOutIndex, charFeatures | (fSyllableCount & LE_GLYPH_GROUP_MASK), success);
245 LEErrorCode success = LE_NO_ERROR; local
247 fGlyphStorage.setAuxData( charIndex, charFeatures, success );
253 LEErrorCode success = LE_NO_ERROR; local
254 return fGlyphStorage.getAuxData(charIndex,success);
259 LEErrorCode success = LE_NO_ERROR; local
265 le_int32 saveIndex = fGlyphStorage.getCharIndex(i+inv_count,success);
266 le_uint32 saveAuxData = fGlyphStorage.getAuxData(i+inv_count,success);
292 LEErrorCode success = LE_NO_ERROR; local
318 LEErrorCode success = LE_NO_ERROR; local
334 LEErrorCode success = LE_NO_ERROR; local
650 reorder(const LEUnicode *chars, le_int32 charCount, le_int32 scriptCode, LEUnicode *outChars, LEGlyphStorage &glyphStorage, MPreFixups **outMPreFixups, LEErrorCode& success) argument
1012 adjustMPres(MPreFixups *mpreFixups, LEGlyphStorage &glyphStorage, LEErrorCode& success) argument
1023 LEErrorCode success = LE_NO_ERROR; local
1035 LEErrorCode success = LE_NO_ERROR; local
[all...]
H A DLookupTables.h83 const LookupSegment *lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const;
85 const LookupSingle *lookupSingle(const LETableReference &base, const LookupSingle *entries, LEGlyphID glyph, LEErrorCode &success) const;
H A DGlyphIterator.cpp51 LEErrorCode success = LE_NO_ERROR; // TODO local
56 -> getGlyphClassDefinitionTable(theGlyphDefinitionTableHeader, success);
58 ->getMarkAttachClassDefinitionTable(theGlyphDefinitionTableHeader, success);
138 LEGlyphID *GlyphIterator::insertGlyphs(le_int32 count, LEErrorCode& success) argument
140 return glyphStorage.insertGlyphs(position, count, success);
386 LEErrorCode success = LE_NO_ERROR; local
395 glyphClass = glyphClassDefinitionTable->getGlyphClass(glyphClassDefinitionTable, glyphID, success);
419 -> getGlyphClass(markAttachClassDefinitionTable, glyphID, success) != markAttachType;
439 LEErrorCode success = LE_NO_ERROR; local
440 FeatureMask fm = glyphStorage.getAuxData(position, success);
451 LEErrorCode success = LE_NO_ERROR; local
[all...]
H A DLEInsertionList.h112 * @param success set to an error code if the auxillary data cannot be retrieved.
119 LEGlyphID *insert(le_int32 position, le_int32 count, LEErrorCode &success);
H A DLigatureSubstProc.h61 LigatureSubstitutionProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
H A DSunLayoutEngine.cpp180 LEErrorCode success = LE_NO_ERROR; local
181 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(&fia, script, lang, typo_flags & TYPO_MASK, success);
205 int glyphCount = engine->layoutChars(chars, start - min, limit - start, len, rtl, x, y, success);
208 engine->getGlyphPosition(glyphCount, x, y, success);
211 if (LE_FAILURE(success)) {
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetDropEvent.java249 * @param success a <code>boolean</code> indicating that the drop transfer(s) are completed.
252 public void dropComplete(boolean success) { argument
253 getDropTargetContext().dropComplete(success);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DAlias.java38 static int success = 0; field in class:Alias
95 success++;
H A DConnect.java38 static int success = 0; field in class:Connect
91 success++;
/openjdk7/jdk/test/java/net/Authenticator/
H A DBasicTest4.java84 boolean success = false; field in class:BasicTest4.BasicServer
140 success = checkFor (is, "Authorization".toCharArray());
141 System.out.println ("checkfor returned " + success);
147 if (success)
217 if (!server.success) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDropTargetContextPeer.java141 protected void doDropDone(boolean success, int dropAction, boolean isLocal) { argument
144 dropDone(nativeDropTarget, fNativeDropTransfer, isLocal, success, dropAction);
170 private native void dropDone(long nativeDropTarget, long nativeDropTransfer, boolean isLocal, boolean success, int dropAction); argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDropTargetContextPeer.java90 protected void doDropDone(boolean success, int dropAction, argument
92 dropDone(getNativeDragContext(), success, dropAction);
120 private native void dropDone(long nativeContext, boolean success, int action); argument
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c280 * Agent_OnAttach returns a jint. 0/JNI_OK indicates success and non-0
315 jboolean success; local
398 success = createInstrumentationImpl(jni_env, agent);
399 jplis_assert(success);
404 if (success) {
405 success = setLivePhaseEventHandlers(agent);
406 jplis_assert(success);
412 if (success) {
413 success = startJavaAgent(agent,
420 if (!success) {
457 jboolean success = JNI_FALSE; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAdjacencyList.java204 boolean success = false;
210 // consider success in the while loop
219 success = buildList(theList, v.getIndex(), bs);
224 if (success) {
/openjdk7/jdk/test/javax/sound/midi/Sequencer/
H A DSequencerImplicitSynthOpen.java36 int success = 0;
39 success++;
43 if (success != TEST_COUNT) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJavaSoundAudioClip.java100 boolean success = false;
104 success = loadAudioData(as);
106 if (success) {
107 success = false;
109 success = createClip();
111 if (!success) {
112 success = createSourceDataLine();
119 success = createSequencer(bis);
121 success = false;
124 if (!success) {
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DUNIXToolkit.java84 boolean success = check_gtk();
85 nativeGTKAvailable = Boolean.valueOf(success);
86 return success;
102 boolean success = load_gtk();
103 nativeGTKLoaded = Boolean.valueOf(success);

Completed in 516 milliseconds

1234567891011