/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
xml.py | 25 from __future__ import absolute_import 27 from xml.parsers import expat
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
bugfortest.py | 14 # contributors may be used to endorse or promote products derived from 29 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand 30 from webkitpy.tool.bot.flakytestreporter import FlakyTestReporter
|
openbugs_unittest.py | 14 # contributors may be used to endorse or promote products derived from 29 from webkitpy.tool.commands.commandtest import CommandsTest 30 from webkitpy.tool.commands.openbugs import OpenBugs
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
applypatchwithlocalcommit.py | 14 # contributors may be used to endorse or promote products derived from 29 from webkitpy.tool.steps.applypatch import ApplyPatch 30 from webkitpy.tool.steps.options import Options
|
preparechangelogfordepsroll.py | 14 # contributors may be used to endorse or promote products derived from 31 from webkitpy.common.checkout.changelog import ChangeLog 32 from webkitpy.tool.steps.abstractstep import AbstractStep
|
/external/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_udp.c | 35 * ctrl_iface_udp.c and should not be touched directly from other files. 60 struct sockaddr_in *from, 68 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_in)); 74 inet_ntoa(from->sin_addr), ntohs(from->sin_port)); 80 struct sockaddr_in *from, 87 if (from->sin_addr.s_addr == dst->addr.sin_addr.s_addr && 88 from->sin_port == dst->addr.sin_port) { 95 "%s:%d", inet_ntoa(from->sin_addr), 96 ntohs(from->sin_port)) 159 struct sockaddr_in from; local 439 struct sockaddr_in from; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface_udp.c | 29 * ctrl_iface_udp.c and should not be touched directly from other files. 54 struct sockaddr_in *from, 62 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_in)); 68 inet_ntoa(from->sin_addr), ntohs(from->sin_port)); 74 struct sockaddr_in *from, 81 if (from->sin_addr.s_addr == dst->addr.sin_addr.s_addr && 82 from->sin_port == dst->addr.sin_port) { 89 "%s:%d", inet_ntoa(from->sin_addr), 90 ntohs(from->sin_port)) 153 struct sockaddr_in from; local 433 struct sockaddr_in from; local [all...] |
/hardware/ti/wlan/wl1271/platforms/os/linux/src/ |
stack_profile.c | 19 * from this software without specific prior written permission. 67 unsigned long from, to; local 69 to = check_stack(&from); 70 *base = from; 82 /* run from the stack pointer down to the base */ 83 for(i=from;(i < to);i+=4) { 87 /*printk("check_stack_start: from=%x to=%x data=%x\n",from,to,*(long *)(from+4));*/ 94 unsigned long from, to local [all...] |
/ndk/tests/build/project-properties/jni/ |
Android.mk | 6 $(call ndk_log,Test OK: Correct target platform retrieved from project.properties: $(TARGET_PLATFORM))
|
/external/guava/guava/src/com/google/common/io/ |
Files.java | 65 * Returns a buffered reader that reads from a file using the given 68 * @param file the file to read from 94 * that read from a file. 96 * @param file the file to read from 146 * @param file the file to read from 185 * Reads all bytes from a file into a byte array. 187 * @param file the file to read from 188 * @return a byte array containing all the bytes from file 214 * Reads all characters from a file into a {@link String}, using the given 217 * @param file the file to read from [all...] |
/bionic/libc/kernel/arch-mips/asm/ |
uaccess.h | 4 *** This header was automatically generated from a Linux kernel header 7 *** structures, and macros generated from the original header, and thus, 67 #define __invoke_copy_to_user(to, from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r __asm__("$5"); register long __cu_len_r __asm__("$6"); __cu_to_r = (to); __cu_from_r = (from); __cu_len_r = (n); __asm__ __volatile__( __MODULE_JAL(__copy_user) : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) : : "$8", "$9", "$10", "$11", "$12", "$15", "$24", "$31", DADDI_SCRATCH, "memory"); __cu_len_r; }) 69 #define __copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_sleep(); __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 70 #define __copy_to_user_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 71 #define __copy_from_user_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_from_user_inatomic(__cu_to, __cu_from, __cu_len); (…) [all...] |
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
uaccess.h | 4 *** This header was automatically generated from a Linux kernel header 7 *** structures, and macros generated from the original header, and thus, 67 #define __invoke_copy_to_user(to, from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r __asm__("$5"); register long __cu_len_r __asm__("$6"); __cu_to_r = (to); __cu_from_r = (from); __cu_len_r = (n); __asm__ __volatile__( __MODULE_JAL(__copy_user) : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) : : "$8", "$9", "$10", "$11", "$12", "$15", "$24", "$31", DADDI_SCRATCH, "memory"); __cu_len_r; }) 69 #define __copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_sleep(); __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 70 #define __copy_to_user_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 71 #define __copy_from_user_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_from_user_inatomic(__cu_to, __cu_from, __cu_len); (…) [all...] |
/external/valgrind/main/VEX/priv/ |
host_s390_disasm.c | 98 opcodes/s390-opc.txt (from binutils) that have a '$' in their name. */ 103 const HChar *from; local 111 /* strcpy(buf, from); */ 112 for (from = base, to = buf; *from; ++from, ++to) { 113 *to = *from; 116 for (from = suffix[mask >> 1]; *from; ++from, ++to) 130 const HChar *from; local [all...] |
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/ |
uaccess.h | 4 *** This header was automatically generated from a Linux kernel header 7 *** structures, and macros generated from the original header, and thus, 67 #define __invoke_copy_to_user(to, from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r __asm__("$5"); register long __cu_len_r __asm__("$6"); __cu_to_r = (to); __cu_from_r = (from); __cu_len_r = (n); __asm__ __volatile__( __MODULE_JAL(__copy_user) : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) : : "$8", "$9", "$10", "$11", "$12", "$15", "$24", "$31", DADDI_SCRATCH, "memory"); __cu_len_r; }) 69 #define __copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_sleep(); __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 70 #define __copy_to_user_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 71 #define __copy_from_user_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_from_user_inatomic(__cu_to, __cu_from, __cu_len); (…) [all...] |
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/ |
uaccess.h | 4 *** This header was automatically generated from a Linux kernel header 7 *** structures, and macros generated from the original header, and thus, 67 #define __invoke_copy_to_user(to, from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r __asm__("$5"); register long __cu_len_r __asm__("$6"); __cu_to_r = (to); __cu_from_r = (from); __cu_len_r = (n); __asm__ __volatile__( __MODULE_JAL(__copy_user) : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) : : "$8", "$9", "$10", "$11", "$12", "$15", "$24", "$31", DADDI_SCRATCH, "memory"); __cu_len_r; }) 69 #define __copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_sleep(); __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 70 #define __copy_to_user_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, __cu_len); __cu_len; }) 71 #define __copy_from_user_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; __cu_to = (to); __cu_from = (from); __cu_len = (n); __cu_len = __invoke_copy_from_user_inatomic(__cu_to, __cu_from, __cu_len); (…) [all...] |
/cts/suite/audio_quality/test_description/conf/ |
check_conf.py | 20 from numpy import *
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
ExportedProperty.java | 11 IntToString[] mapping() default { @IntToString(from = -1, to = "-1") };
|
/dalvik/vm/mterp/armv5te/ |
OP_NOP.S | 3 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
compat.py | 18 # derived from this software without specific prior written permission. 37 from sets import Set as set, ImmutableSet as frozenset
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testdottreegen.py | 5 from StringIO import StringIO 10 from antlr3.dottreegen import toDOT 11 from antlr3.treewizard import TreeWizard 12 from antlr3.tree import CommonTreeAdaptor
|
/external/chromium/testing/gmock/scripts/generator/ |
gmock_gen.py | 28 from cpp import gmock_class
|
/external/clang/bindings/python/tests/cindex/ |
test_file.py | 0 from clang.cindex import Index, File
|
/external/iptables/include/linux/netfilter/ |
xt_connbytes.h | 20 aligned_u64 from; /* count to be matched */ member in struct:xt_connbytes_info::__anon7484
|
/external/llvm/utils/lit/ |
setup.py | 4 from setuptools import setup, find_packages
|
/external/openssl/crypto/rsa/ |
rsa_ssl.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 37 * 4. If you include any Windows specific code (or a derivative thereof) from 66 const unsigned char *from, int flen) 101 memcpy(p,from,(unsigned int)flen); 106 const unsigned char *from, int flen, int num) 111 p=from;
|