Searched refs:token (Results 101 - 125 of 192) sorted by relevance

12345678

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRangeToken.java198 protected void mergeRanges(Token token) { argument
199 RangeToken tok = (RangeToken)token;
231 protected void subtractRanges(Token token) { argument
232 if (token.type == NRANGE) {
233 this.intersectRanges(token);
236 RangeToken tok = (RangeToken)token;
324 protected void intersectRanges(Token token) { argument
325 RangeToken tok = (RangeToken)token;
415 static Token complementRanges(Token token) { argument
416 if (token
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java147 final String token = (String) values.nextElement();
148 IntegerArray nodes = (IntegerArray) _index.get(token);
152 nodes = getDOMNodeById(token);
253 final String token = (String) values.nextElement();
257 nodes = (IntegerArray) index.get(token);
264 nodes = getDOMNodeById(token);
701 final String token = (String) values.nextElement();
706 nodes = (IntegerArray) index.get(token);
713 nodes = getDOMNodeById(token);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DValueListBeanInfoImpl.java75 CharSequence token = text.subSequence(idx,p);
76 if (!token.equals(""))
78 r.add(xducer.parse(token));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DListTransducedAccessorImpl.java123 CharSequence token = s.subSequence(idx,p);
124 if (!token.equals(""))
125 lister.addToPack(pack,xducer.parse(token));
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java193 String token = st.nextToken();
196 if (token.endsWith("%")) {
198 token = token.substring(0, token.length() - 1);
204 int intValue = Integer.parseInt(token);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngineId.java253 StringTokenizer token = new StringTokenizer(str,
267 address = token.nextToken();
274 token.nextToken();
289 port = token.nextToken();
302 token.nextToken();
315 iana = token.nextToken();
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp94 ident = get_ident(); // Get first token
631 char *token = get_ident(); local
632 if (token == NULL) {
636 if (strcmp(token,"int_def")==0) { int_def_parse(); }
637 // if (strcmp(token,"str_def")==0) { str_def_parse(); }
789 char *token = get_ident(); local
790 if (token == NULL) {
794 if (strcmp(token,"reg_def")==0) { reg_def_parse(); }
795 else if (strcmp(token,"reg_class")==0) { reg_class_parse(); }
796 else if (strcmp(token,"alloc_clas
824 char *token = get_ident(); local
972 char *token = get_ident(); local
1159 char *token = NULL; local
1190 char *token = get_ident(); local
1234 char *token = get_paren_expr("preserve_stack_slots"); local
2086 char *token = get_ident(); local
2431 char *token = NULL; local
2649 char *token = NULL; local
4011 char *token; // Identifier which may be opcode or operand local
4097 const char *token = NULL; local
4988 is_int_token(const char* token, int& intval) argument
5063 trim(char* &token) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTKeyStroke.java552 String token = st.nextToken();
555 if (token.length() != 1 || i != count) {
558 return getCachedStroke(token.charAt(0), KeyEvent.VK_UNDEFINED,
567 String keyCodeName = "VK_" + token;
574 if (token.equals("released")) {
578 if (token.equals("pressed")) {
582 if (token.equals("typed")) {
587 Integer tokenMask = (Integer)modifierKeywords.get(token);
/openjdk7/jaxws/src/share/jaf_classes/com/sun/activation/registries/
H A DMailcapTokenizer.java65 * preceeding it) is considered a token.
74 * Retrieve current token.
76 * @returns The current token value
83 * Get a String that describes the given token.
85 public static String nameForToken(int token) { argument
88 switch(token) {
116 * Retrieve current token value.
118 * @returns A String containing the current token value
124 * Process the next token.
126 * @returns the next token
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DNGCCRuntimeEx.java162 protected void unexpectedX(String token) throws SAXException { argument
165 token, getLocator().getLineNumber(), getLocator().getColumnNumber()),
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DNegotiateAuthentication.java167 * return the first token.
168 * @returns the token
195 * @param token the token to be fed into <code>negotiator.nextToken()</code>
196 * @returns the token
198 * May happen if the input token is invalid.
200 private byte[] nextToken(byte[] token) throws IOException { argument
201 return negotiator.nextToken(token);
211 // 200 OK. The token can be fed into initSecContext() again to determine
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java156 protected void addToken(XPath.Tokens tokens, int token)
159 token == XPath.Tokens.EXPRTOKEN_ATSIGN ||
160 token == XPath.Tokens.EXPRTOKEN_AXISNAME_ATTRIBUTE ||
161 token == XPath.Tokens.EXPRTOKEN_NAMETEST_QNAME ||
162 token == XPath.Tokens.EXPRTOKEN_OPERATOR_SLASH ||
163 token == XPath.Tokens.EXPRTOKEN_PERIOD ||
164 token == XPath.Tokens.EXPRTOKEN_NAMETEST_ANY ||
165 token == XPath.Tokens.EXPRTOKEN_NAMETEST_NAMESPACE ||
166 token == XPath.Tokens.EXPRTOKEN_OPERATOR_DOUBLE_SLASH ||
167 token
948 getTokenString(int token) argument
961 addToken(int token) argument
1991 addToken(XPath.Tokens tokens, int token) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DAbstractPreferences.java781 * consecutively, or the final token is <tt>"/"</tt> (rather than a name),
822 String token = path.nextToken();
823 if (token.equals("/")) // Check for consecutive slashes
826 AbstractPreferences child = kidCache.get(token);
828 if (token.length() > MAX_NAME_LENGTH)
830 "Node name " + token + " too long");
831 child = childSpi(token);
834 kidCache.put(token, child);
890 String token = path.nextToken();
891 if (token
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParser.java196 sb.append(token);
206 sb.append(token);
943 push(LValue.makeThisObject(vm, frameGetter, token));
983 push(pop().memberLValue(frameGetter, token.image));
1000 push(LValue.makeInteger(vm, token));
1004 push(LValue.makeFloat(vm, token));
1008 push(LValue.makeCharacter(vm, token));
1012 push(LValue.makeString(vm, token));
1017 push(LValue.makeBoolean(vm, token));
1021 push(LValue.makeNull(vm, token));
3612 public Token token, jj_nt; field in class:ExpressionParser
[all...]
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c598 char token[MAX_TOKEN_LENGTH]; local
608 /* Get the first token from the options string. */
609 next = get_token(options, ",=", token, sizeof(token));
613 if ( strcmp(token,"help")==0 ) {
628 } else if ( strcmp(token,"max")==0 ) {
633 /* Check for token scan error */
639 } else if ( strcmp(token,"include")==0 ) {
659 /* Check for token scan error */
663 } else if ( strcmp(token,"exclud
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DNativeGSSContext.java82 private static Oid getMechFromSpNegoToken(byte[] token, argument
89 header = new GSSHeader(new ByteArrayInputStream(token));
95 System.arraycopy(token, token.length-negTokenLen,
104 NegTokenTarg ntok = new NegTokenTarg(token);
160 // Need to add back the GSS header for a complete GSS token
175 // Must be unparsed GSS token or SPNEGO's NegTokenTarg token
283 // Only inspect the token when the permission check
332 // Only inspect token whe
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java105 * pattern, and then attempt to return the next token. Both <tt>hasNext</tt>
117 * will not pass the token that caused the exception, so that it may be
425 // A pattern for any token
912 // Returns true if a complete token or partial token is in the buffer.
913 // It is not necessary to find a complete token since a partial token
914 // means that there will be another token with or without more input.
932 * Returns a "complete token" that matches the specified pattern
934 * A token i
2084 processIntegerToken(String token) argument
2283 processFloatToken(String token) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltStrings.java182 * The str:split function splits up a string and returns a node set of token
183 * elements, each containing one token from the string.
191 * <token>a</token>
192 * <token>simple</token>
193 * <token>list</token>
212 String token = null;
219 token
[all...]
/openjdk7/jdk/test/java/lang/instrument/
H A DManifestTest.sh289 echo "ERROR: invalid test token"
371 while read token; do
373 echo "===== begin test case: $token ====="
374 make_a_JAR "$token"
445 echo "===== end test case: $token ====="
/openjdk7/hotspot/agent/test/jdi/
H A DVMConnection.java139 String token = tokenizer.nextToken();
140 int index = token.indexOf('=');
143 token);
145 String name = token.substring(0, index);
146 String value = token.substring(index + 1);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DVMConnection.java111 String token = argString.substring(startPosition, endPosition);
112 int index = token.indexOf('=');
113 String name = token.substring(0, index);
114 String value = token.substring(index + 1,
115 token.length() - 1); // Remove comma delimiter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DBindingID.java288 for( String token : query.split("&") ) {
289 int idx = token.indexOf('=');
291 throw new WebServiceException("Malformed binding ID (no '=' in "+token+")");
292 r.parameters.put(token.substring(0,idx),token.substring(idx+1));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DModelNode.java59 private XmlToken token; field in class:ModelNode.Type
61 Type(XmlToken token) { argument
62 this.token = token;
66 return token;
/openjdk7/jdk/test/com/sun/jdi/
H A DVMConnection.java145 String token = tokenizer.nextToken();
146 int index = token.indexOf('=');
149 token);
151 String name = token.substring(0, index);
152 String value = token.substring(index + 1);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DHttpNegotiateServer.java345 byte[] token = new sun.misc.BASE64Decoder()
347 token = c.acceptSecContext(token, 0, token.length);
350 .encode(token).replaceAll("\\s", ""));

Completed in 118 milliseconds

12345678