Searched refs:me (Results 1 - 25 of 178) sorted by relevance

12345678

/external/netcat/scripts/
H A Dncp16 me=`echo $0 | sed 's+.*/++'`
17 test "$me" = "nzp" && echo '[compressed mode]'
22 if test "$me" = "nzp" ; then
38 if test "$me" = "nzp" ; then
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformMouseEventQt.cpp79 QMouseEvent* me = 0; local
84 me = static_cast<QMouseEvent *>(event);
89 me = static_cast<QMouseEvent *>(event);
93 me = static_cast<QMouseEvent *>(event);
109 if (me) {
110 m_position = IntPoint(me->pos());
111 m_globalPosition = IntPoint(me->globalPos());
113 if (me->button() == Qt::LeftButton || (me->buttons() & Qt::LeftButton))
115 else if (me
[all...]
/external/ipsec-tools/src/racoon/
H A Dsafefile.c53 uid_t me; local
66 me = getuid();
67 if (s.st_uid != me) {
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js98 function new_node(me, mom, text, link, children_data, api_level)
127 node.plus_img.src = me.toroot + "assets/images/triangle-closed-small.png";
130 expand_node(me, node);
136 node.plus_img.src = me.toroot + "assets/images/triangle-closed-small.png";
149 a.href = me.toroot + link;
177 function expand_node(me, node)
183 get_node(me, node);
187 node.plus_img.src = me.toroot + "assets/images/triangle-opened-small.png";
196 function get_node(me, mom)
201 mom.children[i] = new_node(me, mo
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Djsevalcontext.js74 var me = this;
87 if (!me.vars_) {
88 me.vars_ = {};
93 copyProperties(me.vars_, opt_parent.vars_);
99 copyProperties(me.vars_, JsEvalContext.globals_);
107 me.vars_[VAR_this] = opt_data;
113 me.vars_[VAR_context] = me;
128 me.data_ = getDefaultObject(opt_data, STRING_empty);
134 me
[all...]
H A Djstemplate.js336 var me = this;
349 var calls = me.calls_ = [];
358 var queueIndices = me.queueIndices_ = [];
364 var arrayPool = me.arrayPool_ = [];
374 me.recycleArray_(calls.pop());
384 method.call(me, arg1, arg2);
445 var me = this;
447 var jstAttributes = me.jstAttributes_(template);
448 if (MAPS_DEBUG && me.debugging_) {
449 me
[all...]
H A Dutil.js238 var me = this;
239 me.queue_ = [ root ];
240 while (jsLength(me.queue_)) {
241 me.process_(me.queue_.shift());
250 var me = this;
252 me.callback_(node);
256 me.queue_.push(c);
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Djsevalcontext.js74 var me = this;
87 if (!me.vars_) {
88 me.vars_ = {};
93 copyProperties(me.vars_, opt_parent.vars_);
99 copyProperties(me.vars_, JsEvalContext.globals_);
107 me.vars_[VAR_this] = opt_data;
113 me.vars_[VAR_context] = me;
128 me.data_ = getDefaultObject(opt_data, STRING_empty);
134 me
[all...]
H A Djstemplate.js336 var me = this;
349 var calls = me.calls_ = [];
358 var queueIndices = me.queueIndices_ = [];
364 var arrayPool = me.arrayPool_ = [];
374 me.recycleArray_(calls.pop());
384 method.call(me, arg1, arg2);
445 var me = this;
447 var jstAttributes = me.jstAttributes_(template);
448 if (MAPS_DEBUG && me.debugging_) {
449 me
[all...]
H A Dutil.js238 var me = this;
239 me.queue_ = [ root ];
240 while (jsLength(me.queue_)) {
241 me.process_(me.queue_.shift());
250 var me = this;
252 me.callback_(node);
256 me.queue_.push(c);
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js694 var me = this;
705 me.data_ = opt_data;
715 me.vars_ = {};
717 copyProperties(me.vars_, opt_parent.vars_);
719 this.vars_[VAR_this] = me.data_;
856 var me = this;
858 me.queue_ = [ start ];
859 while (jsLength(me.queue_)) {
860 var f = me.queue_.shift();
886 var me
[all...]
/external/clang/test/SemaTemplate/
H A Ddestructor-template.cpp15 void destroy_me(T me) { argument
16 me.~T();
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java154 Map.Entry me = (Map.Entry) iter.next();
155 if (me.getKey() instanceof String)
156 target.setParameter((String)me.getKey(), me.getValue());
/external/chromium/base/
H A Dlazy_instance.h163 LazyInstance<Type, Traits>* me = local
165 Traits::Delete(me->instance_);
166 me->instance_ = NULL;
167 base::subtle::Release_Store(&me->state_, STATE_EMPTY);
/external/collada/src/dae/
H A DdaeMetaSequence.cpp51 daeMetaElement *me = NULL; local
54 me = _children[x]->findChild( elementName );
55 if ( me != NULL ) {
56 return me;
H A DdaeMetaChoice.cpp134 daeMetaElement *me = NULL; local
137 me = _children[x]->findChild( elementName );
138 if ( me != NULL ) {
139 return me;
/external/iptables/iptables/
H A Dxtables.c180 static void xtables_fully_register_pending_match(struct xtables_match *me);
181 static void xtables_fully_register_pending_target(struct xtables_target *me);
815 void xtables_register_match(struct xtables_match *me) argument
817 if (me->version == NULL) {
819 xt_params->program_name, me->name, me->revision);
822 if (strcmp(me->version, XTABLES_VERSION) != 0) {
825 xt_params->program_name, me->name,
826 me->version, XTABLES_VERSION);
830 if (strlen(me
857 xtables_fully_register_pending_match(struct xtables_match *me) argument
912 xtables_register_target(struct xtables_target *me) argument
954 xtables_fully_register_pending_target(struct xtables_target *me) argument
[all...]
/external/icu4c/tools/toolutil/
H A Ducm.c311 UCMapping *mb, *me, *mbLimit, *meLimit; local
318 me=ext->mappings;
319 meLimit=me+ext->mappingsLength;
338 if(me==meLimit) {
342 if(0<=me->f && me->f<=2) {
346 ++me;
350 cmp=compareUnicode(base, mb, ext, me);
362 /* does mb map from an input sequence that is a prefix of me's? */
363 } else if( mb->uLen<me
415 UCMapping *mb, *me; local
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_UnmodifiableMapTest.java65 Map.Entry<?, ?> me = (Map.Entry<?, ?>) entrySetIterator.next();
67 map.get(me.getKey()).equals(me.getValue()));
/external/doclava/src/com/google/doclava/
H A DHierarchy.java32 TreeSet<String> me = nodes.get(name);
33 if (me == null) {
34 me = new TreeSet<String>();
35 nodes.put(name, me);
H A DMethodInfo.java69 for (MethodInfo me : iface.methods()) {
70 if (me.name().equals(name) && me.signature().equals(signature)
71 && me.inlineTags().tags() != null && me.inlineTags().tags().length > 0) {
72 return me;
107 for (MethodInfo me : iface.methods()) {
108 if (me.name().equals(name) && me.signature().equals(signature)
109 && me
[all...]
/external/valgrind/main/coregrind/
H A Dpub_core_scheduler.h52 extern void VG_(nuke_all_threads_except) ( ThreadId me,
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable_unittest.cc125 MutableEntry me(&wtrans, CREATE, wtrans.root_id(), name);
126 ASSERT_TRUE(me.good());
127 me.Put(ID, id);
128 me.Put(BASE_VERSION, 1);
129 written_metahandle = me.Get(META_HANDLE);
197 MutableEntry me(&wtrans, CREATE, wtrans.root_id(), name);
198 ASSERT_TRUE(me.good());
199 me.Put(ID, id);
200 me.Put(BASE_VERSION, 1);
201 me
[all...]
/external/iproute2/include/
H A Dip6tables.h118 extern void register_match6(struct ip6tables_match *me);
119 extern void register_target6(struct ip6tables_target *me);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDragClientQt.cpp106 PlatformMouseEvent me(m_webPage->view()->mapFromGlobal(QCursor::pos()), QCursor::pos(), LeftButton, MouseEventMoved, 0, false, false, false, false, 0);
107 frame->eventHandler()->dragSourceEndedAt(me, dropActionToDragOperation(actualDropAction));

Completed in 1401 milliseconds

12345678