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

1 2 3

  /external/icu/icu4c/source/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}];
61 $ALetterPlus = [$ALetter-$dictionaryCJK [$ComplexContext-$Extend-$Control]];
65 # Rules 4 Ignore Format and Extend characters,
69 $KatakanaEx = $Katakana ($Extend | $Format)*;
70 $Hebrew_LetterEx = $Hebrew_Letter ($Extend | $Format)*;
71 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
72 $Single_QuoteEx = $Single_Quote ($Extend | $Format)*;
73 $Double_QuoteEx = $Double_Quote ($Extend | $Format)*;
74 $MidNumLetEx = $MidNumLet ($Extend | $Format)*
    [all...]
word_POSIX.txt 30 $Extend = [\p{Word_Break = Extend}];
61 $ALetterPlus = [$ALetter-$dictionaryCJK [$ComplexContext-$Extend-$Control]];
65 # Rules 4 Ignore Format and Extend characters,
69 $KatakanaEx = $Katakana ($Extend | $Format)*;
70 $Hebrew_LetterEx = $Hebrew_Letter ($Extend | $Format)*;
71 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
72 $Single_QuoteEx = $Single_Quote ($Extend | $Format)*;
73 $Double_QuoteEx = $Double_Quote ($Extend | $Format)*;
74 $MidNumLetEx = $MidNumLet ($Extend | $Format)*
    [all...]
char.txt 19 $Extend = [\p{Grapheme_Cluster_Break = Extend}];
47 [^$Control $CR $LF] $Extend;
63 $Extend [^$Control $CR $LF];
  /external/chromium_org/third_party/leveldatabase/src/util/
crc32c.h 15 // crc32c of some string A. Extend() is often used to maintain the
17 extern uint32_t Extend(uint32_t init_crc, const char* data, size_t n);
21 return Extend(0, data, n);
crc32c_test.cc 54 TEST(CRC, Extend) {
56 Extend(Value("hello ", 6), "world", 5));
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType2ShadingDictionary_autogen.h 44 SkPdfArray* Extend(SkPdfNativeDoc* doc);
SkPdfType3ShadingDictionary_autogen.h 44 SkPdfArray* Extend(SkPdfNativeDoc* doc);
SkPdfType2ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType2ShadingDictionary::Extend(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Extend", "");
56 return get("Extend", "") != NULL;
SkPdfType3ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType3ShadingDictionary::Extend(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Extend", "");
56 return get("Extend", "") != NULL;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_audio_vector.h 38 MOCK_METHOD1(Extend,
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType2ShadingDictionary_autogen.h 44 SkPdfArray* Extend(SkPdfNativeDoc* doc);
SkPdfType3ShadingDictionary_autogen.h 44 SkPdfArray* Extend(SkPdfNativeDoc* doc);
SkPdfType2ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType2ShadingDictionary::Extend(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Extend", "");
56 return get("Extend", "") != NULL;
SkPdfType3ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType3ShadingDictionary::Extend(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Extend", "");
56 return get("Extend", "") != NULL;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_vector.h 70 virtual void Extend(size_t extra_length);
audio_multi_vector.cc 56 channels_[i]->Extend(length);
195 channels_[channel]->Extend(extend_length);
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 364 /// \brief Extend the current nested-name-specifier by another
375 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
378 /// \brief Extend the current nested-name-specifier by another
389 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
392 /// \brief Extend the current nested-name-specifier by another
403 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
406 /// \brief Extend the current nested-name-specifier by another
418 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 64 void Extend(uptr npcs);
127 // In memory-mapped mode we must extend the new file to the known array
131 if (size) Extend(size);
147 // Extend coverage PC array to fit additional npcs elements.
148 void CoverageData::Extend(uptr npcs) {
162 // Extend the file and map the new space at the end of pc_array.
166 Printf("failed to extend raw coverage file: %d\n", err);
371 // Extend() calls to update .sancov.map.
374 coverage_data.Extend(npcs);
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 47 /// Extend - Valid only for integer argument types. Same as 'direct'
49 Extend,
113 auto AI = ABIArgInfo(Extend);
162 bool isExtend() const { return TheKind == Extend; }
169 // Direct/Extend accessors
171 assert((isDirect() || isExtend()) && "Not a direct or extend kind");
175 assert((isDirect() || isExtend()) && "Not a direct or extend kind");
  /art/runtime/
memory_region.h 87 void Extend(const MemoryRegion& region, uintptr_t extra) {
  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.cc 86 uint32_t crc = crc32c::Extend(type_crc_[t], ptr, n);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tom.h 307 virtual HRESULT WINAPI SetIndex(__LONG32 Unit,__LONG32 Index,__LONG32 Extend) = 0;
313 virtual HRESULT WINAPI StartOf(__LONG32 Unit,__LONG32 Extend,__LONG32 *pDelta) = 0;
314 virtual HRESULT WINAPI EndOf(__LONG32 Unit,__LONG32 Extend,__LONG32 *pDelta) = 0;
335 virtual HRESULT WINAPI SetPoint(__LONG32 x,__LONG32 y,__LONG32 Type,__LONG32 Extend) = 0;
369 HRESULT (WINAPI *SetIndex)(ITextRange *This,__LONG32 Unit,__LONG32 Index,__LONG32 Extend);
375 HRESULT (WINAPI *StartOf)(ITextRange *This,__LONG32 Unit,__LONG32 Extend,__LONG32 *pDelta);
376 HRESULT (WINAPI *EndOf)(ITextRange *This,__LONG32 Unit,__LONG32 Extend,__LONG32 *pDelta);
397 HRESULT (WINAPI *SetPoint)(ITextRange *This,__LONG32 x,__LONG32 y,__LONG32 Type,__LONG32 Extend);
433 #define ITextRange_SetIndex(This,Unit,Index,Extend) (This)->lpVtbl->SetIndex(This,Unit,Index,Extend)
    [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 56 void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
58 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
67 void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
70 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
80 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
83 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
93 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
96 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
    [all...]

Completed in 335 milliseconds

1 2 3