/external/srec/srec/clib/ |
specnorm.c | 37 int copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base); 278 int copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base) 283 ASSERT(base); 285 ASSERT(base->hist); 286 if (base->low_entry != spec->low_entry || 287 base->high_entry != spec->high_entry) 289 spec->high_counts = base->high_counts; 290 spec->low_counts = base->low_counts; 292 spec->hist[ii] = base->hist[ii];
|
/external/webkit/WebCore/html/ |
HTMLCollection.cpp | 39 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type) 41 , m_base(base) 48 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type, CollectionCache* info) 50 , m_base(base) 57 PassRefPtr<HTMLCollection> HTMLCollection::create(PassRefPtr<Node> base, CollectionType type) 59 return adoptRef(new HTMLCollection(base, type)); 85 static Node* nextNodeOrSibling(Node* base, Node* node, bool includeChildren) 87 return includeChildren ? node->traverseNextNode(base) : node->traverseNextSibling(base);
|
/external/webkit/WebKitTools/CodeCoverage/ |
run-generate-coverage-data | 53 base,ext = os.path.splitext(file) 154 base,ext = os.path.splitext(file) 189 def analyze_coverage(sources,data,dirs,runid,base): 194 base The base directory for files. All files not inside base will be ignored 197 print base 198 gcov = collect_cov(base,dirs) 199 result = cov.analyze_coverage(gcov, sources, runid, data, base)
|
/external/webkit/JavaScriptCore/interpreter/ |
Interpreter.cpp | 216 JSObject* base; local 218 base = *iter; 219 PropertySlot slot(base); 220 if (base->getPropertySlot(callFrame, ident, slot)) { 226 callFrame->r(baseDst) = JSValue(base); [all...] |
/bootable/diskinstaller/ |
config.mk | 24 # $(1): source base dir 25 # $(2): target base dir 51 # $(1): source base dir 52 # $(2): target base dir 98 @echo Copying installer base files...
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
AtomicIntegerFieldUpdaterTest.java | 65 static class Base { 68 static class Sub1 extends Base { 69 AtomicIntegerFieldUpdater<Base> fUpdater 70 = AtomicIntegerFieldUpdater.newUpdater(Base.class, "f"); 72 static class Sub2 extends Base {}
|
AtomicLongFieldUpdaterTest.java | 67 static class Base { 70 static class Sub1 extends Base { 71 AtomicLongFieldUpdater<Base> fUpdater 72 = AtomicLongFieldUpdater.newUpdater(Base.class, "f"); 74 static class Sub2 extends Base {}
|
/development/apps/Development/src/com/android/development/ |
AppHwPref.java | 53 private static final int BASE = 0; 54 private static final int TOUCHSCREEN = BASE + 1; 55 private static final int KEYBOARD_TYPE = BASE + 2; 56 private static final int NAVIGATION = BASE + 3; 57 private static final int GLES_VERSION = BASE + 4;
|
/external/dropbear/debian/ |
implicit | 11 @rm -f $*.deb $*.deb-checkdir $*.deb-docs $*.deb-docs-base \ 23 %.deb-docs-base: 68 %.deb-docs: %.deb-checkdir %.deb-docs-base %.deb-docs-docs %.deb-docs-examples 71 %.deb-DEBIAN-base: 91 %.deb-DEBIAN: %.deb-checkdir %.deb-DEBIAN-base %.deb-DEBIAN-scripts \
|
/external/iproute2/lib/ |
utils.c | 32 int get_integer(int *val, const char *arg, int base) 39 res = strtol(arg, &ptr, base); 61 static int get_netmask(unsigned *val, const char *arg, int base) 65 if (!get_unsigned(val, arg, base)) 81 int get_unsigned(unsigned *val, const char *arg, int base) 88 res = strtoul(arg, &ptr, base); 103 int get_jiffies(unsigned *jiffies, const char *arg, int base, int *raw) 115 res = strtoul(arg,&p,base); 159 int get_u64(__u64 *val, const char *arg, int base) 166 res = strtoull(arg, &ptr, base); [all...] |
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_string.c | 509 long SDL_strtol(const char *string, char **endp, int base) 514 if ( !base ) { 516 base = 16; 518 base = 10; 522 len = SDL_ScanLong(string, base, &value); 531 unsigned long SDL_strtoul(const char *string, char **endp, int base) 536 if ( !base ) { 538 base = 16; 540 base = 10; 544 len = SDL_ScanUnsignedLong(string, base, &value) [all...] |
/external/qemu/hw/ |
arm_boot.c | 62 int initrd_size, target_phys_addr_t base) 66 p = base + KERNEL_ARGS_ADDR; 115 int initrd_size, target_phys_addr_t base) 122 p = base + KERNEL_ARGS_ADDR; 176 while (p < base + KERNEL_ARGS_ADDR + 256 + 1024) {
|
/external/webkit/WebCore/editing/ |
VisibleSelection.cpp | 61 VisibleSelection::VisibleSelection(const Position& base, const Position& extent, EAffinity affinity) 62 : m_base(base) 79 VisibleSelection::VisibleSelection(const VisiblePosition& base, const VisiblePosition& extent) 80 : m_base(base.deepEquivalent()) 82 , m_affinity(base.affinity()) 258 // Make sure we do not have a dangling base or extent. 438 void VisibleSelection::setWithoutValidation(const Position& base, const Position& extent) 440 ASSERT(!base.isNull()); 442 ASSERT(base != extent); 445 m_base = base; [all...] |
/external/webkit/WebKit/chromium/ |
DEPS | 64 'base': 65 Var('chromium_svn')+'/base@'+Var('chromium_rev'), 147 # base.gypi depends on nss on Windows 163 'base', 178 '+base',
|
/frameworks/base/core/java/android/inputmethodservice/ |
AbstractInputMethodService.java | 31 * AbstractInputMethodService provides a abstract base class for input methods. 34 * complete base class. Be sure to read {@link InputMethod} for more 39 * implement. This base class takes care of reporting your InputMethod from 52 * Base class for derived classes to implement their {@link InputMethod} 86 * Base class for derived classes to implement their {@link InputMethodSession}
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
GradientShader.java | 21 * Base class for Gradient shader. This is not a standard android class and is just used 22 * as a base class for the re-implemented gradient classes. 24 * It also provides a base class to handle common code between the different shaders' 37 * Creates the base shader and do some basic test on the parameters. 67 * Base class for (Java) Gradient Paints. This handles computing the gradient colors based
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
BaseImageList.java | 179 Uri base = mBaseUri; local 180 return Util.equals(base.getScheme(), uri.getScheme()) 181 && Util.equals(base.getHost(), uri.getHost()) 182 && Util.equals(base.getAuthority(), uri.getAuthority()) 183 && Util.equals(base.getPath(), getPathWithoutId(uri));
|
/system/core/libpixelflinger/codeflinger/ |
CodeCache.cpp | 71 uint32_t* Assembly::base() const function in class:android::Assembly 137 const long base = long(assembly->base()); local 138 const long curr = base + long(assembly->size()); 139 err = cacheflush(base, curr, 0);
|
/external/libffi/ |
depcomp | 302 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 304 tmpdepfile1=$dir$base.d 305 tmpdepfile2=$dir.libs/$base.d 308 tmpdepfile1=$dir$base.d 309 tmpdepfile2=$dir$base.d 341 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 347 # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. 351 # compilations output dependencies in $dir.libs/$base.o.d and 352 # in $dir$base.o.d. We have to check for both files, because 354 # $dir$base.o.d over $dir.libs/$base.o.d because the latter i [all...] |
/build/tools/apriori/ |
prelink_info.c | 71 void setup_prelink_info(const char *fname, int elf_little, long base) 87 info.mmap_addr = base; 92 info.mmap_addr = switch_endianness(base);
|
/build/tools/soslim/ |
prelink_info.c | 71 void setup_prelink_info(const char *fname, int elf_little, long base) 87 info.mmap_addr = base; 92 info.mmap_addr = switch_endianness(base);
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/ |
Cache.java | 33 * and arrays of bytes on the base of which the Objects have been generated, 35 * the base of particular encoded form or not. If there are such 50 * we conduct the accurate search on the base of whole encoded form. <br> 57 * generated on the base of the encoding with the SIMILAR prefix or not. 64 * already been generated on the base of this PARTICULAR encoded form or not. 76 // value generated on the base of the prefix of encoding 78 // value generated on the base of the tail of encoding 179 * predetermine whether the object was built on the base of the 202 * on the base of encoding with prefix corresponding 207 * on the base of encoding with specified hash code, tru [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/ |
OpenSSLPBEParametersGenerator.java | 84 * @exception IllegalArgumentException if the key length larger than the base hash size. 104 * @exception IllegalArgumentException if keySize + ivSize is larger than the base hash size. 124 * @exception IllegalArgumentException if the key length larger than the base hash size.
|
PKCS5S1ParametersGenerator.java | 60 * @exception IllegalArgumentException if the key length larger than the base hash size. 86 * @exception IllegalArgumentException if keySize + ivSize is larger than the base hash size. 112 * @exception IllegalArgumentException if the key length larger than the base hash size.
|
/development/testrunner/ |
coverage_targets.xml | 43 build_path="frameworks/base"> 55 build_path="frameworks/base/test-runner" type="JAVA_LIBRARIES" /> 100 build_path="frameworks/base/packages/SettingsProvider" type="APPS" />
|