test             5853 src/alloc.c      struct hash_table_test pure_test = table->test;
test             5856 src/alloc.c      pure_test.name = purecopy (table->test.name);
test             5857 src/alloc.c      pure_test.user_hash_function = purecopy (table->test.user_hash_function);
test             5858 src/alloc.c      pure_test.user_cmp_function = purecopy (table->test.user_cmp_function);
test             5872 src/alloc.c      pure->test = pure_test;
test             7215 src/alloc.c    		  mark_stack_push_value (h->test.name);
test             7216 src/alloc.c    		  mark_stack_push_value (h->test.user_hash_function);
test             7217 src/alloc.c    		  mark_stack_push_value (h->test.user_cmp_function);
test             1746 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             1110 src/comp.c     emit_cond_jump (gcc_jit_rvalue *test,
test             1113 src/comp.c       if (gcc_jit_rvalue_get_type (test) == comp.bool_type)
test             1116 src/comp.c     				      test,
test             1129 src/comp.c     				    test),
test             2333 src/comp.c           gcc_jit_rvalue *test = gcc_jit_context_new_comparison (
test             2339 src/comp.c           emit_cond_jump (test, target1, target2);
test              656 src/composite.c   Lisp_Object hash = h->test.hashfn (header, h);
test             2648 src/data.c       bool test;
test             2740 src/data.c           test = eq;
test             2744 src/data.c           test = !eq;
test             2748 src/data.c           test = lt;
test             2752 src/data.c           test = lt | eq;
test             2756 src/data.c           test = gt;
test             2760 src/data.c           test = gt | eq;
test             2767 src/data.c       return test ? Qt : Qnil;
test              260 src/doc.c            int test = 1;
test              264 src/doc.c            if (get_doc_string_buffer[offset - test] != '\037')
test              266 src/doc.c      	  if (get_doc_string_buffer[offset - test++] != ' ')
test              268 src/doc.c      	  while (get_doc_string_buffer[offset - test] >= '0'
test              269 src/doc.c      		 && get_doc_string_buffer[offset - test] <= '9')
test              270 src/doc.c      	    test++;
test              271 src/doc.c      	  if (get_doc_string_buffer[offset - test++] != '@'
test              272 src/doc.c      	      || get_doc_string_buffer[offset - test] != '#')
test              278 src/doc.c            int test = 1;
test              279 src/doc.c            if (get_doc_string_buffer[offset - test++] != '\n')
test              281 src/doc.c            while (get_doc_string_buffer[offset - test] > ' ')
test              282 src/doc.c      	test++;
test              283 src/doc.c            if (get_doc_string_buffer[offset - test] != '\037')
test             1052 src/eval.c       Lisp_Object test, body;
test             1054 src/eval.c       test = XCAR (args);
test             1056 src/eval.c       while (!NILP (eval_sub (test)))
test             4443 src/fns.c        Lisp_Object args[] = { h->test.user_cmp_function, key1, key2 };
test             4481 src/fns.c        Lisp_Object args[] = { h->test.user_hash_function, key };
test             4553 src/fns.c      make_hash_table (struct hash_table_test test, EMACS_INT size,
test             4562 src/fns.c        eassert (SYMBOLP (test.name));
test             4574 src/fns.c        h->test = test;
test             4709 src/fns.c            Lisp_Object hash_code = h->test.hashfn (key, h);
test             4732 src/fns.c        hash_code = h->test.hashfn (key, h);
test             4740 src/fns.c      	|| (h->test.cmpfn
test             4742 src/fns.c      	    && !NILP (h->test.cmpfn (key, HASH_KEY (h, i), h))))
test             4803 src/fns.c        Lisp_Object hash_code = h->test.hashfn (key, h);
test             4812 src/fns.c      	  || (h->test.cmpfn
test             4814 src/fns.c      	      && !NILP (h->test.cmpfn (key, HASH_KEY (h, i), h))))
test             5290 src/fns.c        Lisp_Object test, weak;
test             5303 src/fns.c        test = i ? args[i] : Qeql;
test             5304 src/fns.c        if (EQ (test, Qeq))
test             5306 src/fns.c        else if (EQ (test, Qeql))
test             5308 src/fns.c        else if (EQ (test, Qequal))
test             5315 src/fns.c            prop = Fget (test, Qhash_table_test);
test             5317 src/fns.c      	signal_error ("Invalid hash table test", test);
test             5318 src/fns.c            testdesc.name = test;
test             5440 src/fns.c        return check_hash_table (table)->test.name;
test             5546 src/fns.c        (Lisp_Object name, Lisp_Object test, Lisp_Object hash)
test             5548 src/fns.c        return Fput (name, Qhash_table_test, list2 (test, hash));
test             10389 src/keyboard.c                                       maybe we should just drop this test.  */
test             2467 src/lisp.h       struct hash_table_test test;
test             3430 src/lread.c      ADDPARAM (test);
test             2654 src/pdumper.c    if (h->test.hashfn == hashfn_user_defined)
test             2736 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.name, WEIGHT_STRONG);
test             2737 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.user_hash_function,
test             2739 src/pdumper.c    dump_field_lv (ctx, out, hash, &hash->test.user_cmp_function,
test             2741 src/pdumper.c    dump_field_emacs_ptr (ctx, out, hash, &hash->test.cmpfn);
test             2742 src/pdumper.c    dump_field_emacs_ptr (ctx, out, hash, &hash->test.hashfn);
test             2576 src/print.c    	    if (!NILP (h->test.name))
test             2579 src/print.c    		print_object (h->test.name, printcharfun, escapeflag);
test             15809 src/sfnt.c     sfnt_run_interpreter_test (struct sfnt_interpreter_test *test,
test             15812 src/sfnt.c       fprintf (stderr, "Testing %s: ", test->name);
test             15815 src/sfnt.c         test->check (interpreter, test->arg, true);
test             15820 src/sfnt.c           interpreter->instructions = test->instructions;
test             15821 src/sfnt.c           interpreter->num_instructions = test->num_instructions;
test             15824 src/sfnt.c           test->check (interpreter, test->arg, false);
test             3208 src/xfaces.c   	      Lisp_Object test = merge_face_heights (value,
test             3211 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)