/development/tools/zoneinfo/tzdata2009s/ |
yearistype.sh | 10 echo "$0: wild year - $1" >&2 36 echo "$0: wild type - $2" >&2 ;;
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/patterns/ |
NodeTest.java | 46 public static final String WILD = "*"; 100 * @return The namespace to be tested for, or {@link #WILD}, or null. 110 * @param ns The namespace to be tested for, or {@link #WILD}, or null. 126 * @return the local name to be tested, or {@link #WILD}, or an empty string. 136 * @param name the local name to be tested, or {@link #WILD}, or an empty string. 295 * True if this test has a null namespace and a local name of {@link #WILD}. 326 else if (((m_namespace == WILD) || (m_namespace == null)) 327 && (m_name == WILD)) 329 else if ((m_namespace != WILD) && (m_name == WILD)) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/ |
PsuedoNames.java | 31 * Psuedo name for a wild card pattern ('*').
|
OpMap.java | 389 * @return The step's namespace, NodeTest.WILD, or null for null namespace. 404 return NodeTest.WILD; 450 return NodeTest.WILD;
|
/external/netcat/scripts/ |
alta | 15 # embedded quotes define phrases; otherwise it goes wild on multi-words
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
StateListDrawableTest.java | 98 // call onLevelChanged will not throw NPE here because the first drawable with wild card 150 // null state will match the wild card 157 notes = "If drawable with wild card state is added before any other drawables, " 167 // matches the first wild card although the second one is more accurate
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/ |
DescendantIterator.java | 272 || NodeTest.WILD.equals(localName) 273 || NodeTest.WILD.equals(namespace)) 313 || localName == NodeTest.WILD 314 || namespace == NodeTest.WILD)
|
ChildTestIterator.java | 136 // || localName == NodeTest.WILD 137 // || namespace == NodeTest.WILD)
|
OneStepIteratorForward.java | 122 // || localName == NodeTest.WILD 123 // || namespace == NodeTest.WILD)
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
TemplateSubPatternAssociation.java | 52 /** Flag indicating whether this is wild card pattern */ 164 * @return true if this pattern is considered to be a wild match.
|
TemplateList.java | 156 System.out.print("wild card list: "); 190 TemplateSubPatternAssociation wild = m_wildCardPatterns; local 192 while (null != wild) 197 head, (TemplateSubPatternAssociation) wild.clone(), true); 201 wild = wild.getNext(); 219 * @param isWildCardInsert <code>true</code> if we are inserting a wild card
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmConnection.java | 271 if (postDialState != PostDialState.WILD) { 273 + "getPostDialState() to be WILD but was " + postDialState); 301 // make a new postDialString, with the wild char replacement string 556 } else if (c == PhoneNumberUtils.WILD) { 557 setPostDialState(PostDialState.WILD);
|
/external/quake/quake/src/WinQuake/ |
snd_gus.cpp | 97 int wild=0;
local 99 // See if wild search
101 wild=1;
113 if (!wild)
117 if (!wild)
120 if (!wild)
137 int wild=0;
local 139 // See if wild search
141 wild=1;
150 if (!wild)
[all...] |
/external/ppp/pppd/plugins/pppoatm/ |
atm.h | 85 #define MAX_ATM_NAME_LEN 256 /* wild guess */
|
/external/proguard/examples/annotations/lib/ |
annotations.pro | 48 # before the (wild-carded) interface name.
|
/frameworks/base/core/java/android/content/ |
UriMatcher.java | 148 * @param path the path to match. * may be used as a wild card for 149 * any text, and # may be used as a wild card for numbers.
|
/frameworks/base/telephony/java/android/telephony/ |
PhoneNumberUtils.java | 50 * 'n' --- GSM wild character 55 public static final char WILD = 'N'; 87 /** True if c is ISO-LATIN characters 0-9, *, # , +, WILD */ 90 return (c >= '0' && c <= '9') || c == '*' || c == '#' || c == '+' || c == WILD; 93 /** True if c is ISO-LATIN characters 0-9, *, # , + (no WILD) */ 99 /** True if c is ISO-LATIN characters 0-9, *, # , +, WILD, WAIT, PAUSE */ 103 || c == WILD || c == WAIT || c == PAUSE; 179 * Please note that the GSM wild character is allowed in the result. 415 if (cb != ca && ca != WILD && cb != WILD) { [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaConnection.java | 325 if (postDialState != PostDialState.WILD) { 327 + "getPostDialState() to be WILD but was " + postDialState); 355 // make a new postDialString, with the wild char replacement string 633 } else if (c == PhoneNumberUtils.WILD) { 634 setPostDialState(PostDialState.WILD);
|
/frameworks/base/services/java/com/android/server/ |
IntentResolver.java | 135 if (dumpMap(out, curPrefix, "Wild MIME Types:", innerPrefix, 236 // Not a wild card, so we can just look for all filters that 547 * registered, such as "image" or "*". Wild card MIME types such as
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ConcreteMethod.java | 91 * wild," so there's not much point in optimizing for it.
|
/external/jpeg/ |
jutils.c | 46 * wild stores without adding an inner-loop test, we put some extra
|
/external/libpcap/ |
CREDITS | 76 Ollie Wild <aaw@users.sourceforge.net>
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
BinaryDictionary.java | 99 // If there aren't sufficient suggestions, search for words by allowing wild cards at
|
/external/icu4c/tools/toolutil/ |
package.cpp | 868 const char *wild; local 879 wild=strchr(pattern, '*'); 880 if(wild==NULL) { 885 findPrefixLength=(int32_t)(wild-pattern); 886 findSuffix=wild+1; [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ |
DTMFilter.java | 182 * the DTM interface. Wild cards will be defined
|