/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/chromium_org/tools/gn/ |
function_exec_script.cc | 262 " A list of strings to be passed to the script as arguments.\n" 263 " May be unspecified or the empty list which means no arguments.\n" 273 " (Optional) A list of files that this script reads or otherwise\n" 279 " need to list it.\n" 284 " \"myscript.py\", [some_input], \"list lines\",\n" 325 if (!deps_value.VerifyTypeIs(Value::LIST, err)) 345 if (!script_args.VerifyTypeIs(Value::LIST, err))
|
parse_tree.cc | 136 if (!base_value->VerifyTypeIs(Value::LIST, err)) 459 Value result_value(this, Value::LIST); 490 out << IndentFor(indent) << "LIST\n";
|
/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/chromium_org/build/android/ |
adb_gdb | 693 local SUBDIRS SUBDIR LIST DIR DIR_LIBS TSTAMP 701 LIST=$TMPDIR/scan-subdirs-$$.txt 702 printf "" > "$LIST" 714 printf "%s %s\n" "$TSTAMP" "$SUBDIR" >> "$LIST" 717 SUBDIR=$(cat $LIST | sort -r | head -1 | cut -d" " -f2) 718 rm -f "$LIST" 874 echo "ERROR: Could not list process's memory mappings."
|
/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...] |
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
eventlib_p.h | 45 #include <isc/list.h> 223 LIST(evAccept) accepts;
|
/packages/apps/Email/src/com/android/email/preferences/ |
EmailPreferenceMigrator.java | 35 import java.util.List; 46 final List<Account> accounts = new ArrayList<Account>(); 72 final List<Account> accounts) { 174 // The default for the conversation list icon is the sender image. 195 mailPrefs.setAutoAdvanceMode(UIProvider.AutoAdvance.LIST);
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
UIProvider.java | 58 * of the fetched results in the conversation list. 161 * Query parameter key that can be used to control the behavior of list queries. The value 416 * list of top level folders for this account. 422 * list of all real folders for this account. 428 * list of all real and synthetic folders for this account. 598 * or not in the conversation list view. This value will be one of the values in 651 * an arrow ( ? ) by messages sent to my address (not a mailing list), [all...] |
Settings.java | 69 * Integer, one of {@link AutoAdvance#LIST}, {@link AutoAdvance#NEWER}, 98 * an arrow ( ? ) by messages sent to my address (not a mailing list), 121 mAutoAdvance = AutoAdvance.LIST;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/ |
GeneralPrefsFragment.java | 65 AutoAdvance.LIST
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
hetero-nodes.rb | 286 tokens {LIST;} 304 a : id (',' id)* -> ^(LIST<W>["LIST"] id+); 638 example "token with list label" do 650 example "token root with list label" do 700 result.should == '(LIST<W> a<V> b<V> c<V>)' 710 example "tree parser rewrite flat list" do
|
/external/chromium_org/native_client_sdk/src/examples/api/file_io/ |
example.js | 128 } else if (command == 'LIST') {
|
/external/chromium_org/ui/native_theme/ |
native_theme_win.h | 41 LIST,
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest3.java | 827 objToSave = LIST; 832 assertTrue(MSG_TEST_FAILED + objToSave, LIST.equals(objLoaded)); 855 Object col = Collections.synchronizedList(LIST); 884 Object col = Collections.unmodifiableList(LIST); [all...] |
SerializationStressTest.java | 49 import java.util.List; 128 static final List<String> ALIST = Arrays.asList(new String[] { "a", "list", "of", 131 static final List<String> LIST = new ArrayList<String>(ALIST); 152 .asList(new String[] { "a", "linked", "list", "of", "strings" })); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pickle.py | 122 APPEND = 'a' # append stack top to list below it 127 APPENDS = 'e' # extend list on stack by topmost stack slice 132 LIST = 'l' # build list from topmost stack items 133 EMPTY_LIST = ']' # push empty list 409 # the 4th and 5th item should be iterators that provide list 597 write(MARK + LIST) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickle.py | 122 APPEND = 'a' # append stack top to list below it 127 APPENDS = 'e' # extend list on stack by topmost stack slice 132 LIST = 'l' # build list from topmost stack items 133 EMPTY_LIST = ']' # push empty list 409 # the 4th and 5th item should be iterators that provide list 597 write(MARK + LIST) [all...] |
/external/qemu/android/ |
hw-events.h | 340 KEY_CODE(LIST ,0x18b) \ 538 /* returns the list of valid event type string aliases */ 542 /* returns the list of valid event code string aliases for a given event type */
|
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
SDL_wave.c | 448 } while ( (chunk.magic == FACT) || (chunk.magic == LIST) );
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
TwoPaneController.java | 49 import java.util.List; 66 private List<TwoPaneLayout.ConversationListLayoutListener> mConversationListLayoutListeners = 147 * Display the conversation list fragment. 161 * Render the conversation list in the correct pane. 265 // The conversation list is visible. 273 // support peek (i.e. portrait), remap the view mode to list-mode if previously peeking. 282 // manually, and finally tear down the pager and go back to the list. 326 // It's possible that we are not in conversation list mode 375 final SwipeableListView list = clf.getListView(); local 376 if (list != null) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToHTMLStream.java | 225 new ElemDesc(0 | ElemDesc.LIST | ElemDesc.BLOCK)); 228 new ElemDesc(0 | ElemDesc.LIST | ElemDesc.BLOCK)); [all...] |
/ndk/build/core/ |
definitions-utils.mk | 47 # Arguments: a list 48 # Returns : the list with duplicate items removed, order is preserved. 49 # Usage : $(call remove-duplicates, <LIST>) 72 # Arguments: 1: list of variable names 76 # Rationale: Clears/undefines all variables in argument list 82 # Arguments: 1: list 106 # Arguments: 1: list 130 # Arguments: 1: list
|