HomeSort by relevance Sort by last modified time
    Searched refs:Extend (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu4c/data/brkitr/
sent.txt 18 $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 | $Format)*
    [all...]
sent_el.txt 18 $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 | $Format)*
    [all...]
word.txt 30 $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 | $Format)*
    [all...]
word_POSIX.txt 30 $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 | $Format)*
    [all...]
char.txt 19 $Extend = [\p{Grapheme_Cluster_Break = Extend}];
47 [^$Control $CR $LF] $Extend;
63 $Extend [^$Control $CR $LF];
  /external/clang/lib/CodeGen/
ABIInfo.h 50 /// Extend - Valid only for integer argument types. Same as 'direct'
52 Extend,
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
137 assert((isDirect() || isExtend()) && "Not a direct or extend kind");
CGCall.cpp 463 // them are direct or extend without a specified coerce type, specify the
    [all...]
TargetInfo.cpp 70 case Extend:
71 OS << "Extend";
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 358 /// \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/utils/TableGen/
NeonEmitter.cpp 733 // Use the vmovl builtin to sign-extend or zero-extend a vector.
734 static std::string Extend(StringRef typestr, const std::string &a) {
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) + ";"
    [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 54 void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
56 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
65 void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
68 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
78 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
81 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
91 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
94 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
    [all...]
SemaCXXScopeSpec.cpp 403 /// dependent context, for example. Nor will it extend \p SS with the scope
496 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
579 // don't extend the nested-name-specifier. Just return now.
584 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
589 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
631 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
650 // resolve Identifier, then extend the SS with Identifier. This will have
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)
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 500 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context,
513 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context,
525 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context,
537 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context,
  /external/opencv/cvaux/src/
_cvvectrack.h 130 void Extend(CvRect& r, int d)
cvvecfacetracking.cpp 269 Extend(roi, 1);
489 Extend(r, d);
    [all...]
  /external/v8/src/
handles-inl.h 138 if (cur == current->limit) cur = Extend();
handles.h 153 // Extend the handle scope making room for more handles.
154 static internal::Object** Extend();
jsregexp.h 345 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); }
    [all...]
handles.cc 58 Object** HandleScope::Extend() {
84 // If we still haven't found a slot for the handle, we extend the
    [all...]
jsregexp.cc     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 83 /// \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,
    [all...]
  /external/zlib/src/
make_vms.com 378 $! 0.03 20060202 Extend handling of GNU C
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 249 bool Extend = false;
278 Extend = true;
284 if (Extend) {
597 // Truncate or zero extend offset to target pointer type.
    [all...]

Completed in 1717 milliseconds

1 2