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

  /external/regex-re2/re2/testing/
filtered_re2_test.cc 14 vector<string> atoms; member in struct:re2::FilterTestVars
34 v.f.Compile(&v.atoms);
35 EXPECT_EQ(0, v.atoms.size());
49 v.f.Compile(&v.atoms);
50 EXPECT_EQ(1, v.atoms.size());
51 EXPECT_EQ(v.atoms[0], "\xde\xadq\xbe\xef");
61 // If any test needs more than this many regexps or atoms, increase
64 const char* atoms[20]; member in struct:re2::AtomTest
74 // This test checks that all atoms of length greater than min length
75 // are found, and no atoms that are of smaller length are found
245 vector<string> atoms; local
    [all...]
exhaustive3_test.cc 14 vector<string> atoms = Split(" ", local
16 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
22 vector<string> atoms = Split(" ", local
24 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
67 vector<string> atoms = Split(" ", local
73 ExhaustiveTest(1, 0, atoms, ops,
80 vector<string> atoms = Split(" ", local
89 ExhaustiveTest(1, 0, atoms, ops,
regexp_generator.cc 47 const vector<string>& atoms,
49 : maxatoms_(maxatoms), maxops_(maxops), atoms_(atoms), ops_(ops) {
95 // atoms: the number of atoms used in the sequence
97 // then nstk = 2, ops = 1, atoms = 3.
102 int ops, int atoms) {
112 // Add atoms if there is room.
113 if (atoms < maxatoms_) {
116 GeneratePostfix(post, nstk + 1, ops, atoms + 1);
128 GeneratePostfix(post, nstk - nargs + 1, ops + 1, atoms);
    [all...]
random_test.cc 86 vector<string> atoms = Split(" ", local
91 RandomTest(10, 10, atoms, ops, 20, alphabet, "");
regexp_generator.h 30 RegexpGenerator(int maxatoms, int maxops, const vector<string>& atoms,
51 int maxatoms_; // Maximum number of atoms allowed in expr.
53 vector<string> atoms_; // Possible atoms.
  /external/regex-re2/re2/
filtered_re2.cc 43 void FilteredRE2::Compile(vector<string>* atoms) {
53 atoms->clear();
54 prefilter_tree_->Compile(atoms);
66 const vector<int>& atoms) const {
72 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
81 const vector<int>& atoms,
85 prefilter_tree_->RegexpsGivenStrings(atoms, &regexps);
filtered_re2.h 62 const vector<int>& atoms) const;
67 const vector<int>& atoms,
91 // An AND-OR tree of string atoms used for filtering regexps.
  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.cpp 47 reinterpret_cast<JSCell*>(&block->atoms()[i])->~JSCell();
63 new (&atoms()[i]) JSCell(*globalData, dummyMarkableCellStructure);
74 JSCell* cell = reinterpret_cast<JSCell*>(&atoms()[i]);
MarkedBlock.h 90 Atom* atoms();
107 inline MarkedBlock::Atom* MarkedBlock::atoms() function in class:JSC::MarkedBlock
218 functor(reinterpret_cast<JSCell*>(&atoms()[i]));
  /external/linux-tools-perf/
builtin-sched.c 61 struct sched_atom **atoms; member in struct:task_desc
245 task->atoms = realloc(task->atoms, size);
246 BUG_ON(!task->atoms);
248 task->atoms[idx] = event;
258 return task->atoms[task->nr_events - 1];
487 process_sched_event(this_task, this_task->atoms[i]);
927 struct work_atoms *atoms; local
930 atoms = container_of(node, struct work_atoms, node);
932 cmp = thread_lat_cmp(sort_list, &key, atoms);
972 struct work_atoms *atoms = zalloc(sizeof(*atoms)); local
1124 struct work_atoms *atoms = thread_atoms_search(&atom_root, thread, &cmp_pid); local
1146 struct work_atoms *atoms; local
1194 struct work_atoms *atoms; local
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_ipc.cc 174 scoped_array<Atom> atoms(new Atom[kNumAtoms]);
183 atoms.get());
186 type_to_atom_[kAtomInfos[i].atom] = atoms[i];
187 atom_to_string_[atoms[i]] = kAtomInfos[i].name;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 564 int[] atoms = labels.toArray();
565 for (int a = 0; a < atoms.length; a++) {
567 if ( atoms[a]>=Label.MIN_CHAR_VALUE ) {
568 int labelIndex = atoms[a]-smin; // offset from 0
608 int[] atoms = labels.toArray();
609 for (int a = 0; a < atoms.length; a++) {
610 if ( atoms[a]==Label.EOT ) {
614 else if ( atoms[a]==Label.EOF ) {
    [all...]
  /external/libxml2/
xmlregexp.c 253 xmlRegAtomPtr *atoms; member in struct:_xmlAutomata
273 xmlRegAtomPtr *atoms; member in struct:_xmlRegexp
439 ret->atoms = ctxt->atoms;
451 (ret->atoms != NULL) &&
452 (ret->atoms[0] != NULL) &&
453 (ret->atoms[0]->type == XML_REGEXP_STRING)) {
465 * 2/ counting the unique number of atoms, and check that
503 if ((ret->atoms[i]->type == XML_REGEXP_STRING) &&
504 (ret->atoms[i]->quant == XML_REGEXP_QUANT_ONCE))
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSCell.h 358 JSCell* cell = reinterpret_cast<JSCell*>(&atoms()[m_nextAtom]);
  /external/libusb_aah/libusb/os/
linux_usbfs.c 274 int atoms, kmajor, kminor, ksublevel; local
278 atoms = sscanf(uts.release, "%d.%d.%d", &kmajor, &kminor, &ksublevel);
279 if (atoms < 1)
288 if (atoms < 2)
296 if (atoms < 3)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 3277 milliseconds