/external/bison/lib/ |
bbitset.h | 34 BITSET_LIST: Linked list of arrays of bits (variable size, least storage 150 bitset_bindex (*list) (bitset, bitset_bindex *, bitset_bindex, member in struct:bitset_vtable 269 /* Find list of up to NUM bits set in BSET starting from and including 272 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \ 273 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT) 275 /* Find reverse list of up to NUM bits set in BSET starting from and 278 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \ 279 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
|
bitset.h | 70 struct lbitset_elt_struct *head; /* First element in linked list. */ 71 struct lbitset_elt_struct *tail; /* Last element in linked list. */ 93 bitset_bindex list[BITSET_LIST_SIZE]; member in struct:__anon7155 270 /* Find list of up to NUM bits set in BSET starting from and including 273 #define bitset_list(BSET, LIST, NUM, NEXT) \ 274 BITSET_LIST_ (BSET, LIST, NUM, NEXT) 276 /* Find reverse list of up to NUM bits set in BSET starting from and 279 #define bitset_list_reverse(BSET, LIST, NUM, NEXT) \ 280 BITSET_LIST_REVERSE_ (BSET, LIST, NUM, NEXT) 318 && (ITER.num = bitset_list (BSET, ITER.list, \ [all...] |
/frameworks/base/cmds/settings/src/com/android/commands/settings/ |
SettingsCmd.java | 35 import java.util.List; 44 LIST, 92 } else if ("list".equalsIgnoreCase(arg)) { 93 mVerb = CommandVerb.LIST; 107 if (mVerb == CommandVerb.LIST) { 166 case LIST: 191 private List<String> listForUser(IContentProvider provider, int userHandle, String table) { 214 System.err.println("List failed in " + table + " for user " + userHandle); 299 System.err.println(" settings [--user <USER_ID> | current] list namespace");
|
/hardware/ti/omap4xxx/security/tf_daemon/ |
smc_properties_parser.c | 9 * notice, this list of conditions and the following disclaimer. 11 * notice, this list of conditions and the following disclaimer in 164 /* update linked list */ 184 /* update linked list */ 202 static S_RESULT SMCPropListSortedAdd(LIST* pList,NODE* pNode) 223 /* update the first node of the linked list */ 233 static NODE* SMCPropListFindElement(LIST* pList,char* pName,bool bIsCaseSensitive) 247 LIST *pPublicPropertyList=NULL; 248 LIST *pPrivatePropertyList=NULL;
|
/external/valgrind/callgrind/ |
callgrind_control.in | 30 open LIST, "vgdb $vgdbPrefixOption -l|"; 31 while(<LIST>) { 44 close LIST; 190 # To find the list of active pids, we need to have
|
/build/core/ |
cleanspec.mk | 33 # of the list. These steps will only be run once, if they haven't been 47 # the command and add it to the bottom of the list. E.g., if a change 50 # touch step and add it to the end of the list. 53 # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST 63 # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/ |
StubFtpServer.java | 30 * server commands (e.g. RETR, DELE, LIST). These handlers implement the {@link CommandHandler}
112 setCommandHandler(CommandNames.LIST, new ListCommandHandler());
|
/hardware/ti/omap4-aah/security/tf_daemon/ |
smc_properties_parser.c | 9 * notice, this list of conditions and the following disclaimer. 11 * notice, this list of conditions and the following disclaimer in 165 /* update linked list */ 185 /* update linked list */ 203 static S_RESULT SMCPropListSortedAdd(LIST* pList,NODE* pNode) 224 /* update the first node of the linked list */ 234 static NODE* SMCPropListFindElement(LIST* pList,char* pName,bool bIsCaseSensitive) 248 LIST *pPublicPropertyList=NULL; 249 LIST *pPrivatePropertyList=NULL;
|
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
ImapConstants.java | 63 public static final String LIST = "LIST";
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/imap/ |
ImapConstants.java | 63 public static final String LIST = "LIST";
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
ListCommandHandlerTest.groovy | 119 return new Command(CommandNames.LIST, [DIR])
|
/platform_testing/tests/functional/downloadapp/src/com/android/functional/downloadapp/ |
DownloadAppTests.java | 118 String.format("%s:id/%s", DownloadAppTestHelper.PACKAGE_NAME, UIViewType.LIST))), 124 mDLAppHelper.verifyDownloadViewType(UIViewType.LIST);
|
/ndk/build/tools/ |
common-build-host-funcs.sh | 30 # List of macros defined by the functions here: 201 # $2... is the list to search in 210 local LIST 211 LIST=$@ 214 for ELEMENT in $LIST; do 767 register_var_option "--systems=<list>" BH_HOST_SYSTEMS "Build binaries that run on these systems."
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
arg.h | 113 struct isl_arg name ## LIST[]; \ 114 struct isl_args name = { sizeof(s), name ## LIST }; \ 115 struct isl_arg name ## LIST[] = {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/ |
arg.h | 113 struct isl_arg name ## LIST[]; \ 114 struct isl_args name = { sizeof(s), name ## LIST }; \ 115 struct isl_arg name ## LIST[] = {
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
list.h | 1 /* $NetBSD: list.h,v 1.5 2009/04/12 17:07:16 christos Exp $ */ 24 #define LIST(type) struct { type *head, *tail; } 25 #define INIT_LIST(list) \ 26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0) 39 #define HEAD(list) ((list).head) 40 #define TAIL(list) ((list).tail) 41 #define EMPTY(list) ((list).head == NULL [all...] |
/external/mesa3d/src/glsl/ |
s_expression.cpp | 110 s_list *list = new(ctx) s_list; local 114 list->subexpressions.push_tail(expr); 123 return list; 182 case LIST: if (expr->is_list()) *p_list = (s_list *) expr; break; 199 s_list *list = SX_AS_LIST(top); local 200 if (list == NULL) 204 foreach_iter(exec_list_iterator, it, list->subexpressions) {
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
FakeFtpServer.java | 28 import java.util.List;
184 setCommandHandler(CommandNames.LIST, new ListCommandHandler());
267 * @param userAccountList - the List of UserAccount objects to add
269 public void setUserAccounts(List userAccountList) {
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
firmware_constants.py | 38 AXIS.LIST = [AXIS.X, AXIS.Y] 46 DEV.DEVICE_TYPE_LIST = list(DEV.__dict__.values()) 156 # GESTURE_PLAY_MODE is a list of all attributes above 157 MODE.GESTURE_PLAY_MODE = list(MODE.__dict__.values()) 202 PLATFORM.LIST = [PLATFORM.ALEX, PLATFORM.LUMPY, PLATFORM.LINK] 255 # SEGMENT_LIST is a list of all attributes above 256 VAL.SEGMENT_LIST = list(VAL.__dict__.values())
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree-pass.h | 60 /* A list of sub-passes to run, dependent on gate predicate. */ 63 /* Next in the list of passes to run, independent of gate predicate. */ 496 /* Define a list of pass lists so that both passes.c and plugins can easily 505 #define DEF_PASS_LIST(LIST) PASS_LIST_NO_##LIST,
|
/external/mdnsresponder/mDNSShared/ |
DebugServices.h | [all...] |
/packages/apps/Email/provider_src/com/android/email/mail/store/ |
ImapStore.java | 60 import java.util.List; 194 * @param capabilities a list of the capabilities from the server 266 // the format of the IMAP ID list. 409 * Persists the folders in the given list. 428 String imapCommand = ImapConstants.LIST + " \"\" \"*\""; 430 imapCommand = ImapConstants.LIST + " \"\" \"" + mPathPrefix + "*\""; 432 List<ImapResponse> responses = connection.executeSimpleCommand(imapCommand); 434 // S: * LIST (\Noselect) "/" ~/Mail/foo 435 if (response.isDataResponse(0, ImapConstants.LIST)) { 470 throw new MessagingException("Unable to get folder list", ioe) [all...] |
ImapConnection.java | 41 import java.util.List; 301 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, 326 List<ImapResponse> executeSimpleCommand(String command) throws IOException, MessagingException { 333 * @return a list of ImapResponses 337 List<ImapResponse> getCommandResponses() throws IOException, MessagingException { 338 final List<ImapResponse> responses = new ArrayList<ImapResponse>(); 368 * @return a list of ImapResponses 372 List<ImapResponse> executeSimpleCommand(String command, boolean sensitive) 384 * @param commands a list of strings that comprise the command to be sent to the server 386 * @return a list of ImapResponse [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/ |
StubFtpServerIntegrationTest.java | 113 * Test the LIST and SYST commands.
119 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
123 // LIST
128 verifyReplyCode("list", 226);
132 * Test the LIST, PASV and SYST commands, transferring a directory listing in passive mode
140 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
143 // LIST
146 verifyReplyCode("list", 226);
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/ |
StubFtpServerIntegrationTest.java | 131 * Test the LIST and SYST commands.
137 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
141 // LIST
146 verifyReplyCode("list", 226);
150 * Test the LIST, PASV and SYST commands, transferring a directory listing in passive mode
158 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
161 // LIST
164 verifyReplyCode("list", 226);
|