| /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
| CollationElementIterator.java | 31 * in the source string. 131 * source string has been reached, and there are no more valid 206 * CollationElementIterator constructor. This takes a source 208 * the source string based on the rules defined by the 209 * collator. If the source string is empty, NULLORDER will be 212 * @param source the source string. 216 CollationElementIterator(String source, RuleBasedCollator collator) { 218 setText(source); 230 * CollationElementIterator constructor. This takes a source [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| DigitList_Android.java | 344 // * @param source Value to be converted; must not be Inf, -Inf, Nan, 349 // public final void set(double source, int maximumFractionDigits) 351 // set(source, maximumFractionDigits, true); 357 * @param source Value to be converted; must not be Inf, -Inf, Nan, 364 final void set(double source, int maximumDigits, boolean fixedPoint) 366 if (source == 0) source = 0; 369 String rep = Double.toString(source); 550 public final void set(long source) 552 set(source, 0) [all...] |
| /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
| TransliteratorIDParser.java | 31 * A basic ID, which contains source, target, and variant, but no 73 * 'source' and 'target' will always be non-null. The 'variant' 76 * 'sawSource' is true if there was an explicit source in the 77 * parsed id. If there was no explicit source, then an implied 78 * source of ANY is returned and 'sawSource' is set to false. 84 public String source; // not null field in class:TransliteratorIDParser.Specs 90 source = s; 458 * S-T/V, or S/V-T. If the source is missing, return a source of 461 * @return an array of 4 strings: source, target, variant, an 468 String source = ANY; local 595 String source = null; local [all...] |
| /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
| CollationDummyTest.java | 12 * Source File: $ICU4CRoot/source/test/intltest/allcoll.cpp 13 * $ICU4CRoot/source/test/cintltst/callcoll.c 240 String source = "THISISATEST."; local 250 int result = coll.compare(source, target); 259 result = coll.compare(source, target); 268 sourceKeyOut = coll.getCollationKey(source); 286 String source[] = {"z", local 312 doTest(enCollation, source[count], target[count], -1); 315 doTest(enCollation, source[count], target[count], 1) 361 char[] source = new char[1]; local [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
| TimeUnitTest.java | 80 TimeUnitAmount source = new TimeUnitAmount(tests[i], timeUnit); local 81 String formatted = formats[style].format(source); 88 if (result == null || !source.equals(result)) { 89 errln("No round trip: " + source + " => " + formatted + " => " + result); 311 TimeUnitAmount source = new TimeUnitAmount(tests[i], timeUnit); local 312 String formatted = format.format(source); 317 if (result == null || !source.equals(result)) { 318 errln("No round trip: " + source + " => " + formatted + " => " + result); 414 * public Object parseObject(String source, ParsePosition pos)
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/ |
| TestUCharacterIterator.java | 393 String source ="asdfasdfjoiuyoiuy2341235679886765"; local 394 UCharacterIterator it = UCharacterIterator.getInstance(source); 396 CharacterIterator ci = new StringCharacterIterator(source);
|
| /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
| WriteCharts.java | 49 public static void printSet(String source) { 50 UnicodeSet s = new UnicodeSet(source); 51 System.out.println("Printout for '" + source + "'"); 65 String source = (String) sources.nextElement(); local 66 scripts = UScript.getCode(source); 68 System.out.println("[Skipping " + source + "]"); 72 System.out.println("Source: " + source + ";\tScripts: " + showScripts(scripts)); 73 Enumeration targets = Transliterator.getAvailableTargets(source); 80 System.out.println("[Skipping '" + source + "-" + target + "']") 126 String source = id.substring(0,minusPos); local [all...] |
| /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/ |
| MethodResolutionLogic.java | 668 mappings.put(target.asTypeParameter(), source); local 680 mappings.put(target.asTypeParameter(), source); local 684 mappings.put(target.asTypeParameter(), source); local [all...] |
| /external/libevent/ |
| evbuffer-internal.h | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright 271 /** source buffer the multicast parent belongs to */ 272 struct evbuffer *source; member in struct:evbuffer_multicast_parent
|
| /external/libpcap/msdos/ |
| pktdrvr.h | 86 ETHER source; member in struct:__anon29308 96 ETHER source; /* E-net source address */ member in struct:__anon29309
|
| /external/mesa3d/src/gallium/drivers/softpipe/ |
| sp_quad_blend.c | 272 float source[4][TGSI_QUAD_SIZE] = { { 0 } }; local 280 VEC4_COPY(source[0], quadColor[0]); /* R */ 281 VEC4_COPY(source[1], quadColor[1]); /* G */ 282 VEC4_COPY(source[2], quadColor[2]); /* B */ 285 VEC4_MUL(source[0], quadColor[0], quadColor[0]); /* R */ 286 VEC4_MUL(source[1], quadColor[1], quadColor[1]); /* G */ 287 VEC4_MUL(source[2], quadColor[2], quadColor[2]); /* B */ 292 VEC4_MUL(source[0], quadColor[0], alpha); /* R */ 293 VEC4_MUL(source[1], quadColor[1], alpha); /* G */ 294 VEC4_MUL(source[2], quadColor[2], alpha); /* B * 1034 float source[4][TGSI_QUAD_SIZE]; local [all...] |
| /external/mesa3d/src/mesa/main/ |
| transformfeedback.c | 366 * Figure out which stage of the pipeline is the source of transform feedback 389 struct gl_program *source; local 395 /* Figure out what pipeline stage is the source of data for transform 398 source = get_xfb_source(ctx); 399 if (!no_error && source == NULL) { 405 info = source->sh.LinkedTransformFeedback; 472 if (obj->program != source) { 474 obj->program = source; [all...] |
| /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
| FlatManifestWriterImpl.java | 176 Source source = new DOMSource(document); local 184 transformer.transform(source, result);
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
| Hpack.java | 29 import okio.Source; 117 private final BufferedSource source; field in class:Hpack.Reader 128 Reader(int headerTableSizeSetting, Source source) { 131 this.source = Okio.buffer(source); 188 * Read {@code byteCount} bytes of headers from the source stream. This 192 while (!source.exhausted()) { 193 int b = source.readByte() & 0xff; 318 return source.readByte() & 0xff [all...] |
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
| Http2xStream.java | 2 * Copyright (C) 2012 The Android Open Source Project 41 import okio.Source; 278 Source source = new StreamFinishingSource(stream.getSource()); local 279 return new RealResponseBody(response.headers(), Okio.buffer(source)); 287 public StreamFinishingSource(Source delegate) {
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
| RealConnection.java | 60 import okio.Source; 82 public BufferedSource source; field in class:RealConnection 118 source = null; 145 source = Okio.buffer(Okio.source(rawSocket)); 159 .socket(socket, route.getAddress().url().host(), source, sink) 217 source = Okio.buffer(Okio.source(socket)); 265 Http1xStream tunnelConnection = new Http1xStream(null, source, sink); 266 source.timeout().timeout(readTimeout, MILLISECONDS) [all...] |
| /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/ |
| Hpack.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 30 import com.android.okhttp.okio.Source; 118 private final BufferedSource source; field in class:Hpack.Reader 129 Reader(int headerTableSizeSetting, Source source) { 132 this.source = Okio.buffer(source); 189 * Read {@code byteCount} bytes of headers from the source stream. This 193 while (!source.exhausted()) { 194 int b = source.readByte() & 0xff [all...] |
| /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
| Http2xStream.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 3 * Copyright (C) 2012 The Android Open Source Project 42 import com.android.okhttp.okio.Source; 280 Source source = new StreamFinishingSource(stream.getSource()); local 281 return new RealResponseBody(response.headers(), Okio.buffer(source)); 289 public StreamFinishingSource(Source delegate) {
|
| /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/io/ |
| RealConnection.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 61 import com.android.okhttp.okio.Source; 86 public BufferedSource source; field in class:RealConnection 122 source = null; 149 source = Okio.buffer(Okio.source(rawSocket)); 163 .socket(socket, route.getAddress().url().host(), source, sink) 221 source = Okio.buffer(Okio.source(socket)); 269 Http1xStream tunnelConnection = new Http1xStream(null, source, sink) [all...] |
| /external/pdfium/core/fpdfapi/page/ |
| cpdf_image.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 336 auto source = pdfium::MakeRetain<CPDF_DIBSource>(); local 337 if (!source->Load(m_pDocument.Get(), m_pStream.Get())) 340 return source; 356 auto source = pdfium::MakeRetain<CPDF_DIBSource>(); local 357 int ret = source->StartLoadDIBSource(m_pDocument.Get(), m_pStream.Get(), true, 364 m_pDIBSource = source; 368 m_pMask = source->DetachMask(); 369 m_MatteColor = source->GetMatteColor();
|
| /external/protobuf/java/core/src/test/java/com/google/protobuf/ |
| MapForProto2LiteTest.java | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 77 private void copyMapValues(TestMap source, TestMap.Builder destination) { 79 .putAllInt32ToInt32Field(source.getInt32ToInt32Field()) 80 .putAllInt32ToStringField(source.getInt32ToStringField()) 81 .putAllInt32ToBytesField(source.getInt32ToBytesField()) 82 .putAllInt32ToEnumField(source.getInt32ToEnumField()) 83 .putAllInt32ToMessageField(source.getInt32ToMessageField()) 84 .putAllStringToInt32Field(source.getStringToInt32Field()); 346 TestMap source = sourceBuilder.build() local [all...] |
| /external/protobuf/src/google/protobuf/ |
| extension_set_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 454 unittest::TestAllExtensions source; local 456 TestUtil::SetAllExtensions(&source); 457 int size = source.ByteSize(); 461 uint8* end = source.SerializeWithCachedSizesToArray(target); 475 unittest::TestAllExtensions source; local 477 TestUtil::SetAllExtensions(&source); 478 int size = source.ByteSize(); 484 source.SerializeWithCachedSizes(&output_stream) 498 unittest::TestPackedExtensions source; local 519 unittest::TestPackedExtensions source; local 537 unittest::TestAllTypes source; local 550 unittest::TestPackedTypes source; local 561 unittest::TestPackedTypes source; local 582 unittest::TestUnpackedTypes source; local [all...] |
| wire_format_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 83 unittest::TestAllTypes source, dest; local 87 TestUtil::SetAllFields(&source); 88 source.SerializeToString(&data); 100 unittest::TestAllExtensions source, dest; local 104 TestUtil::SetAllExtensions(&source); 105 source.SerializeToString(&data); 117 unittest::TestPackedTypes source, dest; local 121 TestUtil::SetPackedFields(&source); 135 unittest::TestUnpackedTypes source; local 151 unittest::TestPackedTypes source; local 166 unittest::TestPackedExtensions source, dest; local 183 unittest::TestOneof2 source, dest; local 200 unittest::TestOneofBackwardsCompatible source; local 399 unittest::TestFieldOrderings source; local [all...] |
| /external/python/cpython3/Modules/_io/ |
| bytesio.c | 23 bytesio *source; member in struct:__anon37239 290 buf->source = self; 1050 bytesio *b = (bytesio *) obj->source; 1073 bytesio *b = (bytesio *) obj->source; 1080 Py_VISIT(self->source); 1089 Py_CLEAR(self->source);
|
| /external/python/cpython3/Python/clinic/ |
| bltinmodule.c.h | 135 "compile($module, /, source, filename, mode, flags=0,\n" 139 "Compile source into a code object that can be executed by exec() or eval().\n" 141 "The source code may represent a Python module, statement or expression.\n" 156 builtin_compile_impl(PyObject *module, PyObject *source, PyObject *filename, 164 static const char * const _keywords[] = {"source", "filename", "mode", "flags", "dont_inherit", "optimize", NULL}; 166 PyObject *source; local 174 &source, PyUnicode_FSDecoder, &filename, &mode, &flags, &dont_inherit, &optimize)) { 177 return_value = builtin_compile_impl(module, source, filename, mode, flags, dont_inherit, optimize); 214 "eval($module, source, globals=None, locals=None, /)\n" 217 "Evaluate the given source in the context of globals and locals.\n 236 PyObject *source; local 274 PyObject *source; local [all...] |