Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 19 of 19) sorted by relevance

/tools/dexter/slicer/export/slicer/
Dintrusive_list.h85 Iterator InsertBefore(T* pos, T* p) { in InsertBefore() argument
89 assert(pos != nullptr); in InsertBefore()
90 p->prev = pos->prev; in InsertBefore()
91 if (pos == begin_) { in InsertBefore()
92 assert(pos->prev == nullptr); in InsertBefore()
95 assert(pos->prev != nullptr); in InsertBefore()
98 p->next = pos; in InsertBefore()
99 pos->prev = p; in InsertBefore()
103 Iterator InsertAfter(T* pos, T* p) { in InsertAfter() argument
107 assert(pos != nullptr); in InsertAfter()
[all …]
/tools/tradefederation/contrib/src/com/android/media/tests/
DAudioLevelUtility.java45 int pos = shellOutput.indexOf(STREAM_MUSIC); in extractDeviceHeadsetLevelFromAdbShell() local
46 if (pos != -1) { in extractDeviceHeadsetLevelFromAdbShell()
47 pos = shellOutput.indexOf(HEADSET, pos); in extractDeviceHeadsetLevelFromAdbShell()
48 if (pos != -1) { in extractDeviceHeadsetLevelFromAdbShell()
49 final int start = pos + HEADSET.length(); in extractDeviceHeadsetLevelFromAdbShell()
/tools/tradefederation/core/src/com/android/tradefed/util/
DPropertyChanger.java56 int pos = line.indexOf('='); in changeProperties() local
57 if (pos != -1) { in changeProperties()
58 String name = line.substring(0, pos); in changeProperties()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DPropertyChangerTest.java98 int pos = line.indexOf('='); in verifyProperties() local
99 String name = line.substring(0, pos); in verifyProperties()
100 String value = line.substring(pos + 1); in verifyProperties()
/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Dvecmath.cpp116 float pos = 0; in Inverse() local
122 pos += temp; in Inverse()
127 pos += temp; in Inverse()
132 pos += temp; in Inverse()
137 pos += temp; in Inverse()
142 pos += temp; in Inverse()
147 pos += temp; in Inverse()
150 det_1 = pos + neg; in Inverse()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DUiAutomatorRunner.java149 int pos = className.lastIndexOf('.'); in setClassName() local
151 if (pos == -1) { in setClassName()
154 mPackageName = className.substring(0, pos); in setClassName()
DGTest.java217 int pos = fullPath.lastIndexOf('/'); in getFileName() local
218 if (pos == -1) { in getFileName()
221 String fileName = fullPath.substring(pos + 1); in getFileName()
/tools/repohooks/tools/
Dcpplint.py1592 def CloseExpression(clean_lines, linenum, pos): argument
1616 if (line[pos] not in '({[<') or Match(r'<[<=]', line[pos:]):
1620 (end_pos, stack) = FindEndOfExpressionInLine(line, pos, [])
1713 def ReverseCloseExpression(clean_lines, linenum, pos): argument
1731 if line[pos] not in ')}]>':
1735 (start_pos, stack) = FindStartOfExpressionInLine(line, pos, [])
2468 def InTemplateArgumentList(self, clean_lines, linenum, pos): argument
2481 match = Match(r'^[^{};=\[\]\.<>]*(.)', line[pos:])
2484 pos = 0
2487 pos += len(match.group(0))
[all …]
/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
DApiFile.java221 pkg = new TextPackageItem(api, name, modifiers, tokenizer.pos()); in parsePackage()
304 cl = new TextClassItem(api, tokenizer.pos(), modifiers, isInterface, isEnum, isAnnotation, in parseClass()
463 … method = new TextConstructorItem(api, name, cl, modifiers, cl.asTypeInfo(), tokenizer.pos()); in parseConstructor()
528 method = new TextMethodItem(api, name, cl, modifiers, returnType, tokenizer.pos()); in parseMethod()
598 …extFieldItem field = new TextFieldItem(api, name, cl, modifiers, typeInfo, value, tokenizer.pos()); in parseField()
797 …tPropertyItem property = new TextPropertyItem(api, name, cl, modifiers, typeInfo, tokenizer.pos()); in parseProperty()
928 typeInfo, modifiers, tokenizer.pos())); in parseParameterList()
998 SourcePositionInfo pos() { in pos() method in ApiFile.Tokenizer
/tools/asuite/asuite_plugin/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/ndkports/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/metalava/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/trebuchet/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_rotate.txt191 --provider-pos Position / priority at which to install this provider in
Dhelp_sign.txt220 --provider-pos Position / priority at which to install this provider in
/tools/tradefederation/core/res/jacoco/
Djacocoant.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/jacoco/ org/ ...
Djacocoagent.jar ... newValue java.util.regex.Matcher m int pos java.util.Map$Entry entry java. ...
/tools/tradefederation/core/tests/res/testdata/
Dtradefed-prebuilt-cts-8.0_r21.jar ... ) int i int i int i String buffer int pos java.util.List cand int[] positions ...
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_test_utils.py8804 def get_bool(pos): argument
8806 return response_hex[pos] == '01'
8808 def get_int32(pos): argument
8812 '<i', bytearray.fromhex(''.join(response_hex[pos:pos + 4])))[0]