HomeSort by relevance Sort by last modified time
    Searched defs:PUBLIC (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/chromium_org/tools/gyp/test/win/linker-flags/
safeseh_zero.asm 4 PUBLIC zero
  /external/chromium_org/tools/gyp/test/win/ml-safeseh/
a.asm 4 PUBLIC zero
  /cts/tools/signature-tools/src/signature/converter/
Visibility.java 23 * <li><code>PUBLIC</code> only the public classes and members are included.
24 * <li><code>PROTECTED</code> the public and protected classes members are
26 * <li><code>PACKAGE</code> the public, protected and package visible classes
34 public enum Visibility {
35 PUBLIC, PROTECTED, PACKAGE, PRIVATE;
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
u_compiler.h 31 #ifndef PUBLIC
33 # define PUBLIC __attribute__((visibility("default")))
35 # define PUBLIC __declspec(dllexport)
37 # define PUBLIC
  /external/mesa3d/src/mapi/mapi/
u_compiler.h 31 #ifndef PUBLIC
33 # define PUBLIC __attribute__((visibility("default")))
35 # define PUBLIC __declspec(dllexport)
37 # define PUBLIC
  /libcore/luni/src/main/java/java/lang/reflect/
Member.java 27 public interface Member {
30 * Designates all public members of a class or interface (including
33 public static final int PUBLIC = 0;
39 public static final int DECLARED = 1;
  /external/proguard/src/proguard/classfile/util/
AccessUtil.java 8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
29 * <code>PACKAGE_VISIBLE</code>, <code>PROTECTED</code>, and <code>PUBLIC</code>.
33 public class AccessUtil
35 public static final int PRIVATE = 0;
36 public static final int PACKAGE_VISIBLE = 1;
37 public static final int PROTECTED = 2;
38 public static final int PUBLIC = 3
    [all...]
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 24 public enum Modifier {
25 PUBLIC("public"), PRIVATE("private"), PROTECTED("protected"), STATIC(
37 public String toString() {
41 public static String toString(Set<Modifier> modifiers) {
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglcompiler.h 97 #ifndef PUBLIC
99 # define PUBLIC __attribute__((visibility("default")))
101 # define PUBLIC __declspec(dllexport)
103 # define PUBLIC
  /external/mesa3d/src/egl/main/
eglcompiler.h 97 #ifndef PUBLIC
99 # define PUBLIC __attribute__((visibility("default")))
101 # define PUBLIC __declspec(dllexport)
103 # define PUBLIC
  /libcore/luni/src/main/java/java/security/
KeyRep.java 34 public class KeyRep implements Serializable {
64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) {
93 * <li> {@code Type.PUBLIC} | "X.509": returns a {@link PublicKey} instance,
115 case PUBLIC:
157 public static enum Type {
163 * Type for public keys.
165 PUBLIC,
  /art/dalvikvm/
dalvikvm.cc 31 // Determine whether or not the specified method is public.
51 static const int PUBLIC = 0x0001; // java.lang.reflect.Modifiers.PUBLIC
52 if ((modifiers & PUBLIC) == 0) {
88 // Make sure the method is public. JNI doesn't prevent us from
91 fprintf(stderr, "Sorry, main() is not public in '%s'\n", class_name.c_str());
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_compiler.h 152 #ifndef PUBLIC
154 # define PUBLIC __attribute__((visibility("default")))
156 # define PUBLIC __declspec(dllexport)
158 # define PUBLIC
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 152 #ifndef PUBLIC
154 # define PUBLIC __attribute__((visibility("default")))
156 # define PUBLIC __declspec(dllexport)
158 # define PUBLIC
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 38 public class VisibilityMetadataFragment extends Fragment {
64 public static VisibilityMetadataFragment newInstance() {
70 public VisibilityMetadataFragment() {
71 // Required empty public constructor
75 public void onCreate(Bundle savedInstanceState) {
82 public View onCreateView(LayoutInflater inflater, ViewGroup container,
89 public void onViewCreated(View view, Bundle savedInstanceState) {
94 public void onClick(View view) {
132 return NotificationVisibility.PUBLIC;
138 //If not selected, returns PUBLIC as default
    [all...]
  /developers/samples/android/ui/notifications/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 38 public class VisibilityMetadataFragment extends Fragment {
64 public static VisibilityMetadataFragment newInstance() {
70 public VisibilityMetadataFragment() {
71 // Required empty public constructor
75 public void onCreate(Bundle savedInstanceState) {
82 public View onCreateView(LayoutInflater inflater, ViewGroup container,
89 public void onViewCreated(View view, Bundle savedInstanceState) {
94 public void onClick(View view) {
132 return NotificationVisibility.PUBLIC;
138 //If not selected, returns PUBLIC as default
    [all...]
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
VisibilityMetadataFragment.java 38 public class VisibilityMetadataFragment extends Fragment {
64 public static VisibilityMetadataFragment newInstance() {
70 public VisibilityMetadataFragment() {
71 // Required empty public constructor
75 public void onCreate(Bundle savedInstanceState) {
82 public View onCreateView(LayoutInflater inflater, ViewGroup container,
89 public void onViewCreated(View view, Bundle savedInstanceState) {
94 public void onClick(View view) {
132 return NotificationVisibility.PUBLIC;
138 //If not selected, returns PUBLIC as default
    [all...]
  /external/javassist/src/main/javassist/
Modifier.java 5 * The contents of this file are subject to the Mozilla Public License Version
8 * the terms of the GNU Lesser General Public License Version 2.1 or later.
30 public class Modifier {
31 public static final int PUBLIC = AccessFlag.PUBLIC;
32 public static final int PRIVATE = AccessFlag.PRIVATE;
33 public static final int PROTECTED = AccessFlag.PROTECTED;
34 public static final int STATIC = AccessFlag.STATIC;
35 public static final int FINAL = AccessFlag.FINAL
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 5 * The contents of this file are subject to the Mozilla Public License Version
8 * the terms of the GNU Lesser General Public License Version 2.1 or later.
20 * for access modifiers such as public, rivate, ...
22 public class AccessFlag {
23 public static final int PUBLIC = 0x0001;
24 public static final int PRIVATE = 0x0002;
25 public static final int PROTECTED = 0x0004;
26 public static final int STATIC = 0x0008;
27 public static final int FINAL = 0x0010
    [all...]
  /external/libpcap/msdos/
pkt_rx0.asm 9 PUBLIC _pktDrop, _pktRxBuf, _pktTxBuf, _pktTemp
10 PUBLIC _rxOutOfs, _rxInOfs, _PktReceiver, _pktRxEnd
22 _TEXT SEGMENT PUBLIC DWORD USE16 'CODE'
24 _DATA SEGMENT PUBLIC DWORD USE16 'CODE'
32 _TEXT SEGMENT PUBLIC DWORD 'CODE'
34 _DATA SEGMENT PUBLIC DWORD 'DATA'
  /hardware/intel/common/libva/va/x11/
va_dri.c 47 #define PUBLIC
87 * public XFree86-DRI Extension routines *
99 PUBLIC Bool VA_DRIQueryExtension (dpy, event_basep, error_basep)
117 PUBLIC Bool VA_DRIQueryVersion(dpy, majorVersion, minorVersion, patchVersion)
149 PUBLIC Bool VA_DRIQueryDirectRenderingCapable(dpy, screen, isCapable)
179 PUBLIC Bool VA_DRIOpenConnection(dpy, screen, hSAREA, busIdString)
228 PUBLIC Bool VA_DRIAuthConnection(dpy, screen, magic)
259 PUBLIC Bool VA_DRICloseConnection(dpy, screen)
281 PUBLIC Bool VA_DRIGetClientDriverName(dpy, screen, ddxDriverMajorVersion,
331 PUBLIC Bool VA_DRICreateContextWithConfig(dpy, screen, configID, context
    [all...]
  /external/chromium_org/third_party/codesighs/
msmap.h 6 * The contents of this file are subject to the Mozilla Public License Version
28 * either the GNU General Public License Version 2 or later (the "GPL"), or
29 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
64 PUBLIC,
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h 144 * PUBLIC/USED macros
147 * use the PUBLIC macro to mark functions that are to be exported.
152 #ifndef PUBLIC
154 # define PUBLIC __attribute__((visibility("default")))
157 # define PUBLIC
  /external/mesa3d/src/mesa/main/
compiler.h 144 * PUBLIC/USED macros
147 * use the PUBLIC macro to mark functions that are to be exported.
152 #ifndef PUBLIC
154 # define PUBLIC __attribute__((visibility("default")))
157 # define PUBLIC
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AccessFlags.java 36 public enum AccessFlags
38 PUBLIC(0x1, "public", true, true, true),
87 public boolean isSet(int accessFlags) {
91 public static AccessFlags[] getAccessFlagsForClass(int accessFlagValue) {
126 public static String formatAccessFlagsForClass(int accessFlagValue) {
130 public static AccessFlags[] getAccessFlagsForMethod(int accessFlagValue) {
148 public static String formatAccessFlagsForMethod(int accessFlagValue) {
152 public static AccessFlags[] getAccessFlagsForField(int accessFlagValue) {
170 public static String formatAccessFlagsForField(int accessFlagValue)
    [all...]

Completed in 3227 milliseconds

1 2 3 4