/cts/tests/tests/keystore/src/android/keystore/cts/ |
AESCipherNistCavpKatTest.java | 172 String line; local 179 while ((line = in.readLine()) != null) { 181 line = line.trim(); 182 if (line.startsWith("#")) { 189 if (line.length() == 0) { 193 if ((line.startsWith("[")) && (line.endsWith("]"))) { 194 section = line.substring(1, line.length() - 1) [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
BuildTest.java | 112 String line = ""; local 115 line = scanner.nextLine(); 121 return line; 134 String line = scanner.nextLine(); local 135 assertEquals(message + " Value found: " + line , expected, line); 158 String line = scanner.nextLine(); local 159 assertFalse(message + "Property found: " + line, 160 line.startsWith("[" + property + "]"));
|
/cts/tests/tests/security/src/android/security/cts/ |
ClonedSecureRandomTest.java | 248 final String line = in.readLine(); local 249 if (line == null) { 250 throw new EOFException("EOF encountered before reading first line of " + filename); 252 return line.trim();
|
ListeningPortsTest.java | 271 String line = scanner.nextLine().trim(); local 274 if (line.startsWith("sl")) { 278 String[] fields = line.split("\\s+");
|
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileAssembler.java | 174 String line; local 178 while ((line = br.readLine()) != null) { 180 secondLine = line; 183 if (!line.trim().startsWith("//")) { 185 String[] parts = line.split("\\s+");
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
VideoProvider.java | 74 String line = null; local 75 while ((line = reader.readLine()) != null) { 76 sb.append(line);
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/ |
VideoProvider.java | 168 String line = null; local 169 while ((line = reader.readLine()) != null) { 170 sb.append(line);
|
/developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/ |
ResponderService.java | 121 String line = TextUtils.isEmpty(text) ? mLastResponse : text + "\n" + mLastResponse; local 123 // Send a new line of conversation to update the Activity, unless the incoming text was 126 broadcastMessage(line); 130 mCompleteConversation.append("\n" + line);
|
/developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/ |
ProvisioningValuesLoader.java | 112 String line; local 113 while (null != (line = reader.readLine())) { 114 if (line.startsWith("#")) { 117 int position = line.indexOf("="); 121 String key = line.substring(0, position); 122 String value = line.substring(position + 1);
|
/developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/java/com/example/android/permissionrequest/ |
SimpleWebServer.java | 123 String line; local 124 while (!TextUtils.isEmpty(line = reader.readLine())) { 125 if (line.startsWith("GET /")) { 126 int start = line.indexOf('/') + 1; 127 int end = line.indexOf(' ', start); 128 route = line.substring(start, end);
|
/developers/samples/android/admin/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/ |
ProvisioningValuesLoader.java | 112 String line; local 113 while (null != (line = reader.readLine())) { 114 if (line.startsWith("#")) { 117 int position = line.indexOf("="); 121 String key = line.substring(0, position); 122 String value = line.substring(position + 1);
|
/developers/samples/android/content/webview/PermissionRequest/Application/src/main/java/com/example/android/permissionrequest/ |
SimpleWebServer.java | 123 String line; local 124 while (!TextUtils.isEmpty(line = reader.readLine())) { 125 if (line.startsWith("GET /")) { 126 int start = line.indexOf('/') + 1; 127 int end = line.indexOf(' ', start); 128 route = line.substring(start, end);
|
/developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/ |
ResponderService.java | 121 String line = TextUtils.isEmpty(text) ? mLastResponse : text + "\n" + mLastResponse; local 123 // Send a new line of conversation to update the Activity, unless the incoming text was 126 broadcastMessage(line); 130 mCompleteConversation.append("\n" + line);
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyGetAppFrameRateEvent.java | 111 String line = null; local 112 while((line = reader.readLine()) != null) { 113 Matcher m = NO_OF_FRAMES_PATTERN.matcher(line);
|
/development/ndk/platforms/android-3/include/linux/ |
mt9t013.h | 91 uint16_t line; member in struct:mt9t013_exposure_gain
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryDatabase.java | 209 String line; local 210 while ((line = reader.readLine()) != null) { 211 String[] strings = TextUtils.split(line, "-");
|
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
RobotSpeakTtsService.java | 217 String line = null; local 220 while ((line = br.readLine()) != null) { 221 String[] parts = line.split(":"); 223 throw new IOException("Invalid line encountered: " + line);
|
/development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/ |
ResponderService.java | 121 String line = TextUtils.isEmpty(text) ? mLastResponse : text + "\n" + mLastResponse; local 123 // Send a new line of conversation to update the Activity, unless the incoming text was 126 broadcastMessage(line); 130 mCompleteConversation.append("\n" + line);
|
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/ |
ProvisioningValuesLoader.java | 112 String line; local 113 while (null != (line = reader.readLine())) { 114 if (line.startsWith("#")) { 117 int position = line.indexOf("="); 121 String key = line.substring(0, position); 122 String value = line.substring(position + 1);
|
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/ |
SimpleWebServer.java | 123 String line; local 124 while (!TextUtils.isEmpty(line = reader.readLine())) { 125 if (line.startsWith("GET /")) { 126 int start = line.indexOf('/') + 1; 127 int end = line.indexOf(' ', start); 128 route = line.substring(start, end);
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
Main.java | 38 * A struct-like class to hold the various input values (e.g. command-line args) 132 * Grabs command-line arguments. 236 String line; local 237 while ((line = br.readLine()) != null) { 238 addString(p, line);
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3commontoken.h | 125 /** The line number in the input stream where this token was derived from 127 ANTLR3_UINT32 line; member in struct:ANTLR3_COMMON_TOKEN_struct 129 /** The offset into the input stream that the line in which this 134 /** The character position in the line that this token was derived from 252 /** Pointer to a function that gets the 'line' number where this token resides 256 /** Pointer to a function that sets the 'line' number where this token reside 258 void (*setLine)(struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 line); 260 /** Pointer to a function that gets the offset in the line where this token exists 264 /** Pointer to a function that sets the offset in the line where this token exists
|
antlr3exception.h | 169 /** Track the line at which the error occurred in case this is 171 * unexpected char doesn't carry the line info. 173 ANTLR3_UINT32 line; member in struct:ANTLR3_EXCEPTION_struct 175 /** Character position in the line where the error occurred.
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 71 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken 78 int line, int charPos, string text) { 82 this.line = line; 106 public int Line { 108 return line; 111 line = value; 173 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]"; 180 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree 185 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, string text) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 75 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken 83 int line, int charPos, string text ) 88 this.line = line; 118 public int Line 122 return line; 126 line = value; 208 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]"; 216 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree 221 public ProxyTree( int ID, int type, int line, int charPos, int tokenIndex, string text [all...] |