Searched defs:cons (Results 1 - 20 of 20) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dexample-typelist.cpp3 // A simple cons-style typelist
7 struct cons { struct
27 struct length<cons<Head, Tail> > {
36 typedef cons<unsigned char,
37 cons<unsigned short,
38 cons<unsigned int,
39 cons<unsigned long> > > > unsigned_inttypes;
54 typedef cons<typename reversed_tail::head,
55 typename reverse<cons<typename T::head, most_of_tail> >::type> type;
59 class reverse<cons<Hea
[all...]
/external/javassist/src/main/javassist/
H A DCtMember.java78 void addConstructor(CtMember cons) { argument
79 cons.next = consTail.next;
80 consTail.next = cons;
82 fieldTail = cons;
84 consTail = cons;
H A DCtClassType.java974 CtMember cons = memCache.consHead();
976 int cnum = CtMember.Cache.count(cons, consTail);
983 while (cons != consTail) {
984 cons = cons.next();
985 cb[i++] = (CtBehavior)cons;
998 CtMember cons = memCache.consHead();
1002 CtMember mem = cons;
1011 mem = cons;
1022 private static boolean isPubCons(CtConstructor cons) { argument
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DHeapSnapshotView.js74 cons: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
458 cons: ["constructorName", null],
783 data["cons"] = this.constructorName;
818 if ((columnIdentifier === "cons" && this._searchMatchedConsColumn) ||
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java650 Constructor cons = c.getConstructor(paramTypes);
651 return cons.newInstance(args);
947 Constructor[] cons = SecurityActions.getDeclaredConstructors(superClass);
950 for (int i = 0; i < cons.length; i++) {
951 Constructor c = cons[i];
1054 private static MethodInfo makeConstructor(String thisClassName, Constructor cons, argument
1056 String desc = RuntimeSupport.makeDescriptor(cons.getParameterTypes(),
1059 minfo.setAccessFlags(Modifier.PUBLIC); // cons.getModifiers() & ~Modifier.NATIVE
1060 setThrows(minfo, cp, cons.getExceptionTypes());
1082 int s = addLoadParameters(code, cons
[all...]
/external/v8/src/
H A Dexecution.cc731 Handle<JSFunction> cons = InstantiateFunction(cons_template, exc); local
733 Handle<Object> value = New(cons, 0, NULL, exc);
H A Dbootstrapper.cc1032 Handle<JSFunction> cons = factory->NewFunction(name, local
1034 { MaybeObject* result = cons->SetInstancePrototype(
1038 cons->SetInstanceClassName(*name);
1039 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED);
H A Dheap.cc1853 // When compacting forbid short-circuiting of cons-strings.
3026 // of the new cons string is too large.
3193 ConsString* cons = ConsString::cast(buffer); local
3194 ASSERT(cons->second()->length() == 0);
3195 sliced_string->set_parent(cons->first());
H A Dobjects.cc858 // cons string is in old space. It can never get GCed until there is
6000 ConsString* cons = ConsString::cast(string); local
6001 if (cons->second()->length() != 0) {
6004 string = cons->first();
6216 // the cons tree. The assignment on the left of the comma operator is
6233 // the cons tree.
6593 // the cons tree.
6604 // the cons tree.
6640 // Check for a flattened cons string
6750 // When repeatedly appending to a string, we get a cons strin
[all...]
/external/kernel-headers/original/linux/
H A Dserial_core.h237 struct console *cons; /* struct console, if any */ member in struct:uart_port
344 struct console *cons; member in struct:uart_driver
437 if (port->cons && port->cons->index == port->line) {
/external/mesa3d/src/glsl/
H A Dast.h254 cons(false)
262 cons(true)
269 return cons;
279 bool cons; member in class:ast_function_expression
/external/libxml2/
H A DxmlIO.c3542 int cons; /* byte from str consumed */ local
3558 cons = len;
3583 &chunk, str, &cons);
3589 if ((out->buffer->use < MINLEN) && (cons == len))
3604 &chunk, str, &cons);
3611 str += cons;
3612 len -= cons;
H A DHTMLparser.c3682 long cons = ctxt->nbChars; local
3750 if (cons == ctxt->nbChars) {
3995 long cons = ctxt->nbChars; local
4117 if (cons == ctxt->nbChars) {
4395 long cons = ctxt->nbChars; local
4531 if (cons == ctxt->nbChars) {
5568 long cons; local
5607 cons = ctxt->nbChars;
5719 if (cons == ctxt->nbChars) {
H A Dparser.c6478 unsigned int cons = ctxt->input->consumed; local
6495 if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
6792 unsigned int cons = ctxt->input->consumed; local
6810 if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
8027 unsigned int cons = ctxt->input->consumed; local
8039 if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
8215 unsigned int cons = ctxt->input->consumed; local
8281 if ((cons == ctxt->input->consumed) && (q == CUR_PTR) &&
8923 unsigned int cons = ctxt->input->consumed; local
9101 if ((cons
9480 unsigned int cons = ctxt->input->consumed; local
11062 unsigned int cons; local
[all...]
/external/qemu/
H A Dqemu-char.c280 int cons[MAX_MUX]; member in struct:__anon11624
421 while (d->prod[m] != d->cons[m] &&
425 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
435 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
453 if (d->prod[m] == d->cons[m] &&
/external/v8/test/cctest/
H A Dtest-api.cc212 v8::Handle<v8::FunctionTemplate> cons = v8::FunctionTemplate::New(); local
213 cons->SetClassName(v8_str("Cons"));
215 v8::Signature::New(v8::Handle<v8::FunctionTemplate>(), 1, &cons);
218 env->Global()->Set(v8_str("Cons"), cons->GetFunction());
7908 Local<Function> cons = templ->GetFunction(); local
7909 context->Global()->Set(v8_str("Fun"), cons);
7910 Local<v8::Object> inst = cons->NewInstance();
8116 Local<Function> cons = templ->GetFunction(); local
8117 context->Global()->Set(v8_str("Fun"), cons);
11934 "var cons
11945 Handle<String> cons = v8_compile("cons")->Run().As<String>(); local
14845 i::ConsString* cons = i::ConsString::cast(*string); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jar ... strs Class theClass java.lang.reflect.Constructor[] cons public void addSystemPackageRoot (java.lang.String) String packageRoot ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jar ... toString () public int getResultLength () public char[] getResultBuffer () private final boolean cons (int) int i private final int m () int n int ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 598 milliseconds