HomeSort by: relevance | last modified time | path
    Searched defs:storage_class (Results 1 - 13 of 13) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
aggregate.h 75 StorageClass storage_class; member in class:AggregateDeclaration
declaration.h 116 StorageClass storage_class; member in class:Declaration
129 bool isStatic() const { return (storage_class & STCstatic) != 0; }
135 bool isFinal() const { return (storage_class & STCfinal) != 0; }
136 virtual bool isAbstract() { return (storage_class & STCabstract) != 0; }
137 bool isConst() const { return (storage_class & STCconst) != 0; }
138 bool isImmutable() const { return (storage_class & STCimmutable) != 0; }
139 bool isWild() const { return (storage_class & STCwild) != 0; }
140 bool isAuto() const { return (storage_class & STCauto) != 0; }
141 bool isScope() const { return (storage_class & STCscope) != 0; }
142 bool isSynchronized() const { return (storage_class & STCsynchronized) != 0;
    [all...]
  /src/external/gpl3/gcc.old/dist/libbacktrace/
pecoff.c 113 unsigned char storage_class; member in struct:__anon11606
301 isym->sc = sym->storage_class;
  /src/external/gpl3/gcc/dist/libbacktrace/
pecoff.c 125 unsigned char storage_class; member in struct:__anon1582
313 isym->sc = sym->storage_class;
  /src/external/gpl3/gdb/dist/libbacktrace/
pecoff.c 125 unsigned char storage_class; member in struct:__anon3924
313 isym->sc = sym->storage_class;
  /src/external/gpl3/gdb.old/dist/libbacktrace/
pecoff.c 125 unsigned char storage_class; member in struct:__anon6665
313 isym->sc = sym->storage_class;
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-tree.h 342 enum c_storage_class storage_class; member in struct:c_declspecs
c-decl.cc 4749 && declspecs->storage_class != csc_none)
4829 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
4835 if (current_scope == file_scope && declspecs->storage_class == csc_register)
4842 && declspecs->storage_class != csc_none)
4923 && specs->storage_class == csc_none
5260 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
5262 else if (declspecs->storage_class != csc_static)
6298 enum c_storage_class storage_class = declspecs->storage_class;
6521 || storage_class == csc_aut
6272 enum c_storage_class storage_class = declspecs->storage_class; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-tree.h 381 enum c_storage_class storage_class; member in struct:c_declspecs
c-decl.cc 5002 && declspecs->storage_class != csc_none)
5105 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
5111 if (current_scope == file_scope && declspecs->storage_class == csc_register)
5119 if (declspecs->storage_class != csc_none)
5150 && declspecs->storage_class != csc_none)
5231 && specs->storage_class == csc_none
5662 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
5664 else if (declspecs->storage_class != csc_static)
6414 enum c_storage_class storage_class = (scspecs
6415 ? scspecs->storage_class
6390 enum c_storage_class storage_class = (scspecs local
6759 enum c_storage_class storage_class = declspecs->storage_class; local
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 1612 def storage_class(self): member in class:Cursor
  /src/external/gpl3/gcc.old/dist/gcc/cp/
decl.cc 5403 else if (declspecs->storage_class)
10705 if (declspecs->storage_class == sc_extern)
10733 if (declspecs->storage_class == sc_extern)
10750 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
10760 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
11769 cp_storage_class storage_class;
12452 storage_class = declspecs->storage_class;
12453 if (storage_class == sc_static)
12468 storage_class = sc_none
11754 cp_storage_class storage_class; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
decl.cc 5731 else if (declspecs->storage_class)
11187 if (declspecs->storage_class == sc_extern)
11215 if (declspecs->storage_class == sc_extern)
11232 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
11243 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
12251 cp_storage_class storage_class;
12935 storage_class = declspecs->storage_class;
12936 if (storage_class == sc_static)
12951 storage_class = sc_none
12236 cp_storage_class storage_class; local
    [all...]

Completed in 66 milliseconds