HomeSort by relevance Sort by last modified time
    Searched full:static (Results 501 - 525 of 47082) sorted by null

<<21222324252627282930>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
loop1.cpp 7 static void bar(char *);
9 static void foo(unsigned long element_count, char *ptr)
22 static void bar(char *)
  /ndk/tests/device/test-stlport_static-exception/jni/
loop1.cpp 7 static void bar(char *);
9 static void foo(unsigned long element_count, char *ptr)
22 static void bar(char *)
  /frameworks/base/core/java/android/net/http/
Headers.java 36 private static final String LOGTAG = "Http";
42 public final static int CONN_CLOSE = 1;
46 public final static int CONN_KEEP_ALIVE = 2;
49 public final static int NO_CONN_TYPE = 0;
50 public final static long NO_TRANSFER_ENCODING = 0;
51 public final static long NO_CONTENT_LENGTH = -1;
54 public final static String TRANSFER_ENCODING = "transfer-encoding";
55 public final static String CONTENT_LEN = "content-length";
56 public final static String CONTENT_TYPE = "content-type";
57 public final static String CONTENT_ENCODING = "content-encoding"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLTErrorResources.java 80 * Static variables
82 public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX =
85 public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT =
88 public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE";
89 public static final String ER_FUNCTION_NOT_SUPPORTED = "ER_FUNCTION_NOT_SUPPORTED";
90 public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE";
91 public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS";
92 public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD";
93 public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES="ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES";
94 public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB"
    [all...]
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_StaticNonce.c 28 // public static native void nop();
29 static void StaticNonce_nop(JNIEnv *env, jclass clazz) {
33 // public static native boolean returnBoolean();
34 static jboolean StaticNonce_returnBoolean(JNIEnv *env, jclass clazz) {
38 // public static native byte returnByte();
39 static jbyte StaticNonce_returnByte(JNIEnv *env, jclass clazz) {
43 // public static native short returnShort();
44 static jshort StaticNonce_returnShort(JNIEnv *env, jclass clazz) {
48 // public static native char returnChar();
49 static jchar StaticNonce_returnChar(JNIEnv *env, jclass clazz)
    [all...]
  /dalvik/tests/004-annotations/src/
Main.java 4 static public void main(String[] args) {
  /dalvik/tests/024-illegal-access/src/
SemiPrivate.java 7 /* not private */ static String mPrivvy = "stuff";
  /dalvik/tests/024-illegal-access/src2/
SemiPrivate.java 7 private static String mPrivvy = "stuff";
  /dalvik/vm/native/
java_lang_Math.cpp 20 static void Math_absD(const u4* args, JValue* pResult)
25 static void Math_absF(const u4* args, JValue* pResult)
30 static void Math_absI(const u4* args, JValue* pResult)
35 static void Math_absJ(const u4* args, JValue* pResult)
40 static void Math_cos(const u4* args, JValue* pResult)
45 static void Math_maxI(const u4* args, JValue* pResult)
50 static void Math_minI(const u4* args, JValue* pResult)
55 static void Math_sin(const u4* args, JValue* pResult)
60 static void Math_sqrt(const u4* args, JValue* pResult)
  /device/generic/goldfish/camera/fake-pipeline2/
Scene.h 136 static const float kHorizShakeFreq1;
137 static const float kHorizShakeFreq2;
138 static const float kVertShakeFreq1;
139 static const float kVertShakeFreq2;
140 static const float kFreq1Magnitude;
141 static const float kFreq2Magnitude;
143 static const float kShakeFraction;
146 static const float kRgb2Yuv[12];
149 static const float kAperture;
153 static const uint32_t kTimeStep = 2
    [all...]
  /external/clang/test/ASTMerge/Inputs/
function2.c 6 static void f4(float, float);
  /external/clang/test/CXX/class/class.static/class.static.data/
p4.cpp 3 static const int i = 0;
8 static const int i;
13 static const int i = 0; // expected-note{{previous definition is here}}
18 static const int i = 0; // expected-note{{previous definition is here}}
  /external/clang/test/CodeGen/
2009-06-14-HighlyAligned.c 4 static int highly_aligned __attribute__((aligned(4096)));
attr-weakref.c 6 static void test1_g(void) __attribute__((weakref("test1_f")));
13 static void test2_g(void) __attribute__((weakref("test2_f")));
20 static void test3_g(void) __attribute__((weakref("test3_f")));
30 static void test4_g(void) __attribute__((weakref("test4_f")));
38 static void test5_g(void) __attribute__((weakref("test5_f")));
48 static void test6_g(void) __attribute__((weakref("test6_f")));
57 static void test8_g(void) __attribute__((weakref("test8_f")));
64 static void test7_g(void) __attribute__((weakref("test7_f")));
65 static void *const test7_zed = (void *) &test7_g;
empty-union-init.c 10 static const struct Mem nullMem = { {} };
static-local-union.c 3 int a() {static union{int a;} r[2] = {1,2};return r[1].a;}
  /external/clang/test/PCH/
external-defs.h 8 static int z;
  /external/clang/test/Parser/
namespace-alias-attr.cpp 7 namespace B __attribute__ (( static )) = A; // expected-error{{attributes can not be specified on namespace alias}}
  /external/clang/test/Sema/
inline.c 8 // Check the use of static variables in non-static inline functions.
9 static int staticVar; // expected-note + {{'staticVar' declared here}}
10 static int staticFunction(); // expected-note + {{'staticFunction' declared here}}
11 static struct { int x; } staticStruct; // expected-note + {{'staticStruct' declared here}}
13 inline int useStatic () { // expected-note 3 {{use 'static' to give inline function 'useStatic' internal linkage}}
14 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
15 (void)staticStruct.x; // expected-warning{{static variable 'staticStruct' is used in an inline function with external linkage}}
16 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
20 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}
    [all...]
tentative-decls.c 5 static struct a x2; // expected-warning{{tentative definition of variable with internal linkage has incomplete non-array type 'struct a'}}
8 static struct a x2_okay;
27 static int i5; // expected-error{{static declaration of 'i5' follows non-static declaration}}
29 static int i2 = 5; // expected-note 1 {{previous definition is here}}
30 int i2 = 3; // expected-error{{non-static declaration of 'i2' follows static declaration}}
32 static int i3 = 5;
53 static int i6; // expected-error{{static declaration of 'i6' follows non-static declaration}
    [all...]
warn-missing-variable-declarations.c 3 int vbad1; // expected-warning{{no previous extern declaration for non-static variable 'vbad1'}}
6 int vbad2 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad2'}}
10 } vbad3; // expected-warning{{no previous extern declaration for non-static variable 'vbad3'}}
13 int vbad4 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad4'}}
  /external/emma/core/java12/com/vladium/jcd/cls/
IAccessFlags.java 20 static final int ACC_PUBLIC = 0x0001;
21 static final int ACC_PRIVATE = 0x0002;
22 static final int ACC_PROTECTED = 0x0004;
23 static final int ACC_STATIC = 0x0008;
24 static final int ACC_FINAL = 0x0010;
25 static final int ACC_SYNCHRONIZED = 0x0020;
26 static final int ACC_SUPER = 0x0020; // same bit value as ACC_SYNCHRONIZED
27 static final int ACC_VOLATILE = 0x0040;
28 static final int ACC_BRIDGE = 0x0040; // same bit value as ACC_VOLATILE
29 static final int ACC_TRANSIENT = 0x0080
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
AttribTypes.java 22 public static final int SSH_FILEXFER_TYPE_REGULAR = 1;
23 public static final int SSH_FILEXFER_TYPE_DIRECTORY = 2;
24 public static final int SSH_FILEXFER_TYPE_SYMLINK = 3;
25 public static final int SSH_FILEXFER_TYPE_SPECIAL = 4;
26 public static final int SSH_FILEXFER_TYPE_UNKNOWN = 5;
27 public static final int SSH_FILEXFER_TYPE_SOCKET = 6;
28 public static final int SSH_FILEXFER_TYPE_CHAR_DEVICE = 7;
29 public static final int SSH_FILEXFER_TYPE_BLOCK_DEVICE = 8;
30 public static final int SSH_FILEXFER_TYPE_FIFO = 9;
  /external/icu4c/i18n/
smpdtfst.h 31 static SimpleDateFormatStaticSets *gStaticSets; // Ptr to all lazily initialized constant
37 static void initSets(UErrorCode *status);
38 static UBool cleanup();
40 static UnicodeSet *getIgnorables(UDateFormatField fieldIndex);
  /external/iproute2/include/
dlfcn.h 13 static inline void *dlopen(const char *file, int flag)
22 static inline void *dlsym(void *handle, const char *sym)
29 static inline char *dlerror(void)
34 static inline int dlclose(void *handle)

Completed in 430 milliseconds

<<21222324252627282930>>