Searched defs:this (Results 26 - 50 of 78) sorted by relevance

1234

/external/llvm/utils/
H A Dupdate_llc_test_checks.py12 import os # Used to advertise this file's name ("autogenerated_note"). namespace
29 # RegEx: this is where the magic happens.
H A Dupdate_test_checks.py19 running this script.
22 7. Re-run this script on affected regression tests.
34 import os # Used to advertise this file's name ("autogenerated_note"). namespace
43 # RegEx: this is where the magic happens.
84 # FIXME: Separate the x86-specific scrubbers, so this can be used for other targets.
/external/toybox/
H A Dmain.c27 // global context for this command.
30 union global_union this; variable in typeref:union:global_union
45 // Binary search to find this command.
80 // Setup toybox global state for this command.
142 if (oldwhich) memset(&this, 0, sizeof(this));
237 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
/external/v8/src/debug/
H A Dliveedit.js2 // Use of this source code is governed by a BSD-style license that can be
17 // create a new instance of this function goes away. An old version of script
18 // is created to back up this obsolete function.
59 // Find all SharedFunctionInfo's that were compiled from this script.
160 // We haven't changed anything before this line yet.
258 // For some functions we will restore this link later.
320 // The function got a new code. However, this new code brings all new
325 // expects this; neither does LiveEdit subsystem on next call).
381 this.pos1 = pos1;
382 this
[all...]
/external/annotation-tools/annotation-file-utilities/tests/system-test/source-ann-better/
H A DAnnotationTest.java49 doSomething(@A06 AnnotationTest this, @A0C /*@C0C*/ Set<@A0D /*@C0D*/ Integer> param) /*@C06*/ { argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs55 if ( object.Equals( this[i], value ) )
93 public object this[int index]
128 array.SetValue( this[i], index + i );
215 array.SetValue( this[i], index + i );
316 object IList.this[int index]
320 return this[index];
324 this[index] = (T)value;
369 array[arrayIndex + i] = this[i];
386 if ( object.Equals( this[i], item ) )
403 public T this[in
[all...]
/external/blktrace/btt/
H A Ddevs.c17 * along with this program; if not, write to the Free Software
185 void (*fnc)(struct io *iop, struct io *this), int rm_after)
189 struct io *this; local
194 this = list_entry(p, struct io, f_head);
195 list_del(&this->f_head);
196 io_release(this);
184 dip_foreach(struct io *iop, enum iop_type type, void (*fnc)(struct io *iop, struct io *this), int rm_after) argument
H A Dinlines.h17 * along with this program; if not, write to the Free Software
303 void (*fnc)(struct io *iop, struct io *this),
301 dip_rb_fe(struct d_info *dip, enum iop_type type, struct io *iop, void (*fnc)(struct io *iop, struct io *this), struct list_head *head) argument
/external/protobuf/csharp/src/Google.Protobuf/Collections/
H A DRepeatedField.cs11 // notice, this list of conditions and the following disclaimer.
13 // copyright notice, this list of conditions and the following disclaimer
18 // this software without specific prior written permission.
59 /// Creates a deep clone of this repeated field.
68 /// <returns>A deep clone of this repeated field.</returns>
125 /// Calculates the size of this collection based on the given codec.
176 /// Writes the contents of this collection to the given <see cref="CodedOutputStream"/>,
248 /// Determines whether this collection contains the given item.
251 /// <returns><c>true</c> if this collection contains the given item; <c>false</c> otherwise.</returns>
258 /// Copies this collectio
[all...]
H A DMapField.cs11 // notice, this list of conditions and the following disclaimer.
13 // copyright notice, this list of conditions and the following disclaimer
18 // this software without specific prior written permission.
77 /// Creates a deep clone of this object.
80 /// A deep clone of this object.
96 clone.Add(this);
117 this[key] = value;
162 /// <param name="value">When this method returns, the value associated with the specified key, if the key is found;
188 public TValue this[TKey key]
225 public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pai
[all...]
/external/python/cpython3/Lib/importlib/
H A Dutil.py140 warnings.warn('The import system now takes care of this automatically.', namespace
159 warnings.warn('The import system now takes care of this automatically.', namespace
186 warnings.warn('The import system now takes care of this automatically.', namespace
215 # Stop triggering this method.
/external/toybox/scripts/
H A Dconfig2help.c123 // If there was whitespace before this, zap it. This can't take out *help
125 // one non-blank line (a dash line) to get this far.
265 char *this, *that, *cusage, *tusage, *name = 0; local
277 // text out of throw into catch, copying from this to that
288 this = that;
355 if (*this == '[' && this[1] == '-' && this[2] != '-' &&
358 char *from = this+2, *to = that+2;
364 this
[all...]
/external/toybox/toys/pending/
H A Dmke2fs.c20 -N inodes Allocate this many inodes
22 -m percent Reserve this percent of filesystem space for root user
152 static struct dirtree *treenext(struct dirtree *this) argument
154 while (this && !this->next) this = this->parent;
155 if (this) this = this
[all...]
/external/annotation-tools/annotation-file-utilities/tests/system-test/source-ann/
H A DAnnotationTest.java122 int baz(Baz o) { return o.hashCode() ^ this.hashCode(); }
132 doSomething(@A06 /*@C06*/ AnnotationTest<Foo> this, @A0C /*@C0C*/ Set<@A0D /*@C0D*/ Integer> param) { argument
/external/devlib/src/readenergy/
H A Dreadenergy.c4 * you may not use this file except in compliance with the License.
177 void config_init_period_from_millis(struct config *this, long millis) argument
179 this->period.tv_sec = (time_t)(millis / 1000);
180 this->period.tv_nsec = (millis % 1000) * 1000000;
183 void config_init(struct config *this, int argc, char *argv[]) argument
185 this->output_file = NULL;
186 config_init_period_from_millis(this, DEFAULT_PERIOD);
187 this->duration_in_sec = DEFAULT_DURATION;
195 config_init_period_from_millis(this, atol(optarg));
198 this
226 emeter_init(struct emeter *this, char *outfile) argument
264 emeter_read_measurements(struct emeter *this, struct reading *reading) argument
285 emeter_take_reading(struct emeter *this) argument
315 emeter_finalize(struct emeter *this) argument
[all...]
/external/iptables/iptables/
H A Dnft-arp.c641 struct arptables_command_state this = {}; local
644 nft_rule_to_arptables_command_state(r, &this);
646 if (!nft_arp_is_same(cs, &this))
649 if (!compare_targets(cs->target, this.target))
652 if (strcmp(cs->jumpto, this.jumpto) != 0)
H A Dnft-bridge.c125 /* TODO: Use generic add_action() once we convert this to use
452 * specified, obviously this means any protocol will do. */
604 struct ebtables_command_state this = {}; local
606 nft_rule_to_ebtables_command_state(r, &this);
610 if (!nft_bridge_is_same(cs, &this))
613 if (!compare_matches(cs->matches, this.matches)) {
618 if (!compare_targets(cs->target, this.target)) {
623 if (cs->jumpto != NULL && strcmp(cs->jumpto, this.jumpto) != 0) {
/external/libnetfilter_conntrack/src/conntrack/
H A Dbsf.c19 /* this requires a Linux kernel >= 2.6.29 */
74 static void show_filter(struct sock_filter *this, int from, int to, char *str)
81 char *code_str = code2str(this[i].code & 0xFFFF);
86 this[i].code & 0xFFFF,
87 this[i].jt & 0xFF,
88 this[i].jf & 0xFF,
89 this[i].k & 0xFFFFFFFF);
94 this[i].jt & 0xFF,
95 this[i].jf & 0xFF,
96 this[
102 show_filter(struct sock_filter *this, int from, int to, char *str) argument
108 nfct_bsf_load_payload_offset(struct sock_filter *this, int pos) argument
119 nfct_bsf_find_attr(struct sock_filter *this, int attr, int pos) argument
139 nfct_bsf_find_attr_nest(struct sock_filter *this, int attr, int pos) argument
164 nfct_bsf_cmp_k_stack(struct sock_filter *this, int k, int jump_true, int pos, struct stack *s) argument
183 nfct_bsf_cmp_k_stack_jf(struct sock_filter *this, int k, int jump_false, int pos, struct stack *s) argument
201 nfct_bsf_alu_and(struct sock_filter *this, int k, int pos) argument
212 nfct_bsf_add_attr_data_offset(struct sock_filter *this, int pos) argument
224 nfct_bsf_x_equal_a(struct sock_filter *this, int pos) argument
234 nfct_bsf_a_equal_x(struct sock_filter *this, int pos) argument
244 nfct_bsf_load_attr(struct sock_filter *this, int word_size, int pos) argument
257 nfct_bsf_load_attr_offset(struct sock_filter *this, int word_size, int offset, int pos) argument
270 nfct_bsf_ret_verdict(struct sock_filter *this, int verdict, int pos) argument
281 nfct_bsf_jump_to(struct sock_filter *this, int line, int pos) argument
293 bsf_cmp_subsys(struct sock_filter *this, int pos, uint8_t subsys) argument
319 add_state_filter_cta(struct sock_filter *this, unsigned int cta_protoinfo_proto, unsigned int cta_protoinfo_state, uint16_t state_flags, unsigned int logic) argument
376 add_state_filter(struct sock_filter *this, int proto, uint16_t flags, unsigned int logic) argument
412 bsf_add_state_filter(const struct nfct_filter *filter, struct sock_filter *this) argument
431 bsf_add_proto_filter(const struct nfct_filter *f, struct sock_filter *this) argument
488 bsf_add_addr_ipv4_filter(const struct nfct_filter *f, struct sock_filter *this, unsigned int type) argument
561 bsf_add_saddr_ipv4_filter(const struct nfct_filter *f, struct sock_filter *this) argument
567 bsf_add_daddr_ipv4_filter(const struct nfct_filter *f, struct sock_filter *this) argument
573 bsf_add_addr_ipv6_filter(const struct nfct_filter *f, struct sock_filter *this, unsigned int type) argument
668 bsf_add_saddr_ipv6_filter(const struct nfct_filter *f, struct sock_filter *this) argument
674 bsf_add_daddr_ipv6_filter(const struct nfct_filter *f, struct sock_filter *this) argument
680 bsf_add_mark_filter(const struct nfct_filter *f, struct sock_filter *this) argument
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp87 #define this macro
106 // Check this is all properly defined away.
172 this
/external/e2fsprogs/debugfs/
H A Dlogdump.c525 end of this block. */
631 * If this block is a block
669 int first, prev, this, start_extent, i; local
686 this = inode->i_block[i];
687 if (start_extent >= 0 && this == prev+1) {
688 prev = this;
693 first = prev = this;
/external/fio/
H A Dgettime.c290 double this = cycles[i]; local
295 if ((fmax(this, mean) - fmin(this, mean)) > S)
298 avg += this;
372 * to use as THE clock source. For x86 CPUs, this means the TSC
569 struct clock_entry *prev, *this; local
649 this = &entries[i];
652 prev = this;
656 if (prev->tsc > this->tsc) {
657 uint64_t diff = prev->tsc - this
[all...]
/external/libvncserver/common/
H A Dturbojpeg.c8 * this list of conditions and the following disclaimer.
10 * this list of conditions and the following disclaimer in the documentation
13 * contributors may be used to endorse or promote products derived from this
29 /* TurboJPEG/OSS: this implements the TurboJPEG API using libjpeg-turbo */
109 #define getinstance(handle) tjinstance *this=(tjinstance *)handle; \
112 if(!this) {snprintf(errStr, JMSG_LENGTH_MAX, "Invalid handle"); \
114 cinfo=&this->cinfo; dinfo=&this->dinfo;
441 if(setjmp(this->jerr.setjmp_buffer)) return -1;
442 if(this
461 _tjInitCompress(tjinstance *this) argument
486 tjinstance *this=NULL; local
645 _tjInitDecompress(tjinstance *this) argument
672 tjinstance *this; local
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dndis_events.c154 ndis_events_query_interface(IWbemObjectSink *this, REFIID riid, void **obj) argument
160 *obj = this;
161 IWbemObjectSink_AddRef(this);
169 static ULONG STDMETHODCALLTYPE ndis_events_add_ref(IWbemObjectSink *this) argument
171 struct ndis_events_data *events = (struct ndis_events_data *) this;
176 static ULONG STDMETHODCALLTYPE ndis_events_release(IWbemObjectSink *this) argument
178 struct ndis_events_data *events = (struct ndis_events_data *) this;
303 ndis_events_indicate(IWbemObjectSink *this, long lObjectCount, argument
306 struct ndis_events_data *events = (struct ndis_events_data *) this;
387 ndis_events_set_status(IWbemObjectSink *this, lon argument
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Dndis_events.c154 ndis_events_query_interface(IWbemObjectSink *this, REFIID riid, void **obj) argument
160 *obj = this;
161 IWbemObjectSink_AddRef(this);
169 static ULONG STDMETHODCALLTYPE ndis_events_add_ref(IWbemObjectSink *this) argument
171 struct ndis_events_data *events = (struct ndis_events_data *) this;
176 static ULONG STDMETHODCALLTYPE ndis_events_release(IWbemObjectSink *this) argument
178 struct ndis_events_data *events = (struct ndis_events_data *) this;
303 ndis_events_indicate(IWbemObjectSink *this, long lObjectCount, argument
306 struct ndis_events_data *events = (struct ndis_events_data *) this;
387 ndis_events_set_status(IWbemObjectSink *this, lon argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dndis_events.c154 ndis_events_query_interface(IWbemObjectSink *this, REFIID riid, void **obj) argument
160 *obj = this;
161 IWbemObjectSink_AddRef(this);
169 static ULONG STDMETHODCALLTYPE ndis_events_add_ref(IWbemObjectSink *this) argument
171 struct ndis_events_data *events = (struct ndis_events_data *) this;
176 static ULONG STDMETHODCALLTYPE ndis_events_release(IWbemObjectSink *this) argument
178 struct ndis_events_data *events = (struct ndis_events_data *) this;
303 ndis_events_indicate(IWbemObjectSink *this, long lObjectCount, argument
306 struct ndis_events_data *events = (struct ndis_events_data *) this;
387 ndis_events_set_status(IWbemObjectSink *this, lon argument
[all...]

Completed in 689 milliseconds

1234