/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
DemoUtility.java | 55 Component[] components = cont.getComponents(); local 56 for (int i = 0; i < components.length; ++i) { 61 if (components[i] instanceof Label) { 62 switch (((Label)components[i]).getAlignment()) { 68 gridbag.setConstraints(components[i], c);
|
/external/mesa3d/src/glsl/ |
opt_array_splitting.cpp | 54 this->components = NULL; 74 ir_variable **components; member in class:opt_array_splitting::variable_entry 300 ir_dereference_variable(entry->components[constant->value.i[0]]); 311 entry->components[0]->insert_before(temp); 365 * components. 379 entry->components = ralloc_array(mem_ctx, 387 entry->components[i] = 389 entry->var->insert_before(entry->components[i]);
|
opt_dead_code_local.cpp | 215 unsigned components[4]; local 222 components[channels++] = next; 228 components,
|
opt_structure_splitting.cpp | 27 * If a structure is only ever referenced by its components, then 28 * split those components out to individual variables so they can be 57 this->components = NULL; 72 ir_variable **components; member in class:__anon20128::variable_entry2 169 /* We'll split copies of a structure to copies of components, so don't 249 *deref = new(entry->mem_ctx) ir_dereference_variable(entry->components[i]); 282 new_lhs = new(mem_ctx) ir_dereference_variable(lhs_entry->components[i]); 290 new_rhs = new(mem_ctx) ir_dereference_variable(rhs_entry->components[i]); 342 * components. 350 entry->components = ralloc_array(mem_ctx [all...] |
ir_constant_expression.cpp | 68 for (unsigned c = 0; c < op0->type->components(); c++) 129 /* When iterating over a vector or matrix's components, we want to increase 134 unsigned components; local 136 components = op[0]->type->components(); 138 components = op[1]->type->components(); 161 for (unsigned c = 0; c < components; c++) 165 for (unsigned c = 0; c < components; c++) 175 for (unsigned c = 0; c < op[0]->type->components(); c++ [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_vector_splitting.cpp | 27 * If a vector is only ever referenced by its components, then 28 * split those components out to individual variables so they can be 70 ir_variable *components[4]; member in class:variable_entry 253 ir_variable *var = entry->components[swiz->mask.x]; 279 new_lhs = new(mem_ctx) ir_dereference_variable(lhs->components[i]); 288 new(mem_ctx) ir_dereference_variable(rhs->components[rhs_chan]); 323 ir->lhs = new(mem_ctx) ir_dereference_variable(lhs->components[elem]); 364 * components. 378 entry->components[i] = new(entry->mem_ctx) ir_variable(type, name, 380 entry->var->insert_before(entry->components[i]) [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_regions.h | 151 int components; member in struct:intel_image_format
|
/external/opencv3/modules/cudalegacy/perf/ |
perf_labeling.cpp | 180 cv::cuda::GpuMat components; local 182 TEST_CYCLE() cv::cuda::labelComponents(d_mask, components); 184 CUDA_SANITY_CHECK(components); 192 cv::Mat components = host._labels; local 193 CPU_SANITY_CHECK(components);
|
/external/opencv3/modules/cudalegacy/test/ |
test_labeling.cpp | 185 cv::cuda::GpuMat components; local 186 components.create(image.rows, image.cols, CV_32SC1); 190 cv::cuda::labelComponents(mask, components); 192 host.checkCorrectness(cv::Mat(components));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ViewInvertHelper.java | 106 float components = 1 - 2 * intensity; local 108 components, 0f, 0f, 0f, 255f * intensity, 109 0f, components, 0f, 0f, 255f * intensity, 110 0f, 0f, components, 0f, 255f * intensity,
|
/hardware/intel/common/libva/va/ |
va_dec_jpeg.h | 70 } components[255]; member in struct:_VAPictureParameterBufferJPEGBaseline 71 /** \brief Number of components in frame (Nf). */ 164 } components[4]; member in struct:_VASliceParameterBufferJPEGBaseline 165 /** \brief Number of components in scan (Ns). */
|
va_enc_jpeg.h | 101 /** \brief number of image components in frame. */ 122 /** \brief number of image components in a scan. */ 131 } components[4]; member in struct:_VAEncSliceParameterBufferJPEG
|
/libcore/ojluni/src/main/java/java/util/ |
UUID.java | 192 String[] components = name.split("-"); local 193 if (components.length != 5) 196 components[i] = "0x"+components[i]; 198 long mostSigBits = Long.decode(components[0]).longValue(); 200 mostSigBits |= Long.decode(components[1]).longValue(); 202 mostSigBits |= Long.decode(components[2]).longValue(); 204 long leastSigBits = Long.decode(components[3]).longValue(); 206 leastSigBits |= Long.decode(components[4]).longValue();
|
/packages/services/Telecomm/src/com/android/server/telecom/components/ |
ErrorDialogActivity.java | 17 package com.android.server.telecom.components;
|
UserCallIntentProcessor.java | 17 package com.android.server.telecom.components;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
RealVectorFormat.java | 33 * Formats a vector in components list format "{v0; v1; ...; vk-1}". 35 * any user-defined strings. The number format for components can be configured.</p> 78 /** The format used for components. */ 84 * "{", "}", and "; " and the default number format for components.</p> 91 * Create an instance with a custom number format for components. 92 * @param format the custom format for components. 111 * for components. 115 * @param format the custom format for components. 154 * Get the format separator between components. 162 * Get the components format 289 List<Number> components = new ArrayList<Number>(); local [all...] |
/external/deqp/executor/ |
xeTestCase.cpp | 67 static void splitPath (const char* path, std::vector<std::string>& components) 76 components.push_back(pathStr.substr(compStart, pos-compStart)); 82 components.push_back(pathStr.substr(compStart)); 290 std::vector<std::string> components; local 291 splitPath(path, components); 292 DE_ASSERT(!components.empty()); 297 for (int ndx = 0; ndx < (int)components.size()-1; ndx++) 301 curGroupPath += components[ndx]; 306 TestGroup* newGroup = curGroup->createGroup(components[ndx].c_str(), "" /* description */); 314 return curGroup->createCase(caseType, components.back().c_str(), "" /* description */) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
PerformanceResultsElement.java | 84 String[] components = DB_Results.getComponents(); local 85 int length = components.length; 88 components = DB_Results.getComponents(); 90 return components; 133 String[] components = getComponents(); local 134 int length = components.length; 137 elements[i] = new ComponentResultsElement(components[i], this);
|
/external/google-breakpad/src/common/windows/ |
http_upload.cc | 83 URL_COMPONENTS components; local 84 memset(&components, 0, sizeof(components)); 85 components.dwStructSize = sizeof(components); 86 components.lpszScheme = scheme; 87 components.dwSchemeLength = sizeof(scheme) / sizeof(scheme[0]); 88 components.lpszHostName = host; 89 components.dwHostNameLength = sizeof(host) / sizeof(host[0]); 90 components.lpszUrlPath = path [all...] |
/external/guava/guava/src/com/google/common/base/ |
Predicates.java | 98 * components evaluates to {@code true}. The components are evaluated in 102 * components} is empty, the returned predicate will always evaluate to {@code 106 Iterable<? extends Predicate<? super T>> components) { 107 return new AndPredicate<T>(defensiveCopy(components)); 112 * components evaluates to {@code true}. The components are evaluated in 116 * components} is empty, the returned predicate will always evaluate to {@code 119 public static <T> Predicate<T> and(Predicate<? super T>... components) { 120 return new AndPredicate<T>(defensiveCopy(components)); 350 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate 384 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate [all...] |
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Predicates.java | 95 * components evaluates to {@code true}. The components are evaluated in 99 * components} is empty, the returned predicate will always evaluate to {@code 103 Iterable<? extends Predicate<? super T>> components) { 104 return new AndPredicate<T>(defensiveCopy(components)); 109 * components evaluates to {@code true}. The components are evaluated in 113 * components} is empty, the returned predicate will always evaluate to {@code 116 public static <T> Predicate<T> and(Predicate<? super T>... components) { 117 return new AndPredicate<T>(defensiveCopy(components)); 287 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate 321 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate [all...] |
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/ |
BodyDeclarationLocators.java | 107 List<String> components = splitInTwo(stringForm, ":"); local 108 String locatorTypeName = components.get(0); 109 String locatorString = components.get(1); 170 List<String> components = Splitter.on(separator).splitToList(string); local 171 if (components.size() != 2) { 174 return components;
|
/external/libchrome/base/files/ |
file_path_watcher_kqueue.cc | 43 std::vector<FilePath::StringType> components; local 44 path.GetComponents(&components); 46 if (components.size() < 1) { 53 for (std::vector<FilePath::StringType>::iterator i = components.begin(); 54 i != components.end(); ++i) { 55 if (i == components.begin()) { 69 FilePath::StringType subdir = (i != (components.end() - 1)) ? *(i + 1) : ""; 194 // Then check to see if new components in the path have been created. 195 // Repeat until no new components in the path are detected.
|
/external/libjpeg-turbo/ |
rdtarga.c | 338 int idlen, cmaptype, subtype, flags, interlace_type, components; local 382 components = 3; /* until proven different */ 411 components = 1; 428 (JDIMENSION) width * components, (JDIMENSION) height, (JDIMENSION) 1); 441 (JDIMENSION) width * components, (JDIMENSION) 1); 463 cinfo->input_components = components;
|
/external/libweave/src/privet/ |
privet_handler_unittest.cc | 716 TEST_F(PrivetHandlerTestWithAuth, Components) { 717 EXPECT_JSON_EQ("{'components': {'test': {}}, 'fingerprint': '1'}", 718 HandleRequest("/privet/v3/components", "{}")); 722 EXPECT_JSON_EQ("{'components': {'test': {}}, 'fingerprint': '2'}", 723 HandleRequest("/privet/v3/components", "{}")); 725 // State change will also change the components fingerprint. 728 EXPECT_JSON_EQ("{'components': {'test': {}}, 'fingerprint': '3'}", 729 HandleRequest("/privet/v3/components", "{}")); 741 "components": { 744 "components": 756 base::DictionaryValue components; local [all...] |