Searched refs:normal (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/
H A DPublicId.java61 String normal = publicId.replace('\t', ' ');
62 normal = normal.replace('\r', ' ');
63 normal = normal.replace('\n', ' ');
64 normal = normal.trim();
68 while ((pos = normal.indexOf(" ")) >= 0) {
69 normal = normal
[all...]
/openjdk7/jdk/test/sun/security/rsa/
H A DInvalidBitString.java95 Certificate normal = generate(normalCertStr);
101 if (!test(normal, signer, " normal", true) ||
/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.cpp44 case normal: break;
H A Dlocation.hpp53 normal, // Ints, floats, double halves enumerator in enum:VALUE_OBJ_CLASS_SPEC::Type
/openjdk7/jdk/make/java/jexec/
H A DMakefile40 override COMPILE_APPROACH = normal
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeRequirements.java438 * This method also requires a flag indicating whether normal or
439 * reverse alignment should be performed. With normal alignment
451 * @param normal when true, the alignment value 0.0f means
460 boolean normal) {
461 float totalAlignment = normal ? total.alignment : 1.0f - total.alignment;
466 float alignment = normal ? req.alignment : 1.0f - req.alignment;
455 calculateAlignedPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans, boolean normal) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DOceanTheme.java104 public IFIcon(Icon normal, Icon pressed) { argument
105 super(normal);
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DInvoke.java216 long normal = MsgSend.getMsgSendFxnPtr(returnCoder);
217 if(normal == MsgSend.OBJC_MSG_SEND_STRET_FXN_PTR)
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.cpp127 case Location::normal: {
H A DvmStructs.cpp2401 declare_constant(Location::normal) \
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCacheDecache.hpp138 // stack[1] local[2] NULL normal lng
139 // stack[2] local[1] jlong normal invalid
140 // stack[3] local[0] jint normal normal
152 return Location::normal;
165 return Location::normal;
H A DsharkCacheDecache.cpp92 slot2loc(box_offset, Location::normal)));
/openjdk7/jdk/make/common/shared/
H A DDefs-windows.gmk51 COMPILE_APPROACH = normal
/openjdk7/corba/make/common/shared/
H A DDefs-windows.gmk45 COMPILE_APPROACH = normal
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.hpp233 return location_for_sp_offset(sp_offset_for_monitor_lock(monitor_index), Location::normal, loc);
H A Dc1_LinearScan.cpp2574 Location::Type loc_type = is_oop ? Location::oop : Location::normal;
2580 DEBUG_ONLY(assert_equal(sv, location_for_name(stack_idx, is_oop ? Location::oop : Location::normal)));
2588 Location::Type int_loc_type = NOT_LP64(Location::normal) LP64_ONLY(Location::int_in_long);
2607 LocationValue* sv = new LocationValue(Location::new_reg_loc(Location::normal, rname));
2623 Location::Type loc_type = float_saved_as_double ? Location::float_in_dbl : Location::normal;
2666 if (!frame_map()->locations_for_slot(opr->double_stack_ix(), Location::normal, &loc1, &loc2)) {
2689 first = new LocationValue(Location::new_reg_loc(Location::normal, rname_first));
2690 second = new LocationValue(Location::new_reg_loc(Location::normal, rname_second));
2702 first = new LocationValue(Location::new_reg_loc(Location::normal, rname_first));
2706 second = new LocationValue(Location::new_reg_loc(Location::normal, rname_secon
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css31 font-weight: normal;
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp689 array->append(new_loc_value( _regalloc, regnum , Location::normal ));
690 array->append(new_loc_value( _regalloc, OptoReg::add(regnum,1), Location::normal ));
701 array->append(new_loc_value( _regalloc, OptoReg::add(regnum,1), Location::normal ));
702 array->append(new_loc_value( _regalloc, regnum , Location::normal ));
708 ? Location::float_in_dbl : Location::normal ));
711 ? Location::int_in_long : Location::normal ));
715 array->append(new_loc_value( _regalloc, regnum, _regalloc->is_oop(local) ? Location::oop : Location::normal ));
939 Location basic_lock = Location::new_stk_loc(Location::normal,_regalloc->reg2offset(box_reg));
1090 // Instead, we hack around the normal spill mechanism using stfspill's and
1629 // We can use the same code as for the normal deop
[all...]
/openjdk7/jdk/make/common/
H A DLibrary.gmk148 $(MAKE) COMPILE_APPROACH=normal $(COMPILE_FILES_o)
H A DProgram.gmk35 # If building programs, use a normal compile approach
38 override COMPILE_APPROACH = normal
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java929 * <p> If this URI is opaque, or if its path is already in normal form,
961 * but whose path is in normal form
2081 // If the given URI's path is normal then return the URI;
2160 boolean normal = true;
2170 if (p > 1) normal = false;
2182 normal = false;
2194 normal = false;
2202 return normal ? -1 : ns;
2397 // Normalize the given path string. A normal path string has no empty
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp634 // the expression stack grows down incrementally, so the normal guard
1786 RuntimeAddress normal(CAST_FROM_FN_PTR(address, BytecodeInterpreter::run));
1789 __ call(JvmtiExport::can_post_interpreter_events() ? checking : normal);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java619 // it allows "normal" errors to be unrecoverable!
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2277 Object throwOrReturn(Object normal, T exception) throws T { argument
2279 called("throwOrReturn/throw", normal, exception);
2282 called("throwOrReturn/normal", normal, exception);
2283 return normal;
2338 assertCalled("throwOrReturn/"+(throwMode == THROW_NOTHING ? "normal" : "throw"), arg0, arg1);
2417 String normalRetVal = "normal return value";
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec353 "used to restore normal activity after a HoldEvents command. If "
1992 "a normal return. "
2890 "created by the target VM during its normal (non-debug) operation. "
3145 "otherwise, normal virtual invoke (instance methods only)")

Completed in 446 milliseconds