Searched defs:source (Results 76 - 100 of 1325) sorted by relevance

1234567891011>>

/external/chromium/googleurl/src/
H A Durl_canon_internal_file.h4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
104 static bool DoCanonicalizeFileURL(const URLComponentSource<CHAR>& source, argument
133 source.host, parsed.host, output, &new_parsed->host);
141 int after_drive = FileDoDriveSpec(source.path, parsed.path.begin,
145 FileDoPath<CHAR, UCHAR>(source.path, after_drive, parsed.path.end(), output);
150 source.query, parsed.query, output, &new_parsed->query);
152 source.ref, parsed.ref, output, &new_parsed->ref);
/external/chromium/net/http/
H A Dhttp_auth_handler_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
20 NetLog::Source source; local
42 BoundNetLog bound_net_log(source, &capturing_net_log);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringencode.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
49 // Decode the utf8 encoded value pointed to by source. Returns the number of
51 size_t utf8_decode(const char* source, size_t srclen, unsigned long* value);
56 const char * source, size_t srclen,
58 // Note: in-place unescaping (buffer == source) is allowed.
60 const char * source, size_t srclen,
68 const char * source, size_t srclen,
70 // Note: in-place decoding (buffer == source) is allowed.
72 const char * source, size_
121 s_url_encode(const std::string& source) argument
124 s_url_decode(const std::string& source) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
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,
43 bool RtcpMuxFilter::SetOffer(bool offer_enable, ContentSource source) { argument
47 state_ = (source == CS_LOCAL) ? ST_SENTOFFER : ST_RECEIVEDOFFER;
55 bool RtcpMuxFilter::SetAnswer(bool answer_enable, ContentSource source) { argument
57 if ((state_ == ST_SENTOFFER && source == CS_REMOTE) ||
58 (state_ == ST_RECEIVEDOFFER && source == CS_LOCAL)) {
/external/guava/guava/src/com/google/common/collect/
H A DBstBalancePolicy.java31 * Constructs a locally balanced tree around the key and value data in {@code source}, and the
33 * the same inorder traversal order as the subtree {@code left}, then the entry {@code source},
36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right); argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DConflictingRequirementsException.java31 private Object source; field in class:ConflictingRequirementsException
34 String message, Set<Feature<?>> conflicts, Object source) {
37 this.source = source;
45 return source;
49 return super.getMessage() + " (source: " + source + ")";
33 ConflictingRequirementsException( String message, Set<Feature<?>> conflicts, Object source) argument
/external/icu4c/common/unicode/
H A Dcaniter.h76 * @param source string to get results for
80 CanonicalIterator(const UnicodeString &source, UErrorCode &status);
89 * Gets the NFD form of the current source we are iterating over.
90 * @return gets the source: NOTE: it is the NFD form of source
111 * Set a new source for this iterator. Allows object reuse.
112 * @param newSource the source string to iterate against. This allows the same iterator to be used
113 * while changing the source string, saving object creation.
123 * @param source the string to find permutations for
129 static void U_EXPORT2 permute(UnicodeString &source, UBoo
165 UnicodeString source; member in class:CanonicalIterator
[all...]
/external/icu4c/i18n/
H A Dtridpars.h31 * A basic ID, which contains source, target, and variant, but no
56 * 'source' and 'target' will always be non-null. The 'variant'
59 * 'sawSource' is true if there was an explicit source in the
60 * parsed id. If there was no explicit source, then an implied
61 * source of ANY is returned and 'sawSource' is set to false.
68 UnicodeString source; // not null member in class:TransliteratorIDParser::Specs
217 * S-T/V, or S/V-T. If the source is missing, return a source of
220 * @param source the given source
[all...]
/external/icu4c/test/cintltst/
H A Dccolltst.c86 void reportCResult( const UChar source[], const UChar target[], argument
101 log_err("Compare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
107 log_err("incCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
113 log_err("KeyCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
119 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_addrtype.h12 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
19 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java9 * author in the source code of the SQLite distribution.
10 * I feel obliged to provide a quote from the original C-source code:
12 * "The author disclaims copyright to this source code. In place of
198 * Copies count elements from source, starting at element with
200 * @param source the source.
207 private static byte[] byteCopy(byte[] source, int offset, argument
210 target[j] = source[i];
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 public PhysicsCollisionEvent getEvent(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, long manifoldPointObjectId) { argument
47 event = new PhysicsCollisionEvent(type, source, nodeB, manifoldPointObjectId);
49 event.refactor(type, source, nodeB, manifoldPointObjectId);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
45 public PhysicsCollisionEvent getEvent(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, ManifoldPoint cp) { argument
48 event = new PhysicsCollisionEvent(type, source, nodeB, cp);
50 event.refactor(type, source, nodeB, cp);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DMessageListenerRegistry.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
64 public void messageReceived( S source, Message m ) argument
69 l.messageReceived( source, m );
74 l.messageReceived( source, m );
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEnvelope.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 private Endpoint source; field in class:Envelope
50 * source. The 'reliable' flag further indicates on which mode of
53 public Envelope( Endpoint source, byte[] data, boolean reliable ) argument
55 this.source = source;
62 return source;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestMessages.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
51 public void messageReceived(HostedConnection source, com.jme3.network.Message message) { argument
54 source.send(new PongMessage());
60 public void messageReceived(Client source, com.jme3.network.Message message) { argument
H A DTestThroughput.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
61 public void messageReceived(MessageConnection source, Message msg) { argument
80 if (source == null) {
81 System.out.println("Received a message from a not fully connected source, msg:" + msg);
83 //System.out.println( "sending:" + msg + " back to client:" + source );
87 source.send(msg);
/external/libgsm/src/
H A Dgsm_encode.c13 void gsm_encode P3((s, source, c), gsm s, gsm_signal * source, gsm_byte * c) argument
17 Gsm_Coder(s, source, LARc, Nc, bc, Mc, xmaxc, xmc);
H A Dgsm_implode.c14 void gsm_implode P3((s, source, c), gsm s, gsm_signal * source, gsm_byte * c) argument
109 # define LARc source
110 # define Nc *((gsm_signal (*) [17])(source + 8))
111 # define bc *((gsm_signal (*) [17])(source + 9))
112 # define Mc *((gsm_signal (*) [17])(source + 10))
113 # define xmaxc *((gsm_signal (*) [17])(source + 11))
139 #define xmc (source + 12)
166 #define xmc (source + 29 - 13)
193 #define xmc (source
[all...]
/external/libvpx/libvpx/test/
H A Dsubtract_test.cc4 * 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.
40 uint8_t *source = reinterpret_cast<uint8_t*>( local
41 vpx_memalign(16, kBlockHeight * kSrcStride[0] * sizeof(*source)));
50 be.base_src = &source;
96 vpx_free(source);
/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.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.
43 void vp8_start_encode(BOOL_CODER *br, unsigned char *source, unsigned char *source_end) argument
49 br->buffer = source;
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java19 * @param source -- host:port of the source of the message.
33 public LogRecord createLogRecord(String message, String source, argument
H A DResponseEventExt.java15 public ResponseEventExt(Object source, ClientTransactionExt clientTransaction, argument
17 super(source,clientTransaction,dialog,response);
/external/nist-sip/java/javax/sip/
H A DIOExceptionEvent.java10 public IOExceptionEvent(Object source, String host, int port, argument
12 super(source);
H A DRequestEvent.java11 public RequestEvent(Object source, ServerTransaction serverTransaction, argument
13 super(source);

Completed in 7379 milliseconds

1234567891011>>