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

1 2 3 4 5 6 7 8 9

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/utils/
PositionUtils.java 114 public static boolean nodeContains(Node container, Node contained, boolean ignoringAnnotations){
116 return container.contains(contained);
118 if (!container.contains(contained)){
121 // if the node is contained, but it comes immediately after the annotations,
122 // let's not consider it contained
126 if (bl>contained.getBegin().line) return false;
127 if (bl==contained.getBegin().line && bc>contained.getBegin().column) return false;
128 if (container.getEnd().line<contained.getEnd().line) return false;
130 return !(container.getEnd().line == contained.getEnd().line && container.getEnd().column < contained.getEnd().column)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/
PositionUtils.java 122 public static boolean nodeContains(Node container, Node contained, boolean ignoringAnnotations){
124 return container.contains(contained);
126 if (!container.contains(contained)){
129 // if the node is contained, but it comes immediately after the annotations,
130 // let's not consider it contained
134 if (bl>contained.getBeginLine()) return false;
135 if (bl==contained.getBeginLine() && bc>contained.getBeginColumn()) return false;
136 if (container.getEndLine()<contained.getEndLine()) return false;
137 if (container.getEndLine()==contained.getEndLine() && container.getEndColumn()<contained.getEndColumn()) return false
    [all...]
  /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 95 * @param contained The string that is contained
97 * @return true if the string is contained in the other
99 private static boolean containsString(@NonNull String container, @NonNull String contained) {
100 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/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
PositionUtils.java 130 public static boolean nodeContains(Node container, Node contained, boolean ignoringAnnotations) {
131 final Range containedRange = contained.getRange().get();
134 return container.containsWithin(contained);
136 if (!container.containsWithin(contained)) {
139 // if the node is contained, but it comes immediately after the annotations,
140 // let's not consider it contained
  /external/curl/docs/cmdline-opts/
fail-early.d 21 is not global and is therefore contained by --next.
  /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
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19482.go 9 // when the struct contained a field named _.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19482.go 9 // when the struct contained a field named _.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 116 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
122 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
132 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
218 } else /* CONTAINED or SIMPLE */{
225 next = start; // Do not span this single, not-contained code point.
234 if (spanCondition == SpanCondition.CONTAINED) {
248 SpanCondition.CONTAINED);
316 } else /* SpanCondition.CONTAINED or SIMPLE */{
323 length = prev; // Do not span this single, not-contained code point.
332 if (spanCondition == SpanCondition.CONTAINED) {
409 SpanCondition spanCondition, firstSpanCondition, contained; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 113 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
119 if ( set.span(s16.substring(0, 12), SpanCondition.CONTAINED) != 12
129 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
215 } else /* CONTAINED or SIMPLE */{
222 next = start; // Do not span this single, not-contained code point.
231 if (spanCondition == SpanCondition.CONTAINED) {
245 SpanCondition.CONTAINED);
313 } else /* SpanCondition.CONTAINED or SIMPLE */{
320 length = prev; // Do not span this single, not-contained code point.
329 if (spanCondition == SpanCondition.CONTAINED) {
406 SpanCondition spanCondition, firstSpanCondition, contained; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
trim.go 131 // If the original block contained u = ?(u0, u1, ..., un) and
139 // If the original block contained u = ?(u0, u1, ..., un) and
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
trim.go 131 // If the original block contained u = ?(u0, u1, ..., un) and
139 // 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/cmd/compile/internal/gc/
types.go 60 TDDDFIELD = types.TDDDFIELD // wrapper: contained type is a ... field
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
types.go 60 TDDDFIELD = types.TDDDFIELD // wrapper: contained type is a ... field
  /system/bt/doc/
directory_layout.md 4 Each directory should be a self contained subsystem consisting
  /prebuilts/jdk/jdk9/darwin-x86/legal/java.desktop/
xwindows.md 31 Except as contained in this notice, the name of the X Consortium shall
63 Except as contained in this notice, the name of the X Consortium shall not
91 Except as contained in this notice, the name of the X Consortium shall not be
113 Except as contained in this notice, the name of The Open Group shall not be
146 Except as contained in this notice, the name of The Open Group shall
176 contained herein or direct, indirect, special, incidental or
204 Except as contained in this notice, the name of The Open Group shall
  /prebuilts/jdk/jdk9/linux-x86/legal/java.desktop/
xwindows.md 31 Except as contained in this notice, the name of the X Consortium shall
63 Except as contained in this notice, the name of the X Consortium shall not
91 Except as contained in this notice, the name of the X Consortium shall not be
113 Except as contained in this notice, the name of The Open Group shall not be
146 Except as contained in this notice, the name of The Open Group shall
176 contained herein or direct, indirect, special, incidental or
204 Except as contained in this notice, the name of The Open Group shall

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 9