/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralFormat.java | 28 * plural case that can appear in the user's language and the 32 * <h3>The Problem of Plural Forms in Internationalized Messages</h3> 41 * intervals. But in some languages, like Polish, one plural case 51 * rules define both what plural cases exist in a language, and to 84 * explicitValue = '=' number // adjacent, no white space in between 92 * There are 6 predefined case keywords in CLDR/ICU - 'zero', 'one', 'two', 'few', 'many' and 94 * "<code>other</code>" which is contained in every rule set. 105 * An unquoted pound sign (<code>#</code>) in the selected sub-message 106 * itself (i.e., outside of arguments nested in the sub-message) 121 * <code>PluralFormat</code>'s constructor. If you also specify a locale in thi [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
pkg_genc.c | 104 specify "GENCCODE_ASSEMBLY=-a name" in the specific config/mh-* file, 105 where the name is the compiler or platform that you used in this 264 FileStream *in, *out; local 267 in=T_FileStream_open(filename, "rb"); 268 if(in==NULL) { 294 /* turn dashes or dots in the entry name into underscores */ 309 length=T_FileStream_read(in, buffer, sizeof(buffer)); 331 if(T_FileStream_error(in)) { 342 T_FileStream_close(in); 349 FileStream *in, *out local 664 FileStream *in; local 771 FileStream *in, *out; local [all...] |
ucbuf.c | 46 FileStream* in; member in struct:UCHARBUF 53 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){ 62 numRead=T_FileStream_read(in, start, sizeof(start)); 67 T_FileStream_rewind(in); 69 T_FileStream_read(in, start, *signatureLength); 133 FileStream* in=NULL; local 142 in= T_FileStream_open(fileName,"rb"); 144 if(in == NULL){ 149 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) { 150 return in; 450 FileStream* in = NULL; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralFormat.java | 27 * plural case that can appear in the user's language and the 31 * <h3>The Problem of Plural Forms in Internationalized Messages</h3> 40 * intervals. But in some languages, like Polish, one plural case 50 * rules define both what plural cases exist in a language, and to 83 * explicitValue = '=' number // adjacent, no white space in between 91 * There are 6 predefined case keywords in CLDR/ICU - 'zero', 'one', 'two', 'few', 'many' and 93 * "<code>other</code>" which is contained in every rule set. 104 * An unquoted pound sign (<code>#</code>) in the selected sub-message 105 * itself (i.e., outside of arguments nested in the sub-message) 120 * <code>PluralFormat</code>'s constructor. If you also specify a locale in thi [all...] |
/external/iptables/iptables/ |
iptables-xml.c | 354 // (or I guess -j SNAT in nat table, but we don't check for that yet 404 * then start a dummy <match> tag for old style built-in matches. 405 * We would do this in any case, but no need if it would be empty. 406 * In the case of negation, we need to look at arg+1 513 // if argv[arg] contains a space, enclose in quotes 532 in each rule, or rules didn't have an action 533 NOTE: Depends on arguments being in some kind of "normal" order which 535 rather than a file merely in a compatable format */ 594 //xmlAttrS("table",curTable); // not needed in full mode 595 //xmlAttrS("chain",argv[1]); // not needed in full mode 628 FILE *in; local [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
MultiPartFilter.java | 76 * The init parameter maxFormKeys sets the maximum number of keys that may be present in a 140 InputStream in = new BufferedInputStream(request.getInputStream()); local 156 MultiPartInputStream mpis = new MultiPartInputStream(in, content_type, config, tempdir);
|
PutFilter.java | 216 InputStream in = request.getInputStream(); local 224 IO.copy(in, out, toRead); 226 IO.copy(in, out); 236 IO.copy(in, out, toRead); 238 IO.copy(in, out);
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebtables.h | 43 /* nr of rules in the table */ 59 /* nr of rules in the table */ 160 /* the physical in-dev */ 161 char in[IFNAMSIZ]; member in struct:ebt_entry 162 /* the logical in-dev */
|
/external/libcxx/src/ |
ios.cpp | 123 const ios_base::openmode ios_base::in; member in class:ios_base
|
/external/libcxx/test/libcxx/test/ |
config.py | 10 import lit.Test # pylint: disable=import-error,no-name-in-module namespace 11 import lit.util # pylint: disable=import-error,no-name-in-module namespace 21 # configuration hasn't been created by the build system, or we are in an 27 ' Running the tests in the default configuration.') 75 if conf.lower() in ('1', 'true'): 77 if conf.lower() in ('', '0', 'false'): 131 # We have no way of knowing where in the chain the 213 # If LIT_USE_INTERNAL_SHELL is in the environment, we use that as the 237 for f in additional_features.split(','): 279 if target_system in locales [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/ |
ftoutln.c | 21 /* All functions are declared in freetype.h. */ 36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ 48 /* documentation is in ftoutln.h */ 69 FT_Int n; /* index of contour in outline */ 70 FT_UInt first; /* index of first point in contour */ 89 FT_Int last; /* index of last point in contour */ 338 /* documentation is in ftoutln.h */ 354 /* documentation is in ftoutln.h */ 399 /* documentation is in ftoutln.h */ 457 /* documentation is in ftoutln.h * 937 FT_Vector in, out, anchor, shift; local [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
KTXTextureData.java | 54 // Whether to generate mipmaps if they are not included in the file
79 DataInputStream in = null;
local 81 in = new DataInputStream(new BufferedInputStream(new GZIPInputStream(file.read())));
82 int fileSize = in.readInt();
85 while ((readBytes = in.read(buffer)) != -1)
92 StreamUtils.closeQuietly(in);
197 throw new GdxRuntimeException("Unsupported texture format (only 2D texture are supported in LibGdx for the time being)");
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_resize.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. 471 const uint8_t *const in = (s == 0 ? input : out); local 477 down2_symodd(in, filteredlength, out); 479 down2_symeven(in, filteredlength, out); 764 const uint16_t *const in = (s == 0 ? input : out); local 770 highbd_down2_symodd(in, filteredlength, out, bd) [all...] |
/external/libxml2/ |
xzlib.c | 55 uint64_t pos; /* current position in uncompressed data */ 58 unsigned char *in; /* input buffer */ member in struct:__anon16964 75 lzma_stream strm; /* stream structure in-place (not a pointer) */ 81 z_stream zstrm; /* stream structure in-place (not a pointer) */ 265 if (xz_load(state, state->in, state->size, &tmp) == -1) { 270 strm->next_in = state->in; 294 return strm->avail_in >= 6 && memcmp(state->in, "\3757zXZ", 6) == 0; 312 if (lzma_properties_decode(&filter, NULL, state->in, 5) != LZMA_OK) 343 uncompressed_size |= (uint64_t) (state->in[5 + i]) << (i * 8); 364 in *ret. Otherwise -1 is returned and *ret is not modified. * [all...] |
/external/llvm/include/llvm/Support/ |
MathExtras.h | 211 // in the __builtin_clz intrinsic on x86. 229 /// \brief Reverse the bits in \p Val. 232 unsigned char in[sizeof(Val)]; local 234 std::memcpy(in, &Val, sizeof(Val)); 236 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 445 /// \brief Count the number of set bits in a value. 555 // Replace "-Value" by "1+~Value" in the following commented code to avoid 580 /// NextPowerOf2 - Returns the next power of two (in 64-bits) 638 /// \brief Sign extend number in the bottom B bits of X to a 32-bit int. 650 /// \brief Sign extend number in the bottom B bits of X to a 64-bit int [all...] |
/external/lz4/programs/ |
bench.c | 11 This program is distributed in the hope that it will be useful, 319 char* in = orig_buff; local 324 chunkP[i].origBuffer = in; in += chunkSize;
|
/external/mesa3d/src/gallium/auxiliary/translate/ |
translate_generic.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 TUNGSTEN GRAPHICS 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. 69 * in this case, u_format is used to do a full conversion 71 * this value is set to the format size in bytes if output_format == input_format or for 32-bit instance ids: 72 * in this case, memcpy is used to copy this amount of bytes 99 SRCTYPE *in = (SRCTYPE *)attrib; 241 float *in = (float *)attrib; local 252 float *in = (float *)attrib; local [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 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 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 271 BasicBlock *in = BasicBlock::get(ei.getNode()); local 273 if (in->cfg.visit(seq)) 274 buildDefSetsPreSSA(in, seq); 276 bb->defSet |= in->defSet [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_split_copy.c | 10 * to deal in the Software without restriction, including without limitation 16 * in all copies or substantial portions of the Software. 20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 47 * non-indexed primitives may be converted to indexed in some cases 48 * (eg loops, fans) in order to use this splitting path. 82 GLuint in; member in struct:copy_context::__anon19843 89 GLuint dstbuf_size; /**< in vertices * [all...] |
/external/mockito/src/org/mockito/internal/ |
MockitoCore.java | 173 for (Invocation in : ins) {
174 if (in.stubInfo() != null) {
175 in.ignoreForVerification();
|
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/ |
OkApacheClientTest.java | 270 InputStream in = new GZIPInputStream(body.getContent()); local 274 while ((read = in.read(temp)) != -1) {
|
/external/okhttp/okio/okio/src/test/java/okio/ |
ByteStringTest.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 104 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local 105 assertEquals(ByteString.decodeHex("6162"), ByteString.read(in, 2)); 106 assertEquals(ByteString.decodeHex("63"), ByteString.read(in, 1)); 107 assertEquals(ByteString.of(), ByteString.read(in, 0)); 111 InputStream in = new ByteArrayInputStream("ABC".getBytes(Util.UTF_8)); local 112 assertEquals(ByteString.encodeUtf8("ab"), ByteString.read(in, 2).toAsciiLowercase()); 113 assertEquals(ByteString.encodeUtf8("c"), ByteString.read(in, 1).toAsciiLowercase()); 114 assertEquals(ByteString.EMPTY, ByteString.read(in, 0).toAsciiLowercase()) 131 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftoutln.c | 21 /* All functions are declared in freetype.h. */ 36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ 48 /* documentation is in ftoutln.h */ 69 FT_Int n; /* index of contour in outline */ 70 FT_UInt first; /* index of first point in contour */ 89 FT_Int last; /* index of last point in contour */ 338 /* documentation is in ftoutln.h */ 354 /* documentation is in ftoutln.h */ 399 /* documentation is in ftoutln.h */ 457 /* documentation is in ftoutln.h * 937 FT_Vector in, out, anchor, shift; local [all...] |
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 11 // * Redistributions in binary form must reproduce the above 13 // in the documentation and/or other materials provided with the 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 38 // match. When the data is written, it is written in several small chunks 105 // Writes some text to the output stream in a particular order. Returns 133 const uint8* in = reinterpret_cast<const uint8*>(data); local 146 memcpy(out, in, in_size) 163 const void* in; local [all...] |
/external/speex/libspeex/ |
sb_celp.c | 4 Redistribution and use in source and binary forms, with or without 11 - Redistributions in binary form must reproduce the above copyright 12 notice, this list of conditions and the following disclaimer in the 22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR 27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 320 spx_word16_t *in = (spx_word16_t*)vin; local 334 low = in; 335 high = in+st->frame_size; 339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack) [all...] |