HomeSort by relevance Sort by last modified time
    Searched refs:STATIC (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/llvm/test/MC/PowerPC/
ppc64-initial-cfa.s 1 # RUN: llvm-mc -triple=powerpc64-unknown-linux-gnu -filetype=obj -relocation-model=static %s | \
2 # RUN: llvm-readobj -s -sr -sd | FileCheck %s -check-prefix=STATIC
10 # STATIC: Section {
11 # STATIC: Name: .eh_frame
12 # STATIC-NEXT: Type: SHT_PROGBITS
13 # STATIC-NEXT: Flags [ (0x2)
14 # STATIC-NEXT: SHF_ALLOC
15 # STATIC-NEXT: ]
16 # STATIC-NEXT: Address:
17 # STATIC-NEXT: Offset
    [all...]
  /system/core/sh/
nodes.c.pat 57 STATIC void calcsize(union node *);
58 STATIC void sizenodelist(struct nodelist *);
59 STATIC union node *copynode(union node *);
60 STATIC struct nodelist *copynodelist(struct nodelist *);
61 STATIC char *nodesavestr(char *);
85 STATIC void
94 STATIC void
107 STATIC union node *
118 STATIC struct nodelist *
140 STATIC char
    [all...]
shell.h 69 #define STATIC /* empty */
alias.c 38 static char sccsid[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
59 STATIC void setalias(char *, char *);
60 STATIC int unalias(char *);
61 STATIC struct alias **hashalias(char *);
63 STATIC
116 STATIC int
264 STATIC struct alias **
main.c 43 static char sccsid[] = "@(#)main.c 8.7 (Berkeley) 7/19/95";
81 STATIC union node *curcmd;
82 STATIC union node *prevcmd;
88 STATIC void read_profile(const char *);
89 STATIC char *find_dot_file(char *);
193 static int sigs[] = {
278 STATIC void
337 STATIC char *
cd.c 38 static char sccsid[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
69 STATIC int docd(char *, int);
70 STATIC char *getcomponent(void);
71 STATIC void updatepwd(char *);
72 STATIC void find_curdir(int noerror);
76 STATIC char *cdcomppath;
149 STATIC int
213 STATIC char *
241 STATIC void
343 static int first = 1
    [all...]
expand.c 38 static char sccsid[] = "@(#)expand.c 8.5 (Berkeley) 5/15/95";
94 STATIC void argstr(char *, int);
95 STATIC char *exptilde(char *, int);
96 STATIC void expbackq(union node *, int, int);
97 STATIC int subevalvar(char *, char *, int, int, int, int);
98 STATIC char *evalvar(char *, int);
99 STATIC int varisset(char *, int);
100 STATIC void varvalue(char *, int, int, int);
101 STATIC void recordregion(int, int, int);
102 STATIC void removerecordregions(int);
    [all...]
nodes.c 58 static const short nodesize[26] = {
88 STATIC void calcsize(union node *);
89 STATIC void sizenodelist(struct nodelist *);
90 STATIC union node *copynode(union node *);
91 STATIC struct nodelist *copynodelist(struct nodelist *);
92 STATIC char *nodesavestr(char *);
116 STATIC void
196 STATIC void
209 STATIC union node *
299 STATIC struct nodelist
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ModifierTest.java 24 private static final int ALL_FLAGS = 0x7FF;
120 assertTrue("STATIC returned false", Modifier.isStatic(ALL_FLAGS));
121 assertTrue("STATIC returned false", Modifier.isStatic(Modifier.STATIC));
122 assertTrue("Non-STATIC returned true", !Modifier
187 String modification = "public protected private abstract static final transient "
201 assertEquals(8, Modifier.STATIC);
214 static class StaticClazz {
247 public static class PublicStaticClazz {
250 protected static class ProtectedStaticClazz
    [all...]
  /external/e2fsprogs/intl/
printf-parse.h 68 #ifdef STATIC
69 STATIC
wprintf-parse.h 68 #ifdef STATIC
69 STATIC
eval-plural.h 19 #ifndef STATIC
20 #define STATIC static
24 STATIC
printf-args.h 130 #ifdef STATIC
131 STATIC
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 21 * This class provides static methods to decode class and member modifiers.
31 public static final int PUBLIC = 0x1;
36 public static final int PRIVATE = 0x2;
41 public static final int PROTECTED = 0x4;
44 * The {@code int} value representing the {@code static} modifier.
46 public static final int STATIC = 0x8;
51 public static final int FINAL = 0x10;
56 public static final int SYNCHRONIZED = 0x20;
61 public static final int VOLATILE = 0x40
    [all...]
  /external/libnfc-nxp/src/
phLibNfc_Ioctl.c 49 #define STATIC static
51 #define STATIC
58 STATIC phLibNfc_Ioctl_Cntx_t phLibNfc_Ioctl_Cntx;
61 *************************** Static Function Declaration ***********************
66 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context,
72 STATIC void phLibNfc_Switch_Swp_Mode_CB(
236 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context,
301 STATIC void phLibNfc_Switch_Swp_Mode_CB(
  /external/javassist/src/main/javassist/
Modifier.java 21 * The Modifier class provides static methods and constants to decode
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;
36 public static final int SYNCHRONIZED = AccessFlag.SYNCHRONIZED;
37 public static final int VOLATILE = AccessFlag.VOLATILE
    [all...]
CtNewNestedClass.java 32 * This method does not change the STATIC bit. The original value is kept.
35 mod = mod & ~Modifier.STATIC;
40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) {
50 int acc = ica.accessFlags(i) & AccessFlag.STATIC;
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 25 PUBLIC("public"), PRIVATE("private"), PROTECTED("protected"), STATIC(
26 "static"), FINAL("final"), SYNCHRONIZED("synchronized"), VOLATILE(
41 public static String toString(Set<Modifier> modifiers) {
  /external/bison/lib/
printf-args.h 24 STATIC Set to 'static' to declare the function static. */
151 #ifdef STATIC
152 STATIC
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
RegisterFormatter.java 53 public static void writeRegisterRange(IndentingWriter writer, CodeItem codeItem, int startRegister,
59 + (((codeItem.getParent().accessFlags & AccessFlags.STATIC.getValue())==0)?1:0);
89 public static void writeTo(IndentingWriter writer, CodeItem codeItem, int register) throws IOException {
92 + (((codeItem.getParent().accessFlags & AccessFlags.STATIC.getValue())==0)?1:0);
  /external/chromium_org/third_party/mesa/src/bin/
mklib 69 # Make static library with 'ar'
89 # make static lib
118 echo ' -static make a static library (default is dynamic/shared)'
142 STATIC=0
207 '-static')
208 STATIC=1
258 if [ $STATIC = 1 ]; then
264 echo "mklib: warning: ignoring $OBJ for static library"
364 elif [ $STATIC = 1 ] ; the
    [all...]
  /external/mesa3d/bin/
mklib 69 # Make static library with 'ar'
89 # make static lib
118 echo ' -static make a static library (default is dynamic/shared)'
142 STATIC=0
207 '-static')
208 STATIC=1
258 if [ $STATIC = 1 ]; then
264 echo "mklib: warning: ignoring $OBJ for static library"
364 elif [ $STATIC = 1 ] ; the
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 12 static final int REGS = 29;
13 static final int FROM = 26;
14 static final int DSIGNATURE = 19;
15 static final int SYNTHETIC = 56;
16 static final int OUTER = 34;
17 static final int DCLASS = 3;
18 static final int DVAR = 13;
19 static final int DECLARED_SYNCHRONIZED = 48;
20 static final int DSUPER = 10;
21 static final int SIGNATURE = 28
    [all...]
  /external/chromium_org/third_party/codesighs/
msmap.h 65 STATIC,
  /external/emma/ant/ant15/com/vladium/emma/ant/
IANTVersion.java 27 boolean ANT_1_5_PLUS = _ANTVersion._ANT_1_5_PLUS; // static final but not inlinable
32 static final boolean _ANT_1_5_PLUS; // set in <clinit>
36 static
46 if ((modifiers & Modifier.STATIC) != 0)

Completed in 389 milliseconds

1 2 3 4 5 6 7