| /libcore/luni/src/main/java/java/nio/channels/ |
| Channels.java | 305 public synchronized void write(byte[] source, int offset, int length) 307 // avoid int overflow, check null source 308 if (length + offset > source.length || length < 0 || offset < 0) { 319 ByteBuffer buffer = ByteBuffer.wrap(source, offset, length); 378 public synchronized int write(ByteBuffer source) throws IOException { 382 int bytesRemain = source.remaining(); 387 source.get(buf);
|
| /packages/apps/Mms/src/com/android/mms/ui/ |
| NumberPicker.java | 2 * Copyright (C) 2008 The Android Open Source Project 408 public CharSequence filter(CharSequence source, int start, int end, 411 return mNumberInputFilter.filter(source, start, end, dest, dstart, dend); 413 CharSequence filtered = String.valueOf(source.subSequence(start, end)); 442 public CharSequence filter(CharSequence source, int start, int end, 445 CharSequence filtered = super.filter(source, start, end, dest, dstart, dend); 447 filtered = source.subSequence(start, end);
|
| /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
| Package.java | 2 * Copyright (C) 2009 The Android Open Source Project
85 Package(RepoSource source, Node packageNode, Map<String,String> licenses) {
86 mSource = source;
110 RepoSource source,
135 // If source is null and we can find a source URL in the properties, generate
136 // a dummy source just to store the URL. This allows us to easily remember where
139 if (props != null && source == null && srcUrl != null) {
142 source = new RepoSource(srcUrl, isUser);
144 mSource = source;
[all...] |
| /build/core/combo/arch/arm/ |
| armv4t.mk | 7 # code in assembler source since the bx (branch and exchange) instruction is
|
| /build/tools/apriori/ |
| Android.mk | 1 # Copyright 2005 The Android Open Source Project 42 source.c \
|
| /build/tools/droiddoc/templates/ |
| sample.cs | 19 <p>The file containing the source code shown below is located in the corresponding directory in <code><sdk>/platforms/android-<version>/samples/...</code></p>
|
| /cts/tests/tests/view/src/android/view/cts/ |
| ViewGroup_LayoutParamsTest.java | 2 * Copyright (C) 2008 The Android Open Source Project 103 public MockLayoutParams(LayoutParams source) { 104 super(source);
|
| /cts/tools/signature-tools/test/signature/converter/ |
| ConvertParameterizedTypeTest.java | 2 * Copyright (C) 2009 The Android Open Source Project 44 String source = local 50 IApi api = convert(new CompilationUnit("a.A", source));
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_super/d/ |
| T_invoke_super_16.d | 1 ; Copyright (C) 2008 The Android Open Source Project 15 .source T_invoke_super_16.java
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_super_range/d/ |
| T_invoke_super_range_16.d | 1 ; Copyright (C) 2008 The Android Open Source Project 15 .source T_invoke_super_range_16.java
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_virtual/d/ |
| T_invoke_virtual_16.d | 1 ; Copyright (C) 2008 The Android Open Source Project 15 .source T_invoke_virtual_16.java
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_virtual_range/d/ |
| T_invoke_virtual_range_16.d | 1 ; Copyright (C) 2008 The Android Open Source Project 15 .source T_invoke_virtual_range_16.java
|
| /development/pdk/pndk/config/ |
| config.mk | 2 # directory in the Android source tree
|
| /device/samsung/crespo/alsa-utils/seq/aseqnet/ |
| aseqnet.c | 40 static void init_seq(char *source, char *dest); 88 {"source", 1, NULL, 's'}, 100 char *source = NULL, *dest = NULL; local 116 source = optarg; 137 init_seq(source, dest); 171 printf(_(" -s,--source addr : read from given addr (client:port)\n")); 226 static void init_seq(char *source, char *dest) 276 if (source) { 278 if (snd_seq_parse_address(handle, &addr, source) < 0) { 279 fprintf(stderr, _("invalid source address %s\n"), source) [all...] |
| /external/bluetooth/glib/gio/tests/ |
| simple-async-result.c | 50 callback_func (GObject *source, 54 got_source = source;
|
| /external/chromium/base/ |
| basictypes.h | 2 // Use of this source code is governed by a BSD-style license that can be 265 // bit_cast<Dest,Source> is a template function that implements the 266 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in 316 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy 319 template <class Dest, class Source> 320 inline Dest bit_cast(const Source& source) { 321 // Compile time assertion: sizeof(Dest) == sizeof(Source) 322 // A compile error here means your Dest and Source have different sizes. 323 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1] [all...] |
| /external/chromium/net/http/ |
| http_auth.h | 2 // Use of this source code is governed by a BSD-style license that can be 56 Identity() : source(IDENT_SRC_NONE), invalid(true) { } 58 IdentitySource source; member in struct:net::HttpAuth::Identity
|
| /external/chromium/third_party/icu/public/common/unicode/ |
| ucnv_err.h | 196 const UChar *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon2863 197 const UChar *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */ 212 const char *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon2864 213 const char *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */
|
| unorm.h | 109 * http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm 185 * The source and result buffers must not be the same, nor overlap. 187 * @param source The string to normalize. 188 * @param sourceLength The length of source, or -1 if NUL-terminated. 201 unorm_normalize(const UChar *source, int32_t sourceLength, 238 * @param source string for determining if it is in a normalized format 239 * @param sourcelength length of source to test, or -1 if NUL-terminated 248 unorm_quickCheck(const UChar *source, int32_t sourcelength, 257 * @param srcLength Length of source to test, or -1 if NUL-terminated. 275 * This is semantically equivalent to source.equals(normalize(source, mode)) [all...] |
| /external/chromium/third_party/icu/source/i18n/ |
| format.cpp | 19 // This file was generated from the java source file Format.java 113 // Parses the source string and create the corresponding 117 Format::parseObject(const UnicodeString& source, 124 parseObject(source, result, parsePosition);
|
| /external/chromium/third_party/icu/source/test/cintltst/ |
| cbiditst.c | 441 log_err("Source: %s", src); fputs("\n", stderr); 560 log_err("Source does not map to Result\n"); 608 log_err("Result does not map to Source\n"); 836 log_err("ubidi_writeReordered() destSize and srcSize do not match. Dest Size = %d Source Size = %d\n",destSize,srcSize ); 2163 source[]={ local 2348 source[]={ local 2499 source[]={ local 2551 source[]={ local [all...] |
| cnormtst.c | 146 UChar *source=NULL, *result=NULL; local 152 source=CharsToUChars(canonTests[x][0]); 153 neededLen= unorm_normalize(source, u_strlen(source), UNORM_NFD, 0, NULL, 0, &status); 159 unorm_normalize(source, u_strlen(source), UNORM_NFD, 0, result, resLen, &status); 162 log_err("ERROR in unorm_normalize at %s: %s\n", austrdup(source), myErrorName(status) ); 167 free(source); 175 UChar *source=NULL, *result=NULL; local 181 source=CharsToUChars(compatTests[x][0]) 204 UChar *source=NULL, *result=NULL; local 233 UChar *source=NULL, *result=NULL; local [all...] |
| /external/icu4c/common/unicode/ |
| ucnv_err.h | 196 const UChar *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon3990 197 const UChar *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */ 212 const char *source; /**< Pointer to the source source buffer. @stable ICU 2.0 */ member in struct:__anon3991 213 const char *sourceLimit; /**< Pointer to the limit (end + 1) of source buffer. @stable ICU 2.0 */
|
| unorm.h | 115 * http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm 191 * The source and result buffers must not be the same, nor overlap. 193 * @param source The string to normalize. 194 * @param sourceLength The length of source, or -1 if NUL-terminated. 207 unorm_normalize(const UChar *source, int32_t sourceLength, 223 * @param source string for determining if it is in a normalized format 224 * @param sourcelength length of source to test, or -1 if NUL-terminated 233 unorm_quickCheck(const UChar *source, int32_t sourcelength, 242 * @param srcLength Length of source to test, or -1 if NUL-terminated. 260 * This is semantically equivalent to source.equals(normalize(source, mode)) [all...] |
| /external/icu4c/i18n/ |
| format.cpp | 19 // This file was generated from the java source file Format.java 131 // Parses the source string and create the corresponding 135 Format::parseObject(const UnicodeString& source, 142 parseObject(source, result, parsePosition);
|