| /external/icu4c/test/intltest/ |
| itercoll.cpp | 52 UnicodeString source; local 56 source.remove(); 61 source += codepoint; 66 source += codepoint; 71 iter = en_us->createCollationElementIterator(source); 94 UnicodeString source; local 106 source = "abchdcba"; 107 iter = c1->createCollationElementIterator(source); 123 source = "abcd"; 124 iter = c2->createCollationElementIterator(source); [all...] |
| tufmtts.cpp | 66 TimeUnitAmount* source = new TimeUnitAmount(tests[i], j, status); local 70 formattable.adoptObject(source);
|
| /external/icu4c/tools/toolutil/ |
| pkg_gencmn.c | 99 addFile(const char *filename, const char *name, const char *source, UBool sourceTOC, UBool verbose); 108 pathToFullPath(const char *path, const char *source); 116 createCommonDataFile(const char *destDir, const char *name, const char *entrypointName, const char *type, const char *source, const char *copyRight, 145 if (source == NULL) { 146 source = "."; 161 printf("generating %s_%s.c (table of contents source file)\n", name, type); 203 addFile(getLongPathname(line), name, source, sourceTOC, verbose); local 306 /* write a .c source file with the table of contents */ 336 /* write the source file */ 340 " * Automatically generated by icu/source/tools/gencmn/gencmn .\n [all...] |
| /external/ipsec-tools/ |
| setup.c | 2 * Copyright (C) 2011 The Android Open Source Project 62 static struct sockaddr *source; variable in typeref:struct:sockaddr 110 source = getlocaladdr(targets[0]); 111 if (!source) { 116 set_port(source, 0); 118 myaddrs[0].addr = dupsaddr(source); 256 /* Also use the source address to filter policies. */ 449 spdadd(source, targets[0], IPPROTO_UDP, NULL, NULL); 455 spdadd(source, targets[0], IPPROTO_UDP, NULL, NULL); 511 isakmp_ph1begin_i(remoteconf, remoteconf->remote, source); [all...] |
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| MultiType.java | 149 MultiType source = mergeSource; local 150 while (source != null) { 151 source.interfaces = interfaces; 152 source.potentialClass = potentialClass; 153 source = source.mergeSource; 158 MultiType source = mergeSource; local 159 while (source != null) { 160 source.resolved = resolved; 161 source = source.mergeSource [all...] |
| /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
| KernelAdapter.java | 5 * Redistribution and use in source and binary forms, with or without 9 * * Redistributions of source code must retain the above copyright 175 HostedConnection source = getConnection(p); local 176 if( source == null ) { 184 messageDispatcher.messageReceived( source, m );
|
| /external/jpeg/ |
| rdbmp.c | 48 /* Private version of data source object */ 60 JDIMENSION source_row; /* Current source row number */ 122 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 123 register JSAMPARRAY colormap = source->colormap; 130 source->source_row--; 132 ((j_common_ptr) cinfo, source->whole_image, 133 source->source_row, (JDIMENSION) 1, FALSE); 137 outptr = source->pub.buffer[0]; 153 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 159 source->source_row-- 189 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 243 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 425 bmp_source_ptr source; local [all...] |
| rdtarga.c | 44 /* Private version of data source object */ 177 tga_source_ptr source = (tga_source_ptr) sinfo; local 181 ptr = source->pub.buffer[0]; 183 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ 184 *ptr++ = (JSAMPLE) UCH(source->tga_pixel[0]); 193 tga_source_ptr source = (tga_source_ptr) sinfo; local 197 register JSAMPARRAY colormap = source->colormap; 199 ptr = source->pub.buffer[0]; 201 (*source->read_pixel) (source); /* Load next pixel into tga_pixel * 214 tga_source_ptr source = (tga_source_ptr) sinfo; local 242 tga_source_ptr source = (tga_source_ptr) sinfo; local 275 tga_source_ptr source = (tga_source_ptr) sinfo; local 302 tga_source_ptr source = (tga_source_ptr) sinfo; local 335 tga_source_ptr source = (tga_source_ptr) sinfo; local 486 tga_source_ptr source; local [all...] |
| /external/kernel-headers/original/linux/ |
| if_arcnet.h | 112 uint8_t source, /* source ARCnet - filled in automagically */ member in struct:arc_hardware
|
| media.h | 112 struct media_pad_desc source; member in struct:media_link_desc
|
| /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
| PhoneNumberOfflineGeocoder.java | 61 InputStream source = local 65 in = new ObjectInputStream(source); 87 InputStream source = local 91 in = new ObjectInputStream(source);
|
| /external/libvpx/libvpx/vpx_scale/win32/ |
| scaleopt.c | 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 8 * be found in the AUTHORS file in the root of the source tree. 47 * INPUTS : const unsigned char *source : 64 const unsigned char *source, 75 mov esi, source 178 * INPUTS : const unsigned char *source : 195 const unsigned char *source, 204 mov esi, source 337 mov esi, dest // Get the source and destination pointe 1259 mov esi, source; local 1407 mov esi, source; local [all...] |
| /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
| ChangeTimeScaleTrack.java | 36 Track source; field in class:ChangeTimeScaleTrack 42 * Changes the time scale of the source track to the target time scale and makes sure 45 * @param source the source track 49 public ChangeTimeScaleTrack(Track source, long targetTimeScale, long[] syncSamples) { 50 this.source = source; 52 double timeScaleFactor = (double) targetTimeScale / source.getTrackMetaData().getTimescale(); 53 ctts = adjustCtts(source.getCompositionTimeEntries(), timeScaleFactor); 54 tts = adjustTts(source.getDecodingTimeEntries(), timeScaleFactor, syncSamples, getTimes(source, syncSamples, targetTimeSc (…) [all...] |
| /external/openfst/src/include/fst/ |
| shortest-path.h | 68 // 'ifst'. 'distance' returns the shortest distances from the source 99 StateId source = opts.source == kNoStateId ? ifst.Start() : opts.source; local 125 while (distance->size() < source) { 134 state_queue->Enqueue(source); 391 // the shortest distances from the source state to each state in
|
| /external/openssl/apps/ |
| passwd.c | 378 int dest, source; local 382 for (dest = 0, source = 0; dest < 14; dest++, source = (source + 6) % 17) 383 buf_perm[dest] = buf[source];
|
| /external/protobuf/src/google/protobuf/ |
| repeated_field_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 215 RepeatedField<int> source, destination; local 217 source.Add(4); 218 source.Add(5); 224 destination.MergeFrom(source); 519 RepeatedPtrField<string> source, destination; local 521 source.Add()->assign("4"); 522 source.Add()->assign("5"); 528 destination.MergeFrom(source); [all...] |
| unknown_field_set_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 281 unittest::TestEmptyMessage source, destination; local 285 source.mutable_unknown_fields()->AddVarint(2, 3); 286 source.mutable_unknown_fields()->AddVarint(3, 4); 288 destination.MergeFrom(source); 309 unittest::TestEmptyMessage source; local 310 source.mutable_unknown_fields()->AddVarint(123456, 654321); 312 ASSERT_TRUE(source.SerializeToString(&data));
|
| wire_format_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 79 unittest::TestAllTypes source, dest; local 83 TestUtil::SetAllFields(&source); 84 source.SerializeToString(&data); 96 unittest::TestAllExtensions source, dest; local 100 TestUtil::SetAllExtensions(&source); 101 source.SerializeToString(&data); 113 unittest::TestPackedTypes source, dest; local 117 TestUtil::SetPackedFields(&source); 131 unittest::TestUnpackedTypes source; local 147 unittest::TestPackedTypes source; local 162 unittest::TestPackedExtensions source, dest; local 316 unittest::TestFieldOrderings source; local [all...] |
| /external/qemu/audio/ |
| paaudio.c | 70 char *source; member in struct:__anon13139 396 conf.source, 583 .name = "SOURCE", 585 .valp = &conf.source, 586 .descr = "source device name"
|
| /external/qemu/distrib/jpeg-6b/ |
| rdbmp.c | 48 /* Private version of data source object */ 60 JDIMENSION source_row; /* Current source row number */ 122 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 123 register JSAMPARRAY colormap = source->colormap; 130 source->source_row--; 132 ((j_common_ptr) cinfo, source->whole_image, 133 source->source_row, (JDIMENSION) 1, FALSE); 137 outptr = source->pub.buffer[0]; 153 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 159 source->source_row-- 189 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 243 bmp_source_ptr source = (bmp_source_ptr) sinfo; local 425 bmp_source_ptr source; local [all...] |
| rdtarga.c | 44 /* Private version of data source object */ 177 tga_source_ptr source = (tga_source_ptr) sinfo; local 181 ptr = source->pub.buffer[0]; 183 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ 184 *ptr++ = (JSAMPLE) UCH(source->tga_pixel[0]); 193 tga_source_ptr source = (tga_source_ptr) sinfo; local 197 register JSAMPARRAY colormap = source->colormap; 199 ptr = source->pub.buffer[0]; 201 (*source->read_pixel) (source); /* Load next pixel into tga_pixel * 214 tga_source_ptr source = (tga_source_ptr) sinfo; local 242 tga_source_ptr source = (tga_source_ptr) sinfo; local 275 tga_source_ptr source = (tga_source_ptr) sinfo; local 302 tga_source_ptr source = (tga_source_ptr) sinfo; local 335 tga_source_ptr source = (tga_source_ptr) sinfo; local 486 tga_source_ptr source; local [all...] |
| /external/quake/quake/src/WinQuake/ |
| cl_parse.cpp | 634 byte *dest, *source; local 639 source = vid.colormap; 647 for (i=0 ; i<VID_GRADES ; i++, dest += 256, source+=256) 650 memcpy (dest + TOP_RANGE, source + top, 16); 653 dest[TOP_RANGE+j] = source[top+15-j]; 656 memcpy (dest + BOTTOM_RANGE, source + bottom, 16); 659 dest[BOTTOM_RANGE+j] = source[bottom+15-j];
|
| /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
| ShadowImageView.java | 156 String source = attributeSet.getAttributeValue("android", "src"); local 157 if (source != null) { 158 if (source.startsWith("@drawable/")) {
|
| /external/srec/tools/thirdparty/OpenFst/fst/lib/ |
| shortest-path.h | 51 // 'ifst'. 'distance' returns the shortest distances from the source 81 StateId source = opts.source == kNoStateId ? ifst.Start() : opts.source; local 95 while (distance->size() < source) { 104 state_queue->Enqueue(source); 145 (*distance)[source] = Weight::One(); 146 parent[source] = kNoStateId; 208 // the shortest distances from the source state to each state in
|
| /external/v8/preparser/ |
| preparser-process.cc | 2 // Redistribution and use in source and binary forms, with or without 6 // * Redistributions of source code must retain the above copyright 42 // The first argument must be the path of a JavaScript source file, or 43 // the flags "-e" and the next argument is then the source of a JavaScript 52 // This source file is preparsed and tested against the expectations, and if 55 // The source file must contain only ASCII characters (UTF-8 isn't supported). 103 bool ReadBuffer(FILE* source, void* buffer, size_t length) { 104 size_t actually_read = fread(buffer, 1, length, source); 299 // Format: preparser (<scriptfile> | -e "<source>") 309 const uint8_t* source = NULL local [all...] |