HomeSort by relevance Sort by last modified time
    Searched refs:atom (Results 1 - 19 of 19) sorted by null

  /external/webkit/JavaScriptCore/yarr/
RegexInterpreter.h 89 } atom; member in union:JSC::Yarr::ByteTerm::__anon8126
114 atom.patternCharacter = ch;
115 atom.quantityType = quantityType;
116 atom.quantityCount = quantityCount;
135 atom.casedCharacter.lo = lo;
136 atom.casedCharacter.hi = hi;
137 atom.quantityType = quantityType;
138 atom.quantityCount = quantityCount;
146 atom.characterClass = characterClass;
147 atom.quantityType = QuantifierFixedCount
    [all...]
RegexInterpreter.cpp 120 unsigned firstSubpatternId = term.atom.subpatternId;
121 unsigned numNestedSubpatterns = term.atom.parenthesesDisjunction->m_numSubpatterns;
144 return reinterpret_cast<DisjunctionContext*>(&(subpatternBackup[term.atom.parenthesesDisjunction->m_numSubpatterns << 1]));
153 return new(malloc(sizeof(ParenthesesDisjunctionContext) + (((term.atom.parenthesesDisjunction->m_numSubpatterns << 1) - 1) * sizeof(int)) + sizeof(DisjunctionContext) + (disjunction->m_frameSize - 1) * sizeof(uintptr_t))) ParenthesesDisjunctionContext(output, term);
378 switch (term.atom.quantityType) {
391 if ((backTrack->matchAmount < term.atom.quantityCount) && input.checkInput(1)) {
393 if (checkCharacter(term.atom.patternCharacter, term.inputPosition - 1))
407 switch (term.atom.quantityType) {
420 if ((backTrack->matchAmount < term.atom.quantityCount) && input.checkInput(1)) {
422 if (checkCasedCharacter(term.atom.casedCharacter.lo, term.atom.casedCharacter.hi, term.inputPosition - 1)
    [all...]
  /external/libxml2/
xmlregexp.c 212 xmlRegAtomPtr atom; member in struct:_xmlRegTrans
247 xmlRegAtomPtr atom; member in struct:_xmlAutomata
350 static void xmlRegFreeAtom(xmlRegAtomPtr atom);
352 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
460 * 3/ build a table state x atom for the transitions
563 if ((trans->to == -1) || (trans->atom == NULL))
565 atomno = stringRemap[trans->atom->no];
566 if ((trans->atom->data != NULL) && (transdata == NULL)) {
579 * if the same atom can generate transitions to 2 different
588 printf("Indet: state %d trans %d, atom %d to %d : %d to %d\n"
3168 xmlRegAtomPtr atom; local
3725 xmlRegAtomPtr atom; local
4210 xmlRegAtomPtr atom; local
5621 xmlRegAtomPtr atom; local
5661 xmlRegAtomPtr atom; local
5721 xmlRegAtomPtr atom; local
5789 xmlRegAtomPtr atom; local
5875 xmlRegAtomPtr atom; local
5944 xmlRegAtomPtr atom; local
6023 xmlRegAtomPtr atom; local
    [all...]
  /dalvik/vm/mterp/
rebuild.sh 23 for arch in portstd portdbg allstubs armv4t armv5te armv5te-vfp armv7-a armv7-a-neon x86 x86-atom; do TARGET_ARCH_EXT=$arch make -f Makefile-mterp; done
  /external/freetype/include/freetype/
ftbdf.h 66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM.
121 const char* atom; member in union:BDF_PropertyRec_::__anon3737
  /external/libpcap/
optimize.c 454 int atom; local
459 atom = atomuse(&s->s);
460 if (atom >= 0) {
461 if (atom == AX_ATOM) {
467 else if (atom < N_ATOMS) {
468 if (!ATOMELEM(def, atom))
469 use |= ATOMMASK(atom);
474 atom = atomdef(&s->s);
475 if (atom >= 0) {
476 if (!ATOMELEM(use, atom))
1144 register int atom; local
1170 register int atom; local
1296 int atom; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-85721.js 152 //# Item 10: atom
154 $atom =
155 $atom_char + '+' + // # some number of atom characters...
156 '(?!' + $atom_char + ')'; // # ..not followed by something that could be part of an atom
165 //# Item 7: word is an atom or quoted string
168 $atom + // # Atom
173 //# Item 12: domain-ref is just an atom
174 $domain_ref = $atom;
226 //# Like atom-char, but without listing space, and uses phrase_ctrl
    [all...]
  /external/elfutils/libdw/
dwarf_getloclist.c 28 uint8_t atom; member in struct:loclist
107 switch ((newloc->atom = *data++))
276 result[n].atom = loclist->atom;
libdw.h 148 uint8_t atom; /* Operation */ member in struct:__anon3584
  /external/freetype/src/sfnt/
ttbdf.c 217 aprop->u.atom = (const char*)bdf->strings + value;
sfdriver.c 361 *acharset_encoding = encoding.u.atom;
362 *acharset_registry = registry.u.atom;
  /external/webkit/WebKitTools/QtLauncher/
main.cpp 212 Atom atom = XInternAtom(QX11Info::display(), "_HILDON_ZOOM_KEY_ATOM", False); local
213 if (!atom) {
219 XChangeProperty(QX11Info::display(), winId(), atom, XA_INTEGER, 32, PropModeReplace, reinterpret_cast<unsigned char*>(&val), 1); local
  /external/v8/src/
parser.cc 448 RegExpTree* atom = new RegExpAtom(characters_->ToConstVector()); local
450 text_.Add(atom);
553 RegExpTree* atom; local
556 // Last atom was character.
565 atom = new RegExpAtom(char_vector);
569 atom = text_.RemoveLast();
573 atom = terms_.RemoveLast();
574 if (atom->max_match() == 0) {
580 terms_.Add(atom);
584 // Only call immediately after adding an atom or character
4360 RegExpTree* atom = new RegExpCharacterClass(ranges, false); local
4400 RegExpTree* atom = ParseCharacterClass(CHECK_FAILED); local
4430 RegExpTree* atom = new RegExpCharacterClass(ranges, false); local
4446 RegExpTree* atom = new RegExpBackReference(capture); local
    [all...]
jsregexp.cc 137 // Parse-tree is a single atom that is equal to the pattern.
142 RegExpAtom* atom = parse_result.tree->AsAtom(); local
143 Vector<const uc16> atom_pattern = atom->data();
164 case JSRegExp::ATOM:
179 // RegExp Atom implementation: Simple string search using indexOf.
187 JSRegExp::ATOM,
625 text->AddElement(TextElement::Atom(this));
640 TextElement TextElement::Atom(RegExpAtom* atom) {
641 TextElement result = TextElement(ATOM);
5001 RegExpAtom* atom = text.data.u_atom; local
    [all...]
jsregexp.h 400 VISIT(Atom) \
416 enum Type {UNINITIALIZED, ATOM, CHAR_CLASS};
419 static TextElement Atom(RegExpAtom* atom);
    [all...]
  /external/elfutils/src/
nm.c 618 if (nloc == 1 && loc[0].atom == DW_OP_addr)
    [all...]
  /external/libvpx/build/make/
configure.sh 805 atom*)
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 192 milliseconds