Searched refs:level (Results 51 - 75 of 221) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/sun/font/
H A DBidiUtils.java45 * Return the level of each character into the levels array starting at start.
75 * Return an array containing the resolved bidi level of each character, in logical order.
76 * @return an array containing the level of each character, in logical order.
87 * Given level data, compute a a visual to logical mapping.
106 byte level = levels[i];
107 if (level > highestLevel) {
108 highestLevel = level;
111 if ((level & 0x01) != 0 && level < lowestOddLevel) {
112 lowestOddLevel = level;
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dcompress.c36 Compresses the source buffer into the destination buffer. The level
44 Z_STREAM_ERROR if the level parameter is invalid.
46 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
51 int level;
70 err = deflateInit(&stream, level);
H A Dzlib.h244 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
251 The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
255 compression (currently equivalent to level 6).
258 enough memory, Z_STREAM_ERROR if level is not a valid compression level,
505 int level,
623 The stream will keep the same compression level and any other attributes
631 int level,
634 Dynamically update the compression level and compression strategy. The
635 interpretation of level an
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/
H A DTrace.c35 J2dTraceImpl(int level, jboolean cr, const char *string, ...) argument
41 if (level <= j2dTraceLevel) {
43 switch (level) {
/openjdk7/hotspot/src/share/vm/memory/
H A DgenerationSpec.cpp39 Generation* GenerationSpec::init(ReservedSpace rs, int level, argument
43 return new DefNewGeneration(rs, init_size(), level);
46 return new TenuredGeneration(rs, init_size(), level, remset);
50 return new ParNewGeneration(rs, init_size(), level);
56 level);
70 init_size(), level, ctrs, UseCMSAdaptiveFreeLists,
90 init_size(), level, ctrs, UseCMSAdaptiveFreeLists,
H A DgenCollectedHeap.hpp128 GCStats* gc_stats(int level) const;
157 // Save the "used_region" for generations level and lower,
159 void save_used_regions(int level, bool perm);
345 // "level" is the level of the lastest collection
394 int l = gen->level();
401 int l = gen->level() + 1;
426 // "level". (The "older_gens" closure is used for scanning references
441 void gen_process_strong_roots(int level,
466 // "level" (includin
[all...]
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiLine.java68 * The implementation of the access to same-level-runs and of the reordering
74 * same-level-runs is created. Reordering then is done on this vector.
75 * For each run of text positions that were resolved to the same level,
120 are already set to paragraph level.
122 level of B chars from 0 to paraLevel in getLevels when
204 byte level;
214 /* get the level of the first character */
215 level = (byte)(levels[0] & 1);
217 /* if there is anything of a different level, then the line
220 (lineBidi.paraLevel & 1) != level) {
333 getSingleRun(BidiBase bidiBase, byte level) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsimpleThresholdPolicy.cpp56 int bci, CompLevel level) {
88 tty->print(" level=%d ", level);
101 print_specific(type, mh, imh, bci, level);
215 // Check if the method can be compiled, change level if necessary
216 void SimpleThresholdPolicy::compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) { argument
217 assert(level <= TieredStopAtLevel, "Invalid compilation level");
218 if (level == CompLevel_none) {
225 if (!can_be_compiled(mh, level)) {
55 print_event(EventType type, methodHandle mh, methodHandle imh, int bci, CompLevel level) argument
243 submit_compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) argument
371 method_invocation_event(methodHandle mh, methodHandle imh, CompLevel level, nmethod* nm, JavaThread* thread) argument
383 method_back_branch_event(methodHandle mh, methodHandle imh, int bci, CompLevel level, nmethod* nm, JavaThread* thread) argument
[all...]
H A DadvancedThresholdPolicy.cpp32 int bci, CompLevel level) {
202 double AdvancedThresholdPolicy::threshold_scale(CompLevel level, int feedback_k) { argument
203 double queue_size = CompileBroker::queue_size(level);
204 int comp_count = compiler_count(level);
210 // compilation level should be performed (pointers to predicate functions
293 * profiling can start at level 0 and finish at level 3.
298 * level 2 and wait until the load on C2 decreases. This path is disabled for OSRs.
301 * In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough
302 * to enable the profiling to fully occur at level
31 print_specific(EventType type, methodHandle mh, methodHandle imh, int bci, CompLevel level) argument
426 submit_compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) argument
433 method_invocation_event(methodHandle mh, methodHandle imh, CompLevel level, nmethod* nm, JavaThread* thread) argument
448 method_back_branch_event(methodHandle mh, methodHandle imh, int bci, CompLevel level, nmethod* nm, JavaThread* thread) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogRecord.java91 * @serial Logging message level
93 private Level level; field in class:LogRecord
162 * Construct a LogRecord with the given level and message values.
174 * @param level a logging level value
177 public LogRecord(Level level, String msg) { argument
178 // Make sure level isn't null, by calling random method.
179 level.getClass();
180 this.level = level;
260 setLevel(Level level) argument
[all...]
H A DLogger.java66 * level is set to <tt>null</tt>, then its effective level is inherited
70 * The log level can be configured based on the properties from the
73 * by calls on the Logger.setLevel method. If a logger's level is
75 * logger that has <tt>null</tt> as its level will inherit its
76 * effective level from its parent.
79 * check of the request level (e.g., SEVERE or FINE) against the
80 * effective log level of the logger. If the request level is
81 * lower than the log level, th
649 log(Level level, String msg) argument
668 log(Level level, String msg, Object param1) argument
689 log(Level level, String msg, Object params[]) argument
714 log(Level level, String msg, Throwable thrown) argument
740 logp(Level level, String sourceClass, String sourceMethod, String msg) argument
764 logp(Level level, String sourceClass, String sourceMethod, String msg, Object param1) argument
791 logp(Level level, String sourceClass, String sourceMethod, String msg, Object params[]) argument
822 logp(Level level, String sourceClass, String sourceMethod, String msg, Throwable thrown) argument
870 logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg) argument
901 logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Object param1) argument
934 logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Object params[]) argument
971 logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Throwable thrown) argument
1284 isLoggable(Level level) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectWriter.java140 private int level ; field in class:ObjectWriter.IndentingObjectWriter
145 this.level = initialLevel ;
152 char[] fill = new char[ level * increment ] ;
160 level++ ;
175 level-- ;
182 level-- ;
/openjdk7/jdk/test/java/util/zip/
H A DInflaterBufferSize.java72 private static byte[] deflate(byte[] in, int level) throws Throwable { argument
73 final Deflater flater = new Deflater(level);
108 int level = -1;
110 level = Integer.parseInt(args[0]);
112 debug("Using level " + level);
128 deflated = deflate(data, level);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java211 int childIndex = getBranchIndex(aColor, aNode.level);
272 aNode.level = aLevel;
365 int level = reduceList.length - 1;
366 while (reduceList[level] == null && level >= 0) {
367 level--;
370 ColorNode thisNode = reduceList[level];
392 if (thisNode == reduceList[level]) {
393 reduceList[level] = thisNode.nextReducible;
408 int aDepth = thisNode.level;
442 public int level; field in class:PaletteBuilder.ColorNode
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DasPSOldGen.cpp54 int level) :
55 PSOldGen(initial_size, min_size, size_limit, gen_name, level),
65 int level) :
66 PSOldGen(initial_size, min_size, size_limit, gen_name, level),
50 ASPSOldGen(size_t initial_size, size_t min_size, size_t size_limit, const char* gen_name, int level) argument
60 ASPSOldGen(PSVirtualSpace* vs, size_t initial_size, size_t min_size, size_t size_limit, const char* gen_name, int level) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java44 /**The level of nameSpaces (for Inclusive visibility).*/
47 List level; field in class:NameSpaceSymbTable
60 level = new ArrayList(10);
112 level.add(null);
121 int size=level.size()-1;
122 Object ob= level.remove(size);
128 cloned=(level.get(size-1)!=symb);
138 level.set(level.size()-1,symb);
166 entry.level
308 int level=0; field in class:NameSpaceSymbEntry
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DManagedObjectManager.java315 * @param level NONE is no debugging at all, NORMAL traces high-level
318 * The tracing is done with INFO-level logger calls. The logger name is
321 void setRegistrationDebug( RegistrationDebugLevel level ) ;
323 /** Enable generation of debug log at INFO level for runtime MBean operations
338 * @param level set to 1 to just see the results of the TypeEvaluator, >1 to
342 void setTypelibDebug( int level ) ;
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c115 const char *level,
132 level,
148 const char *level; local
170 level = "FINEST"; /* FIXUP? */
190 level,
113 standard_logging_format(FILE *fp, const char *datetime, const char *level, const char *product, const char *module, const char *optional, const char *messageID, const char *message) argument
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java65 int levels[]; // The recursion level at which
159 int level = levels[levelIndex];
160 while (level < limit) {
176 // curves level values to the next higher level.
177 level++;
178 levels[levelIndex] = level;
180 levels[levelIndex] = level;
/openjdk7/jdk/test/java/util/logging/
H A DCustomLogManager.java33 * such as level, handler, etc.
52 // set level
53 if (props.get(name + ".level") != null) {
54 logger.setLevel(Level.parse(props.getProperty(name + ".level")));
68 if (props.get(pname + ".level") != null ||
70 // This pname has a level/handlers definition.
105 props.put(".level", "CONFIG");
106 props.put("CustomLogManagerTest.level", "WARNING");
108 props.put("SimpleLogManager.level", "INFO");
110 props.put("CustomLogManager$CustomHandler.level", "WARNIN
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java75 * onto it's respecive level string.
230 private void fillMemberLevelMap(List<ProgramElementDoc> list, String level) { argument
238 memberLevelMap.put(list.get(i), level);
242 private void purgeMemberLevelMap(List<ProgramElementDoc> list, String level) { argument
246 if (level.equals(memberLevelMap.get(list.get(i))))
300 private String level; field in class:VisibleMemberMap.ClassMembers
311 private ClassMembers(ClassDoc mappingClass, String level) { argument
313 this.level = level;
315 level
512 isOverridden(ProgramElementDoc pgmdoc, String level) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java43 // -F60858.1<daz> Support -corba option, level <= 2.2: identify 2.3 keywords.
44 // -D62023<daz> Support -corba option, level <= 2.3, identify 2.4 keywords.
45 // KMC Support -corba, level <= 3.0. Added 3.0 keywords.
297 // Do the conversion from a floating point CORBA level to an int
309 // Return the last keyword corresponding to a particular CORBA level
310 private static int getLastKeyword( int level )
312 if (level == CORBA_LEVEL_22)
314 if (level == CORBA_LEVEL_23)
316 if (level == CORBA_LEVEL_24RTF)
329 * @param float corbaLevel The CORBA level, currentl
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.cpp83 void WorkerDataArray<T>::print(int level, const char* title) { argument
86 LineBuffer buf(level);
97 LineBuffer buf(level);
224 void G1GCPhaseTimes::print_stats(int level, const char* str, double value) { argument
225 LineBuffer(level).append_and_print_cr("[%s: %.1lf ms]", str, value);
228 void G1GCPhaseTimes::print_stats(int level, const char* str, double value, int workers) { argument
229 LineBuffer(level).append_and_print_cr("[%s: %.1lf ms, GC Workers: %d]", str, value, workers);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformXPath2Filter.java220 public int isNodeIncludeDO(Node n, int level) { argument
223 if ((inSubstract==-1) || (level<=inSubstract)) {
225 inSubstract=level;
236 if ((inIntersect==-1) || (level<=inIntersect)) {
241 inIntersect=level;
247 if (level<=inUnion)
253 inUnion=level;
/openjdk7/jdk/test/javax/swing/SpringLayout/4726194/
H A Dbug4726194.java62 public static void test(int level, boolean horizontal) { argument
65 test(level, constraints, result, Arrays.asList(new Object[level]));
147 public static void test(int level, String[] constraints, List result, List soFar) { argument
148 if (level == 0) {
157 child.set(level - 1, constraints[i]);
158 test(level - 1, constraints, result, child);

Completed in 89 milliseconds

123456789