Searched defs:lines (Results 1 - 25 of 201) sorted by last modified time

123456789

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Daddinterface.cpp79 QStringList lines = ifaces.split(QRegExp("\\n")); local
80 for (QStringList::Iterator it = lines.begin();
81 it != lines.end(); it++) {
H A Dpeers.cpp406 QStringList lines = info.split(QRegExp("\\n")); local
409 for (QStringList::Iterator it = lines.begin();
410 it != lines.end(); it++) {
422 name = lines[0];
430 lines[0]);
444 item->setData(lines[0], peer_role_address);
592 QStringList lines = bss.split(QRegExp("\\n")); local
593 for (QStringList::Iterator it = lines.begin();
594 it != lines.end(); it++) {
629 for (int i = 0; i < lines
[all...]
H A Dscanresults.cpp79 QStringList lines = bss.split(QRegExp("\\n")); local
80 for (QStringList::Iterator it = lines.begin();
81 it != lines.end(); it++) {
H A Dwpagui.cpp1378 QStringList lines = status.split(QRegExp("\\n")); local
1379 for (QStringList::Iterator it = lines.begin();
1380 it != lines.end(); it++) {
/external/webp/src/dec/
H A Dvp8l.c464 int lines = mb_h; local
466 while (lines-- > 0) {
506 if (!(y_pos & 1)) { // even lines: store values
509 } else { // odd lines: average with previous values
522 if (!(y_pos & 1)) { // even lines
525 } else { // odd lines (note: we could just skip this)
/external/valgrind/main/helgrind/
H A Dlibhb_core.c222 /* In the lines, each 8 bytes are treated individually, and are mapped
237 /* tags are separated from lines. tags are Addrs and are
248 FiLine lines[FI_NUM_LINES]; member in struct:__anon32843
566 static UWord stats__cache_Z_fetches = 0; // # Z lines fetched
567 static UWord stats__cache_Z_wbacks = 0; // # Z lines written back
568 static UWord stats__cache_F_fetches = 0; // # F lines fetched
569 static UWord stats__cache_F_wbacks = 0; // # F lines written back
3359 FiLine* line = &fi->lines[lineno];
3376 FiLine* line = &fi->lines[lineno];
3418 FiLine* line = &fi->lines[linen
[all...]
/external/skia/src/core/
H A DSkEdgeBuilder.cpp117 SkPoint lines[SkLineClipper::kMaxPoints]; local
118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
121 if (edge->setLine(lines[i], lines[i + 1], shiftUp)) {
193 SkPoint lines[SkLineClipper::kMaxPoints]; local
194 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
196 this->addLine(&lines[i]);
H A DSkLineClipper.cpp176 SkPoint lines[]) {
273 // Now copy the results into the caller's lines[] parameter
277 lines[lineCount - i] = result[i];
280 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
175 ClipLine(const SkPoint pts[], const SkRect& clip, SkPoint lines[]) argument
/external/skia/src/gpu/
H A DGrAAHairLinePathRenderer.cpp31 // lines are rendered as:
245 // in this case approx the path with lines
269 // if it returns -1 then should be drawn as lines
311 * Generates the lines and quads to be rendered. Lines are always recorded in
322 GrAAHairLinePathRenderer::PtArray* lines,
354 SkPoint* pts = lines->push_back_n(4);
380 SkPoint* pts = lines->push_back_n(2);
388 // When it is degenerate it allows the approximation with lines to work since the
404 SkPoint* pts = lines->push_back_n(4);
460 SkPoint* pts = lines
319 generate_lines_and_quads(const SkPath& path, const SkMatrix& m, const SkIRect& devClipBounds, GrAAHairLinePathRenderer::PtArray* lines, GrAAHairLinePathRenderer::PtArray* quads, GrAAHairLinePathRenderer::PtArray* conics, GrAAHairLinePathRenderer::IntArray* quadSubdivCnts, GrAAHairLinePathRenderer::FloatArray* conicWeights) argument
722 createLineGeom(const SkPath& path, GrDrawTarget* target, const PtArray& lines, int lineCnt, GrDrawTarget::AutoReleaseGeometry* arg, SkRect* devBounds) argument
950 int lines = 0; local
[all...]
/external/skia/src/views/
H A DSkWidgets.cpp360 int lines = width > 0 ? SkTextLineBreaker::CountLines(fText.c_str(), fText.size(), fPaint, width) : 0; local
365 this->setHeight(lines * (after - before) + fMargin.fY * 2);
/external/skia/src/views/animated/
H A DSkStaticTextView.cpp45 int lines = width > 0 ? SkTextLineBreaker::CountLines(fText.c_str(), fText.size(), fPaint, width) : 0; local
47 this->setHeight(lines * fPaint.getFontSpacing() + fMargin.fY * 2);
/external/skia/tests/
H A DPathOpsCubicIntersectionTestData.cpp112 const SkDCubic lines[] = { variable
145 const size_t lines_count = SK_ARRAY_COUNT(lines);
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/skia/experimental/Intersection/
H A DCubicIntersection_TestData.cpp119 const Cubic lines[] = { variable
160 const size_t lines_count = sizeof(lines) / sizeof(lines[0]);
H A DSimplifyAddIntersectingTs_Test.cpp23 static const SkPoint lines[][2] = { variable
39 static const size_t lineCount = sizeof(lines) / sizeof(lines[0]);
61 path.moveTo(lines[outer][0].fX, lines[outer][0].fY);
62 path.lineTo(lines[outer][1].fX, lines[outer][1].fY);
64 pts1 = lines[outer];
H A DSimplifyAngle_Test.cpp18 static const SkPoint lines[][2] = { variable
29 static const size_t lineCount = sizeof(lines) / sizeof(lines[0]);
118 angle->set(lines[x], SkPath::kLine_Verb, 0, x, x + 1, dummy);
119 double arcTan = atan2(lines[x][0].fX - lines[x][1].fX,
120 lines[x][0].fY - lines[x][1].fY);
134 // span, arcTans[span], lines[span][0].fX, lines[spa
[all...]
/external/skia/gm/
H A Dgmmain.cpp1438 "The file should list one test per line, except for comment lines starting with #");
1826 * Read individual lines from a file, pushing them into the given array.
1829 * @param lines array of strings to add the lines to
1830 * @returns true if able to read lines from the file
1832 static bool read_lines_from_file(const char* filename, SkTArray<SkString> &lines) { argument
1851 lines.push_back(line);
1857 lines.push_back(line);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/
H A DSDL_gapivideo.c859 static int updateLine8to8(_THIS, unsigned char *srcPointer, unsigned char *destPointer, int width, int height, int lines) argument
879 static int updateLine16to16(_THIS, PIXEL *srcPointer, PIXEL *destPointer, int width, int height, int lines) argument
897 || (lines == 1) )
907 /* read two lines at the same time, write DWORD */
969 if( (((unsigned)destPointer & 3) != 0) || (lines == 1) )
995 static int updateLine16to4(_THIS, PIXEL *srcPointer, unsigned char *destPointer, int width, int height, int lines, int yNibble, int xNibble) argument
1015 if( lines == 1 )
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c416 ;; switch to color mode and enable CPU access 480 lines
869 // Then we know the number of lines
1132 // FIXME should handle VGA 14/16 lines
2647 static void set_scan_lines(lines) Bit8u lines;
2655 crtc_r9 = (crtc_r9 & 0xe0) | (lines - 1);
2657 if(lines==8)
2663 biosfn_set_cursor_shape(lines-4,lines-3);
2665 write_word(BIOSMEM_SEG,BIOSMEM_CHAR_HEIGHT, lines);
2884 ; res : 00 200 lines, 01 350 lines, 02 400 lines variable
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dmock_code_generator.cc71 vector<string> lines; local
72 SplitStringUsing(content, "\n", &lines);
74 while (!lines.empty() && lines.back().empty()) {
75 lines.pop_back();
77 for (int i = 0; i < lines.size(); i++) {
78 lines[i] += "\n";
86 ASSERT_EQ(lines.size(), 3 + insertion_list.size() * 2);
88 lines[0]); local
90 EXPECT_EQ(kFirstInsertionPoint, lines[
96 lines[1 + i]); local
[all...]
/external/proguard/src/proguard/
H A DConfigurationParser.java72 * Creates a new ConfigurationParser for the given lines,
75 public ConfigurationParser(String lines, argument
80 this(new LineWordReader(new LineNumberReader(new StringReader(lines)),
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 6388 milliseconds

123456789