Searched refs:first (Results 201 - 225 of 2232) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/prefs/
H A Dpref_change_registrar.cc51 service_->RemovePrefObserver(it->first.c_str(), it->second);
59 service_->RemovePrefObserver(it->first.c_str(), it->second);
/external/chromium/chrome/browser/ui/webui/
H A Dprint_preview_ui_html_source_unittest.cc46 EXPECT_EQ(NULL, data.first);
57 dummy_data.first = new base::SharedMemory();
/external/chromium/chrome/common/extensions/
H A Dextension_icon_set.cc32 if (iter->first <= size) {
43 if (iter->first >= size) {
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h37 ColSplit.first.rsplit(':');
42 PSL.FileName = LineSplit.first;
/external/freetype/src/cache/
H A Dftccmap.c113 FT_UInt32 first; /* first character in node */ member in struct:FTC_CMapNodeRec_
120 FTC_CMAP_HASH( (x)->face_id, (x)->cmap_index, (x)->first )
166 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
207 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first );
382 FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) <
386 if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >=
391 FTC_CMAP_NODE( node )->first];
429 FTC_CMAP_NODE( node )->first]
/external/freetype/src/psaux/
H A Dt1cmap.c181 cmap->first = encoding->code_first;
182 cmap->count = (FT_UInt)( encoding->code_last - cmap->first );
196 cmap->first = 0;
208 if ( ( char_code >= cmap->first ) &&
209 ( char_code < ( cmap->first + cmap->count ) ) )
226 if ( char_code < cmap->first )
227 char_code = cmap->first;
229 for ( ; char_code < ( cmap->first + cmap->count ); char_code++ )
/external/guava/guava/src/com/google/common/collect/
H A DRegularContiguousSet.java52 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
69 return new AbstractLinkedIterator<C>(first()) {
87 @Override public C first() { method in class:RegularContiguousSet
96 long distance = domain.distance(first(), last());
136 C lowerEndpoint = Ordering.natural().max(this.first(), other.first());
159 return this.first().equals(that.first())
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml13 (* Prime the first token. *)
/external/llvm/lib/Support/
H A DStringExtras.cpp19 /// StrInStrNoCase - Portable version of strcasestr. Locates the first
55 while (!S.first.empty()) {
56 OutFragments.push_back(S.first);
/external/llvm/tools/llvm-diff/
H A DDiffLog.cpp49 return (Diff[I].first ? (Diff[I].second ? DC_match : DC_left)
52 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; }
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObjectList.java116 * 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/opencv/cvaux/src/
H A Dcvmorphing.cpp51 int *first, /* first sequence of runs */
83 /* --------------Create first line------------- */
85 begLineIndex = first[0];
97 endLineIndex = first[curr];
170 } /* for each runs in first line */
280 uchar * first_pix, /* raster epilines from the first image */
281 int *first_num, /* numbers of pixel in first line */
288 int *first, /* first sequenc
46 icvMorphEpilines8uC3( uchar * first_pix, uchar * second_pix, uchar * dst_pix, float alpha, int *first, int first_runs, int *second, int second_runs, int *first_corr, int *second_corr, int dst_len ) argument
279 icvMorphEpilines8uC3Multi( int lines, uchar * first_pix, int *first_num, uchar * second_pix, int *second_num, uchar * dst_pix, int *dst_num, float alpha, int *first, int *first_runs, int *second, int *second_runs, int *first_corr, int *second_corr ) argument
360 cvMorphEpilinesMulti( int lines, uchar * first_pix, int *first_num, uchar * second_pix, int *second_num, uchar * dst_pix, int *dst_num, float alpha, int *first, int *first_runs, int *second, int *second_runs, int *first_corr, int *second_corr ) argument
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dreverse.h50 relabel_pairs.push_back(make_pair(parens[i].first, parens[i].second));
51 relabel_pairs.push_back(make_pair(parens[i].second, parens[i].first));
/external/openfst/src/include/fst/script/
H A Dreplace.h46 fst_tuples[i].first = untyped_tuples[i].first; // convert label
/external/protobuf/src/google/protobuf/compiler/
H A Dcode_generator.cc63 value.first = parts[i];
66 value.first = parts[i].substr(0, equals_pos);
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc84 if (options[i].first == "dllexport_decl") {
87 *error = "Unknown generator option: " + options[i].first;
/external/valgrind/main/coregrind/m_initimg/
H A Dsimple_huffman.c201 /* Sort histogram - most frequent symbol first (bubble sort) */
225 UInt code, UInt bits, UInt first,
231 if( first == last )
235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 );
238 sym[first].Code = code;
239 sym[first].Bits = bits;
250 for( k = first; k <= last; ++ k )
257 for( k = first; size_a < ((size+1)>>1) && k < last; ++ k )
273 first, last_a );
401 /* Sort histogram - first symbo
224 _Huffman_MakeTree( huff_sym_t *sym, huff_bitstream_t *stream, UInt code, UInt bits, UInt first, UInt last ) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dbar_bad.stderr.exp13 barrier 0x........ was first observed at:
22 barrier 0x........ was first observed at:
31 barrier 0x........ was first observed at:
44 barrier 0x........ was first observed at:
H A Dpth_barrier_reinit.stderr.exp5 barrier 0x........ was first observed at:
H A Dpth_cancel_locked.stderr.exp5 mutex 0x........ was first observed at:
H A Dpth_mutex_reinit.stderr.exp5 mutex 0x........ was first observed at:
H A Dtc04_free_lock.stderr.exp5 mutex 0x........ was first observed at:
12 mutex 0x........ was first observed at:
20 mutex 0x........ was first observed at:
28 mutex 0x........ was first observed at:
H A Dtc12_rwl_trivial.stderr.exp5 rwlock 0x........ was first observed at:
/external/valgrind/main/helgrind/tests/
H A Dtc12_rwl_trivial.stderr.exp12 Lock at 0x........ was first observed
/external/valgrind/main/include/
H A Dpub_tool_xarray.h72 index at which the first byte was added. */
79 /* Lookup (by binary search) 'key' in the array. Set *first to be the
80 index of the first, and *last to be the index of the last matching
82 False, and don't change *first or *last. first and/or last may be
85 /*OUT*/Word* first, /*OUT*/Word* last );
93 array has first been sorted using the same comparison function as
96 /*OUT*/Word* first, /*OUT*/Word* last,
115 /* Drop the first n elements of an XArray. Bombs if there are less

Completed in 1649 milliseconds

1234567891011>>