Searched refs:First (Results 151 - 175 of 294) sorted by relevance

1234567891011>>

/external/clang/include/clang/Serialization/
H A DASTReader.h200 std::unique_ptr<ASTReaderListener> First; member in class:clang::ChainedASTReaderListener
204 /// Takes ownership of \p First and \p Second.
205 ChainedASTReaderListener(ASTReaderListener *First, ASTReaderListener *Second) argument
206 : First(First), Second(Second) { }
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.h360 bool shouldScheduleAdjacent(MachineInstr* First,
/external/openfst/src/include/fst/
H A Dadd-on.h84 A1 *First() const { return a1_; } function in class:fst::AddOnPair
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_armv6.S119 @ First shift the sample to the range of [0xC0000000, 0x3FFFFFFF],
/external/chromium_org/sync/internal_api/
H A Dsync_manager_impl.cc171 for (ModelTypeSet::Iterator i = types.First(); i.Good(); i.Inc()) {
629 for (ModelTypeSet::Iterator it = models_with_changes.First();
804 debug_info_event_listener_.OnNudgeFromDatatype(types.First().Get());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextAutosizer.cpp879 const RenderObject* firstTextLeaf = findTextLeaf(root, firstDepth, First);
931 const RenderObject* child = (firstOrLast == First) ? parent->slowFirstChild() : parent->slowLastChild();
939 child = (firstOrLast == First) ? child->nextSibling() : child->previousSibling();
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c152 dr.First = 0;
170 declaration_range.First = first;
378 full_decl->Range.First,
H A Dtgsi_sanity.c410 for (i = decl->Range.First; i <= decl->Range.Last; i++) {
/external/llvm/include/llvm/ADT/
H A DSTLExtras.h533 template<typename First, typename Second>
535 size_t operator()(const std::pair<First, Second> &P) const {
536 return std::hash<First>()(P.first) * 31 + std::hash<Second>()(P.second);
H A DSparseBitVector.h795 const SparseBitVectorElement<ElementSize> &First = *(Elements.begin());
796 return (First.index() * ElementSize) + First.find_first();
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c152 dr.First = 0;
170 declaration_range.First = first;
378 full_decl->Range.First,
/external/clang/lib/Sema/
H A DTreeTransform.h517 /// \param First An iterator to the first template argument.
526 bool TransformTemplateArguments(InputIterator First,
2032 Expr *First,
3433 bool TreeTransform<Derived>::TransformTemplateArguments(InputIterator First, argument
3436 for (; First != Last; ++First) {
3438 TemplateArgumentLoc In = *First;
7625 ExprResult First;
7627 First = getDerived().TransformAddressOfOperand(E->getArg(0));
7629 First
10037 RebuildCXXOperatorCallExpr(OverloadedOperatorKind Op, SourceLocation OpLoc, Expr *OrigCallee, Expr *First, Expr *Second) argument
[all...]
H A DSemaOverload.cpp207 First = ICK_Identity;
227 if (GetConversionRank(First) > Rank)
228 Rank = GetConversionRank(First);
250 First == ICK_Array_To_Pointer || First == ICK_Function_To_Pointer))
269 if (First == ICK_Array_To_Pointer)
459 if (First != ICK_Identity) {
460 OS << GetImplicitConversionName(First);
497 if (Before.First || Before.Second || Before.Third) {
505 if (After.First || Afte
[all...]
/external/clang/include/clang/AST/
H A DDecl.h3597 decl_type *First;
3603 First = PrevDecl->getFirstDecl();
3604 assert(First->RedeclLink.NextIsLatest() && "Expected first");
3605 decl_type *MostRecent = First->getNextRedeclaration();
3615 First = static_cast<decl_type*>(this);
3618 // First one will point to this one as latest.
3619 First->RedeclLink.setLatest(static_cast<decl_type*>(this));
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp1418 T *First = D->getFirstDecl(); local
1419 if (First->getMostRecentDecl() != First) {
1425 Writer.AddDeclRef(First, Record);
1426 Writer.Redeclarations.insert(First);
1432 (void)Writer.GetDeclRef(First->getMostRecentDecl());
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Dsixtappredict16x16_neon.asm36 ;Note: To take advantage of 8-bit mulplication instruction in NEON. First apply abs() to
79 ;First Pass: output_height lines x output_width columns (21x16)
311 ;First Pass: output_height lines x output_width columns (16x16)
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c89 cty First = LLVMGetFirst##cname(Mom); \
90 if (First) \
91 return alloc_variant(1, First); \
920 LLVMUseRef First; local
921 if ((First = LLVMGetFirstUse(Val))) {
923 Field(Option, 0) = (value) First;
/external/clang/lib/Format/
H A DContinuationIndenter.cpp76 State.NextToken = Line->First;
262 (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
605 // : First(...), ...
871 (Current.is(tok::r_brace) && State.NextToken != State.Line->First) ||
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1168 unsigned First = findFirstSet(Mask); local
1169 uint64_t Top = (Mask >> First) + 1;
1171 LSB = First;
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp528 static bool CanMergeValues(Value *First, Value *Second) { argument
529 return First == Second || isa<UndefValue>(First) || isa<UndefValue>(Second);
/external/chromium_org/components/sync_driver/
H A Ddata_type_manager_impl_unittest.cc45 for (ModelTypeSet::Iterator iter = crypto_errors.First(); iter.Good();
52 for (ModelTypeSet::Iterator iter = association_errors.First(); iter.Good();
59 for (ModelTypeSet::Iterator iter = unready_errors.First(); iter.Good();
66 for (ModelTypeSet::Iterator iter = unrecoverable_errors.First(); iter.Good();
H A Dmodel_association_manager.cc137 for (syncer::ModelTypeSet::Iterator it = desired_types.First();
/external/chromium_org/sync/engine/
H A Dcommit_util.cc76 for (ModelTypeSet::Iterator it = enabled_types.First(); it.Good(); it.Inc()) {
/external/chromium_org/sync/syncable/
H A Ddirectory.cc42 for (ModelTypeSet::Iterator iter = protocol_types.First(); iter.Good();
749 for (ModelTypeSet::Iterator iter = disabled_types.First(); iter.Good();
809 for (ModelTypeSet::Iterator it = disabled_types.First();
958 for (ModelTypeSet::Iterator i = protocol_types.First(); i.Good(); i.Inc()) {
/external/chromium_org/sync/tools/
H A Dsync_client.cc395 for (ModelTypeSet::Iterator it = model_types.First();

Completed in 1115 milliseconds

1234567891011>>