HomeSort by relevance Sort by last modified time
    Searched refs:phrase (Results 1 - 25 of 50) sorted by null

1 2

  /external/curl/docs/cmdline-opts/
pass.d 2 Arg: <phrase>
3 Help: Pass phrase for the private key
proxy-pass.d 2 Arg: <phrase>
3 Help: Pass phrase for the private key for HTTPS proxy
  /frameworks/base/core/java/android/hardware/soundtrigger/
KeyphraseMetadata.java 49 * @return Indicates if we support the given phrase.
51 public boolean supportsPhrase(String phrase) {
52 return keyphrase.isEmpty() || keyphrase.equalsIgnoreCase(phrase);
  /external/python/cpython3/Lib/http/
__init__.py 19 def __new__(cls, value, phrase, description=''):
23 obj.phrase = phrase
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceBase.java 160 protected boolean isInConfigList(int errorNo, String phrase, int configId) {
172 if(phrase == null || phrase.isEmpty()) {
176 return phrase.toLowerCase().contains(errorPhrase.toLowerCase());
PresenceSubscriber.java 271 // unknown phrase: handle it as the same as no phrase
362 String phrase = pSipResponse.getReasonPhrase(); local
363 if(isInConfigList(sipCode, phrase,
365 logger.print("volte provision sipCode=" + sipCode + " phrase=" + phrase);
369 } else if(isInConfigList(sipCode, phrase,
371 logger.print("rcs provision sipCode=" + sipCode + " phrase=" + phrase);
399 task.mSipReasonPhrase = phrase;
    [all...]
  /hardware/interfaces/soundtrigger/2.1/vts/functional/
VtsHalSoundtriggerV2_1TargetTest.cpp 196 * - the implementation supports at least one sound model and one key phrase
420 PhraseRecognitionExtra phrase; local
425 phrase.id = 0;
426 phrase.recognitionModes = (uint32_t)RecognitionMode::VOICE_TRIGGER;
427 phrase.confidenceLevel = 0;
429 config.phrases.setToExternal(&phrase, 1);
450 PhraseRecognitionExtra phrase; local
455 phrase.id = 0;
456 phrase.recognitionModes = (uint32_t)RecognitionMode::VOICE_TRIGGER;
457 phrase.confidenceLevel = 0
    [all...]
  /hardware/interfaces/soundtrigger/2.0/vts/functional/
VtsHalSoundtriggerV2_0TargetTest.cpp 167 * - the implementation supports at least one sound model and one key phrase
277 PhraseRecognitionExtra phrase; local
282 phrase.id = 0;
283 phrase.recognitionModes = (uint32_t)RecognitionMode::VOICE_TRIGGER;
284 phrase.confidenceLevel = 0;
286 config.phrases.setToExternal(&phrase, 1);
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
ContactFilterCursor.java 278 * <li>The white space divided parts of phrase
279 * <li>The T9 representation of the white space divided parts of phrase
280 * <li>The T9 representation of the initials (i.e. first character of each part) of phrase
283 private static void addMatches(Context context, Set<String> existingMatches, String phrase) {
284 if (TextUtils.isEmpty(phrase)) {
288 phrase = phrase.toLowerCase(Locale.getDefault());
289 existingMatches.add(phrase);
290 for (String name : phrase.split("\\s")) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 159 | ( phrase() (group_body() | angle_addr()) )/*@bgen(jjtree)*/
230 phrase() angle_addr()/*@bgen(jjtree)*/
362 void phrase() :
363 {/*@bgen(jjtree) phrase */
369 {/*@bgen(jjtree) phrase */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 314 for phrase, action in lexicon:
316 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 300 for phrase, action in lexicon:
302 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /external/autotest/server/site_tests/enterprise_CFM_USBPeripheralHotplugDetect/
enterprise_CFM_USBPeripheralHotplugDetect.py 115 if (any(phrase in line for phrase in ('bInterfaceClass',
  /external/python/cpython2/Lib/
re.py 314 for phrase, action in lexicon:
316 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /external/python/cpython3/Lib/
re.py 354 for phrase, action in lexicon:
357 (SUBPATTERN, (gid, 0, 0, sre_parse.parse(phrase, flags))),
  /frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java 204 for (String phrase : query) {
205 final byte[] bytes = phrase.getBytes("US-ASCII");
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 298 for phrase, action in lexicon:
300 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /prebuilts/gdb/linux-x86/lib/python2.7/
re.py 298 for phrase, action in lexicon:
300 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 298 for phrase, action in lexicon:
300 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 298 for phrase, action in lexicon:
300 (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))),
  /external/junit-params/src/test/java/junitparams/usage/
SamplesOfUsageTest.java 131 public void commasInParametersUsage(String phrase) { }
  /external/python/cpython3/Lib/test/test_email/
test__header_value_parser.py     [all...]
  /prebuilts/go/darwin-x86/src/net/mail/
message.go 443 // consumePhrase parses the RFC 5322 phrase at the start of p.
444 func (p *addrParser) consumePhrase() (phrase string, err error) {
446 // phrase = 1*word
484 return "", fmt.Errorf("mail: missing word in phrase: %v", err)
486 phrase = strings.Join(words, " ")
487 return phrase, nil
  /prebuilts/go/linux-x86/src/net/mail/
message.go 443 // consumePhrase parses the RFC 5322 phrase at the start of p.
444 func (p *addrParser) consumePhrase() (phrase string, err error) {
446 // phrase = 1*word
484 return "", fmt.Errorf("mail: missing word in phrase: %v", err)
486 phrase = strings.Join(words, " ")
487 return phrase, nil
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy_test.go 668 for _, phrase := range expected {
669 if !bytes.Contains(proxyLog.Bytes(), []byte(phrase)) {
670 t.Errorf("expected log to contain phrase %q", phrase)

Completed in 1723 milliseconds

1 2