/external/chromium_org/third_party/WebKit/Source/core/html/ |
MediaKeyError.idl | 7 * 1. Redistributions of source code must retain the above copyright 35 readonly attribute unsigned short code;
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
WebSocketStreamError.cpp | 8 * * Redistributions of source code must retain the above copyright 41 void WebSocketStreamError::assign(int code, const WebString& message) 43 m_private = SocketStreamError::create(code, message);
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLError.idl | 8 * 1. Redistributions of source code must retain the above copyright 32 readonly attribute unsigned long code;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebGeolocationError.cpp | 8 * 1. Redistributions of source code must retain the above copyright 36 void WebGeolocationError::assign(Error code, const WebString& message) 38 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message);
|
/external/chromium_org/third_party/skia/src/core/ |
SkGlyph.h | 4 * Use of this source code is governed by a BSD-style license that can be 78 unsigned code = ID2Code(fID); local 79 SkASSERT(code >= baseGlyphCount); 80 return code - baseGlyphCount; 134 static uint32_t MakeID(unsigned code) { 135 return code; 138 static uint32_t MakeID(unsigned code, SkFixed x, SkFixed y) { 139 SkASSERT(code <= kCodeMask); 144 code;
|
/external/chromium_org/tools/android/findbugs_plugin/src/org/chromium/tools/findbugs/plugin/ |
SynchronizedMethodDetector.java | 2 // Use of this source code is governed by a BSD-style license that can be 11 import org.apache.bcel.classfile.Code; 25 public void visit(Code code) { 32 super.visit(code);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
RegisterMapper.java | 19 import com.android.dx.rop.code.RegisterSpec; 20 import com.android.dx.rop.code.RegisterSpecList;
|
/external/skia/src/core/ |
SkGlyph.h | 4 * Use of this source code is governed by a BSD-style license that can be 78 unsigned code = ID2Code(fID); local 79 SkASSERT(code >= baseGlyphCount); 80 return code - baseGlyphCount; 134 static uint32_t MakeID(unsigned code) { 135 return code; 138 static uint32_t MakeID(unsigned code, SkFixed x, SkFixed y) { 139 SkASSERT(code <= kCodeMask); 144 code;
|
/external/tcpdump/ |
print-eap.c | 5 * modification, are permitted provided that: (1) source code distributions 7 * distributions including binary code include the above copyright notice and 43 unsigned char code; member in struct:eap_packet_t 62 ND_PRINT((ndo, "EAP code=%u id=%u length=%u ", 63 eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]));
|
/external/v8/src/ |
type-info.cc | 6 // * Redistributions of source code must retain the above copyright 31 #include "code-stubs.h" 62 TypeFeedbackOracle::TypeFeedbackOracle(Handle<Code> code, 67 BuildDictionary(code); 84 Handle<Code> code = Handle<Code>::cast(map_or_code); local 85 return code->is_inline_cache_stub() && code->ic_state() == UNINITIALIZED 95 Handle<Code> code = Handle<Code>::cast(map_or_code); local 109 Handle<Code> code = Handle<Code>::cast(map_or_code); local 123 Handle<Code> code = Handle<Code>::cast(map_or_code); local 141 Handle<Code> code = Handle<Code>::cast(map_or_code); local 186 Handle<Code> code = Handle<Code>::cast(map_or_code); local 201 Handle<Code> code = Handle<Code>::cast(map_or_code); local [all...] |
/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
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/ |
InstrumentationRunListener.java | 44 public void sendStatus(int code, Bundle bundle) { 45 getInstrumentation().sendStatus(code, bundle);
|
/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...] |
/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...] |
/external/chromium/net/base/ |
gzip_filter_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 84 int code = CompressAll(ENCODE_DEFLATE , source_buffer(), source_len(), local 86 ASSERT_TRUE(code == Z_STREAM_END); 95 code = CompressAll(ENCODE_GZIP, source_buffer(), source_len(), 97 ASSERT_TRUE(code == Z_STREAM_END); 114 // other zlib error code if fail. 121 int code; local 125 code = deflateInit2(&zlib_stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 130 code = deflateInit(&zlib_stream, Z_DEFAULT_COMPRESSION); 133 if (code != Z_OK 182 int code = Filter::FILTER_OK; local 347 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 370 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 390 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local [all...] |
/external/chromium_org/net/base/ |
gzip_filter_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 79 int code = CompressAll(ENCODE_DEFLATE , source_buffer(), source_len(), local 81 ASSERT_TRUE(code == Z_STREAM_END); 90 code = CompressAll(ENCODE_GZIP, source_buffer(), source_len(), 92 ASSERT_TRUE(code == Z_STREAM_END); 109 // other zlib error code if fail. 116 int code; local 120 code = deflateInit2(&zlib_stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 125 code = deflateInit(&zlib_stream, Z_DEFAULT_COMPRESSION); 128 if (code != Z_OK 177 int code = Filter::FILTER_OK; local 342 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 365 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 385 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/ |
Response.java | 38 private final int code; field in class:Response 45 this.code = builder.code; 56 * may have added its own {@code Content-Encoding} header to enable 67 public int code() { method in class:Response 68 return code; 171 private final int code; field in class:Response.Builder 176 public Builder(Request request, int code) { 178 if (code <= 0) throw new IllegalArgumentException("code <= 0") [all...] |
/system/core/libsysutils/src/ |
SocketClient.cpp | 53 int SocketClient::sendMsg(int code, const char *msg, bool addErrno) { 54 return sendMsg(code, msg, addErrno, mUseCmdNum); 57 int SocketClient::sendMsg(int code, const char *msg, bool addErrno, bool useCmdNum) { 63 ret = asprintf(&buf, "%d %d %s (%s)", code, getCmdNum(), msg, strerror(errno)); 65 ret = asprintf(&buf, "%d %s (%s)", code, msg, strerror(errno)); 69 ret = asprintf(&buf, "%d %d %s", code, getCmdNum(), msg); 71 ret = asprintf(&buf, "%d %s", code, msg); 82 /** send 3-digit code, null, binary-length, binary data */ 83 int SocketClient::sendBinaryMsg(int code, const void *data, int len) { 85 /* 4 bytes for the code & null + 4 bytes for the len * [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...] |