HomeSort by relevance Sort by last modified time
    Searched refs:mname (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
SOA.py 25 @ivar mname: the SOA MNAME (master name) field
26 @type mname: dns.name.Name object
42 __slots__ = ['mname', 'rname', 'serial', 'refresh', 'retry', 'expire',
45 def __init__(self, rdclass, rdtype, mname, rname, serial, refresh, retry,
48 self.mname = mname
57 mname = self.mname.choose_relativity(origin, relativize)
60 mname, rname, self.serial, self.refresh, self.retry
    [all...]
  /external/curl/scripts/
log2changes.pl 5 my @mname = ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
12 return sprintf("%d %s %4d", $3, $mname[$2-1], $1);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
rule-methods.rb 126 mname = RUBY_VERSION =~ /^1\.9/ ? proc { | n | n.to_sym } : proc { | n | n.to_s }
128 RuleVisibility::Parser.public_instance_methods.should include( mname[ 'a' ] )
129 RuleVisibility::Parser.protected_instance_methods.should include( mname[ 'c' ] )
130 RuleVisibility::Parser.private_instance_methods.should include( mname[ 'b' ] )
  /external/javassist/src/main/javassist/
CtNewMethod.java 89 * @param mname the method name.
100 String mname, CtClass[] parameters,
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
115 * @param mname the method name.
127 String mname, CtClass[] parameters,
134 = new CtMethod(returnType, mname, parameters, declaring);
193 * @param mname the method name
201 String mname,
207 CtMethod cm = new CtMethod(returnType, mname, parameters, declaring);
449 * @param mname the method name
    [all...]
CtMethod.java 47 * @param mname the method name
52 public CtMethod(CtClass returnType, String mname,
57 methodInfo = new MethodInfo(cp, mname, desc);
CtNewWrappedMethod.java 27 public static CtMethod wrapped(CtClass returnType, String mname,
34 CtMethod mt = new CtMethod(returnType, mname, parameterTypes,
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 123 String mname = methods[identifier].getName(); local
126 char c = mname.charAt(j++);
131 return mname.substring(j);
ClassMetaobject.java 260 String mname = m.getName(); local
261 if (mname.startsWith(methodPrefix)) {
264 char c = mname.charAt(j);
306 String mname = getReflectiveMethods()[identifier].getName(); local
309 char c = mname.charAt(j++);
314 return mname.substring(j);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_importhooks.py 229 mname = "exceptions" # an arbitrary harmless builtin module
230 test_support.unload(mname)
231 sys.meta_path.append(ImportBlocker(mname))
232 self.assertRaises(ImportError, __import__, mname)
239 for mname in mnames:
240 parent = mname.split(".")[0]
246 for mname in mnames:
247 m = __import__(mname, globals(), locals(), ["__dummy__"])
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_importhooks.py 229 mname = "exceptions" # an arbitrary harmless builtin module
230 test_support.unload(mname)
231 sys.meta_path.append(ImportBlocker(mname))
232 self.assertRaises(ImportError, __import__, mname)
239 for mname in mnames:
240 parent = mname.split(".")[0]
246 for mname in mnames:
247 m = __import__(mname, globals(), locals(), ["__dummy__"])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 229 mname = "exceptions" # an arbitrary harmless builtin module
230 test_support.unload(mname)
231 sys.meta_path.append(ImportBlocker(mname))
232 self.assertRaises(ImportError, __import__, mname)
239 for mname in mnames:
240 parent = mname.split(".")[0]
246 for mname in mnames:
247 m = __import__(mname, globals(), locals(), ["__dummy__"])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 229 mname = "exceptions" # an arbitrary harmless builtin module
230 test_support.unload(mname)
231 sys.meta_path.append(ImportBlocker(mname))
232 self.assertRaises(ImportError, __import__, mname)
239 for mname in mnames:
240 parent = mname.split(".")[0]
246 for mname in mnames:
247 m = __import__(mname, globals(), locals(), ["__dummy__"])
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 449 String mname = null; local
459 mname = ((Member)method).get();
470 mname = MethodInfo.nameInit; // <init>
482 mname = ((Symbol)e.oprand2()).get();
523 atMethodCallCore(targetClass, mname, args, isStatic, isSpecial,
537 public void atMethodCallCore(CtClass targetClass, String mname,
562 mname, types, dims, cnames);
566 if (mname.equals(MethodInfo.nameInit))
569 msg = "Method " + mname + " not found in "
575 atMethodCallCore2(targetClass, mname, isStatic, isSpecial
    [all...]
TypeChecker.java 626 String mname = null; local
632 mname = ((Member)method).get();
636 mname = MethodInfo.nameInit; // <init>
644 mname = ((Symbol)e.oprand2()).get();
682 = atMethodCallCore(targetClass, mname, args);
695 String mname, ASTList args)
706 mname, types, dims, cnames);
711 if (mname.equals(MethodInfo.nameInit))
714 msg = mname + signature + " not found in " + clazz;
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_websocket.py 172 mname = result['method']
173 dot_pos = mname.find('.')
174 domain_name = mname[:dot_pos]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rexec.py 196 for mname in self.ok_builtin_modules:
197 if mname in sys.builtin_module_names:
198 list.append(mname)
235 def is_builtin(self, mname):
236 return mname in self.ok_builtin_modules
298 def add_module(self, mname):
299 m = self.modules.get(mname)
301 self.modules[mname] = m = self.hooks.new_module(mname)
338 def r_import(self, mname, globals={}, locals={}, fromlist=[])
    [all...]
BaseHTTPServer.py 323 mname = 'do_' + self.command
324 if not hasattr(self, mname):
327 method = getattr(self, mname)
  /prebuilts/gdb/linux-x86/lib/python2.7/
rexec.py 196 for mname in self.ok_builtin_modules:
197 if mname in sys.builtin_module_names:
198 list.append(mname)
235 def is_builtin(self, mname):
236 return mname in self.ok_builtin_modules
298 def add_module(self, mname):
299 m = self.modules.get(mname)
301 self.modules[mname] = m = self.hooks.new_module(mname)
338 def r_import(self, mname, globals={}, locals={}, fromlist=[])
    [all...]
BaseHTTPServer.py 323 mname = 'do_' + self.command
324 if not hasattr(self, mname):
327 method = getattr(self, mname)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rexec.py 196 for mname in self.ok_builtin_modules:
197 if mname in sys.builtin_module_names:
198 list.append(mname)
235 def is_builtin(self, mname):
236 return mname in self.ok_builtin_modules
298 def add_module(self, mname):
299 m = self.modules.get(mname)
301 self.modules[mname] = m = self.hooks.new_module(mname)
338 def r_import(self, mname, globals={}, locals={}, fromlist=[])
    [all...]
BaseHTTPServer.py 323 mname = 'do_' + self.command
324 if not hasattr(self, mname):
327 method = getattr(self, mname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rexec.py 196 for mname in self.ok_builtin_modules:
197 if mname in sys.builtin_module_names:
198 list.append(mname)
235 def is_builtin(self, mname):
236 return mname in self.ok_builtin_modules
298 def add_module(self, mname):
299 m = self.modules.get(mname)
301 self.modules[mname] = m = self.hooks.new_module(mname)
338 def r_import(self, mname, globals={}, locals={}, fromlist=[])
    [all...]
BaseHTTPServer.py 323 mname = 'do_' + self.command
324 if not hasattr(self, mname):
327 method = getattr(self, mname)
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 229 String mname = method.getName(); local
244 row("FN:" + method.getFirstLine() + "," + className + "::" + mname);
245 row("FNDA:" + (covered ? 1 : 0) + "," + className + "::" + mname);
  /libcore/ojluni/src/main/native/
PlainDatagramSocketImpl.c 1781 struct ip_mreqn mname; local
    [all...]

Completed in 493 milliseconds

1 2 3