Searched defs:source (Results 126 - 150 of 1062) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSecondMoment.java112 * Copies source to dest.
113 * <p>Neither source nor dest can be null.</p>
115 * @param source SecondMoment to copy
117 * @throws NullPointerException if either source or dest is null
119 public static void copy(SecondMoment source, SecondMoment dest) { argument
120 FirstMoment.copy(source, dest);
121 dest.m2 = source.m2;
H A DThirdMoment.java126 * Copies source to dest.
127 * <p>Neither source nor dest can be null.</p>
129 * @param source ThirdMoment to copy
131 * @throws NullPointerException if either source or dest is null
133 public static void copy(ThirdMoment source, ThirdMoment dest) { argument
134 SecondMoment.copy(source, dest);
135 dest.m3 = source.m3;
136 dest.nDevSq = source.nDevSq;
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DCompositeFormat.java59 * Parses <code>source</code> until a non-whitespace character is found.
61 * @param source the string to parse
65 protected void parseAndIgnoreWhitespace(final String source, argument
67 parseNextCharacter(source, pos);
72 * Parses <code>source</code> until a non-whitespace character is found.
74 * @param source the string to parse
78 protected char parseNextCharacter(final String source, argument
81 final int n = source.length();
87 c = source.charAt(index++);
100 * Parses <code>source</cod
108 parseNumber(final String source, final double value, final ParsePosition pos) argument
140 parseNumber(final String source, final NumberFormat format, final ParsePosition pos) argument
170 parseFixedstring(final String source, final String expected, final ParsePosition pos) argument
[all...]
/external/clang/unittests/Lex/
H A DPPConditionalDirectiveRecordTest.cpp74 const char *source = local
93 std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(source);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DPlainInsn.java36 * @param position {@code non-null;} source position
59 * Constructs a single-source instance.
62 * @param position {@code non-null;} source position
64 * @param source {@code non-null;} spec for the source
67 RegisterSpec source) {
68 this(opcode, position, result, RegisterSpecList.make(source));
110 // Check for reverse subtraction, where first source is constant
66 PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpec source) argument
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java85 * Build a SourcePositionInfo from the XML source= notation
87 public static SourcePositionInfo fromXml(String source) { argument
88 if (source != null) {
89 for (int i = 0; i < source.length(); i++) {
90 if (source.charAt(i) == ':') {
91 return new SourcePositionInfo(source.substring(0, i), Integer.parseInt(source
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DStreamBitmapDecoder.java49 public Resource<Bitmap> decode(InputStream source, int width, int height) { argument
50 Bitmap bitmap = downsampler.decode(source, bitmapPool, width, height, decodeFormat);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileToStreamDecoder.java34 public Resource<T> decode(File source, int width, int height) throws IOException { argument
38 is = fileOpener.open(source);
H A DStreamFileDataLoadProvider.java51 public Resource<File> decode(InputStream source, int width, int height) { argument
/external/icu/icu4c/source/common/
H A Ducnv_cb.c36 const char* source,
47 source, length,
55 const UChar** source,
84 source,
101 In fact, here's where we want to return the partially consumed in-source!
104 /* && (*source < sourceLimit && args->target >= args->targetLimit)
139 source,
201 const UChar *source = (const UChar *)converter->subChars; local
202 ucnv_cbFromUWriteUChars(args, &source, source
35 ucnv_cbFromUWriteBytes(UConverterFromUnicodeArgs *args, const char* source, int32_t length, int32_t offsetIndex, UErrorCode * err) argument
54 ucnv_cbFromUWriteUChars(UConverterFromUnicodeArgs *args, const UChar** source, const UChar* sourceLimit, int32_t offsetIndex, UErrorCode * err) argument
226 ucnv_cbToUWriteUChars(UConverterToUnicodeArgs *args, const UChar* source, int32_t length, int32_t offsetIndex, UErrorCode * err) argument
[all...]
H A Dudatamem.c32 U_CFUNC void UDatamemory_assign(UDataMemory *dest, UDataMemory *source) { argument
35 uprv_memcpy(dest, source, sizeof(UDataMemory));
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { argument
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { argument
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { argument
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
/external/icu/icu4c/source/test/cintltst/
H A Dccurrtst.c102 UChar source[2], target[2]; local
124 u_strcpy(source, currency[i]);
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target));
144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0);
146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1);
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDurationFormat.java70 public Object parseObject(String source, ParsePosition pos) { argument
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationCurrencyTest.java10 * Source File: $ICU4CRoot/source/test/intltest/currcoll.cpp
68 String source;
73 source = new String(currency[i]);
84 int compareResult = c.compare(source, target);
87 sourceKey = c.getCollationKey(source);
90 errln("Couldn't get collationKey for source");
97 errln("Couldn't get collationKey for source");
103 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult );
108 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
132 logln(msg1 + source
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTestUtility.java38 public static String replace(String source, String toBeReplaced, String replacement) { argument
41 for (int i = 0; i < source.length(); ++i) {
42 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
46 results.append(source.charAt(i));
52 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
55 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
56 cp = UTF16.charAt(source,i);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFindVisitor.java30 public DepFindVisitor(Map<String, String> classes, String source, DepHandler handler) throws IOException { argument
31 super(null, new DepFindRemapper(classes, source, handler));
42 private final String source; field in class:DepFindVisitor.DepFindRemapper
46 public DepFindRemapper(Map<String, String> classes, String source, DepHandler handler) throws IOException { argument
48 this.source = source;
53 curPathClass = new PathClass(source, name);
60 if (!source.equals(otherSource)) {
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEndpointEvent.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
47 private Kernel source; field in class:EndpointEvent
51 public EndpointEvent( Kernel source, Endpoint p, Type type ) argument
53 this.source = source;
58 public static EndpointEvent createAdd( Kernel source, Endpoint p ) argument
60 return new EndpointEvent( source, p, Type.ADD );
63 public static EndpointEvent createRemove( Kernel source, Endpoint p ) argument
65 return new EndpointEvent( source,
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DModelConverter.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
163 private static void optimizeScene(Spatial source, boolean toFixed){ argument
164 if (source instanceof Geometry){
165 Geometry geom = (Geometry) source;
168 }else if (source instanceof Node){
169 Node node = (Node) source;
177 public static void optimize(Spatial source, boolean toFixed){ argument
178 optimizeScene(source, toFixed);
179 source
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Ddboolhuff.c4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
16 const unsigned char *source,
21 br->user_buffer_end = source+source_sz;
22 br->user_buffer = source;
29 if (source_sz && !source)
15 vp8dx_start_decode(BOOL_DECODER *br, const unsigned char *source, unsigned int source_sz, vpx_decrypt_cb decrypt_cb, void *decrypt_state) argument
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogTimeoutEvent.java2 * This source code has been contributed to the public domain by Mobicents
39 * @param source - the source of TimeoutEvent.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) { argument
43 super(source);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java15 public LogRecord createLogRecord(String message, String source, argument
18 return new MessageLog(message, source, destination, timeStamp,
22 public LogRecord createLogRecord(String message, String source, argument
25 return new MessageLog(message, source, destination, timeStamp,
H A DMessageLog.java49 private String source; field in class:MessageLog
84 String source,
95 this.source = source;
117 String source,
128 this.source = source;
151 + source
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument

Completed in 798 milliseconds

1234567891011>>