HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 151 - 175 of 9702) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/mojo/public/java/src/org/chromium/mojo/system/
MojoException.java 2 // Use of this source code is governed by a BSD-style license that can be
17 public MojoException(int code) {
18 mCode = code;
22 * The mojo result code associated with this exception. See {@link MojoResult} for possible
  /external/chromium_org/third_party/icu/source/common/
errorcode.cpp 23 UErrorCode code = errorCode; local
25 return code;
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
entry_x86_tsd.h 80 char *code = (char *) entry; local
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
90 void *code; local
93 code = u_execmem_alloc(X86_ENTRY_SIZE);
94 if (!code)
97 memcpy(code, code_templ, X86_ENTRY_SIZE);
98 entry = (mapi_func) code;
  /external/chromium_org/third_party/skia/src/core/
SkErrorInternals.h 5 * Use of this source code is governed by a BSD-style license that can be
18 static void SetError(SkError code, const char *fmt, ...);
22 static void DefaultErrorCallback(SkError code, void *context);
  /external/chromium_org/ui/base/ime/chromeos/
ime_keymap.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // Translates the DOM4 key code string to ui::KeyboardCode.
16 UI_BASE_EXPORT KeyboardCode DomKeycodeToKeyboardCode(const std::string& code);
18 // Translates the ui::KeyboardCode to DOM4 key code string.
19 UI_BASE_EXPORT std::string KeyboardCodeToDomKeycode(KeyboardCode code);
  /external/clang/test/Driver/
output-file-cleanup.c 24 invalid C code
28 // RUN: echo "invalid C code" > %t2.c
41 // RUN: echo "invalid C code" > %t2.c
43 // RUN: echo "invalid C code" > %t4.c
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) {
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type)
    [all...]
  /external/eigen/Eigen/src/Core/util/
NonMPL2.h 1 // Force error if including non MPL2 license code regardless
5 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 53 static const UCDRecord *get_ucd_record(uint32_t code)
57 if (code >= 0x110000)
60 index = index0[code >> (SHIFT1+SHIFT2)] << SHIFT1;
61 offset = (code >> SHIFT2) & ((1<<SHIFT1) - 1);
63 offset = code & ((1<<SHIFT2) - 1);
70 static const unsigned short *get_decomp_record(uint32_t code)
74 if (code >= 0x110000)
77 index = decomp_index0[code >> (DECOMP_SHIFT1+DECOMP_SHIFT2)]
79 offset = (code >> DECOMP_SHIFT2) & ((1<<DECOMP_SHIFT1) - 1);
81 offset = code & ((1<<DECOMP_SHIFT2) - 1)
155 const unsigned short *code = *code_ptr; local
    [all...]
  /external/junit/src/org/junit/internal/
RealSystem.java 7 public void exit(int code) {
8 System.exit(code);
  /external/mesa3d/src/mapi/mapi/
entry_x86_tsd.h 80 char *code = (char *) entry; local
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
90 void *code; local
93 code = u_execmem_alloc(X86_ENTRY_SIZE);
94 if (!code)
97 memcpy(code, code_templ, X86_ENTRY_SIZE);
98 entry = (mapi_func) code;
  /external/skia/src/core/
SkErrorInternals.h 5 * Use of this source code is governed by a BSD-style license that can be
18 static void SetError(SkError code, const char *fmt, ...);
22 static void DefaultErrorCallback(SkError code, void *context);
  /external/valgrind/main/none/tests/x86/
smc1.c 2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
47 static UChar code[10]; variable
49 /* Make `code' be PUSHL $dest ; ret */
53 code[0] = 0x68; /* PUSH imm32 */
54 code[1] = (dest & 0xFF);
55 code[2] = ((dest >> 8) & 0xFF);
56 code[3] = ((dest >> 16) & 0xFF);
57 code[4] = ((dest >> 24) & 0xFF)
    [all...]
  /external/android-clat/
icmp.h 34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
  /external/chromium_org/chrome/browser/extensions/api/braille_display_private/
brlapi_keycode_map.h 2 // Use of this source code is governed by a BSD-style license that can be
17 scoped_ptr<KeyEvent> BrlapiKeyCodeToEvent(brlapi_keyCode_t code);
  /external/chromium_org/chrome/test/remoting/
key_code_conv.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // 1. The UIEvents (aka: DOM4Events) |code| value as defined in:
17 // 2. The virtual key code (ui::KeyboardCode)
21 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift);
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBDatabaseError.cpp 8 * * Redistributions of source code must retain the above copyright
46 void WebIDBDatabaseError::assign(unsigned short code)
48 m_private = DOMError::create(code);
51 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message)
53 m_private = DOMError::create(code, message);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcexport.h 8 * 1. Redistributions of source code must retain the above copyright notice,
53 #define NON_EXPORTED_BASE(code) MSVC_SUPPRESS_WARNING(4275) \
54 code
57 #define NON_EXPORTED_BASE(code) code
  /external/chromium_org/tools/idl_parser/test_parser/
inline_ppapi.idl 2 Use of this source code is governed by a BSD-style license that can be
37 This is my block of C code
44 This is my block of CC code
  /libcore/luni/src/main/java/java/net/
HttpRetryException.java 34 * Creates a new {@code HttpRetryException} instance with the specified
35 * response code and the given detail message.
39 * @param code
40 * the HTTP response code from target host.
42 public HttpRetryException(String detail, int code) {
44 responseCode = code;
48 * Creates a new {@code HttpRetryException} instance with the specified
49 * response code, the given detail message and the value of the location
54 * @param code
55 * the HTTP response code from target host
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_hasattr.c 20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
68 unsigned int code; local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 84 private void pressKeyWithoutTimerExpire(final int code, final boolean isSinglePointer,
86 mSwitcher.onPressKey(code, isSinglePointer);
93 * @param code the key code to press.
96 public void pressKey(final int code, final int afterPress) {
98 pressKeyWithoutTimerExpire(code, true, afterPress);
104 * @param code the key code to release and register
107 public void releaseKey(final int code, final int afterRelease) {
108 mSwitcher.onCodeInput(code);
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 37 Bytecode code = makeBody(declaring, declaring.getClassFile2(), local
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
59 code.setMaxLocals(false, parameters, 0);
60 code.addAload(0);
63 code.addInvokespecial(superclazz, "<init>", "()V");
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
67 code.addInvokespecial(superclazz, "<init>",
71 stacksize = compileParameterList(code, parameters, 1);
78 stacksize2 = cparam.compile(code) + 2
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 105 abstract void consume (int code);
107 boolean isAccepted (int code)
109 return Character.isLetterOrDigit(code);
115 void consume (int code) {
116 System.out.print(code);
127 boolean isAccepted (int code)
129 return Character.isLetterOrDigit(code) || Character.isWhitespace(code);
135 void consume (int code) {
136 // System.out.print(code);
175 int code = 0; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyError.h 7 * 1. Redistributions of source code must retain the above copyright
45 typedef unsigned short Code;
47 static PassRefPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0) { return adoptRef(new MediaKeyError(code, systemCode)); }
49 Code code() const { return m_code; } function in class:WebCore::MediaKeyError
53 explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCode
    [all...]

Completed in 1879 milliseconds

1 2 3 4 5 67 8 91011>>