Searched refs:Extend (Results 1 - 25 of 25) sorted by relevance

/external/icu4c/data/brkitr/
H A Dsent.txt18 $Extend = [\p{Sentence_Break = Extend}];
33 # incorporate trailing Extend or Format chars.
36 $SpEx = $Sp ($Extend | $Format)*;
37 $LowerEx = $Lower ($Extend | $Format)*;
38 $UpperEx = $Upper ($Extend | $Format)*;
39 $OLetterEx = $OLetter ($Extend | $Format)*;
40 $NumericEx = $Numeric ($Extend | $Format)*;
41 $ATermEx = $ATerm ($Extend | $Format)*;
42 $SContinueEx= $SContinue ($Extend |
[all...]
H A Dsent_el.txt18 $Extend = [\p{Sentence_Break = Extend}];
33 # incorporate trailing Extend or Format chars.
36 $SpEx = $Sp ($Extend | $Format)*;
37 $LowerEx = $Lower ($Extend | $Format)*;
38 $UpperEx = $Upper ($Extend | $Format)*;
39 $OLetterEx = $OLetter ($Extend | $Format)*;
40 $NumericEx = $Numeric ($Extend | $Format)*;
41 $ATermEx = $ATerm ($Extend | $Format)*;
42 $SContinueEx= $SContinue ($Extend |
[all...]
H A Dword.txt30 $Extend = [\p{Word_Break = Extend}];
57 $ALetterPlus = [$ALetter-$dictionaryCJK [$ComplexContext-$Extend-$Control]];
61 # Rules 4 Ignore Format and Extend characters,
65 $KatakanaEx = $Katakana ($Extend | $Format)*;
66 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
67 $MidNumLetEx = $MidNumLet ($Extend | $Format)*;
68 $MidLetterEx = $MidLetter ($Extend | $Format)*;
69 $MidNumEx = $MidNum ($Extend | $Format)*;
70 $NumericEx = $Numeric ($Extend |
[all...]
H A Dword_POSIX.txt30 $Extend = [\p{Word_Break = Extend}];
57 $ALetterPlus = [$ALetter-$dictionaryCJK [$ComplexContext-$Extend-$Control]];
61 # Rules 4 Ignore Format and Extend characters,
65 $KatakanaEx = $Katakana ($Extend | $Format)*;
66 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
67 $MidNumLetEx = $MidNumLet ($Extend | $Format)*;
68 $MidLetterEx = $MidLetter ($Extend | $Format)*;
69 $MidNumEx = $MidNum ($Extend | $Format)*;
70 $NumericEx = $Numeric ($Extend |
[all...]
H A Dchar.txt19 $Extend = [\p{Grapheme_Cluster_Break = Extend}];
47 [^$Control $CR $LF] $Extend;
63 $Extend [^$Control $CR $LF];
/external/clang/lib/CodeGen/
H A DABIInfo.h50 /// Extend - Valid only for integer argument types. Same as 'direct'
52 Extend, enumerator in enum:clang::ABIArgInfo::Kind
97 return ABIArgInfo(Extend, T, 0, false, false, false, false, 0);
100 return ABIArgInfo(Extend, T, 0, false, false, true, false, 0);
126 bool isExtend() const { return TheKind == Extend; }
132 return TheKind == Direct || TheKind == Extend;
135 // Direct/Extend accessors
H A DCGCall.cpp882 case ABIArgInfo::Extend:
928 case ABIArgInfo::Extend:
1057 case ABIArgInfo::Extend:
1110 case ABIArgInfo::Extend:
1280 case ABIArgInfo::Extend:
1652 case ABIArgInfo::Extend:
2206 case ABIArgInfo::Extend:
2398 case ABIArgInfo::Extend:
H A DTargetInfo.cpp70 case Extend:
71 OS << "Extend";
2064 // If we have a sign or zero extended integer, make sure to return Extend
2207 // If we have a sign or zero extended integer, make sure to return Extend
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h358 /// \brief Extend the current nested-name-specifier by another
369 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
372 /// \brief Extend the current nested-name-specifier by another
383 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
386 /// \brief Extend the current nested-name-specifier by another
397 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
400 /// \brief Extend the current nested-name-specifier by another
412 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp500 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
513 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
525 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
537 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp734 static std::string Extend(StringRef typestr, const std::string &a) { function
802 s += Extend(typestr, "__a") + " + " + Extend(typestr, "__b") + ";";
805 s += "__a + " + Extend(typestr, "__b") + ";";
811 s += Extend(typestr, "__a") + " - " + Extend(typestr, "__b") + ";";
814 s += "__a - " + Extend(typestr, "__b") + ";";
985 s += Extend(utype, abd) + ";";
987 s += Extend(typestr, abd) + ";";
1002 s += Extend(utyp
[all...]
/external/clang/lib/Sema/
H A DDeclSpec.cpp54 void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc, function in class:CXXScopeSpec
56 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
65 void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier, function in class:CXXScopeSpec
68 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
78 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace, function in class:CXXScopeSpec
81 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
91 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias, function in class:CXXScopeSpec
94 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
H A DSemaCXXScopeSpec.cpp496 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
584 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
589 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
631 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
669 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
726 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
792 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
837 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
H A DTreeTransform.h2773 SS.Extend(SemaRef.Context, NS, Q.getLocalBeginLoc(), Q.getLocalEndLoc());
2782 SS.Extend(SemaRef.Context, Alias, Q.getLocalBeginLoc(),
2809 SS.Extend(SemaRef.Context, /*FIXME:*/SourceLocation(), TL,
9328 SS.Extend(SemaRef.Context, SourceLocation(),
/external/opencv/cvaux/src/
H A D_cvvectrack.h130 void Extend(CvRect& r, int d) function
H A Dcvvecfacetracking.cpp269 Extend(roi, 1);
489 Extend(r, d);
/external/v8/src/
H A Dhandles-inl.h138 if (cur == current->limit) cur = Extend();
H A Dhandles.h153 // Extend the handle scope making room for more handles.
154 static internal::Object** Extend();
H A Djsregexp.h345 OutSet* Extend(unsigned value);
351 // to use Extend instead to ensure that only one instance exists
381 void AddValue(int value) { out_set_ = out_set_->Extend(value); }
H A Dhandles.cc58 Object** HandleScope::Extend() { function in class:v8::internal::HandleScope
H A Djsregexp.cc4685 OutSet* OutSet::Extend(unsigned value) { function in class:v8::internal::OutSet
4736 loc.set_value(Entry(current.from(), current.to(), empty()->Extend(value)));
4779 empty()->Extend(value)));
4810 empty()->Extend(value)));
/external/clang/include/clang/Sema/
H A DDeclSpec.h83 /// \brief Extend the current nested-name-specifier by another
94 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
97 /// \brief Extend the current nested-name-specifier by another
108 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
111 /// \brief Extend the current nested-name-specifier by another
122 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
125 /// \brief Extend the current nested-name-specifier by another
137 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
1608 /// ExtendWithDeclSpec - Extend the declarator source range to include the
/external/zlib/src/
H A Dmake_vms.com378 $! 0.03 20060202 Extend handling of GNU C
/external/clang/lib/Serialization/
H A DASTReader.cpp6800 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
6807 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
6814 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
6827 Builder.Extend(Context,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp249 bool Extend = false; local
278 Extend = true;
284 if (Extend) {

Completed in 8825 milliseconds