/external/chromium_org/tools/gn/ |
input_conversion.cc | 61 "When parsing a result as a \"value\" it should look like a list:\n" 81 if (value->type() == Value::LIST) { 112 // The result should either be a list or a literal, anything else is 143 Value ret(origin, Value::LIST); 167 " \"list lines\"\n" 168 " Return the file contents as a list, with a string for each line.\n" 170 " will be trimmed from the trailing end of the returned list.\n" 175 " [ \"foo\", \"bar\" ] (result will be a list)\n" 199 if (input_conversion == "list lines")
|
value_extractors.cc | 25 "You can't list a system-absolute file path here. Please include " 67 if (!value.VerifyTypeIs(Value::LIST, err))
|
function_exec_script.cc | 155 " A list of strings to be passed to the script as arguments.\n" 162 " (Optional) A list of files that this script reads or otherwise\n" 168 " need to list it.\n" 172 " all_lines = exec_script(\"myscript.py\", [some_input], \"list lines\",\n" 206 if (!deps_value.VerifyTypeIs(Value::LIST, err)) 223 if (!script_args.VerifyTypeIs(Value::LIST, err))
|
pattern.cc | 160 if (v.type() != Value::LIST) { 161 *err = Err(v.origin(), "This value must be a list."); 165 const std::vector<Value>& list = v.list_value(); local 166 for (size_t i = 0; i < list.size(); i++) { 167 if (!list[i].VerifyTypeIs(Value::STRING, err)) 169 patterns_.push_back(Pattern(list[i].string_value()));
|
parse_tree.cc | 67 if (!base_value->VerifyTypeIs(Value::LIST, err)) 356 Value result_value(this, Value::LIST); 385 out << IndentFor(indent) << "LIST\n";
|
/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:__anon2718 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...] |
/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;
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapConstants.java | 62 public static final String LIST = "LIST";
|
/external/chromium_org/build/android/ |
adb_gdb | 676 local SUBDIRS SUBDIR LIST DIR DIR_LIBS TSTAMP 684 LIST=$TMPDIR/scan-subdirs-$$.txt 685 printf "" > "$LIST" 697 printf "%s %s\n" "$TSTAMP" "$SUBDIR" >> "$LIST" 700 SUBDIR=$(cat $LIST | sort -r | head -1 | cut -d" " -f2) 701 rm -f "$LIST" 857 echo "ERROR: Could not list process's memory mappings."
|
/external/valgrind/main/callgrind/ |
callgrind_control.in | 30 open LIST, "vgdb -l|"; 31 while(<LIST>) { 44 close LIST;
|
/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
|
/ndk/build/tools/ |
common-build-host-funcs.sh | 30 # List of macros defined by the functions here: 183 # $2... is the list to search in 192 local LIST 193 LIST=$@ 196 for ELEMENT in $LIST; do 813 register_var_option "--systems=<list>" BH_HOST_SYSTEMS "Build binaries that run on these systems."
|
/bionic/libc/upstream-netbsd/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/chromium_org/third_party/mesa/src/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/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/mdnsresponder/mDNSShared/ |
DebugServices.h | [all...] |
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapStore.java | 58 import java.util.List; 161 * @param capabilities a list of the capabilities from the server 233 // the format of the IMAP ID list. 362 * Persists the folders in the given list. 381 String imapCommand = ImapConstants.LIST + " \"\" \"*\""; 383 imapCommand = ImapConstants.LIST + " \"\" \"" + mPathPrefix + "*\""; 385 List<ImapResponse> responses = connection.executeSimpleCommand(imapCommand); 387 // S: * LIST (\Noselect) "/" ~/Mail/foo 388 if (response.isDataResponse(0, ImapConstants.LIST)) { 423 throw new MessagingException("Unable to get folder list.", ioe) [all...] |
ImapConnection.java | 39 import java.util.List; 258 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, 283 List<ImapResponse> executeSimpleCommand(String command) throws IOException, 291 * @return a list of ImapResponses 295 List<ImapResponse> getCommandResponses() throws IOException, MessagingException { 317 * @return a list of ImapResponses 321 List<ImapResponse> executeSimpleCommand(String command, boolean sensitive) 331 * @param commands a list of strings that comprise the command to be sent to the server 333 * @return a list of ImapResponses 337 List<ImapResponse> executeComplexCommand(List<String> commands, boolean sensitive [all...] |
/external/dropbear/libtommath/ |
booker.pl | 61 } elsif ($_ =~ m/EXAM/ || $_ =~ m/LIST/) {
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-pass.h | 136 /* A list of sub-passes to run, dependent on gate predicate. */ 139 /* Next in the list of passes to run, independent of gate predicate. */ 590 /* Define a list of pass lists so that both passes.c and plugins can easily 599 #define DEF_PASS_LIST(LIST) PASS_LIST_NO_##LIST,
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-pass.h | 136 /* A list of sub-passes to run, dependent on gate predicate. */ 139 /* Next in the list of passes to run, independent of gate predicate. */ 590 /* Define a list of pass lists so that both passes.c and plugins can easily 599 #define DEF_PASS_LIST(LIST) PASS_LIST_NO_##LIST,
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-pass.h | 136 /* A list of sub-passes to run, dependent on gate predicate. */ 139 /* Next in the list of passes to run, independent of gate predicate. */ 590 /* Define a list of pass lists so that both passes.c and plugins can easily 599 #define DEF_PASS_LIST(LIST) PASS_LIST_NO_##LIST,
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-pass.h | 136 /* A list of sub-passes to run, dependent on gate predicate. */ 139 /* Next in the list of passes to run, independent of gate predicate. */ 590 /* Define a list of pass lists so that both passes.c and plugins can easily 599 #define DEF_PASS_LIST(LIST) PASS_LIST_NO_##LIST,
|
/bionic/libc/upstream-netbsd/libc/isc/ |
eventlib_p.h | 45 #include <isc/list.h> 223 LIST(evAccept) accepts;
|