Searched defs:ident (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciSymbol.hpp71 uint ident() { return _ident; } function in class:ciSymbol
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DShortHistogramTest.java177 private static void dump(Node node, String ident) { argument
182 System.out.printf("%s%s\n", ident, node.getNodeName());
189 System.out.printf("%s %s: %s\n", ident,
194 dump(node.getFirstChild(), ident + " ");
196 dump(node.getNextSibling(), ident);
/openjdk7/langtools/test/tools/javac/T6956462/
H A DT6956462.java103 public Tree visitIdentifier(IdentifierTree ident, Void v) { argument
104 trees.getScope(trees.getPath(file, ident));
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java150 public void printTree(String ident) { argument
164 ident+= " ";
170 node.printTree(ident);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DMC.java254 * @param ident the name of the error in mixed-case identifier form.
263 String ident = StringUtil.toMixedCase(errorName);
267 writeMethodStatusCause(groupName, exceptionName, errorName, ident, level,
271 writeMethodStatus(exceptionName, ident, numParams, pw);
274 writeMethodCause(exceptionName, ident, numParams, pw);
277 writeMethodNoArgs(exceptionName, ident, numParams, pw);
289 * @param ident the name of the error in mixed-case identifier form.
296 String errorName, String ident,
301 ident, makeDeclArgs(true, numParams));
317 pw.printMsg( "doLog( Level.@, \"@.@\",", logLevel, groupName, ident);
295 writeMethodStatusCause(String groupName, String exceptionName, String errorName, String ident, String logLevel, int numParams, String className, IndentingPrintWriter pw) argument
338 writeMethodStatus(String exceptionName, String ident, int numParams, IndentingPrintWriter pw) argument
356 writeMethodCause(String exceptionName, String ident, int numParams, IndentingPrintWriter pw) argument
375 writeMethodNoArgs(String exceptionName, String ident, int numParams, IndentingPrintWriter pw) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsClient.java157 private int ident = 0; // used to set the msg ID field field in class:DnsClient
171 ident = 0xFFFF & (ident + 1);
172 xid = ident;
310 ident = 0xFFFF & (ident + 1);
311 xid = ident;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java69 private byte ident[] = new byte[16]; field in class:ELFFileParser.ELFFileImpl
73 int bytesRead = readBytes(ident);
74 if (bytesRead != ident.length) {
77 "read " + ident.length + "bytes).");
92 magicNumber[0] = ident[NDX_MAGIC_0];
93 magicNumber[1] = ident[NDX_MAGIC_1];
94 magicNumber[2] = ident[NDX_MAGIC_2];
95 magicNumber[3] = ident[NDX_MAGIC_3];
99 public byte getObjectSize() { return ident[NDX_OBJECT_SIZE]; }
100 public byte getEncoding() { return ident[NDX_ENCODIN
110 private byte ident[] = new byte[16]; // unsigned char field in class:ELFFileParser.ELFFileImpl.ELFHeaderImpl
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp983 OperandForm *ArchDesc::constructOperand(const char *ident, argument
985 OperandForm *opForm = new OperandForm(ident, ideal_only);
986 _globalNames.Insert(ident, opForm);
997 char *ident = (char *)NodeClassNames[i]; local
998 constructOperand(ident, true);
1002 char *ident = (char *)NodeClassNames[j]; local
1003 if(!strcmp(ident, "ConI") || !strcmp(ident, "ConP") || !strcmp(ident, "ConN") ||
1004 !strcmp(ident, "Con
1019 const char *ident = "Universe"; local
1047 const char *ident = "USE"; local
[all...]
H A Dadlparse.cpp88 char *ident; local
94 ident = get_ident(); // Get first token
95 if (ident == NULL) { // Empty line
98 if (!strcmp(ident, "instruct")) instr_parse();
99 else if (!strcmp(ident, "operand")) oper_parse();
100 else if (!strcmp(ident, "opclass")) opclass_parse();
101 else if (!strcmp(ident, "ins_attrib")) ins_attr_parse();
102 else if (!strcmp(ident, "op_attrib")) op_attr_parse();
103 else if (!strcmp(ident, "source")) source_parse();
104 else if (!strcmp(ident, "source_hp
145 char *ident; local
400 char *ident; local
496 char *ident; local
555 char *ident; local
590 char *ident; local
1272 char * ident; local
1318 char * ident; local
1625 char * ident; local
1709 char * ident; local
1746 char * ident; local
3574 char* ident = get_rep_var_ident(); local
3825 char *ident, *ident2; local
3979 attr_parse(char* ident) argument
4330 char *ident = get_ident(); local
4444 char* ident = get_ident(); local
4539 char *ident = NULL; local
4603 char *ident; local
4808 char* ident = (_curchar == '\\n') ? NULL : get_ident_no_preproc(); local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java437 Name ident() { method in class:JavacParser
474 JCExpression t = toP(F.at(S.pos()).Ident(ident()));
478 t = toP(F.at(pos).Select(t, ident()));
928 t = toP(F.at(S.pos()).Select(t, ident()));
1008 t = toP(F.at(S.pos()).Ident(ident()));
1073 t = toP(F.at(pos).Select(t, ident()));
1150 t = toP(F.at(pos1).Select(t, ident()));
1177 t = toP(F.at(pos).Select(t, ident()));
1328 JCIdent id = toP(F.at(S.pos()).Ident(ident()));
1421 t = toP(F.at(pos).Select(t, ident()));
[all...]

Completed in 682 milliseconds