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

1 2 3

  /external/jmonkeyengine/engine/src/core/com/jme3/system/
Annotations.java 70 public @interface Internal {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_FilterDeblockingChroma_HorEdge_I.c 52 * second element contains the threshold for internal horizontal
57 * second element contains the threshold for the internal
104 int I, X, Y, Internal=0;
116 for (Y=0; Y<8; Y+=4, Internal=1)
137 pAlpha[Internal],
138 pBeta[Internal],
omxVCM4P10_FilterDeblockingChroma_VerEdge_I.c 52 * internal vertical edge); per [ISO14496-10] alpha values must be
56 * for the internal vertical edge); per [ISO14496-10] beta values
103 int I, X, Y, Internal=0;
117 for (X=0; X<8; X+=4, Internal=1)
138 pAlpha[Internal],
139 pBeta[Internal],
omxVCM4P10_FilterDeblockingLuma_HorEdge_I.c 52 * for the internal horizontal edge); per [ISO14496-10] alpha
56 * is for the internal horizontal edge). Per [ISO14496-10] beta
100 int I, X, Y, Internal=0;
112 for (Y=0; Y<16; Y+=4, Internal=1)
132 pAlpha[Internal],
133 pBeta[Internal],
omxVCM4P10_FilterDeblockingLuma_VerEdge_I.c 52 * for the internal vertical edge); per [ISO14496-10] alpha values
56 * for the internal vertical edge); per [ISO14496-10] beta values
99 int X, Y, I, Internal=0;
114 for (X=0; X<16; X+=4, Internal=1)
135 pAlpha[Internal],
136 pBeta[Internal],
  /external/clang/test/CodeGenCXX/
static-member-variable-explicit-specialization.cpp 74 template<typename T> struct Internal { static int a; };
75 template<typename T> int Internal<T>::a = foo();
77 int *use_internal_a = &Internal<int>::a;
79 // ALL: define internal void @[[unordered1]](
84 // ALL: define internal void @[[unordered2]](
89 // ALL: define internal void @[[unordered3]](
94 // ALL: define internal void @[[unordered4]](
99 // ALL: define internal void @[[unordered5]](
104 // ALL: define internal void @[[unordered6]](
109 // ALL: define internal void @[[unordered7]]
    [all...]
  /external/clang/test/SemaCXX/
attr-selectany.cpp 21 // it as internal and not weak/linkonce.
35 namespace { class Internal {}; }
36 __declspec(selectany) auto x8 = Internal(); // expected-error {{'selectany' can only be applied to data items with external linkage}}
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}}
10 int test3 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
11 void test4() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
20 static void test6() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
24 // GCC rejects the instantiation with the internal type, but some existing
34 namespace { class Internal {}; }
35 template struct Test7<Internal>;
40 __attribute__((weak)) auto Test9 = Internal(); // expected-error {{weak declaration cannot have internal linkage}
    [all...]
dllexport.cpp 14 namespace { struct Internal {}; }
65 __declspec(dllexport) Internal InternalTypeGlobal; // expected-error{{'InternalTypeGlobal' must have external linkage when declared 'dllexport'}}
69 __declspec(dllexport) auto InternalAutoTypeGlobal = Internal(); // expected-error{{'InternalAutoTypeGlobal' must have external linkage when declared 'dllexport'}}
116 template<typename T> __declspec(dllexport) Internal InternalTypeVarTmpl; // expected-error{{'InternalTypeVarTmpl' must have external linkage when declared 'dllexport'}}
120 template<typename T> __declspec(dllexport) auto InternalAutoTypeVarTmpl = Internal(); // expected-error{{'InternalAutoTypeVarTmpl' must have external linkage when declared 'dllexport'}}
224 __declspec(dllexport) Internal internalRetFunc(); // expected-error{{'internalRetFunc' must have external linkage when declared 'dllexport'}}
282 template<typename T> __declspec(dllexport) Internal internalRetFuncTmpl(); // expected-error{{'internalRetFuncTmpl' must have external linkage when declared 'dllexport'}}
    [all...]
