HomeSort by relevance Sort by last modified time
    Searched refs:combined (Results 1 - 25 of 68) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 52 String[] combined = new String[extraFragments.length + graphicsFragments.length]; local
53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length);
54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
58 currentIndex, combined);
  /cts/
CtsCoverage.mk 36 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html
48 $(cts-combined-coverage-report) : CtsVerifier $(cts_api_coverage_dependencies) $(CTS_COVERAGE_TEST_CASE_LIST) $(cts_api_coverage_dependencies)
49 $(call generate-coverage-report,"CTS Combined API Coverage Report",\
50 $(CTS_COVERAGE_TEST_CASE_LIST) CtsVerifier,cts-combined-apks,html,combined-coverage.html)
58 .PHONY: cts-combined-coverage
59 cts-combined-coverage : $(cts-combined-coverage-report)
65 $(call dist-for-goals, cts, $(cts-combined-coverage-report):cts-combined-coverage-report.html
    [all...]
  /external/skia/src/gpu/gl/
GrGLEffectMatrix.cpp 192 SkMatrix combined; local
193 combined.setConcat(matrix, coordChangeMatrix);
195 // combined.postScale(1,-1);
196 // combined.postTranslate(0,1);
197 combined.set(SkMatrix::kMSkewY,
198 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
199 combined.set(SkMatrix::kMScaleY,
200 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY])
    [all...]
  /external/webrtc/src/system_wrappers/source/
data_log_c.cc 32 std::string combined = webrtc::DataLog::Combine(table_name, table_id);
33 if (combined.size() >= combined_len) return NULL;
34 std::copy(combined.begin(), combined.end(), combined_name);
35 combined_name[combined.size()] = '\0';
  /external/harfbuzz_ng/src/
gen-indic-table.py 47 combined = {} variable
50 if i == 2 and not u in combined:
52 if not u in combined:
53 combined[u] = list (defaults)
54 combined[u][i] = v
55 data = combined
56 del combined
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 283 * @return the combined image
288 Image combined = mErrorIcons.get(image); local
289 if (combined != null) {
290 return combined;
296 Image combined = new ErrorImageComposite(image, false).createImage(); local
297 mErrorIcons.put(image, combined);
299 return combined;
308 * @return the combined image
313 Image combined = mWarningIcons.get(image); local
314 if (combined != null)
321 Image combined = new ErrorImageComposite(image, true).createImage(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
CairoUtilities.cpp 148 cairo_matrix_t combined; local
149 cairo_matrix_multiply(&combined, &patternMatrix, &phaseMatrix);
150 cairo_matrix_invert(&combined);
151 cairo_pattern_set_matrix(pattern, &combined);
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 242 * to combined output character.
357 * key is a "dead key" that should be combined with another to
485 * @return The combined character, or 0 if the characters cannot be combined.
501 int combined; local
503 combined = sDeadKeyCache.get(combination, -1);
504 if (combined == -1) {
509 combined = result.codePointCount(0, result.length()) == 1
511 sDeadKeyCache.put(combination, combined);
514 return combined;
    [all...]
  /external/valgrind/main/memcheck/tests/
varinfo6.stdout.exp 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
origin5-bz2.stdout.exp 3 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
11 final combined CRC = 0xA212ABF8
vcpu_bz2.stdout.exp 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
  /external/chromium/net/http/
http_auth_sspi_win.cc 394 void SplitDomainAndUser(const string16& combined,
397 // |combined| may be in the form "user" or "DOMAIN\user".
400 size_t backslash_idx = combined.find(L'\\');
403 *user = combined;
405 *domain = combined.substr(0, backslash_idx);
406 *user = combined.substr(backslash_idx + 1);
http_auth_sspi_win_unittest.cc 15 void MatchDomainUserAfterSplit(const std::wstring& combined,
20 SplitDomainAndUser(combined, &actual_domain, &actual_user);
http_auth_sspi_win.h 177 // Splits |combined| into domain and username.
178 // If |combined| is of form "FOO\bar", |domain| will contain "FOO" and |user|
180 // If |combined| is of form "bar", |domain| will be empty and |user| will
183 void SplitDomainAndUser(const string16& combined,
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 117 ScriptField_TestScripts_s.Item[] combined; local
118 combined = new ScriptField_TestScripts_s.Item[newTests.length + mIndividualTests.length];
119 System.arraycopy(mIndividualTests, 0, combined, 0, mIndividualTests.length);
120 System.arraycopy(newTests, 0, combined, mIndividualTests.length, newTests.length);
121 mIndividualTests = combined;
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 52 Bitmap combined = delta(bitmapWithoutFilter, bitmapWithFilter); local
53 assertUnderline(combined);
  /external/guava/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java 154 StackTraceElement[] combined = ObjectArrays.concat(cause.getStackTrace(), local
156 cause.setStackTrace(combined);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 45 GRAMMAR_TYPES = %w(lexer parser tree combined)
89 elsif combined? then base = name + 'Lexer'
101 elsif combined? then base = name + 'Parser'
116 @type == 'combined' || @type == 'lexer'
120 @type == 'combined' || @type == 'parser'
137 def combined?
138 @type == "combined"
264 @type = $1 || 'combined'
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 153 final String combined; local
154 // We need to show company and title in a combined string. However, if the
158 combined = displayNameIsOrganization ? null : title;
161 combined = displayNameIsOrganization ? null : company;
164 combined = title;
166 combined = context.getString(
173 if (!TextUtils.isEmpty(combined)) {
174 return combined;
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.stdout.exp 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 202 String combined = base.substring(0, base.lastIndexOf('/') + 1) + path; local
203 return UrlUtils.canonicalizePath(combined, true);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 244 GRAMMAR_TYPES = %w(lexer parser tree combined)
285 elsif combined? then base = @name + 'Lexer'
293 elsif combined? then base = @name + 'Parser'
407 @type = $1 || 'combined'
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
103 -alphabet <outfile> writes the combined set of symbols to <outfile>.
200 next if $rest =~ /iscombined/; #filter out combined POS
234 #create combined table
  /external/webkit/LayoutTests/dom/html/level2/core/
hc_nodedocumentfragmentnormalize2.js 79 were combined.
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
hc_nodedocumentfragmentnormalize2.js 79 were combined.

Completed in 900 milliseconds

1 2 3