HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 126 - 150 of 4596) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
MonkeyTest.java 48 String line = s.nextLine(); local
49 if (line.contains(isMonkey ? MONKEY : HUMAN)) {
  /cts/tests/framework/base/activitymanager/src/android/server/am/
ActivityAndWindowManagerOverrideConfigTests.java 59 final String line = lines[i].trim(); local
60 log(line);
61 Matcher matcher = CONFIGURATION_CHANGED_PATTERN.matcher(line);
KeyguardTestBase.java 61 final String line = lines[i].trim(); local
62 log(line);
63 Matcher matcher = pattern.matcher(line);
  /cts/tests/tests/os/jni/
android_os_cts_NoExecutePermissionTest.cpp 27 char line[1024]; local
34 while(fgets(line, sizeof(line), fp) != NULL) {
38 int scan = sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %9s ", &start, &end, permissions);
  /cts/tests/tests/security/src/android/security/cts/
ARTBootASLRTest.java 38 String line; local
40 while ((line = bufReader.readLine()) != null) {
42 if (line.matches("/system/.*boot\\.art")) {
43 fail("found " + line + " from system partition");
44 } else if (line.matches(".*boot\\.art")) {
  /development/tools/bugreport/src/com/android/bugreport/cpuinfo/
CpuUsageParser.java 20 import com.android.bugreport.util.Line;
43 public CpuUsageSnapshot parse(Lines<? extends Line> lines) {
50 final Line line = lines.next(); local
51 final String text = line.text;
  /development/tools/bugreport/src/com/android/bugreport/logcat/
LogcatParser.java 19 import com.android.bugreport.util.Line;
49 public Logcat parse(Lines<? extends Line> lines) {
56 final Line line = lines.next(); local
57 final String text = line.text;
69 // Matched line
  /development/tools/bugreport/src/com/android/bugreport/stacks/
VmTracesParser.java 22 import com.android.bugreport.util.Line;
52 public VmTraces parse(Lines<? extends Line> lines) {
57 final Line line = lines.next(); local
58 final String text = line.text;
66 final Line line = lines.next(); local
67 final String text = line.text;
  /development/vndk/tools/header-checker/header-abi-diff/src/
header_abi_diff.cpp 119 std::string line = ""; local
120 while (std::getline(symbol_ifstream, line)) {
121 ignored_symbols.insert(line);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
pp.py 3 # Emulate some Perl command line options.
6 # -a : together with -n or -p, splits each line into list F
9 # -e scriptline : gives one line of the Python script; may be repeated
11 # -n : runs the script for each line of input
12 # -p : prints the line after the script has run
15 # read as input to the script, line by line. If a file is '-'
49 for line in optarg.split('\n'):
50 SCRIPT.append(line)
70 line = fp.readline() variable
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getprotoent.c 48 static char line[BUFSIZ+1]; variable
82 if ((p = fgets(line, BUFSIZ, protof)) == NULL)
  /device/linaro/bootloader/edk2/StdLib/Include/net/
servent.h 43 char *line; member in struct:servent_data
  /external/aac/libAACenc/src/
grp_data.cpp 131 INT line; /* counts through lines */ local
148 for (line = sfbOffset[sfb + 1] - 1; line >= sfbOffset[sfb]; line--) {
149 if (mdctSpectrum[wnd * granuleLength_short + line] !=
153 if (line >= sfbOffset[sfb]) break; /* this band was not completely zero */
251 for (line = width; line > 0; line--) {
  /external/annotation-tools/buildtest/
TestWrapper.java 38 String line = in.readLine(); local
39 while (line != null) {
40 if (line.contains("FAILED")) {
44 line = in.readLine();
57 String line = in.readLine(); local
58 while (line != null) {
59 System.out.println(line);
60 line = in.readLine();
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonToken.h 36 NSUInteger line; variable
52 @property (assign, getter=getLine, setter=setLine:) NSUInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonToken.h 36 NSUInteger line; variable
52 @property (assign, getter=getLine, setter=setLine:) NSUInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonToken.h 36 NSUInteger line; variable
52 @property (assign, getter=getLine, setter=setLine:) NSUInteger line; variable
  /external/autotest/cli/
compose_query 41 line = [y] variable
48 line.append('%5d / %-5d' % (good, total))
50 line.append('')
51 print format % tuple(line)
  /external/autotest/client/profilers/powertop/src/
config.c 49 char line[100]; local
50 if (fgets(line, 100, file) == NULL)
52 strcpy(configlines[configcount++], line);
77 char line[100]; local
78 if (fgets(line, 100, file) == NULL)
80 strcpy(configlines[configcount++], line);
powertop.h 31 struct line { struct
39 extern struct line *lines;
46 void suggest_process_death(char *process_match, char *process_name, struct line *slines, int linecount, double minwakeups, char *comment, int weight);
  /external/blktrace/btt/
devmap.c 31 static int dev_map_add(char *line)
35 if (strstr(line, "Device") != NULL)
39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) {
66 char line[256]; local
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
75 if (dev_map_add(line))
  /external/blktrace/
verify_blkparse.c 12 char line[256], last_line[256], *p; local
35 while ((p = fgets(line, sizeof(line), f)) != NULL) {
59 strcpy(last_line, line);
  /external/clang/test/Analysis/
taint-tester.cpp 19 char *line = 0; local
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
25 printf("%s", line); // no warning
27 free(line);
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 43 char *file_buf, uptr file_siz, int *line,
55 int line, col; local
58 sizeof(file_buf), &line, &col)) {
61 frame->info.line = line;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
IndentingAppendable.java 45 CharSequence line = lines.next(); local
47 delegate.append(line);
48 if (line.charAt(line.length() - 1) == '\n') {

Completed in 714 milliseconds

1 2 3 4 56 7 8 91011>>