test             5586 src/alloc.c      struct hash_table_test pure_test = table->test;
test             5589 src/alloc.c      pure_test.name = purecopy (table->test.name);
test             5590 src/alloc.c      pure_test.user_hash_function = purecopy (table->test.user_hash_function);
test             5591 src/alloc.c      pure_test.user_cmp_function = purecopy (table->test.user_cmp_function);
test             5605 src/alloc.c      pure->test = pure_test;
test             6897 src/alloc.c    		  mark_stack_push_value (h->test.name);
test             6898 src/alloc.c    		  mark_stack_push_value (h->test.user_hash_function);
test             6899 src/alloc.c    		  mark_stack_push_value (h->test.user_cmp_function);
test             1696 src/bytecode.c             if (h->count <= 5 && !h->test.cmpfn)
test              644 src/chartab.c  optimize_sub_char_table (Lisp_Object table, Lisp_Object test)
test              654 src/chartab.c        elt = optimize_sub_char_table (elt, test);
test              663 src/chartab.c  	  this = optimize_sub_char_table (this, test);
test              667 src/chartab.c  	  && (NILP (test) ? NILP (Fequal (this, elt)) /* defaults to `equal'. */
test              668 src/chartab.c  	      : EQ (test, Qeq) ? !EQ (this, elt)      /* Optimize `eq' case.  */
test              669 src/chartab.c  	      : NILP (call2 (test, this, elt))))
test              681 src/chartab.c    (Lisp_Object char_table, Lisp_Object test)
test              693 src/chartab.c  	  (char_table, i, optimize_sub_char_table (elt, test));
test             1108 src/comp.c     emit_cond_jump (gcc_jit_rvalue *test,
test             1111 src/comp.c       if (gcc_jit_rvalue_get_type (test) == comp.bool_type)
test             1114 src/comp.c     				      test,
test             1127 src/comp.c     				    test),
test             2331 src/comp.c           gcc_jit_rvalue *test = gcc_jit_context_new_comparison (
test             2337 src/comp.c           emit_cond_jump (test, target1, target2);
test              656 src/composite.c   Lisp_Object hash = h->test.hashfn (header, h);
test             2701 src/data.c       bool test;
test             2793 src/data.c           test = eq;
test             2797 src/data.c           test = !eq;
test             2801 src/data.c           test = lt;
test             2805 src/data.c           test = lt | eq;
test             2809 src/data.c           test = gt;
test             2813 src/data.c           test = gt | eq;
test             2820 src/data.c       return test ? Qt : Qnil;
test              207 src/doc.c            int test = 1;
test              211 src/doc.c            if (get_doc_string_buffer[offset - test] != '\037')
test              213 src/doc.c      	  if (get_doc_string_buffer[offset - test++] != ' ')
test              215 src/doc.c      	  while (get_doc_string_buffer[offset - test] >= '0'
test              216 src/doc.c      		 && get_doc_string_buffer[offset - test] <= '9')
test              217 src/doc.c      	    test++;
test              218 src/doc.c      	  if (get_doc_string_buffer[offset - test++] != '@'
test              219 src/doc.c      	      || get_doc_string_buffer[offset - test] != '#')
test              225 src/doc.c            int test = 1;
test              226 src/doc.c            if (get_doc_string_buffer[offset - test++] != '\n')
test              228 src/doc.c            while (get_doc_string_buffer[offset - test] > ' ')
test              229 src/doc.c      	test++;
test              230 src/doc.c            if (get_doc_string_buffer[offset - test] != '\037')
test             1040 src/eval.c       Lisp_Object test, body;
test             1042 src/eval.c       test = XCAR (args);
test             1044 src/eval.c       while (!NILP (eval_sub (test)))
test             4406 src/fns.c        Lisp_Object args[] = { h->test.user_cmp_function, key1, key2 };
test             4444 src/fns.c        Lisp_Object args[] = { h->test.user_hash_function, key };
test             4516 src/fns.c      make_hash_table (struct hash_table_test test, EMACS_INT size,
test             4525 src/fns.c        eassert (SYMBOLP (test.name));
test             4537 src/fns.c        h->test = test;
test             4672 src/fns.c            Lisp_Object hash_code = h->test.hashfn (key, h);
test             4695 src/fns.c        hash_code = h->test.hashfn (key, h);
test             4703 src/fns.c      	|| (h->test.cmpfn
test             4705 src/fns.c      	    && !NILP (h->test.cmpfn (key, HASH_KEY (h, i), h))))
test             4766 src/fns.c        Lisp_Object hash_code = h->test.hashfn (key, h);
test             4775 src/fns.c      	  || (h->test.cmpfn
test             4777 src/fns.c      	      && !NILP (h->test.cmpfn (key, HASH_KEY (h, i), h))))
test             5253 src/fns.c        Lisp_Object test, weak;
test             5266 src/fns.c        test = i ? args[i] : Qeql;
test             5267 src/fns.c        if (EQ (test, Qeq))
test             5269 src/fns.c        else if (EQ (test, Qeql))
test             5271 src/fns.c        else if (EQ (test, Qequal))
test             5278 src/fns.c            prop = Fget (test, Qhash_table_test);
test             5280 src/fns.c      	signal_error ("Invalid hash table test", test);
test             5281 src/fns.c            testdesc.name = test;
test             5403 src/fns.c        return check_hash_table (table)->test.name;
test             5509 src/fns.c        (Lisp_Object name, Lisp_Object test, Lisp_Object hash)
test             5511 src/fns.c        return Fput (name, Qhash_table_test, list2 (test, hash));
test             9930 src/keyboard.c                                       maybe we should just drop this test.  */
test             2471 src/lisp.h       struct hash_table_test test;
test             3181 src/lread.c      ADDPARAM (test);
test             2655 src/pdumper.c    if (h->test.hashfn == hashfn_user_defined)
test             2737 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.name, WEIGHT_STRONG);
test             2738 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.user_hash_function,
test             2740 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.user_cmp_function,
test             2742 src/pdumper.c    dump_field_emacs_ptr (ctx, out, hash, &hash->test.cmpfn);
test             2743 src/pdumper.c    dump_field_emacs_ptr (ctx, out, hash, &hash->test.hashfn);
test             2571 src/print.c    	    if (!NILP (h->test.name))
test             2574 src/print.c    		print_object (h->test.name, printcharfun, escapeflag);
test             3171 src/xfaces.c   	      Lisp_Object test = merge_face_heights (value,
test             3174 src/xfaces.c   	      if (!FIXNUMP (test) || XFIXNUM (test) <= 0)
test               40 test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp   nsp::childclass test;
test               42 test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp   test.// -1-
test               25 test/lisp/cedet/semantic-utest-ia-resources/testsppcomplete.c struct Test { int test; };
test               67 test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp     bread test;
test               68 test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp     test.//-2-
test             1871 test/manual/etags/c-src/emacs/src/lisp.h   struct hash_table_test test;
test               33 test/manual/etags/c-src/sysdep.h     test %eax, %eax;							      \
test                1 test/manual/etags/cp-src/burton.cpp ::dummy::dummy test::dummy1(void)
test                6 test/manual/etags/cp-src/burton.cpp ::dummy::dummy test::dummy2(::CORBA::Long dummy)
test               11 test/manual/etags/cp-src/burton.cpp ::dummy::dummy test::dummy3(char* name, ::CORBA::Long dummy)