HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 51 - 75 of 8676) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
hazards.h 22 #define ASMMACRO(name, code...) .macro name; code; .endm
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
  /external/nist-sip/java/gov/nist/javax/sip/header/
Warning.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
48 * Comment for <code>serialVersionUID</code>
52 /** warn code field, the warn code consists of three digits.
54 protected int code; field in class:Warning
77 ? Integer.toString(code)
84 : Integer.toString(code) + SP + agent;
88 * Gets code of WarningHeader
89 * @return code of WarningHeade
    [all...]
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 130 // is really no benefit to unloading the code.
163 NativeCode* code = static_cast<NativeCode*>(activity); local
164 write_work(code->mainWorkWrite, CMD_FINISH, 0);
169 NativeCode* code = static_cast<NativeCode*>(activity); local
170 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FORMAT, format);
175 NativeCode* code = static_cast<NativeCode*>(activity); local
176 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FLAGS, values, mask);
181 NativeCode* code = static_cast<NativeCode*>(activity); local
182 write_work(code->mainWorkWrite, CMD_SHOW_SOFT_INPUT, flags);
187 NativeCode* code = static_cast<NativeCode*>(activity) local
197 NativeCode* code = (NativeCode*)data; local
253 NativeCode* code = NULL; local
349 NativeCode* code = (NativeCode*)handle; local
359 NativeCode* code = (NativeCode*)handle; local
371 NativeCode* code = (NativeCode*)handle; local
386 NativeCode* code = (NativeCode*)handle; local
410 NativeCode* code = (NativeCode*)handle; local
422 NativeCode* code = (NativeCode*)handle; local
434 NativeCode* code = (NativeCode*)handle; local
446 NativeCode* code = (NativeCode*)handle; local
458 NativeCode* code = (NativeCode*)handle; local
470 NativeCode* code = (NativeCode*)handle; local
491 NativeCode* code = (NativeCode*)handle; local
531 NativeCode* code = (NativeCode*)handle; local
543 NativeCode* code = (NativeCode*)handle; local
557 NativeCode* code = (NativeCode*)handle; local
570 NativeCode* code = (NativeCode*)handle; local
584 NativeCode* code = (NativeCode*)handle; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
37 enum Code {
45 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
47 Code code() const { return m_code; } function in class:WebCore::MediaError
50 MediaError(Code code) : m_code(code)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationError.h 7 * 1. Redistributions of source code must retain the above copyright
43 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); }
45 ErrorCode code() const { return m_code; } function in class:WebCore::GeolocationError
49 GeolocationError(ErrorCode code, const String& message)
50 : m_code(code)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowKeyEvent.java 11 private int code; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
15 this.code = code;
25 return code;
  /external/chromium_org/chrome/test/chromedriver/chrome/
status.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 const char* DefaultMessageForStatusCode(StatusCode code) {
13 switch (code) {
65 Status::Status(StatusCode code)
66 : code_(code), msg_(DefaultMessageForStatusCode(code)) {}
68 Status::Status(StatusCode code, const std::string& details)
69 : code_(code),
70 msg_(DefaultMessageForStatusCode(code) + std::string(": ") + details) {
73 Status::Status(StatusCode code, const Status& cause
100 StatusCode Status::code() const { function in class:Status
    [all...]
  /bionic/libc/kernel/common/linux/
filter.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
27 __u16 code; member in struct:sock_filter
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39 #define BPF_CLASS(code) ((code) & 0x07)
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
50 #define BPF_SIZE(code) ((code) & 0x18
    [all...]
  /development/ndk/platforms/android-3/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
filter.h 12 * Current version of the filter code architecture.
19 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
41 #define BPF_CLASS(code) ((code) & 0x07)
52 #define BPF_SIZE(code) ((code) & 0x18)
56 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
filter.h 12 * Current version of the filter code architecture.
19 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
41 #define BPF_CLASS(code) ((code) & 0x07)
52 #define BPF_SIZE(code) ((code) & 0x18)
56 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
filter.h 12 * Current version of the filter code architecture.
19 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
41 #define BPF_CLASS(code) ((code) & 0x07)
52 #define BPF_SIZE(code) ((code) & 0x18)
56 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]

Completed in 631 milliseconds

1 23 4 5 6 7 8 91011>>