Searched refs:source (Results 176 - 200 of 2856) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/stack/
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
/external/nist-sip/java/javax/sip/
H A DIOExceptionEvent.java10 public IOExceptionEvent(Object source, String host, int port, argument
12 super(source);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DNameValueBlockReader.java38 /** This source transforms compressed bytes into uncompressed bytes. */
47 /** This source holds inflated bytes. */
48 private final BufferedSource source; field in class:NameValueBlockReader
50 public NameValueBlockReader(BufferedSource source) { argument
52 // block. We cut the inflater off at its source because we can't predict the
54 Source throttleSource = new ForwardingSource(source) {
78 this.source = Okio.buffer(inflaterSource);
84 int numberOfPairs = source.readInt();
101 int length = source.readInt();
102 return source
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DVectorPool.java41 /** Allocates a vector and assigns the value of the passed source vector to it. */
42 public Vector2 allocate(Vector2 source) { argument
44 entry.set(source);
/external/syslinux/core/
H A Dlstadjust.pl35 $source = substr($line, 40);
36 if ($source =~ /^([^;]*);/) {
37 $source = $1;
40 ($label, $op, $arg, $tail) = split(/\s+/, $source);
/external/webrtc/talk/session/media/
H A Drtcpmuxfilter.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
142 bool RtcpMuxFilter::ExpectOffer(bool offer_enable, ContentSource source) { argument
145 (state_ == ST_SENTOFFER && source == CS_LOCAL) ||
146 (state_ == ST_RECEIVEDOFFER && source == CS_REMOTE));
149 bool RtcpMuxFilter::ExpectAnswer(ContentSource source) { argument
150 return ((state_ == ST_SENTOFFER && source == CS_REMOTE) ||
151 (state_ == ST_RECEIVEDOFFER && source == CS_LOCAL) ||
152 (state_ == ST_SENTPRANSWER && source == CS_LOCAL) ||
153 (state_ == ST_RECEIVEDPRANSWER && source
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFirstMoment.java146 * Copies source to dest.
147 * <p>Neither source nor dest can be null.</p>
149 * @param source FirstMoment to copy
151 * @throws NullPointerException if either source or dest is null
153 public static void copy(FirstMoment source, FirstMoment dest) { argument
154 dest.setData(source.getDataRef());
155 dest.n = source.n;
156 dest.m1 = source.m1;
157 dest.dev = source.dev;
158 dest.nDev = source
[all...]
/external/guice/core/src/com/google/inject/internal/
H A DFactoryProxy.java33 private final Object source; field in class:FactoryProxy
37 FactoryProxy(InjectorImpl injector, Key<T> key, Key<? extends T> targetKey, Object source) { argument
41 this.source = source;
46 targetFactory = injector.getInternalFactory(targetKey, errors.withSource(source), JitLimitation.NEW_OR_EXISTING_JIT);
54 context.pushState(targetKey, source);
/external/guice/core/src/com/google/inject/spi/
H A DTypeConverterBinding.java37 private final Object source; field in class:TypeConverterBinding
42 public TypeConverterBinding(Object source, Matcher<? super TypeLiteral<?>> typeMatcher, argument
44 this.source = checkNotNull(source, "source");
50 return source;
71 + " (bound at " + Errors.convert(source) + ")";
/external/icu/icu4c/source/test/intltest/
H A Dtscoll.h35 void doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result);
37 void doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result);
38 void doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result);
39 virtual void reportCResult( const UnicodeString &source, const UnicodeString &target,
46 static UnicodeString &prettify(const CollationKey &source, UnicodeString &target);
54 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
/external/icu/icu4c/source/tools/genrb/
H A Dprscmnts.h37 getNote(const UChar* source, int32_t srcLen,
41 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status);
44 getDescription( const UChar* source, int32_t srcLen,
48 getTranslate( const UChar* source, int32_t srcLen,
53 getAt(const UChar* source, int32_t srcLen,
60 getCount(const UChar* source, int32_t srcLen,
/external/syslinux/com32/lib/zlib/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/external/zlib/src/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/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/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
H A DAntResourcesLocatorTest.java67 final Reader source = locator.getSourceFile("org/jacoco/example",
69 assertContent("AAA", source);
78 final Reader source = locator.getSourceFile("org/jacoco/example",
80 assertContent("AAA", source);
89 final Reader source = locator.getSourceFile("org/jacoco/example",
91 assertContent("FFF", source);
103 final Reader source = locator.getSourceFile("org/jacoco/example",
105 assertContent("AAA", source);
116 Reader source = locator.getSourceFile("org/jacoco/example",
118 assertContent("AAA", source);
133 assertContent(String expected, Reader source) argument
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetEncoderICU.java75 CharBuffer source, ByteBuffer target, IntBuffer offsets,
78 return onUnmappableInput.call(encoder, context, source, target,
81 return onMalformedInput.call(encoder, context, source, target,
84 // return CharsetCallback.FROM_U_CALLBACK_STOP.call(encoder, context, source, target, offsets, buffer, length, cp, cr);
282 * @param source
287 abstract CoderResult encodeLoop(CharBuffer source, ByteBuffer target, argument
292 * @param source The input character buffer
299 final CoderResult encode(CharBuffer source, ByteBuffer target, argument
303 if (target == null || source == null) {
315 * not be able to maintain the semantics that either the source mus
390 fromUnicodeWithCallback(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) argument
759 setSourcePosition(CharBuffer source) argument
776 cbFromUWriteSub(CharsetEncoderICU encoder, CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
797 cbFromUWriteUChars(CharsetEncoderICU encoder, CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
867 handleSurrogates(CharBuffer source, char lead) argument
[all...]
/external/v8/src/crankshaft/ia32/
H A Dlithium-gap-resolver-ia32.cc2 // Use of this source code is governed by a BSD-style license that can be
32 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
40 DCHECK(moves_[i].source()->IsConstantOperand());
52 // moves to perform, ignoring any move that is redundant (the source is
69 // which means that a call to PerformMove could change any source operand
77 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
82 // dependencies. Any unperformed, unpending move with a source the same
88 // Though PerformMove can change any source operand in the move graph,
90 // not miss any). Assume there is a non-blocking move with source A
91 // and this move is blocked on source
130 LOperand* source = move.source(); local
141 LOperand* source = moves_[index].source(); local
259 LOperand* source = moves_[index].source(); local
358 LOperand* source = moves_[index].source(); local
[all...]
/external/guice/extensions/grapher/src/com/google/inject/grapher/
H A DShortNameFactory.java97 * Returns a name for a Guice "source" object. This will typically be either
101 public String getSourceName(Object source) { argument
102 if (source instanceof ElementSource) {
103 source = ((ElementSource) source).getDeclaringSource();
105 if (source instanceof Method) {
106 source = StackTraceElements.forMember((Method) source);
109 if (source instanceof StackTraceElement) {
110 return getFileString((StackTraceElement) source);
[all...]
/external/libchrome/base/posix/
H A Dfile_descriptor_shuffle.cc2 // Use of this source code is governed by a BSD-style license that can be
32 DCHECK(i->dest != j->dest) << "Both fd " << i->source
33 << " and " << j->source << " map to " << i->dest;
36 const bool is_identity = i->source == i->dest;
40 if (!is_identity && i->dest == j->source) {
52 j->source = temp_fd;
56 if (i->close && i->source == j->dest)
59 if (i->close && i->source == j->source) {
66 if (!delegate->Move(i->source,
[all...]
/external/swiftshader/src/Renderer/
H A DTextureStage.cpp215 bool TextureStage::usesColor(SourceArgument source) const
220 return firstArgument == source;
224 return secondArgument == source;
228 return thirdArgument == source;
233 if(firstArgument == source || secondArgument == source)
241 return thirdArgument == source;
248 bool TextureStage::usesAlpha(SourceArgument source) const
255 if(source == SOURCE_TEXTURE)
262 else if(source
[all...]
/external/tpm2/
H A Dtpm_generated.h2 // Use of this source code is governed by a BSD-style license that can be
16 UINT16 uint8_t_Marshal(uint8_t* source, BYTE** buffer, INT32* size);
20 UINT16 int8_t_Marshal(int8_t* source, BYTE** buffer, INT32* size);
24 UINT16 uint16_t_Marshal(uint16_t* source, BYTE** buffer, INT32* size);
28 UINT16 int16_t_Marshal(int16_t* source, BYTE** buffer, INT32* size);
32 UINT16 uint32_t_Marshal(uint32_t* source, BYTE** buffer, INT32* size);
36 UINT16 int32_t_Marshal(int32_t* source, BYTE** buffer, INT32* size);
40 UINT16 uint64_t_Marshal(uint64_t* source, BYTE** buffer, INT32* size);
44 UINT16 int64_t_Marshal(int64_t* source, BYTE** buffer, INT32* size);
48 UINT16 BYTE_Marshal(BYTE* source, BYT
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DByteSourceTest.java63 private TestByteSource source; field in class:ByteSourceTest
67 source = new TestByteSource(bytes);
71 InputStream in = source.openBufferedStream();
72 assertTrue(source.wasStreamOpened());
73 assertFalse(source.wasStreamClosed());
80 assertTrue(source.wasStreamClosed());
85 assertEquals(bytes.length, source.size());
86 assertTrue(source.wasStreamOpened() && source.wasStreamClosed());
98 assertEquals(bytes.length, source
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DBigFractionFormat.java186 * @param source the string to parse
192 public BigFraction parse(final String source) throws ParseException { argument
194 final BigFraction result = parse(source, parsePosition);
198 LocalizedFormats.UNPARSEABLE_FRACTION_NUMBER, source);
206 * @param source the string to parse
211 public BigFraction parse(final String source, final ParsePosition pos) { argument
215 parseAndIgnoreWhitespace(source, pos);
218 final BigInteger num = parseNextBigInteger(source, pos);
229 final char c = parseNextCharacter(source, pos);
248 parseAndIgnoreWhitespace(source, po
270 parseNextBigInteger(final String source, final ParsePosition pos) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DRealVectorFormat.java257 * @param source the string to parse
262 public ArrayRealVector parse(String source) throws ParseException { argument
264 ArrayRealVector result = parse(source, parsePosition);
268 LocalizedFormats.UNPARSEABLE_REAL_VECTOR, source);
275 * @param source the string to parse
279 public ArrayRealVector parse(String source, ParsePosition pos) { argument
283 parseAndIgnoreWhitespace(source, pos);
284 if (!parseFixedstring(source, trimmedPrefix, pos)) {
293 parseAndIgnoreWhitespace(source, pos);
294 if (!parseFixedstring(source, trimmedSeparato
337 parseObject(String source, ParsePosition pos) argument
[all...]
/external/autotest/client/bin/
H A Dlocal_host.py99 def _copy_file(self, source, dest, delete_dest=False, preserve_perm=False,
101 """Copy files from source to dest, will be the base for {get,send}_file.
103 If source is a directory and ends with a trailing slash, only the
104 contents of the source directory will be copied to dest, otherwise
105 source itself will be copied under dest.
107 @param source: The file/directory on localhost to copy.
116 # We copy dest under source if either:
119 source_is_dir = os.path.isdir(source)
120 if ((source_is_dir and not source.endswith(os.sep)) or
122 dest = os.path.join(dest, os.path.basename(source))
[all...]

Completed in 870 milliseconds

1234567891011>>