/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Punycode.java | 61 * point (for use in representing integers) in the range 0 to 106 * (when used for representing integers) is d, which must be in the 108 * nonzero, in which case the uppercase form is used. 140 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit): 276 int n, i, bias, basicLength, j, in, oldi, w, k, digit, t, local 318 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) { 320 * in is the index of the next character to be consumed, an [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
SelectFormat.java | 46 * <li>German differs from English in that the gender of nouns is rather 51 * <li>French has only two genders; as in German the gender of nouns 53 * are the opposite of those in German. The gender affects 64 * but similar in grammatical use. 67 * <p><b>Note:</b>For the gender of a <i>person</i> in a given sentence, 82 * each noun and per language, e.g., in resource bundles. 99 * move bits of the sentence in and out of the select argument of a message. 126 * <p>Each message is a MessageFormat pattern string enclosed in {curly braces}. 187 * Patterns and their interpretation are specified in the class description. 313 * @return the string buffer passed in as toAppendTo, with formatted tex [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
PunycodeReference.java | 18 and distribute it in any way that does not diminish the rights 36 * The implementation is direct port of C code in the RFC 70 /* point (for use in representing integers) in the range 0 to */ 80 /* (when used for representing integers) is d, which needs to be in */ 82 /* nonzero, in which case the uppercase form is used. The behavior */ 225 int[] in = new int[input.length()]; local 231 in[inLen++]=ch; 239 rc = encode(inLen,in,case_flags, outLen, output); 261 throw new StringPrepParseException("Illegal char found in the input",StringPrepParseException.ILLEGAL_CHAR_FOUND) 271 char[] in = input.toString().toCharArray(); local 303 b, j, in, oldi, w, k, digit, t; local [all...] |
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
BreakIteratorPerformanceTest.java | 41 // read in the input file, being careful with a possible BOM 42 FileInputStream in = new FileInputStream(fileName); local 43 BOMFreeReader reader = new BOMFreeReader(in, encoding);
|
/external/iproute2/include/linux/ |
netfilter.h | 7 #include <linux/in.h> 74 struct in_addr in; member in union:nf_inet_addr
|
/external/iptables/iptables/ |
ip6tables-restore.c | 171 "The -t option (seen in line %u) cannot be " 172 "used in ip6tables-restore.\n", line); 195 FILE *in; local 253 in = fopen(argv[optind], "re"); 254 if (!in) { 264 else in = stdin; 267 while (fgets(buffer, sizeof(buffer), in)) { 423 /* we have counters in our input */ 487 fclose(in);
|
iptables-restore.c | 169 "The -t option (seen in line %u) cannot be " 170 "used in iptables-restore.\n", line); 194 FILE *in; local 252 in = fopen(argv[optind], "re"); 253 if (!in) { 263 else in = stdin; 266 while (fgets(buffer, sizeof(buffer), in)) { 422 /* we have counters in our input */ 486 fclose(in);
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/ |
ExecFileLoaderTest.java | 135 final InputStream in = new FileInputStream(file); local 138 final ExecutionDataReader reader = new ExecutionDataReader(in);
|
/external/junit/src/main/java/junit/textui/ |
TestRunner.java | 129 System.in.read();
|
/external/kernel-headers/original/uapi/linux/ |
netfilter.h | 7 #include <linux/in.h> 76 struct in_addr in; member in union:nf_inet_addr
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
PropertyInfo.java | 5 * associated documentation files (the "Software"), to deal in the Software without restriction, including 10 * The above copyright notice and this permission notice shall be included in all copies or substantial 14 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 17 * USE OR OTHER DEALINGS IN THE SOFTWARE. 253 // a copy of the object back in. 254 ObjectInputStream in = new ObjectInputStream( local 256 obj = in.readObject();
|
SppPropertyInfo.java | 5 * associated documentation files (the "Software"), to deal in the Software without restriction, including 10 * The above copyright notice and this permission notice shall be included in all copies or substantial 14 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 17 * USE OR OTHER DEALINGS IN THE SOFTWARE. 253 // a copy of the object back in. 254 ObjectInputStream in = new ObjectInputStream( local 256 obj = in.readObject();
|
/external/libgsm/src/ |
toast.c | 26 FILE *in, *out; variable 32 * The function (*input)() reads one such frame from <in>. 38 * depends on the command line arguments and, in their absence, the 39 * filename; the fallback is #defined in toast.h 42 * for a format `foo' live in toast_foo.c. 128 * If the name ends in `cat', we want to write to stdout, 152 * in the target replacing the source! 320 if (!instat.st_nlink) return; /* couldn't stat in */ 341 if (!instat.st_nlink) return; /* couldn't stat in */ 353 if (!instat.st_nlink) return; /* couldn't stat in */ 673 (void)fclose(in), in = (FILE *)0; local 700 if (in && in != stdin) (void)fclose(in), in = (FILE *)0; local [all...] |
/external/libphonenumber/demo/src/com/google/phonenumbers/ |
PhoneNumberParserServlet.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 76 InputStream in = item.openStream(); local 80 phoneNumber = Streams.asString(in, UTF_8.name()); 82 defaultCountry = Streams.asString(in).toUpperCase(); 84 String languageEntered = Streams.asString(in).toLowerCase(); 89 regionCode = Streams.asString(in).toUpperCase(); 93 fileContents = IOUtils.toString(in); 95 IOUtils.closeQuietly(in); 107 // Redirect to a URL with the given input encoded in the query parameters [all...] |
/external/libvorbis/vq/ |
bookutil.c | 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * 68 /* assumes the value patterning created by the tools in vq/ */ 85 char *get_line(FILE *in){ 87 if(feof(in))return NULL; 103 long c=fgetc(in); 131 int get_line_value(FILE *in,float *value){ 148 int get_next_value(FILE *in,float *value){ 150 if(get_line_value(in,value)){ 151 value_line_buff=get_line(in); 159 int get_next_ivalue(FILE *in,long *ivalue) 237 FILE *in=fopen(filename,"r"); local [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
highbd_idct16x16_add_neon.c | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 603 int32x4x2_t in[16], step1[16], step2[16], out[16]; local 606 in[0].val[0] = vld1q_s32(input); 607 in[0].val[1] = vld1q_s32(input + 4); 609 in[8].val[0] = vld1q_s32(input); 610 in[8].val[1] = vld1q_s32(input + 4) 857 int32x4x2_t in[8], step1[16], step2[16], out[16]; local 1012 int32x4_t in[4], step1[16], step2[16], out[16]; local 1153 int32x4x2_t in[4], step1[16], step2[16], out[16]; local [all...] |
/external/libvpx/libvpx/vpx_dsp/ |
fwd_txfm.c | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 17 // similar. In the first one, we transform the columns and transpose 18 // the results. In the second one, we transform the rows. To achieve that, 21 // in normal/row positions). 64 // Do next column (which is a transposed row in second/horizontal pass) 68 // Setup in/out for next pass 95 const tran_low_t *in = NULL; local [all...] |
/external/llvm/test/MC/X86/ |
x86-32.s | 612 in (%dx), %al label 616 in (%dx), %ax label 620 in (%dx), %eax label
|
/external/lzma/C/ |
Aes.c | 252 UInt32 in[4], out[4];
local 255 in[0] = GetUi32(data);
256 in[1] = GetUi32(data + 4);
257 in[2] = GetUi32(data + 8);
258 in[3] = GetUi32(data + 12);
260 Aes_Decode(p + 4, out, in);
267 p[0] = in[0];
268 p[1] = in[1];
269 p[2] = in[2];
270 p[3] = in[3]; [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_vs.h | 8 * "Software"), to deal in the Software without restriction, including 15 * next paragraph) shall be included in all copies or substantial portions 21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 58 struct draw_variant_input in; member in struct:draw_variant_element 133 /* Run the shader - this interface will get cleaned up in the
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_test_arit.c | 8 * "Software"), to deal in the Software without restriction, including 15 * next paragraph) shall be included in all copies or substantial portions 21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 57 typedef void (*unary_func_t)(float *out, const float *in); 87 * Required precision in bits. 378 * match we must only flush them to zero here in that case too. 409 float *in, *out local [all...] |
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
nv50_ir_graph.h | 6 * to deal in the Software without restriction, including without limitation 11 * The above copyright notice and this permission notice shall be included in 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 134 Edge *in; member in class:nv50_ir::Graph::Node 190 assert(in); 191 return in->origin; 214 return EdgeIterator(in, 1, reverse) [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_state_framebuffer.c | 6 * files (the "Software"), to deal in the Software without 13 * included in all copies or substantial portions of the Software. 18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 42 * This helps improve the surface cache behaviour in the face of the 66 * dirty, to ensure that the resources are paged in. 114 * non-dirty rendertargets are properly paged-in. 268 * non-dirty rendertargets are properly paged-in 454 float in = fb_height - fy; \/* number of vp pixels inside view *\/ local [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv10_state_frag.c | 7 * "Software"), to deal in the Software without restriction, including 14 * next paragraph) shall be included in all copies or substantial 20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE 21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 75 uint64_t in; member in struct:combiner_state 91 (rc)->in = (rc)->out = 0; \ 204 (rc)->in |= get_input_arg(rc, arg, flags) << RC_IN_SHIFT_##var 208 (rc)->in |= (RC_IN_SOURCE(src) | 415 uint64_t in; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_format.c | 9 * "Software"), to deal in the Software without restriction, including 16 * next paragraph) shall be included in all copies or substantial portions 22 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 2429 const int *in = colorIn->i; local 2471 const float *in = colorIn->f; local [all...] |