/external/clang/test/ |
Makefile | 32 all:: lit.site.cfg Unit/lit.site.cfg 57 Unit/lit.site.cfg: FORCE 58 @echo "Making Clang 'Unit/lit.site.cfg' file..." 60 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp 61 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp 62 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp 63 @$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> unit.tmp 64 @$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp 65 @$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp 66 @$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> unit.tm [all...] |
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
CallbackHelper.java | 169 * @param unit timeout unit. 174 TimeUnit unit) throws InterruptedException, TimeoutException { 181 mLock.wait(unit.toMillis(timeout)); 204 * @param unit timeout unit. 206 public void waitUntilCriteria(Criteria criteria, long timeout, TimeUnit unit) 212 SystemClock.uptimeMillis() - startTime < unit.toMillis(timeout)) { 213 mLock.wait(unit.toMillis(timeout));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i830_texblend.c | 97 GetTexelOp(GLint unit) 99 switch (unit) { 353 * tex unit, and put last stage on it 389 emit_texblend(struct i830_context *i830, GLuint unit, GLuint blendUnit, 392 struct gl_texture_unit *texUnit = &i830->intel.ctx.Texture.Unit[unit]; 397 fprintf(stderr, "%s unit %d\n", __FUNCTION__, unit); 402 GetTexelOp(unit), tmp, texUnit->EnvColor); 423 GLuint unit = 0 local 443 GLuint unit, last_stage = 0, blendunit = 0; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i830_texblend.c | 97 GetTexelOp(GLint unit) 99 switch (unit) { 353 * tex unit, and put last stage on it 389 emit_texblend(struct i830_context *i830, GLuint unit, GLuint blendUnit, 392 struct gl_texture_unit *texUnit = &i830->intel.ctx.Texture.Unit[unit]; 397 fprintf(stderr, "%s unit %d\n", __FUNCTION__, unit); 402 GetTexelOp(unit), tmp, texUnit->EnvColor); 423 GLuint unit = 0 local 443 GLuint unit, last_stage = 0, blendunit = 0; local [all...] |
/bionic/tests/ |
Android.mk | 22 # Unit tests. 240 # adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests32 241 # adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests64 243 bionic-unit-tests_whole_static_libraries := \ 246 bionic-unit-tests_src_files := \ 251 bionic-unit-tests_cflags := $(test_cflags) 252 bionic-unit-tests_cppflags := $(test_cppflags) 254 bionic-unit-tests_ldflags := [all...] |
/external/qemu/util/ |
cutils.c | 278 static int64_t suffix_mul(char suffix, int64_t unit) 284 return unit; 286 return unit * unit; 288 return unit * unit * unit; 290 return unit * unit * unit * unit [all...] |
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/ |
performance_monitor_ui_constants.cc | 40 const UnitDetails* GetUnitDetails(Unit unit) { 41 if (unit == UNIT_UNDEFINED) { 42 LOG(ERROR) << "Request for undefined unit"; 46 return &kUnitDetailsList[unit];
|
performance_monitor_ui_constants.h | 27 enum Unit { 60 // two units of distance (meters to centimeters), but cannot convert a unit of 61 // time to a unit of memory (seconds to megabytes). 69 // A struct which holds the conversion information for each unit. The 70 // |amount_in_base_units| corresponds to the value of 1 |unit| in the specified 71 // base for the measurement type (for instance, since the base unit for memory 74 const Unit unit; member in struct:performance_monitor::UnitDetails 79 // Returns the corresponding UnitDetails for the given unit, or NULL if invalid. 80 const UnitDetails* GetUnitDetails(Unit unit) [all...] |
/external/ppp/pppd/ |
ipv6cp.c | 68 est une f?d?ration d'unit?s mixtes de recherche du CNRS, de l'Institut National 91 The research unit in Software, Systems, Networks (LSR) is member of IMAG. 413 ipv6cp_init(unit) 414 int unit; 416 fsm *f = &ipv6cp_fsm[unit]; 417 ipv6cp_options *wo = &ipv6cp_wantoptions[unit]; 418 ipv6cp_options *ao = &ipv6cp_allowoptions[unit]; 420 f->unit = unit; 423 fsm_init(&ipv6cp_fsm[unit]); [all...] |
/frameworks/native/libs/ui/tests/ |
Android.mk | 1 # Build the unit tests. 5 # Build the unit tests. 28 # Build the unit tests.
|
/development/ndk/platforms/android-3/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/external/chromium_org/chrome/browser/extensions/api/system_storage/ |
storage_info_provider.cc | 28 StorageUnitInfo* unit) { 29 unit->id = StorageMonitor::GetInstance()->GetTransientIdForDeviceId( 31 unit->name = base::UTF16ToUTF8(info.GetDisplayName(false)); 33 unit->type = StorageInfo::IsRemovableDevice(info.device_id()) ? 35 unit->capacity = static_cast<double>(info.total_size_in_bytes()); 88 linked_ptr<StorageUnitInfo> unit(new StorageUnitInfo()); 89 systeminfo::BuildStorageUnitInfo(*it, unit.get()); 90 info_.push_back(unit);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
measure.h | 30 * An amount of a specified unit, consisting of a number and a Unit. 32 * unit, such as feet or meters. This is an abstract class. 33 * Subclasses specify a concrete Unit type. 49 * unit. After this call, the caller must not delete the given 50 * unit object. 52 * @param adoptedUnit the unit object, which must not be NULL 53 * @param ec input-output error code. If the amount or the unit 101 * Return a reference to the unit of this object. 120 * The unit of this object, e.g., "millimeter" or "JPY". This i 123 MeasureUnit* unit; member in class:Measure [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tex.h | 51 extern void r200TexUpdateParameters(struct gl_context *ctx, GLuint unit); 53 extern void set_re_cntl_d3d( struct gl_context *ctx, int unit, GLboolean use_d3d );
|
/external/icu/icu4c/source/i18n/unicode/ |
measure.h | 30 * An amount of a specified unit, consisting of a number and a Unit. 32 * unit, such as feet or meters. 45 * unit. After this call, the caller must not delete the given 46 * unit object. 48 * @param adoptedUnit the unit object, which must not be NULL 49 * @param ec input-output error code. If the amount or the unit 97 * Return a reference to the unit of this object. 142 * The unit of this object, e.g., "millimeter" or "JPY". This is 145 MeasureUnit* unit; member in class:Measure [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_tex.h | 51 extern void r200TexUpdateParameters(struct gl_context *ctx, GLuint unit); 53 extern void set_re_cntl_d3d( struct gl_context *ctx, int unit, GLboolean use_d3d );
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
ConnectivityManagerUnitTestRunner.java | 21 import com.android.connectivitymanagertest.unit.WifiClientTest; 22 import com.android.connectivitymanagertest.unit.WifiSoftAPTest; 27 * Instrumentation Test Runner for all unit tests
|
/libcore/luni/src/main/java/java/util/concurrent/ |
BlockingQueue.java | 45 * <td>{@link #offer(Object, long, TimeUnit) offer(e, time, unit)}</td> 52 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td> 211 * {@code unit} 212 * @param unit a {@code TimeUnit} determining how to interpret the 223 boolean offer(E e, long timeout, TimeUnit unit) 240 * {@code unit} 241 * @param unit a {@code TimeUnit} determining how to interpret the 247 E poll(long timeout, TimeUnit unit)
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|