HomeSort by relevance Sort by last modified time
    Searched refs:cons (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/chromium_org/v8/test/mjsunit/
string-externalize.js 35 // Build an ascii cons string.
54 // still produce an ascii cons.
75 // Appending a real two-byte string should produce a two-byte cons.
string-replace-one-char.js 72 // Deep cons tree.
85 // Sliced string as input. A cons string is always flattened before sliced.
string-slices-regexp.js 52 // The first time, the cons string will be flattened and handled by the
55 // The second time, the cons string is already flattened and will be
deep-recursion.js 29 * @fileoverview Check that flattening deep trees of cons strings does not
field-type-tracking.js 99 x.a = 1 + "Long string that results in a cons string";
regexp-capture-3.js 140 var cons = base + base + base + base; variable
141 no_last_match(function() { cons.replace("x", "y"); });
142 no_last_match(function() { cons.replace("e", "E"); });
  /external/clang/utils/
clang-completion-mode.el 24 ;; (setq load-path (cons "~/.emacs.d" load-path))
222 (cons (cons 'clang-completion-mode clang-completion-mode-map)
  /external/chromium_org/v8/test/mjsunit/regress/
regress-298269.js 38 var s1 = "long string to make cons string 1";
39 var s2 = "long string to make cons string 2";
  /external/protobuf/editors/
protobuf-mode.el 188 (cons "Protocol Buffers" (c-lang-const c-mode-menu protobuf)))
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk 353 $(call gen-test, containers/associative/map/map.cons/alloc)
354 $(call gen-test, containers/associative/map/map.cons/assign_initializer_list)
355 $(call gen-test, containers/associative/map/map.cons/compare_alloc)
356 $(call gen-test, containers/associative/map/map.cons/compare)
357 $(call gen-test, containers/associative/map/map.cons/copy_alloc)
358 $(call gen-test, containers/associative/map/map.cons/copy_assign)
359 $(call gen-test, containers/associative/map/map.cons/copy)
360 $(call gen-test, containers/associative/map/map.cons/default_noexcept)
361 $(call gen-test, containers/associative/map/map.cons/default)
362 $(call gen-test, containers/associative/map/map.cons/default_recursive
    [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk 344 $(call gen-test, containers/associative/map/map.cons/alloc)
345 $(call gen-test, containers/associative/map/map.cons/assign_initializer_list)
346 $(call gen-test, containers/associative/map/map.cons/compare_alloc)
347 $(call gen-test, containers/associative/map/map.cons/compare)
348 $(call gen-test, containers/associative/map/map.cons/copy_alloc)
349 $(call gen-test, containers/associative/map/map.cons/copy_assign)
350 $(call gen-test, containers/associative/map/map.cons/copy)
351 $(call gen-test, containers/associative/map/map.cons/default_noexcept)
352 $(call gen-test, containers/associative/map/map.cons/default)
353 $(call gen-test, containers/associative/map/map.cons/default_recursive
    [all...]
  /external/javassist/src/main/javassist/compiler/
Javac.java 151 CtConstructor cons = new CtConstructor(plist, local
153 cons.setModifiers(mod);
155 cons.getMethodInfo().setCodeAttribute(
157 cons.setExceptionTypes(tlist);
158 return cons;
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 564 Constructor<?> cons = stackLoggerClass local
567 StackLogger stackLogger = (StackLogger) cons.newInstance(args);
593 Constructor<?> cons = serverLoggerClass local
596 this.serverLogger = (ServerLogger) cons.newInstance(args);
631 Constructor<?> cons = routerClass.getConstructor(constructorArgs); local
635 Router router = (Router) cons.newInstance(args);
    [all...]
  /art/test/031-class-attributes/src/
ClassAttrs.java 117 Constructor cons; local
118 cons = MemberClass.class.getConstructor(
121 + getSignatureAttribute(cons));
  /art/test/044-proxy/src/
BasicTest.java 107 Constructor<Class> cons; local
108 cons = proxyClass.getConstructor(
110 //System.out.println("Constructor is " + cons);
111 proxy = cons.newInstance(new Object[] { handler });
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclrun.swg 512 swig_wrapper cons = 0;
522 cons = classptr->constructor;
527 cons = 0;
539 cons = 0;
545 if (cons) {
547 result = (*cons)(0, interp, objc-firstarg, &objv[firstarg]);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast.h 267 cons(false)
275 cons(true)
282 return cons;
292 bool cons; member in class:ast_function_expression
  /external/mesa3d/src/glsl/
ast.h 267 cons(false)
275 cons(true)
282 return cons;
292 bool cons; member in class:ast_function_expression
  /prebuilts/misc/common/swig/include/2.0.11/cffi/
cffi.swg 174 (cl:t (cl:cons c rest)))))
176 (helper (cl:cdr lst) 'lower (cl:cons (cl:char-upcase c) rest)))
181 (cl:t (cl:cons c rest)))))
183 (helper (cl:cdr lst) '_ (cl:cons #\- rest)))
  /external/chromium_org/v8/test/mjsunit/es6/
iteration-semantics.js 80 function fold(cons, seed, iterable) {
82 seed = cons(x, seed);
115 function nested_fold(cons, seed, iterable) {
119 seed = cons(y, seed);
  /external/javassist/src/main/javassist/tools/rmi/
ObjectImporter.java 190 Constructor cons = c.getConstructor(proxyConstructorParamTypes); local
191 return cons.newInstance(new Object[] { this, new Integer(oid) });
StubGenerator.java 154 CtConstructor cons local
157 proxy.addConstructor(cons);
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 650 Constructor cons = c.getConstructor(paramTypes); local
651 return cons.newInstance(args);
947 Constructor[] cons = SecurityActions.getDeclaredConstructors(superClass); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 452 Constructor<?> cons = clazz.getConstructor((Class[])null); local
453 SIPHeaderList<HDR> retval = (SIPHeaderList<HDR>) cons.newInstance((Object[])null);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 462 Constructor<?> cons = tcvClass.getConstructor(pw.getClass()); local
463 Object tcv = cons.newInstance(pw);

Completed in 710 milliseconds

1 2 34 5 6 7