/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/ |
H A D | TypeParameterDeclarationImpl.java | 99 static String toString(AptEnv env, Type.TypeVar tv) { argument 101 s.append(tv); 103 for (Type bound : getExtendsBounds(env, tv)) { 116 Type.TypeVar tv) { 117 return (tv.getUpperBound().tsym == env.symtab.objectType.tsym) 119 : env.jctypes.getBounds(tv); 115 getExtendsBounds(AptEnv env, Type.TypeVar tv) argument
|
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/ |
H A D | PLATFORM_API_SolarisOS_Utils.c | 42 struct timeval tv; local 43 gettimeofday(&tv, NULL); 44 return tv.tv_sec;
|
H A D | PLATFORM_API_BsdOS_ALSA_MidiUtils.c | 35 struct timeval tv; local 37 gettimeofday(&tv, NULL); 38 return (tv.tv_sec * 1000000UL) + tv.tv_usec;
|
H A D | PLATFORM_API_LinuxOS_ALSA_MidiUtils.c | 35 struct timeval tv; local 37 gettimeofday(&tv, NULL); 38 return (tv.tv_sec * 1000000UL) + tv.tv_usec;
|
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/ |
H A D | Matrix3D.java | 224 /** Transform nvert points from v into tv. v contains the input 226 the array constitute a point. tv ends up holding the transformed 228 void transform(float v[], int tv[], int nvert) { argument 236 tv[i] = (int) (x * lxx + y * lxy + z * lxz + lxo); 237 tv[i + 1] = (int) (x * lyx + y * lyy + z * lyz + lyo); 238 tv[i + 2] = (int) (x * lzx + y * lzy + z * lzz + lzo);
|
/openjdk7/jdk/src/share/demo/applets/WireFrame/ |
H A D | Matrix3D.java | 224 /** Transform nvert points from v into tv. v contains the input 226 the array constitute a point. tv ends up holding the transformed 228 void transform(float v[], int tv[], int nvert) { argument 236 tv[i] = (int) (x * lxx + y * lxy + z * lxz + lxo); 237 tv[i + 1] = (int) (x * lyx + y * lyy + z * lyz + lyo); 238 tv[i + 2] = (int) (x * lzx + y * lzy + z * lzz + lzo);
|
/openjdk7/jdk/src/share/classes/sun/reflect/generics/visitor/ |
H A D | TypeTreeVisitor.java | 47 void visitTypeVariableSignature(TypeVariableSignature tv); argument
|
H A D | Reifier.java | 164 public void visitTypeVariableSignature(TypeVariableSignature tv){ argument 165 resultType = getFactory().findTypeVariable(tv.getIdentifier());
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/ |
H A D | Graph.java | 143 public void traverseBFS(Node<N, E> startingNode, BFSTraversalVisitor tv, boolean longestPath) { argument 164 tv.visitNode(current, layer); 197 public void traverseDFS(DFSTraversalVisitor tv) { argument 198 traverseDFS(getNodes(), tv); 201 public void traverseDFS(Collection<Node<N, E>> startingNodes, DFSTraversalVisitor tv) { argument 210 traverse(tv, n); 214 private void traverse(DFSTraversalVisitor tv, Node<N, E> n) { argument 219 tv.visitNode(n); 225 tv.visitEdge(e, true); 227 if (tv [all...] |
/openjdk7/jdk/src/solaris/native/java/io/ |
H A D | UnixFileSystem_md.c | 390 struct timeval tv[2]; local 393 tv[0].tv_sec = sb.st_atime; 394 tv[0].tv_usec = 0; 397 tv[1].tv_sec = time / 1000; 398 tv[1].tv_usec = (time % 1000) * 1000; 400 if (utimes(path, tv) == 0)
|
/openjdk7/jdk/src/windows/native/sun/nio/ch/ |
H A D | WindowsSelectorImpl.c | 62 struct timeval timevalue, *tv; local 71 tv = &zerotime; 73 tv = NULL; 75 tv = &timevalue; 76 tv->tv_sec = (long)(timeout / 1000); 77 tv->tv_usec = (long)((timeout % 1000) * 1000); 101 if ((result = select(0 , &readfds, &writefds, &exceptfds, tv))
|
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
H A D | LdapName.java | 600 void add(TypeAndValue tv) { argument 602 // Set i to index of first element greater than tv, or to 606 int diff = tv.compareTo(tvs.elementAt(i)); 608 return; // tv is a duplicate: ignore it 614 tvs.insertElementAt(tv, i); 639 TypeAndValue tv = (TypeAndValue)tvs.elementAt(i); 640 int diff = tv.compareTo(that.tvs.elementAt(i)); 661 TypeAndValue tv; 665 tv = (TypeAndValue) tvs.elementAt(i); 666 if ((attr = attrs.get(tv [all...] |
/openjdk7/jdk/src/solaris/native/java/net/ |
H A D | Inet4AddressImpl.c | 608 struct timeval tv; local 646 gettimeofday(&tv, NULL); 647 memcpy(icmp->icmp_data, &tv, sizeof(tv)); 648 plen = ICMP_ADVLENMIN + sizeof(tv);
|
H A D | Inet6AddressImpl.c | 460 struct timeval tv; local 502 gettimeofday(&tv, NULL); 503 memcpy(sendbuf + sizeof(struct icmp6_hdr), &tv, sizeof(tv)); 504 plen = sizeof(struct icmp6_hdr) + sizeof(tv);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/ |
H A D | Infer.java | 310 TypeVar tv = (TypeVar)uv.qtype; 312 for (Type t : that.getConstraints(tv, ConstraintKind.EXTENDS)) { 316 List<Type> inst = that.getConstraints(tv, ConstraintKind.EQUAL); 476 List<Type> getConstraints(TypeVar tv, ConstraintKind ck) { 479 if (uv.qtype == tv) { 482 .appendList(types.subst(types.getBounds(tv), all_tvars, inferredTypes)); 548 abstract List<Type> getConstraints(TypeVar tv, ConstraintKind ck); argument 561 public List<Type> getConstraints(TypeVar tv, ConstraintKind ck) { argument 562 return UninferredMethodType.this.getConstraints(tv, ck);
|
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/ |
H A D | hprof_md.c | 238 struct timeval tv; local 240 if ( gettimeofday(&tv, (void *)0) != 0 ) { 244 return ((jlong)tv.tv_sec * (jlong)1000) + (jlong)(tv.tv_usec / 1000);
|
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/ |
H A D | splashscreen_sys.c | 140 struct timeval tv; local 144 gettimeofday(&tv, &tz); 145 msec = (unsigned long long) tv.tv_sec * 1000 + 146 (unsigned long long) tv.tv_usec / 1000; 152 msec2timeval(unsigned time, struct timeval *tv) { argument 153 tv->tv_sec = time / 1000; 154 tv->tv_usec = (time % 1000) * 1000;
|
/openjdk7/jdk/src/macosx/bin/ |
H A D | java_md_macosx.c | 749 struct timeval tv; local 750 gettimeofday(&tv, NULL); 751 return (tv.tv_sec * 1000) + tv.tv_usec;
|
/openjdk7/jdk/src/share/back/ |
H A D | eventHelper.c | 942 enumForCopyingSingles(void *command, void *tv) argument 944 struct singleTracker *tracker = (struct singleTracker *)tv;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Type.java | 1177 * @param tv the type-variable for which the constraint is to be retrieved 1181 public List<Type> getConstraints(TypeVar tv, ConstraintKind ck) { argument
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | macro.cpp | 1109 int tv = _igvn.find_int_con(initial_slow_test, -1); local 1110 if (tv >= 0) { 1111 always_slow = (tv == 1);
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | os_bsd.cpp | 2713 struct timeval tv; local 2714 gettimeofday(&tv, NULL); 2715 return (tv.tv_sec * NANOSECS_PER_SEC) + (tv.tv_usec * 1000);
|