HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 151 - 175 of 3938) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/lifecycle/livedata/src/test/java/androidx/lifecycle/
TransformationsTest.java 76 final LiveData<String> first = new MutableLiveData<>(); local
83 return first;
93 first.setValue("first");
95 verify(observer).onChanged("first");
102 first.setValue("failure");
109 final LiveData<String> first = new MutableLiveData<>(); local
116 return first;
129 first.setValue("fi");
131 first.setValue("rst")
147 final LiveData<String> first = new MutableLiveData<>(); local
170 final LiveData<String> first = new MutableLiveData<>(); local
    [all...]
  /build/kati/
rule.cc 63 StringPiece first = line.substr(0, index); local
65 for (StringPiece tok : WordScanner(first)) {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
NanoTimeGranularityTester.java 38 long first = System.nanoTime(); local
47 total += second - first;
  /external/deqp/external/openglcts/modules/gl/
gl4cIndirectParametersTests.hpp 46 GLuint first; member in struct:gl4cts::__anon17503
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 89 struct list_head *first = list->next; local
91 if (first != list) {
95 first->prev = head;
96 head->next = first;
  /external/freetype/src/cache/
ftcmru.c 32 FTC_MruNode first = *plist; local
35 if ( first )
37 FTC_MruNode last = first->prev;
42 FTC_MruNode cnode = first;
54 } while ( cnode != first );
58 first->prev = node;
60 node->next = first;
76 FTC_MruNode first = *plist; local
79 FT_ASSERT( first );
81 if ( first != node
125 FTC_MruNode first = *plist; local
207 FTC_MruNode first, node; local
331 FTC_MruNode first, node, next; local
    [all...]
  /external/freetype/src/psaux/
t1cmap.h 73 FT_UInt first; member in struct:T1_CMapCustomRec_
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 271 E first = elements.next(); local
273 return of(first);
276 .add(first)
  /external/guava/guava-tests/test/com/google/common/escape/
EscapersTest.java 70 // Setup a simple builder and create the first escaper.
75 Escaper first = builder.build(); local
84 assertEquals("Xhe_Xuick_Xrown_XoxX", first.escape("The Quick Brown Fox!"));
  /external/guice/core/src/com/google/inject/internal/
TypeConverterBindingProcessor.java 174 char first = s.charAt(0); local
175 char capitalized = Character.toUpperCase(first);
176 return (first == capitalized)
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
CombinableMatcher.java 55 private final Matcher<? super X> first; field in class:CombinableMatcher.CombinableBothMatcher
57 this.first = matcher;
60 return new CombinableMatcher<X>(first).and(other);
74 private final Matcher<? super X> first; field in class:CombinableMatcher.CombinableEitherMatcher
76 this.first = matcher;
79 return new CombinableMatcher<X>(first).or(other);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CSCharacterIterator.java 33 public char first() { method in class:CSCharacterIterator
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CSCharacterIterator.java 31 public char first() { method in class:CSCharacterIterator
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
NodeComparator.java 52 final Comparator<ICoverageNode> first = this; local
59 final int result = first.compare(o1, o2);
  /external/kmod/tools/
lsmod.c 65 int first = 1; local
72 if (!first) {
76 first = 0;
  /external/libchrome/base/profiler/
tracked_time_unittest.cc 17 // First make sure we basicallly transfer simple milliseconds values as
41 Duration first = Duration::FromMilliseconds(kFirstMilliseconds); local
44 EXPECT_EQ(kFirstMilliseconds, first.InMilliseconds());
47 Duration sum = first + second;
54 // First get a 64 bit timer (which should not be null).
85 // First get a 64 bit timer (which should not be null).
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer_size.pass.cpp 28 typename S::const_iterator first = s.begin() + pos1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str, n2);
    [all...]
  /external/mockito/src/test/java/org/mockitousage/stacktrace/
PointingStackTraceToActualInvocationInOrderTest.java 34 first(); method
40 private void first() { method in class:PointingStackTraceToActualInvocationInOrderTest
97 assertThat(e).hasMessageContaining("first(");
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObjectList.java 116 * Get the first object of this list.
119 public GenericObject first() { method in class:SIPObjectList
120 return (SIPObject) super.first();
125 * Get the next object of this list (assumes that first() has been
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 79 join(jep.first);
121 final ElementPolicy first, second; field in class:JoinedElementPolicy
123 JoinedElementPolicy(ElementPolicy first, ElementPolicy second) {
124 this.first = first;
129 elementName = first.apply(elementName, attrs);
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 51 auto first = MAKE_ARRAY_ITERATOR(static_cast<const uint8_t *>(pvSrcData), size); local
52 auto last = first + size;
55 std::copy(first, last, dest_first);
62 auto first = atOffset(offset); local
63 auto last = first + size;
66 std::copy(first, last, dest_first);
84 const uint8_t *first = &mBlackboard[offset]; local
85 output = reinterpret_cast<const char *>(first);
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser_test.cc 106 StringPiece first = json.substr(0, split); local
108 GOOGLE_LOG(INFO) << "Testing split: " << first << "><" << rest;
109 util::Status result = parser.Parse(first);
  /external/python/cpython3/Doc/includes/
noddy2.c 6 PyObject *first; /* first name */ member in struct:__anon33043
14 Py_XDECREF(self->first);
26 self->first = PyUnicode_FromString("");
27 if (self->first == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp; local
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
56 if (first) {
57 tmp = self->first;
    [all...]
noddy4.c 6 PyObject *first; member in struct:__anon33045
16 if (self->first) {
17 vret = visit(self->first, arg);
35 tmp = self->first;
36 self->first = NULL;
60 self->first = PyUnicode_FromString("");
61 if (self->first == NULL) {
81 PyObject *first=NULL, *last=NULL, *tmp; local
83 static char *kwlist[] = {"first", "last", "number", NULL};
86 &first, &last
    [all...]
  /external/python/cpython3/Python/
future.c 64 stmt_ty first; local
75 joined by semi-colons, where the first import is a future
81 first = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i);
82 if (first->kind == Expr_kind
83 && (first->v.Expr.value->kind == Str_kind
84 || (first->v.Expr.value->kind == Constant_kind
85 && PyUnicode_CheckExact(first->v.Expr.value->v.Constant.value))))

Completed in 294 milliseconds

1 2 3 4 5 67 8 91011>>