/frameworks/native/include/binder/ |
IPermissionController.h | 45 virtual status_t onTransact( uint32_t code,
|
/frameworks/native/include/gui/ |
IConsumerListener.h | 74 virtual status_t onTransact( uint32_t code,
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
SimulatedRadioControl.java | 49 public void triggerSsn(int type, int code);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ |
ctor_error_code_string.pass.cpp | 26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/ |
set_exception.pass.cpp | 42 assert(e.code() == make_error_code(std::future_errc::promise_already_satisfied));
|
set_lvalue.pass.cpp | 38 assert(e.code() == make_error_code(std::future_errc::promise_already_satisfied));
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
AudioAndHapticFeedbackManager.java | 60 public void performHapticAndAudioFeedback(final int code, 63 performAudioFeedback(code); 84 public void performAudioFeedback(final int code) { 91 switch (code) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 7 - Return code object if the command is complete and valid 23 are the same, the code is broken. But if the errors are different, we 79 code = code1 = code2 = None 82 code = compiler(source, filename, symbol) 96 if code: 97 return code 116 - Return a code object if the command is complete and valid 162 - Return a code object if the command is complete and valid
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 7 - Return code object if the command is complete and valid 23 are the same, the code is broken. But if the errors are different, we 79 code = code1 = code2 = None 82 code = compiler(source, filename, symbol) 96 if code: 97 return code 116 - Return a code object if the command is complete and valid 162 - Return a code object if the command is complete and valid
|
/system/extras/tests/framebuffer/ |
minui.h | 38 unsigned code; member in struct:event
|
/abi/cpp/include/ |
cxxabi.h | 7 // 1. Redistributions of source code must retain the above copyright 84 code() const { return CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__class_type_info 96 code() const { return SI_CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__si_class_type_info 149 code() const { return VMI_CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__vmi_class_type_info
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CstInsn.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.RegisterSpecList; 20 import com.android.dexgen.rop.code.SourcePosition; 28 /** {@code non-null;} the constant argument for this instruction */ 32 * {@code >= -1;} the constant pool index for {@link #constant}, or 33 * {@code -1} if not yet set 38 * {@code >= -1;} the constant pool index for the class reference in 39 * {@link #constant} if any, or {@code -1} if not yet set 45 * initially unknown ({@code -1}) as is the constant pool index. 48 * @param position {@code non-null;} source positio [all...] |
TargetInsn.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.RegisterSpecList; 20 import com.android.dexgen.rop.code.SourcePosition; 26 /** {@code non-null;} the branch target */ 31 * unknown ({@code -1}), and the target is initially 32 * {@code null}. 35 * @param position {@code non-null;} source position 36 * @param registers {@code non-null;} register list, including a 39 * @param target {@code non-null;} the branch target 67 * {@code lt} test becomes a {@code ge}), and its branc [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
CstInsn.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpecList; 20 import com.android.dx.rop.code.SourcePosition; 28 /** {@code non-null;} the constant argument for this instruction */ 32 * {@code >= -1;} the constant pool index for {@link #constant}, or 33 * {@code -1} if not yet set 38 * {@code >= -1;} the constant pool index for the class reference in 39 * {@link #constant} if any, or {@code -1} if not yet set 45 * initially unknown ({@code -1}) as is the constant pool index. 48 * @param position {@code non-null;} source positio [all...] |
TargetInsn.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpecList; 20 import com.android.dx.rop.code.SourcePosition; 26 /** {@code non-null;} the branch target */ 31 * unknown ({@code -1}), and the target is initially 32 * {@code null}. 35 * @param position {@code non-null;} source position 36 * @param registers {@code non-null;} register list, including a 39 * @param target {@code non-null;} the branch target 67 * {@code lt} test becomes a {@code ge}), and its branc [all...] |
/external/chromium/chrome/browser/policy/ |
device_management_backend.h | 2 // Use of this source code is governed by a BSD-style license that can be 30 // The server returned an error code that points to a temporary problem. 32 // The HTTP request returned a non-success code. 44 // Service error: Policy not found. Error code defined by the DM folks. 53 virtual void OnError(ErrorCode code) = 0; 67 virtual void OnError(ErrorCode code) = 0; 82 virtual void OnError(ErrorCode code) = 0;
|
/external/chromium_org/chrome/common/ |
automation_constants.h | 2 // Use of this source code is governed by a BSD-style license that can be 78 // The error code values must stay consistent across compatible versions. 91 // Represents an automation error. Each error has a code and an error message. 97 // Creates an error for the given code. A default message for the given code 99 explicit Error(ErrorCode code); 105 // Creates an error for the given code and message. 106 Error(ErrorCode code, const std::string& error_msg); 110 ErrorCode code() const;
|
/external/chromium_org/chrome/test/chromedriver/ |
session_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 40 ASSERT_EQ(kNoSuchWindow, session.GetTargetWindow(&web_view).code()); 48 ASSERT_EQ(kNoSuchWindow, session.GetTargetWindow(&web_view).code()); 56 ASSERT_EQ(kOk, session.GetTargetWindow(&web_view).code());
|
/external/chromium_org/remoting/host/setup/win/ |
host_configurer_window.h | 2 // Use of this source code is governed by a BSD-style license that can be 42 void OnCancel(UINT code, int id, HWND control); 45 void OnOk(UINT code, int id, HWND control); 46 void OnStartHost(UINT code, int id, HWND control);
|
start_host_window.h | 2 // Use of this source code is governed by a BSD-style license that can be 42 void OnCancel(UINT code, int id, HWND control); 45 void OnConsent(UINT code, int id, HWND control); 46 void OnOk(UINT code, int id, HWND control);
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
FileError.cpp | 8 * * Redistributions of source code must retain the above copyright 51 void FileError::throwDOMException(ExceptionState& es, ErrorCode code) 53 if (code == FileError::OK) 60 switch (code) {
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prerror.h | 13 * The Original Code is the Netscape Portable Runtime (NSPR). 15 * The Initial Developer of the Original Code is Netscape 69 ** Return the current threads last set error code. 74 ** Return the current threads last set os error code. This is used for 75 ** machine specific code that desires the underlying os error. 112 * The interfaces for error-code-translation described in the rest of 118 ** Description: Localizable error code to string function. 121 ** NSPR provides a mechanism for converting an error code to a 126 ** error code is from, and the low order 8 bits are a sequential error 128 ** error code is not a multiple of 256, such error code assignment 273 NSPR_API(const char *) PR_ErrorToName(PRErrorCode code); variable [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/ |
rc4-s390x.pl | 22 # processor, as long as it's "z-CPU". Latter implies that the code 24 # 50% better than code generated by gcc 4.3. 41 $code=<<___; 60 $code.=<<___; 67 $code.=<<___ if ($flavour =~ /3[12]/); 70 $code.=<<___; 85 $code.=<<___; 91 $code.=<<___ if ($i==1); 94 $code.=<<___ if ($i>1); 98 $code.=<<___ [all...] |
/external/chromium_org/third_party/re2/doc/ |
mksyntaxhtml | 8 ,s!== (([^()]|\([^()]*\))*)!? <code>\1</code>!g 9 ,s!«!<code>!g 10 ,s!»!</code>!g 16 ,s!(^[^ ]+) (.*)\n!<tr><td><code>\1</code></td><td>\2</td></tr>\n!g
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayEvent.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 33 SK_MEMBER(code, EventCode), 47 SkDisplayEvent::SkDisplayEvent() : code((SkKey) -1), disable(false), 91 if (code >= 0) 92 SkDump::GetEnumString(SkType_EventCode, code, &str); 95 SkDebugf("code=\"%s\" ", str.c_str()); 98 if (fMax != (SkKey) -1 && fMax != code) 99 SkDebugf("keys=\"%c - %c\" ", code, fMax); 101 SkDebugf("key=\"%c\" ", code); 154 SkKey convert = index == SK_PROPERTY(keys) ? code : fLastCode [all...] |