OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:static
(Results
751 - 775
of
47082
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java
125
public
static
class MD5 extends OpenSSLDigest {
126
private
static
final long EVP_MD = NativeCrypto.EVP_get_digestbyname("md5");
127
private
static
final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
128
private
static
final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
132
public
static
class SHA1 extends OpenSSLDigest {
133
private
static
final long EVP_MD = NativeCrypto.EVP_get_digestbyname("sha1");
134
private
static
final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
135
private
static
final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
139
public
static
class SHA256 extends OpenSSLDigest {
140
private
static
final long EVP_MD = NativeCrypto.EVP_get_digestbyname("sha256")
[
all
...]
/external/chromium/chrome/browser/
memory_purger.h
5
// MemoryPurger provides
static
APIs to purge as much memory as possible from
20
static
void PurgeAll();
21
static
void PurgeBrowser();
22
static
void PurgeRenderers();
23
static
void PurgeRendererForHost(RenderProcessHost* host);
/external/clang/lib/Headers/
xmmintrin.h
43
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
50
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
56
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
63
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
69
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
76
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
82
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
89
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
95
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__))
102
static
__inline__ __m128 __attribute__((__always_inline__, __nodebug__)
[
all
...]
/external/clang/test/CodeGen/
constructor-attribute.c
20
static
void C() __attribute__((constructor));
22
static
void D() __attribute__((destructor));
24
static
int foo() {
28
static
void C() {
32
static
void D() {
/external/clang/test/Sema/
invalid-struct-init.c
13
static
void zm_globals_ctor_pcre(zend_pcre_globals *pcre_globals ) { }
14
static
void zm_globals_dtor_pcre(zend_pcre_globals *pcre_globals ) { }
15
static
void zm_info_pcre(zend_module_entry *zend_module ) { }
16
static
int zm_startup_pcre(int type, int module_number ) { }
18
static
int zm_shutdown_pcre(int type, int module_number ) {
/external/junit/src/org/junit/internal/runners/
SuiteMethod.java
10
* (those that only implement a
static
<code>suite()</code>
15
* public
static
junit.framework.Test suite() {
26
public
static
Test testFromSuiteMethod(Class<?> klass) throws Throwable {
32
throw new Exception(klass.getName() + ".suite() must be
static
");
34
suite= (Test) suiteMethod.invoke(null); //
static
method
/external/mockito/src/org/mockito/internal/util/collections/
Sets.java
12
import
static
java.util.Arrays.asList;
15
public
static
Set<Object> newMockSafeHashSet(Iterable<Object> mocks) {
19
public
static
Set<Object> newMockSafeHashSet(Object... mocks) {
23
public
static
IdentitySet newIdentitySet() {
27
public
static
<T> Set<T> newSet(T ... elements) {
/external/protobuf/src/google/protobuf/
test_util_lite.h
49
static
void SetAllFields(unittest::TestAllTypesLite* message);
50
static
void SetAllExtensions(unittest::TestAllExtensionsLite* message);
51
static
void SetPackedFields(unittest::TestPackedTypesLite* message);
52
static
void SetPackedExtensions(unittest::TestPackedExtensionsLite* message);
58
static
void ModifyRepeatedFields(unittest::TestAllTypesLite* message);
59
static
void ModifyRepeatedExtensions(
61
static
void ModifyPackedFields(unittest::TestPackedTypesLite* message);
62
static
void ModifyPackedExtensions(
67
static
void ExpectAllFieldsSet(const unittest::TestAllTypesLite& message);
68
static
void ExpectAllExtensionsSet
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/cdrom/dc/
SDL_syscdrom.c
35
static
const char *SDL_SYS_CDName(int drive);
36
static
int SDL_SYS_CDOpen(int drive);
37
static
int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
38
static
CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
39
static
int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
40
static
int SDL_SYS_CDPause(SDL_CD *cdrom);
41
static
int SDL_SYS_CDResume(SDL_CD *cdrom);
42
static
int SDL_SYS_CDStop(SDL_CD *cdrom);
43
static
int SDL_SYS_CDEject(SDL_CD *cdrom);
44
static
void SDL_SYS_CDClose(SDL_CD *cdrom)
[
all
...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ListFragmentTest.java
12
import
static
junit.framework.Assert.assertTrue;
13
import
static
org.hamcrest.CoreMatchers.is;
14
import
static
org.hamcrest.CoreMatchers.notNullValue;
15
import
static
org.hamcrest.CoreMatchers.sameInstance;
16
import
static
org.hamcrest.MatcherAssert.assertThat;
WifiInfoTest.java
9
import
static
android.content.Context.WIFI_SERVICE;
10
import
static
com.xtremelabs.robolectric.Robolectric.application;
11
import
static
com.xtremelabs.robolectric.Robolectric.shadowOf;
12
import
static
org.hamcrest.CoreMatchers.equalTo;
13
import
static
org.hamcrest.MatcherAssert.assertThat;
/external/skia/include/core/
SkUnPreMultiply.h
23
static
const Scale* GetScaleTable() {
27
static
Scale GetScale(U8CPU alpha) {
45
static
U8CPU ApplyScale(Scale scale, U8CPU component) {
50
static
SkColor PMColorToColor(SkPMColor c);
53
static
const uint32_t gTable[256];
/external/skia/legacy/include/core/
SkUnPreMultiply.h
23
static
const Scale* GetScaleTable() {
27
static
Scale GetScale(U8CPU alpha) {
45
static
U8CPU ApplyScale(Scale scale, U8CPU component) {
50
static
SkColor PMColorToColor(SkPMColor c);
53
static
const uint32_t gTable[256];
/external/skia/legacy/src/animator/
SkAnimatorScript2.h
33
static
bool MapEnums(const char* ptr, const char* match, size_t len, int* value);
34
static
const SkDisplayEnumMap& GetEnumValues(SkDisplayTypes type);
35
static
SkDisplayTypes ToDisplayType(SkOperand2::OpType type);
36
static
SkOperand2::OpType ToOpType(SkDisplayTypes type);
46
static
void UnitTest();
/external/skia/src/animator/
SkAnimatorScript2.h
33
static
bool MapEnums(const char* ptr, const char* match, size_t len, int* value);
34
static
const SkDisplayEnumMap& GetEnumValues(SkDisplayTypes type);
35
static
SkDisplayTypes ToDisplayType(SkOperand2::OpType type);
36
static
SkOperand2::OpType ToOpType(SkDisplayTypes type);
46
static
void UnitTest();
/external/skia/src/sfnt/
SkOTTable_post.h
18
static
const SK_OT_CHAR TAG0 = 'p';
19
static
const SK_OT_CHAR TAG1 = 'o';
20
static
const SK_OT_CHAR TAG2 = 's';
21
static
const SK_OT_CHAR TAG3 = 't';
22
static
const SK_OT_ULONG TAG = SkOTTableTAG<SkOTTablePostScript>::value;
/external/smack/src/org/xbill/DNS/
ExtendedFlags.java
13
private
static
Mnemonic extflags = new Mnemonic("EDNS Flag",
17
public
static
final int DO = 0x8000;
19
static
{
31
public
static
String
40
public
static
int
/external/valgrind/main/drd/tests/
annotate_static.cpp
11
static
int s_i;
12
static
volatile int s_j;
19
static
inline void AnnotateIgnoreReadsBegin() { ANNOTATE_IGNORE_READS_BEGIN(); }
20
static
inline void AnnotateIgnoreReadsEnd() { ANNOTATE_IGNORE_READS_END(); }
22
static
void* thread_func(void*)
/external/webkit/Source/WebKit/chromium/src/
DebuggerAgentManager.h
69
static
void debugAttach(DebuggerAgentImpl* debuggerAgent);
70
static
void debugDetach(DebuggerAgentImpl* debuggerAgent);
71
static
void pauseScript();
72
static
void executeDebuggerCommand(const WTF::String& command, int callerId);
73
static
void setMessageLoopDispatchHandler(WebDevToolsAgent::MessageLoopDispatchHandler handler);
74
static
void setExposeV8DebuggerProtocol(bool);
78
static
void setHostId(WebFrameImpl* webframe, int hostId);
80
static
void onWebViewClosed(WebViewImpl* webview);
82
static
void onNavigate();
88
static
void debugHostDispatchHandler()
[
all
...]
/external/wpa_supplicant_8/src/ap/
accounting.h
13
static
inline void accounting_sta_get_id(struct hostapd_data *hapd,
18
static
inline void accounting_sta_start(struct hostapd_data *hapd,
23
static
inline void accounting_sta_stop(struct hostapd_data *hapd,
28
static
inline int accounting_init(struct hostapd_data *hapd)
33
static
inline void accounting_deinit(struct hostapd_data *hapd)
preauth_auth.h
24
static
inline int rsn_preauth_iface_init(struct hostapd_data *hapd)
29
static
inline void rsn_preauth_iface_deinit(struct hostapd_data *hapd)
33
static
inline void rsn_preauth_finished(struct hostapd_data *hapd,
39
static
inline void rsn_preauth_send(struct hostapd_data *hapd,
45
static
inline void rsn_preauth_free_station(struct hostapd_data *hapd,
/frameworks/base/core/java/com/android/internal/backup/
BackupConstants.java
23
public
static
final int TRANSPORT_OK = 0;
24
public
static
final int TRANSPORT_ERROR = 1;
25
public
static
final int TRANSPORT_NOT_INITIALIZED = 2;
26
public
static
final int AGENT_ERROR = 3;
27
public
static
final int AGENT_UNKNOWN = 4;
/ndk/tests/device/test-stlport_shared-exception/jni/
singleton.cpp
5
// egcs fails to see that there is a public
static
accessor function.
6
// 2. the program crashes, because apparently the
static
variable s in
12
static
singleton& instance() {
13
static
singleton s;
26
static
int counter;
/ndk/tests/device/test-stlport_static-exception/jni/
singleton.cpp
5
// egcs fails to see that there is a public
static
accessor function.
6
// 2. the program crashes, because apparently the
static
variable s in
12
static
singleton& instance() {
13
static
singleton s;
26
static
int counter;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
IntentUtilities.java
28
private
static
final String ACTIVITY_INTENT_SCHEME = "content";
29
private
static
final String ACTIVITY_INTENT_HOST = "ui.email.android.com";
31
private
static
final String ACCOUNT_ID_PARAM = "ACCOUNT_ID";
32
private
static
final String MAILBOX_ID_PARAM = "MAILBOX_ID";
33
private
static
final String MESSAGE_ID_PARAM = "MESSAGE_ID";
34
private
static
final String ACCOUNT_UUID_PARAM = "ACCOUNT_UUID";
42
public
static
Uri.Builder createActivityIntentUrlBuilder(String path) {
53
public
static
void setAccountId(Uri.Builder b, long accountId) {
62
public
static
void setMailboxId(Uri.Builder b, long mailboxId) {
71
public
static
void setMessageId(Uri.Builder b, long messageId)
[
all
...]
Completed in 2905 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>