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

<<21222324252627282930>>

  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
unlock.pass.cpp 47 assert(e.code().value() == EPERM);
57 assert(e.code().value() == EPERM);
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
unlock.pass.cpp 42 assert(e.code().value() == EPERM);
52 assert(e.code().value() == EPERM);
  /external/skia/src/core/
SkGlyph.h 4 * Use of this source code is governed by a BSD-style license that can be
80 unsigned code = ID2Code(fID); local
81 SkASSERT(code >= baseGlyphCount);
82 return code - baseGlyphCount;
136 static uint32_t MakeID(unsigned code) {
137 return code;
140 static uint32_t MakeID(unsigned code, SkFixed x, SkFixed y) {
141 SkASSERT(code <= kCodeMask);
146 code;
  /frameworks/base/core/java/android/webkit/
PluginData.java 28 * status code. The PluginData class is the container for all these
54 * The associated HTTP response code.
65 * @param length The HTTP response status code.
76 int code) {
80 mStatusCode = code;
129 * Returns the HTTP status code for the response.
131 * @return The HTTP statue code, e.g 200.
  /frameworks/base/core/tests/coretests/apks/version_nosys/
Android.mk 6 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SuppServiceNotification.java 30 public int code; field in class:SuppServiceNotification
65 + " code: " + code
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
unlock.pass.cpp 47 assert(e.code().value() == EPERM);
57 assert(e.code().value() == EPERM);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
unlock.pass.cpp 42 assert(e.code().value() == EPERM);
52 assert(e.code().value() == EPERM);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/debug/
error.hpp 21 # define BOOST_PP_ERROR(code) BOOST_PP_CAT(BOOST_PP_ERROR_, code)
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
KeyboardListPreferenceJAJP.java 26 * This class notices to {@code OpenWnnJAJP} that the keyboard image is changed.
46 int code = OpenWnnEvent.CHANGE_INPUT_VIEW; local
47 OpenWnnEvent ev = new OpenWnnEvent(code);
  /system/extras/tests/sdcard/
sysutil.h 8 * * Redistributions of source code must retain the above copyright
107 // @param code:
111 void syncAndDropCaches(int code = 3);
115 // @param code:
119 void fsyncAndDropCaches(int fd, int code = 3);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickletools.py 24 # - A pickle optimizer: for example, tuple-building code is sometimes more
139 copy_reg.safe_constructors are removed from the unpickling code.
608 implementations don't share the code -- they should). It's
829 # the code used in a bytestream to represent the opcode; a
831 'code',
854 def __init__(self, name, code, arg,
859 assert isinstance(code, str)
860 assert len(code) == 1
861 self.code = code
    [all...]
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickletools.py 24 # - A pickle optimizer: for example, tuple-building code is sometimes more
139 copy_reg.safe_constructors are removed from the unpickling code.
608 implementations don't share the code -- they should). It's
829 # the code used in a bytestream to represent the opcode; a
831 'code',
854 def __init__(self, name, code, arg,
859 assert isinstance(code, str)
860 assert len(code) == 1
861 self.code = code
    [all...]
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /external/chromium_org/net/filter/
gzip_filter_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
74 int code = CompressAll(ENCODE_DEFLATE , source_buffer(), source_len(), local
76 ASSERT_TRUE(code == Z_STREAM_END);
85 code = CompressAll(ENCODE_GZIP, source_buffer(), source_len(),
87 ASSERT_TRUE(code == Z_STREAM_END);
104 // other zlib error code if fail.
111 int code; local
115 code = deflateInit2(&zlib_stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED,
120 code = deflateInit(&zlib_stream, Z_DEFAULT_COMPRESSION);
123 if (code != Z_OK
172 int code = Filter::FILTER_OK; local
337 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local
360 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local
380 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local
    [all...]
  /external/chromium_org/v8/src/
type-info.cc 2 // Use of this source code is governed by a BSD-style license that can be
8 #include "src/code-stubs.h"
22 TypeFeedbackOracle::TypeFeedbackOracle(Handle<Code> code,
28 BuildDictionary(code);
72 Handle<Code> code = Handle<Code>::cast(maybe_code); local
73 return code->is_inline_cache_stub() && code->ic_state() == UNINITIALIZED
90 Handle<Code> code = Handle<Code>::cast(maybe_code); local
124 Handle<Code> code = Handle<Code>::cast(maybe_code); local
198 Handle<Code> code = Handle<Code>::cast(info); local
239 Handle<Code> code = Handle<Code>::cast(object); local
    [all...]
  /external/libunwind/tests/
Gtest-dyn1.c 26 /* This file tests dynamic code-generation via function-cloning. */
63 long code; member in struct:fdesc
72 long code; member in struct:fdesc
77 (fdesc).code = (long) &(func) & ~0x1; \
79 /*# define get_fdesc(fdesc,func) ({(fdesc).code = (long) &(func) & ~0x1; \
81 # define get_funcp(fdesc) ((template_t) ((fdesc).code | (fdesc).is_thumb))
86 long code; member in struct:fdesc
88 # define get_fdesc(fdesc,func) (fdesc.code = (long) &(func))
89 # define get_funcp(fdesc) ((template_t) (fdesc).code)
184 printf ("old code @ %p, new code @ %p\n", (void *) fdesc.code, mem)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MockKeyboardSwitcher.java 160 public void onPressKey(final int code, final boolean isSinglePointer) {
161 mState.onPressKey(code, isSinglePointer, mAutoCapsState,
165 public void onReleaseKey(final int code, final boolean withSliding) {
166 onReleaseKey(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE);
169 public void onReleaseKey(final int code, final boolean withSliding,
171 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
172 if (mLongPressTimeoutCode == code) {
177 public void onCodeInput(final int code) {
179 if (Constants.isLetterCode(code)) {
180 mAutoCapsState = (code == MockConstants.CODE_AUTO_CAPS_TRIGGER
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha1-thumb.pl 14 # The code does not present direct interest to OpenSSL, because of low
16 # useless one I must say, because 30% or 88 bytes larger ARMv4 code
19 # by over 40%, while code increases by only 10% or 32 bytes. But once
67 $code.=$inline?&common():"\tbl .Lcommon\n";
68 $code.=<<___;
74 $code.=$inline?&rotate():"\tbl .Lrotate\n";
78 $code.=$inline?&common():"\tbl .Lcommon\n";
79 $code.=<<___;
84 $code.=$inline?&rotate():"\tbl .Lrotate\n";
88 $code.=$inline?&common():"\tbl .Lcommon\n"
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-thumb.pl 14 # The code does not present direct interest to OpenSSL, because of low
16 # useless one I must say, because 30% or 88 bytes larger ARMv4 code
19 # by over 40%, while code increases by only 10% or 32 bytes. But once
67 $code.=$inline?&common():"\tbl .Lcommon\n";
68 $code.=<<___;
74 $code.=$inline?&rotate():"\tbl .Lrotate\n";
78 $code.=$inline?&common():"\tbl .Lcommon\n";
79 $code.=<<___;
84 $code.=$inline?&rotate():"\tbl .Lrotate\n";
88 $code.=$inline?&common():"\tbl .Lcommon\n"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.cpp 9 * 1. Redistributions of source code must retain the above copyright
208 UScriptCode code = scriptNameToCode(script); local
209 if (code == USCRIPT_INVALID_CODE)
211 settings()->genericFontFamilySettings().setStandard(family, code);
218 UScriptCode code = scriptNameToCode(script); local
219 if (code == USCRIPT_INVALID_CODE)
221 settings()->genericFontFamilySettings().setSerif(family, code);
228 UScriptCode code = scriptNameToCode(script); local
229 if (code == USCRIPT_INVALID_CODE)
231 settings()->genericFontFamilySettings().setSansSerif(family, code);
238 UScriptCode code = scriptNameToCode(script); local
248 UScriptCode code = scriptNameToCode(script); local
258 UScriptCode code = scriptNameToCode(script); local
268 UScriptCode code = scriptNameToCode(script); local
    [all...]
  /bionic/libc/bionic/
strerror_r.cpp 14 int code; member in struct:Pair
18 static const char* __code_string_lookup(const Pair* strings, int code) {
20 if (strings[i].code == code) {
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/
NativeTemplate.mk 26 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/arm64-v8a/
Android.mk 26 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version

Completed in 2332 milliseconds

<<21222324252627282930>>