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

1234567891011>>

/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
H A Dweak_ptr_Y.pass.cpp56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function
102 std::weak_ptr<A> pA = source(ps);
/external/libcxx/test/std/utilities/utility/forward/
H A Dforward.pass.cpp19 A source() {return A();} function
45 static_assert(sizeof(test(std::forward<A>(source()))) == 4, "");
48 // static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, "");
50 static_assert(sizeof(test(std::forward<const A>(source()))) == 8, "");
61 // static_assert(sizeof(test(std::forward<A>(source()))) == 2, "");
64 static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, "");
66 static_assert(sizeof(test(std::forward<const A>(source()))) == 2, "");
H A Dmove_copy.pass.cpp43 A source() {return A();} function
H A Dmove_only.pass.cpp38 move_only source() {return move_only();} function
48 test(source());
H A Dmove_only1.fail.cpp41 move_only source() {return move_only();} function
H A Dmove_only2.fail.cpp41 move_only source() {return move_only();} function
H A Dmove_only3.fail.cpp38 move_only source() {return move_only();} function
H A Dmove_only4.fail.cpp41 move_only source() {return move_only();} function
/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.
45 uint8_t *source = reinterpret_cast<uint8_t*>( local
46 vpx_memalign(16, kBlockHeight * kSrcStride[0] * sizeof(*source)));
55 be.base_src = &source;
101 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/mesa3d/src/gallium/state_trackers/clover/core/
H A Dprogram.cpp29 const std::string &source) :
30 ctx(ctx), __source(source) {
64 _cl_program::source() const { function in class:_cl_program
28 _cl_program(clover::context &ctx, const std::string &source) argument
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp79 read_body(const char *source, module &m) { argument
82 if (!tgsi_text_translate(source, prog, Elements(prog)))
91 clover::compile_program_tgsi(const compat::string &source) { argument
92 const char *body = source.find("COMP\n");
95 read_header({ source.begin(), body }, m);
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp106 * \param source Source instruction stream containing functions whose
114 import_prototypes(const exec_list *source, exec_list *dest, argument
119 /* Making source be const is just extra documentation.
121 v.run(const_cast<exec_list *>(source));
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_buffer_objects.h54 bool source; member in struct:intel_buffer_object
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCollectionUtils.java42 public static void reverse(Map source, Map target) { argument
43 for (Iterator it = source.keySet().iterator(); it.hasNext();) {
45 target.put(source.get(key), key);
H A DDefaultNamingPolicy.java33 public String getClassName(String prefix, String source, Object key, Predicate names) { argument
41 source.substring(source.lastIndexOf('.') + 1) +
H A DNamingPolicy.java27 * @param source the fully-qualified class name of the generating class (for example "org.mockito.cglib.Enhancer")
33 String getClassName(String prefix, String source, Object key, Predicate names); argument
/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);
H A DResponseEvent.java11 public ResponseEvent(Object source, ClientTransaction clientTransaction, argument
13 super(source);
H A DTransactionTerminatedEvent.java11 Object source, ServerTransaction serverTransaction) {
12 super(source);
19 Object source, ClientTransaction clientTransaction) {
20 super(source);
10 TransactionTerminatedEvent( Object source, ServerTransaction serverTransaction) argument
18 TransactionTerminatedEvent( Object source, ClientTransaction clientTransaction) argument

Completed in 604 milliseconds

1234567891011>>