/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 75 These take two arguments TO and FROM; they read from FROM 80 These take two arguments TO and FROM; they read from FROM 83 which use the complement of the set FROM. 106 #define COPY_HARD_REG_SET(TO, FROM) ((TO) = (FROM)) 107 #define COMPL_HARD_REG_SET(TO, FROM) ((TO) = ~(FROM) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 75 These take two arguments TO and FROM; they read from FROM 80 These take two arguments TO and FROM; they read from FROM 83 which use the complement of the set FROM. 106 #define COPY_HARD_REG_SET(TO, FROM) ((TO) = (FROM)) 107 #define COMPL_HARD_REG_SET(TO, FROM) ((TO) = ~(FROM) [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 75 These take two arguments TO and FROM; they read from FROM 80 These take two arguments TO and FROM; they read from FROM 83 which use the complement of the set FROM. 106 #define COPY_HARD_REG_SET(TO, FROM) ((TO) = (FROM)) 107 #define COMPL_HARD_REG_SET(TO, FROM) ((TO) = ~(FROM) [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 75 These take two arguments TO and FROM; they read from FROM 80 These take two arguments TO and FROM; they read from FROM 83 which use the complement of the set FROM. 106 #define COPY_HARD_REG_SET(TO, FROM) ((TO) = (FROM)) 107 #define COMPL_HARD_REG_SET(TO, FROM) ((TO) = ~(FROM) [all...] |
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
GenericPdu.java | 94 * Get From value. 95 * From-value = Value-length 101 return mPduHeaders.getEncodedStringValue(PduHeaders.FROM); 105 * Set From value. 111 mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
ReadOrigInd.java | 64 * Get From value. 65 * From-value = Value-length 71 return mPduHeaders.getEncodedStringValue(PduHeaders.FROM); 75 * Set From value. 81 mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
NotificationInd.java | 114 * Get From value. 115 * From-value = Value-length 121 return mPduHeaders.getEncodedStringValue(PduHeaders.FROM); 125 * Set From value. 132 mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
RetrieveConf.java | 116 * Get From value. 117 * From-value = Value-length 123 return mPduHeaders.getEncodedStringValue(PduHeaders.FROM); 127 * Set From value. 133 mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
FromParser.java | 27 import gov.nist.javax.sip.header.From; 32 /** From header parser. 43 public FromParser(String from) { 44 super(from); 53 From from = new From(); local 55 this.lexer.match(TokenTypes.FROM); 59 super.parse(from); 61 return from; [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
StdLibExtras.h | 93 template<typename TO, typename FROM> 94 inline TO bitwise_cast(FROM from) 96 COMPILE_ASSERT(sizeof(TO) == sizeof(FROM), WTF_bitwise_cast_sizeof_casted_types_is_equal); 98 FROM from; member in union:WTF::__anon17592 101 u.from = from;
|
/cts/tools/dasm/src/dasm/ |
sym.java | 13 static final int FROM = 26;
|
/external/webkit/LayoutTests/storage/ |
test-authorizer.js | 53 //executeStatement(tx, "SELECT * FROM Test WHERE Foo IN (1, 2, 3);", "SQLITE_CREATE_TEMP_INDEX"); 56 executeStatement(tx, "CREATE TEMP TRIGGER TestTempTrigger INSERT ON Test BEGIN SELECT COUNT(*) FROM Test; END;", "SQLITE_CREATE_TEMP_TRIGGER"); 57 executeStatement(tx, "CREATE TEMP VIEW TestTempView AS SELECT COUNT(*) FROM Test;", "SQLITE_CREATE_TEMP_VIEW"); 58 executeStatement(tx, "CREATE TRIGGER TestTrigger INSERT ON Test BEGIN SELECT COUNT(*) FROM Test; END;", "SQLITE_CREATE_TRIGGER"); 59 executeStatement(tx, "CREATE VIEW TestView AS SELECT COUNT(*) FROM Test;", "SQLITE_CREATE_VIEW"); 65 executeStatement(tx, "SELECT COUNT(*) FROM Test;", "SQLITE_READ"); 66 executeStatement(tx, "SELECT COUNT(*) FROM Test;", "SQLITE_SELECT"); 67 executeStatement(tx, "DELETE FROM Test;", "SQLITE_DELETE");
|
/external/elfutils/src/ |
ylwrap | 96 from="$1" 99 if test $from = "y.tab.c"; then 100 from="y_tab.c" 102 if test $from = "y.tab.h"; then 103 from="y_tab.h" 107 if test -f "$from"; then 125 FROM=`echo "$from" | sed \ 131 sed "/^#/{s,$input_rx,,;s,$from,$2,;s,$FORM,$TO,;}" "$from" >"$target" | [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/field/ |
Field.java | 33 public static final String FROM = "From";
39 public static final String RESENT_FROM = "Resent-From";
119 * <code>From</code>, etc).
167 * Determines if this is a <code>From</code> field.
169 * @return <code>true</code> if this is a <code>From</code> field,
173 return FROM.equalsIgnoreCase(name);
|
DefaultFieldParser.java | 29 setFieldParser(Field.FROM, mailboxListParser);
|
/external/opencv/cxcore/src/ |
cxconvert.cpp | 27 // derived from this software without specific prior written permission. 365 #define ICV_DEF_PXPLPX_TAB( name, FROM, TO ) \ 369 tab->fn_2d[CV_8UC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R; \ 370 tab->fn_2d[CV_8UC3] = (void*)icvCopy##_8u_##FROM##3##TO##3R; \ 371 tab->fn_2d[CV_8UC4] = (void*)icvCopy##_8u_##FROM##4##TO##4R; \ 373 tab->fn_2d[CV_8SC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R; \ 374 tab->fn_2d[CV_8SC3] = (void*)icvCopy##_8u_##FROM##3##TO##3R; \ 375 tab->fn_2d[CV_8SC4] = (void*)icvCopy##_8u_##FROM##4##TO##4R; \ 377 tab->fn_2d[CV_16UC2] = (void*)icvCopy##_16s_##FROM##2##TO##2R; \ 378 tab->fn_2d[CV_16UC3] = (void*)icvCopy##_16s_##FROM##3##TO##3R; [all...] |
/external/bison/build-aux/ |
ylwrap | 136 from="$1" 139 if test $from = "y.tab.c"; then 140 from="y_tab.c" 142 if test $from = "y.tab.h"; then 143 from="y_tab.h" 147 if test -f "$from"; then 175 FROM=`echo "$from" | sed \ 182 sed -e "/^#/!b" -e "s,$input_rx,," -e "s,$from,$2," \ 183 -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$ [all...] |
/external/elfutils/config/ |
ylwrap | 134 from="$1" 137 if test $from = "y.tab.c"; then 138 from="y_tab.c" 140 if test $from = "y.tab.h"; then 141 from="y_tab.h" 145 if test -f "$from"; then 173 FROM=`echo "$from" | sed \ 180 sed -e "/^#/!b" -e "s,$input_rx,," -e "s,$from,$2," \ 181 -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$ [all...] |
/external/smack/src/com/kenai/jbosh/ |
Attributes.java | 42 static final BodyQName FROM = BodyQName.createBOSH("from");
|
/external/chromium/net/http/ |
http_atom_list.h | 32 HTTP_ATOM(FROM)
|
/external/guava/guava/src/com/google/common/net/ |
HttpHeaders.java | 79 /** The HTTP From header field name. */ 80 public static final String FROM = "From";
|
/packages/apps/Mms/src/com/android/mms/util/ |
AddressUtils.java | 50 Addr.TYPE + "=" + PduHeaders.FROM, null, null); 55 String from = cursor.getString(0); local 57 if (!TextUtils.isEmpty(from)) { 58 byte[] bytes = PduPersister.getBytes(from); 74 * it's not safe to call from the UI thread.
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
arm.h | 454 /* Nonzero if this chip can benefit from load scheduling. */ 534 extension may differ from that of the type. */ 601 /* Make strings word-aligned so strcpy from constants will be faster. */ 770 Aside from that, you can include as many other registers as you like. [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/ |
arm.h | 454 /* Nonzero if this chip can benefit from load scheduling. */ 534 extension may differ from that of the type. */ 601 /* Make strings word-aligned so strcpy from constants will be faster. */ 770 Aside from that, you can include as many other registers as you like. [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
arm.h | 454 /* Nonzero if this chip can benefit from load scheduling. */ 534 extension may differ from that of the type. */ 601 /* Make strings word-aligned so strcpy from constants will be faster. */ 770 Aside from that, you can include as many other registers as you like. [all...] |