Searched defs:this (Results 1 - 25 of 78) sorted by relevance

1234

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp8.cpp3 void f(A* p = this) { } // expected-error{{invalid use of 'this'}} argument
/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/commands/
H A DBrowserCommands.js5 you may not use this file except in compliance with the License.
22 this.commands={};
26 if (name in this.commands) {
30 this.commands[name] = {help: help, runnable: runnable};
35 for (var command in this.commands) {
36 result+=command+'\t'+this.commands[command].help+"\n";
39 /*if (! (name in this.commands)) {
43 return this.commands[name].help.apply(context, args);*/
48 return this.help(name, args);
50 if (! (name in this
[all...]
/external/autotest/client/common_lib/cros/webrtc_scripts/
H A Dloopback-peerconnection.js3 * Use of this source code is governed by a BSD-style license that can be
23 this.localConnection = null;
24 this.remoteConnection = null;
25 this.remoteView = videoElement;
26 this.streams = [];
29 this.resolutions = resolutions.slice().sort((x, y) => y.w - x.w);
30 this.activeStreamIndex = resolutions.length - 1;
31 this.badResolutionsSeen = 0;
33 this.pcConstraints = {
41 * to render the video on {@code this
[all...]
/external/clang/test/Sema/
H A Doverloaded-func-transparent-union.c15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { argument
16 this.object->str = str;
17 this.object->str2 = str2;
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) { argument
21 this.object->str = str;
22 this.object->str2 = str;
H A Dnonnull.c12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { argument
13 this.object->str = str;
/external/libnetfilter_conntrack/src/conntrack/
H A Dfilter_dump.c16 const struct nfct_filter_dump_mark *this = value; local
18 filter_dump->mark.val = this->val;
19 filter_dump->mark.mask = this->mask;
H A Dfilter.c24 const struct nfct_filter_proto *this = value; local
26 set_bit_u16(this->state, &filter->l4proto_state[this->proto].map);
27 filter->l4proto_state[this->proto].len++;
32 const struct nfct_filter_ipv4 *this = value; local
37 filter->l3proto[0][filter->l3proto_elems[0]].addr = this->addr;
38 filter->l3proto[0][filter->l3proto_elems[0]].mask = this->mask;
44 const struct nfct_filter_ipv4 *this = value; local
49 filter->l3proto[1][filter->l3proto_elems[1]].addr = this->addr;
50 filter->l3proto[1][filter->l3proto_elems[1]].mask = this
56 const struct nfct_filter_ipv6 *this = value; local
70 const struct nfct_filter_ipv6 *this = value; local
84 const struct nfct_filter_dump_mark *this = value; local
[all...]
H A Dgrp_getter.c14 struct nfct_attr_grp_ipv4 *this = data; local
15 this->src = ct->head.orig.src.v4;
16 this->dst = ct->head.orig.dst.v4;
21 struct nfct_attr_grp_ipv4 *this = data; local
22 this->src = ct->repl.src.v4;
23 this->dst = ct->repl.dst.v4;
28 struct nfct_attr_grp_ipv6 *this = data; local
29 memcpy(this->src, &ct->head.orig.src.v6, sizeof(uint32_t)*4);
30 memcpy(this->dst, &ct->head.orig.dst.v6, sizeof(uint32_t)*4);
35 struct nfct_attr_grp_ipv6 *this local
42 struct nfct_attr_grp_port *this = data; local
49 struct nfct_attr_grp_port *this = data; local
56 struct nfct_attr_grp_icmp *this = data; local
64 struct nfct_attr_grp_ipv4 *this = data; local
71 struct nfct_attr_grp_ipv6 *this = data; local
78 struct nfct_attr_grp_port *this = data; local
85 struct nfct_attr_grp_ctrs *this = data; local
92 struct nfct_attr_grp_ctrs *this = data; local
100 union nfct_attr_grp_addr *this = data; local
107 union nfct_attr_grp_addr *this = data; local
114 union nfct_attr_grp_addr *this = data; local
121 union nfct_attr_grp_addr *this = data; local
[all...]
H A Dgrp_setter.c42 const struct nfct_attr_grp_ipv4 *this = value; local
43 ct->head.orig.src.v4 = this->src;
44 ct->head.orig.dst.v4 = this->dst;
50 const struct nfct_attr_grp_ipv4 *this = value; local
51 ct->repl.src.v4 = this->src;
52 ct->repl.dst.v4 = this->dst;
58 const struct nfct_attr_grp_ipv6 *this = value; local
59 memcpy(&ct->head.orig.src.v6, this->src, sizeof(uint32_t)*4);
60 memcpy(&ct->head.orig.dst.v6, this->dst, sizeof(uint32_t)*4);
66 const struct nfct_attr_grp_ipv6 *this local
74 const struct nfct_attr_grp_port *this = value; local
81 const struct nfct_attr_grp_port *this = value; local
89 const struct nfct_attr_grp_icmp *this = value; local
120 const struct nfct_attr_grp_ipv4 *this = value; local
128 const struct nfct_attr_grp_ipv6 *this = value; local
136 const struct nfct_attr_grp_port *this = value; local
[all...]
H A Dobjopt.c14 struct __nfct_tuple *this = NULL, *other = NULL; local
18 this = &ct->head.orig;
22 this = &ct->repl;
27 this->l3protonum = other->l3protonum;
28 this->protonum = other->protonum;
30 memcpy(&this->src.v6, &other->dst.v6, sizeof(union __nfct_address));
31 memcpy(&this->dst.v6, &other->src.v6, sizeof(union __nfct_address));
33 switch(this->protonum) {
40 this->l4src.all = other->l4dst.all;
41 this
[all...]
/external/annotation-tools/annotation-file-utilities/tests/
H A DInnerReceivers.java12 void m1(Inner this) {}
18 void m1(InnerReceivers this) {} argument
20 void m2(annotator.tests.InnerReceivers this) {} argument
26 void m1(InnerReceivers.Inner1<Y, Z> this) {} argument
28 void m2(annotator.tests.InnerReceivers.Inner1<Y, Z> this) {} argument
34 void m1(InnerReceivers.Inner1<Y, Z>.Inner2 this) {} argument
42 void m1(InnerReceivers.StaticInner1 this) {} argument
44 void m2(annotator.tests.InnerReceivers.StaticInner1 this) {} argument
51 void m1(InnerReceivers.StaticInner3<Y, Z> this) {} argument
53 void m2(annotator.tests.InnerReceivers.StaticInner3<Y, Z> this) {} argument
62 m1(Outer.StaticInner2 this) argument
64 m2(annotator.tests.Outer.StaticInner2 this) argument
[all...]
H A DMemberSelectTypes.java7 void m(MemberSelectTypes<T>.Inner this) {} argument
11 void m(MemberSelectTypes.StaticInner this) {} argument
H A DReceivers.java19 public void m(Receivers2 this) {} argument
21 public void spaces(Receivers2 this) {} argument
23 public void m(Receivers2 this, int i) {} argument
25 public void spaces(Receivers2 this, int i) {} argument
35 public void m(Receivers4<K, V> this) {} argument
37 public void m(Receivers4<K, V> this, int i) {} argument
54 public void m(Receivers8<K> this) {} argument
62 public void m(Receivers10<K, V> this) {} argument
64 public void m(Receivers10<K, V> this, Receivers10<K, V> other) {} argument
82 this
[all...]
/external/blktrace/btt/
H A Ddevmap.c17 * along with this program; if not, write to the Free Software
50 char this[128]; local
53 sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
57 if (!strcmp(this, dmp->devno))
H A Ddip_rb.c17 * along with this program; if not, write to the Free Software
68 void (*fnc)(struct io *iop, struct io *this),
72 struct io *this = rb_entry(n, struct io, rb_node); local
74 __u64 this_s = BIT_START(this), this_e = BIT_END(this);
77 if (fnc) fnc(iop, this);
79 list_add_tail(&this->f_head, head);
67 rb_foreach(struct rb_node *n, struct io *iop, void (*fnc)(struct io *iop, struct io *this), struct list_head *head) argument
H A Dproc.c17 * along with this program; if not, write to the Free Software
67 struct pn_info *this; local
71 this = rb_entry(n, struct pn_info, rb_node);
72 if (pid < this->u.pid)
74 else if (pid > this->u.pid)
77 return this->pip;
86 struct pn_info *this; local
90 this = rb_entry(n, struct pn_info, rb_node);
91 cmp = strcmp(name, this->u.name);
97 return this
105 struct pn_info *this; local
132 struct pn_info *this; local
[all...]
/external/python/cpython2/Doc/
H A Dmake.bat6 set this=%~n0 variable
49 echo.usage: %this% BUILDER [filename ...]
51 echo.Call %this% with the desired Sphinx builder as the first argument, e.g.
52 echo.``%this% html`` or ``%this% doctest``. Interesting targets that are
58 echo. Provided by this script:
62 echo.filenames to build or are ignored. See README.txt in this directory or
106 cmd /C %this% html
/external/python/cpython3/Doc/
H A Dmake.bat6 set this=%~n0 variable
64 echo.usage: %this% BUILDER [filename ...]
66 echo.Call %this% with the desired Sphinx builder as the first argument, e.g.
67 echo.``%this% html`` or ``%this% doctest``. Interesting targets that are
73 echo. Provided by this script:
77 echo.filenames to build or are ignored. See README.rst in this directory or
112 cmd /C %this% html
/external/python/cpython2/Lib/encodings/
H A Dbz2_codec.py3 Unlike most of the other codecs which target Unicode, this codec
11 import bz2 # this codec needs the optional bz2 module ! namespace
22 error handling for this codec.
36 mapped files are examples of objects providing this slot.
40 error handling for this codec.
H A Dzlib_codec.py3 Unlike most of the other codecs which target Unicode, this codec
10 import zlib # this codec needs the optional zlib module ! namespace
21 error handling for this codec.
35 mapped files are examples of objects providing this slot.
39 error handling for this codec.
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_5/
H A Dtirpc_svc_5.c13 * Further, this software is distributed without any warranty that it is
16 * otherwise, applies only to this software file. Patent licenses, if
17 * any, provided herein do not apply to combinations of this program with
21 * with this program; if not, write the Free Software Foundation, Inc.,
67 struct server_def_t *this; local
72 this = &(server_defs[i]);
74 this->nconf = getnetconfigent(this->netid);
75 if (this->nconf == NULL) {
77 this
[all...]
/external/python/cpython3/Lib/encodings/
H A Dbz2_codec.py11 import bz2 # this codec needs the optional bz2 module ! namespace
H A Dzlib_codec.py9 import zlib # this codec needs the optional zlib module ! namespace
/external/zlib/src/contrib/infback9/
H A Dinftree9.c16 include such an acknowledgment, I would appreciate that you keep this
53 code this; /* table entry for duplication */ local
91 lens[] are in the range 0..MAXBITS. The caller must assure this.
93 symbol does not occur in this code.
144 Create and fill in decoding tables. In this loop, the table being
159 counts are used for this, and so count[] is decremented as codes are
170 routine permits incomplete codes, so another loop after this one fills
212 this.bits = (unsigned char)(len - drop);
214 this.op = (unsigned char)0;
215 this
[all...]
/external/libnfnetlink/src/
H A Diftable.c56 struct ifindex_node *this; local
72 list_for_each_entry(this, &h->ifindex_hash[hash], head) {
73 if (this->index == ifi_msg->ifi_index) {
80 this = malloc(sizeof(*this));
81 if (!this)
84 this->index = ifi_msg->ifi_index;
87 this->type = ifi_msg->ifi_type;
88 this->flags = ifi_msg->ifi_flags;
91 this
119 struct ifindex_node *this, *tmp; local
154 struct ifindex_node *this; local
188 struct ifindex_node *this; local
264 struct ifindex_node *this, *tmp; local
[all...]

Completed in 1729 milliseconds

1234