Codase - Source Code Search Engine    Source Code Search Engine   Get free virtual computer from VMLite XP Mode   Searching 250 million lines of code    VMLite XP Mode Virtual Machine
 Method CallResults 1 - 10 of about 371 for g_n_elements . (0.16 seconds) 
  Also try: n_elementsnelementsnoelementselements
  1. ccanalyze.c    [Project: gimp]  [Language: c]  [LOC: 516]  
    static void
    query (void)
    {
    
                    ...
    N_("Colorcube A_nalysis..."), "RGB*, GRAY*, INDEXED*", GIMP_PLUGIN, G_N_ELEMENTS (args), G_N_ELEMENTS (return_vals), args, return_vals); gimp_plugin_menu_register ("plug_in_ccanalyze", "<Image>/Filters/Colors"); gimp_plugin_menu_register ("plug_in_ccanalyze", "<Image>/Layer/Colors/Info"); }

  2. functions.c    [Project: gnumeric]  [Language: c]  [LOC: 1270]  
    static GnmValue *
    gnumeric_index (FunctionEvalInfo *ei, GnmExprList *l)
    {
    
                    ...
    return value_new_error_VALUE (ei->pos); source = l->data; l = l->next; for (i = 0; l != NULL && i < G_N_ELEMENTS (elem) ; i++, l = l->next) { v = value_coerce_to_number ( gnm_expr_eval (l->data, ei->pos, GNM_EXPR_EVAL_SCALAR_NON_EMPTY), &valid, ei->pos);
                    ...
    value_release (v); return res; }

  3. faxg3.c    [Project: gimp]  [Language: c]  [LOC: 511]  
    void query (void)
    {
      static GimpParamDef load_args[] =
    
                    ...
    N_("G3 fax image"), NULL, GIMP_PLUGIN, G_N_ELEMENTS (load_args), G_N_ELEMENTS (load_return_vals), load_args, load_return_vals); gimp_register_file_handler_mime ("file_faxg3_load", "image/g3-fax"); gimp_register_magic_load_handler ("file_faxg3_load",
                    ...
    "", "0,short,0x0001,0,short,0x0014"); }

  4. gststructure.c    [Project: gstreamer]  [Language: c]  [LOC: 1551]  
    static GstStructureAbbreviation *
    gst_structure_get_abbrs (gint * n_abbrs)
    {
    
                    ...
    , {"s", G_TYPE_STRING} }; num = G_N_ELEMENTS (dyn_abbrs); /* permanently allocate and copy the array now */ abbrs = g_new0 (GstStructureAbbreviation, num); memcpy (abbrs, dyn_abbrs, sizeof (GstStructureAbbreviation) * num);
                    ...
    *n_abbrs = num; return abbrs; }

  5. cubism.c    [Project: gimp]  [Language: c]  [LOC: 866]  
    static void
    query (void)
    {
    
                    ...
    N_("_Cubism..."), "RGB*, GRAY*", GIMP_PLUGIN, G_N_ELEMENTS (args), 0, args, NULL); gimp_plugin_menu_register ("plug_in_cubism", "<Image>/Filters/Artistic"); }

  6. rb-debug.c    [Project: rhythmbox]  [Language: c]  [LOC: 226]  
    void
    rb_debug_init (gboolean debug)
    {
    
                    ...
    }; debugging = debug; if (debugging) for (i = 0; i < G_N_ELEMENTS (standard_log_domains); i++) g_log_set_handler (standard_log_domains[i], G_LOG_LEVEL_MASK, log_handler, NULL); rb_debug ("Debugging enabled"); }

  7. vinvert.c    [Project: gimp]  [Language: c]  [LOC: 211]  
    static void
    query (void)
    {
    
                    ...
    N_("_Value Invert"), "RGB*, INDEXED*", GIMP_PLUGIN, G_N_ELEMENTS (args), 0, args, NULL); gimp_plugin_menu_register ("plug_in_vinvert", "<Image>/Filters/Colors"); }

  8. loqui_app_actions.c    [Project: loqui]  [Language: c]  [LOC: 754]  
    GtkActionGroup *
    loqui_app_actions_create_group(LoquiApp *app)
    {
    
                    ...
    gtk_action_group_set_translate_func(action_group, gtkutils_menu_translate, NULL, NULL); gtk_action_group_add_actions(action_group, loqui_action_entries, G_N_ELEMENTS(loqui_action_entries), app); gtk_action_group_add_toggle_actions(action_group, loqui_toggle_action_entries, G_N_ELEMENTS(loqui_toggle_action_entries), app); gtk_action_group_add_radio_actions(action_group, loqui_nick_list_sort_radio_action_entries,
                    ...
    ACTION_GROUP_ACTION_SET_SENSITIVE(action_group, "FindAgain", FALSE); return action_group; }

  9. ole2extractor.c    [Project: libextractor]  [Language: c]  [LOC: 969]  
    static char const *
    msole_prop_id_to_gsf (GsfMSOleMetaDataSection *section, guint32 id)
    {
    
                    ...
    } if (section->type == GSF_MSOLE_META_DATA_COMPONENT) { map = component_props; i = G_N_ELEMENTS (component_props); } else if (section->type == GSF_MSOLE_META_DATA_DOCUMENT) { map = document_props; i = G_N_ELEMENTS (document_props); } while (i-- > 0) if (map[i].id == id) {
                    ...
    d (printf ("_UNKNOWN_(0x%x %d)", id, id);); return NULL; }

  10. vino-util.c    [Project: vino]  [Language: c]  [LOC: 215]  
    void
    vino_init_stock_items (void)
    {
    
                    ...
    return; factory = gtk_icon_factory_new (); gtk_icon_factory_add_default (factory); items = g_new (GtkStockItem, G_N_ELEMENTS (vino_stock_items)); for (i = 0; i < G_N_ELEMENTS (vino_stock_items); i++) { GtkIconSet *icon_set; items [i].stock_id = g_strdup (vino_stock_items [i].stock_id);
                    ...
    g_object_unref (factory); initialized = TRUE; }


Results Page  
Search By ProjectSearch By Language

What's New  |  Get Started  |  Add Project  |  Feedback  |  Recommend Us  |  About Codase

Copyright © 2009 Codase Inc.

Source Code Search Engine For Sample Code, Example Code, API and Tutorial