Searched defs:word (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLESwaps.h94 * casting a pointer to a word to a pointer to a byte. On
105 const le_uint16 word = 0xFF00; local
107 return *((le_uint8 *) &word);
113 * to correctly access a (16-bit) word.
115 * @param value - the word to be byte swapped
117 * @return the byte swapped word
H A DDeviceTables.cpp56 le_uint16 word = SWAPW(deltaValues[sizeIndex / count]); local
59 le_uint16 field = (word >> shift) & fieldMasks[format];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJJavaName.java78 * <b>Experimental API:</b> converts an English word into a plural form.
80 * @param word
81 * a word, such as "child", "apple". Must not be null.
82 * It accepts word concatanation forms
97 public static String getPluralForm(String word) { argument
98 // remember the casing of the word
101 // check if the word looks like an English word.
103 for(int i=0; i<word.length(); i++ ) {
104 char ch = word
205 apply(String word) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBits.java61 public static boolean isSetNthBit(int word, int n) { argument
62 return maskBits(word, nthBit(n)) != NoBits;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBuiltInEncodingAlgorithm.java46 public void word(int start, int end); method in interface:BuiltInEncodingAlgorithm.WordListener
56 wl.word(i, s);
61 wl.word(i, cb.length());
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp120 uint word = elem >> 5; // Get the longword offset local
121 if( word >= size ) // Beyond the last?
124 uint32 datum = data[word] & mask;// Get bit
125 data[word] |= mask; // Set bit
135 uint word = elem >> 5; // Get the longword offset local
136 if( word >= size ) return 0; // Beyond the last?
138 return data[word] & mask; // Get bit
143 uint word = elem >> 5; // Get the longword offset local
144 if( word >= size ) { // Beyond the last?
148 data[word] |
[all...]
H A Dvectset.cpp108 register uint word = elem >> 5; // Get the longword offset local
111 if( word >= size ) // Need to grow set?
113 data[word] |= mask; // Set new bit
121 register uint word = elem >> 5; // Get the longword offset local
122 if( word >= size ) // Beyond the last?
125 data[word] &= ~mask; // Clear bit
293 register uint word = elem >> 5; // Get the longword offset local
294 if( word >= size ) // Beyond the last?
297 return ((data[word] & mask))!=0; // Return the sense of the bit
308 uint32 word local
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c275 char * word[6]; local
276 int nwords = split_n_str(buf, 6, word, ' ', '\0');
277 if (nwords > 5 && find_lib(ph, word[5]) == false) {
281 sscanf(word[0], "%lx", &base);
283 sscanf(word[0], "%x", &base);
285 if ((lib = add_lib_info(ph, word[5], (uintptr_t)base)) == NULL)
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextArea.java328 * lines. If set to true the lines will be wrapped at word
334 * @param word indicates if word boundaries should be used
340 * description: should wrapping occur at word boundaries
342 public void setWrapStyleWord(boolean word) { argument
343 boolean old = this.word;
344 this.word = word;
345 firePropertyChange("wrapStyleWord", old, word);
350 * lines. If set to true the lines will be wrapped at word
813 private boolean word; field in class:JTextArea
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp41 typedef size_t idx_t; // Type used for bit and word indices.
52 bm_word_t* _map; // First word in bitmap
60 // Return the position of bit within the word that contains it (e.g., if
64 // Return a mask that will select the specified bit, when applied to the word
68 // Return the index of the word containing the specified bit.
71 // Return the bit number of the first bit in the specified word.
72 static idx_t bit_index(idx_t word) { return word << LogBitsPerWord; } argument
74 // Return the array of bitmap words, or a specific word from it.
76 bm_word_t map(idx_t word) cons
82 set_word(idx_t word, bm_word_t val) argument
83 set_word(idx_t word) argument
84 clear_word(idx_t word) argument
[all...]
H A DbitMap.cpp123 // The range includes at least one full word.
142 // The range includes at least one full word.
163 // The range includes at least one full word.
178 // The range includes at least one full word.
233 // The range includes at least one full word.
267 // The range includes at least one full word.
420 bm_word_t* word = map(); local
423 if (*word != (bm_word_t) AllBits) return false;
424 word++;
426 return rest == 0 || (*word | ~right_n_bit
431 bm_word_t* word = map(); local
[all...]
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java335 String word = scanWord(ss);
336 int lastDot = word.lastIndexOf('.');
338 return Query.attr(word);
340 return Query.attr(word.substring(0, lastDot),
341 word.substring(lastDot + 1));
357 String word = s.substring(0, stop);
359 return word;
362 private static boolean matchWord(String[] ss, String word) argument
365 if (s.startsWith(word)) {
366 int len = word
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java205 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d argument
206 assert(word <= 3);
207 return (char)(packed >> ((3-word) * 16));
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java222 * determine if the given word is a reserved key word
224 private boolean isReservedWord(String word) { argument
225 return reservedWords.contains(word);
229 * determine if the give work is a reserved key word
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java485 RTFAttribute word)
491 word.swingName(), MagicToken)) != null) {
494 word.writeValue(parm, this, true);
483 checkControlWord(MutableAttributeSet currentAttributes, AttributeSet newAttributes, RTFAttribute word) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java92 * words start at the beginning of a whitespace separated word. Some
93 * mailers incorrectly include encoded words in the middle of a word.
525 // Check if token is an 'encoded-word' ..
526 String word;
528 word = decodeWord(s);
529 // Yes, this IS an 'encoded-word'.
531 // if the previous word was also encoded, we
538 // This is NOT an 'encoded-word'.
539 word = s;
542 word
576 encodeWord(String word) argument
603 encodeWord(String word, String charset, String encoding) argument
812 decodeInnerWords(String word) argument
853 quote(String word, String specials) argument
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp276 // Collect all the registers in this register-word. One bit per register.
278 int word = 0; local
283 word |= (1 << (rnum & 31));
289 word |= (1 << i);
292 return word;
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.cpp103 Node* PhaseMacroExpand::opt_bits_test(Node* ctrl, Node* region, int edge, Node* word, int mask, int bits, bool return_fast_path) { argument
106 Node* and_node = transform_later(new (C) AndXNode(word, MakeConX(mask)));
109 cmp = word;
2103 // First, check mark word for the biased lock pattern.
2106 // Get fast path - mark word has the biased lock pattern.
2136 // Get slow path - mark word does NOT match the value.
2143 // Mark word does NOT match the value (thread | Klass::_prototype_header).
2169 // Get slow path - mark word does NOT match epoch bits.

Completed in 2805 milliseconds