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

/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DDictionaryBasedBreakIteratorBuilder.java98 protected void mungeExpressionList(Hashtable expressions) { argument
99 expressions.put(dictionaryExpression, dictionaryChars);
H A DRuleBasedBreakIteratorBuilder.java119 protected Hashtable expressions = null; field in class:RuleBasedBreakIteratorBuilder
134 * the regular expressions.
563 expressions = new Hashtable();
595 if (expressions.get(line.substring(p, q)) == null) {
596 expressions.put(line.substring(p, q), CharSet.parseString(line.substring(p, q)));
610 expressions.put(line.substring(p, p + 1), CharSet.parseString(line.substring(p, p + 1)));
631 mungeExpressionList(expressions);
645 // for each expression in the expressions list, do...
646 Enumeration iter = expressions.elements();
700 iter = expressions
785 mungeExpressionList(Hashtable expressions) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.cpp134 GrowableArray<ScopeValue*>* ScopeDesc::expressions() { function in class:ScopeDesc
202 // expressions
203 { GrowableArray<ScopeValue*>* l = ((ScopeDesc*) this)->expressions();
245 { GrowableArray<ScopeValue*>* l = expressions();
H A DdebugInfoRec.cpp289 DebugToken* expressions,
317 // serialize the locals/expressions/monitors
319 stream()->write_int((intptr_t) expressions);
282 describe_scope(int pc_offset, ciMethod* method, int bci, bool reexecute, bool is_method_handle_invoke, bool return_oop, DebugToken* locals, DebugToken* expressions, DebugToken* monitors) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp79 StackValueCollection* expressions(void) const { return _expressions; } function in class:vframeArrayElement
H A Dvframe_hp.cpp165 StackValueCollection* compiledVFrame::expressions() const { function in class:compiledVFrame
168 GrowableArray<ScopeValue*>* scv_list = scope()->expressions();
H A Dvframe.cpp324 StackValueCollection* interpretedVFrame::expressions() const { function in class:interpretedVFrame
342 // handle expressions
521 print_stack_values("expressions", expressions());
597 // Check expressions
598 StackValueCollection* exprs = expressions();
599 StackValueCollection* other_exprs = other->expressions();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp211 GrowableArray<ScopeValue*>* expressions,
217 , _expressions(expressions)
225 GrowableArray<ScopeValue*>* expressions() { return _expressions; } function in class:IRScopeDebugInfo
238 DebugToken* expvals = recorder->create_scope_values(expressions());
208 IRScopeDebugInfo(IRScope* scope, int bci, GrowableArray<ScopeValue*>* locals, GrowableArray<ScopeValue*>* expressions, GrowableArray<MonitorValue*>* monitors, IRScopeDebugInfo* caller) argument
H A Dc1_LinearScan.cpp2291 if (d1->expressions() != NULL) {
2292 assert(d1->expressions() != NULL && d2->expressions() != NULL, "not equal");
2293 assert(d1->expressions()->length() == d2->expressions()->length(), "not equal");
2294 for (int i = 0; i < d1->expressions()->length(); i++) {
2295 assert_equal(d1->expressions()->at(i), d2->expressions()->at(i));
2298 assert(d1->expressions() == NULL && d2->expressions()
2847 GrowableArray<ScopeValue*>* expressions = NULL; local
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1081 List expressions = sd.getExpressions();
1082 if (expressions != null) {
1085 buf.append(genHTMLForExpressions(sd, expressions));
1361 buf.append(locals? "locals " : "expressions ");
1397 protected String genHTMLForExpressions(ScopeDesc sd, List expressions) { argument
1398 return genHTMLForScopeValues(sd, false, expressions);

Completed in 62 milliseconds