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

1 2 3 4 56 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
digraph_utils.h 39 typedef struct { int first; int second; int compositeGlyph; } digraph_t; member in struct:latinime::DigraphUtils::__anon52980
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ExecutionEngine/
GenericValue.h 26 unsigned int first; member in struct:llvm::GenericValue::IntPair
44 UIntPairVal.first = 0;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
iterators.pass.cpp 28 int first; member in struct:A
134 i->first = 3;
136 assert(j->first == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/
iterators.pass.cpp 28 int first; member in struct:A
134 i->first = 3;
136 assert(j->first == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.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);
iter_iter_size_char.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, n2, c);
iter_iter_string.pass.cpp 27 typename S::const_iterator first = s.begin() + pos1; local
29 typename S::size_type xlen = last - first;
30 s.replace(first, last, str);
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
stl_pair.h 76 _T1 first; member in struct:pair
78 pair() : first(), second() {}
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
88 return __x.first == __y.first && __x.second == __y.second;
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /system/core/libunwindstack/
DwarfEhFrameWithHdr.cpp 37 // Read the first four bytes all at once.
122 size_t first = 0; local
124 while (first < last) {
125 size_t current = (first + last) / 2;
137 first = current + 1;
  /tools/tradefederation/core/prod-tests/src/com/android/ota/tests/
OtaStabilityTestTest.java 71 IRemoteTest first = iterator.next(); local
72 assertEquals(3, ((OtaStabilityTest)first).getIterations());
  /tools/tradefederation/core/src/com/android/tradefed/util/
Pair.java 24 public final A first; field in class:Pair
27 public Pair(A first, B second) {
28 this.first = first;
46 if (this.first == null) {
47 if (pair.first != null) {
50 } else if (!this.first.equals(pair.first)) {
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /external/jline/src/src/main/java/jline/
CandidateListCompletionHandler.java 161 String first = strings[0]; local
164 for (int i = 0; i < first.length(); i++) {
165 if (startsWith(first.substring(0, i + 1), strings)) {
166 candidate.append(first.charAt(i));

Completed in 583 milliseconds

1 2 3 4 56 7 8 91011>>