Searched refs:fIndex (Results 1 - 9 of 9) sorted by relevance
/openjdk7/jdk/test/java/lang/instrument/ |
H A D | ParallelTransformerLoaderApp.java | 60 private final int fIndex; field in class:ParallelTransformerLoaderApp.TestThread 67 fIndex = index; 73 loadClasses(fIndex);
|
H A D | TransformerManagementThreadAddTests.java | 433 private final int fIndex; field in class:TransformerManagementThreadAddTests.ThreadTransformer 442 fIndex = index; 443 fName = "TT["+fThread.getName()+"]["+prettyNum(fIndex,3)+"]"; 478 return fIndex;
|
/openjdk7/jdk/src/macosx/native/sun/awt/ |
H A D | JavaAccessibilityAction.h | 40 jint fIndex; variable 54 jint fIndex; variable
|
H A D | JavaAccessibilityAction.m | 39 fIndex = index; 78 return JNFJavaToNSString(env, JNFCallStaticObjectMethod(env, jm_getAccessibleActionDescription, fAccessibleAction, fIndex, fComponent)); // AWT_THREADING Safe (AWTRunLoopMode) 87 JNFCallStaticVoidMethod(env, jm_doAccessibleAction, fAccessibleAction, fIndex, fComponent); // AWT_THREADING Safe (AWTRunLoopMode) 100 fIndex = index; 141 setAxContextSelection(env, fTabGroup, fIndex, fComponent);
|
H A D | JavaComponentAccessibility.h | 42 jint fIndex; variable
|
H A D | JavaComponentAccessibility.m | 143 fIndex = index; 541 if (fIndex == -1) { 545 return isChildSelected(env, ((JavaComponentAccessibility *)[self parent])->fAccessible, fIndex, fComponent); 550 if (fIndex == -1) { 1326 setAxContextSelection(env, axContext, fIndex, fComponent); 1418 return [NSNumber numberWithBool:ObjectEquals(env, axContext, getAxContextSelection(env, [self tabGroup], fIndex, fComponent), fComponent)]; 1423 TabGroupAction *action = [[TabGroupAction alloc] initWithEnv:env withTabGroup:[self tabGroup] withIndex:fIndex withComponent:fComponent];
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | RadialGradientPaintContext.java | 274 float fIndex = gRel * SQRT_LUT_SIZE; 275 int iIndex = (int) (fIndex); 278 fIndex = s0 + (fIndex - iIndex) * s1; 279 gIndex = (int) (fIndex * fastGradientArraySize);
|
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
H A D | D3DPaints.cpp | 356 int fIndex = 0; local 362 stopVals[fIndex+0] = (i < numStops) ? 364 stopVals[fIndex+1] = (i < numStops-1) ? 366 stopVals[fIndex+2] = 0.0f; // unused 367 stopVals[fIndex+3] = 0.0f; // unused 368 fIndex += 4;
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | TrueTypeFont.java | 183 public TrueTypeFont(String platname, Object nativeNames, int fIndex, argument 191 init(fIndex); 499 protected void init(int fIndex) throws FontFormatException { argument 508 if (fIndex >= directoryCount) { 511 fontIndex = fIndex; 512 buffer = readBlock(TTCHEADERSIZE+4*fIndex, 4);
|
Completed in 904 milliseconds