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

<<71727374757677787980>>

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p4.cpp 32 static const auto n = 'x';
34 auto m = 0; // expected-error {{'auto' not allowed in non-static class member}}
38 static const auto a; // expected-error {{declaration of variable 'a' with type 'auto const' requires an initializer}}
39 static const auto b = 0;
40 static const int c;
  /external/clang/test/CXX/expr/expr.unary/expr.unary.op/
p4.cpp 18 static void f(void (A::*)());
19 static void f(void (*)(int));
21 static void g(int);
32 static int foo(short);
33 static int foo(float);
  /external/clang/test/CodeGen/
annotations-builtin.c 4 static long long llfoo;
5 static int intfoo;
6 static short shortfoo;
7 static char charfoo;
12 static int foo(int a) {
  /external/clang/test/Driver/
darwin-as.c 2 // RUN: -no-integrated-as -static -dynamic 2>%t
5 // CHECK-STATIC_AND_DYNAMIC-32: as{{(.exe)?}}" "-arch" "i386" "-force_cpusubtype_ALL" "-static" "-o"
8 // RUN: -no-integrated-as -static 2>%t
9 // RUN: FileCheck -check-prefix=STATIC-64 --input-file %t %s
11 // CHECK-STATIC-64: as{{(.exe)?}}" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o"
  /external/clang/test/SemaCXX/
address-of.cpp 8 static int svar;
14 static void wibble() {
15 bar(&var); // expected-error{{invalid use of member 'var' in static member function}}
38 static int foo(short);
39 static int foo(float);
attr-weak.cpp 3 static int test0 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
4 static void test1() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
15 static void test5() __attribute__((weak)); // no error
20 static void test6() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
30 static int var __attribute__((weak));
warn-shadow.cpp 31 static int data; // expected-note {{previous declaration}}
36 char *data; // expected-warning {{declaration shadows a static data member of 'A'}}
43 static int field;
49 static void Baz();
66 static void m() {
  /external/eigen/bench/btl/libs/mtl4/
mtl4_interface.hh 41 static inline std::string name() { return "mtl4"; }
43 static void free_matrix(gene_matrix & A, int N){
47 static void free_vector(gene_vector & B){
51 static inline void matrix_from_stl(gene_matrix & A, stl_matrix & A_stl){
61 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){
68 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){
74 static inline void matrix_to_stl(gene_matrix & A, stl_matrix & A_stl){
84 static inline void matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){
91 static inline void transposed_matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){
95 // static inline void ata_product(const gene_matrix & A, gene_matrix & X, int N)
    [all...]
  /external/eigen/bench/btl/libs/ublas/
ublas_interface.hh 43 static inline std::string name( void ) { return "ublas"; }
45 static void free_matrix(gene_matrix & A, int N) {}
47 static void free_vector(gene_vector & B) {}
49 static inline void matrix_from_stl(gene_matrix & A, stl_matrix & A_stl){
56 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){
62 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){
67 static inline void matrix_to_stl(gene_matrix & A, stl_matrix & A_stl){
77 static inline void copy_vector(const gene_vector & source, gene_vector & cible, int N){
83 static inline void copy_matrix(const gene_matrix & source, gene_matrix & cible, int N){
91 static inline void matrix_vector_product_slow(gene_matrix & A, gene_vector & B, gene_vector & X, int N)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Platform.java 28 static <T> T[] clone(T[] array) {
33 static void unsafeArrayCopy(
40 static <T> T[] newArray(Class<T> type, int length) {
45 static <T> T[] newArray(T[] reference, int length) {
49 static MapMaker tryWeakKeys(MapMaker mapMaker) {
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 13 public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) {
23 public static <T> org.hamcrest.Matcher<T> is(T value) {
33 public static org.hamcrest.Matcher<java.lang.Object> is(java.lang.Class<?> type) {
40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher) {
50 public static <T> org.hamcrest.Matcher<T> not(T value) {
58 public static <T> org.hamcrest.Matcher<T> equalTo(T operand) {
65 public static org.hamcrest.Matcher<java.lang.Object> instanceOf(java.lang.Class<?> type) {
72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) {
79 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) {
86 public static <T> org.hamcrest.Matcher<T> anyOf(org.hamcrest.Matcher<? extends T>... matchers)
    [all...]
  /external/hamcrest/src/org/hamcrest/core/
Is.java 3 import static org.hamcrest.core.IsInstanceOf.instanceOf;
4 import static org.hamcrest.core.IsEqual.equalTo;
41 public static <T> Matcher<T> is(Matcher<T> matcher) {
52 public static <T> Matcher<T> is(T value) {
63 public static Matcher<Object> is(Class<?> type) {
IsNull.java 5 import static org.hamcrest.core.IsNot.not;
27 public static <T> Matcher<T> nullValue() {
35 public static <T> Matcher<T> notNullValue() {
43 public static <T> Matcher<T> nullValue(@SuppressWarnings("unused") Class<T> type) {
51 public static <T> Matcher<T> notNullValue(@SuppressWarnings("unused") Class<T> type) {
  /external/icu4c/test/cintltst/
capitst.h 32 static void doAssert(int condition, const char *message);
116 static void TestShortString(void);
121 static void TestGetContractionsAndUnsafes(void);
126 static void TestOpenBinary(void);
131 static void TestGetKeywordValuesForLocale(void);
  /external/icu4c/test/intltest/
frcoll.h 41 static const UChar testSourceCases[][MAX_TOKEN_LEN];
42 static const UChar testTargetCases[][MAX_TOKEN_LEN];
43 static const UChar testBugs[][MAX_TOKEN_LEN];
44 static const Collator::EComparisonResult results[];
45 static const UChar testAcute[][MAX_TOKEN_LEN];
  /external/jsilver/src/com/google/streamhtmlparser/
JavascriptParser.java 29 public static final ExternalState STATE_TEXT =
31 public static final ExternalState STATE_Q =
33 public static final ExternalState STATE_DQ =
35 public static final ExternalState STATE_REGEXP =
37 public static ExternalState STATE_COMMENT =
  /external/kernel-headers/original/linux/
thread_info.h 30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
45 static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
  /external/libvorbis/lib/modes/
setup_22.h 18 static const double rate_mapping_22[4]={
22 static const double rate_mapping_22_uncoupled[4]={
26 static const double _psy_lowpass_22[4]={9.5,11.,30.,99.};
28 static const ve_setup_data_template ve_setup_22_stereo={
79 static const ve_setup_data_template ve_setup_22_uncoupled={
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
cpu_id.h 20 static const int kCpuHasSSE2 = 1;
21 static const int kCpuHasSSSE3 = 2;
24 static const int kCpuHasNEON = 4;
27 static const int kCpuInitialized = 8;
32 static __inline int TestCpuFlag(int test_flag) {
  /external/mockito/src/org/mockito/internal/matchers/
Equality.java 12 public static boolean areEqual(Object o1, Object o2) {
22 static boolean areArraysEqual(Object o1, Object o2) {
27 static boolean areArrayLengthsEqual(Object o1, Object o2) {
31 static boolean areArrayElementsEqual(Object o1, Object o2) {
38 static boolean isArray(Object o) {
  /external/openssl/crypto/comp/
c_rle.c 7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
9 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
12 static COMP_METHOD rle_method={
28 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
44 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
  /external/ppp/pppd/plugins/
passwordfd.c 19 static int passwdfd = -1;
20 static char save_passwd[MAXSECRETLEN];
22 static option_t options[] = {
28 static int pwfd_check (void)
33 static int pwfd_passwd (char *user, char *passwd)
  /external/proguard/src/proguard/wtk/
default.pro 19 public static native long currentTimeMillis();
20 static java.lang.Class getCallerClass();
21 public static native int identityHashCode(java.lang.Object);
22 public static java.lang.SecurityManager getSecurityManager();
23 public static java.util.Properties getProperties();
24 public static java.lang.String getProperty(java.lang.String);
25 public static java.lang.String getenv(java.lang.String);
26 public static native java.lang.String mapLibraryName(java.lang.String);
27 public static java.lang.String getProperty(java.lang.String,java.lang.String);
44 public static java.lang.String copyValueOf(char[])
    [all...]
  /external/qemu/android/
hw-kmsg.c 17 static CharDriverState* android_kmsg_cs;
24 static int
30 static void
41 static void
54 static KernelLog _kernel_log[1];
  /external/qemu/target-arm/
exec.h 27 static inline void env_to_regs(void)
31 static inline void regs_to_env(void)
35 static inline int cpu_has_work(CPUState *env)
41 static inline int cpu_halted(CPUState *env) {
59 static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)

Completed in 631 milliseconds

<<71727374757677787980>>