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

1 2 3 4 5 6 7

  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
MDnsUtils.java 71 private static boolean containsString(String container, String contained) {
72 return (container != null) && (contained != null) && (container.equalsIgnoreCase(contained) || container.contains(contained + " "));
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
FindAnyOpTest.java 79 boolean contained = false;
80 while (!contained && it.hasNext()) {
81 contained = Objects.equals(r, it.next());
83 assertTrue(contained);
103 boolean contained = false;
104 while (!contained && it.hasNext()) {
105 contained = r == it.nextInt();
107 assertTrue(contained);
127 boolean contained = false;
128 while (!contained && it.hasNext())
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ObjectRegistry.java 68 final boolean contained = mItemsNeedingReset.contains(object);
69 assert !contained; local
70 if (!contained) {
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/
MDNSUtils.java 94 * @param contained The string that is contained
96 * @return true if the string is contained in the other
98 private static boolean containsString(@NonNull String container, @NonNull String contained) {
99 return container.equalsIgnoreCase(contained) || container.contains(contained + " ");
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/xerox/
MDnsUtils.java 90 private static boolean containsString(String container, String contained) {
91 return (container != null) && (contained != null) && (container.equalsIgnoreCase(contained) || container.contains(contained + " "));
  /external/python/cpython2/Misc/Vim/
python.vim 23 syn match pythonFunction "[a-zA-Z_][a-zA-Z0-9_]*" contained
35 syn keyword pythonTodo TODO FIXME XXX contained
46 syn match pythonEscape +\\[abfnrtv\'"\\]+ contained
47 syn match pythonEscape "\\\o\{1,3}" contained
48 syn match pythonEscape "\\x\x\{2}" contained
49 syn match pythonEscape "\(\\u\x\{4}\|\\U\x\{8}\)" contained
vim_syntax.py 55 contained = lambda x: "%s contained" % x variable
91 contained('"[a-zA-Z_][a-zA-Z0-9_]*"')),
100 contained(' '.join(todos))),
103 (contained(esc) for esc in escapes
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 111 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
117 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
127 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
213 } else /* CONTAINED or SIMPLE */{
220 next = start; // Do not span this single, not-contained code point.
229 if (spanCondition == SpanCondition.CONTAINED) {
243 SpanCondition.CONTAINED);
311 } else /* SpanCondition.CONTAINED or SIMPLE */{
318 length = prev; // Do not span this single, not-contained code point.
327 if (spanCondition == SpanCondition.CONTAINED) {
404 SpanCondition spanCondition, firstSpanCondition, contained; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 110 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
116 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
126 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
212 } else /* CONTAINED or SIMPLE */{
219 next = start; // Do not span this single, not-contained code point.
228 if (spanCondition == SpanCondition.CONTAINED) {
242 SpanCondition.CONTAINED);
310 } else /* SpanCondition.CONTAINED or SIMPLE */{
317 length = prev; // Do not span this single, not-contained code point.
326 if (spanCondition == SpanCondition.CONTAINED) {
403 SpanCondition spanCondition, firstSpanCondition, contained; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
trim.go 118 // If the original block contained u = ?(u0, u1, ..., un) and
126 // If the original block contained u = ?(u0, u1, ..., un) and
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
trim.go 118 // If the original block contained u = ?(u0, u1, ..., un) and
126 // If the original block contained u = ?(u0, u1, ..., un) and
  /device/sample/apps/SampleEmailPolicy/
Android.mk 17 # This is the makefile for the Email Policy package contained elsewhere in this sample.
  /external/llvm/utils/vim/syntax/
tablegen.vim 28 syn keyword tgTodo contained TODO FIXME
  /external/swiftshader/third_party/LLVM/utils/vim/
tablegen.vim 28 syn keyword tgTodo contained TODO FIXME
  /prebuilts/go/darwin-x86/src/crypto/x509/
pkcs8.go 52 return nil, fmt.Errorf("x509: PKCS#8 wrapping contained private key with unknown algorithm: %v", privKey.Algo.Algorithm)
  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs8.go 52 return nil, fmt.Errorf("x509: PKCS#8 wrapping contained private key with unknown algorithm: %v", privKey.Algo.Algorithm)
  /system/bt/doc/
directory_layout.md 4 Each directory should be a self contained subsystem consisting
  /external/ImageMagick/www/api/
segment.php 82 <p>This represents the minimum number of pixels contained in a hexahedra before it can be considered valid (expressed as a percentage).</p>
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 40 each contained within a separate script.
81 additional classes and mixins required by the debug code are contained within
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
SourceContext.cs 76 /// The path-qualified name of the .proto file that contained the associated
  /frameworks/rs/tests/lldb/tests/harness/
test_base.py 250 Raises a TestFail exception in case one of the literals is not contained
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 209 // contained in typ. If there is no contained lock, it returns nil.
  /prebuilts/go/darwin-x86/src/go/types/
scope.go 22 // (parent) and contained (children) scopes. Objects may be inserted
33 // NewScope returns a new, empty scope contained in the given parent
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 209 // contained in typ. If there is no contained lock, it returns nil.
  /prebuilts/go/linux-x86/src/go/types/
scope.go 22 // (parent) and contained (children) scopes. Objects may be inserted
33 // NewScope returns a new, empty scope contained in the given parent

Completed in 2235 milliseconds

1 2 3 4 5 6 7