dllimport.cpp 14 namespace { struct Internal {}; }
87 __declspec(dllimport) Internal InternalTypeGlobal; // expected-error{{'InternalTypeGlobal' must have external linkage when declared 'dllimport'}}
91 __declspec(dllimport) auto InternalAutoTypeGlobal = Internal(); // expected-error{{'InternalAutoTypeGlobal' must have external linkage when declared 'dllimport'}}
153 template<typename T> __declspec(dllimport) Internal InternalTypeVarTmpl; // expected-error{{'InternalTypeVarTmpl' must have external linkage when declared 'dllimport'}}
157 template<typename T> __declspec(dllimport) auto InternalAutoTypeVarTmpl = Internal(); // expected-error{{definition of dllimport data}} // expected-error{{'InternalAutoTypeVarTmpl' must have external linkage when declared 'dllimport'}}
293 __declspec(dllimport) Internal internalRetFunc(); // expected-error{{'internalRetFunc' must have external linkage when declared 'dllimport'}}
374 template<typename T> __declspec(dllimport) Internal internalRetFuncTmpl(); // expected-error{{'internalRetFuncTmpl' must have external linkage when declared 'dllimport'}}
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
ConnectionSpecSelector.java 17 package com.squareup.okhttp.internal;
79 Internal.instance.apply(tlsConfiguration, sslSocket, isFallback);
Internal.java 16 package com.squareup.okhttp.internal;
27 import com.squareup.okhttp.internal.http.HttpEngine;
28 import com.squareup.okhttp.internal.http.RouteException;
29 import com.squareup.okhttp.internal.http.Transport;
37 * Escalate internal APIs in {@code com.squareup.okhttp} so they can be used
41 public abstract class Internal {
49 public static Internal instance;
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
WebSocketCall.java 24 import com.squareup.okhttp.internal.Internal;
25 import com.squareup.okhttp.internal.NamedRunnable;
26 import com.squareup.okhttp.internal.Util;
27 import com.squareup.okhttp.internal.ws.RealWebSocket;
28 import com.squareup.okhttp.internal.ws.WebSocketProtocol;
128 Internal.instance.callEnqueue(call, responseCallback, true);
140 Internal.instance.callEngineReleaseConnection(call);
169 Connection connection = Internal.instance.callEngineGetConnection(call);
171 if (!Internal.instance.clearOwner(connection))
    [all...]
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/
URLEncodingTest.java 17 package com.squareup.okhttp.internal.huc;
23 import com.squareup.okhttp.internal.Internal;
24 import com.squareup.okhttp.internal.InternalCache;
25 import com.squareup.okhttp.internal.http.CacheRequest;
26 import com.squareup.okhttp.internal.http.CacheStrategy;
132 Internal.instance.setCache(client, new InternalCache() {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpConnection.java 17 package com.squareup.okhttp.internal.http;
23 import com.squareup.okhttp.internal.Internal;
24 import com.squareup.okhttp.internal.Util;
39 import static com.squareup.okhttp.internal.Util.checkOffsetAndCount;
40 import static com.squareup.okhttp.internal.http.StatusLine.HTTP_CONTINUE;
41 import static com.squareup.okhttp.internal.http.Transport.DISCARD_STREAM_TIMEOUT_MILLIS;
113 Internal.instance.recycle(pool, connection);
137 Internal.instance.closeIfOwnedBy(connection, owner);
211 + " (recycle count=" + Internal.instance.recycleCount(connection) + ")")
    [all...]
HttpEngine.java 18 package com.squareup.okhttp.internal.http;
33 import com.squareup.okhttp.internal.Internal;
34 import com.squareup.okhttp.internal.InternalCache;
35 import com.squareup.okhttp.internal.Util;
36 import com.squareup.okhttp.internal.Version;
61 import static com.squareup.okhttp.internal.Util.closeQuietly;
62 import static com.squareup.okhttp.internal.Util.getDefaultPort;
63 import static com.squareup.okhttp.internal.Util.getEffectivePort;
64 import static com.squareup.okhttp.internal.http.StatusLine.HTTP_CONTINUE
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
ConnectionSpecSelectorTest.java 16 package com.squareup.okhttp.internal;
39 Internal.initializeInstanceForTests();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
filehc.h 16 UINT_PTR Internal;
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 16 package com.squareup.okhttp.internal.huc;
25 import com.squareup.okhttp.internal.Internal;
26 import com.squareup.okhttp.internal.Util;
27 import com.squareup.okhttp.internal.http.CacheRequest;
28 import com.squareup.okhttp.internal.http.HttpMethod;
29 import com.squareup.okhttp.internal.http.OkHeaders;
30 import com.squareup.okhttp.internal.http.StatusLine;
148 Internal.instance.addLenient(builder, name, trimmedValue);
188 Internal.instance.addLenient(result, fieldName, fieldValue)
    [all...]
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
CacheAdapterTest.java 16 package com.squareup.okhttp.internal.huc;
21 import com.squareup.okhttp.internal.Internal;
22 import com.squareup.okhttp.internal.SslContextBuilder;
101 Internal.instance.setCache(client, new CacheAdapter(responseCache));
124 Internal.instance.setCache(client, new CacheAdapter(responseCache));
168 Internal.instance.setCache(client, new CacheAdapter(responseCache));
207 Internal.instance.setCache(client, new CacheAdapter(responseCache));
239 Internal.instance.setCache(client, new CacheAdapter(responseCache));
  /external/protobuf/java/src/main/java/com/google/protobuf/
Internal.java 47 public class Internal {
  /external/protobuf/src/google/protobuf/stubs/
common.cc 54 namespace internal { namespace in namespace:google::protobuf
100 } // namespace internal
105 namespace internal { namespace in namespace:google::protobuf
206 } // namespace internal
209 LogHandler* old = internal::log_handler_;
210 if (old == &internal::NullLogHandler) {
214 internal::log_handler_ = &internal::NullLogHandler;
216 internal::log_handler_ = new_func;
222 internal::InitLogSilencerCountOnce()
238 namespace internal { FunctionClosure0::~FunctionClosure0() {} } namespace in namespace:google::protobuf
343 namespace internal { namespace in namespace:google::protobuf
    [all...]
  /frameworks/base/core/java/android/net/
Network.java 44 import com.android.okhttp.internal.Internal;
68 private volatile com.android.okhttp.internal.Network mNetwork = null;
223 mNetwork = new com.android.okhttp.internal.Network() {
292 // Use internal APIs to change the Network.
293 Internal.instance.setNetwork(client, mNetwork);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 16 package com.squareup.okhttp.internal.http;
26 import com.squareup.okhttp.internal.Internal;
27 import com.squareup.okhttp.internal.Network;
28 import com.squareup.okhttp.internal.RouteDatabase;
29 import com.squareup.okhttp.internal.SslContextBuilder;
30 import com.squareup.okhttp.internal.Util;
97 Internal.instance.setNetwork(client, dns);
99 routeDatabase = Internal.instance.routeDatabase(client);
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 72 enum Visibility { Default = 0, Internal = 1, Hidden = 2, Protected = 3 };

Completed in 588 milliseconds

1 2 3