HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 526 - 550 of 4117) sorted by null

<<21222324252627282930>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestContext.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
27 String source; field in class:TestContext.ContextCase
34 source = src;
91 src = pseudoToU16(cc.source);
97 "\nInput: " + cc.source +
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationCurrencyTest.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
13 * Source File: $ICU4CRoot/source/test/intltest/currcoll.cpp
70 String source; local
75 source = new String(currency[i]);
86 int compareResult = c.compare(source, target);
89 sourceKey = c.getCollationKey(source);
92 errln("Couldn't get collationKey for source");
99 errln("Couldn't get collationKey for source");
105 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult )
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
NormalizationMonkeyTest.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
51 String source = getTestSource(); local
52 logln("Test source:" + source);
54 String uncodeNorm = unicode_NFD.normalize(source);
55 String icuNorm = Normalizer.normalize(source, Normalizer.NFD);
62 uncodeNorm = unicode_NFC.normalize(source);
63 icuNorm = Normalizer.normalize(source, Normalizer.NFC);
70 uncodeNorm = unicode_NFKD.normalize(source);
71 icuNorm = Normalizer.normalize(source, Normalizer.NFKD)
94 String source = ""; local
    [all...]
  /external/icu/icu4c/source/common/unicode/
ucnv_err.h 198 const UChar *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon19879
199 const UChar *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */
214 const char *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon19880
215 const char *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
Charset88591.java 31 protected CoderResult decodeLoopCoreOptimized(ByteBuffer source, CharBuffer target,
35 * perform 88591 conversion from the source array to the target array. no range check is
45 protected CoderResult decodeLoopCoreUnoptimized(ByteBuffer source, CharBuffer target) {
48 * perform 88591 conversion from the source buffer to the target buffer. no range check
51 while (source.hasRemaining()) {
52 ch = source.get();
70 protected final CoderResult encodeLoopCoreOptimized(CharBuffer source, ByteBuffer target,
76 * perform 88591 conversion from the source array to the target array, making sure each
77 * char in the source is within the correct range
90 * encodeMalformedOrUnmappable and move the source and target positions to reflect th
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ByteArrayWrapper.java 72 * @param source the ByteBuffer from which to get the data.
75 public ByteArrayWrapper(ByteBuffer source) {
76 size = source.limit();
78 source.get(bytes,0,size);
84 public ByteArrayWrapper(ByteArrayWrapper source) {
85 size = source.size;
87 copyBytes(source.bytes, 0, bytes, 0, size);
131 * @param src source byte array to copy from
158 * @param src source byte array to copy from
268 * @param src source byte array to copy fro
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationCurrencyTest.java 12 * Source File: $ICU4CRoot/source/test/intltest/currcoll.cpp
69 String source; local
74 source = new String(currency[i]);
85 int compareResult = c.compare(source, target);
88 sourceKey = c.getCollationKey(source);
91 errln("Couldn't get collationKey for source");
98 errln("Couldn't get collationKey for source");
104 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult );
109 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestContext.java 26 String source; field in class:TestContext.ContextCase
33 source = src;
90 src = pseudoToU16(cc.source);
96 "\nInput: " + cc.source +
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
NormalizationMonkeyTest.java 50 String source = getTestSource(); local
51 logln("Test source:" + source);
53 String uncodeNorm = unicode_NFD.normalize(source);
54 String icuNorm = Normalizer.normalize(source, Normalizer.NFD);
61 uncodeNorm = unicode_NFC.normalize(source);
62 icuNorm = Normalizer.normalize(source, Normalizer.NFC);
69 uncodeNorm = unicode_NFKD.normalize(source);
70 icuNorm = Normalizer.normalize(source, Normalizer.NFKD);
77 uncodeNorm = unicode_NFKC.normalize(source);
93 String source = ""; local
    [all...]
  /external/iptables/include/linux/netfilter/
xt_addrtype.h 31 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info_v1
38 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AntFilesLocatorTest.java 57 final Reader source = locator.getSourceFile("org/jacoco/example", local
59 assertContent(source);
67 writer.write("Source");
72 private void assertContent(Reader source) throws IOException {
73 assertNotNull(source);
74 final BufferedReader buffer = new BufferedReader(source);
75 assertEquals("Source", buffer.readLine());
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
CoverageBuilder.java 62 * Returns all source file nodes currently contained in this builder.
64 * @return all source file nodes
75 * @return bundle containing all classes and source files
109 final String source = coverage.getSourceFileName(); local
110 if (source != null) {
111 final SourceFileCoverageImpl sourceFile = getSourceFile(source,
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
DirectorySourceFileLocatorTest.java 56 final Reader source = locator.getSourceFile("org/jacoco/example", local
58 assertContent(source);
66 writer.write("Source");
70 private void assertContent(Reader source) throws IOException {
71 assertNotNull(source);
72 final BufferedReader buffer = new BufferedReader(source);
73 assertEquals("Source", buffer.readLine());
MultiSourceFileLocatorTest.java 72 final Reader source = locator.getSourceFile("org/jacoco/example", local
74 assertNotNull(source);
75 assertEquals('2', source.read());
90 final Reader source = locator.getSourceFile("org/jacoco/example", local
92 assertNotNull(source);
93 assertEquals('2', source.read());
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_addrtype.h 31 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info_v1
38 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info
  /external/libcxx/test/std/utilities/utility/forward/
move.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
31 move_only source() {return move_only();} function
104 test(source());
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 72 struct pipe_sampler_view *source, *matrix; member in struct:vl_idct_buffer::__anon27161::__anon27162
105 struct pipe_sampler_view *source,
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_translate.c 146 * Fill the given ALU instruction's opcodes and source operands into the given pair,
214 int source; local
234 source = rc_pair_alloc_source(pair, srcrgb, srcalpha,
236 if (source < 0) {
241 pair->RGB.Arg[i].Source = source;
261 source = rc_pair_alloc_source(pair, srcrgb, srcalpha,
263 if (source < 0) {
268 pair->Alpha.Arg[i].Source = source;
    [all...]
  /external/mesa3d/src/glsl/
test_optpass.cpp 217 shader->Source = input.c_str();
218 const char *source = shader->Source; local
219 state->error = glcpp_preprocess(state, &source, &state->info_log,
223 _mesa_glsl_lexer_ctor(state, source);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
SilenceTrackImpl.java 17 Track source; field in class:SilenceTrackImpl
23 source = ofType;
42 return source.getSampleDescriptionBox();
51 return source.getTrackMetaData();
55 return source.getHandler();
59 return source.isEnabled();
63 return source.isInMovie();
67 return source.isInPreview();
71 return source.isInPoster();
79 return source.getMediaHeaderBox()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 49 private String source; field in class:MessageLog
84 String source,
95 this.source = source;
117 String source,
128 this.source = source;
151 + source
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RetryableSink.java 2 * Copyright (C) 2010 The Android Open Source Project
54 @Override public void write(Buffer source, long byteCount) throws IOException {
56 checkOffsetAndCount(source.size(), 0, byteCount);
60 content.write(source, byteCount);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTest.java 127 BufferedSource source = Okio.buffer(Okio.source( local
129 return WebPlatformUrlTestData.load(source);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
FaultyFileSystem.java 2 * Copyright (C) 2011 The Android Open Source Project
27 import okio.Source;
45 @Override public Source source(File file) throws FileNotFoundException { method in class:FaultyFileSystem
46 return delegate.source(file);
85 @Override public void write(Buffer source, long byteCount) throws IOException {
87 super.write(source, byteCount);
  /external/okhttp/okio/okio/src/test/java/okio/
InflaterSourceTest.java 83 InflaterSource source = new InflaterSource(deflated, new Inflater()); local
84 while (source.read(inflated, Integer.MAX_VALUE) != -1) {
95 /** Use DeflaterOutputStream to deflate source. */
96 private Buffer deflate(ByteString source) throws IOException {
99 sink.write(new Buffer().write(source), source.size());
107 InflaterSource source = new InflaterSource(deflated, new Inflater()); local
108 while (source.read(result, Integer.MAX_VALUE) != -1) {

Completed in 2210 milliseconds

<<21222324252627282930>>